@odit/lfk-client-js
Advanced tools
Comparing version 0.6.4 to 0.7.0
@@ -6,3 +6,3 @@ "use strict"; | ||
BASE: '', | ||
VERSION: '0.6.4', | ||
VERSION: '0.7.0', | ||
WITH_CREDENTIALS: false, | ||
@@ -9,0 +9,0 @@ TOKEN: undefined, |
@@ -48,2 +48,10 @@ import type { CreateRunnerCard } from '../models/CreateRunnerCard'; | ||
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>; | ||
} |
@@ -83,3 +83,20 @@ "use strict"; | ||
} | ||
/** | ||
* 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; |
{ | ||
"name": "@odit/lfk-client-js", | ||
"description": "A lib to interact with https://git.odit.services/lfk/backend. Use this version for native JS applications.", | ||
"version": "0.6.4", | ||
"version": "0.7.0", | ||
"license": "CC-BY-NC-SA-4.0", | ||
@@ -6,0 +6,0 @@ "main": "./dist/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
207754
5380