Skip to content

Commit 926489a

Browse files
authored
Merge pull request #485 from piotrsapiejewskismartbear/master
SDCB-12865 Fix Device model
2 parents dfbee85 + 24478d5 commit 926489a

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

dist/api/models/Device.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export declare type Device = {
6060
platform: Platform;
6161
properties: CollectionResponse<DeviceProperty>;
6262
softwareVersion: SoftwareVersion;
63-
supportedCreators: SupportedCreators;
63+
supportedCreators: Array<SupportedCreators>;
6464
};
6565
export declare type DeviceCleanupConfiguration = {
6666
content: string;

dist/bitbar-cloud-api-client.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/bitbar-cloud-api-client.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/bitbar-cloud-api-client.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/bitbar-cloud-api-client.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bitbar/cloud-api-client",
3-
"version": "1.2.3",
3+
"version": "1.2.4",
44
"description": "Bitbar Cloud API Client for JavaScript",
55
"main": "dist/bitbar-cloud-api-client.min.js",
66
"types": "dist/index.d.ts",

src/api/models/Device.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export type Device = {
6767
platform: Platform;
6868
properties: CollectionResponse<DeviceProperty>;
6969
softwareVersion: SoftwareVersion;
70-
supportedCreators: SupportedCreators;
70+
supportedCreators: Array<SupportedCreators>;
7171
}
7272

7373
export type DeviceCleanupConfiguration = {

0 commit comments

Comments
 (0)