@bitbar/cloud-api-client 1.2.4 → 1.2.6

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.
@@ -5,6 +5,7 @@ import { APIResourceBillingPeriod } from './APIResourceBillingPeriod';
5
5
  import { Account, AccountData } from './models/Account';
6
6
  import { AccountConcurrencyStatusMap } from './models/AccountConcurrencyStatusMap';
7
7
  import { AccountPreferences } from './models/AccountPreference';
8
+ import { AccountService } from './models/AccountService';
8
9
  import { AccountServicePayment } from './models/AccountServicePayment';
9
10
  import { BillingPeriod, BillingPeriodQueryParams } from './models/BillingPeriod';
10
11
  import { DeviceTimeSummaryQueryParams } from './models/Device';
@@ -28,5 +29,6 @@ export declare class APIResourceAccount extends APIResource<Account, QueryParams
28
29
  billingPeriod(id: number): APIResourceBillingPeriod;
29
30
  serviceBillingPeriod(id: number): APIResource<AccountServicePayment, BillingPeriodQueryParams, void>;
30
31
  visualTestAccess(): APIResource<VisualTestAccess, NoQueryParams, VisualTestAccess>;
32
+ accountServices(): APIList<AccountService, import("./models/HTTP").CollectionQueryParams, any>;
31
33
  }
32
34
  export default APIResourceAccount;
@@ -1,4 +1,4 @@
1
- /* @bitbar/cloud-api-client v1.2.4 | Copyright 2024 (c) SmartBear Software and contributors | .git/blob/master/LICENSE */
1
+ /* @bitbar/cloud-api-client v1.2.6 | Copyright 2024 (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.4";
13
+ var version = "1.2.6";
14
14
 
15
15
  /******************************************************************************
16
16
  Copyright (c) Microsoft Corporation.
@@ -1535,6 +1535,9 @@
1535
1535
  visualTestAccess() {
1536
1536
  return new APIResource(this).push('visual-tests', 'access');
1537
1537
  }
1538
+ accountServices() {
1539
+ return new APIList(this).push('account-services');
1540
+ }
1538
1541
  }
1539
1542
 
1540
1543
  class APIResourceBroker extends APIResource {
@@ -2037,6 +2040,13 @@
2037
2040
  FrameworkType["REMOTE"] = "REMOTE";
2038
2041
  })(exports.FrameworkType || (exports.FrameworkType = {}));
2039
2042
 
2043
+ exports.BillingType = void 0;
2044
+ (function (BillingType) {
2045
+ BillingType["BUY"] = "BUY";
2046
+ BillingType["CHARGE"] = "CHARGE";
2047
+ BillingType["CANCEL"] = "CANCEL";
2048
+ })(exports.BillingType || (exports.BillingType = {}));
2049
+
2040
2050
  exports.BrokerType = void 0;
2041
2051
  (function (BrokerType) {
2042
2052
  BrokerType["MOBILE"] = "MOBILE";