Skip to content

Commit 8290837

Browse files
committed
Release. Bump version number 5.8.1
1 parent 3ffefd2 commit 8290837

8 files changed

Lines changed: 13 additions & 11 deletions

File tree

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.8.0"
6+
"version": "5.8.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.8.0",
3+
"version": "5.8.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.8.0</small>
1+
# @barchart/events-client-js <small>5.8.1</small>
22

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

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18495,7 +18495,8 @@ module.exports = (() => {
1849518495

1849618496
const barchartExcelOptionsOpened = new EventType('BARCHART-EXCEL-OPTIONS-OPENED', 'Options Opened', ProductType.BARCHART_EXCEL, ['userId']);
1849718497
const barchartExcelOptionsClosed = new EventType('BARCHART-EXCEL-OPTIONS-CLOSED', 'Options Closed', ProductType.BARCHART_EXCEL, ['userId']);
18498-
const barchartExcelOptionsInserted = new EventType('BARCHART-EXCEL-OPTIONS-INSERTED', 'Options Inserted', ProductType.BARCHART_EXCEL, ['userId', 'optionsType', 'strikeType', 'lookBackDate']);
18498+
18499+
const barchartExcelOptionsInserted = new EventType('BARCHART-EXCEL-OPTIONS-INSERTED', 'Options Inserted', ProductType.BARCHART_EXCEL, ['userId', 'optionsType', 'strikeType', 'lookBackDate'], {[CustomerType.BARCHART.code]: [null, null, null, validators.stringOptional]}, {[CustomerType.BARCHART.code]: [null, null, null, transformers.stringOptional]});
1849918500

1850018501
const barchartExcelChartOpened = new EventType('BARCHART-EXCEL-CHART-OPENED', 'Chart Opened', ProductType.BARCHART_EXCEL, ['userId']);
1850118502
const barchartExcelChartClosed = new EventType('BARCHART-EXCEL-CHART-CLOSED', 'Chart Closed', ProductType.BARCHART_EXCEL, ['userId']);
@@ -20137,7 +20138,7 @@ module.exports = (() => {
2013720138
'use strict';
2013820139

2013920140
return {
20140-
version: '5.8.0'
20141+
version: '5.8.1'
2014120142
};
2014220143
})();
2014320144

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18248,7 +18248,8 @@ module.exports = (() => {
1824818248

1824918249
const barchartExcelOptionsOpened = new EventType('BARCHART-EXCEL-OPTIONS-OPENED', 'Options Opened', ProductType.BARCHART_EXCEL, ['userId']);
1825018250
const barchartExcelOptionsClosed = new EventType('BARCHART-EXCEL-OPTIONS-CLOSED', 'Options Closed', ProductType.BARCHART_EXCEL, ['userId']);
18251-
const barchartExcelOptionsInserted = new EventType('BARCHART-EXCEL-OPTIONS-INSERTED', 'Options Inserted', ProductType.BARCHART_EXCEL, ['userId', 'optionsType', 'strikeType', 'lookBackDate']);
18251+
18252+
const barchartExcelOptionsInserted = new EventType('BARCHART-EXCEL-OPTIONS-INSERTED', 'Options Inserted', ProductType.BARCHART_EXCEL, ['userId', 'optionsType', 'strikeType', 'lookBackDate'], {[CustomerType.BARCHART.code]: [null, null, null, validators.stringOptional]}, {[CustomerType.BARCHART.code]: [null, null, null, transformers.stringOptional]});
1825218253

1825318254
const barchartExcelChartOpened = new EventType('BARCHART-EXCEL-CHART-OPENED', 'Chart Opened', ProductType.BARCHART_EXCEL, ['userId']);
1825418255
const barchartExcelChartClosed = new EventType('BARCHART-EXCEL-CHART-CLOSED', 'Chart Closed', ProductType.BARCHART_EXCEL, ['userId']);
@@ -19898,7 +19899,7 @@ module.exports = (() => {
1989819899
'use strict';
1989919900

1990019901
return {
19901-
version: '5.8.0'
19902+
version: '5.8.1'
1990219903
};
1990319904
})();
1990419905

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.8.0'
5+
version: '5.8.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.8.0
6+
version: 5.8.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.8.0",
3+
"version": "5.8.1",
44
"description": "JavaScript SDK for Barchart's Event Tracking Service",
55
"author": {
66
"name": "Bryan Ingle",
@@ -28,7 +28,7 @@
2828
},
2929
"dependencies": {
3030
"@barchart/common-js": "^4.42.0",
31-
"@barchart/events-api-common": "^5.8.0"
31+
"@barchart/events-api-common": "^5.8.1"
3232
},
3333
"devDependencies": {
3434
"@babel/core": "^7.11.6",

0 commit comments

Comments
 (0)