@bitbar/cloud-api-client 1.3.6 → 1.3.8

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.
@@ -2,8 +2,9 @@ import { API } from '../API';
2
2
  import { APIEntity } from './APIEntity';
3
3
  import { APIResource } from './APIResource';
4
4
  import { CleanupConfigurationSpecificData, DeviceCleanupConfiguration } from './models/Device';
5
+ import APIList from './APIList';
5
6
  export declare class APIResourceCleanupConfiguration extends APIResource<DeviceCleanupConfiguration> {
6
7
  constructor(parent: APIEntity<any> | API, id: number);
7
- devices(): APIResource<DeviceCleanupConfiguration, CleanupConfigurationSpecificData, void>;
8
+ devices(): APIList<DeviceCleanupConfiguration, CleanupConfigurationSpecificData, void>;
8
9
  }
9
10
  export default APIResourceCleanupConfiguration;
@@ -61,6 +61,6 @@ export declare type AccountService = {
61
61
  userId: number;
62
62
  vatRate: number;
63
63
  };
64
- export declare type AccountServiceData = Pick<AccountService, 'endTime' | 'serviceId'> & {
64
+ export declare type AccountServiceData = Pick<AccountService, 'endTime' | 'serviceId' | 'slmLicenseId'> & {
65
65
  count: number;
66
66
  };
@@ -1,4 +1,4 @@
1
- /* @bitbar/cloud-api-client v1.3.6 | Copyright 2025 (c) SmartBear Software and contributors | .git/blob/master/LICENSE */
1
+ /* @bitbar/cloud-api-client v1.3.8 | 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.6";
13
+ var version = "1.3.8";
14
14
 
15
15
  /******************************************************************************
16
16
  Copyright (c) Microsoft Corporation.
@@ -420,7 +420,7 @@
420
420
  this.push('cleanup-configurations', id);
421
421
  }
422
422
  devices() {
423
- return new APIResource(this).push('devices');
423
+ return new APIList(this).push('devices');
424
424
  }
425
425
  }
426
426