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

This commit is contained in:
2020-12-29 13:35:32 +00:00
parent b7a815076f
commit ec3df312be
33 changed files with 188 additions and 86 deletions

View File

@@ -5,7 +5,7 @@ const request_1 = require("../core/request");
class RunnerService {
/**
* Get all
* Lists all runners.
* Lists all runners from all teams/orgs. <br> This includes the runner's group and distance ran.
* @returns ResponseRunner
* @throws ApiError
*/
@@ -18,7 +18,7 @@ class RunnerService {
}
/**
* Post
* Create a new runner object (id will be generated automagicly).
* Create a new runner. <br> Please remeber to provide the runner's group's id.
* @param requestBody CreateRunner
* @returns any
* @throws ApiError
@@ -33,7 +33,7 @@ class RunnerService {
}
/**
* Get one
* Returns a runner of a specified id (if it exists)
* Lists all information about the runner whose id got provided.
* @param id
* @returns ResponseRunner
* @throws ApiError
@@ -47,7 +47,7 @@ class RunnerService {
}
/**
* Put
* Update a runner object (id can't be changed).
* Update the runner whose id you provided. <br> Please remember that ids can't be changed.
* @param id
* @param requestBody UpdateRunner
* @returns ResponseRunner
@@ -63,7 +63,7 @@ class RunnerService {
}
/**
* Remove
* Delete a specified runner (if it exists).
* Delete the runner whose id you provided. <br> If no runner with this id exists it will just return 204(no content).
* @param id
* @param force
* @returns ResponseRunner