🚀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:
10
dist/services/RunnerOrganizationService.d.ts
vendored
10
dist/services/RunnerOrganizationService.d.ts
vendored
@@ -1,5 +1,6 @@
|
||||
import type { CreateRunnerOrganization } from '../models/CreateRunnerOrganization';
|
||||
import type { ResponseEmpty } from '../models/ResponseEmpty';
|
||||
import type { ResponseRunner } from '../models/ResponseRunner';
|
||||
import type { ResponseRunnerOrganization } from '../models/ResponseRunnerOrganization';
|
||||
import type { UpdateRunnerOrganization } from '../models/UpdateRunnerOrganization';
|
||||
export declare class RunnerOrganizationService {
|
||||
@@ -45,4 +46,13 @@ export declare class RunnerOrganizationService {
|
||||
* @throws ApiError
|
||||
*/
|
||||
static runnerOrganizationControllerRemove(id: number, force?: boolean): Promise<ResponseRunnerOrganization | ResponseEmpty>;
|
||||
/**
|
||||
* Get runners
|
||||
* Lists all runners from this org and it's teams (if you don't provide the ?onlyDirect=true param). <br> This includes the runner's group and distance ran.
|
||||
* @param id
|
||||
* @param onlyDirect
|
||||
* @returns ResponseRunner
|
||||
* @throws ApiError
|
||||
*/
|
||||
static runnerOrganizationControllerGetRunners(id: number, onlyDirect?: boolean): Promise<Array<ResponseRunner>>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user