bump version to 1.2.4 in package.json

This commit is contained in:
2025-04-17 21:01:57 +02:00
parent ea3d42427b
commit f2e54490f2
7 changed files with 15 additions and 7 deletions

View File

@@ -90,13 +90,17 @@ class RunnerTeamService {
* Get runners
* Lists all runners from this team. <br> This includes the runner's group and distance ran.
* @param id
* @param selfserviceLinks
* @result ResponseRunner
* @throws ApiError
*/
static async runnerTeamControllerGetRunners(id) {
static async runnerTeamControllerGetRunners(id, selfserviceLinks) {
const result = await (0, request_1.request)({
method: 'GET',
path: `/api/teams/${id}/runners`,
query: {
'selfservice_links': selfserviceLinks,
},
});
return result.body;
}