@bitbar/cloud-api-client 1.0.24 → 1.0.26
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.
- package/dist/api/APIAdminResource.d.ts +2 -0
- package/dist/api/models/Account.d.ts +1 -0
- package/dist/api/models/Administrator.d.ts +6 -0
- package/dist/bitbar-cloud-api-client.js +5 -2
- package/dist/bitbar-cloud-api-client.js.map +1 -1
- package/dist/bitbar-cloud-api-client.min.js +2 -2
- package/dist/bitbar-cloud-api-client.min.js.map +1 -1
- package/dist/models.d.ts +1 -0
- package/package.json +1 -1
- package/yarn-error.log +4814 -0
|
@@ -30,6 +30,7 @@ import { AdminDeviceSession, AdminInteractiveDeviceSession } from './models/Admi
|
|
|
30
30
|
import { AdminDeviceType, DeviceTypeData } from './models/AdminDeviceType';
|
|
31
31
|
import { AdminEmail } from './models/AdminEmail';
|
|
32
32
|
import { AdminError } from './models/AdminError';
|
|
33
|
+
import { Administrator } from './models/Administrator';
|
|
33
34
|
import { AdminOverview } from './models/AdminOverview';
|
|
34
35
|
import { BillingPeriod } from './models/BillingPeriod';
|
|
35
36
|
import { Browser, BrowserData } from './models/Browser';
|
|
@@ -61,6 +62,7 @@ export declare class APIAdminResource extends APIResource {
|
|
|
61
62
|
accountServices(): APIList<AccountService, CollectionQueryParams, any>;
|
|
62
63
|
accountService(id: number): APIAdminResourceAccountService;
|
|
63
64
|
activities(): APIList<Activity, CollectionQueryParams, any>;
|
|
65
|
+
administrators(): APIList<Administrator, CollectionQueryParams, any>;
|
|
64
66
|
billingPeriods(): APIList<BillingPeriod, CollectionQueryParams, any>;
|
|
65
67
|
billingPeriod(id: number): APIResource<BillingPeriod, import("./models/HTTP").QueryParams, import("./models/HTTP").QueryParams>;
|
|
66
68
|
browsers(): APIList<Browser, CollectionQueryParams, BrowserData>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @bitbar/cloud-api-client v1.0.
|
|
1
|
+
/* @bitbar/cloud-api-client v1.0.26 | 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.0.
|
|
13
|
+
var version = "1.0.26";
|
|
14
14
|
|
|
15
15
|
/******************************************************************************
|
|
16
16
|
Copyright (c) Microsoft Corporation.
|
|
@@ -1166,6 +1166,9 @@
|
|
|
1166
1166
|
activities() {
|
|
1167
1167
|
return new APIList(this).push('admin', 'activities');
|
|
1168
1168
|
}
|
|
1169
|
+
administrators() {
|
|
1170
|
+
return new APIList(this).push('admin', 'administrators');
|
|
1171
|
+
}
|
|
1169
1172
|
billingPeriods() {
|
|
1170
1173
|
return new APIList(this).push('admin', 'billing-periods');
|
|
1171
1174
|
}
|