new lib version [CI SKIP]
This commit is contained in:
14
dist/services/RunnerOrganisationService.js
vendored
14
dist/services/RunnerOrganisationService.js
vendored
@@ -6,7 +6,7 @@ class RunnerOrganisationService {
|
||||
/**
|
||||
* Get all
|
||||
* Lists all runnerOrganisations.
|
||||
* @result ResponseRunnerOrganisation
|
||||
* @returns ResponseRunnerOrganisation
|
||||
* @throws ApiError
|
||||
*/
|
||||
static async runnerOrganisationControllerGetAll() {
|
||||
@@ -20,7 +20,7 @@ class RunnerOrganisationService {
|
||||
* Post
|
||||
* Create a new runnerOrganisation object (id will be generated automagicly).
|
||||
* @param requestBody CreateRunnerOrganisation
|
||||
* @result ResponseRunnerOrganisation
|
||||
* @returns ResponseRunnerOrganisation
|
||||
* @throws ApiError
|
||||
*/
|
||||
static async runnerOrganisationControllerPost(requestBody) {
|
||||
@@ -35,7 +35,7 @@ class RunnerOrganisationService {
|
||||
* Get one
|
||||
* Returns a runnerOrganisation of a specified id (if it exists)
|
||||
* @param id
|
||||
* @result ResponseRunnerOrganisation
|
||||
* @returns ResponseRunnerOrganisation
|
||||
* @throws ApiError
|
||||
*/
|
||||
static async runnerOrganisationControllerGetOne(id) {
|
||||
@@ -49,8 +49,8 @@ class RunnerOrganisationService {
|
||||
* Put
|
||||
* Update a runnerOrganisation object (id can't be changed).
|
||||
* @param id
|
||||
* @param requestBody RunnerOrganisation
|
||||
* @result ResponseRunnerOrganisation
|
||||
* @param requestBody UpdateRunnerOrganisation
|
||||
* @returns ResponseRunnerOrganisation
|
||||
* @throws ApiError
|
||||
*/
|
||||
static async runnerOrganisationControllerPut(id, requestBody) {
|
||||
@@ -66,8 +66,8 @@ class RunnerOrganisationService {
|
||||
* Delete a specified runnerOrganisation (if it exists).
|
||||
* @param id
|
||||
* @param force
|
||||
* @result ResponseRunnerOrganisation
|
||||
* @result ResponseEmpty
|
||||
* @returns ResponseRunnerOrganisation
|
||||
* @returns ResponseEmpty
|
||||
* @throws ApiError
|
||||
*/
|
||||
static async runnerOrganisationControllerRemove(id, force) {
|
||||
|
||||
Reference in New Issue
Block a user