@alicloud/cloudauth20190307 2.3.0 → 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 +331 -0
- package/dist/client.js +945 -313
- package/dist/client.js.map +1 -1
- package/package.json +4 -4
- package/src/client.ts +848 -71
package/dist/client.d.ts
CHANGED
|
@@ -55,6 +55,55 @@ export declare class AIGCFaceVerifyResponse extends $tea.Model {
|
|
|
55
55
|
[key: string]: any;
|
|
56
56
|
});
|
|
57
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
|
+
}
|
|
58
107
|
export declare class CompareFaceVerifyRequest extends $tea.Model {
|
|
59
108
|
crop?: string;
|
|
60
109
|
outerOrderNo?: string;
|
|
@@ -466,6 +515,59 @@ export declare class DescribeOssUploadTokenResponse extends $tea.Model {
|
|
|
466
515
|
[key: string]: any;
|
|
467
516
|
});
|
|
468
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;
|
|
561
|
+
static names(): {
|
|
562
|
+
[key: string]: string;
|
|
563
|
+
};
|
|
564
|
+
static types(): {
|
|
565
|
+
[key: string]: any;
|
|
566
|
+
};
|
|
567
|
+
constructor(map?: {
|
|
568
|
+
[key: string]: any;
|
|
569
|
+
});
|
|
570
|
+
}
|
|
469
571
|
export declare class DescribeSmartStatisticsPageListRequest extends $tea.Model {
|
|
470
572
|
currentPage?: string;
|
|
471
573
|
endDate?: string;
|
|
@@ -973,6 +1075,138 @@ export declare class Mobile3MetaSimpleVerifyResponse extends $tea.Model {
|
|
|
973
1075
|
[key: string]: any;
|
|
974
1076
|
});
|
|
975
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?: {
|
|
1108
|
+
[key: string]: string;
|
|
1109
|
+
};
|
|
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;
|
|
1200
|
+
static names(): {
|
|
1201
|
+
[key: string]: string;
|
|
1202
|
+
};
|
|
1203
|
+
static types(): {
|
|
1204
|
+
[key: string]: any;
|
|
1205
|
+
};
|
|
1206
|
+
constructor(map?: {
|
|
1207
|
+
[key: string]: any;
|
|
1208
|
+
});
|
|
1209
|
+
}
|
|
976
1210
|
export declare class ModifyDeviceInfoRequest extends $tea.Model {
|
|
977
1211
|
bizType?: string;
|
|
978
1212
|
deviceId?: string;
|
|
@@ -1088,6 +1322,19 @@ export declare class AIGCFaceVerifyResponseBodyResultObject extends $tea.Model {
|
|
|
1088
1322
|
[key: string]: any;
|
|
1089
1323
|
});
|
|
1090
1324
|
}
|
|
1325
|
+
export declare class BankMetaVerifyResponseBodyResultObject extends $tea.Model {
|
|
1326
|
+
bizCode?: string;
|
|
1327
|
+
subCode?: string;
|
|
1328
|
+
static names(): {
|
|
1329
|
+
[key: string]: string;
|
|
1330
|
+
};
|
|
1331
|
+
static types(): {
|
|
1332
|
+
[key: string]: any;
|
|
1333
|
+
};
|
|
1334
|
+
constructor(map?: {
|
|
1335
|
+
[key: string]: any;
|
|
1336
|
+
});
|
|
1337
|
+
}
|
|
1091
1338
|
export declare class CompareFaceVerifyResponseBodyResultObject extends $tea.Model {
|
|
1092
1339
|
certifyId?: string;
|
|
1093
1340
|
passed?: string;
|
|
@@ -1196,6 +1443,23 @@ export declare class DescribeOssUploadTokenResponseBodyOssUploadToken extends $t
|
|
|
1196
1443
|
[key: string]: any;
|
|
1197
1444
|
});
|
|
1198
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
|
+
}
|
|
1199
1463
|
export declare class DescribeSmartStatisticsPageListResponseBodyItems extends $tea.Model {
|
|
1200
1464
|
date?: string;
|
|
1201
1465
|
passRate?: string;
|
|
@@ -1439,6 +1703,63 @@ export declare class Mobile3MetaSimpleVerifyResponseBodyResultObject extends $te
|
|
|
1439
1703
|
[key: string]: any;
|
|
1440
1704
|
});
|
|
1441
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
|
+
}
|
|
1442
1763
|
export declare class VerifyMaterialResponseBodyMaterialIdCardInfo extends $tea.Model {
|
|
1443
1764
|
address?: string;
|
|
1444
1765
|
authority?: string;
|
|
@@ -1485,6 +1806,8 @@ export default class Client extends OpenApi {
|
|
|
1485
1806
|
}, endpoint: string): string;
|
|
1486
1807
|
aIGCFaceVerifyWithOptions(request: AIGCFaceVerifyRequest, runtime: $Util.RuntimeOptions): Promise<AIGCFaceVerifyResponse>;
|
|
1487
1808
|
aIGCFaceVerify(request: AIGCFaceVerifyRequest): Promise<AIGCFaceVerifyResponse>;
|
|
1809
|
+
bankMetaVerifyWithOptions(request: BankMetaVerifyRequest, runtime: $Util.RuntimeOptions): Promise<BankMetaVerifyResponse>;
|
|
1810
|
+
bankMetaVerify(request: BankMetaVerifyRequest): Promise<BankMetaVerifyResponse>;
|
|
1488
1811
|
compareFaceVerifyWithOptions(request: CompareFaceVerifyRequest, runtime: $Util.RuntimeOptions): Promise<CompareFaceVerifyResponse>;
|
|
1489
1812
|
compareFaceVerify(request: CompareFaceVerifyRequest): Promise<CompareFaceVerifyResponse>;
|
|
1490
1813
|
compareFacesWithOptions(request: CompareFacesRequest, runtime: $Util.RuntimeOptions): Promise<CompareFacesResponse>;
|
|
@@ -1502,6 +1825,8 @@ export default class Client extends OpenApi {
|
|
|
1502
1825
|
describeFaceVerify(request: DescribeFaceVerifyRequest): Promise<DescribeFaceVerifyResponse>;
|
|
1503
1826
|
describeOssUploadTokenWithOptions(runtime: $Util.RuntimeOptions): Promise<DescribeOssUploadTokenResponse>;
|
|
1504
1827
|
describeOssUploadToken(): Promise<DescribeOssUploadTokenResponse>;
|
|
1828
|
+
describePageFaceVerifyDataWithOptions(request: DescribePageFaceVerifyDataRequest, runtime: $Util.RuntimeOptions): Promise<DescribePageFaceVerifyDataResponse>;
|
|
1829
|
+
describePageFaceVerifyData(request: DescribePageFaceVerifyDataRequest): Promise<DescribePageFaceVerifyDataResponse>;
|
|
1505
1830
|
describeSmartStatisticsPageListWithOptions(request: DescribeSmartStatisticsPageListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSmartStatisticsPageListResponse>;
|
|
1506
1831
|
describeSmartStatisticsPageList(request: DescribeSmartStatisticsPageListRequest): Promise<DescribeSmartStatisticsPageListResponse>;
|
|
1507
1832
|
describeVerifyResultWithOptions(request: DescribeVerifyResultRequest, runtime: $Util.RuntimeOptions): Promise<DescribeVerifyResultResponse>;
|
|
@@ -1522,6 +1847,12 @@ export default class Client extends OpenApi {
|
|
|
1522
1847
|
mobile3MetaDetailVerify(request: Mobile3MetaDetailVerifyRequest): Promise<Mobile3MetaDetailVerifyResponse>;
|
|
1523
1848
|
mobile3MetaSimpleVerifyWithOptions(request: Mobile3MetaSimpleVerifyRequest, runtime: $Util.RuntimeOptions): Promise<Mobile3MetaSimpleVerifyResponse>;
|
|
1524
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>;
|
|
1525
1856
|
modifyDeviceInfoWithOptions(request: ModifyDeviceInfoRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDeviceInfoResponse>;
|
|
1526
1857
|
modifyDeviceInfo(request: ModifyDeviceInfoRequest): Promise<ModifyDeviceInfoResponse>;
|
|
1527
1858
|
verifyMaterialWithOptions(request: VerifyMaterialRequest, runtime: $Util.RuntimeOptions): Promise<VerifyMaterialResponse>;
|