@bitbar/cloud-api-client 1.5.2 → 1.5.4

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.
@@ -7,8 +7,6 @@ import { RunsConfigParams, TestRunConfig } from './models/TestRun';
7
7
  export declare class APIAdminListRuns extends APIList<AdminTestRun> {
8
8
  protected ALLOWED_HTTP_METHODS: Array<Method>;
9
9
  constructor(parent: APIAdminResource);
10
- config(): APIResource<TestRunConfig, RunsConfigParams, {
11
- configuration: TestRunConfig;
12
- }>;
10
+ config(): APIResource<TestRunConfig, RunsConfigParams, TestRunConfig>;
13
11
  }
14
12
  export default APIAdminListRuns;
@@ -1,9 +1,9 @@
1
1
  import { APIList } from './APIList';
2
2
  import { APIResource } from './APIResource';
3
3
  import { APIResourceUser } from './APIResourceUser';
4
- import { RunsConfigParams, TestRun, TestRunConfig, TestRunsConfigData, TestRunsData, TestRunsQueryParams } from './models/TestRun';
5
- export declare class APIListRuns extends APIList<TestRun, TestRunsQueryParams, TestRunsData> {
4
+ import { RunsConfigParams, TestRun, TestRunConfig, TestRunsQueryParams } from './models/TestRun';
5
+ export declare class APIListRuns extends APIList<TestRun, TestRunsQueryParams, TestRunConfig> {
6
6
  constructor(parent: APIResourceUser);
7
- config(): APIResource<TestRunConfig, RunsConfigParams, TestRunsConfigData>;
7
+ config(): APIResource<TestRunConfig, RunsConfigParams, TestRunConfig>;
8
8
  }
9
9
  export default APIListRuns;
@@ -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
  };
@@ -137,16 +137,12 @@ export interface RunData extends TestRunData {
137
137
  export interface RunQueryParam extends QueryParams {
138
138
  projectId: number;
139
139
  }
140
- export interface TestRunsData {
141
- configuration: TestRunConfig;
142
- }
143
140
  export type TestRunsIncludes = {
144
141
  includeDeviceGroups: boolean;
145
142
  includeDevices: boolean;
146
143
  includeFrameworks: boolean;
147
144
  };
148
145
  export type RunsConfigParams = TestRunsIncludes & QueryParams;
149
- export type TestRunsConfigData = TestRunsIncludes & TestRunsData;
150
146
  export interface TestRunsQueryParams extends CollectionBasicQueryParams {
151
147
  forWholeAccount: boolean;
152
148
  skipCommonProject: boolean;
@@ -1,11 +1,11 @@
1
- /* @bitbar/cloud-api-client v1.5.2 | Copyright 2025 (c) SmartBear Software and contributors | .git/blob/master/LICENSE */
1
+ /* @bitbar/cloud-api-client v1.5.4 | 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.2";
8
+ var version = "1.5.4";
9
9
 
10
10
  /******************************************************************************
11
11
  Copyright (c) Microsoft Corporation.