@antchain/riskplus 1.20.2 → 1.20.7
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 +196 -49
- package/dist/client.js +291 -73
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +413 -106
package/dist/client.d.ts
CHANGED
|
@@ -198,8 +198,8 @@ export declare class DecisionFlow extends $tea.Model {
|
|
|
198
198
|
export declare class CouponInfo extends $tea.Model {
|
|
199
199
|
couponId: string;
|
|
200
200
|
couponName: string;
|
|
201
|
-
|
|
202
|
-
|
|
201
|
+
status: string;
|
|
202
|
+
useCondition: string;
|
|
203
203
|
couponCode?: string;
|
|
204
204
|
couponType?: string;
|
|
205
205
|
couponValue?: string;
|
|
@@ -216,6 +216,8 @@ export declare class CouponInfo extends $tea.Model {
|
|
|
216
216
|
isPeriodLimit?: string;
|
|
217
217
|
repayCondition?: string;
|
|
218
218
|
repayWays?: string;
|
|
219
|
+
couponModelNo?: string;
|
|
220
|
+
toMaturity?: string;
|
|
219
221
|
static names(): {
|
|
220
222
|
[key: string]: string;
|
|
221
223
|
};
|
|
@@ -1351,6 +1353,19 @@ export declare class RtopStarCompanyInfo extends $tea.Model {
|
|
|
1351
1353
|
[key: string]: any;
|
|
1352
1354
|
});
|
|
1353
1355
|
}
|
|
1356
|
+
export declare class PlatformRepayTypeInfo extends $tea.Model {
|
|
1357
|
+
repayType: string;
|
|
1358
|
+
periods: string[];
|
|
1359
|
+
static names(): {
|
|
1360
|
+
[key: string]: string;
|
|
1361
|
+
};
|
|
1362
|
+
static types(): {
|
|
1363
|
+
[key: string]: any;
|
|
1364
|
+
};
|
|
1365
|
+
constructor(map?: {
|
|
1366
|
+
[key: string]: any;
|
|
1367
|
+
});
|
|
1368
|
+
}
|
|
1354
1369
|
export declare class RtopDateDistribution extends $tea.Model {
|
|
1355
1370
|
count: number;
|
|
1356
1371
|
date: string;
|
|
@@ -1890,6 +1905,9 @@ export declare class RepayTrail extends $tea.Model {
|
|
|
1890
1905
|
startTime: string;
|
|
1891
1906
|
endTime: string;
|
|
1892
1907
|
trialNo: string;
|
|
1908
|
+
discountAfterNeedAmt?: number;
|
|
1909
|
+
discountAfterInterest?: number;
|
|
1910
|
+
discountInterest?: number;
|
|
1893
1911
|
static names(): {
|
|
1894
1912
|
[key: string]: string;
|
|
1895
1913
|
};
|
|
@@ -1945,6 +1963,37 @@ export declare class XNameValuePair extends $tea.Model {
|
|
|
1945
1963
|
[key: string]: any;
|
|
1946
1964
|
});
|
|
1947
1965
|
}
|
|
1966
|
+
export declare class BatchqueryCreditshieldProductInfoRequest extends $tea.Model {
|
|
1967
|
+
authToken?: string;
|
|
1968
|
+
productInstanceId?: string;
|
|
1969
|
+
queryCode: string;
|
|
1970
|
+
queryInfos?: QueryInfo[];
|
|
1971
|
+
static names(): {
|
|
1972
|
+
[key: string]: string;
|
|
1973
|
+
};
|
|
1974
|
+
static types(): {
|
|
1975
|
+
[key: string]: any;
|
|
1976
|
+
};
|
|
1977
|
+
constructor(map?: {
|
|
1978
|
+
[key: string]: any;
|
|
1979
|
+
});
|
|
1980
|
+
}
|
|
1981
|
+
export declare class BatchqueryCreditshieldProductInfoResponse extends $tea.Model {
|
|
1982
|
+
reqMsgId?: string;
|
|
1983
|
+
resultCode?: string;
|
|
1984
|
+
resultMsg?: string;
|
|
1985
|
+
success?: boolean;
|
|
1986
|
+
queryResults?: QueryResult[];
|
|
1987
|
+
static names(): {
|
|
1988
|
+
[key: string]: string;
|
|
1989
|
+
};
|
|
1990
|
+
static types(): {
|
|
1991
|
+
[key: string]: any;
|
|
1992
|
+
};
|
|
1993
|
+
constructor(map?: {
|
|
1994
|
+
[key: string]: any;
|
|
1995
|
+
});
|
|
1996
|
+
}
|
|
1948
1997
|
export declare class QuerySecurityPolicyRequest extends $tea.Model {
|
|
1949
1998
|
authToken?: string;
|
|
1950
1999
|
productInstanceId?: string;
|
|
@@ -2234,43 +2283,11 @@ export declare class QueryBatchSecurityPolicyResponse extends $tea.Model {
|
|
|
2234
2283
|
[key: string]: any;
|
|
2235
2284
|
});
|
|
2236
2285
|
}
|
|
2237
|
-
export declare class QueryFhtestFhRequest extends $tea.Model {
|
|
2238
|
-
authToken?: string;
|
|
2239
|
-
productInstanceId?: string;
|
|
2240
|
-
name: string;
|
|
2241
|
-
age: number;
|
|
2242
|
-
judge?: boolean;
|
|
2243
|
-
static names(): {
|
|
2244
|
-
[key: string]: string;
|
|
2245
|
-
};
|
|
2246
|
-
static types(): {
|
|
2247
|
-
[key: string]: any;
|
|
2248
|
-
};
|
|
2249
|
-
constructor(map?: {
|
|
2250
|
-
[key: string]: any;
|
|
2251
|
-
});
|
|
2252
|
-
}
|
|
2253
|
-
export declare class QueryFhtestFhResponse extends $tea.Model {
|
|
2254
|
-
reqMsgId?: string;
|
|
2255
|
-
resultCode?: string;
|
|
2256
|
-
resultMsg?: string;
|
|
2257
|
-
success?: boolean;
|
|
2258
|
-
queryResults?: string[];
|
|
2259
|
-
static names(): {
|
|
2260
|
-
[key: string]: string;
|
|
2261
|
-
};
|
|
2262
|
-
static types(): {
|
|
2263
|
-
[key: string]: any;
|
|
2264
|
-
};
|
|
2265
|
-
constructor(map?: {
|
|
2266
|
-
[key: string]: any;
|
|
2267
|
-
});
|
|
2268
|
-
}
|
|
2269
2286
|
export declare class QueryCreditshieldProductBatchRequest extends $tea.Model {
|
|
2270
2287
|
authToken?: string;
|
|
2271
2288
|
productInstanceId?: string;
|
|
2272
|
-
|
|
2273
|
-
queryInfos
|
|
2289
|
+
queryCode: string;
|
|
2290
|
+
queryInfos?: QueryInfo[];
|
|
2274
2291
|
static names(): {
|
|
2275
2292
|
[key: string]: string;
|
|
2276
2293
|
};
|
|
@@ -3730,6 +3747,7 @@ export declare class CountDubbridgeRepayReftrialRequest extends $tea.Model {
|
|
|
3730
3747
|
applyPeriod: number;
|
|
3731
3748
|
repayType: string;
|
|
3732
3749
|
repayDate?: string;
|
|
3750
|
+
couponId?: string;
|
|
3733
3751
|
static names(): {
|
|
3734
3752
|
[key: string]: string;
|
|
3735
3753
|
};
|
|
@@ -3875,6 +3893,7 @@ export declare class ApplyDubbridgeUsecreditRequest extends $tea.Model {
|
|
|
3875
3893
|
loanInstCode?: string;
|
|
3876
3894
|
bankCardNo?: string;
|
|
3877
3895
|
materials?: Material[];
|
|
3896
|
+
couponId?: string;
|
|
3878
3897
|
static names(): {
|
|
3879
3898
|
[key: string]: string;
|
|
3880
3899
|
};
|
|
@@ -4409,6 +4428,68 @@ export declare class QueryDubbridgeUserAggregationinfoResponse extends $tea.Mode
|
|
|
4409
4428
|
[key: string]: any;
|
|
4410
4429
|
});
|
|
4411
4430
|
}
|
|
4431
|
+
export declare class QueryDubbridgeMarketingCouponlistRequest extends $tea.Model {
|
|
4432
|
+
authToken?: string;
|
|
4433
|
+
productInstanceId?: string;
|
|
4434
|
+
customerNo: string;
|
|
4435
|
+
status?: string;
|
|
4436
|
+
page?: number;
|
|
4437
|
+
pageSize?: number;
|
|
4438
|
+
static names(): {
|
|
4439
|
+
[key: string]: string;
|
|
4440
|
+
};
|
|
4441
|
+
static types(): {
|
|
4442
|
+
[key: string]: any;
|
|
4443
|
+
};
|
|
4444
|
+
constructor(map?: {
|
|
4445
|
+
[key: string]: any;
|
|
4446
|
+
});
|
|
4447
|
+
}
|
|
4448
|
+
export declare class QueryDubbridgeMarketingCouponlistResponse extends $tea.Model {
|
|
4449
|
+
reqMsgId?: string;
|
|
4450
|
+
resultCode?: string;
|
|
4451
|
+
resultMsg?: string;
|
|
4452
|
+
couponList?: CouponInfo[];
|
|
4453
|
+
static names(): {
|
|
4454
|
+
[key: string]: string;
|
|
4455
|
+
};
|
|
4456
|
+
static types(): {
|
|
4457
|
+
[key: string]: any;
|
|
4458
|
+
};
|
|
4459
|
+
constructor(map?: {
|
|
4460
|
+
[key: string]: any;
|
|
4461
|
+
});
|
|
4462
|
+
}
|
|
4463
|
+
export declare class QueryDubbridgeRepaytypeInfoRequest extends $tea.Model {
|
|
4464
|
+
authToken?: string;
|
|
4465
|
+
productInstanceId?: string;
|
|
4466
|
+
customerNo: string;
|
|
4467
|
+
fundCode: string;
|
|
4468
|
+
static names(): {
|
|
4469
|
+
[key: string]: string;
|
|
4470
|
+
};
|
|
4471
|
+
static types(): {
|
|
4472
|
+
[key: string]: any;
|
|
4473
|
+
};
|
|
4474
|
+
constructor(map?: {
|
|
4475
|
+
[key: string]: any;
|
|
4476
|
+
});
|
|
4477
|
+
}
|
|
4478
|
+
export declare class QueryDubbridgeRepaytypeInfoResponse extends $tea.Model {
|
|
4479
|
+
reqMsgId?: string;
|
|
4480
|
+
resultCode?: string;
|
|
4481
|
+
resultMsg?: string;
|
|
4482
|
+
repayTypeInfoList?: PlatformRepayTypeInfo[];
|
|
4483
|
+
static names(): {
|
|
4484
|
+
[key: string]: string;
|
|
4485
|
+
};
|
|
4486
|
+
static types(): {
|
|
4487
|
+
[key: string]: any;
|
|
4488
|
+
};
|
|
4489
|
+
constructor(map?: {
|
|
4490
|
+
[key: string]: any;
|
|
4491
|
+
});
|
|
4492
|
+
}
|
|
4412
4493
|
export declare class VerifyFinserviceZhimaIdentifyRequest extends $tea.Model {
|
|
4413
4494
|
authToken?: string;
|
|
4414
4495
|
productInstanceId?: string;
|
|
@@ -4562,6 +4643,36 @@ export declare class ReceiveMdipParamsRbbfileResponse extends $tea.Model {
|
|
|
4562
4643
|
[key: string]: any;
|
|
4563
4644
|
});
|
|
4564
4645
|
}
|
|
4646
|
+
export declare class CallbackMdipAuditRequest extends $tea.Model {
|
|
4647
|
+
authToken?: string;
|
|
4648
|
+
productInstanceId?: string;
|
|
4649
|
+
auditResult: string;
|
|
4650
|
+
bizCode: string;
|
|
4651
|
+
extend?: string;
|
|
4652
|
+
static names(): {
|
|
4653
|
+
[key: string]: string;
|
|
4654
|
+
};
|
|
4655
|
+
static types(): {
|
|
4656
|
+
[key: string]: any;
|
|
4657
|
+
};
|
|
4658
|
+
constructor(map?: {
|
|
4659
|
+
[key: string]: any;
|
|
4660
|
+
});
|
|
4661
|
+
}
|
|
4662
|
+
export declare class CallbackMdipAuditResponse extends $tea.Model {
|
|
4663
|
+
reqMsgId?: string;
|
|
4664
|
+
resultCode?: string;
|
|
4665
|
+
resultMsg?: string;
|
|
4666
|
+
static names(): {
|
|
4667
|
+
[key: string]: string;
|
|
4668
|
+
};
|
|
4669
|
+
static types(): {
|
|
4670
|
+
[key: string]: any;
|
|
4671
|
+
};
|
|
4672
|
+
constructor(map?: {
|
|
4673
|
+
[key: string]: any;
|
|
4674
|
+
});
|
|
4675
|
+
}
|
|
4565
4676
|
export declare class ApplyQmpRtBatchmarketingRequest extends $tea.Model {
|
|
4566
4677
|
authToken?: string;
|
|
4567
4678
|
productInstanceId?: string;
|
|
@@ -8564,7 +8675,7 @@ export declare class QueryUmktOfflinedecisionPlandetailsRequest extends $tea.Mod
|
|
|
8564
8675
|
authToken?: string;
|
|
8565
8676
|
productInstanceId?: string;
|
|
8566
8677
|
offlineDecisionPlanId: number;
|
|
8567
|
-
resultDate
|
|
8678
|
+
resultDate?: string;
|
|
8568
8679
|
static names(): {
|
|
8569
8680
|
[key: string]: string;
|
|
8570
8681
|
};
|
|
@@ -8669,6 +8780,18 @@ export default class Client {
|
|
|
8669
8780
|
}, runtime: $Util.RuntimeOptions): Promise<{
|
|
8670
8781
|
[key: string]: any;
|
|
8671
8782
|
}>;
|
|
8783
|
+
/**
|
|
8784
|
+
* Description: 信护盾产品批量查询
|
|
8785
|
+
* Summary: 信护盾产品批量查询
|
|
8786
|
+
*/
|
|
8787
|
+
batchqueryCreditshieldProductInfo(request: BatchqueryCreditshieldProductInfoRequest): Promise<BatchqueryCreditshieldProductInfoResponse>;
|
|
8788
|
+
/**
|
|
8789
|
+
* Description: 信护盾产品批量查询
|
|
8790
|
+
* Summary: 信护盾产品批量查询
|
|
8791
|
+
*/
|
|
8792
|
+
batchqueryCreditshieldProductInfoEx(request: BatchqueryCreditshieldProductInfoRequest, headers: {
|
|
8793
|
+
[key: string]: string;
|
|
8794
|
+
}, runtime: $Util.RuntimeOptions): Promise<BatchqueryCreditshieldProductInfoResponse>;
|
|
8672
8795
|
/**
|
|
8673
8796
|
* Description: 风控云风险咨询接口
|
|
8674
8797
|
* Summary: 风控云风险咨询接口
|
|
@@ -8777,18 +8900,6 @@ export default class Client {
|
|
|
8777
8900
|
queryBatchSecurityPolicyEx(request: QueryBatchSecurityPolicyRequest, headers: {
|
|
8778
8901
|
[key: string]: string;
|
|
8779
8902
|
}, runtime: $Util.RuntimeOptions): Promise<QueryBatchSecurityPolicyResponse>;
|
|
8780
|
-
/**
|
|
8781
|
-
* Description: 峰禾API测试
|
|
8782
|
-
* Summary: 峰禾API测试
|
|
8783
|
-
*/
|
|
8784
|
-
queryFhtestFh(request: QueryFhtestFhRequest): Promise<QueryFhtestFhResponse>;
|
|
8785
|
-
/**
|
|
8786
|
-
* Description: 峰禾API测试
|
|
8787
|
-
* Summary: 峰禾API测试
|
|
8788
|
-
*/
|
|
8789
|
-
queryFhtestFhEx(request: QueryFhtestFhRequest, headers: {
|
|
8790
|
-
[key: string]: string;
|
|
8791
|
-
}, runtime: $Util.RuntimeOptions): Promise<QueryFhtestFhResponse>;
|
|
8792
8903
|
/**
|
|
8793
8904
|
* Description: 信护盾产品批量查询
|
|
8794
8905
|
* Summary: 信护盾产品批量查询
|
|
@@ -9521,6 +9632,30 @@ export default class Client {
|
|
|
9521
9632
|
queryDubbridgeUserAggregationinfoEx(request: QueryDubbridgeUserAggregationinfoRequest, headers: {
|
|
9522
9633
|
[key: string]: string;
|
|
9523
9634
|
}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeUserAggregationinfoResponse>;
|
|
9635
|
+
/**
|
|
9636
|
+
* Description: 天枢系统优惠券列表查询接口
|
|
9637
|
+
* Summary: 天枢系统优惠券列表查询接口
|
|
9638
|
+
*/
|
|
9639
|
+
queryDubbridgeMarketingCouponlist(request: QueryDubbridgeMarketingCouponlistRequest): Promise<QueryDubbridgeMarketingCouponlistResponse>;
|
|
9640
|
+
/**
|
|
9641
|
+
* Description: 天枢系统优惠券列表查询接口
|
|
9642
|
+
* Summary: 天枢系统优惠券列表查询接口
|
|
9643
|
+
*/
|
|
9644
|
+
queryDubbridgeMarketingCouponlistEx(request: QueryDubbridgeMarketingCouponlistRequest, headers: {
|
|
9645
|
+
[key: string]: string;
|
|
9646
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeMarketingCouponlistResponse>;
|
|
9647
|
+
/**
|
|
9648
|
+
* Description: 天枢系统还款方式查询
|
|
9649
|
+
* Summary: 天枢系统还款方式查询
|
|
9650
|
+
*/
|
|
9651
|
+
queryDubbridgeRepaytypeInfo(request: QueryDubbridgeRepaytypeInfoRequest): Promise<QueryDubbridgeRepaytypeInfoResponse>;
|
|
9652
|
+
/**
|
|
9653
|
+
* Description: 天枢系统还款方式查询
|
|
9654
|
+
* Summary: 天枢系统还款方式查询
|
|
9655
|
+
*/
|
|
9656
|
+
queryDubbridgeRepaytypeInfoEx(request: QueryDubbridgeRepaytypeInfoRequest, headers: {
|
|
9657
|
+
[key: string]: string;
|
|
9658
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryDubbridgeRepaytypeInfoResponse>;
|
|
9524
9659
|
/**
|
|
9525
9660
|
* Description: 四要素认证首先调用此接口
|
|
9526
9661
|
* Summary: 芝麻四要素接口
|
|
@@ -9581,6 +9716,18 @@ export default class Client {
|
|
|
9581
9716
|
receiveMdipParamsRbbfileEx(request: ReceiveMdipParamsRbbfileRequest, headers: {
|
|
9582
9717
|
[key: string]: string;
|
|
9583
9718
|
}, runtime: $Util.RuntimeOptions): Promise<ReceiveMdipParamsRbbfileResponse>;
|
|
9719
|
+
/**
|
|
9720
|
+
* Description: 多源平台审批回调接口
|
|
9721
|
+
* Summary: 多源平台审批回调接口
|
|
9722
|
+
*/
|
|
9723
|
+
callbackMdipAudit(request: CallbackMdipAuditRequest): Promise<CallbackMdipAuditResponse>;
|
|
9724
|
+
/**
|
|
9725
|
+
* Description: 多源平台审批回调接口
|
|
9726
|
+
* Summary: 多源平台审批回调接口
|
|
9727
|
+
*/
|
|
9728
|
+
callbackMdipAuditEx(request: CallbackMdipAuditRequest, headers: {
|
|
9729
|
+
[key: string]: string;
|
|
9730
|
+
}, runtime: $Util.RuntimeOptions): Promise<CallbackMdipAuditResponse>;
|
|
9584
9731
|
/**
|
|
9585
9732
|
* Description: 批量实时触达接口
|
|
9586
9733
|
* Summary: 发起触达任务
|