🚀New lib version [CI SKIP]
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2023-02-02 09:47:35 +00:00
parent 068c27f3ff
commit f9aa86b553
199 changed files with 299 additions and 295 deletions

View File

@@ -10,7 +10,7 @@ class TrackService {
* @throws ApiError
*/
static async trackControllerGetAll() {
const result = await request_1.request({
const result = await (0, request_1.request)({
method: 'GET',
path: `/api/tracks`,
});
@@ -24,7 +24,7 @@ class TrackService {
* @throws ApiError
*/
static async trackControllerPost(requestBody) {
const result = await request_1.request({
const result = await (0, request_1.request)({
method: 'POST',
path: `/api/tracks`,
body: requestBody,
@@ -39,7 +39,7 @@ class TrackService {
* @throws ApiError
*/
static async trackControllerGetOne(id) {
const result = await request_1.request({
const result = await (0, request_1.request)({
method: 'GET',
path: `/api/tracks/${id}`,
});
@@ -54,7 +54,7 @@ class TrackService {
* @throws ApiError
*/
static async trackControllerPut(id, requestBody) {
const result = await request_1.request({
const result = await (0, request_1.request)({
method: 'PUT',
path: `/api/tracks/${id}`,
body: requestBody,
@@ -71,7 +71,7 @@ class TrackService {
* @throws ApiError
*/
static async trackControllerRemove(id, force) {
const result = await request_1.request({
const result = await (0, request_1.request)({
method: 'DELETE',
path: `/api/tracks/${id}`,
query: {