@@ -264,19 +264,22 @@ export function batch(
264
264
) : Promise < Response >
265
265
266
266
export function captcha_sent (
267
- params : { cellphone : string ; ctcode ?: string } & RequestBaseConfig ,
267
+ params : { cellphone : string ; ctcode ?: number | string } & RequestBaseConfig ,
268
268
) : Promise < Response >
269
269
270
270
export function captcha_verify (
271
271
params : {
272
- ctcode ?: string
273
- cellphone : string
272
+ ctcode ?: number | string
273
+ cellphone : number | string
274
274
captcha : string
275
275
} & RequestBaseConfig ,
276
276
) : Promise < Response >
277
277
278
278
export function cellphone_existence_check (
279
- params : { cellphone : string ; countrycode : string } & RequestBaseConfig ,
279
+ params : {
280
+ cellphone : number | string
281
+ countrycode : number | string
282
+ } & RequestBaseConfig ,
280
283
) : Promise < Response >
281
284
282
285
export function check_music (
@@ -674,16 +677,16 @@ export function login(
674
677
675
678
export function login_cellphone (
676
679
params : {
677
- phone : string
678
- countrycode ?: string
680
+ phone : number | string
681
+ countrycode ?: number | string
679
682
password : string
680
683
} & RequestBaseConfig ,
681
684
) : Promise < Response >
682
685
683
686
export function login_cellphone (
684
687
params : {
685
- phone : string
686
- countrycode ?: string
688
+ phone : number | string
689
+ countrycode ?: number | string
687
690
md5_password : string
688
691
} & RequestBaseConfig ,
689
692
) : Promise < Response >
@@ -903,7 +906,7 @@ export function rebind(
903
906
captcha : string
904
907
phone : string
905
908
oldcaptcha : string
906
- ctcode ?: string
909
+ ctcode ?: number | string
907
910
} & RequestBaseConfig ,
908
911
) : Promise < Response >
909
912
@@ -1393,3 +1396,12 @@ export function login_qr_check(
1393
1396
export function playlist_detail_dynamic (
1394
1397
params : { id : string | number } & RequestBaseConfig ,
1395
1398
) : Promise < Response >
1399
+
1400
+ export function user_bindingcellphone (
1401
+ params : {
1402
+ phone : number | string
1403
+ captcha : number | string
1404
+ countrycode ?: number | string
1405
+ password ?: string
1406
+ } & RequestBaseConfig ,
1407
+ ) : Promise < Response >
0 commit comments