@bitbar/cloud-api-client 1.5.3 → 1.5.5
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/APIAdminListRuns.d.ts +1 -3
- package/dist/api/APIAdminResourceAccount.d.ts +3 -3
- package/dist/api/APIListRuns.d.ts +3 -3
- package/dist/api/models/Account.d.ts +2 -0
- package/dist/api/models/TestRun.d.ts +0 -4
- package/dist/bitbar-cloud-api-client.js +2 -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/package.json +1 -1
|
@@ -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,12 +1,12 @@
|
|
|
1
1
|
import { APIAdminResource } from './APIAdminResource';
|
|
2
2
|
import { APIList } from './APIList';
|
|
3
3
|
import { APIResource } from './APIResource';
|
|
4
|
-
import { Account, AccountUsage, AccountUsageParams, AccountUsageSummary, AccountUsageSummaryParams } from './models/Account';
|
|
5
|
-
import {
|
|
4
|
+
import { Account, AccountData, AccountUsage, AccountUsageParams, AccountUsageSummary, AccountUsageSummaryParams } from './models/Account';
|
|
5
|
+
import { NoQueryParams, SimpleCollectionResponse } from './models/HTTP';
|
|
6
6
|
import { Role, RoleData, RoleParams } from './models/Role';
|
|
7
7
|
import { AccountService } from './models/AccountService';
|
|
8
8
|
import { AccountPreferences } from './models/AccountPreference';
|
|
9
|
-
export declare class APIAdminResourceAccount extends APIResource<Account, NoQueryParams,
|
|
9
|
+
export declare class APIAdminResourceAccount extends APIResource<Account, NoQueryParams, AccountData> {
|
|
10
10
|
constructor(parent: APIAdminResource, id: number);
|
|
11
11
|
roles(): APIList<Role, RoleParams, RoleData>;
|
|
12
12
|
role(id: number): APIResource<Role, RoleParams, void>;
|
|
@@ -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,
|
|
5
|
-
export declare class APIListRuns extends APIList<TestRun, TestRunsQueryParams,
|
|
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,
|
|
7
|
+
config(): APIResource<TestRunConfig, RunsConfigParams, TestRunConfig>;
|
|
8
8
|
}
|
|
9
9
|
export default APIListRuns;
|
|
@@ -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.
|
|
1
|
+
/* @bitbar/cloud-api-client v1.5.5 | 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.
|
|
8
|
+
var version = "1.5.5";
|
|
9
9
|
|
|
10
10
|
/******************************************************************************
|
|
11
11
|
Copyright (c) Microsoft Corporation.
|