Skip to content

Commit 44f3b81

Browse files
Merge pull request #505 from marisuch/master
Updated DesktopPlatform model
2 parents c791e96 + f016c48 commit 44f3b81

6 files changed

+33
-30
lines changed

dist/api/models/DesktopBrowserCapabilities.d.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { Platform } from './Device';
12
export declare type DesktopBrowserCapabilities = {
23
id: number;
34
platforms: Array<any>;
@@ -7,7 +8,7 @@ export declare type DesktopPlatform = {
78
id: number;
89
name: string;
910
resolutions: Array<string>;
10-
value: string;
11+
value: Platform;
1112
version: string;
1213
};
1314
export declare type DesktopBrowser = {

dist/bitbar-cloud-api-client.js

+2-2
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

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+23-23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bitbar/cloud-api-client",
3-
"version": "1.2.12",
3+
"version": "1.2.13",
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/DesktopBrowserCapabilities.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import {Platform} from './Device';
2+
13
export type DesktopBrowserCapabilities = {
24
id: number;
35
platforms: Array<any>;
@@ -8,7 +10,7 @@ export type DesktopPlatform = {
810
id: number;
911
name: string;
1012
resolutions: Array<string>;
11-
value: string;
13+
value: Platform;
1214
version: string;
1315
}
1416

0 commit comments

Comments
 (0)