This commit is contained in:
14
dist/services/RunnerCardService.d.ts
vendored
14
dist/services/RunnerCardService.d.ts
vendored
@@ -6,7 +6,7 @@ export declare class RunnerCardService {
|
||||
/**
|
||||
* Get all
|
||||
* Lists all card.
|
||||
* @result ResponseRunnerCard
|
||||
* @returns ResponseRunnerCard
|
||||
* @throws ApiError
|
||||
*/
|
||||
static runnerCardControllerGetAll(): Promise<Array<ResponseRunnerCard>>;
|
||||
@@ -14,7 +14,7 @@ export declare class RunnerCardService {
|
||||
* Post
|
||||
* Create a new card. <br> You can provide a associated runner by id but you don't have to.
|
||||
* @param requestBody CreateRunnerCard
|
||||
* @result ResponseRunnerCard
|
||||
* @returns ResponseRunnerCard
|
||||
* @throws ApiError
|
||||
*/
|
||||
static runnerCardControllerPost(requestBody?: CreateRunnerCard): Promise<ResponseRunnerCard>;
|
||||
@@ -22,7 +22,7 @@ export declare class RunnerCardService {
|
||||
* Get one
|
||||
* Lists all information about the card whose id got provided.
|
||||
* @param id
|
||||
* @result ResponseRunnerCard
|
||||
* @returns ResponseRunnerCard
|
||||
* @throws ApiError
|
||||
*/
|
||||
static runnerCardControllerGetOne(id: number): Promise<ResponseRunnerCard>;
|
||||
@@ -31,7 +31,7 @@ export declare class RunnerCardService {
|
||||
* Update the card whose id you provided. <br> Scans created via this card will still be associated with the old runner. <br> Please remember that ids can't be changed.
|
||||
* @param id
|
||||
* @param requestBody UpdateRunnerCard
|
||||
* @result ResponseRunnerCard
|
||||
* @returns ResponseRunnerCard
|
||||
* @throws ApiError
|
||||
*/
|
||||
static runnerCardControllerPut(id: number, requestBody?: UpdateRunnerCard): Promise<ResponseRunnerCard>;
|
||||
@@ -40,8 +40,8 @@ export declare class RunnerCardService {
|
||||
* Delete the card whose id you provided. <br> If no card with this id exists it will just return 204(no content). <br> If the card still has scans associated you have to provide the force=true query param (warning: this deletes all scans associated with by this card - please disable it instead or just remove the runner association).
|
||||
* @param id
|
||||
* @param force
|
||||
* @result ResponseRunnerCard
|
||||
* @result ResponseEmpty
|
||||
* @returns ResponseRunnerCard
|
||||
* @returns ResponseEmpty
|
||||
* @throws ApiError
|
||||
*/
|
||||
static runnerCardControllerRemove(id: number, force?: boolean): Promise<ResponseRunnerCard | ResponseEmpty>;
|
||||
@@ -50,7 +50,7 @@ export declare class RunnerCardService {
|
||||
* Create blank cards in bulk. <br> Just provide the count as a query param and wait for the 200 response. <br> You can provide the 'returnCards' query param if you want to receive the RESPONSERUNNERCARD objects in the response.
|
||||
* @param count
|
||||
* @param returnCards
|
||||
* @result ResponseEmpty
|
||||
* @returns ResponseEmpty
|
||||
* @throws ApiError
|
||||
*/
|
||||
static runnerCardControllerPostBlancoBulk(count?: number, returnCards?: boolean): Promise<ResponseEmpty>;
|
||||
|
||||
Reference in New Issue
Block a user