@alicloud/cloudauth20190307 3.7.0 → 3.9.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.
Files changed (61) hide show
  1. package/dist/client.d.ts +46 -0
  2. package/dist/client.js +232 -0
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/CredentialProductVerifyV2advanceRequest.d.ts +49 -0
  5. package/dist/models/CredentialProductVerifyV2advanceRequest.js +67 -0
  6. package/dist/models/CredentialProductVerifyV2advanceRequest.js.map +1 -0
  7. package/dist/models/CredentialProductVerifyV2request.d.ts +48 -0
  8. package/dist/models/CredentialProductVerifyV2request.js +68 -0
  9. package/dist/models/CredentialProductVerifyV2request.js.map +1 -0
  10. package/dist/models/CredentialProductVerifyV2response.d.ts +19 -0
  11. package/dist/models/CredentialProductVerifyV2response.js +69 -0
  12. package/dist/models/CredentialProductVerifyV2response.js.map +1 -0
  13. package/dist/models/CredentialProductVerifyV2responseBody.d.ts +30 -0
  14. package/dist/models/CredentialProductVerifyV2responseBody.js +68 -0
  15. package/dist/models/CredentialProductVerifyV2responseBody.js.map +1 -0
  16. package/dist/models/CredentialProductVerifyV2responseBodyResultObject.d.ts +27 -0
  17. package/dist/models/CredentialProductVerifyV2responseBodyResultObject.js +67 -0
  18. package/dist/models/CredentialProductVerifyV2responseBodyResultObject.js.map +1 -0
  19. package/dist/models/DescribeCardVerifyRequest.d.ts +21 -0
  20. package/dist/models/DescribeCardVerifyRequest.js +58 -0
  21. package/dist/models/DescribeCardVerifyRequest.js.map +1 -0
  22. package/dist/models/DescribeCardVerifyResponse.d.ts +19 -0
  23. package/dist/models/DescribeCardVerifyResponse.js +69 -0
  24. package/dist/models/DescribeCardVerifyResponse.js.map +1 -0
  25. package/dist/models/DescribeCardVerifyResponseBody.d.ts +30 -0
  26. package/dist/models/DescribeCardVerifyResponseBody.js +68 -0
  27. package/dist/models/DescribeCardVerifyResponseBody.js.map +1 -0
  28. package/dist/models/DescribeCardVerifyResponseBodyResultObject.d.ts +28 -0
  29. package/dist/models/DescribeCardVerifyResponseBodyResultObject.js +64 -0
  30. package/dist/models/DescribeCardVerifyResponseBodyResultObject.js.map +1 -0
  31. package/dist/models/InitCardVerifyRequest.d.ts +84 -0
  32. package/dist/models/InitCardVerifyRequest.js +76 -0
  33. package/dist/models/InitCardVerifyRequest.js.map +1 -0
  34. package/dist/models/InitCardVerifyResponse.d.ts +19 -0
  35. package/dist/models/InitCardVerifyResponse.js +69 -0
  36. package/dist/models/InitCardVerifyResponse.js.map +1 -0
  37. package/dist/models/InitCardVerifyResponseBody.d.ts +30 -0
  38. package/dist/models/InitCardVerifyResponseBody.js +68 -0
  39. package/dist/models/InitCardVerifyResponseBody.js.map +1 -0
  40. package/dist/models/InitCardVerifyResponseBodyResultObject.d.ts +18 -0
  41. package/dist/models/InitCardVerifyResponseBodyResultObject.js +58 -0
  42. package/dist/models/InitCardVerifyResponseBodyResultObject.js.map +1 -0
  43. package/dist/models/model.d.ts +13 -0
  44. package/dist/models/model.js +31 -4
  45. package/dist/models/model.js.map +1 -1
  46. package/package.json +1 -1
  47. package/src/client.ts +259 -0
  48. package/src/models/CredentialProductVerifyV2advanceRequest.ts +72 -0
  49. package/src/models/CredentialProductVerifyV2request.ts +71 -0
  50. package/src/models/CredentialProductVerifyV2response.ts +40 -0
  51. package/src/models/CredentialProductVerifyV2responseBody.ts +52 -0
  52. package/src/models/CredentialProductVerifyV2responseBodyResultObject.ts +47 -0
  53. package/src/models/DescribeCardVerifyRequest.ts +34 -0
  54. package/src/models/DescribeCardVerifyResponse.ts +40 -0
  55. package/src/models/DescribeCardVerifyResponseBody.ts +52 -0
  56. package/src/models/DescribeCardVerifyResponseBodyResultObject.ts +47 -0
  57. package/src/models/InitCardVerifyRequest.ts +115 -0
  58. package/src/models/InitCardVerifyResponse.ts +40 -0
  59. package/src/models/InitCardVerifyResponseBody.ts +52 -0
  60. package/src/models/InitCardVerifyResponseBodyResultObject.ts +31 -0
  61. package/src/models/model.ts +13 -0
@@ -0,0 +1,52 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { CredentialProductVerifyV2ResponseBodyResultObject } from "./CredentialProductVerifyV2responseBodyResultObject";
4
+
5
+
6
+ export class CredentialProductVerifyV2ResponseBody extends $dara.Model {
7
+ /**
8
+ * @example
9
+ * 200
10
+ */
11
+ code?: string;
12
+ /**
13
+ * @example
14
+ * success
15
+ */
16
+ message?: string;
17
+ /**
18
+ * @example
19
+ * 130A2C10-B9EE-4D84-88E3-5384FF039795
20
+ */
21
+ requestId?: string;
22
+ resultObject?: CredentialProductVerifyV2ResponseBodyResultObject;
23
+ static names(): { [key: string]: string } {
24
+ return {
25
+ code: 'Code',
26
+ message: 'Message',
27
+ requestId: 'RequestId',
28
+ resultObject: 'ResultObject',
29
+ };
30
+ }
31
+
32
+ static types(): { [key: string]: any } {
33
+ return {
34
+ code: 'string',
35
+ message: 'string',
36
+ requestId: 'string',
37
+ resultObject: CredentialProductVerifyV2ResponseBodyResultObject,
38
+ };
39
+ }
40
+
41
+ validate() {
42
+ if(this.resultObject && typeof (this.resultObject as any).validate === 'function') {
43
+ (this.resultObject as any).validate();
44
+ }
45
+ super.validate();
46
+ }
47
+
48
+ constructor(map?: { [key: string]: any }) {
49
+ super(map);
50
+ }
51
+ }
52
+
@@ -0,0 +1,47 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class CredentialProductVerifyV2ResponseBodyResultObject extends $dara.Model {
6
+ materialInfo?: string;
7
+ /**
8
+ * @example
9
+ * 1
10
+ */
11
+ result?: string;
12
+ riskScore?: { [key: string]: string };
13
+ /**
14
+ * @example
15
+ * PS,LOW_QUALITY_PRODUCT
16
+ */
17
+ riskTag?: string;
18
+ static names(): { [key: string]: string } {
19
+ return {
20
+ materialInfo: 'MaterialInfo',
21
+ result: 'Result',
22
+ riskScore: 'RiskScore',
23
+ riskTag: 'RiskTag',
24
+ };
25
+ }
26
+
27
+ static types(): { [key: string]: any } {
28
+ return {
29
+ materialInfo: 'string',
30
+ result: 'string',
31
+ riskScore: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
32
+ riskTag: 'string',
33
+ };
34
+ }
35
+
36
+ validate() {
37
+ if(this.riskScore) {
38
+ $dara.Model.validateMap(this.riskScore);
39
+ }
40
+ super.validate();
41
+ }
42
+
43
+ constructor(map?: { [key: string]: any }) {
44
+ super(map);
45
+ }
46
+ }
47
+
@@ -0,0 +1,34 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class DescribeCardVerifyRequest extends $dara.Model {
6
+ /**
7
+ * @remarks
8
+ * This parameter is required.
9
+ *
10
+ * @example
11
+ * 91707dc296d469ad38e4c5efa6a0xxxx
12
+ */
13
+ certifyId?: string;
14
+ static names(): { [key: string]: string } {
15
+ return {
16
+ certifyId: 'CertifyId',
17
+ };
18
+ }
19
+
20
+ static types(): { [key: string]: any } {
21
+ return {
22
+ certifyId: 'string',
23
+ };
24
+ }
25
+
26
+ validate() {
27
+ super.validate();
28
+ }
29
+
30
+ constructor(map?: { [key: string]: any }) {
31
+ super(map);
32
+ }
33
+ }
34
+
@@ -0,0 +1,40 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { DescribeCardVerifyResponseBody } from "./DescribeCardVerifyResponseBody";
4
+
5
+
6
+ export class DescribeCardVerifyResponse extends $dara.Model {
7
+ headers?: { [key: string]: string };
8
+ statusCode?: number;
9
+ body?: DescribeCardVerifyResponseBody;
10
+ static names(): { [key: string]: string } {
11
+ return {
12
+ headers: 'headers',
13
+ statusCode: 'statusCode',
14
+ body: 'body',
15
+ };
16
+ }
17
+
18
+ static types(): { [key: string]: any } {
19
+ return {
20
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
21
+ statusCode: 'number',
22
+ body: DescribeCardVerifyResponseBody,
23
+ };
24
+ }
25
+
26
+ validate() {
27
+ if(this.headers) {
28
+ $dara.Model.validateMap(this.headers);
29
+ }
30
+ if(this.body && typeof (this.body as any).validate === 'function') {
31
+ (this.body as any).validate();
32
+ }
33
+ super.validate();
34
+ }
35
+
36
+ constructor(map?: { [key: string]: any }) {
37
+ super(map);
38
+ }
39
+ }
40
+
@@ -0,0 +1,52 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { DescribeCardVerifyResponseBodyResultObject } from "./DescribeCardVerifyResponseBodyResultObject";
4
+
5
+
6
+ export class DescribeCardVerifyResponseBody extends $dara.Model {
7
+ /**
8
+ * @example
9
+ * 200
10
+ */
11
+ code?: string;
12
+ /**
13
+ * @example
14
+ * success
15
+ */
16
+ message?: string;
17
+ /**
18
+ * @example
19
+ * 130A2C10-B9EE-4D84-88E3-5384FF03****
20
+ */
21
+ requestId?: string;
22
+ resultObject?: DescribeCardVerifyResponseBodyResultObject;
23
+ static names(): { [key: string]: string } {
24
+ return {
25
+ code: 'Code',
26
+ message: 'Message',
27
+ requestId: 'RequestId',
28
+ resultObject: 'ResultObject',
29
+ };
30
+ }
31
+
32
+ static types(): { [key: string]: any } {
33
+ return {
34
+ code: 'string',
35
+ message: 'string',
36
+ requestId: 'string',
37
+ resultObject: DescribeCardVerifyResponseBodyResultObject,
38
+ };
39
+ }
40
+
41
+ validate() {
42
+ if(this.resultObject && typeof (this.resultObject as any).validate === 'function') {
43
+ (this.resultObject as any).validate();
44
+ }
45
+ super.validate();
46
+ }
47
+
48
+ constructor(map?: { [key: string]: any }) {
49
+ super(map);
50
+ }
51
+ }
52
+
@@ -0,0 +1,47 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class DescribeCardVerifyResponseBodyResultObject extends $dara.Model {
6
+ /**
7
+ * @example
8
+ * 1
9
+ */
10
+ bizCode?: string;
11
+ cardInfo?: string;
12
+ ocrCardInfo?: string;
13
+ /**
14
+ * @example
15
+ * {
16
+ * "certUrl": "https://cn-shanghai-aliyun-nmeta.cn-shanghai.oss.aliyuncs.com/verify/xxxxxxx/xxxxxxxxxx_ocridface_dbf2_normal.jpeg",
17
+ * "certNationalUrl": "https://cn-shanghai-aliyun-nmeta.cn-shanghai.oss.aliyuncs.com/verify/xxxxxxxxxx/xxxxxxxxxxx_ocridback_e8a3_normal.jpeg"
18
+ * }
19
+ */
20
+ pictureInfo?: string;
21
+ static names(): { [key: string]: string } {
22
+ return {
23
+ bizCode: 'BizCode',
24
+ cardInfo: 'CardInfo',
25
+ ocrCardInfo: 'OcrCardInfo',
26
+ pictureInfo: 'PictureInfo',
27
+ };
28
+ }
29
+
30
+ static types(): { [key: string]: any } {
31
+ return {
32
+ bizCode: 'string',
33
+ cardInfo: 'string',
34
+ ocrCardInfo: 'string',
35
+ pictureInfo: 'string',
36
+ };
37
+ }
38
+
39
+ validate() {
40
+ super.validate();
41
+ }
42
+
43
+ constructor(map?: { [key: string]: any }) {
44
+ super(map);
45
+ }
46
+ }
47
+
@@ -0,0 +1,115 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class InitCardVerifyRequest extends $dara.Model {
6
+ /**
7
+ * @example
8
+ * NMjvQanQgplBSaEI0sL86WnQplB
9
+ */
10
+ callbackToken?: string;
11
+ /**
12
+ * @example
13
+ * https://www.aliyun.com
14
+ */
15
+ callbackUrl?: string;
16
+ /**
17
+ * @remarks
18
+ * This parameter is required.
19
+ *
20
+ * @example
21
+ * 1
22
+ */
23
+ cardPageNumber?: string;
24
+ /**
25
+ * @remarks
26
+ * This parameter is required.
27
+ *
28
+ * @example
29
+ * IDENTITY_CARD
30
+ */
31
+ cardType?: string;
32
+ /**
33
+ * @example
34
+ * shoot
35
+ */
36
+ docScanMode?: string;
37
+ /**
38
+ * @remarks
39
+ * This parameter is required.
40
+ *
41
+ * @example
42
+ * e0c34a77f5ac40a5aa5e6ed20c35****
43
+ */
44
+ merchantBizId?: string;
45
+ /**
46
+ * @remarks
47
+ * This parameter is required.
48
+ *
49
+ * @example
50
+ * {"zimVer":"3.0.0","appVersion": "1","bioMetaInfo": "4.1.0:1150****,0","appName": "com.aliyun.antcloudauth","deviceType": "ios","osVersion": "iOS 10.3.2","apdidToken": "","deviceModel": "iPhone9,1"}
51
+ */
52
+ metaInfo?: string;
53
+ /**
54
+ * @remarks
55
+ * This parameter is required.
56
+ *
57
+ * @example
58
+ * OCR_VERIFY
59
+ */
60
+ model?: string;
61
+ /**
62
+ * @remarks
63
+ * This parameter is required.
64
+ *
65
+ * @example
66
+ * T
67
+ */
68
+ pictureSave?: string;
69
+ /**
70
+ * @remarks
71
+ * This parameter is required.
72
+ *
73
+ * @example
74
+ * ID_2_META
75
+ */
76
+ verifyMeta?: string;
77
+ static names(): { [key: string]: string } {
78
+ return {
79
+ callbackToken: 'CallbackToken',
80
+ callbackUrl: 'CallbackUrl',
81
+ cardPageNumber: 'CardPageNumber',
82
+ cardType: 'CardType',
83
+ docScanMode: 'DocScanMode',
84
+ merchantBizId: 'MerchantBizId',
85
+ metaInfo: 'MetaInfo',
86
+ model: 'Model',
87
+ pictureSave: 'PictureSave',
88
+ verifyMeta: 'VerifyMeta',
89
+ };
90
+ }
91
+
92
+ static types(): { [key: string]: any } {
93
+ return {
94
+ callbackToken: 'string',
95
+ callbackUrl: 'string',
96
+ cardPageNumber: 'string',
97
+ cardType: 'string',
98
+ docScanMode: 'string',
99
+ merchantBizId: 'string',
100
+ metaInfo: 'string',
101
+ model: 'string',
102
+ pictureSave: 'string',
103
+ verifyMeta: 'string',
104
+ };
105
+ }
106
+
107
+ validate() {
108
+ super.validate();
109
+ }
110
+
111
+ constructor(map?: { [key: string]: any }) {
112
+ super(map);
113
+ }
114
+ }
115
+
@@ -0,0 +1,40 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { InitCardVerifyResponseBody } from "./InitCardVerifyResponseBody";
4
+
5
+
6
+ export class InitCardVerifyResponse extends $dara.Model {
7
+ headers?: { [key: string]: string };
8
+ statusCode?: number;
9
+ body?: InitCardVerifyResponseBody;
10
+ static names(): { [key: string]: string } {
11
+ return {
12
+ headers: 'headers',
13
+ statusCode: 'statusCode',
14
+ body: 'body',
15
+ };
16
+ }
17
+
18
+ static types(): { [key: string]: any } {
19
+ return {
20
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
21
+ statusCode: 'number',
22
+ body: InitCardVerifyResponseBody,
23
+ };
24
+ }
25
+
26
+ validate() {
27
+ if(this.headers) {
28
+ $dara.Model.validateMap(this.headers);
29
+ }
30
+ if(this.body && typeof (this.body as any).validate === 'function') {
31
+ (this.body as any).validate();
32
+ }
33
+ super.validate();
34
+ }
35
+
36
+ constructor(map?: { [key: string]: any }) {
37
+ super(map);
38
+ }
39
+ }
40
+
@@ -0,0 +1,52 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { InitCardVerifyResponseBodyResultObject } from "./InitCardVerifyResponseBodyResultObject";
4
+
5
+
6
+ export class InitCardVerifyResponseBody extends $dara.Model {
7
+ /**
8
+ * @example
9
+ * 200
10
+ */
11
+ code?: string;
12
+ /**
13
+ * @example
14
+ * success
15
+ */
16
+ message?: string;
17
+ /**
18
+ * @example
19
+ * 130A2C10-B9EE-4D84-88E3-5384FF039795
20
+ */
21
+ requestId?: string;
22
+ resultObject?: InitCardVerifyResponseBodyResultObject;
23
+ static names(): { [key: string]: string } {
24
+ return {
25
+ code: 'Code',
26
+ message: 'Message',
27
+ requestId: 'RequestId',
28
+ resultObject: 'ResultObject',
29
+ };
30
+ }
31
+
32
+ static types(): { [key: string]: any } {
33
+ return {
34
+ code: 'string',
35
+ message: 'string',
36
+ requestId: 'string',
37
+ resultObject: InitCardVerifyResponseBodyResultObject,
38
+ };
39
+ }
40
+
41
+ validate() {
42
+ if(this.resultObject && typeof (this.resultObject as any).validate === 'function') {
43
+ (this.resultObject as any).validate();
44
+ }
45
+ super.validate();
46
+ }
47
+
48
+ constructor(map?: { [key: string]: any }) {
49
+ super(map);
50
+ }
51
+ }
52
+
@@ -0,0 +1,31 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class InitCardVerifyResponseBodyResultObject extends $dara.Model {
6
+ /**
7
+ * @example
8
+ * 91707dc296d469ad38e4c5efa6a0****
9
+ */
10
+ certifyId?: string;
11
+ static names(): { [key: string]: string } {
12
+ return {
13
+ certifyId: 'CertifyId',
14
+ };
15
+ }
16
+
17
+ static types(): { [key: string]: any } {
18
+ return {
19
+ certifyId: 'string',
20
+ };
21
+ }
22
+
23
+ validate() {
24
+ super.validate();
25
+ }
26
+
27
+ constructor(map?: { [key: string]: any }) {
28
+ super(map);
29
+ }
30
+ }
31
+
@@ -3,6 +3,7 @@ export { BankMetaVerifyResponseBodyResultObject } from './BankMetaVerifyResponse
3
3
  export { CompareFaceVerifyResponseBodyResultObject } from './CompareFaceVerifyResponseBodyResultObject';
4
4
  export { CompareFacesResponseBodyData } from './CompareFacesResponseBodyData';
5
5
  export { ContrastFaceVerifyResponseBodyResultObject } from './ContrastFaceVerifyResponseBodyResultObject';
6
+ export { CredentialProductVerifyV2ResponseBodyResultObject } from './CredentialProductVerifyV2responseBodyResultObject';
6
7
  export { CredentialVerifyRequestMerchantDetail } from './CredentialVerifyRequestMerchantDetail';
7
8
  export { CredentialVerifyResponseBodyResultObjectVlResult } from './CredentialVerifyResponseBodyResultObjectVlResult';
8
9
  export { CredentialVerifyResponseBodyResultObject } from './CredentialVerifyResponseBodyResultObject';
@@ -12,6 +13,7 @@ export { CredentialVerifyV2ResponseBodyResultObjectVlResult } from './Credential
12
13
  export { CredentialVerifyV2ResponseBodyResultObject } from './CredentialVerifyV2responseBodyResultObject';
13
14
  export { DeepfakeDetectResponseBodyResultObject } from './DeepfakeDetectResponseBodyResultObject';
14
15
  export { DeleteFaceVerifyResultResponseBodyResultObject } from './DeleteFaceVerifyResultResponseBodyResultObject';
16
+ export { DescribeCardVerifyResponseBodyResultObject } from './DescribeCardVerifyResponseBodyResultObject';
15
17
  export { DescribeDeviceInfoResponseBodyDeviceInfoListDeviceInfo } from './DescribeDeviceInfoResponseBodyDeviceInfoListDeviceInfo';
16
18
  export { DescribeDeviceInfoResponseBodyDeviceInfoList } from './DescribeDeviceInfoResponseBodyDeviceInfoList';
17
19
  export { DescribeFaceGuardRiskResponseBodyResultObject } from './DescribeFaceGuardRiskResponseBodyResultObject';
@@ -33,6 +35,7 @@ export { Id2MetaPeriodVerifyResponseBodyResultObject } from './Id2metaPeriodVeri
33
35
  export { Id2MetaStandardVerifyResponseBodyResultObject } from './Id2metaStandardVerifyResponseBodyResultObject';
34
36
  export { Id2MetaVerifyResponseBodyResultObject } from './Id2metaVerifyResponseBodyResultObject';
35
37
  export { Id2MetaVerifyWithOCRResponseBodyResultObject } from './Id2metaVerifyWithOcrresponseBodyResultObject';
38
+ export { InitCardVerifyResponseBodyResultObject } from './InitCardVerifyResponseBodyResultObject';
36
39
  export { InitFaceVerifyResponseBodyResultObject } from './InitFaceVerifyResponseBodyResultObject';
37
40
  export { LivenessFaceVerifyResponseBodyResultObject } from './LivenessFaceVerifyResponseBodyResultObject';
38
41
  export { Mobile2MetaVerifyResponseBodyResultObject } from './Mobile2metaVerifyResponseBodyResultObject';
@@ -74,6 +77,10 @@ export { CreateAuthKeyResponse } from './CreateAuthKeyResponse';
74
77
  export { CreateVerifySettingRequest } from './CreateVerifySettingRequest';
75
78
  export { CreateVerifySettingResponseBody } from './CreateVerifySettingResponseBody';
76
79
  export { CreateVerifySettingResponse } from './CreateVerifySettingResponse';
80
+ export { CredentialProductVerifyV2Request } from './CredentialProductVerifyV2request';
81
+ export { CredentialProductVerifyV2AdvanceRequest } from './CredentialProductVerifyV2advanceRequest';
82
+ export { CredentialProductVerifyV2ResponseBody } from './CredentialProductVerifyV2responseBody';
83
+ export { CredentialProductVerifyV2Response } from './CredentialProductVerifyV2response';
77
84
  export { CredentialVerifyRequest } from './CredentialVerifyRequest';
78
85
  export { CredentialVerifyShrinkRequest } from './CredentialVerifyShrinkRequest';
79
86
  export { CredentialVerifyResponseBody } from './CredentialVerifyResponseBody';
@@ -89,6 +96,9 @@ export { DeepfakeDetectResponse } from './DeepfakeDetectResponse';
89
96
  export { DeleteFaceVerifyResultRequest } from './DeleteFaceVerifyResultRequest';
90
97
  export { DeleteFaceVerifyResultResponseBody } from './DeleteFaceVerifyResultResponseBody';
91
98
  export { DeleteFaceVerifyResultResponse } from './DeleteFaceVerifyResultResponse';
99
+ export { DescribeCardVerifyRequest } from './DescribeCardVerifyRequest';
100
+ export { DescribeCardVerifyResponseBody } from './DescribeCardVerifyResponseBody';
101
+ export { DescribeCardVerifyResponse } from './DescribeCardVerifyResponse';
92
102
  export { DescribeDeviceInfoRequest } from './DescribeDeviceInfoRequest';
93
103
  export { DescribeDeviceInfoResponseBody } from './DescribeDeviceInfoResponseBody';
94
104
  export { DescribeDeviceInfoResponse } from './DescribeDeviceInfoResponse';
@@ -131,6 +141,9 @@ export { Id2MetaVerifyWithOCRRequest } from './Id2metaVerifyWithOcrrequest';
131
141
  export { Id2MetaVerifyWithOCRAdvanceRequest } from './Id2metaVerifyWithOcradvanceRequest';
132
142
  export { Id2MetaVerifyWithOCRResponseBody } from './Id2metaVerifyWithOcrresponseBody';
133
143
  export { Id2MetaVerifyWithOCRResponse } from './Id2metaVerifyWithOcrresponse';
144
+ export { InitCardVerifyRequest } from './InitCardVerifyRequest';
145
+ export { InitCardVerifyResponseBody } from './InitCardVerifyResponseBody';
146
+ export { InitCardVerifyResponse } from './InitCardVerifyResponse';
134
147
  export { InitFaceVerifyRequest } from './InitFaceVerifyRequest';
135
148
  export { InitFaceVerifyResponseBody } from './InitFaceVerifyResponseBody';
136
149
  export { InitFaceVerifyResponse } from './InitFaceVerifyResponse';