Skip to content

Commit 7536020

Browse files
committed
Release. Bump version number 3.2.0
1 parent 00df256 commit 7536020

7 files changed

Lines changed: 14 additions & 12 deletions

File tree

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"packages": [
44
"packages/**"
55
],
6-
"version": "3.1.1",
6+
"version": "3.2.0",
77
"useWorkspaces": true
88
}

packages/common-js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@barchart/events-api-common",
3-
"version": "3.1.1",
3+
"version": "3.2.0",
44
"description": "Common classes used by the Barchart Event Tracking System",
55
"author": {
66
"name": "Bryan Ingle",

packages/sdk-js/docs/_coverpage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @barchart/events-client-js <small>3.1.1</small>
1+
# @barchart/events-client-js <small>3.2.0</small>
22

33
> JavaScript SDK for Barchart&#x27;s Event Tracking Service
44

packages/sdk-js/example/browser/example.event.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22336,11 +22336,12 @@ module.exports = (() => {
2233622336
version: version,
2233722337
stages: ['staging', 'production'],
2233822338
customers: [CustomerType.BARCHART, CustomerType.TGAM],
22339-
products: [ProductType.PORTFOLIO, ProductType.WATCHLIST, ProductType.ENTITLEMENTS],
22339+
products: [ProductType.PORTFOLIO, ProductType.WATCHLIST, ProductType.ENTITLEMENTS, ProductType.ALERT],
2234022340
types: {
2234122341
[ProductType.PORTFOLIO.code]: Enum.getItems(EventType).filter(eventType => eventType.product === ProductType.PORTFOLIO),
2234222342
[ProductType.WATCHLIST.code]: Enum.getItems(EventType).filter(eventType => eventType.product === ProductType.WATCHLIST),
22343-
[ProductType.ENTITLEMENTS.code]: Enum.getItems(EventType).filter(eventType => eventType.product === ProductType.ENTITLEMENTS)
22343+
[ProductType.ENTITLEMENTS.code]: Enum.getItems(EventType).filter(eventType => eventType.product === ProductType.ENTITLEMENTS),
22344+
[ProductType.ALERT.code]: Enum.getItems(EventType).filter(eventType => eventType.product === ProductType.ALERT)
2234422345
}
2234522346
};
2234622347
})();
@@ -22841,7 +22842,7 @@ module.exports = (() => {
2284122842
'use strict';
2284222843

2284322844
return {
22844-
version: '3.1.1'
22845+
version: '3.2.0'
2284522846
};
2284622847
})();
2284722848

packages/sdk-js/example/browser/example.report.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22084,11 +22084,12 @@ module.exports = (() => {
2208422084
version: version,
2208522085
stages: ['staging', 'production'],
2208622086
customers: [CustomerType.BARCHART, CustomerType.TGAM],
22087-
products: [ProductType.PORTFOLIO, ProductType.WATCHLIST, ProductType.ENTITLEMENTS],
22087+
products: [ProductType.PORTFOLIO, ProductType.WATCHLIST, ProductType.ENTITLEMENTS, ProductType.ALERT],
2208822088
types: {
2208922089
[ProductType.PORTFOLIO.code]: Enum.getItems(EventType).filter(eventType => eventType.product === ProductType.PORTFOLIO),
2209022090
[ProductType.WATCHLIST.code]: Enum.getItems(EventType).filter(eventType => eventType.product === ProductType.WATCHLIST),
22091-
[ProductType.ENTITLEMENTS.code]: Enum.getItems(EventType).filter(eventType => eventType.product === ProductType.ENTITLEMENTS)
22091+
[ProductType.ENTITLEMENTS.code]: Enum.getItems(EventType).filter(eventType => eventType.product === ProductType.ENTITLEMENTS),
22092+
[ProductType.ALERT.code]: Enum.getItems(EventType).filter(eventType => eventType.product === ProductType.ALERT)
2209222093
}
2209322094
};
2209422095
})();
@@ -22567,7 +22568,7 @@ module.exports = (() => {
2256722568
'use strict';
2256822569

2256922570
return {
22570-
version: '3.1.1'
22571+
version: '3.2.0'
2257122572
};
2257222573
})();
2257322574

packages/sdk-js/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ module.exports = (() => {
22
'use strict';
33

44
return {
5-
version: '3.1.1'
5+
version: '3.2.0'
66
};
77
})();

packages/sdk-js/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@barchart/events-client-js",
3-
"version": "3.1.1",
3+
"version": "3.2.0",
44
"description": "JavaScript SDK for Barchart's Event Tracking Service",
55
"author": {
66
"name": "Bryan Ingle",
@@ -23,7 +23,7 @@
2323
},
2424
"dependencies": {
2525
"@barchart/common-js": "^4.8.0",
26-
"@barchart/events-api-common": "^3.1.1"
26+
"@barchart/events-api-common": "^3.2.0"
2727
},
2828
"devDependencies": {
2929
"@babel/core": "^7.11.6",

0 commit comments

Comments
 (0)