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

This commit is contained in:
2021-01-08 19:56:49 +00:00
parent 7d6de0936f
commit b9e573311c
51 changed files with 490 additions and 11 deletions

View File

@@ -65,14 +65,18 @@ class TrackService {
* 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
* @param force
* @returns ResponseTrack
* @returns ResponseEmpty
* @throws ApiError
*/
static async trackControllerRemove(id) {
static async trackControllerRemove(id, force) {
const result = await request_1.request({
method: 'DELETE',
path: `/api/tracks/${id}`,
query: {
'force': force,
},
});
return result.body;
}