forked from Binaryify/NeteaseCloudMusicApi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
interface.d.ts
1812 lines (1494 loc) · 39.9 KB
/
interface.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
export interface RequestBaseConfig {
cookie?: string
realIP?: string // IPv4/IPv6 filled in X-Real-IP
proxy?: string // HTTP proxy
}
export interface MultiPageConfig {
limit?: string | number
offset?: string | number
}
export interface ImageUploadConfig {
imgFile: {
name: string
data: string | Buffer
}
imgSize?: number
imgX?: number
imgY?: number
}
export interface APIBaseResponse {
code: number
cookie: string
[index: string]: unknown
}
export interface Response<Body = APIBaseResponse> {
status: number // The Http Response Code
body: Body // API Response body
cookie: string[]
}
export const enum SubAction {
sub = 1,
unsub = 0,
}
export function activate_init_profile(
params: { nickname: string } & RequestBaseConfig,
): Promise<Response>
export function album(
params: { id: string | number } & RequestBaseConfig,
): Promise<Response>
export function album_detail(
params: { id: string | number } & RequestBaseConfig,
): Promise<Response>
export function album_detail_dynamic(
params: { id: string | number } & RequestBaseConfig,
): Promise<Response>
export const enum AlbumListArea {
all = 'ALL',
zh = 'ZH',
ea = 'EA',
kr = 'KR',
jp = 'JP',
}
export const enum ListOrder {
hot = 'hot',
new = 'new',
}
export function album_list(
params: { area?: AlbumListArea; type: string } & MultiPageConfig &
RequestBaseConfig,
): Promise<Response>
export const enum AlbumListStyleArea {
zh = 'Z_H',
ea = 'E_A',
kr = 'KR',
jp = 'JP',
}
export function album_list_style(
params: { area?: AlbumListStyleArea } & MultiPageConfig & RequestBaseConfig,
): Promise<Response>
export function album_new(
params: { area?: AlbumListArea } & MultiPageConfig & RequestBaseConfig,
): Promise<Response>
export function album_newest(params: RequestBaseConfig): Promise<Response>
export const enum AlbumSongsaleboardType {
daily = 'daily',
week = 'week',
year = 'year',
total = 'total',
}
export const enum AlbumSongsaleboardAlbumType {
album = 0,
single = 1,
}
export function album_songsaleboard(
params: {
albumType?: AlbumSongsaleboardAlbumType // 0 为数字专辑,1 为数字单曲
type?: AlbumSongsaleboardType
year?: string | number // 年份,默认本年。 type 为 year 时有效
} & RequestBaseConfig,
): Promise<Response>
export function album_sub(
params: {
id: string | number
t: SubAction
} & RequestBaseConfig,
): Promise<Response>
export function album_sublist(
params: MultiPageConfig & RequestBaseConfig,
): Promise<Response>
export function artist_album(
params: { id: string | number } & MultiPageConfig & RequestBaseConfig,
): Promise<Response>
export function artist_desc(
params: { id: string | number } & RequestBaseConfig,
): Promise<Response>
export const enum ArtistListArea {
zh = 'Z_H',
ea = 'E_A',
kr = 'KR',
jp = 'JP',
}
export const enum ArtistArea {
all = '-1',
zh = '7',
ea = '96',
ja = '8',
kr = '16',
other = '0',
}
export const enum ArtistType {
male = '1',
female = '2',
band = '3',
}
export function artist_list(
params: {
area: ArtistArea
initial?:
| 'a'
| 'b'
| 'c'
| 'd'
| 'e'
| 'f'
| 'g'
| 'h'
| 'i'
| 'j'
| 'k'
| 'l'
| 'm'
| 'n'
| 'o'
| 'p'
| 'q'
| 'r'
| 's'
| 't'
| 'u'
| 'v'
| 'w'
| 'x'
| 'y'
| 'z'
| 'A'
| 'B'
| 'C'
| 'D'
| 'E'
| 'F'
| 'G'
| 'H'
| 'I'
| 'J'
| 'K'
| 'L'
| 'M'
| 'N'
| 'O'
| 'P'
| 'Q'
| 'R'
| 'S'
| 'T'
| 'U'
| 'V'
| 'W'
| 'X'
| 'Y'
| 'Z'
type?: ArtistType
} & MultiPageConfig &
RequestBaseConfig,
): Promise<Response>
export function artist_mv(
params: { id: string | number } & MultiPageConfig & RequestBaseConfig,
): Promise<Response>
export const enum ArtistSongsOrder {
hot = 'hot',
time = 'time',
}
export function artist_songs(
params: {
id: string | number
order?: ArtistSongsOrder
} & MultiPageConfig &
RequestBaseConfig,
): Promise<Response>
export function artist_sub(
params: { id: string | number; t: SubAction } & RequestBaseConfig,
): Promise<Response>
export function artist_sublist(
params: MultiPageConfig & RequestBaseConfig,
): Promise<Response>
export function artist_top_song(
params: {
id: string | number
} & RequestBaseConfig,
): Promise<Response>
export function artists(
params: { id: string | number } & RequestBaseConfig,
): Promise<Response>
export function audio_match(
params: {
duration: string | number
audioFP: string | number
} & RequestBaseConfig,
): Promise<Response>
export function avatar_upload(
params: ImageUploadConfig & RequestBaseConfig,
): Promise<Response>
export const enum BannerType {
pc = 0,
android = 1,
iphone = 2,
ipad = 3,
}
export function banner(
params: { type?: BannerType } & RequestBaseConfig,
): Promise<Response>
export function batch(
params: { [index: string]: unknown } & RequestBaseConfig,
): Promise<Response>
export function captcha_sent(
params: { cellphone: string; ctcode?: number | string } & RequestBaseConfig,
): Promise<Response>
export function captcha_verify(
params: {
ctcode?: number | string
cellphone: number | string
captcha: string
} & RequestBaseConfig,
): Promise<Response>
export function cellphone_existence_check(
params: {
cellphone: number | string
countrycode: number | string
} & RequestBaseConfig,
): Promise<Response>
export function check_music(
params: { id: string | number; br: string | number } & RequestBaseConfig,
): Promise<Response>
export const enum SearchType {
single = 1,
album = 10,
artist = 100,
playlist = 1000,
user = 1002,
mv = 1004,
lyric = 1006,
dj = 1009,
video = 1014,
complex = 1018,
}
export function cloudsearch(
params: {
keywords: string
type?: SearchType
} & MultiPageConfig &
RequestBaseConfig,
): Promise<Response>
export const enum CommentType {
song = 0,
mv = 1,
playlist = 2,
album = 3,
dj = 4,
video = 5,
event = 6,
}
export const enum CommentAction {
add = 1,
delete = 0,
reply = 2,
}
export function comment(
params: {
id: string | number
type: CommentType
t: CommentAction.delete
commentId: string | number
} & RequestBaseConfig,
): Promise<Response>
export function comment(
params: {
type: CommentType.event
t: CommentAction.delete
threadId: string
commentId: string | number
} & RequestBaseConfig,
): Promise<Response>
export function comment(
params: {
id: string | number
type: CommentType
t: CommentAction.add
content: string | number
} & RequestBaseConfig,
): Promise<Response>
export function comment(
params: {
type: CommentType.event
t: CommentAction.add
threadId: string
content: string | number
} & RequestBaseConfig,
): Promise<Response>
export function comment(
params: {
id: string | number
type: CommentType
t: CommentAction.reply
content: string | number
commentId: string | number
} & RequestBaseConfig,
): Promise<Response>
export function comment(
params: {
type: CommentType.event
t: CommentAction.reply
threadId: string
content: string | number
commentId: string | number
} & RequestBaseConfig,
): Promise<Response>
export function comment_album(
params: {
id: string | number
before?: string | number
} & MultiPageConfig &
RequestBaseConfig,
): Promise<Response>
export function comment_dj(
params: {
id: string | number
before?: string | number
} & MultiPageConfig &
RequestBaseConfig,
): Promise<Response>
export function comment_event(
params: {
threadId: string
before?: string | number
} & MultiPageConfig &
RequestBaseConfig,
): Promise<Response>
export function comment_floor(
params: {
id: string | number
parentCommentId: string | number
type: CommentType
limit?: string | number
time?: string | number
} & RequestBaseConfig,
): Promise<Response>
export function comment_hot(
params: {
id: string | number
type: CommentType
before?: string | number
} & MultiPageConfig &
RequestBaseConfig,
): Promise<Response>
export function comment_hotwall_list(
params: RequestBaseConfig,
): Promise<Response>
export function comment_like(
params: {
id: string | number
type: CommentType
t: SubAction
cid: string | number
threadId?: string
} & RequestBaseConfig,
): Promise<Response>
export function comment_music(
params: {
id: string | number
before?: string | number
} & MultiPageConfig &
RequestBaseConfig,
): Promise<Response>
export function comment_mv(
params: {
id: string | number
before?: string | number
} & MultiPageConfig &
RequestBaseConfig,
): Promise<Response>
export function comment_playlist(
params: {
id: string | number
before?: string | number
} & MultiPageConfig &
RequestBaseConfig,
): Promise<Response>
export function comment_video(
params: {
id: string | number
before?: string | number
} & MultiPageConfig &
RequestBaseConfig,
): Promise<Response>
export function countries_code_list(
params: RequestBaseConfig,
): Promise<Response>
export const enum DailySigninType {
android = 0,
pc = 1,
}
export function daily_signin(
params: { type?: DailySigninType } & RequestBaseConfig,
): Promise<Response>
export function digitalAlbum_ordering(
params: {
payment: string
id: string | number
quantity: string
} & RequestBaseConfig,
): Promise<Response>
export function digitalAlbum_purchased(
params: MultiPageConfig & RequestBaseConfig,
): Promise<Response>
export function dj_banner(params: RequestBaseConfig): Promise<Response>
export function dj_category_excludehot(
params: RequestBaseConfig,
): Promise<Response>
export function dj_category_recommend(
params: RequestBaseConfig,
): Promise<Response>
export function dj_catelist(params: RequestBaseConfig): Promise<Response>
export function dj_detail(
params: { rid: string | number } & RequestBaseConfig,
): Promise<Response>
export function dj_hot(
params: MultiPageConfig & RequestBaseConfig,
): Promise<Response>
export function dj_paygift(
params: MultiPageConfig & RequestBaseConfig,
): Promise<Response>
export function dj_personalize_recommend(
params: { limit?: string | number } & RequestBaseConfig,
): Promise<Response>
export function dj_program(
params: {
rid: string | number
asc: 'true' | 1 | 'false' | 0
} & MultiPageConfig &
RequestBaseConfig,
): Promise<Response>
export function dj_program_detail(
params: { id: string | number } & RequestBaseConfig,
): Promise<Response>
export function dj_program_toplist(
params: MultiPageConfig & RequestBaseConfig,
): Promise<Response>
export function dj_program_toplist_hours(
params: { limit?: string | number } & RequestBaseConfig,
): Promise<Response>
export function dj_radio_hot(
params: {
cateId: string | number
} & MultiPageConfig &
RequestBaseConfig,
): Promise<Response>
export function dj_recommend(params: RequestBaseConfig): Promise<Response>
/*
有声书 10001
知识技能 453050
商业财经 453051
人文历史 11
外语世界 13
亲子宝贝 14
创作|翻唱 2001
音乐故事 2
3D|电子 10002
相声曲艺 8
情感调频 3
美文读物 6
脱口秀 5
广播剧 7
二次元 3001
明星做主播 1
娱乐|影视 4
科技科学 453052
校园|教育 4001
旅途|城市 12
*/
export function dj_recommend_type(
params: { type: number } & RequestBaseConfig,
): Promise<Response>
export function dj_sub(
params: { t: SubAction; rid: string | number } & RequestBaseConfig,
): Promise<Response>
export function dj_sublist(
params: MultiPageConfig & RequestBaseConfig,
): Promise<Response>
export function dj_today_perfered(
params: { page?: string | number } & RequestBaseConfig,
): Promise<Response>
export function dj_toplist(
params: { type?: ListOrder } & MultiPageConfig & RequestBaseConfig,
): Promise<Response>
export function dj_toplist_hours(
params: { limit?: string | number } & RequestBaseConfig,
): Promise<Response>
export function dj_toplist_newcomer(
params: MultiPageConfig & RequestBaseConfig,
): Promise<Response>
export function dj_toplist_pay(
params: { limit?: string | number } & RequestBaseConfig,
): Promise<Response>
export function dj_toplist_popular(
params: { limit?: string | number } & RequestBaseConfig,
): Promise<Response>
export function event(
params: { pagesize?: number; lasttime?: number } & RequestBaseConfig,
): Promise<Response>
export function event_del(
params: { evId: string | number } & RequestBaseConfig,
): Promise<Response>
export function event_forward(
params: {
forwords: string
evId: string | number
uid: string | number
} & RequestBaseConfig,
): Promise<Response>
export function fm_trash(
params: { id: string | number; time?: string | number } & RequestBaseConfig,
): Promise<Response>
export function follow(
params: { t: SubAction; id: string | number } & RequestBaseConfig,
): Promise<Response>
export function history_recommend_songs(
params: RequestBaseConfig,
): Promise<Response>
export function history_recommend_songs_detail(
params: { date?: string } & RequestBaseConfig,
): Promise<Response>
export function homepage_block_page(
params: {
refresh?: 'true' | 'false' | boolean
cursor?: string
} & RequestBaseConfig,
): Promise<Response>
export function homepage_dragon_ball(
params: RequestBaseConfig,
): Promise<Response>
export function hot_topic(
params: MultiPageConfig & RequestBaseConfig,
): Promise<Response>
export function like(
params: {
like?: 'true' | 'false' | boolean
id: string | number
alg?: string
time?: string | number
} & RequestBaseConfig,
): Promise<Response>
export function likelist(
params: { uid: string | number } & RequestBaseConfig,
): Promise<Response>
export function login(
params: { email: string; password: string } & RequestBaseConfig,
): Promise<Response>
export function login(
params: { email: string; md5_password: string } & RequestBaseConfig,
): Promise<Response>
export function login_cellphone(
params: {
phone: number | string
countrycode?: number | string
password: string
} & RequestBaseConfig,
): Promise<Response>
export function login_cellphone(
params: {
phone: number | string
countrycode?: number | string
md5_password: string
} & RequestBaseConfig,
): Promise<Response>
export function login_cellphone(
params: {
phone: number | string
countrycode?: number | string
captcha: number | string
} & RequestBaseConfig,
): Promise<Response>
export function login_refresh(params: RequestBaseConfig): Promise<Response>
export function login_status(params: RequestBaseConfig): Promise<Response>
export function logout(params: RequestBaseConfig): Promise<Response>
export function lyric(
params: { id: string | number } & RequestBaseConfig,
): Promise<Response>
export function lyric_new(
params: { id: string | number } & RequestBaseConfig,
): Promise<Response>
export function msg_comments(
params: {
uid: string | number
before?: string | number
limit?: string | number
} & RequestBaseConfig,
): Promise<Response>
export function msg_forwards(
params: MultiPageConfig & RequestBaseConfig,
): Promise<Response>
export function msg_notices(
params: {
limit?: string | number
lasttime?: string | number
} & RequestBaseConfig,
): Promise<Response>
export function msg_private(
params: MultiPageConfig & RequestBaseConfig,
): Promise<Response>
export function msg_private_history(
params: {
before?: string | number
limit?: string | number
uid: string | number
} & RequestBaseConfig,
): Promise<Response>
export const enum MvArea {
all = '全部',
zh = '内地',
hk = '港台',
ea = '欧美',
kr = '韩国',
jp = '日本',
}
export const enum MvType {
all = '全部',
offical = '官方版',
raw = '原生',
live = '现场版',
netease = '网易出品',
}
export const enum MvOrder {
trend = '上升最快',
hot = '最热',
new = '最新',
}
export function mv_all(
params: {
area?: MvArea
type?: MvType
order?: MvOrder
} & MultiPageConfig &
RequestBaseConfig,
): Promise<Response>
export function mv_detail(
params: { mvid?: string | number } & RequestBaseConfig,
): Promise<Response>
export function mv_detail_info(
params: { mvid: string | number } & RequestBaseConfig,
): Promise<Response>
export function mv_exclusive_rcmd(
params: MultiPageConfig & RequestBaseConfig,
): Promise<Response>
export function mv_first(
params: { area?: MvArea; limit?: string | number } & RequestBaseConfig,
): Promise<Response>
export function mv_sub(
params: { t: SubAction; mvid: string | number } & RequestBaseConfig,
): Promise<Response>
export function mv_sublist(
params: MultiPageConfig & RequestBaseConfig,
): Promise<Response>
export function mv_url(
params: { id?: string | number; r?: string | number } & RequestBaseConfig,
): Promise<Response>
export function personal_fm(params: RequestBaseConfig): Promise<Response>
export function personalized(
params: { limit?: string | number } & RequestBaseConfig,
): Promise<Response>
export function personalized_djprogram(
params: RequestBaseConfig,
): Promise<Response>
export function personalized_mv(params: RequestBaseConfig): Promise<Response>
export function personalized_newsong(
params: {
area?: string | number
limit?: string | number
} & RequestBaseConfig,
): Promise<Response>
export function personalized_privatecontent(
params: RequestBaseConfig,
): Promise<Response>
export function personalized_privatecontent_list(
params: MultiPageConfig & RequestBaseConfig,
): Promise<Response>
export function playlist_catlist(params: RequestBaseConfig): Promise<Response>
export function playlist_cover_update(
params: { id: string } & ImageUploadConfig & RequestBaseConfig,
): Promise<Response>
export function playlist_create(
params: {
name: string
privacy: 0 | 10
type?: PlaylistType
} & RequestBaseConfig,
): Promise<Response>
export function playlist_delete(
params: { id: string | number } & RequestBaseConfig,
): Promise<Response>
export function playlist_desc_update(
params: { id: string | number; desc: string } & RequestBaseConfig,
): Promise<Response>
export function playlist_detail(
params: { id: string | number; s?: string | number } & RequestBaseConfig,
): Promise<Response>
export function playlist_highquality_tags(
params: RequestBaseConfig,
): Promise<Response>
export function playlist_hot(params: RequestBaseConfig): Promise<Response>
export function playlist_name_update(
params: { id: string | number; name: string } & RequestBaseConfig,
): Promise<Response>
export function playlist_order_update(
params: { ids: string } & RequestBaseConfig,
): Promise<Response>
export function playlist_subscribe(
params: { t: SubAction; id: string | number } & RequestBaseConfig,
): Promise<Response>
export function playlist_subscribers(
params: { id?: string | number } & MultiPageConfig & RequestBaseConfig,
): Promise<Response>
export function playlist_tags_update(
params: { id: string | number; tags: string } & RequestBaseConfig,
): Promise<Response>
export function playlist_tracks(
params: {
op: 'add' | 'del'
pid: string | number
tracks: string
} & RequestBaseConfig,
): Promise<Response>
export function playlist_update(
params: {
id: string | number
name: string
desc?: string
tags?: string
} & RequestBaseConfig,
): Promise<Response>
export function playmode_intelligence_list(
params: {
id: string | number
pid: string | number
sid?: string | number
count?: string | number
} & RequestBaseConfig,
): Promise<Response>
export function program_recommend(
params: { type: string } & MultiPageConfig & RequestBaseConfig,
): Promise<Response>
export function rebind(
params: {
captcha: string
phone: string
oldcaptcha: string
ctcode?: number | string
} & RequestBaseConfig,
): Promise<Response>
export function recommend_resource(params: RequestBaseConfig): Promise<Response>
export function recommend_songs(params: RequestBaseConfig): Promise<Response>
export function register_cellphone(
params: {
captcha: string
phone: string
password: string
nickname: string
} & RequestBaseConfig,
): Promise<Response>
export function related_allvideo(
params: { id: string | number } & RequestBaseConfig,
): Promise<Response>
export function related_playlist(
params: { id: string | number } & RequestBaseConfig,
): Promise<Response>
export const enum ResourceType {
mv = 1,
dj = 4,
video = 5,
event = 6,
}
type PlaylistType = 'NROMAL' | 'VIDEO'
export function resource_like(
params: {
t: SubAction
type: ResourceType
id?: string | number
threadId?: string
} & RequestBaseConfig,
): Promise<Response>
export function scrobble(
params: {
id: string | number
sourceid: string | number
time: string | number
} & RequestBaseConfig,
): Promise<Response>
export function search(
params: {
keywords: string
type?: SearchType
} & MultiPageConfig &
RequestBaseConfig,
): Promise<Response>
export function search_default(params: RequestBaseConfig): Promise<Response>
export function search_hot(params: RequestBaseConfig): Promise<Response>
export function search_hot_detail(params: RequestBaseConfig): Promise<Response>
export function search_multimatch(
params: { type?: number; keywords: string } & RequestBaseConfig,
): Promise<Response>
export const enum SearchSuggestType {
mobile = 'mobile',