Skip to content

Commit

Permalink
Merge pull request #505 from marisuch/master
Browse files Browse the repository at this point in the history
Updated DesktopPlatform model
  • Loading branch information
piotrsapiejewskismartbear authored Dec 11, 2024
2 parents c791e96 + f016c48 commit 44f3b81
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 30 deletions.
3 changes: 2 additions & 1 deletion dist/api/models/DesktopBrowserCapabilities.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { Platform } from './Device';
export declare type DesktopBrowserCapabilities = {
id: number;
platforms: Array<any>;
Expand All @@ -7,7 +8,7 @@ export declare type DesktopPlatform = {
id: number;
name: string;
resolutions: Array<string>;
value: string;
value: Platform;
version: string;
};
export declare type DesktopBrowser = {
Expand Down
4 changes: 2 additions & 2 deletions dist/bitbar-cloud-api-client.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/bitbar-cloud-api-client.min.js

Large diffs are not rendered by default.

46 changes: 23 additions & 23 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bitbar/cloud-api-client",
"version": "1.2.12",
"version": "1.2.13",
"description": "Bitbar Cloud API Client for JavaScript",
"main": "dist/bitbar-cloud-api-client.min.js",
"types": "dist/index.d.ts",
Expand Down
4 changes: 3 additions & 1 deletion src/api/models/DesktopBrowserCapabilities.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import {Platform} from './Device';

export type DesktopBrowserCapabilities = {
id: number;
platforms: Array<any>;
Expand All @@ -8,7 +10,7 @@ export type DesktopPlatform = {
id: number;
name: string;
resolutions: Array<string>;
value: string;
value: Platform;
version: string;
}

Expand Down

0 comments on commit 44f3b81

Please sign in to comment.