new lib version [CI SKIP]

This commit is contained in:
2020-12-30 18:01:24 +00:00
parent 33157c934e
commit 5b44c086f2
243 changed files with 3198 additions and 2011 deletions

View File

@@ -1,80 +1,80 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TrackService = void 0;
const request_1 = require("../core/request");
class TrackService {
/**
* Get all
* Lists all tracks.
* @result ResponseTrack
* @throws ApiError
*/
static async trackControllerGetAll() {
const result = await request_1.request({
method: 'GET',
path: `/api/tracks`,
});
return result.body;
}
/**
* Post
* Create a new track object (id will be generated automagicly).
* @param requestBody CreateTrack
* @result ResponseTrack
* @throws ApiError
*/
static async trackControllerPost(requestBody) {
const result = await request_1.request({
method: 'POST',
path: `/api/tracks`,
body: requestBody,
});
return result.body;
}
/**
* Get one
* Returns a track of a specified id (if it exists)
* @param id
* @result ResponseTrack
* @throws ApiError
*/
static async trackControllerGetOne(id) {
const result = await request_1.request({
method: 'GET',
path: `/api/tracks/${id}`,
});
return result.body;
}
/**
* Put
* Update a track object (id can't be changed).
* @param id
* @param requestBody Track
* @result ResponseTrack
* @throws ApiError
*/
static async trackControllerPut(id, requestBody) {
const result = await request_1.request({
method: 'PUT',
path: `/api/tracks/${id}`,
body: requestBody,
});
return result.body;
}
/**
* Remove
* Delete a specified track (if it exists).
* @param id
* @result ResponseTrack
* @result ResponseEmpty
* @throws ApiError
*/
static async trackControllerRemove(id) {
const result = await request_1.request({
method: 'DELETE',
path: `/api/tracks/${id}`,
});
return result.body;
}
}
exports.TrackService = TrackService;
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TrackService = void 0;
const request_1 = require("../core/request");
class TrackService {
/**
* Get all
* Lists all tracks.
* @returns ResponseTrack
* @throws ApiError
*/
static async trackControllerGetAll() {
const result = await request_1.request({
method: 'GET',
path: `/api/tracks`,
});
return result.body;
}
/**
* Post
* Create a new track. <br> Please remember that the track's distance must be greater than 0.
* @param requestBody CreateTrack
* @returns ResponseTrack
* @throws ApiError
*/
static async trackControllerPost(requestBody) {
const result = await request_1.request({
method: 'POST',
path: `/api/tracks`,
body: requestBody,
});
return result.body;
}
/**
* Get one
* Lists all information about the track whose id got provided.
* @param id
* @returns ResponseTrack
* @throws ApiError
*/
static async trackControllerGetOne(id) {
const result = await request_1.request({
method: 'GET',
path: `/api/tracks/${id}`,
});
return result.body;
}
/**
* Put
* Update the track whose id you provided. <br> Please remember that ids can't be changed.
* @param id
* @param requestBody Track
* @returns ResponseTrack
* @throws ApiError
*/
static async trackControllerPut(id, requestBody) {
const result = await request_1.request({
method: 'PUT',
path: `/api/tracks/${id}`,
body: requestBody,
});
return result.body;
}
/**
* Remove
* Delete the track whose id you provided. <br> If no track with this id exists it will just return 204(no content).
* @param id
* @returns ResponseTrack
* @returns ResponseEmpty
* @throws ApiError
*/
static async trackControllerRemove(id) {
const result = await request_1.request({
method: 'DELETE',
path: `/api/tracks/${id}`,
});
return result.body;
}
}
exports.TrackService = TrackService;