🚀New lib version v0.3.1 [CI SKIP]
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2021-01-27 16:50:17 +00:00
parent d4d6b713e2
commit fc01350288
7 changed files with 54 additions and 3 deletions

View File

@@ -80,5 +80,19 @@ class RunnerTeamService {
});
return result.body;
}
/**
* 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 async runnerTeamControllerGetRunners(id) {
const result = await request_1.request({
method: 'GET',
path: `/api/teams/${id}/runners`,
});
return result.body;
}
}
exports.RunnerTeamService = RunnerTeamService;