@antchain/riskplus 1.12.19 → 1.13.5
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 +270 -0
- package/dist/client.js +414 -3
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +607 -5
package/dist/client.d.ts
CHANGED
|
@@ -127,6 +127,19 @@ export declare class DecisionFlow extends $tea.Model {
|
|
|
127
127
|
[key: string]: any;
|
|
128
128
|
});
|
|
129
129
|
}
|
|
130
|
+
export declare class BackflowEventRecordProperty extends $tea.Model {
|
|
131
|
+
key: string;
|
|
132
|
+
value: string;
|
|
133
|
+
static names(): {
|
|
134
|
+
[key: string]: string;
|
|
135
|
+
};
|
|
136
|
+
static types(): {
|
|
137
|
+
[key: string]: any;
|
|
138
|
+
};
|
|
139
|
+
constructor(map?: {
|
|
140
|
+
[key: string]: any;
|
|
141
|
+
});
|
|
142
|
+
}
|
|
130
143
|
export declare class BaseCustomerUmktInfoModel extends $tea.Model {
|
|
131
144
|
customerKey?: string;
|
|
132
145
|
queryTemplate?: string;
|
|
@@ -263,6 +276,19 @@ export declare class RuleDetail extends $tea.Model {
|
|
|
263
276
|
[key: string]: any;
|
|
264
277
|
});
|
|
265
278
|
}
|
|
279
|
+
export declare class CommonNotyfyResult extends $tea.Model {
|
|
280
|
+
requestId: string;
|
|
281
|
+
bizResponse: string;
|
|
282
|
+
static names(): {
|
|
283
|
+
[key: string]: string;
|
|
284
|
+
};
|
|
285
|
+
static types(): {
|
|
286
|
+
[key: string]: any;
|
|
287
|
+
};
|
|
288
|
+
constructor(map?: {
|
|
289
|
+
[key: string]: any;
|
|
290
|
+
});
|
|
291
|
+
}
|
|
266
292
|
export declare class SecurityScene extends $tea.Model {
|
|
267
293
|
accessChannel?: string;
|
|
268
294
|
ctuParams?: string;
|
|
@@ -363,6 +389,12 @@ export declare class RepayResult extends $tea.Model {
|
|
|
363
389
|
status: string;
|
|
364
390
|
settleDate: string;
|
|
365
391
|
tradeDate: string;
|
|
392
|
+
alreadyGuaranteeFee: number;
|
|
393
|
+
alreadyLiquidatedDamages: number;
|
|
394
|
+
restGuaranteeFee: number;
|
|
395
|
+
restLiquidatedDamages: number;
|
|
396
|
+
needGuaranteeFee: number;
|
|
397
|
+
needLiquidatedDamages: number;
|
|
366
398
|
static names(): {
|
|
367
399
|
[key: string]: string;
|
|
368
400
|
};
|
|
@@ -419,6 +451,19 @@ export declare class UpdateCustomerRelationResponseData extends $tea.Model {
|
|
|
419
451
|
[key: string]: any;
|
|
420
452
|
});
|
|
421
453
|
}
|
|
454
|
+
export declare class BackflowEventRecord extends $tea.Model {
|
|
455
|
+
groupCode: string;
|
|
456
|
+
properties: BackflowEventRecordProperty[];
|
|
457
|
+
static names(): {
|
|
458
|
+
[key: string]: string;
|
|
459
|
+
};
|
|
460
|
+
static types(): {
|
|
461
|
+
[key: string]: any;
|
|
462
|
+
};
|
|
463
|
+
constructor(map?: {
|
|
464
|
+
[key: string]: any;
|
|
465
|
+
});
|
|
466
|
+
}
|
|
422
467
|
export declare class RtopCompanyRiskFactor extends $tea.Model {
|
|
423
468
|
name?: string;
|
|
424
469
|
score?: number;
|
|
@@ -788,6 +833,22 @@ export declare class StrategyDetails extends $tea.Model {
|
|
|
788
833
|
[key: string]: any;
|
|
789
834
|
});
|
|
790
835
|
}
|
|
836
|
+
export declare class PayMethodLockResult extends $tea.Model {
|
|
837
|
+
signStatus: string;
|
|
838
|
+
accountId: string;
|
|
839
|
+
loginId: string;
|
|
840
|
+
payChannel: string;
|
|
841
|
+
accountName: string;
|
|
842
|
+
static names(): {
|
|
843
|
+
[key: string]: string;
|
|
844
|
+
};
|
|
845
|
+
static types(): {
|
|
846
|
+
[key: string]: any;
|
|
847
|
+
};
|
|
848
|
+
constructor(map?: {
|
|
849
|
+
[key: string]: any;
|
|
850
|
+
});
|
|
851
|
+
}
|
|
791
852
|
export declare class SecurityResultInfos extends $tea.Model {
|
|
792
853
|
decision: string;
|
|
793
854
|
riskScore: number;
|
|
@@ -1092,6 +1153,20 @@ export declare class RtopCompanyOpinionCount extends $tea.Model {
|
|
|
1092
1153
|
[key: string]: any;
|
|
1093
1154
|
});
|
|
1094
1155
|
}
|
|
1156
|
+
export declare class FundChainLockResult extends $tea.Model {
|
|
1157
|
+
name: string;
|
|
1158
|
+
id: string;
|
|
1159
|
+
status: string;
|
|
1160
|
+
static names(): {
|
|
1161
|
+
[key: string]: string;
|
|
1162
|
+
};
|
|
1163
|
+
static types(): {
|
|
1164
|
+
[key: string]: any;
|
|
1165
|
+
};
|
|
1166
|
+
constructor(map?: {
|
|
1167
|
+
[key: string]: any;
|
|
1168
|
+
});
|
|
1169
|
+
}
|
|
1095
1170
|
export declare class RtopRegionalDistribution extends $tea.Model {
|
|
1096
1171
|
count: number;
|
|
1097
1172
|
place: string;
|
|
@@ -2646,6 +2721,7 @@ export declare class QueryDubbridgeAccountStatusRequest extends $tea.Model {
|
|
|
2646
2721
|
productInstanceId?: string;
|
|
2647
2722
|
customNo?: string;
|
|
2648
2723
|
openId?: string;
|
|
2724
|
+
bizType: string;
|
|
2649
2725
|
static names(): {
|
|
2650
2726
|
[key: string]: string;
|
|
2651
2727
|
};
|
|
@@ -2661,6 +2737,8 @@ export declare class QueryDubbridgeAccountStatusResponse extends $tea.Model {
|
|
|
2661
2737
|
resultCode?: string;
|
|
2662
2738
|
resultMsg?: string;
|
|
2663
2739
|
data?: CustomStatus;
|
|
2740
|
+
payMethodLockResult?: PayMethodLockResult;
|
|
2741
|
+
fundChainLockResult?: FundChainLockResult[];
|
|
2664
2742
|
static names(): {
|
|
2665
2743
|
[key: string]: string;
|
|
2666
2744
|
};
|
|
@@ -2905,6 +2983,8 @@ export declare class QueryDubbridgeRepayInfoResponse extends $tea.Model {
|
|
|
2905
2983
|
repayStatus?: string;
|
|
2906
2984
|
failReason?: string;
|
|
2907
2985
|
applyNo?: string;
|
|
2986
|
+
guaranteeFee?: number;
|
|
2987
|
+
liquidatedDamages?: number;
|
|
2908
2988
|
static names(): {
|
|
2909
2989
|
[key: string]: string;
|
|
2910
2990
|
};
|
|
@@ -3003,6 +3083,8 @@ export declare class CountDubbridgeRepayTrialResponse extends $tea.Model {
|
|
|
3003
3083
|
realInterest?: number;
|
|
3004
3084
|
realOverAmt?: number;
|
|
3005
3085
|
serviceCharge?: number;
|
|
3086
|
+
realGuaranteeFee?: number;
|
|
3087
|
+
realLiquidatedDamages?: number;
|
|
3006
3088
|
static names(): {
|
|
3007
3089
|
[key: string]: string;
|
|
3008
3090
|
};
|
|
@@ -3089,6 +3171,7 @@ export declare class ApplyDubbridgeUsecreditRequest extends $tea.Model {
|
|
|
3089
3171
|
orderNo: string;
|
|
3090
3172
|
repayType: string;
|
|
3091
3173
|
loanWay: string;
|
|
3174
|
+
repayDate: string;
|
|
3092
3175
|
static names(): {
|
|
3093
3176
|
[key: string]: string;
|
|
3094
3177
|
};
|
|
@@ -3136,6 +3219,8 @@ export declare class QueryDubbridgeUsecreditStatusResponse extends $tea.Model {
|
|
|
3136
3219
|
msg?: string;
|
|
3137
3220
|
receiptInfo?: ReceiptInfo;
|
|
3138
3221
|
repayRef?: RepayRef[];
|
|
3222
|
+
disburseContractNo?: string;
|
|
3223
|
+
creditContractNo?: string;
|
|
3139
3224
|
static names(): {
|
|
3140
3225
|
[key: string]: string;
|
|
3141
3226
|
};
|
|
@@ -3336,6 +3421,38 @@ export declare class QueryDubbridgeBusinessDetailResponse extends $tea.Model {
|
|
|
3336
3421
|
[key: string]: any;
|
|
3337
3422
|
});
|
|
3338
3423
|
}
|
|
3424
|
+
export declare class NotifyDubbridgeCallbackRequest extends $tea.Model {
|
|
3425
|
+
authToken?: string;
|
|
3426
|
+
productInstanceId?: string;
|
|
3427
|
+
channelCode: string;
|
|
3428
|
+
bizParam: string;
|
|
3429
|
+
bizType: string;
|
|
3430
|
+
seqNo: string;
|
|
3431
|
+
static names(): {
|
|
3432
|
+
[key: string]: string;
|
|
3433
|
+
};
|
|
3434
|
+
static types(): {
|
|
3435
|
+
[key: string]: any;
|
|
3436
|
+
};
|
|
3437
|
+
constructor(map?: {
|
|
3438
|
+
[key: string]: any;
|
|
3439
|
+
});
|
|
3440
|
+
}
|
|
3441
|
+
export declare class NotifyDubbridgeCallbackResponse extends $tea.Model {
|
|
3442
|
+
reqMsgId?: string;
|
|
3443
|
+
resultCode?: string;
|
|
3444
|
+
resultMsg?: string;
|
|
3445
|
+
data?: CommonNotyfyResult;
|
|
3446
|
+
static names(): {
|
|
3447
|
+
[key: string]: string;
|
|
3448
|
+
};
|
|
3449
|
+
static types(): {
|
|
3450
|
+
[key: string]: any;
|
|
3451
|
+
};
|
|
3452
|
+
constructor(map?: {
|
|
3453
|
+
[key: string]: any;
|
|
3454
|
+
});
|
|
3455
|
+
}
|
|
3339
3456
|
export declare class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
|
|
3340
3457
|
authToken?: string;
|
|
3341
3458
|
productInstanceId?: string;
|
|
@@ -5464,6 +5581,111 @@ export declare class QueryUmktRtMarketingResponse extends $tea.Model {
|
|
|
5464
5581
|
[key: string]: any;
|
|
5465
5582
|
});
|
|
5466
5583
|
}
|
|
5584
|
+
export declare class PushUmktBackflowEventRequest extends $tea.Model {
|
|
5585
|
+
authToken?: string;
|
|
5586
|
+
productInstanceId?: string;
|
|
5587
|
+
eventId: number;
|
|
5588
|
+
eventRecords: BackflowEventRecord[];
|
|
5589
|
+
static names(): {
|
|
5590
|
+
[key: string]: string;
|
|
5591
|
+
};
|
|
5592
|
+
static types(): {
|
|
5593
|
+
[key: string]: any;
|
|
5594
|
+
};
|
|
5595
|
+
constructor(map?: {
|
|
5596
|
+
[key: string]: any;
|
|
5597
|
+
});
|
|
5598
|
+
}
|
|
5599
|
+
export declare class PushUmktBackflowEventResponse extends $tea.Model {
|
|
5600
|
+
reqMsgId?: string;
|
|
5601
|
+
resultCode?: string;
|
|
5602
|
+
resultMsg?: string;
|
|
5603
|
+
static names(): {
|
|
5604
|
+
[key: string]: string;
|
|
5605
|
+
};
|
|
5606
|
+
static types(): {
|
|
5607
|
+
[key: string]: any;
|
|
5608
|
+
};
|
|
5609
|
+
constructor(map?: {
|
|
5610
|
+
[key: string]: any;
|
|
5611
|
+
});
|
|
5612
|
+
}
|
|
5613
|
+
export declare class SendUmktCardsmsBatchRequest extends $tea.Model {
|
|
5614
|
+
authToken?: string;
|
|
5615
|
+
productInstanceId?: string;
|
|
5616
|
+
cpassAk?: string;
|
|
5617
|
+
industryTag: string;
|
|
5618
|
+
cardTemplateCode: string;
|
|
5619
|
+
cardTemplateParamJson: string;
|
|
5620
|
+
phoneNumberJson: string;
|
|
5621
|
+
signNameJson: string;
|
|
5622
|
+
smsUpExtendCodeJson?: string;
|
|
5623
|
+
fallbackType?: string;
|
|
5624
|
+
fallbackTemplateCode?: string;
|
|
5625
|
+
fallbackTemplateParamJson?: string;
|
|
5626
|
+
templateCode?: string;
|
|
5627
|
+
templateParamJson?: string;
|
|
5628
|
+
static names(): {
|
|
5629
|
+
[key: string]: string;
|
|
5630
|
+
};
|
|
5631
|
+
static types(): {
|
|
5632
|
+
[key: string]: any;
|
|
5633
|
+
};
|
|
5634
|
+
constructor(map?: {
|
|
5635
|
+
[key: string]: any;
|
|
5636
|
+
});
|
|
5637
|
+
}
|
|
5638
|
+
export declare class SendUmktCardsmsBatchResponse extends $tea.Model {
|
|
5639
|
+
reqMsgId?: string;
|
|
5640
|
+
resultCode?: string;
|
|
5641
|
+
resultMsg?: string;
|
|
5642
|
+
bizCardId?: string;
|
|
5643
|
+
mediaMobiles?: string;
|
|
5644
|
+
notMediaMobiles?: string;
|
|
5645
|
+
bizId?: string;
|
|
5646
|
+
bizDigitalId?: string;
|
|
5647
|
+
static names(): {
|
|
5648
|
+
[key: string]: string;
|
|
5649
|
+
};
|
|
5650
|
+
static types(): {
|
|
5651
|
+
[key: string]: any;
|
|
5652
|
+
};
|
|
5653
|
+
constructor(map?: {
|
|
5654
|
+
[key: string]: any;
|
|
5655
|
+
});
|
|
5656
|
+
}
|
|
5657
|
+
export declare class QueryUmktCardsmsSupportRequest extends $tea.Model {
|
|
5658
|
+
authToken?: string;
|
|
5659
|
+
productInstanceId?: string;
|
|
5660
|
+
cpassAk?: string;
|
|
5661
|
+
industryTag: string;
|
|
5662
|
+
templateCode: string;
|
|
5663
|
+
mobiles: string;
|
|
5664
|
+
static names(): {
|
|
5665
|
+
[key: string]: string;
|
|
5666
|
+
};
|
|
5667
|
+
static types(): {
|
|
5668
|
+
[key: string]: any;
|
|
5669
|
+
};
|
|
5670
|
+
constructor(map?: {
|
|
5671
|
+
[key: string]: any;
|
|
5672
|
+
});
|
|
5673
|
+
}
|
|
5674
|
+
export declare class QueryUmktCardsmsSupportResponse extends $tea.Model {
|
|
5675
|
+
reqMsgId?: string;
|
|
5676
|
+
resultCode?: string;
|
|
5677
|
+
resultMsg?: string;
|
|
5678
|
+
datas?: string;
|
|
5679
|
+
static names(): {
|
|
5680
|
+
[key: string]: string;
|
|
5681
|
+
};
|
|
5682
|
+
static types(): {
|
|
5683
|
+
[key: string]: any;
|
|
5684
|
+
};
|
|
5685
|
+
constructor(map?: {
|
|
5686
|
+
[key: string]: any;
|
|
5687
|
+
});
|
|
5688
|
+
}
|
|
5467
5689
|
export declare class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
5468
5690
|
authToken?: string;
|
|
5469
5691
|
apiCode: string;
|
|
@@ -6250,6 +6472,18 @@ export default class Client {
|
|
|
6250
6472
|
queryDubbridgeBusinessDetailEx(request: QueryDubbridgeBusinessDetailRequest, headers: {
|
|
6251
6473
|
[key: string]: string;
|
|
6252
6474
|
}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeBusinessDetailResponse>;
|
|
6475
|
+
/**
|
|
6476
|
+
* Description: 天枢回调通用接口
|
|
6477
|
+
* Summary: 天枢回调通用接口
|
|
6478
|
+
*/
|
|
6479
|
+
notifyDubbridgeCallback(request: NotifyDubbridgeCallbackRequest): Promise<NotifyDubbridgeCallbackResponse>;
|
|
6480
|
+
/**
|
|
6481
|
+
* Description: 天枢回调通用接口
|
|
6482
|
+
* Summary: 天枢回调通用接口
|
|
6483
|
+
*/
|
|
6484
|
+
notifyDubbridgeCallbackEx(request: NotifyDubbridgeCallbackRequest, headers: {
|
|
6485
|
+
[key: string]: string;
|
|
6486
|
+
}, runtime: $Util.RuntimeOptions): Promise<NotifyDubbridgeCallbackResponse>;
|
|
6253
6487
|
/**
|
|
6254
6488
|
* Description: 四要素认证首先调用此接口
|
|
6255
6489
|
* Summary: 芝麻四要素接口
|
|
@@ -7020,6 +7254,42 @@ export default class Client {
|
|
|
7020
7254
|
queryUmktRtMarketingEx(request: QueryUmktRtMarketingRequest, headers: {
|
|
7021
7255
|
[key: string]: string;
|
|
7022
7256
|
}, runtime: $Util.RuntimeOptions): Promise<QueryUmktRtMarketingResponse>;
|
|
7257
|
+
/**
|
|
7258
|
+
* Description: 营销盾业务回流事件推送
|
|
7259
|
+
* Summary: 营销盾回流事件推送
|
|
7260
|
+
*/
|
|
7261
|
+
pushUmktBackflowEvent(request: PushUmktBackflowEventRequest): Promise<PushUmktBackflowEventResponse>;
|
|
7262
|
+
/**
|
|
7263
|
+
* Description: 营销盾业务回流事件推送
|
|
7264
|
+
* Summary: 营销盾回流事件推送
|
|
7265
|
+
*/
|
|
7266
|
+
pushUmktBackflowEventEx(request: PushUmktBackflowEventRequest, headers: {
|
|
7267
|
+
[key: string]: string;
|
|
7268
|
+
}, runtime: $Util.RuntimeOptions): Promise<PushUmktBackflowEventResponse>;
|
|
7269
|
+
/**
|
|
7270
|
+
* Description: 卡片短信批量发送接口
|
|
7271
|
+
* Summary: 卡片短信批量发送接口
|
|
7272
|
+
*/
|
|
7273
|
+
sendUmktCardsmsBatch(request: SendUmktCardsmsBatchRequest): Promise<SendUmktCardsmsBatchResponse>;
|
|
7274
|
+
/**
|
|
7275
|
+
* Description: 卡片短信批量发送接口
|
|
7276
|
+
* Summary: 卡片短信批量发送接口
|
|
7277
|
+
*/
|
|
7278
|
+
sendUmktCardsmsBatchEx(request: SendUmktCardsmsBatchRequest, headers: {
|
|
7279
|
+
[key: string]: string;
|
|
7280
|
+
}, runtime: $Util.RuntimeOptions): Promise<SendUmktCardsmsBatchResponse>;
|
|
7281
|
+
/**
|
|
7282
|
+
* Description: 卡片短信支持能力查询
|
|
7283
|
+
* Summary: 卡片短信支持能力查询
|
|
7284
|
+
*/
|
|
7285
|
+
queryUmktCardsmsSupport(request: QueryUmktCardsmsSupportRequest): Promise<QueryUmktCardsmsSupportResponse>;
|
|
7286
|
+
/**
|
|
7287
|
+
* Description: 卡片短信支持能力查询
|
|
7288
|
+
* Summary: 卡片短信支持能力查询
|
|
7289
|
+
*/
|
|
7290
|
+
queryUmktCardsmsSupportEx(request: QueryUmktCardsmsSupportRequest, headers: {
|
|
7291
|
+
[key: string]: string;
|
|
7292
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryUmktCardsmsSupportResponse>;
|
|
7023
7293
|
/**
|
|
7024
7294
|
* Description: 创建HTTP PUT提交的文件上传
|
|
7025
7295
|
* Summary: 文件上传创建
|