new lib version [CI SKIP]

This commit is contained in:
2020-12-22 14:30:44 +00:00
parent 284f3303c3
commit 52ac2efc67
66 changed files with 799 additions and 122 deletions

View File

@@ -5,8 +5,7 @@ const request_1 = require("../core/request");
class TrackService {
/**
* Get all
* Lists all tracks.
* @result ResponseTrack
* @returns ResponseTrack
* @throws ApiError
*/
static async trackControllerGetAll() {
@@ -20,7 +19,7 @@ class TrackService {
* Post
* Create a new track object (id will be generated automagicly).
* @param requestBody CreateTrack
* @result ResponseTrack
* @returns ResponseTrack
* @throws ApiError
*/
static async trackControllerPost(requestBody) {
@@ -35,7 +34,7 @@ class TrackService {
* Get one
* Returns a track of a specified id (if it exists)
* @param id
* @result ResponseTrack
* @returns ResponseTrack
* @throws ApiError
*/
static async trackControllerGetOne(id) {
@@ -50,7 +49,7 @@ class TrackService {
* Update a track object (id can't be changed).
* @param id
* @param requestBody Track
* @result ResponseTrack
* @returns ResponseTrack
* @throws ApiError
*/
static async trackControllerPut(id, requestBody) {
@@ -65,8 +64,8 @@ class TrackService {
* Remove
* Delete a specified track (if it exists).
* @param id
* @result ResponseTrack
* @result ResponseEmpty
* @returns ResponseTrack
* @returns ResponseEmpty
* @throws ApiError
*/
static async trackControllerRemove(id) {