Skip to content

Commit 0097f2e

Browse files
committed
Release. Bump version number 5.6.1
1 parent 63ce4b3 commit 0097f2e

File tree

8 files changed

+20
-17
lines changed

8 files changed

+20
-17
lines changed

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"packages": [
44
"packages/**"
55
],
6-
"version": "5.6.0"
6+
"version": "5.6.1"
77
}

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": "5.6.0",
3+
"version": "5.6.1",
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>5.6.0</small>
1+
# @barchart/events-client-js <small>5.6.1</small>
22

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

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17964,10 +17964,6 @@ module.exports = (() => {
1796417964
return cmdtyViewHistoryContractRollChanged;
1796517965
}
1796617966

17967-
static get ENTITLEMENTS_AUTHORIZATION_FAILED() {
17968-
return entitlementsAuthorizationFailed;
17969-
}
17970-
1797117967
static get CMDTYVIEW_HISTORY_INDICATOR_DIALOG_SHOWN() {
1797217968
return cmdtyViewHistoryIndicatorDialogShown;
1797317969
}
@@ -18022,6 +18018,10 @@ module.exports = (() => {
1802218018
return entitlementsAuthorizationFailed;
1802318019
}
1802418020

18021+
static get ENTITLEMENTS_AUTHORIZATION_FAILED() {
18022+
return entitlementsAuthorizationFailed;
18023+
}
18024+
1802518025
// MARKETPLACE
1802618026

1802718027
static get MARKETPLACE_CUSTOMER_CREATED() {
@@ -19788,7 +19788,7 @@ module.exports = (() => {
1978819788
'use strict';
1978919789

1979019790
return {
19791-
version: '5.6.0'
19791+
version: '5.6.1'
1979219792
};
1979319793
})();
1979419794

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

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17717,10 +17717,6 @@ module.exports = (() => {
1771717717
return cmdtyViewHistoryContractRollChanged;
1771817718
}
1771917719

17720-
static get ENTITLEMENTS_AUTHORIZATION_FAILED() {
17721-
return entitlementsAuthorizationFailed;
17722-
}
17723-
1772417720
static get CMDTYVIEW_HISTORY_INDICATOR_DIALOG_SHOWN() {
1772517721
return cmdtyViewHistoryIndicatorDialogShown;
1772617722
}
@@ -17775,6 +17771,10 @@ module.exports = (() => {
1777517771
return entitlementsAuthorizationFailed;
1777617772
}
1777717773

17774+
static get ENTITLEMENTS_AUTHORIZATION_FAILED() {
17775+
return entitlementsAuthorizationFailed;
17776+
}
17777+
1777817778
// MARKETPLACE
1777917779

1778017780
static get MARKETPLACE_CUSTOMER_CREATED() {
@@ -18181,6 +18181,9 @@ module.exports = (() => {
1818118181
.withArray('filter.types', DataType.forEnum(EventType, 'EventType'), true)
1818218182
.withField('filter.start', DataType.TIMESTAMP, true)
1818318183
.withField('filter.end', DataType.TIMESTAMP, true)
18184+
.withField('export.delimiter', DataType.STRING, true)
18185+
.withField('export.bucketName', DataType.STRING, true)
18186+
.withField('export.bucketKey', DataType.STRING, true)
1818418187
.schema
1818518188
);
1818618189

@@ -19541,7 +19544,7 @@ module.exports = (() => {
1954119544
'use strict';
1954219545

1954319546
return {
19544-
version: '5.6.0'
19547+
version: '5.6.1'
1954519548
};
1954619549
})();
1954719550

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: '5.6.0'
5+
version: '5.6.1'
66
};
77
})();

packages/sdk-js/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ openapi: 3.0.0
33
info:
44
title: Event API
55
description: The Barchart Event Tracking System collects usage statistics from various software systems.
6-
version: 5.6.0
6+
version: 5.6.1
77

88
servers:
99
- url: https://events-stage.aws.barchart.com

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": "5.6.0",
3+
"version": "5.6.1",
44
"description": "JavaScript SDK for Barchart's Event Tracking Service",
55
"author": {
66
"name": "Bryan Ingle",
@@ -24,7 +24,7 @@
2424
},
2525
"dependencies": {
2626
"@barchart/common-js": "^4.42.0",
27-
"@barchart/events-api-common": "^5.6.0"
27+
"@barchart/events-api-common": "^5.6.1"
2828
},
2929
"devDependencies": {
3030
"@babel/core": "^7.11.6",

0 commit comments

Comments
 (0)