@antchain/riskplus 1.13.14 → 1.15.1
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 +171 -9
- package/dist/client.js +269 -19
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +404 -36
package/dist/client.d.ts
CHANGED
|
@@ -168,6 +168,20 @@ export declare class RtopTypeDistribution extends $tea.Model {
|
|
|
168
168
|
[key: string]: any;
|
|
169
169
|
});
|
|
170
170
|
}
|
|
171
|
+
export declare class UmktInfoModel extends $tea.Model {
|
|
172
|
+
sceneStrategyId: number;
|
|
173
|
+
umktResult: number;
|
|
174
|
+
umktOutPutInfo: string;
|
|
175
|
+
static names(): {
|
|
176
|
+
[key: string]: string;
|
|
177
|
+
};
|
|
178
|
+
static types(): {
|
|
179
|
+
[key: string]: any;
|
|
180
|
+
};
|
|
181
|
+
constructor(map?: {
|
|
182
|
+
[key: string]: any;
|
|
183
|
+
});
|
|
184
|
+
}
|
|
171
185
|
export declare class RtopRiskTag extends $tea.Model {
|
|
172
186
|
tagId: string;
|
|
173
187
|
tagName: string;
|
|
@@ -188,10 +202,10 @@ export declare class RtopRiskTag extends $tea.Model {
|
|
|
188
202
|
}
|
|
189
203
|
export declare class StatisticInfoDetail extends $tea.Model {
|
|
190
204
|
actionDriverCode?: number;
|
|
191
|
-
invokeCount?: number;
|
|
192
205
|
successCount?: number;
|
|
193
206
|
failCount?: number;
|
|
194
|
-
|
|
207
|
+
waitingSubTaskCount?: number;
|
|
208
|
+
totalCount?: number;
|
|
195
209
|
static names(): {
|
|
196
210
|
[key: string]: string;
|
|
197
211
|
};
|
|
@@ -233,7 +247,7 @@ export declare class RepayRef extends $tea.Model {
|
|
|
233
247
|
customNo: string;
|
|
234
248
|
period: string;
|
|
235
249
|
needAmount: number;
|
|
236
|
-
|
|
250
|
+
needCorpus: number;
|
|
237
251
|
needAccrual: number;
|
|
238
252
|
needFee: number;
|
|
239
253
|
alreadyAmount: number;
|
|
@@ -1130,6 +1144,19 @@ export declare class CustomerUmktInfoModel extends $tea.Model {
|
|
|
1130
1144
|
[key: string]: any;
|
|
1131
1145
|
});
|
|
1132
1146
|
}
|
|
1147
|
+
export declare class CustomerUmktInfosModel extends $tea.Model {
|
|
1148
|
+
umktResults: UmktInfoModel[];
|
|
1149
|
+
customerKey: string;
|
|
1150
|
+
static names(): {
|
|
1151
|
+
[key: string]: string;
|
|
1152
|
+
};
|
|
1153
|
+
static types(): {
|
|
1154
|
+
[key: string]: any;
|
|
1155
|
+
};
|
|
1156
|
+
constructor(map?: {
|
|
1157
|
+
[key: string]: any;
|
|
1158
|
+
});
|
|
1159
|
+
}
|
|
1133
1160
|
export declare class ModelDetails extends $tea.Model {
|
|
1134
1161
|
sceneCode: string;
|
|
1135
1162
|
score: string;
|
|
@@ -1204,6 +1231,20 @@ export declare class RiskLabelFilterConfigInfo extends $tea.Model {
|
|
|
1204
1231
|
[key: string]: any;
|
|
1205
1232
|
});
|
|
1206
1233
|
}
|
|
1234
|
+
export declare class RobotCallCustomerParam extends $tea.Model {
|
|
1235
|
+
customerKey: string;
|
|
1236
|
+
customerOutInfo?: string;
|
|
1237
|
+
properties?: string;
|
|
1238
|
+
static names(): {
|
|
1239
|
+
[key: string]: string;
|
|
1240
|
+
};
|
|
1241
|
+
static types(): {
|
|
1242
|
+
[key: string]: any;
|
|
1243
|
+
};
|
|
1244
|
+
constructor(map?: {
|
|
1245
|
+
[key: string]: any;
|
|
1246
|
+
});
|
|
1247
|
+
}
|
|
1207
1248
|
export declare class JobInfo extends $tea.Model {
|
|
1208
1249
|
jobType?: string;
|
|
1209
1250
|
workPosition?: string;
|
|
@@ -1330,6 +1371,24 @@ export declare class CreditAmount extends $tea.Model {
|
|
|
1330
1371
|
[key: string]: any;
|
|
1331
1372
|
});
|
|
1332
1373
|
}
|
|
1374
|
+
export declare class CpaasSmsTemplate extends $tea.Model {
|
|
1375
|
+
templateType?: string;
|
|
1376
|
+
templateName?: string;
|
|
1377
|
+
templateContent?: string;
|
|
1378
|
+
status?: string;
|
|
1379
|
+
templateCode?: string;
|
|
1380
|
+
failReason?: string;
|
|
1381
|
+
createTime?: string;
|
|
1382
|
+
static names(): {
|
|
1383
|
+
[key: string]: string;
|
|
1384
|
+
};
|
|
1385
|
+
static types(): {
|
|
1386
|
+
[key: string]: any;
|
|
1387
|
+
};
|
|
1388
|
+
constructor(map?: {
|
|
1389
|
+
[key: string]: any;
|
|
1390
|
+
});
|
|
1391
|
+
}
|
|
1333
1392
|
export declare class RtopCompanyOpinionDetail extends $tea.Model {
|
|
1334
1393
|
docContent: string;
|
|
1335
1394
|
docId: string;
|
|
@@ -2419,6 +2478,10 @@ export declare class BindDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
2419
2478
|
customerNo: string;
|
|
2420
2479
|
bankCardNo: string;
|
|
2421
2480
|
channelCode: string;
|
|
2481
|
+
customName?: string;
|
|
2482
|
+
openId?: string;
|
|
2483
|
+
cardNo?: string;
|
|
2484
|
+
mobile?: string;
|
|
2422
2485
|
static names(): {
|
|
2423
2486
|
[key: string]: string;
|
|
2424
2487
|
};
|
|
@@ -2452,6 +2515,8 @@ export declare class VerifyDubbridgeCustomerBankcardRequest extends $tea.Model {
|
|
|
2452
2515
|
customNo?: string;
|
|
2453
2516
|
bindSerialNo: string;
|
|
2454
2517
|
bindValidCode: string;
|
|
2518
|
+
bankCardNo: string;
|
|
2519
|
+
channelCode: string;
|
|
2455
2520
|
static names(): {
|
|
2456
2521
|
[key: string]: string;
|
|
2457
2522
|
};
|
|
@@ -3105,6 +3170,7 @@ export declare class RepayDubbridgeRepayWithholdRequest extends $tea.Model {
|
|
|
3105
3170
|
originalOrderNo: string;
|
|
3106
3171
|
repayType: string;
|
|
3107
3172
|
orderNo: string;
|
|
3173
|
+
validRepayAmount?: string;
|
|
3108
3174
|
static names(): {
|
|
3109
3175
|
[key: string]: string;
|
|
3110
3176
|
};
|
|
@@ -5184,6 +5250,8 @@ export declare class UploadUmktParamsFileRequest extends $tea.Model {
|
|
|
5184
5250
|
sceneStrategyId: number;
|
|
5185
5251
|
execTime?: string;
|
|
5186
5252
|
fileTemplate: string;
|
|
5253
|
+
outSerialNo: string;
|
|
5254
|
+
outInfo?: string;
|
|
5187
5255
|
static names(): {
|
|
5188
5256
|
[key: string]: string;
|
|
5189
5257
|
};
|
|
@@ -5371,12 +5439,11 @@ export declare class QueryUmktScenestrategyTestResponse extends $tea.Model {
|
|
|
5371
5439
|
export declare class ApplyUmktRobotcallRequest extends $tea.Model {
|
|
5372
5440
|
authToken?: string;
|
|
5373
5441
|
productInstanceId?: string;
|
|
5374
|
-
|
|
5375
|
-
|
|
5376
|
-
|
|
5377
|
-
|
|
5378
|
-
|
|
5379
|
-
params?: string;
|
|
5442
|
+
outSerialNo: string;
|
|
5443
|
+
sceneStrategyId: number;
|
|
5444
|
+
outInfo?: string;
|
|
5445
|
+
fileTemplate: string;
|
|
5446
|
+
customerDetails?: RobotCallCustomerParam[];
|
|
5380
5447
|
static names(): {
|
|
5381
5448
|
[key: string]: string;
|
|
5382
5449
|
};
|
|
@@ -5421,6 +5488,7 @@ export declare class QueryUmktDataaccessStatisticResponse extends $tea.Model {
|
|
|
5421
5488
|
resultCode?: string;
|
|
5422
5489
|
resultMsg?: string;
|
|
5423
5490
|
statisticResult?: StatisticResult;
|
|
5491
|
+
taskStatus?: string;
|
|
5424
5492
|
static names(): {
|
|
5425
5493
|
[key: string]: string;
|
|
5426
5494
|
};
|
|
@@ -5666,6 +5734,76 @@ export declare class SendUmktDigitalsmsBatchResponse extends $tea.Model {
|
|
|
5666
5734
|
[key: string]: any;
|
|
5667
5735
|
});
|
|
5668
5736
|
}
|
|
5737
|
+
export declare class QueryUmktCpaassmsTemplateRequest extends $tea.Model {
|
|
5738
|
+
authToken?: string;
|
|
5739
|
+
productInstanceId?: string;
|
|
5740
|
+
tenantId: string;
|
|
5741
|
+
smsType: string;
|
|
5742
|
+
tenantIndustry: string;
|
|
5743
|
+
status?: string;
|
|
5744
|
+
pageNum?: number;
|
|
5745
|
+
pageSize?: number;
|
|
5746
|
+
static names(): {
|
|
5747
|
+
[key: string]: string;
|
|
5748
|
+
};
|
|
5749
|
+
static types(): {
|
|
5750
|
+
[key: string]: any;
|
|
5751
|
+
};
|
|
5752
|
+
constructor(map?: {
|
|
5753
|
+
[key: string]: any;
|
|
5754
|
+
});
|
|
5755
|
+
}
|
|
5756
|
+
export declare class QueryUmktCpaassmsTemplateResponse extends $tea.Model {
|
|
5757
|
+
reqMsgId?: string;
|
|
5758
|
+
resultCode?: string;
|
|
5759
|
+
resultMsg?: string;
|
|
5760
|
+
total?: number;
|
|
5761
|
+
pageSize?: number;
|
|
5762
|
+
pageNum?: number;
|
|
5763
|
+
cpassSmsTemplates?: CpaasSmsTemplate[];
|
|
5764
|
+
static names(): {
|
|
5765
|
+
[key: string]: string;
|
|
5766
|
+
};
|
|
5767
|
+
static types(): {
|
|
5768
|
+
[key: string]: any;
|
|
5769
|
+
};
|
|
5770
|
+
constructor(map?: {
|
|
5771
|
+
[key: string]: any;
|
|
5772
|
+
});
|
|
5773
|
+
}
|
|
5774
|
+
export declare class BatchqueryUmktRtMixedmarketingRequest extends $tea.Model {
|
|
5775
|
+
authToken?: string;
|
|
5776
|
+
productInstanceId?: string;
|
|
5777
|
+
sceneStrategyIds: number[];
|
|
5778
|
+
sceneStrategySetCode?: string;
|
|
5779
|
+
queryTemplate: string;
|
|
5780
|
+
customerKeys: string[];
|
|
5781
|
+
bizSerialNo: string;
|
|
5782
|
+
static names(): {
|
|
5783
|
+
[key: string]: string;
|
|
5784
|
+
};
|
|
5785
|
+
static types(): {
|
|
5786
|
+
[key: string]: any;
|
|
5787
|
+
};
|
|
5788
|
+
constructor(map?: {
|
|
5789
|
+
[key: string]: any;
|
|
5790
|
+
});
|
|
5791
|
+
}
|
|
5792
|
+
export declare class BatchqueryUmktRtMixedmarketingResponse extends $tea.Model {
|
|
5793
|
+
reqMsgId?: string;
|
|
5794
|
+
resultCode?: string;
|
|
5795
|
+
resultMsg?: string;
|
|
5796
|
+
queryResults?: CustomerUmktInfosModel[];
|
|
5797
|
+
static names(): {
|
|
5798
|
+
[key: string]: string;
|
|
5799
|
+
};
|
|
5800
|
+
static types(): {
|
|
5801
|
+
[key: string]: any;
|
|
5802
|
+
};
|
|
5803
|
+
constructor(map?: {
|
|
5804
|
+
[key: string]: any;
|
|
5805
|
+
});
|
|
5806
|
+
}
|
|
5669
5807
|
export declare class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
5670
5808
|
authToken?: string;
|
|
5671
5809
|
apiCode: string;
|
|
@@ -7258,6 +7396,30 @@ export default class Client {
|
|
|
7258
7396
|
sendUmktDigitalsmsBatchEx(request: SendUmktDigitalsmsBatchRequest, headers: {
|
|
7259
7397
|
[key: string]: string;
|
|
7260
7398
|
}, runtime: $Util.RuntimeOptions): Promise<SendUmktDigitalsmsBatchResponse>;
|
|
7399
|
+
/**
|
|
7400
|
+
* Description: 分页查询cpaas短信模板
|
|
7401
|
+
* Summary: cpaas短信模板分页查询
|
|
7402
|
+
*/
|
|
7403
|
+
queryUmktCpaassmsTemplate(request: QueryUmktCpaassmsTemplateRequest): Promise<QueryUmktCpaassmsTemplateResponse>;
|
|
7404
|
+
/**
|
|
7405
|
+
* Description: 分页查询cpaas短信模板
|
|
7406
|
+
* Summary: cpaas短信模板分页查询
|
|
7407
|
+
*/
|
|
7408
|
+
queryUmktCpaassmsTemplateEx(request: QueryUmktCpaassmsTemplateRequest, headers: {
|
|
7409
|
+
[key: string]: string;
|
|
7410
|
+
}, runtime: $Util.RuntimeOptions): Promise<QueryUmktCpaassmsTemplateResponse>;
|
|
7411
|
+
/**
|
|
7412
|
+
* Description: 实时混合批量营销圈客
|
|
7413
|
+
* Summary: 实时混合批量营销圈客
|
|
7414
|
+
*/
|
|
7415
|
+
batchqueryUmktRtMixedmarketing(request: BatchqueryUmktRtMixedmarketingRequest): Promise<BatchqueryUmktRtMixedmarketingResponse>;
|
|
7416
|
+
/**
|
|
7417
|
+
* Description: 实时混合批量营销圈客
|
|
7418
|
+
* Summary: 实时混合批量营销圈客
|
|
7419
|
+
*/
|
|
7420
|
+
batchqueryUmktRtMixedmarketingEx(request: BatchqueryUmktRtMixedmarketingRequest, headers: {
|
|
7421
|
+
[key: string]: string;
|
|
7422
|
+
}, runtime: $Util.RuntimeOptions): Promise<BatchqueryUmktRtMixedmarketingResponse>;
|
|
7261
7423
|
/**
|
|
7262
7424
|
* Description: 创建HTTP PUT提交的文件上传
|
|
7263
7425
|
* Summary: 文件上传创建
|