"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 (0, request_1.request)({ method: 'GET', path: `/api/tracks`, }); return result.body; } /** * Post * Create a new track.
Please remember that the track's distance must be greater than 0. * @param requestBody CreateTrack * @result ResponseTrack * @throws ApiError */ static async trackControllerPost(requestBody) { const result = await (0, 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 * @result ResponseTrack * @throws ApiError */ static async trackControllerGetOne(id) { const result = await (0, request_1.request)({ method: 'GET', path: `/api/tracks/${id}`, }); return result.body; } /** * Put * Update the track whose id you provided.
Please remember that ids can't be changed. * @param id * @param requestBody UpdateTrack * @result ResponseTrack * @throws ApiError */ static async trackControllerPut(id, requestBody) { const result = await (0, request_1.request)({ method: 'PUT', path: `/api/tracks/${id}`, body: requestBody, }); return result.body; } /** * Remove * Delete the track whose id you provided.
If no track with this id exists it will just return 204(no content). * @param id * @param force * @result ResponseTrack * @result ResponseEmpty * @throws ApiError */ static async trackControllerRemove(id, force) { const result = await (0, request_1.request)({ method: 'DELETE', path: `/api/tracks/${id}`, query: { 'force': force, }, }); return result.body; } } exports.TrackService = TrackService;