@bitbar/cloud-api-client 1.3.2 → 1.3.3

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.
@@ -3,6 +3,7 @@ import { TunnelSettings } from './DeviceSession';
3
3
  import { OsType } from './Enum';
4
4
  import { CollectionBasicQueryParams, QueryParams } from './HTTP';
5
5
  import { Tag } from './Tag';
6
+ import { UserFile } from './UserFile';
6
7
  export declare enum LimitationType {
7
8
  PACKAGE = "PACKAGE",
8
9
  CLASS = "CLASS"
@@ -58,6 +59,11 @@ export declare type TestRun = {
58
59
  waitingDeviceCount: number;
59
60
  warningDeviceCount: number;
60
61
  };
62
+ export declare enum TestRunConfigFileAction {
63
+ COPY_TO_DEVICE = "COPY_TO_DEVICE",
64
+ INSTALL = "INSTALL",
65
+ RUN_TEST = "RUN_TEST"
66
+ }
61
67
  export declare type TestRunConfig = {
62
68
  appCrawlerRun: boolean;
63
69
  appiumBrokerAddress: string;
@@ -75,7 +81,11 @@ export declare type TestRunConfig = {
75
81
  deviceLanguageCode: string;
76
82
  deviceNamePattern: string;
77
83
  disableResigning: boolean;
78
- files: any;
84
+ files: Array<{
85
+ action: TestRunConfigFileAction;
86
+ availableActions: Array<TestRunConfigFileAction>;
87
+ file: UserFile;
88
+ }>;
79
89
  frameworkId: number;
80
90
  hookURL: string;
81
91
  id: number;
@@ -1,4 +1,4 @@
1
- /* @bitbar/cloud-api-client v1.3.2 | Copyright 2025 (c) SmartBear Software and contributors | .git/blob/master/LICENSE */
1
+ /* @bitbar/cloud-api-client v1.3.3 | 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('axios'), require('@bitbar/finka'), require('qs'), require('node-abort-controller')) :
4
4
  typeof define === 'function' && define.amd ? define(['exports', 'axios', '@bitbar/finka', 'qs', 'node-abort-controller'], factory) :
@@ -10,7 +10,7 @@
10
10
  var axios__default = /*#__PURE__*/_interopDefaultLegacy(axios);
11
11
  var finka__default = /*#__PURE__*/_interopDefaultLegacy(finka);
12
12
 
13
- var version = "1.3.2";
13
+ var version = "1.3.3";
14
14
 
15
15
  /******************************************************************************
16
16
  Copyright (c) Microsoft Corporation.
@@ -2258,6 +2258,12 @@
2258
2258
  TestState["RUNNING"] = "RUNNING";
2259
2259
  TestState["FINISHED"] = "FINISHED";
2260
2260
  })(exports.TestState || (exports.TestState = {}));
2261
+ exports.TestRunConfigFileAction = void 0;
2262
+ (function (TestRunConfigFileAction) {
2263
+ TestRunConfigFileAction["COPY_TO_DEVICE"] = "COPY_TO_DEVICE";
2264
+ TestRunConfigFileAction["INSTALL"] = "INSTALL";
2265
+ TestRunConfigFileAction["RUN_TEST"] = "RUN_TEST";
2266
+ })(exports.TestRunConfigFileAction || (exports.TestRunConfigFileAction = {}));
2261
2267
 
2262
2268
  exports.MfaStatus = void 0;
2263
2269
  (function (MfaStatus) {