@alicloud/cloudauth20190307 2.2.2 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +456 -60
- package/dist/client.js +1051 -270
- package/dist/client.js.map +1 -1
- package/package.json +6 -6
- package/src/client.ts +1041 -94
package/dist/client.d.ts
CHANGED
|
@@ -6,6 +6,104 @@ import * as $Util from '@alicloud/tea-util';
|
|
|
6
6
|
import OpenApi, * as $OpenApi from '@alicloud/openapi-client';
|
|
7
7
|
import { Readable } from 'stream';
|
|
8
8
|
import * as $tea from '@alicloud/tea-typescript';
|
|
9
|
+
export declare class AIGCFaceVerifyRequest extends $tea.Model {
|
|
10
|
+
faceContrastPicture?: string;
|
|
11
|
+
faceContrastPictureUrl?: string;
|
|
12
|
+
ossBucketName?: string;
|
|
13
|
+
ossObjectName?: string;
|
|
14
|
+
outerOrderNo?: string;
|
|
15
|
+
productCode?: string;
|
|
16
|
+
sceneId?: number;
|
|
17
|
+
static names(): {
|
|
18
|
+
[key: string]: string;
|
|
19
|
+
};
|
|
20
|
+
static types(): {
|
|
21
|
+
[key: string]: any;
|
|
22
|
+
};
|
|
23
|
+
constructor(map?: {
|
|
24
|
+
[key: string]: any;
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
export declare class AIGCFaceVerifyResponseBody extends $tea.Model {
|
|
28
|
+
code?: string;
|
|
29
|
+
message?: string;
|
|
30
|
+
requestId?: string;
|
|
31
|
+
resultObject?: AIGCFaceVerifyResponseBodyResultObject;
|
|
32
|
+
static names(): {
|
|
33
|
+
[key: string]: string;
|
|
34
|
+
};
|
|
35
|
+
static types(): {
|
|
36
|
+
[key: string]: any;
|
|
37
|
+
};
|
|
38
|
+
constructor(map?: {
|
|
39
|
+
[key: string]: any;
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
export declare class AIGCFaceVerifyResponse extends $tea.Model {
|
|
43
|
+
headers?: {
|
|
44
|
+
[key: string]: string;
|
|
45
|
+
};
|
|
46
|
+
statusCode?: number;
|
|
47
|
+
body?: AIGCFaceVerifyResponseBody;
|
|
48
|
+
static names(): {
|
|
49
|
+
[key: string]: string;
|
|
50
|
+
};
|
|
51
|
+
static types(): {
|
|
52
|
+
[key: string]: any;
|
|
53
|
+
};
|
|
54
|
+
constructor(map?: {
|
|
55
|
+
[key: string]: any;
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
export declare class BankMetaVerifyRequest extends $tea.Model {
|
|
59
|
+
bankCard?: string;
|
|
60
|
+
identifyNum?: string;
|
|
61
|
+
mobile?: string;
|
|
62
|
+
paramType?: string;
|
|
63
|
+
productType?: string;
|
|
64
|
+
userName?: string;
|
|
65
|
+
verifyMode?: string;
|
|
66
|
+
static names(): {
|
|
67
|
+
[key: string]: string;
|
|
68
|
+
};
|
|
69
|
+
static types(): {
|
|
70
|
+
[key: string]: any;
|
|
71
|
+
};
|
|
72
|
+
constructor(map?: {
|
|
73
|
+
[key: string]: any;
|
|
74
|
+
});
|
|
75
|
+
}
|
|
76
|
+
export declare class BankMetaVerifyResponseBody extends $tea.Model {
|
|
77
|
+
code?: string;
|
|
78
|
+
message?: string;
|
|
79
|
+
requestId?: string;
|
|
80
|
+
resultObject?: BankMetaVerifyResponseBodyResultObject;
|
|
81
|
+
static names(): {
|
|
82
|
+
[key: string]: string;
|
|
83
|
+
};
|
|
84
|
+
static types(): {
|
|
85
|
+
[key: string]: any;
|
|
86
|
+
};
|
|
87
|
+
constructor(map?: {
|
|
88
|
+
[key: string]: any;
|
|
89
|
+
});
|
|
90
|
+
}
|
|
91
|
+
export declare class BankMetaVerifyResponse extends $tea.Model {
|
|
92
|
+
headers?: {
|
|
93
|
+
[key: string]: string;
|
|
94
|
+
};
|
|
95
|
+
statusCode?: number;
|
|
96
|
+
body?: BankMetaVerifyResponseBody;
|
|
97
|
+
static names(): {
|
|
98
|
+
[key: string]: string;
|
|
99
|
+
};
|
|
100
|
+
static types(): {
|
|
101
|
+
[key: string]: any;
|
|
102
|
+
};
|
|
103
|
+
constructor(map?: {
|
|
104
|
+
[key: string]: any;
|
|
105
|
+
});
|
|
106
|
+
}
|
|
9
107
|
export declare class CompareFaceVerifyRequest extends $tea.Model {
|
|
10
108
|
crop?: string;
|
|
11
109
|
outerOrderNo?: string;
|
|
@@ -47,11 +145,11 @@ export declare class CompareFaceVerifyResponseBody extends $tea.Model {
|
|
|
47
145
|
});
|
|
48
146
|
}
|
|
49
147
|
export declare class CompareFaceVerifyResponse extends $tea.Model {
|
|
50
|
-
headers
|
|
148
|
+
headers?: {
|
|
51
149
|
[key: string]: string;
|
|
52
150
|
};
|
|
53
|
-
statusCode
|
|
54
|
-
body
|
|
151
|
+
statusCode?: number;
|
|
152
|
+
body?: CompareFaceVerifyResponseBody;
|
|
55
153
|
static names(): {
|
|
56
154
|
[key: string]: string;
|
|
57
155
|
};
|
|
@@ -94,11 +192,11 @@ export declare class CompareFacesResponseBody extends $tea.Model {
|
|
|
94
192
|
});
|
|
95
193
|
}
|
|
96
194
|
export declare class CompareFacesResponse extends $tea.Model {
|
|
97
|
-
headers
|
|
195
|
+
headers?: {
|
|
98
196
|
[key: string]: string;
|
|
99
197
|
};
|
|
100
|
-
statusCode
|
|
101
|
-
body
|
|
198
|
+
statusCode?: number;
|
|
199
|
+
body?: CompareFacesResponseBody;
|
|
102
200
|
static names(): {
|
|
103
201
|
[key: string]: string;
|
|
104
202
|
};
|
|
@@ -185,11 +283,11 @@ export declare class ContrastFaceVerifyResponseBody extends $tea.Model {
|
|
|
185
283
|
});
|
|
186
284
|
}
|
|
187
285
|
export declare class ContrastFaceVerifyResponse extends $tea.Model {
|
|
188
|
-
headers
|
|
286
|
+
headers?: {
|
|
189
287
|
[key: string]: string;
|
|
190
288
|
};
|
|
191
|
-
statusCode
|
|
192
|
-
body
|
|
289
|
+
statusCode?: number;
|
|
290
|
+
body?: ContrastFaceVerifyResponseBody;
|
|
193
291
|
static names(): {
|
|
194
292
|
[key: string]: string;
|
|
195
293
|
};
|
|
@@ -229,11 +327,11 @@ export declare class CreateAuthKeyResponseBody extends $tea.Model {
|
|
|
229
327
|
});
|
|
230
328
|
}
|
|
231
329
|
export declare class CreateAuthKeyResponse extends $tea.Model {
|
|
232
|
-
headers
|
|
330
|
+
headers?: {
|
|
233
331
|
[key: string]: string;
|
|
234
332
|
};
|
|
235
|
-
statusCode
|
|
236
|
-
body
|
|
333
|
+
statusCode?: number;
|
|
334
|
+
body?: CreateAuthKeyResponseBody;
|
|
237
335
|
static names(): {
|
|
238
336
|
[key: string]: string;
|
|
239
337
|
};
|
|
@@ -278,11 +376,11 @@ export declare class CreateVerifySettingResponseBody extends $tea.Model {
|
|
|
278
376
|
});
|
|
279
377
|
}
|
|
280
378
|
export declare class CreateVerifySettingResponse extends $tea.Model {
|
|
281
|
-
headers
|
|
379
|
+
headers?: {
|
|
282
380
|
[key: string]: string;
|
|
283
381
|
};
|
|
284
|
-
statusCode
|
|
285
|
-
body
|
|
382
|
+
statusCode?: number;
|
|
383
|
+
body?: CreateVerifySettingResponseBody;
|
|
286
384
|
static names(): {
|
|
287
385
|
[key: string]: string;
|
|
288
386
|
};
|
|
@@ -328,11 +426,11 @@ export declare class DescribeDeviceInfoResponseBody extends $tea.Model {
|
|
|
328
426
|
});
|
|
329
427
|
}
|
|
330
428
|
export declare class DescribeDeviceInfoResponse extends $tea.Model {
|
|
331
|
-
headers
|
|
429
|
+
headers?: {
|
|
332
430
|
[key: string]: string;
|
|
333
431
|
};
|
|
334
|
-
statusCode
|
|
335
|
-
body
|
|
432
|
+
statusCode?: number;
|
|
433
|
+
body?: DescribeDeviceInfoResponseBody;
|
|
336
434
|
static names(): {
|
|
337
435
|
[key: string]: string;
|
|
338
436
|
};
|
|
@@ -373,11 +471,11 @@ export declare class DescribeFaceVerifyResponseBody extends $tea.Model {
|
|
|
373
471
|
});
|
|
374
472
|
}
|
|
375
473
|
export declare class DescribeFaceVerifyResponse extends $tea.Model {
|
|
376
|
-
headers
|
|
474
|
+
headers?: {
|
|
377
475
|
[key: string]: string;
|
|
378
476
|
};
|
|
379
|
-
statusCode
|
|
380
|
-
body
|
|
477
|
+
statusCode?: number;
|
|
478
|
+
body?: DescribeFaceVerifyResponseBody;
|
|
381
479
|
static names(): {
|
|
382
480
|
[key: string]: string;
|
|
383
481
|
};
|
|
@@ -402,11 +500,64 @@ export declare class DescribeOssUploadTokenResponseBody extends $tea.Model {
|
|
|
402
500
|
});
|
|
403
501
|
}
|
|
404
502
|
export declare class DescribeOssUploadTokenResponse extends $tea.Model {
|
|
405
|
-
headers
|
|
503
|
+
headers?: {
|
|
406
504
|
[key: string]: string;
|
|
407
505
|
};
|
|
408
|
-
statusCode
|
|
409
|
-
body
|
|
506
|
+
statusCode?: number;
|
|
507
|
+
body?: DescribeOssUploadTokenResponseBody;
|
|
508
|
+
static names(): {
|
|
509
|
+
[key: string]: string;
|
|
510
|
+
};
|
|
511
|
+
static types(): {
|
|
512
|
+
[key: string]: any;
|
|
513
|
+
};
|
|
514
|
+
constructor(map?: {
|
|
515
|
+
[key: string]: any;
|
|
516
|
+
});
|
|
517
|
+
}
|
|
518
|
+
export declare class DescribePageFaceVerifyDataRequest extends $tea.Model {
|
|
519
|
+
currentPage?: number;
|
|
520
|
+
endDate?: string;
|
|
521
|
+
pageSize?: number;
|
|
522
|
+
productCode?: string;
|
|
523
|
+
sceneId?: number;
|
|
524
|
+
startDate?: string;
|
|
525
|
+
static names(): {
|
|
526
|
+
[key: string]: string;
|
|
527
|
+
};
|
|
528
|
+
static types(): {
|
|
529
|
+
[key: string]: any;
|
|
530
|
+
};
|
|
531
|
+
constructor(map?: {
|
|
532
|
+
[key: string]: any;
|
|
533
|
+
});
|
|
534
|
+
}
|
|
535
|
+
export declare class DescribePageFaceVerifyDataResponseBody extends $tea.Model {
|
|
536
|
+
code?: string;
|
|
537
|
+
currentPage?: string;
|
|
538
|
+
items?: DescribePageFaceVerifyDataResponseBodyItems[];
|
|
539
|
+
message?: string;
|
|
540
|
+
pageSize?: string;
|
|
541
|
+
requestId?: string;
|
|
542
|
+
success?: string;
|
|
543
|
+
totalCount?: string;
|
|
544
|
+
totalPage?: string;
|
|
545
|
+
static names(): {
|
|
546
|
+
[key: string]: string;
|
|
547
|
+
};
|
|
548
|
+
static types(): {
|
|
549
|
+
[key: string]: any;
|
|
550
|
+
};
|
|
551
|
+
constructor(map?: {
|
|
552
|
+
[key: string]: any;
|
|
553
|
+
});
|
|
554
|
+
}
|
|
555
|
+
export declare class DescribePageFaceVerifyDataResponse extends $tea.Model {
|
|
556
|
+
headers?: {
|
|
557
|
+
[key: string]: string;
|
|
558
|
+
};
|
|
559
|
+
statusCode?: number;
|
|
560
|
+
body?: DescribePageFaceVerifyDataResponseBody;
|
|
410
561
|
static names(): {
|
|
411
562
|
[key: string]: string;
|
|
412
563
|
};
|
|
@@ -452,11 +603,11 @@ export declare class DescribeSmartStatisticsPageListResponseBody extends $tea.Mo
|
|
|
452
603
|
});
|
|
453
604
|
}
|
|
454
605
|
export declare class DescribeSmartStatisticsPageListResponse extends $tea.Model {
|
|
455
|
-
headers
|
|
606
|
+
headers?: {
|
|
456
607
|
[key: string]: string;
|
|
457
608
|
};
|
|
458
|
-
statusCode
|
|
459
|
-
body
|
|
609
|
+
statusCode?: number;
|
|
610
|
+
body?: DescribeSmartStatisticsPageListResponseBody;
|
|
460
611
|
static names(): {
|
|
461
612
|
[key: string]: string;
|
|
462
613
|
};
|
|
@@ -498,11 +649,11 @@ export declare class DescribeVerifyResultResponseBody extends $tea.Model {
|
|
|
498
649
|
});
|
|
499
650
|
}
|
|
500
651
|
export declare class DescribeVerifyResultResponse extends $tea.Model {
|
|
501
|
-
headers
|
|
652
|
+
headers?: {
|
|
502
653
|
[key: string]: string;
|
|
503
654
|
};
|
|
504
|
-
statusCode
|
|
505
|
-
body
|
|
655
|
+
statusCode?: number;
|
|
656
|
+
body?: DescribeVerifyResultResponseBody;
|
|
506
657
|
static names(): {
|
|
507
658
|
[key: string]: string;
|
|
508
659
|
};
|
|
@@ -539,11 +690,11 @@ export declare class DescribeVerifySDKResponseBody extends $tea.Model {
|
|
|
539
690
|
});
|
|
540
691
|
}
|
|
541
692
|
export declare class DescribeVerifySDKResponse extends $tea.Model {
|
|
542
|
-
headers
|
|
693
|
+
headers?: {
|
|
543
694
|
[key: string]: string;
|
|
544
695
|
};
|
|
545
|
-
statusCode
|
|
546
|
-
body
|
|
696
|
+
statusCode?: number;
|
|
697
|
+
body?: DescribeVerifySDKResponseBody;
|
|
547
698
|
static names(): {
|
|
548
699
|
[key: string]: string;
|
|
549
700
|
};
|
|
@@ -596,11 +747,11 @@ export declare class DescribeVerifyTokenResponseBody extends $tea.Model {
|
|
|
596
747
|
});
|
|
597
748
|
}
|
|
598
749
|
export declare class DescribeVerifyTokenResponse extends $tea.Model {
|
|
599
|
-
headers
|
|
750
|
+
headers?: {
|
|
600
751
|
[key: string]: string;
|
|
601
752
|
};
|
|
602
|
-
statusCode
|
|
603
|
-
body
|
|
753
|
+
statusCode?: number;
|
|
754
|
+
body?: DescribeVerifyTokenResponseBody;
|
|
604
755
|
static names(): {
|
|
605
756
|
[key: string]: string;
|
|
606
757
|
};
|
|
@@ -641,11 +792,11 @@ export declare class DetectFaceAttributesResponseBody extends $tea.Model {
|
|
|
641
792
|
});
|
|
642
793
|
}
|
|
643
794
|
export declare class DetectFaceAttributesResponse extends $tea.Model {
|
|
644
|
-
headers
|
|
795
|
+
headers?: {
|
|
645
796
|
[key: string]: string;
|
|
646
797
|
};
|
|
647
|
-
statusCode
|
|
648
|
-
body
|
|
798
|
+
statusCode?: number;
|
|
799
|
+
body?: DetectFaceAttributesResponseBody;
|
|
649
800
|
static names(): {
|
|
650
801
|
[key: string]: string;
|
|
651
802
|
};
|
|
@@ -686,11 +837,11 @@ export declare class Id2MetaVerifyResponseBody extends $tea.Model {
|
|
|
686
837
|
});
|
|
687
838
|
}
|
|
688
839
|
export declare class Id2MetaVerifyResponse extends $tea.Model {
|
|
689
|
-
headers
|
|
840
|
+
headers?: {
|
|
690
841
|
[key: string]: string;
|
|
691
842
|
};
|
|
692
|
-
statusCode
|
|
693
|
-
body
|
|
843
|
+
statusCode?: number;
|
|
844
|
+
body?: Id2MetaVerifyResponseBody;
|
|
694
845
|
static names(): {
|
|
695
846
|
[key: string]: string;
|
|
696
847
|
};
|
|
@@ -761,11 +912,11 @@ export declare class InitFaceVerifyResponseBody extends $tea.Model {
|
|
|
761
912
|
});
|
|
762
913
|
}
|
|
763
914
|
export declare class InitFaceVerifyResponse extends $tea.Model {
|
|
764
|
-
headers
|
|
915
|
+
headers?: {
|
|
765
916
|
[key: string]: string;
|
|
766
917
|
};
|
|
767
|
-
statusCode
|
|
768
|
-
body
|
|
918
|
+
statusCode?: number;
|
|
919
|
+
body?: InitFaceVerifyResponseBody;
|
|
769
920
|
static names(): {
|
|
770
921
|
[key: string]: string;
|
|
771
922
|
};
|
|
@@ -817,11 +968,11 @@ export declare class LivenessFaceVerifyResponseBody extends $tea.Model {
|
|
|
817
968
|
});
|
|
818
969
|
}
|
|
819
970
|
export declare class LivenessFaceVerifyResponse extends $tea.Model {
|
|
820
|
-
headers
|
|
971
|
+
headers?: {
|
|
821
972
|
[key: string]: string;
|
|
822
973
|
};
|
|
823
|
-
statusCode
|
|
824
|
-
body
|
|
974
|
+
statusCode?: number;
|
|
975
|
+
body?: LivenessFaceVerifyResponseBody;
|
|
825
976
|
static names(): {
|
|
826
977
|
[key: string]: string;
|
|
827
978
|
};
|
|
@@ -863,11 +1014,11 @@ export declare class Mobile3MetaDetailVerifyResponseBody extends $tea.Model {
|
|
|
863
1014
|
});
|
|
864
1015
|
}
|
|
865
1016
|
export declare class Mobile3MetaDetailVerifyResponse extends $tea.Model {
|
|
866
|
-
headers
|
|
1017
|
+
headers?: {
|
|
867
1018
|
[key: string]: string;
|
|
868
1019
|
};
|
|
869
|
-
statusCode
|
|
870
|
-
body
|
|
1020
|
+
statusCode?: number;
|
|
1021
|
+
body?: Mobile3MetaDetailVerifyResponseBody;
|
|
871
1022
|
static names(): {
|
|
872
1023
|
[key: string]: string;
|
|
873
1024
|
};
|
|
@@ -909,11 +1060,143 @@ export declare class Mobile3MetaSimpleVerifyResponseBody extends $tea.Model {
|
|
|
909
1060
|
});
|
|
910
1061
|
}
|
|
911
1062
|
export declare class Mobile3MetaSimpleVerifyResponse extends $tea.Model {
|
|
912
|
-
headers
|
|
1063
|
+
headers?: {
|
|
1064
|
+
[key: string]: string;
|
|
1065
|
+
};
|
|
1066
|
+
statusCode?: number;
|
|
1067
|
+
body?: Mobile3MetaSimpleVerifyResponseBody;
|
|
1068
|
+
static names(): {
|
|
1069
|
+
[key: string]: string;
|
|
1070
|
+
};
|
|
1071
|
+
static types(): {
|
|
1072
|
+
[key: string]: any;
|
|
1073
|
+
};
|
|
1074
|
+
constructor(map?: {
|
|
1075
|
+
[key: string]: any;
|
|
1076
|
+
});
|
|
1077
|
+
}
|
|
1078
|
+
export declare class MobileDetectRequest extends $tea.Model {
|
|
1079
|
+
mobiles?: string;
|
|
1080
|
+
paramType?: string;
|
|
1081
|
+
static names(): {
|
|
1082
|
+
[key: string]: string;
|
|
1083
|
+
};
|
|
1084
|
+
static types(): {
|
|
1085
|
+
[key: string]: any;
|
|
1086
|
+
};
|
|
1087
|
+
constructor(map?: {
|
|
1088
|
+
[key: string]: any;
|
|
1089
|
+
});
|
|
1090
|
+
}
|
|
1091
|
+
export declare class MobileDetectResponseBody extends $tea.Model {
|
|
1092
|
+
code?: string;
|
|
1093
|
+
message?: string;
|
|
1094
|
+
requestId?: string;
|
|
1095
|
+
resultObject?: MobileDetectResponseBodyResultObject;
|
|
1096
|
+
static names(): {
|
|
1097
|
+
[key: string]: string;
|
|
1098
|
+
};
|
|
1099
|
+
static types(): {
|
|
1100
|
+
[key: string]: any;
|
|
1101
|
+
};
|
|
1102
|
+
constructor(map?: {
|
|
1103
|
+
[key: string]: any;
|
|
1104
|
+
});
|
|
1105
|
+
}
|
|
1106
|
+
export declare class MobileDetectResponse extends $tea.Model {
|
|
1107
|
+
headers?: {
|
|
913
1108
|
[key: string]: string;
|
|
914
1109
|
};
|
|
915
|
-
statusCode
|
|
916
|
-
body
|
|
1110
|
+
statusCode?: number;
|
|
1111
|
+
body?: MobileDetectResponseBody;
|
|
1112
|
+
static names(): {
|
|
1113
|
+
[key: string]: string;
|
|
1114
|
+
};
|
|
1115
|
+
static types(): {
|
|
1116
|
+
[key: string]: any;
|
|
1117
|
+
};
|
|
1118
|
+
constructor(map?: {
|
|
1119
|
+
[key: string]: any;
|
|
1120
|
+
});
|
|
1121
|
+
}
|
|
1122
|
+
export declare class MobileOnlineStatusRequest extends $tea.Model {
|
|
1123
|
+
mobile?: string;
|
|
1124
|
+
paramType?: string;
|
|
1125
|
+
static names(): {
|
|
1126
|
+
[key: string]: string;
|
|
1127
|
+
};
|
|
1128
|
+
static types(): {
|
|
1129
|
+
[key: string]: any;
|
|
1130
|
+
};
|
|
1131
|
+
constructor(map?: {
|
|
1132
|
+
[key: string]: any;
|
|
1133
|
+
});
|
|
1134
|
+
}
|
|
1135
|
+
export declare class MobileOnlineStatusResponseBody extends $tea.Model {
|
|
1136
|
+
code?: string;
|
|
1137
|
+
message?: string;
|
|
1138
|
+
requestId?: string;
|
|
1139
|
+
resultObject?: MobileOnlineStatusResponseBodyResultObject;
|
|
1140
|
+
static names(): {
|
|
1141
|
+
[key: string]: string;
|
|
1142
|
+
};
|
|
1143
|
+
static types(): {
|
|
1144
|
+
[key: string]: any;
|
|
1145
|
+
};
|
|
1146
|
+
constructor(map?: {
|
|
1147
|
+
[key: string]: any;
|
|
1148
|
+
});
|
|
1149
|
+
}
|
|
1150
|
+
export declare class MobileOnlineStatusResponse extends $tea.Model {
|
|
1151
|
+
headers?: {
|
|
1152
|
+
[key: string]: string;
|
|
1153
|
+
};
|
|
1154
|
+
statusCode?: number;
|
|
1155
|
+
body?: MobileOnlineStatusResponseBody;
|
|
1156
|
+
static names(): {
|
|
1157
|
+
[key: string]: string;
|
|
1158
|
+
};
|
|
1159
|
+
static types(): {
|
|
1160
|
+
[key: string]: any;
|
|
1161
|
+
};
|
|
1162
|
+
constructor(map?: {
|
|
1163
|
+
[key: string]: any;
|
|
1164
|
+
});
|
|
1165
|
+
}
|
|
1166
|
+
export declare class MobileOnlineTimeRequest extends $tea.Model {
|
|
1167
|
+
mobile?: string;
|
|
1168
|
+
paramType?: string;
|
|
1169
|
+
static names(): {
|
|
1170
|
+
[key: string]: string;
|
|
1171
|
+
};
|
|
1172
|
+
static types(): {
|
|
1173
|
+
[key: string]: any;
|
|
1174
|
+
};
|
|
1175
|
+
constructor(map?: {
|
|
1176
|
+
[key: string]: any;
|
|
1177
|
+
});
|
|
1178
|
+
}
|
|
1179
|
+
export declare class MobileOnlineTimeResponseBody extends $tea.Model {
|
|
1180
|
+
code?: string;
|
|
1181
|
+
message?: string;
|
|
1182
|
+
requestId?: string;
|
|
1183
|
+
resultObject?: MobileOnlineTimeResponseBodyResultObject;
|
|
1184
|
+
static names(): {
|
|
1185
|
+
[key: string]: string;
|
|
1186
|
+
};
|
|
1187
|
+
static types(): {
|
|
1188
|
+
[key: string]: any;
|
|
1189
|
+
};
|
|
1190
|
+
constructor(map?: {
|
|
1191
|
+
[key: string]: any;
|
|
1192
|
+
});
|
|
1193
|
+
}
|
|
1194
|
+
export declare class MobileOnlineTimeResponse extends $tea.Model {
|
|
1195
|
+
headers?: {
|
|
1196
|
+
[key: string]: string;
|
|
1197
|
+
};
|
|
1198
|
+
statusCode?: number;
|
|
1199
|
+
body?: MobileOnlineTimeResponseBody;
|
|
917
1200
|
static names(): {
|
|
918
1201
|
[key: string]: string;
|
|
919
1202
|
};
|
|
@@ -958,11 +1241,11 @@ export declare class ModifyDeviceInfoResponseBody extends $tea.Model {
|
|
|
958
1241
|
});
|
|
959
1242
|
}
|
|
960
1243
|
export declare class ModifyDeviceInfoResponse extends $tea.Model {
|
|
961
|
-
headers
|
|
1244
|
+
headers?: {
|
|
962
1245
|
[key: string]: string;
|
|
963
1246
|
};
|
|
964
|
-
statusCode
|
|
965
|
-
body
|
|
1247
|
+
statusCode?: number;
|
|
1248
|
+
body?: ModifyDeviceInfoResponseBody;
|
|
966
1249
|
static names(): {
|
|
967
1250
|
[key: string]: string;
|
|
968
1251
|
};
|
|
@@ -1010,11 +1293,38 @@ export declare class VerifyMaterialResponseBody extends $tea.Model {
|
|
|
1010
1293
|
});
|
|
1011
1294
|
}
|
|
1012
1295
|
export declare class VerifyMaterialResponse extends $tea.Model {
|
|
1013
|
-
headers
|
|
1296
|
+
headers?: {
|
|
1297
|
+
[key: string]: string;
|
|
1298
|
+
};
|
|
1299
|
+
statusCode?: number;
|
|
1300
|
+
body?: VerifyMaterialResponseBody;
|
|
1301
|
+
static names(): {
|
|
1302
|
+
[key: string]: string;
|
|
1303
|
+
};
|
|
1304
|
+
static types(): {
|
|
1305
|
+
[key: string]: any;
|
|
1306
|
+
};
|
|
1307
|
+
constructor(map?: {
|
|
1308
|
+
[key: string]: any;
|
|
1309
|
+
});
|
|
1310
|
+
}
|
|
1311
|
+
export declare class AIGCFaceVerifyResponseBodyResultObject extends $tea.Model {
|
|
1312
|
+
certifyId?: string;
|
|
1313
|
+
result?: string;
|
|
1314
|
+
score?: string;
|
|
1315
|
+
static names(): {
|
|
1014
1316
|
[key: string]: string;
|
|
1015
1317
|
};
|
|
1016
|
-
|
|
1017
|
-
|
|
1318
|
+
static types(): {
|
|
1319
|
+
[key: string]: any;
|
|
1320
|
+
};
|
|
1321
|
+
constructor(map?: {
|
|
1322
|
+
[key: string]: any;
|
|
1323
|
+
});
|
|
1324
|
+
}
|
|
1325
|
+
export declare class BankMetaVerifyResponseBodyResultObject extends $tea.Model {
|
|
1326
|
+
bizCode?: string;
|
|
1327
|
+
subCode?: string;
|
|
1018
1328
|
static names(): {
|
|
1019
1329
|
[key: string]: string;
|
|
1020
1330
|
};
|
|
@@ -1133,6 +1443,23 @@ export declare class DescribeOssUploadTokenResponseBodyOssUploadToken extends $t
|
|
|
1133
1443
|
[key: string]: any;
|
|
1134
1444
|
});
|
|
1135
1445
|
}
|
|
1446
|
+
export declare class DescribePageFaceVerifyDataResponseBodyItems extends $tea.Model {
|
|
1447
|
+
date?: string;
|
|
1448
|
+
productCode?: string;
|
|
1449
|
+
sceneId?: string;
|
|
1450
|
+
sceneName?: string;
|
|
1451
|
+
successCount?: string;
|
|
1452
|
+
totalCount?: string;
|
|
1453
|
+
static names(): {
|
|
1454
|
+
[key: string]: string;
|
|
1455
|
+
};
|
|
1456
|
+
static types(): {
|
|
1457
|
+
[key: string]: any;
|
|
1458
|
+
};
|
|
1459
|
+
constructor(map?: {
|
|
1460
|
+
[key: string]: any;
|
|
1461
|
+
});
|
|
1462
|
+
}
|
|
1136
1463
|
export declare class DescribeSmartStatisticsPageListResponseBodyItems extends $tea.Model {
|
|
1137
1464
|
date?: string;
|
|
1138
1465
|
passRate?: string;
|
|
@@ -1376,6 +1703,63 @@ export declare class Mobile3MetaSimpleVerifyResponseBodyResultObject extends $te
|
|
|
1376
1703
|
[key: string]: any;
|
|
1377
1704
|
});
|
|
1378
1705
|
}
|
|
1706
|
+
export declare class MobileDetectResponseBodyResultObjectItems extends $tea.Model {
|
|
1707
|
+
area?: string;
|
|
1708
|
+
bizCode?: string;
|
|
1709
|
+
ispName?: string;
|
|
1710
|
+
mobile?: string;
|
|
1711
|
+
subCode?: string;
|
|
1712
|
+
static names(): {
|
|
1713
|
+
[key: string]: string;
|
|
1714
|
+
};
|
|
1715
|
+
static types(): {
|
|
1716
|
+
[key: string]: any;
|
|
1717
|
+
};
|
|
1718
|
+
constructor(map?: {
|
|
1719
|
+
[key: string]: any;
|
|
1720
|
+
});
|
|
1721
|
+
}
|
|
1722
|
+
export declare class MobileDetectResponseBodyResultObject extends $tea.Model {
|
|
1723
|
+
chargeCount?: string;
|
|
1724
|
+
items?: MobileDetectResponseBodyResultObjectItems[];
|
|
1725
|
+
static names(): {
|
|
1726
|
+
[key: string]: string;
|
|
1727
|
+
};
|
|
1728
|
+
static types(): {
|
|
1729
|
+
[key: string]: any;
|
|
1730
|
+
};
|
|
1731
|
+
constructor(map?: {
|
|
1732
|
+
[key: string]: any;
|
|
1733
|
+
});
|
|
1734
|
+
}
|
|
1735
|
+
export declare class MobileOnlineStatusResponseBodyResultObject extends $tea.Model {
|
|
1736
|
+
bizCode?: string;
|
|
1737
|
+
ispName?: string;
|
|
1738
|
+
subCode?: string;
|
|
1739
|
+
static names(): {
|
|
1740
|
+
[key: string]: string;
|
|
1741
|
+
};
|
|
1742
|
+
static types(): {
|
|
1743
|
+
[key: string]: any;
|
|
1744
|
+
};
|
|
1745
|
+
constructor(map?: {
|
|
1746
|
+
[key: string]: any;
|
|
1747
|
+
});
|
|
1748
|
+
}
|
|
1749
|
+
export declare class MobileOnlineTimeResponseBodyResultObject extends $tea.Model {
|
|
1750
|
+
bizCode?: string;
|
|
1751
|
+
ispName?: string;
|
|
1752
|
+
timeCode?: string;
|
|
1753
|
+
static names(): {
|
|
1754
|
+
[key: string]: string;
|
|
1755
|
+
};
|
|
1756
|
+
static types(): {
|
|
1757
|
+
[key: string]: any;
|
|
1758
|
+
};
|
|
1759
|
+
constructor(map?: {
|
|
1760
|
+
[key: string]: any;
|
|
1761
|
+
});
|
|
1762
|
+
}
|
|
1379
1763
|
export declare class VerifyMaterialResponseBodyMaterialIdCardInfo extends $tea.Model {
|
|
1380
1764
|
address?: string;
|
|
1381
1765
|
authority?: string;
|
|
@@ -1420,6 +1804,10 @@ export default class Client extends OpenApi {
|
|
|
1420
1804
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
1421
1805
|
[key: string]: string;
|
|
1422
1806
|
}, endpoint: string): string;
|
|
1807
|
+
aIGCFaceVerifyWithOptions(request: AIGCFaceVerifyRequest, runtime: $Util.RuntimeOptions): Promise<AIGCFaceVerifyResponse>;
|
|
1808
|
+
aIGCFaceVerify(request: AIGCFaceVerifyRequest): Promise<AIGCFaceVerifyResponse>;
|
|
1809
|
+
bankMetaVerifyWithOptions(request: BankMetaVerifyRequest, runtime: $Util.RuntimeOptions): Promise<BankMetaVerifyResponse>;
|
|
1810
|
+
bankMetaVerify(request: BankMetaVerifyRequest): Promise<BankMetaVerifyResponse>;
|
|
1423
1811
|
compareFaceVerifyWithOptions(request: CompareFaceVerifyRequest, runtime: $Util.RuntimeOptions): Promise<CompareFaceVerifyResponse>;
|
|
1424
1812
|
compareFaceVerify(request: CompareFaceVerifyRequest): Promise<CompareFaceVerifyResponse>;
|
|
1425
1813
|
compareFacesWithOptions(request: CompareFacesRequest, runtime: $Util.RuntimeOptions): Promise<CompareFacesResponse>;
|
|
@@ -1437,6 +1825,8 @@ export default class Client extends OpenApi {
|
|
|
1437
1825
|
describeFaceVerify(request: DescribeFaceVerifyRequest): Promise<DescribeFaceVerifyResponse>;
|
|
1438
1826
|
describeOssUploadTokenWithOptions(runtime: $Util.RuntimeOptions): Promise<DescribeOssUploadTokenResponse>;
|
|
1439
1827
|
describeOssUploadToken(): Promise<DescribeOssUploadTokenResponse>;
|
|
1828
|
+
describePageFaceVerifyDataWithOptions(request: DescribePageFaceVerifyDataRequest, runtime: $Util.RuntimeOptions): Promise<DescribePageFaceVerifyDataResponse>;
|
|
1829
|
+
describePageFaceVerifyData(request: DescribePageFaceVerifyDataRequest): Promise<DescribePageFaceVerifyDataResponse>;
|
|
1440
1830
|
describeSmartStatisticsPageListWithOptions(request: DescribeSmartStatisticsPageListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSmartStatisticsPageListResponse>;
|
|
1441
1831
|
describeSmartStatisticsPageList(request: DescribeSmartStatisticsPageListRequest): Promise<DescribeSmartStatisticsPageListResponse>;
|
|
1442
1832
|
describeVerifyResultWithOptions(request: DescribeVerifyResultRequest, runtime: $Util.RuntimeOptions): Promise<DescribeVerifyResultResponse>;
|
|
@@ -1457,6 +1847,12 @@ export default class Client extends OpenApi {
|
|
|
1457
1847
|
mobile3MetaDetailVerify(request: Mobile3MetaDetailVerifyRequest): Promise<Mobile3MetaDetailVerifyResponse>;
|
|
1458
1848
|
mobile3MetaSimpleVerifyWithOptions(request: Mobile3MetaSimpleVerifyRequest, runtime: $Util.RuntimeOptions): Promise<Mobile3MetaSimpleVerifyResponse>;
|
|
1459
1849
|
mobile3MetaSimpleVerify(request: Mobile3MetaSimpleVerifyRequest): Promise<Mobile3MetaSimpleVerifyResponse>;
|
|
1850
|
+
mobileDetectWithOptions(request: MobileDetectRequest, runtime: $Util.RuntimeOptions): Promise<MobileDetectResponse>;
|
|
1851
|
+
mobileDetect(request: MobileDetectRequest): Promise<MobileDetectResponse>;
|
|
1852
|
+
mobileOnlineStatusWithOptions(request: MobileOnlineStatusRequest, runtime: $Util.RuntimeOptions): Promise<MobileOnlineStatusResponse>;
|
|
1853
|
+
mobileOnlineStatus(request: MobileOnlineStatusRequest): Promise<MobileOnlineStatusResponse>;
|
|
1854
|
+
mobileOnlineTimeWithOptions(request: MobileOnlineTimeRequest, runtime: $Util.RuntimeOptions): Promise<MobileOnlineTimeResponse>;
|
|
1855
|
+
mobileOnlineTime(request: MobileOnlineTimeRequest): Promise<MobileOnlineTimeResponse>;
|
|
1460
1856
|
modifyDeviceInfoWithOptions(request: ModifyDeviceInfoRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDeviceInfoResponse>;
|
|
1461
1857
|
modifyDeviceInfo(request: ModifyDeviceInfoRequest): Promise<ModifyDeviceInfoResponse>;
|
|
1462
1858
|
verifyMaterialWithOptions(request: VerifyMaterialRequest, runtime: $Util.RuntimeOptions): Promise<VerifyMaterialResponse>;
|