Skip to content

Commit a1769a9

Browse files
committed
Release. Bump version number 5.6.3
1 parent bc70253 commit a1769a9

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
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.2"
6+
"version": "5.6.3"
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.2",
3+
"version": "5.6.3",
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.2</small>
1+
# @barchart/events-client-js <small>5.6.3</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.2'
19791+
version: '5.6.3'
1979219792
};
1979319793
})();
1979419794

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19321,7 +19321,7 @@ module.exports = (() => {
1932119321
const protocolType = Enum.fromCode(ProtocolType, protocol.toUpperCase());
1932219322
this._startReportEndpoint = EndpointBuilder.for('start-report', 'start report').withVerb(VerbType.POST).withProtocol(protocolType).withHost(host).withPort(port).withPathBuilder(pb => {
1932319323
pb.withLiteralParameter('reports', 'reports');
19324-
}).withBody('filter').withBasicAuthentication(credentials.username, credentials.password).withRequestInterceptor(RequestInterceptor.PLAIN_TEXT_RESPONSE).withResponseInterceptor(responseInterceptorForReportStartDeserialization).withErrorInterceptor(ErrorInterceptor.GENERAL).endpoint;
19324+
}).withBody('filter').withBody('output').withBasicAuthentication(credentials.username, credentials.password).withRequestInterceptor(RequestInterceptor.PLAIN_TEXT_RESPONSE).withResponseInterceptor(responseInterceptorForReportStartDeserialization).withErrorInterceptor(ErrorInterceptor.GENERAL).endpoint;
1932519325
this._getReportAvailabilityEndpoint = EndpointBuilder.for('get-report-availability', 'get report availability').withVerb(VerbType.GET).withProtocol(protocolType).withHost(host).withPort(port).withPathBuilder(pb => {
1932619326
pb.withLiteralParameter('reports', 'reports').withVariableParameter('source', 'source', 'source', false).withLiteralParameter('availability', 'availability');
1932719327
}).withBasicAuthentication(credentials.username, credentials.password).withRequestInterceptor(RequestInterceptor.PLAIN_TEXT_RESPONSE).withResponseInterceptor(responseInterceptorForReportAvailabilityDeserialization).withErrorInterceptor(ErrorInterceptor.GENERAL).endpoint;
@@ -19547,7 +19547,7 @@ module.exports = (() => {
1954719547
'use strict';
1954819548

1954919549
return {
19550-
version: '5.6.2'
19550+
version: '5.6.3'
1955119551
};
1955219552
})();
1955319553

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

0 commit comments

Comments
 (0)