@bitbar/cloud-api-client 1.5.16 → 1.5.18

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.
@@ -63,7 +63,6 @@ export declare class APIAdminResource extends APIResource {
63
63
  billingPeriods(): APIList<BillingPeriod, CollectionQueryParams, any>;
64
64
  billingPeriod(id: number): APIResource<BillingPeriod, import("./models/HTTP").QueryParams, import("./models/HTTP").QueryParams>;
65
65
  browsers(): APIList<Browser, CollectionQueryParams, BrowserData>;
66
- browser(id: number): APIResource<Browser, NoQueryParams, BrowserData>;
67
66
  clusters(): APIList<Cluster, CollectionQueryParams, any>;
68
67
  cluster(id: number): APIAdminResourceCluster;
69
68
  devices(): APIAdminListDevices;
@@ -1,11 +1,11 @@
1
- /* @bitbar/cloud-api-client v1.5.16 | Copyright 2025 (c) SmartBear Software and contributors | .git/blob/master/LICENSE */
1
+ /* @bitbar/cloud-api-client v1.5.18 | Copyright 2026 (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.16";
8
+ var version = "1.5.18";
9
9
 
10
10
  /******************************************************************************
11
11
  Copyright (c) Microsoft Corporation.
@@ -1186,12 +1186,6 @@
1186
1186
  browsers() {
1187
1187
  return new APIList(this).push('admin', 'browsers');
1188
1188
  }
1189
- browser(id) {
1190
- if (id == null) {
1191
- throw new Error('Resource ID cannot be null!');
1192
- }
1193
- return new APIResource(this).push('admin', 'browsers', id);
1194
- }
1195
1189
  clusters() {
1196
1190
  return new APIList(this).push('clusters');
1197
1191
  }