Skip to content

Commit 5d2dd7b

Browse files
committed
Release. Bump version number 5.6.2
1 parent 8de4c23 commit 5d2dd7b

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

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19788,7 +19788,7 @@ module.exports = (() => {
1978819788
'use strict';
1978919789

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

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

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18181,9 +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)
18184+
.withField('output.delimiter', DataType.STRING, true)
18185+
.withField('output.bucketName', DataType.STRING, true)
18186+
.withField('output.bucketKey', DataType.STRING, true)
1818718187
.schema
1818818188
);
1818918189

@@ -18199,9 +18199,9 @@ module.exports = (() => {
1819918199
.withField('timing.day', DataType.DAY)
1820018200
.withField('timing.start', DataType.TIMESTAMP)
1820118201
.withField('timing.end', DataType.TIMESTAMP, true)
18202-
.withField('export.delimiter', DataType.STRING, true)
18203-
.withField('export.bucketName', DataType.STRING, true)
18204-
.withField('export.bucketKey', DataType.STRING, true)
18202+
.withField('output.delimiter', DataType.STRING, true)
18203+
.withField('output.bucketName', DataType.STRING, true)
18204+
.withField('output.bucketKey', DataType.STRING, true)
1820518205
.schema
1820618206
);
1820718207

@@ -19363,14 +19363,17 @@ module.exports = (() => {
1936319363
*
1936419364
* @public
1936519365
* @param {Schema.ReportFilter} filter
19366+
* @param {Schema.ReportOutputConfig} output
1936619367
* @returns {Promise<Schema.ReportStatus>}
1936719368
*/
19368-
startReport(filter) {
19369+
startReport(filter, output) {
1936919370
return Promise.resolve().then(() => {
1937019371
checkStart.call(this);
1937119372
assert.argumentIsRequired(filter, 'filter', Object);
19373+
assert.argumentIsOptional(output, 'output', Object);
1937219374
return Gateway.invoke(this._startReportEndpoint, EventJobSchema.START.schema.format({
19373-
filter
19375+
filter,
19376+
output
1937419377
}));
1937519378
});
1937619379
}
@@ -19544,7 +19547,7 @@ module.exports = (() => {
1954419547
'use strict';
1954519548

1954619549
return {
19547-
version: '5.6.1'
19550+
version: '5.6.2'
1954819551
};
1954919552
})();
1955019553

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.1'
5+
version: '5.6.2'
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.1
6+
version: 5.6.2
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.1",
3+
"version": "5.6.2",
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.1"
27+
"@barchart/events-api-common": "^5.6.2"
2828
},
2929
"devDependencies": {
3030
"@babel/core": "^7.11.6",

0 commit comments

Comments
 (0)