Skip to content

Commit 7277d4a

Browse files
committed
Fix links to GitHub after respotories were moved
1 parent 7d93deb commit 7277d4a

3 files changed

Lines changed: 9 additions & 6 deletions

File tree

.releases/3.1.2.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
**Other**
2+
3+
* Updated hyperlinks in the documentation site to refer to the correct GitHub repository.

packages/sdk-js/docs/content/concepts/event_export.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ The begin a new export, provide the following filter criteria:
7878

7979
**REQUIRED:**
8080

81-
* The **customer** -- see the [CustomerType](https://github.com/barchart/events-api-common/blob/master/lib/data/CustomerType.js) enumeration
82-
* The **product** -- see the [ProductType](https://github.com/barchart/events-api-common/blob/master/lib/data/ProductType.js) enumeration
81+
* The **customer** -- see the [CustomerType](https://github.com/barchart/events-public/tree/master/packages/common-js/lib/data/CustomerType.js) enumeration
82+
* The **product** -- see the [ProductType](https://github.com/barchart/events-public/tree/master/packages/common-js/lib/data/ProductType.js) enumeration
8383

8484
**OPTIONAL:**
8585

@@ -187,7 +187,7 @@ curl 'https://events-stage.aws.barchart.com/reports/JOB-cb08e3f5-2669-46e9-93e9-
187187

188188
## Report Format
189189

190-
Export files are pipe-delimited, plain text files which have "csv" file extensions. Inside the file, every row represents a discrete event. Columns used for different product types are slightly different (see the [ProductType](https://github.com/barchart/events-api-common/blob/master/lib/data/ProductType.js) enumeration).
190+
Export files are pipe-delimited, plain text files which have "csv" file extensions. Inside the file, every row represents a discrete event. Columns used for different product types are slightly different (see the [ProductType](https://github.com/barchart/events-public/tree/master/packages/common-js/lib/data/ProductType.js) enumeration).
191191

192192
**COMMON COLUMNS:**
193193

packages/sdk-js/docs/content/concepts/event_structure.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Depending on your environment, you will either work with JavaScript objects or J
88

99
## Customers
1010

11-
Each event must be associated with a known customer. Known customers are enumerated in an external library. Refer to the the [CustomerType](https://github.com/barchart/events-api-common/blob/master/lib/data/CustomerType.js) enumeration for an exact listing.
11+
Each event must be associated with a known customer. Known customers are enumerated in an external library. Refer to the the [CustomerType](https://github.com/barchart/events-public/tree/master/packages/common-js/lib/data/CustomerType.js) enumeration for an exact listing.
1212

1313
When constructing a JavaScript object use an enumeration item for the ```customer``` property, as follows:
1414

@@ -27,7 +27,7 @@ When constructing a JSON string, use the enumeration item's code, as follows:
2727

2828
## Products
2929

30-
Each event must be associated with a known product. Known products are enumerated in an external library. Refer to the the [ProductType](https://github.com/barchart/events-api-common/blob/master/lib/data/ProductType.js) enumeration for an exact listing.
30+
Each event must be associated with a known product. Known products are enumerated in an external library. Refer to the the [ProductType](https://github.com/barchart/events-public/tree/master/packages/common-js/lib/data/ProductType.js) enumeration for an exact listing.
3131

3232
When constructing a JavaScript object use an enumeration item for the ```product``` property, as follows:
3333

@@ -54,7 +54,7 @@ Each event must be categorized. For example:
5454
* Broker Acknowledged Trade,
5555
* etc...
5656

57-
Ad hoc categories are not permitted. Refer to the the [EventType](https://github.com/barchart/events-api-common/blob/master/lib/data/EventType.js) enumeration for an exact listing of categories.
57+
Ad hoc categories are not permitted. Refer to the the [EventType](https://github.com/barchart/events-public/tree/master/packages/common-js/lib/data/EventType.js) enumeration for an exact listing of categories.
5858

5959
When constructing a JavaScript object use an enumeration item for the ```type``` property, as follows:
6060

0 commit comments

Comments
 (0)