@antchain/riskplus 1.12.17 → 1.13.3
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 +377 -16
- package/dist/client.js +559 -26
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +847 -110
package/dist/client.js
CHANGED
|
@@ -205,6 +205,25 @@ class DecisionFlow extends $tea.Model {
|
|
|
205
205
|
}
|
|
206
206
|
}
|
|
207
207
|
exports.DecisionFlow = DecisionFlow;
|
|
208
|
+
// 回流事件记录属性项
|
|
209
|
+
class BackflowEventRecordProperty extends $tea.Model {
|
|
210
|
+
constructor(map) {
|
|
211
|
+
super(map);
|
|
212
|
+
}
|
|
213
|
+
static names() {
|
|
214
|
+
return {
|
|
215
|
+
key: 'key',
|
|
216
|
+
value: 'value',
|
|
217
|
+
};
|
|
218
|
+
}
|
|
219
|
+
static types() {
|
|
220
|
+
return {
|
|
221
|
+
key: 'string',
|
|
222
|
+
value: 'string',
|
|
223
|
+
};
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
exports.BackflowEventRecordProperty = BackflowEventRecordProperty;
|
|
208
227
|
// 营销盾批量查询单条结果
|
|
209
228
|
class BaseCustomerUmktInfoModel extends $tea.Model {
|
|
210
229
|
constructor(map) {
|
|
@@ -428,6 +447,25 @@ class RuleDetail extends $tea.Model {
|
|
|
428
447
|
}
|
|
429
448
|
}
|
|
430
449
|
exports.RuleDetail = RuleDetail;
|
|
450
|
+
// 回调通用返回体
|
|
451
|
+
class CommonNotyfyResult extends $tea.Model {
|
|
452
|
+
constructor(map) {
|
|
453
|
+
super(map);
|
|
454
|
+
}
|
|
455
|
+
static names() {
|
|
456
|
+
return {
|
|
457
|
+
requestId: 'request_id',
|
|
458
|
+
bizResponse: 'biz_response',
|
|
459
|
+
};
|
|
460
|
+
}
|
|
461
|
+
static types() {
|
|
462
|
+
return {
|
|
463
|
+
requestId: 'string',
|
|
464
|
+
bizResponse: 'string',
|
|
465
|
+
};
|
|
466
|
+
}
|
|
467
|
+
}
|
|
468
|
+
exports.CommonNotyfyResult = CommonNotyfyResult;
|
|
431
469
|
// 安全场景参数
|
|
432
470
|
class SecurityScene extends $tea.Model {
|
|
433
471
|
constructor(map) {
|
|
@@ -684,6 +722,25 @@ class UpdateCustomerRelationResponseData extends $tea.Model {
|
|
|
684
722
|
}
|
|
685
723
|
}
|
|
686
724
|
exports.UpdateCustomerRelationResponseData = UpdateCustomerRelationResponseData;
|
|
725
|
+
// 回流事件记录
|
|
726
|
+
class BackflowEventRecord extends $tea.Model {
|
|
727
|
+
constructor(map) {
|
|
728
|
+
super(map);
|
|
729
|
+
}
|
|
730
|
+
static names() {
|
|
731
|
+
return {
|
|
732
|
+
groupCode: 'group_code',
|
|
733
|
+
properties: 'properties',
|
|
734
|
+
};
|
|
735
|
+
}
|
|
736
|
+
static types() {
|
|
737
|
+
return {
|
|
738
|
+
groupCode: 'string',
|
|
739
|
+
properties: { 'type': 'array', 'itemType': BackflowEventRecordProperty },
|
|
740
|
+
};
|
|
741
|
+
}
|
|
742
|
+
}
|
|
743
|
+
exports.BackflowEventRecord = BackflowEventRecord;
|
|
687
744
|
// 风险维度
|
|
688
745
|
class RtopCompanyRiskFactor extends $tea.Model {
|
|
689
746
|
constructor(map) {
|
|
@@ -1137,29 +1194,6 @@ class ZhimaQueryResp extends $tea.Model {
|
|
|
1137
1194
|
}
|
|
1138
1195
|
}
|
|
1139
1196
|
exports.ZhimaQueryResp = ZhimaQueryResp;
|
|
1140
|
-
// 企业信息详情
|
|
1141
|
-
class BusinessDetail extends $tea.Model {
|
|
1142
|
-
constructor(map) {
|
|
1143
|
-
super(map);
|
|
1144
|
-
}
|
|
1145
|
-
static names() {
|
|
1146
|
-
return {
|
|
1147
|
-
operatingAddrJson: 'operating_addr_json',
|
|
1148
|
-
ucCode: 'uc_code',
|
|
1149
|
-
registerDate: 'register_date',
|
|
1150
|
-
addressDetail: 'address_detail',
|
|
1151
|
-
};
|
|
1152
|
-
}
|
|
1153
|
-
static types() {
|
|
1154
|
-
return {
|
|
1155
|
-
operatingAddrJson: 'string',
|
|
1156
|
-
ucCode: 'string',
|
|
1157
|
-
registerDate: 'string',
|
|
1158
|
-
addressDetail: 'string',
|
|
1159
|
-
};
|
|
1160
|
-
}
|
|
1161
|
-
}
|
|
1162
|
-
exports.BusinessDetail = BusinessDetail;
|
|
1163
1197
|
// 机构平台通知响应结果
|
|
1164
1198
|
class DefinInnerChannelNotifyResult extends $tea.Model {
|
|
1165
1199
|
constructor(map) {
|
|
@@ -1307,6 +1341,31 @@ class StrategyDetails extends $tea.Model {
|
|
|
1307
1341
|
}
|
|
1308
1342
|
}
|
|
1309
1343
|
exports.StrategyDetails = StrategyDetails;
|
|
1344
|
+
// 支付方式锁定结果
|
|
1345
|
+
class PayMethodLockResult extends $tea.Model {
|
|
1346
|
+
constructor(map) {
|
|
1347
|
+
super(map);
|
|
1348
|
+
}
|
|
1349
|
+
static names() {
|
|
1350
|
+
return {
|
|
1351
|
+
signStatus: 'sign_status',
|
|
1352
|
+
accountId: 'account_id',
|
|
1353
|
+
loginId: 'login_id',
|
|
1354
|
+
payChannel: 'pay_channel',
|
|
1355
|
+
accountName: 'account_name',
|
|
1356
|
+
};
|
|
1357
|
+
}
|
|
1358
|
+
static types() {
|
|
1359
|
+
return {
|
|
1360
|
+
signStatus: 'string',
|
|
1361
|
+
accountId: 'string',
|
|
1362
|
+
loginId: 'string',
|
|
1363
|
+
payChannel: 'string',
|
|
1364
|
+
accountName: 'string',
|
|
1365
|
+
};
|
|
1366
|
+
}
|
|
1367
|
+
}
|
|
1368
|
+
exports.PayMethodLockResult = PayMethodLockResult;
|
|
1310
1369
|
// 反欺诈风险数据服务决策结果
|
|
1311
1370
|
class SecurityResultInfos extends $tea.Model {
|
|
1312
1371
|
constructor(map) {
|
|
@@ -1797,6 +1856,27 @@ class RtopCompanyOpinionCount extends $tea.Model {
|
|
|
1797
1856
|
}
|
|
1798
1857
|
}
|
|
1799
1858
|
exports.RtopCompanyOpinionCount = RtopCompanyOpinionCount;
|
|
1859
|
+
// 商户资金链锁定结果
|
|
1860
|
+
class FundChainLockResult extends $tea.Model {
|
|
1861
|
+
constructor(map) {
|
|
1862
|
+
super(map);
|
|
1863
|
+
}
|
|
1864
|
+
static names() {
|
|
1865
|
+
return {
|
|
1866
|
+
name: 'name',
|
|
1867
|
+
id: 'id',
|
|
1868
|
+
status: 'status',
|
|
1869
|
+
};
|
|
1870
|
+
}
|
|
1871
|
+
static types() {
|
|
1872
|
+
return {
|
|
1873
|
+
name: 'string',
|
|
1874
|
+
id: 'string',
|
|
1875
|
+
status: 'string',
|
|
1876
|
+
};
|
|
1877
|
+
}
|
|
1878
|
+
}
|
|
1879
|
+
exports.FundChainLockResult = FundChainLockResult;
|
|
1800
1880
|
// 企业地区分布统计
|
|
1801
1881
|
class RtopRegionalDistribution extends $tea.Model {
|
|
1802
1882
|
constructor(map) {
|
|
@@ -4199,6 +4279,7 @@ class QueryDubbridgeAccountStatusRequest extends $tea.Model {
|
|
|
4199
4279
|
productInstanceId: 'product_instance_id',
|
|
4200
4280
|
customNo: 'custom_no',
|
|
4201
4281
|
openId: 'open_id',
|
|
4282
|
+
bizType: 'biz_type',
|
|
4202
4283
|
};
|
|
4203
4284
|
}
|
|
4204
4285
|
static types() {
|
|
@@ -4207,6 +4288,7 @@ class QueryDubbridgeAccountStatusRequest extends $tea.Model {
|
|
|
4207
4288
|
productInstanceId: 'string',
|
|
4208
4289
|
customNo: 'string',
|
|
4209
4290
|
openId: 'string',
|
|
4291
|
+
bizType: 'string',
|
|
4210
4292
|
};
|
|
4211
4293
|
}
|
|
4212
4294
|
}
|
|
@@ -4221,6 +4303,8 @@ class QueryDubbridgeAccountStatusResponse extends $tea.Model {
|
|
|
4221
4303
|
resultCode: 'result_code',
|
|
4222
4304
|
resultMsg: 'result_msg',
|
|
4223
4305
|
data: 'data',
|
|
4306
|
+
payMethodLockResult: 'pay_method_lock_result',
|
|
4307
|
+
fundChainLockResult: 'fund_chain_lock_result',
|
|
4224
4308
|
};
|
|
4225
4309
|
}
|
|
4226
4310
|
static types() {
|
|
@@ -4229,6 +4313,8 @@ class QueryDubbridgeAccountStatusResponse extends $tea.Model {
|
|
|
4229
4313
|
resultCode: 'string',
|
|
4230
4314
|
resultMsg: 'string',
|
|
4231
4315
|
data: CustomStatus,
|
|
4316
|
+
payMethodLockResult: PayMethodLockResult,
|
|
4317
|
+
fundChainLockResult: { 'type': 'array', 'itemType': FundChainLockResult },
|
|
4232
4318
|
};
|
|
4233
4319
|
}
|
|
4234
4320
|
}
|
|
@@ -5013,7 +5099,7 @@ class QueryDubbridgeCustomerCommonagreementsignRequest extends $tea.Model {
|
|
|
5013
5099
|
productInstanceId: 'product_instance_id',
|
|
5014
5100
|
orderNo: 'order_no',
|
|
5015
5101
|
customNo: 'custom_no',
|
|
5016
|
-
|
|
5102
|
+
fundCode: 'fund_code',
|
|
5017
5103
|
};
|
|
5018
5104
|
}
|
|
5019
5105
|
static types() {
|
|
@@ -5022,7 +5108,7 @@ class QueryDubbridgeCustomerCommonagreementsignRequest extends $tea.Model {
|
|
|
5022
5108
|
productInstanceId: 'string',
|
|
5023
5109
|
orderNo: 'string',
|
|
5024
5110
|
customNo: 'string',
|
|
5025
|
-
|
|
5111
|
+
fundCode: 'string',
|
|
5026
5112
|
};
|
|
5027
5113
|
}
|
|
5028
5114
|
}
|
|
@@ -5157,6 +5243,138 @@ class UpdateDubbridgeFileResponse extends $tea.Model {
|
|
|
5157
5243
|
}
|
|
5158
5244
|
}
|
|
5159
5245
|
exports.UpdateDubbridgeFileResponse = UpdateDubbridgeFileResponse;
|
|
5246
|
+
class QueryDubbridgeCreditUrlRequest extends $tea.Model {
|
|
5247
|
+
constructor(map) {
|
|
5248
|
+
super(map);
|
|
5249
|
+
}
|
|
5250
|
+
static names() {
|
|
5251
|
+
return {
|
|
5252
|
+
authToken: 'auth_token',
|
|
5253
|
+
productInstanceId: 'product_instance_id',
|
|
5254
|
+
};
|
|
5255
|
+
}
|
|
5256
|
+
static types() {
|
|
5257
|
+
return {
|
|
5258
|
+
authToken: 'string',
|
|
5259
|
+
productInstanceId: 'string',
|
|
5260
|
+
};
|
|
5261
|
+
}
|
|
5262
|
+
}
|
|
5263
|
+
exports.QueryDubbridgeCreditUrlRequest = QueryDubbridgeCreditUrlRequest;
|
|
5264
|
+
class QueryDubbridgeCreditUrlResponse extends $tea.Model {
|
|
5265
|
+
constructor(map) {
|
|
5266
|
+
super(map);
|
|
5267
|
+
}
|
|
5268
|
+
static names() {
|
|
5269
|
+
return {
|
|
5270
|
+
reqMsgId: 'req_msg_id',
|
|
5271
|
+
resultCode: 'result_code',
|
|
5272
|
+
resultMsg: 'result_msg',
|
|
5273
|
+
};
|
|
5274
|
+
}
|
|
5275
|
+
static types() {
|
|
5276
|
+
return {
|
|
5277
|
+
reqMsgId: 'string',
|
|
5278
|
+
resultCode: 'string',
|
|
5279
|
+
resultMsg: 'string',
|
|
5280
|
+
};
|
|
5281
|
+
}
|
|
5282
|
+
}
|
|
5283
|
+
exports.QueryDubbridgeCreditUrlResponse = QueryDubbridgeCreditUrlResponse;
|
|
5284
|
+
class QueryDubbridgeBusinessDetailRequest extends $tea.Model {
|
|
5285
|
+
constructor(map) {
|
|
5286
|
+
super(map);
|
|
5287
|
+
}
|
|
5288
|
+
static names() {
|
|
5289
|
+
return {
|
|
5290
|
+
authToken: 'auth_token',
|
|
5291
|
+
productInstanceId: 'product_instance_id',
|
|
5292
|
+
keyword: 'keyword',
|
|
5293
|
+
};
|
|
5294
|
+
}
|
|
5295
|
+
static types() {
|
|
5296
|
+
return {
|
|
5297
|
+
authToken: 'string',
|
|
5298
|
+
productInstanceId: 'string',
|
|
5299
|
+
keyword: 'string',
|
|
5300
|
+
};
|
|
5301
|
+
}
|
|
5302
|
+
}
|
|
5303
|
+
exports.QueryDubbridgeBusinessDetailRequest = QueryDubbridgeBusinessDetailRequest;
|
|
5304
|
+
class QueryDubbridgeBusinessDetailResponse extends $tea.Model {
|
|
5305
|
+
constructor(map) {
|
|
5306
|
+
super(map);
|
|
5307
|
+
}
|
|
5308
|
+
static names() {
|
|
5309
|
+
return {
|
|
5310
|
+
reqMsgId: 'req_msg_id',
|
|
5311
|
+
resultCode: 'result_code',
|
|
5312
|
+
resultMsg: 'result_msg',
|
|
5313
|
+
ucCode: 'uc_code',
|
|
5314
|
+
registerDate: 'register_date',
|
|
5315
|
+
operatingAddrJson: 'operating_addr_json',
|
|
5316
|
+
addressDetail: 'address_detail',
|
|
5317
|
+
};
|
|
5318
|
+
}
|
|
5319
|
+
static types() {
|
|
5320
|
+
return {
|
|
5321
|
+
reqMsgId: 'string',
|
|
5322
|
+
resultCode: 'string',
|
|
5323
|
+
resultMsg: 'string',
|
|
5324
|
+
ucCode: 'string',
|
|
5325
|
+
registerDate: 'string',
|
|
5326
|
+
operatingAddrJson: 'string',
|
|
5327
|
+
addressDetail: 'string',
|
|
5328
|
+
};
|
|
5329
|
+
}
|
|
5330
|
+
}
|
|
5331
|
+
exports.QueryDubbridgeBusinessDetailResponse = QueryDubbridgeBusinessDetailResponse;
|
|
5332
|
+
class NotifyDubbridgeCallbackRequest extends $tea.Model {
|
|
5333
|
+
constructor(map) {
|
|
5334
|
+
super(map);
|
|
5335
|
+
}
|
|
5336
|
+
static names() {
|
|
5337
|
+
return {
|
|
5338
|
+
authToken: 'auth_token',
|
|
5339
|
+
productInstanceId: 'product_instance_id',
|
|
5340
|
+
channelCode: 'channel_code',
|
|
5341
|
+
bizParam: 'biz_param',
|
|
5342
|
+
bizType: 'biz_type',
|
|
5343
|
+
};
|
|
5344
|
+
}
|
|
5345
|
+
static types() {
|
|
5346
|
+
return {
|
|
5347
|
+
authToken: 'string',
|
|
5348
|
+
productInstanceId: 'string',
|
|
5349
|
+
channelCode: 'string',
|
|
5350
|
+
bizParam: 'string',
|
|
5351
|
+
bizType: 'string',
|
|
5352
|
+
};
|
|
5353
|
+
}
|
|
5354
|
+
}
|
|
5355
|
+
exports.NotifyDubbridgeCallbackRequest = NotifyDubbridgeCallbackRequest;
|
|
5356
|
+
class NotifyDubbridgeCallbackResponse extends $tea.Model {
|
|
5357
|
+
constructor(map) {
|
|
5358
|
+
super(map);
|
|
5359
|
+
}
|
|
5360
|
+
static names() {
|
|
5361
|
+
return {
|
|
5362
|
+
reqMsgId: 'req_msg_id',
|
|
5363
|
+
resultCode: 'result_code',
|
|
5364
|
+
resultMsg: 'result_msg',
|
|
5365
|
+
data: 'data',
|
|
5366
|
+
};
|
|
5367
|
+
}
|
|
5368
|
+
static types() {
|
|
5369
|
+
return {
|
|
5370
|
+
reqMsgId: 'string',
|
|
5371
|
+
resultCode: 'string',
|
|
5372
|
+
resultMsg: 'string',
|
|
5373
|
+
data: CommonNotyfyResult,
|
|
5374
|
+
};
|
|
5375
|
+
}
|
|
5376
|
+
}
|
|
5377
|
+
exports.NotifyDubbridgeCallbackResponse = NotifyDubbridgeCallbackResponse;
|
|
5160
5378
|
class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
|
|
5161
5379
|
constructor(map) {
|
|
5162
5380
|
super(map);
|
|
@@ -8341,6 +8559,202 @@ class CancelUmktDataaccessOfflinetaskResponse extends $tea.Model {
|
|
|
8341
8559
|
}
|
|
8342
8560
|
}
|
|
8343
8561
|
exports.CancelUmktDataaccessOfflinetaskResponse = CancelUmktDataaccessOfflinetaskResponse;
|
|
8562
|
+
class QueryUmktRtMarketingRequest extends $tea.Model {
|
|
8563
|
+
constructor(map) {
|
|
8564
|
+
super(map);
|
|
8565
|
+
}
|
|
8566
|
+
static names() {
|
|
8567
|
+
return {
|
|
8568
|
+
authToken: 'auth_token',
|
|
8569
|
+
productInstanceId: 'product_instance_id',
|
|
8570
|
+
sceneStrategyId: 'scene_strategy_id',
|
|
8571
|
+
queryTemplate: 'query_template',
|
|
8572
|
+
customerKey: 'customer_key',
|
|
8573
|
+
bizSerialNo: 'biz_serial_no',
|
|
8574
|
+
};
|
|
8575
|
+
}
|
|
8576
|
+
static types() {
|
|
8577
|
+
return {
|
|
8578
|
+
authToken: 'string',
|
|
8579
|
+
productInstanceId: 'string',
|
|
8580
|
+
sceneStrategyId: 'number',
|
|
8581
|
+
queryTemplate: 'string',
|
|
8582
|
+
customerKey: 'string',
|
|
8583
|
+
bizSerialNo: 'string',
|
|
8584
|
+
};
|
|
8585
|
+
}
|
|
8586
|
+
}
|
|
8587
|
+
exports.QueryUmktRtMarketingRequest = QueryUmktRtMarketingRequest;
|
|
8588
|
+
class QueryUmktRtMarketingResponse extends $tea.Model {
|
|
8589
|
+
constructor(map) {
|
|
8590
|
+
super(map);
|
|
8591
|
+
}
|
|
8592
|
+
static names() {
|
|
8593
|
+
return {
|
|
8594
|
+
reqMsgId: 'req_msg_id',
|
|
8595
|
+
resultCode: 'result_code',
|
|
8596
|
+
resultMsg: 'result_msg',
|
|
8597
|
+
queryResult: 'query_result',
|
|
8598
|
+
};
|
|
8599
|
+
}
|
|
8600
|
+
static types() {
|
|
8601
|
+
return {
|
|
8602
|
+
reqMsgId: 'string',
|
|
8603
|
+
resultCode: 'string',
|
|
8604
|
+
resultMsg: 'string',
|
|
8605
|
+
queryResult: CustomerUmktInfoModel,
|
|
8606
|
+
};
|
|
8607
|
+
}
|
|
8608
|
+
}
|
|
8609
|
+
exports.QueryUmktRtMarketingResponse = QueryUmktRtMarketingResponse;
|
|
8610
|
+
class PushUmktBackflowEventRequest extends $tea.Model {
|
|
8611
|
+
constructor(map) {
|
|
8612
|
+
super(map);
|
|
8613
|
+
}
|
|
8614
|
+
static names() {
|
|
8615
|
+
return {
|
|
8616
|
+
authToken: 'auth_token',
|
|
8617
|
+
productInstanceId: 'product_instance_id',
|
|
8618
|
+
eventId: 'event_id',
|
|
8619
|
+
eventRecords: 'event_records',
|
|
8620
|
+
};
|
|
8621
|
+
}
|
|
8622
|
+
static types() {
|
|
8623
|
+
return {
|
|
8624
|
+
authToken: 'string',
|
|
8625
|
+
productInstanceId: 'string',
|
|
8626
|
+
eventId: 'number',
|
|
8627
|
+
eventRecords: { 'type': 'array', 'itemType': BackflowEventRecord },
|
|
8628
|
+
};
|
|
8629
|
+
}
|
|
8630
|
+
}
|
|
8631
|
+
exports.PushUmktBackflowEventRequest = PushUmktBackflowEventRequest;
|
|
8632
|
+
class PushUmktBackflowEventResponse extends $tea.Model {
|
|
8633
|
+
constructor(map) {
|
|
8634
|
+
super(map);
|
|
8635
|
+
}
|
|
8636
|
+
static names() {
|
|
8637
|
+
return {
|
|
8638
|
+
reqMsgId: 'req_msg_id',
|
|
8639
|
+
resultCode: 'result_code',
|
|
8640
|
+
resultMsg: 'result_msg',
|
|
8641
|
+
};
|
|
8642
|
+
}
|
|
8643
|
+
static types() {
|
|
8644
|
+
return {
|
|
8645
|
+
reqMsgId: 'string',
|
|
8646
|
+
resultCode: 'string',
|
|
8647
|
+
resultMsg: 'string',
|
|
8648
|
+
};
|
|
8649
|
+
}
|
|
8650
|
+
}
|
|
8651
|
+
exports.PushUmktBackflowEventResponse = PushUmktBackflowEventResponse;
|
|
8652
|
+
class SendUmktCardsmsBatchRequest extends $tea.Model {
|
|
8653
|
+
constructor(map) {
|
|
8654
|
+
super(map);
|
|
8655
|
+
}
|
|
8656
|
+
static names() {
|
|
8657
|
+
return {
|
|
8658
|
+
authToken: 'auth_token',
|
|
8659
|
+
productInstanceId: 'product_instance_id',
|
|
8660
|
+
cpassAk: 'cpass_ak',
|
|
8661
|
+
industryTag: 'industry_tag',
|
|
8662
|
+
cardTemplateCode: 'card_template_code',
|
|
8663
|
+
cardTemplateParamJson: 'card_template_param_json',
|
|
8664
|
+
phoneNumberJson: 'phone_number_json',
|
|
8665
|
+
signNameJson: 'sign_name_json',
|
|
8666
|
+
smsUpExtendCodeJson: 'sms_up_extend_code_json',
|
|
8667
|
+
};
|
|
8668
|
+
}
|
|
8669
|
+
static types() {
|
|
8670
|
+
return {
|
|
8671
|
+
authToken: 'string',
|
|
8672
|
+
productInstanceId: 'string',
|
|
8673
|
+
cpassAk: 'string',
|
|
8674
|
+
industryTag: 'string',
|
|
8675
|
+
cardTemplateCode: 'string',
|
|
8676
|
+
cardTemplateParamJson: 'string',
|
|
8677
|
+
phoneNumberJson: 'string',
|
|
8678
|
+
signNameJson: 'string',
|
|
8679
|
+
smsUpExtendCodeJson: 'string',
|
|
8680
|
+
};
|
|
8681
|
+
}
|
|
8682
|
+
}
|
|
8683
|
+
exports.SendUmktCardsmsBatchRequest = SendUmktCardsmsBatchRequest;
|
|
8684
|
+
class SendUmktCardsmsBatchResponse extends $tea.Model {
|
|
8685
|
+
constructor(map) {
|
|
8686
|
+
super(map);
|
|
8687
|
+
}
|
|
8688
|
+
static names() {
|
|
8689
|
+
return {
|
|
8690
|
+
reqMsgId: 'req_msg_id',
|
|
8691
|
+
resultCode: 'result_code',
|
|
8692
|
+
resultMsg: 'result_msg',
|
|
8693
|
+
bizCardId: 'biz_card_id',
|
|
8694
|
+
mediaMobiles: 'media_mobiles',
|
|
8695
|
+
notMediaMobiles: 'not_media_mobiles',
|
|
8696
|
+
};
|
|
8697
|
+
}
|
|
8698
|
+
static types() {
|
|
8699
|
+
return {
|
|
8700
|
+
reqMsgId: 'string',
|
|
8701
|
+
resultCode: 'string',
|
|
8702
|
+
resultMsg: 'string',
|
|
8703
|
+
bizCardId: 'string',
|
|
8704
|
+
mediaMobiles: 'string',
|
|
8705
|
+
notMediaMobiles: 'string',
|
|
8706
|
+
};
|
|
8707
|
+
}
|
|
8708
|
+
}
|
|
8709
|
+
exports.SendUmktCardsmsBatchResponse = SendUmktCardsmsBatchResponse;
|
|
8710
|
+
class QueryUmktCardsmsSupportRequest extends $tea.Model {
|
|
8711
|
+
constructor(map) {
|
|
8712
|
+
super(map);
|
|
8713
|
+
}
|
|
8714
|
+
static names() {
|
|
8715
|
+
return {
|
|
8716
|
+
authToken: 'auth_token',
|
|
8717
|
+
productInstanceId: 'product_instance_id',
|
|
8718
|
+
cpassAk: 'cpass_ak',
|
|
8719
|
+
industryTag: 'industry_tag',
|
|
8720
|
+
templateCode: 'template_code',
|
|
8721
|
+
mobiles: 'mobiles',
|
|
8722
|
+
};
|
|
8723
|
+
}
|
|
8724
|
+
static types() {
|
|
8725
|
+
return {
|
|
8726
|
+
authToken: 'string',
|
|
8727
|
+
productInstanceId: 'string',
|
|
8728
|
+
cpassAk: 'string',
|
|
8729
|
+
industryTag: 'string',
|
|
8730
|
+
templateCode: 'string',
|
|
8731
|
+
mobiles: 'string',
|
|
8732
|
+
};
|
|
8733
|
+
}
|
|
8734
|
+
}
|
|
8735
|
+
exports.QueryUmktCardsmsSupportRequest = QueryUmktCardsmsSupportRequest;
|
|
8736
|
+
class QueryUmktCardsmsSupportResponse extends $tea.Model {
|
|
8737
|
+
constructor(map) {
|
|
8738
|
+
super(map);
|
|
8739
|
+
}
|
|
8740
|
+
static names() {
|
|
8741
|
+
return {
|
|
8742
|
+
reqMsgId: 'req_msg_id',
|
|
8743
|
+
resultCode: 'result_code',
|
|
8744
|
+
resultMsg: 'result_msg',
|
|
8745
|
+
datas: 'datas',
|
|
8746
|
+
};
|
|
8747
|
+
}
|
|
8748
|
+
static types() {
|
|
8749
|
+
return {
|
|
8750
|
+
reqMsgId: 'string',
|
|
8751
|
+
resultCode: 'string',
|
|
8752
|
+
resultMsg: 'string',
|
|
8753
|
+
datas: 'string',
|
|
8754
|
+
};
|
|
8755
|
+
}
|
|
8756
|
+
}
|
|
8757
|
+
exports.QueryUmktCardsmsSupportResponse = QueryUmktCardsmsSupportResponse;
|
|
8344
8758
|
class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
8345
8759
|
constructor(map) {
|
|
8346
8760
|
super(map);
|
|
@@ -8485,7 +8899,7 @@ class Client {
|
|
|
8485
8899
|
req_msg_id: alipay_util_1.default.getNonce(),
|
|
8486
8900
|
access_key: this._accessKeyId,
|
|
8487
8901
|
base_sdk_version: "TeaSDK-2.0",
|
|
8488
|
-
sdk_version: "1.
|
|
8902
|
+
sdk_version: "1.13.3",
|
|
8489
8903
|
_prod_code: "RISKPLUS",
|
|
8490
8904
|
_prod_channel: "undefined",
|
|
8491
8905
|
};
|
|
@@ -9510,6 +9924,57 @@ class Client {
|
|
|
9510
9924
|
tea_util_1.default.validateModel(request);
|
|
9511
9925
|
return $tea.cast(await this.doRequest("1.0", "riskplus.dubbridge.file.update", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new UpdateDubbridgeFileResponse({}));
|
|
9512
9926
|
}
|
|
9927
|
+
/**
|
|
9928
|
+
* Description: 天枢系统获取授信H5地址
|
|
9929
|
+
* Summary: 天枢系统获取授信H5地址
|
|
9930
|
+
*/
|
|
9931
|
+
async queryDubbridgeCreditUrl(request) {
|
|
9932
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
9933
|
+
let headers = {};
|
|
9934
|
+
return await this.queryDubbridgeCreditUrlEx(request, headers, runtime);
|
|
9935
|
+
}
|
|
9936
|
+
/**
|
|
9937
|
+
* Description: 天枢系统获取授信H5地址
|
|
9938
|
+
* Summary: 天枢系统获取授信H5地址
|
|
9939
|
+
*/
|
|
9940
|
+
async queryDubbridgeCreditUrlEx(request, headers, runtime) {
|
|
9941
|
+
tea_util_1.default.validateModel(request);
|
|
9942
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.dubbridge.credit.url.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeCreditUrlResponse({}));
|
|
9943
|
+
}
|
|
9944
|
+
/**
|
|
9945
|
+
* Description: 根据关键字从第三方查询企业详情信息
|
|
9946
|
+
* Summary: 天枢系统企业详情信息查询
|
|
9947
|
+
*/
|
|
9948
|
+
async queryDubbridgeBusinessDetail(request) {
|
|
9949
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
9950
|
+
let headers = {};
|
|
9951
|
+
return await this.queryDubbridgeBusinessDetailEx(request, headers, runtime);
|
|
9952
|
+
}
|
|
9953
|
+
/**
|
|
9954
|
+
* Description: 根据关键字从第三方查询企业详情信息
|
|
9955
|
+
* Summary: 天枢系统企业详情信息查询
|
|
9956
|
+
*/
|
|
9957
|
+
async queryDubbridgeBusinessDetailEx(request, headers, runtime) {
|
|
9958
|
+
tea_util_1.default.validateModel(request);
|
|
9959
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.dubbridge.business.detail.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryDubbridgeBusinessDetailResponse({}));
|
|
9960
|
+
}
|
|
9961
|
+
/**
|
|
9962
|
+
* Description: 天枢回调通用接口
|
|
9963
|
+
* Summary: 天枢回调通用接口
|
|
9964
|
+
*/
|
|
9965
|
+
async notifyDubbridgeCallback(request) {
|
|
9966
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
9967
|
+
let headers = {};
|
|
9968
|
+
return await this.notifyDubbridgeCallbackEx(request, headers, runtime);
|
|
9969
|
+
}
|
|
9970
|
+
/**
|
|
9971
|
+
* Description: 天枢回调通用接口
|
|
9972
|
+
* Summary: 天枢回调通用接口
|
|
9973
|
+
*/
|
|
9974
|
+
async notifyDubbridgeCallbackEx(request, headers, runtime) {
|
|
9975
|
+
tea_util_1.default.validateModel(request);
|
|
9976
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.dubbridge.callback.notify", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new NotifyDubbridgeCallbackResponse({}));
|
|
9977
|
+
}
|
|
9513
9978
|
/**
|
|
9514
9979
|
* Description: 四要素认证首先调用此接口
|
|
9515
9980
|
* Summary: 芝麻四要素接口
|
|
@@ -10621,6 +11086,74 @@ class Client {
|
|
|
10621
11086
|
tea_util_1.default.validateModel(request);
|
|
10622
11087
|
return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.dataaccess.offlinetask.cancel", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new CancelUmktDataaccessOfflinetaskResponse({}));
|
|
10623
11088
|
}
|
|
11089
|
+
/**
|
|
11090
|
+
* Description: 营销盾实时单一凭证营销接口,服务于近rta的场景
|
|
11091
|
+
* Summary: 营销盾实时单一凭证营销接口
|
|
11092
|
+
*/
|
|
11093
|
+
async queryUmktRtMarketing(request) {
|
|
11094
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
11095
|
+
let headers = {};
|
|
11096
|
+
return await this.queryUmktRtMarketingEx(request, headers, runtime);
|
|
11097
|
+
}
|
|
11098
|
+
/**
|
|
11099
|
+
* Description: 营销盾实时单一凭证营销接口,服务于近rta的场景
|
|
11100
|
+
* Summary: 营销盾实时单一凭证营销接口
|
|
11101
|
+
*/
|
|
11102
|
+
async queryUmktRtMarketingEx(request, headers, runtime) {
|
|
11103
|
+
tea_util_1.default.validateModel(request);
|
|
11104
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.rt.marketing.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryUmktRtMarketingResponse({}));
|
|
11105
|
+
}
|
|
11106
|
+
/**
|
|
11107
|
+
* Description: 营销盾业务回流事件推送
|
|
11108
|
+
* Summary: 营销盾回流事件推送
|
|
11109
|
+
*/
|
|
11110
|
+
async pushUmktBackflowEvent(request) {
|
|
11111
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
11112
|
+
let headers = {};
|
|
11113
|
+
return await this.pushUmktBackflowEventEx(request, headers, runtime);
|
|
11114
|
+
}
|
|
11115
|
+
/**
|
|
11116
|
+
* Description: 营销盾业务回流事件推送
|
|
11117
|
+
* Summary: 营销盾回流事件推送
|
|
11118
|
+
*/
|
|
11119
|
+
async pushUmktBackflowEventEx(request, headers, runtime) {
|
|
11120
|
+
tea_util_1.default.validateModel(request);
|
|
11121
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.backflow.event.push", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new PushUmktBackflowEventResponse({}));
|
|
11122
|
+
}
|
|
11123
|
+
/**
|
|
11124
|
+
* Description: 卡片短信批量发送接口
|
|
11125
|
+
* Summary: 卡片短信批量发送接口
|
|
11126
|
+
*/
|
|
11127
|
+
async sendUmktCardsmsBatch(request) {
|
|
11128
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
11129
|
+
let headers = {};
|
|
11130
|
+
return await this.sendUmktCardsmsBatchEx(request, headers, runtime);
|
|
11131
|
+
}
|
|
11132
|
+
/**
|
|
11133
|
+
* Description: 卡片短信批量发送接口
|
|
11134
|
+
* Summary: 卡片短信批量发送接口
|
|
11135
|
+
*/
|
|
11136
|
+
async sendUmktCardsmsBatchEx(request, headers, runtime) {
|
|
11137
|
+
tea_util_1.default.validateModel(request);
|
|
11138
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.cardsms.batch.send", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new SendUmktCardsmsBatchResponse({}));
|
|
11139
|
+
}
|
|
11140
|
+
/**
|
|
11141
|
+
* Description: 卡片短信支持能力查询
|
|
11142
|
+
* Summary: 卡片短信支持能力查询
|
|
11143
|
+
*/
|
|
11144
|
+
async queryUmktCardsmsSupport(request) {
|
|
11145
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
11146
|
+
let headers = {};
|
|
11147
|
+
return await this.queryUmktCardsmsSupportEx(request, headers, runtime);
|
|
11148
|
+
}
|
|
11149
|
+
/**
|
|
11150
|
+
* Description: 卡片短信支持能力查询
|
|
11151
|
+
* Summary: 卡片短信支持能力查询
|
|
11152
|
+
*/
|
|
11153
|
+
async queryUmktCardsmsSupportEx(request, headers, runtime) {
|
|
11154
|
+
tea_util_1.default.validateModel(request);
|
|
11155
|
+
return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.cardsms.support.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryUmktCardsmsSupportResponse({}));
|
|
11156
|
+
}
|
|
10624
11157
|
/**
|
|
10625
11158
|
* Description: 创建HTTP PUT提交的文件上传
|
|
10626
11159
|
* Summary: 文件上传创建
|