Skip to content

Commit 4922001

Browse files
Merge pull request #553 from marisuch/master
TestRunConfig model update
2 parents fd0cca3 + a0bb196 commit 4922001

10 files changed

Lines changed: 1847 additions & 4180 deletions

dist/api/models/Framework.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
import { OsType } from './Enum';
22
import { UserFile } from './UserFile';
3+
export type FrameworkOptionsType = 'CLIENT_SIDE' | 'MANUAL' | '';
34
export type FrameworkOptions = {
45
id: number;
56
name: string;
67
description: string;
78
icon: string;
8-
type: string;
9+
type: FrameworkOptionsType;
910
requiredAppExtensions: string;
1011
requiredTestExtensions: string;
1112
sampleApp: UserFile;

dist/api/models/TestRun.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { OsType } from './Enum';
44
import { CollectionBasicQueryParams, QueryParams } from './HTTP';
55
import { UserFile } from './UserFile';
66
import { DeviceGroup } from './DeviceGroup';
7+
import { Framework } from './Framework';
78
export declare enum LimitationType {
89
PACKAGE = "PACKAGE",
910
CLASS = "CLASS"
@@ -98,7 +99,7 @@ export type TestRunConfig = TRCDefaultSettings & {
9899
applicationUsername: string;
99100
availableDeviceGroups: DeviceGroup[];
100101
availableDevices: Array<Device>;
101-
availableFrameworks: any;
102+
availableFrameworks: Framework[];
102103
availableOsTypes: Array<OsType>;
103104
clientSideTestConfig: any;
104105
computedDevices: Array<number>;

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.

0 commit comments

Comments
 (0)