🚀New lib version v0.3.1 [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:
9
dist/services/RunnerTeamService.d.ts
vendored
9
dist/services/RunnerTeamService.d.ts
vendored
@@ -1,5 +1,6 @@
|
||||
import type { CreateRunnerTeam } from '../models/CreateRunnerTeam';
|
||||
import type { ResponseEmpty } from '../models/ResponseEmpty';
|
||||
import type { ResponseRunner } from '../models/ResponseRunner';
|
||||
import type { ResponseRunnerTeam } from '../models/ResponseRunnerTeam';
|
||||
import type { UpdateRunnerTeam } from '../models/UpdateRunnerTeam';
|
||||
export declare class RunnerTeamService {
|
||||
@@ -45,4 +46,12 @@ export declare class RunnerTeamService {
|
||||
* @throws ApiError
|
||||
*/
|
||||
static runnerTeamControllerRemove(id: number, force?: boolean): Promise<ResponseRunnerTeam | ResponseEmpty>;
|
||||
/**
|
||||
* Get runners
|
||||
* Lists all runners from this team. <br> This includes the runner's group and distance ran.
|
||||
* @param id
|
||||
* @returns ResponseRunner
|
||||
* @throws ApiError
|
||||
*/
|
||||
static runnerTeamControllerGetRunners(id: number): Promise<Array<ResponseRunner>>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user