Skip to content

Commit 37f00fe

Browse files
Release. Bump version number 3.3.0
1 parent 97288b7 commit 37f00fe

7 files changed

Lines changed: 18 additions & 8 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.2.0",
6+
"version": "3.3.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.2.0",
3+
"version": "3.3.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.2.0</small>
1+
# @barchart/events-client-js <small>3.3.0</small>
22

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

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21846,6 +21846,10 @@ module.exports = (() => {
2184621846
static get ALERT_DELETED() {
2184721847
return alertDeleted;
2184821848
}
21849+
21850+
static get ALERT_DELETED_ALL() {
21851+
return alertDeletedAll;
21852+
}
2184921853

2185021854
static get WATCHLIST_APPLICATION_LOADED() {
2185121855
return watchlistApplicationLoaded;
@@ -22067,6 +22071,7 @@ module.exports = (() => {
2206722071
const alertStoppedAll = new EventType('ALERT-STOPPED-ALL', 'Alert Stopped', ProductType.ALERT, ['userId']);
2206822072
const alertNotesEdited = new EventType('ALERT-NOTES-EDITED', 'Alert Notes Edited', ProductType.ALERT, ['userId', 'alertId']);
2206922073
const alertDeleted = new EventType('ALERT-DELETED', 'Alert Deleted', ProductType.ALERT, ['userId', 'alertId']);
22074+
const alertDeletedAll = new EventType('ALERT-DELETED-ALL', 'Alert Deleted', ProductType.ALERT, ['userId', 'alertId']);
2207022075

2207122076
// Watchlist
2207222077

@@ -22842,7 +22847,7 @@ module.exports = (() => {
2284222847
'use strict';
2284322848

2284422849
return {
22845-
version: '3.2.0'
22850+
version: '3.3.0'
2284622851
};
2284722852
})();
2284822853

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21575,6 +21575,10 @@ module.exports = (() => {
2157521575
static get ALERT_DELETED() {
2157621576
return alertDeleted;
2157721577
}
21578+
21579+
static get ALERT_DELETED_ALL() {
21580+
return alertDeletedAll;
21581+
}
2157821582

2157921583
static get WATCHLIST_APPLICATION_LOADED() {
2158021584
return watchlistApplicationLoaded;
@@ -21796,6 +21800,7 @@ module.exports = (() => {
2179621800
const alertStoppedAll = new EventType('ALERT-STOPPED-ALL', 'Alert Stopped', ProductType.ALERT, ['userId']);
2179721801
const alertNotesEdited = new EventType('ALERT-NOTES-EDITED', 'Alert Notes Edited', ProductType.ALERT, ['userId', 'alertId']);
2179821802
const alertDeleted = new EventType('ALERT-DELETED', 'Alert Deleted', ProductType.ALERT, ['userId', 'alertId']);
21803+
const alertDeletedAll = new EventType('ALERT-DELETED-ALL', 'Alert Deleted', ProductType.ALERT, ['userId', 'alertId']);
2179921804

2180021805
// Watchlist
2180121806

@@ -22568,7 +22573,7 @@ module.exports = (() => {
2256822573
'use strict';
2256922574

2257022575
return {
22571-
version: '3.2.0'
22576+
version: '3.3.0'
2257222577
};
2257322578
})();
2257422579

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.2.0'
5+
version: '3.3.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.2.0",
3+
"version": "3.3.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.2.0"
26+
"@barchart/events-api-common": "^3.3.0"
2727
},
2828
"devDependencies": {
2929
"@babel/core": "^7.11.6",

0 commit comments

Comments
 (0)