@bitbar/cloud-api-client 1.2.14 → 1.3.2

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.
@@ -6,6 +6,7 @@ export declare type Account = {
6
6
  id: number;
7
7
  invoiceDetails: Invoice;
8
8
  name: string;
9
+ slmOrganizationId: string;
9
10
  userName: string;
10
11
  };
11
12
  export declare type Invoice = {
@@ -20,5 +21,6 @@ export declare type AccountData = Partial<{
20
21
  comment: string;
21
22
  invoiceDetails: Invoice;
22
23
  name: string;
24
+ slmOrganizationId: string;
23
25
  userName: string;
24
26
  }>;
@@ -52,6 +52,7 @@ export declare type AccountService = {
52
52
  serviceCount: number;
53
53
  serviceId: number;
54
54
  serviceName: string;
55
+ slmLicenseId: string;
55
56
  startTime: number;
56
57
  subscriptionManagementURL: string;
57
58
  total: number;
@@ -33,6 +33,11 @@ export declare type SoftwareVersion = {
33
33
  id: number;
34
34
  releaseVersion: string;
35
35
  };
36
+ export declare enum LockReason {
37
+ TESTING = "TESTING",
38
+ CLEANING = "CLEANING",
39
+ NOT_OPERATIONAL = "NOT_OPERATIONAL"
40
+ }
36
41
  export declare type Device = {
37
42
  accountId: number;
38
43
  accountName: string;
@@ -54,6 +59,7 @@ export declare type Device = {
54
59
  imageTop: number;
55
60
  imageWidth: number;
56
61
  locked: boolean;
62
+ lockReason: LockReason;
57
63
  manufacturer: string;
58
64
  online: boolean;
59
65
  osType: OsType;
@@ -1,7 +1,7 @@
1
1
  import { DeviceSessionDataAvailability } from './DeviceSessionDataAvailability';
2
2
  import { QueryParams } from './HTTP';
3
3
  export declare type TestRunDataAvailability = {
4
- deviceRunDataAvailabilities: DeviceSessionDataAvailability;
4
+ deviceRunDataAvailabilities: DeviceSessionDataAvailability[];
5
5
  id: number;
6
6
  testRunId: number;
7
7
  };
@@ -1,4 +1,4 @@
1
- /* @bitbar/cloud-api-client v1.2.14 | Copyright 2024 (c) SmartBear Software and contributors | .git/blob/master/LICENSE */
1
+ /* @bitbar/cloud-api-client v1.3.2 | 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.2.14";
13
+ var version = "1.3.2";
14
14
 
15
15
  /******************************************************************************
16
16
  Copyright (c) Microsoft Corporation.
@@ -2077,6 +2077,12 @@
2077
2077
  SupportedCreators["ROBOT"] = "ROBOT";
2078
2078
  SupportedCreators["AUTOMATIC"] = "AUTOMATIC";
2079
2079
  })(exports.SupportedCreators || (exports.SupportedCreators = {}));
2080
+ exports.LockReason = void 0;
2081
+ (function (LockReason) {
2082
+ LockReason["TESTING"] = "TESTING";
2083
+ LockReason["CLEANING"] = "CLEANING";
2084
+ LockReason["NOT_OPERATIONAL"] = "NOT_OPERATIONAL";
2085
+ })(exports.LockReason || (exports.LockReason = {}));
2080
2086
 
2081
2087
  exports.CriterionField = void 0;
2082
2088
  (function (CriterionField) {