@bitbar/cloud-api-client 1.5.9 → 1.5.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -53,7 +53,6 @@ export type DeviceSession = {
53
53
  clientSideId: string;
54
54
  device: Device;
55
55
  deviceInstanceId: number;
56
- deviceLogFirstTimestamp: number;
57
56
  deviceRunId: number;
58
57
  duration: number;
59
58
  endTime: number;
@@ -1,11 +1,12 @@
1
1
  import { OsType } from './Enum';
2
2
  import { UserFile } from './UserFile';
3
+ export type FrameworkOptionsType = 'CLIENT_SIDE' | 'MANUAL' | '';
3
4
  export type FrameworkOptions = {
4
5
  id: number;
5
6
  name: string;
6
7
  description: string;
7
8
  icon: string;
8
- type: string;
9
+ type: FrameworkOptionsType;
9
10
  requiredAppExtensions: string;
10
11
  requiredTestExtensions: string;
11
12
  sampleApp: UserFile;
@@ -4,6 +4,7 @@ import { OsType } from './Enum';
4
4
  import { CollectionBasicQueryParams, QueryParams } from './HTTP';
5
5
  import { UserFile } from './UserFile';
6
6
  import { DeviceGroup } from './DeviceGroup';
7
+ import { Framework } from './Framework';
7
8
  export declare enum LimitationType {
8
9
  PACKAGE = "PACKAGE",
9
10
  CLASS = "CLASS"
@@ -98,7 +99,7 @@ export type TestRunConfig = TRCDefaultSettings & {
98
99
  applicationUsername: string;
99
100
  availableDeviceGroups: DeviceGroup[];
100
101
  availableDevices: Array<Device>;
101
- availableFrameworks: any;
102
+ availableFrameworks: Framework[];
102
103
  availableOsTypes: Array<OsType>;
103
104
  clientSideTestConfig: any;
104
105
  computedDevices: Array<number>;
@@ -1,11 +1,11 @@
1
- /* @bitbar/cloud-api-client v1.5.9 | Copyright 2025 (c) SmartBear Software and contributors | .git/blob/master/LICENSE */
1
+ /* @bitbar/cloud-api-client v1.5.11 | Copyright 2025 (c) SmartBear Software and contributors | .git/blob/master/LICENSE */
2
2
  (function (global, factory) {
3
3
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@bitbar/finka'), require('qs'), require('node-abort-controller')) :
4
4
  typeof define === 'function' && define.amd ? define(['exports', '@bitbar/finka', 'qs', 'node-abort-controller'], factory) :
5
5
  (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["bitbar-cloud-api-client"] = {}, global["@bitbar/finka"], global.qs, global["node-abort-controller"]));
6
6
  })(this, (function (exports, finka, qs, nodeAbortController) { 'use strict';
7
7
 
8
- var version = "1.5.9";
8
+ var version = "1.5.11";
9
9
 
10
10
  /******************************************************************************
11
11
  Copyright (c) Microsoft Corporation.