new lib version [CI SKIP]
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2021-01-03 17:33:57 +00:00
parent 75fa469974
commit 46e9ee2a1b
192 changed files with 6 additions and 2614 deletions

View File

@@ -1,37 +0,0 @@
import type { CreateStatsClient } from '../models/CreateStatsClient';
import type { ResponseEmpty } from '../models/ResponseEmpty';
import type { ResponseStatsClient } from '../models/ResponseStatsClient';
export declare class StatsClientService {
/**
* Get all
* Lists all stats clients. Please remember that the key can only be viewed on creation.
* @returns ResponseStatsClient
* @throws ApiError
*/
static statsClientControllerGetAll(): Promise<Array<ResponseStatsClient>>;
/**
* Post
* Create a new stats client. <br> Please remember that the client's key will be generated automaticly and that it can only be viewed on creation.
* @param requestBody CreateStatsClient
* @returns ResponseStatsClient
* @throws ApiError
*/
static statsClientControllerPost(requestBody?: CreateStatsClient): Promise<ResponseStatsClient>;
/**
* Get one
* Lists all information about the stats client whose id got provided. Please remember that the key can only be viewed on creation.
* @param id
* @returns ResponseStatsClient
* @throws ApiError
*/
static statsClientControllerGetOne(id: number): Promise<ResponseStatsClient>;
/**
* Remove
* Delete the stats client whose id you provided. <br> If no client with this id exists it will just return 204(no content).
* @param id
* @returns ResponseStatsClient
* @returns ResponseEmpty
* @throws ApiError
*/
static statsClientControllerRemove(id: number): Promise<ResponseStatsClient | ResponseEmpty>;
}