@bitbar/cloud-api-client 1.5.1 → 1.5.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,10 +3,16 @@ export type Account = {
3
3
  activeServiceName: string;
4
4
  comment: string;
5
5
  createTime: number;
6
+ dedicatedDevicesConcurrency: number;
6
7
  dedicatedDevicesCount: number;
8
+ dedicatedDevicesRatio: number;
9
+ dedicatedDevicesUsage: number;
7
10
  id: number;
8
11
  invoiceDetails: Invoice;
9
12
  name: string;
13
+ publicDevicesConcurrency: number;
14
+ publicDevicesRatio: number;
15
+ publicDevicesUsage: number;
10
16
  slmOrganizationId: string;
11
17
  userName: string;
12
18
  };
@@ -56,10 +62,10 @@ export type AccountSessionUsageSummary = {
56
62
  usage: Record<SessionUsageType, number>;
57
63
  };
58
64
  export declare enum SessionUsageType {
59
- AUTOMATIC = "automatic",
60
- MANUAL = "manual",
61
- DEDICATED_AUTOMATIC = "dedicated_automatic",
62
- DEDICATED_MANUAL = "dedicated_manual"
65
+ AUTOMATIC = "AUTOMATIC",
66
+ MANUAL = "MANUAL",
67
+ DEDICATED_AUTOMATIC = "DEDICATED_AUTOMATIC",
68
+ DEDICATED_MANUAL = "DEDICATED_MANUAL"
63
69
  }
64
70
  export declare enum UtilizationType {
65
71
  ALL = "all",
@@ -1,11 +1,11 @@
1
- /* @bitbar/cloud-api-client v1.5.1 | Copyright 2025 (c) SmartBear Software and contributors | .git/blob/master/LICENSE */
1
+ /* @bitbar/cloud-api-client v1.5.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('@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.1";
8
+ var version = "1.5.3";
9
9
 
10
10
  /******************************************************************************
11
11
  Copyright (c) Microsoft Corporation.
@@ -1883,10 +1883,10 @@
1883
1883
 
1884
1884
  exports.SessionUsageType = void 0;
1885
1885
  (function (SessionUsageType) {
1886
- SessionUsageType["AUTOMATIC"] = "automatic";
1887
- SessionUsageType["MANUAL"] = "manual";
1888
- SessionUsageType["DEDICATED_AUTOMATIC"] = "dedicated_automatic";
1889
- SessionUsageType["DEDICATED_MANUAL"] = "dedicated_manual";
1886
+ SessionUsageType["AUTOMATIC"] = "AUTOMATIC";
1887
+ SessionUsageType["MANUAL"] = "MANUAL";
1888
+ SessionUsageType["DEDICATED_AUTOMATIC"] = "DEDICATED_AUTOMATIC";
1889
+ SessionUsageType["DEDICATED_MANUAL"] = "DEDICATED_MANUAL";
1890
1890
  })(exports.SessionUsageType || (exports.SessionUsageType = {}));
1891
1891
  exports.UtilizationType = void 0;
1892
1892
  (function (UtilizationType) {