@@ -6,7 +6,6 @@ import getSongControls from '@/providers/song-controls';
6
6
7
7
import {
8
8
AddSongToQueueSchema ,
9
- AuthHeadersSchema ,
10
9
GoBackSchema ,
11
10
GoForwardScheme ,
12
11
MoveSongInQueueSchema ,
@@ -116,7 +115,6 @@ const routes = {
116
115
summary : 'seek' ,
117
116
description : 'Seek to a specific time in the current song' ,
118
117
request : {
119
- headers : AuthHeadersSchema ,
120
118
body : {
121
119
description : 'seconds to seek to' ,
122
120
content : {
@@ -138,7 +136,6 @@ const routes = {
138
136
summary : 'go back' ,
139
137
description : 'Move the current song back by a number of seconds' ,
140
138
request : {
141
- headers : AuthHeadersSchema ,
142
139
body : {
143
140
description : 'seconds to go back' ,
144
141
content : {
@@ -161,7 +158,6 @@ const routes = {
161
158
summary : 'go forward' ,
162
159
description : 'Move the current song forward by a number of seconds' ,
163
160
request : {
164
- headers : AuthHeadersSchema ,
165
161
body : {
166
162
description : 'seconds to go forward' ,
167
163
content : {
@@ -213,7 +209,6 @@ const routes = {
213
209
summary : 'switch repeat' ,
214
210
description : 'Switch the repeat mode' ,
215
211
request : {
216
- headers : AuthHeadersSchema ,
217
212
body : {
218
213
description : 'number of times to click the repeat button' ,
219
214
content : {
@@ -235,7 +230,6 @@ const routes = {
235
230
summary : 'set volume' ,
236
231
description : 'Set the volume of the player' ,
237
232
request : {
238
- headers : AuthHeadersSchema ,
239
233
body : {
240
234
description : 'volume to set' ,
241
235
content : {
@@ -257,7 +251,6 @@ const routes = {
257
251
summary : 'set fullscreen' ,
258
252
description : 'Set the fullscreen state of the player' ,
259
253
request : {
260
- headers : AuthHeadersSchema ,
261
254
body : {
262
255
description : 'fullscreen state' ,
263
256
content : {
@@ -387,7 +380,6 @@ const routes = {
387
380
summary : 'add song to queue' ,
388
381
description : 'Add a song to the queue' ,
389
382
request : {
390
- headers : AuthHeadersSchema ,
391
383
body : {
392
384
description : 'video id of the song to add' ,
393
385
content : {
@@ -409,7 +401,6 @@ const routes = {
409
401
summary : 'move song in queue' ,
410
402
description : 'Move a song in the queue' ,
411
403
request : {
412
- headers : AuthHeadersSchema ,
413
404
params : QueueParamsSchema ,
414
405
body : {
415
406
description : 'index to move the song to' ,
@@ -432,7 +423,6 @@ const routes = {
432
423
summary : 'remove song from queue' ,
433
424
description : 'Remove a song from the queue' ,
434
425
request : {
435
- headers : AuthHeadersSchema ,
436
426
params : QueueParamsSchema ,
437
427
} ,
438
428
responses : {
@@ -447,7 +437,6 @@ const routes = {
447
437
summary : 'set queue index' ,
448
438
description : 'Set the current index of the queue' ,
449
439
request : {
450
- headers : AuthHeadersSchema ,
451
440
body : {
452
441
description : 'index to move the song to' ,
453
442
content : {
@@ -480,7 +469,6 @@ const routes = {
480
469
summary : 'search for a song' ,
481
470
description : 'search for a song' ,
482
471
request : {
483
- headers : AuthHeadersSchema ,
484
472
body : {
485
473
description : 'search query' ,
486
474
content : {
0 commit comments