@antchain/riskplus 1.19.12 → 1.19.14
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 +19 -0
- package/dist/client.js +33 -2
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +50 -1
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -2192,6 +2192,51 @@ export class RpcommonResp extends $tea.Model {
|
|
|
2192
2192
|
}
|
|
2193
2193
|
}
|
|
2194
2194
|
|
|
2195
|
+
// 客户信息结果
|
|
2196
|
+
export class CustomInfoResult extends $tea.Model {
|
|
2197
|
+
// 社会信用代码
|
|
2198
|
+
creditCode: string;
|
|
2199
|
+
// 公司名称
|
|
2200
|
+
companyName: string;
|
|
2201
|
+
// 法人姓名
|
|
2202
|
+
legalName: string;
|
|
2203
|
+
// 身份证号
|
|
2204
|
+
idCard: string;
|
|
2205
|
+
// 手机号
|
|
2206
|
+
phoneNumber: string;
|
|
2207
|
+
// 账号
|
|
2208
|
+
account: string;
|
|
2209
|
+
// 密码
|
|
2210
|
+
password: string;
|
|
2211
|
+
static names(): { [key: string]: string } {
|
|
2212
|
+
return {
|
|
2213
|
+
creditCode: 'credit_code',
|
|
2214
|
+
companyName: 'company_name',
|
|
2215
|
+
legalName: 'legal_name',
|
|
2216
|
+
idCard: 'id_card',
|
|
2217
|
+
phoneNumber: 'phone_number',
|
|
2218
|
+
account: 'account',
|
|
2219
|
+
password: 'password',
|
|
2220
|
+
};
|
|
2221
|
+
}
|
|
2222
|
+
|
|
2223
|
+
static types(): { [key: string]: any } {
|
|
2224
|
+
return {
|
|
2225
|
+
creditCode: 'string',
|
|
2226
|
+
companyName: 'string',
|
|
2227
|
+
legalName: 'string',
|
|
2228
|
+
idCard: 'string',
|
|
2229
|
+
phoneNumber: 'string',
|
|
2230
|
+
account: 'string',
|
|
2231
|
+
password: 'string',
|
|
2232
|
+
};
|
|
2233
|
+
}
|
|
2234
|
+
|
|
2235
|
+
constructor(map?: { [key: string]: any }) {
|
|
2236
|
+
super(map);
|
|
2237
|
+
}
|
|
2238
|
+
}
|
|
2239
|
+
|
|
2195
2240
|
// 标签图片
|
|
2196
2241
|
export class RtopTagImage extends $tea.Model {
|
|
2197
2242
|
// 标签图片表主键
|
|
@@ -13384,11 +13429,14 @@ export class GetRbbCustomerInformationResponse extends $tea.Model {
|
|
|
13384
13429
|
resultCode?: string;
|
|
13385
13430
|
// 异常信息的文本描述
|
|
13386
13431
|
resultMsg?: string;
|
|
13432
|
+
// 客户信息结果数据
|
|
13433
|
+
resultData?: string;
|
|
13387
13434
|
static names(): { [key: string]: string } {
|
|
13388
13435
|
return {
|
|
13389
13436
|
reqMsgId: 'req_msg_id',
|
|
13390
13437
|
resultCode: 'result_code',
|
|
13391
13438
|
resultMsg: 'result_msg',
|
|
13439
|
+
resultData: 'result_data',
|
|
13392
13440
|
};
|
|
13393
13441
|
}
|
|
13394
13442
|
|
|
@@ -13397,6 +13445,7 @@ export class GetRbbCustomerInformationResponse extends $tea.Model {
|
|
|
13397
13445
|
reqMsgId: 'string',
|
|
13398
13446
|
resultCode: 'string',
|
|
13399
13447
|
resultMsg: 'string',
|
|
13448
|
+
resultData: 'string',
|
|
13400
13449
|
};
|
|
13401
13450
|
}
|
|
13402
13451
|
|
|
@@ -19633,7 +19682,7 @@ export default class Client {
|
|
|
19633
19682
|
req_msg_id: AntchainUtil.getNonce(),
|
|
19634
19683
|
access_key: this._accessKeyId,
|
|
19635
19684
|
base_sdk_version: "TeaSDK-2.0",
|
|
19636
|
-
sdk_version: "1.19.
|
|
19685
|
+
sdk_version: "1.19.14",
|
|
19637
19686
|
_prod_code: "RISKPLUS",
|
|
19638
19687
|
_prod_channel: "undefined",
|
|
19639
19688
|
};
|