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 RunnerTeamService {
/**
* Get all
* Lists all runnerTeams.
* Lists all teams. <br> This includes their parent organisation and contact (if existing/associated).
* @returns ResponseRunnerTeam
* @throws ApiError
*/
@@ -18,7 +18,7 @@ class RunnerTeamService {
}
/**
* Post
* Create a new runnerTeam object (id will be generated automagicly).
* Create a new organsisation. <br> Please remember to provide it's parent group's id.
* @param requestBody CreateRunnerTeam
* @returns ResponseRunnerTeam
* @throws ApiError
@@ -33,7 +33,7 @@ class RunnerTeamService {
}
/**
* Get one
* Returns a runnerTeam of a specified id (if it exists)
* Lists all information about the team whose id got provided.
* @param id
* @returns ResponseRunnerTeam
* @throws ApiError
@@ -47,7 +47,7 @@ class RunnerTeamService {
}
/**
* Put
* Update a runnerTeam object (id can't be changed).
* Update the team whose id you provided. <br> Please remember that ids can't be changed.
* @param id
* @param requestBody UpdateRunnerTeam
* @returns ResponseRunnerTeam
@@ -63,7 +63,7 @@ class RunnerTeamService {
}
/**
* Remove
* Delete a specified runnerTeam (if it exists).
* Delete the team whose id you provided. <br> If the team still has runners associated this will fail. <br> To delete the team with all associated runners set the force QueryParam to true (cascading deletion might take a while). <br> If no team with this id exists it will just return 204(no content).
* @param id
* @param force
* @returns ResponseRunnerTeam