🚀New lib version v0.7.0 [CI SKIP]
All checks were successful
continuous-integration/drone Build is passing
All checks were successful
continuous-integration/drone Build is passing
This commit is contained in:
2
dist/core/OpenAPI.js
vendored
2
dist/core/OpenAPI.js
vendored
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.OpenAPI = void 0;
|
||||
exports.OpenAPI = {
|
||||
BASE: '',
|
||||
VERSION: '0.6.4',
|
||||
VERSION: '0.7.0',
|
||||
WITH_CREDENTIALS: false,
|
||||
TOKEN: undefined,
|
||||
USERNAME: undefined,
|
||||
|
||||
8
dist/services/RunnerCardService.d.ts
vendored
8
dist/services/RunnerCardService.d.ts
vendored
@@ -45,4 +45,12 @@ export declare class RunnerCardService {
|
||||
* @throws ApiError
|
||||
*/
|
||||
static runnerCardControllerRemove(id: number, force?: boolean): Promise<ResponseRunnerCard | ResponseEmpty>;
|
||||
/**
|
||||
* Post blanco bulk
|
||||
* Create blank cards in bulk. <br> Just provide the count as a query param and wait for the 200 response.
|
||||
* @param count
|
||||
* @returns ResponseEmpty
|
||||
* @throws ApiError
|
||||
*/
|
||||
static runnerCardControllerPostBlancoBulk(count?: number): Promise<ResponseEmpty>;
|
||||
}
|
||||
|
||||
17
dist/services/RunnerCardService.js
vendored
17
dist/services/RunnerCardService.js
vendored
@@ -80,5 +80,22 @@ class RunnerCardService {
|
||||
});
|
||||
return result.body;
|
||||
}
|
||||
/**
|
||||
* Post blanco bulk
|
||||
* Create blank cards in bulk. <br> Just provide the count as a query param and wait for the 200 response.
|
||||
* @param count
|
||||
* @returns ResponseEmpty
|
||||
* @throws ApiError
|
||||
*/
|
||||
static async runnerCardControllerPostBlancoBulk(count) {
|
||||
const result = await request_1.request({
|
||||
method: 'POST',
|
||||
path: `/api/cards/bulk`,
|
||||
query: {
|
||||
'count': count,
|
||||
},
|
||||
});
|
||||
return result.body;
|
||||
}
|
||||
}
|
||||
exports.RunnerCardService = RunnerCardService;
|
||||
|
||||
Reference in New Issue
Block a user