@antchain/riskplus 1.15.0 → 1.15.2
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 +24 -8
- package/dist/client.js +42 -17
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +70 -33
package/dist/client.d.ts
CHANGED
|
@@ -202,10 +202,10 @@ export declare class RtopRiskTag extends $tea.Model {
|
|
|
202
202
|
}
|
|
203
203
|
export declare class StatisticInfoDetail extends $tea.Model {
|
|
204
204
|
actionDriverCode?: number;
|
|
205
|
-
invokeCount?: number;
|
|
206
205
|
successCount?: number;
|
|
207
206
|
failCount?: number;
|
|
208
|
-
|
|
207
|
+
waitingSubTaskCount?: number;
|
|
208
|
+
totalCount?: number;
|
|
209
209
|
static names(): {
|
|
210
210
|
[key: string]: string;
|
|
211
211
|
};
|
|
@@ -1231,6 +1231,20 @@ export declare class RiskLabelFilterConfigInfo extends $tea.Model {
|
|
|
1231
1231
|
[key: string]: any;
|
|
1232
1232
|
});
|
|
1233
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
|
+
}
|
|
1234
1248
|
export declare class JobInfo extends $tea.Model {
|
|
1235
1249
|
jobType?: string;
|
|
1236
1250
|
workPosition?: string;
|
|
@@ -5236,6 +5250,8 @@ export declare class UploadUmktParamsFileRequest extends $tea.Model {
|
|
|
5236
5250
|
sceneStrategyId: number;
|
|
5237
5251
|
execTime?: string;
|
|
5238
5252
|
fileTemplate: string;
|
|
5253
|
+
outSerialNo: string;
|
|
5254
|
+
outInfo?: string;
|
|
5239
5255
|
static names(): {
|
|
5240
5256
|
[key: string]: string;
|
|
5241
5257
|
};
|
|
@@ -5423,12 +5439,11 @@ export declare class QueryUmktScenestrategyTestResponse extends $tea.Model {
|
|
|
5423
5439
|
export declare class ApplyUmktRobotcallRequest extends $tea.Model {
|
|
5424
5440
|
authToken?: string;
|
|
5425
5441
|
productInstanceId?: string;
|
|
5426
|
-
|
|
5427
|
-
|
|
5428
|
-
|
|
5429
|
-
|
|
5430
|
-
|
|
5431
|
-
params?: string;
|
|
5442
|
+
outSerialNo: string;
|
|
5443
|
+
sceneStrategyId: number;
|
|
5444
|
+
outInfo?: string;
|
|
5445
|
+
paramTemplate: string;
|
|
5446
|
+
customerDetails?: RobotCallCustomerParam[];
|
|
5432
5447
|
static names(): {
|
|
5433
5448
|
[key: string]: string;
|
|
5434
5449
|
};
|
|
@@ -5473,6 +5488,7 @@ export declare class QueryUmktDataaccessStatisticResponse extends $tea.Model {
|
|
|
5473
5488
|
resultCode?: string;
|
|
5474
5489
|
resultMsg?: string;
|
|
5475
5490
|
statisticResult?: StatisticResult;
|
|
5491
|
+
taskStatus?: string;
|
|
5476
5492
|
static names(): {
|
|
5477
5493
|
[key: string]: string;
|
|
5478
5494
|
};
|
package/dist/client.js
CHANGED
|
@@ -324,19 +324,19 @@ class StatisticInfoDetail extends $tea.Model {
|
|
|
324
324
|
static names() {
|
|
325
325
|
return {
|
|
326
326
|
actionDriverCode: 'action_driver_code',
|
|
327
|
-
invokeCount: 'invoke_count',
|
|
328
327
|
successCount: 'success_count',
|
|
329
328
|
failCount: 'fail_count',
|
|
330
|
-
|
|
329
|
+
waitingSubTaskCount: 'waiting_sub_task_count',
|
|
330
|
+
totalCount: 'total_count',
|
|
331
331
|
};
|
|
332
332
|
}
|
|
333
333
|
static types() {
|
|
334
334
|
return {
|
|
335
335
|
actionDriverCode: 'number',
|
|
336
|
-
invokeCount: 'number',
|
|
337
336
|
successCount: 'number',
|
|
338
337
|
failCount: 'number',
|
|
339
|
-
|
|
338
|
+
waitingSubTaskCount: 'number',
|
|
339
|
+
totalCount: 'number',
|
|
340
340
|
};
|
|
341
341
|
}
|
|
342
342
|
}
|
|
@@ -1989,6 +1989,27 @@ class RiskLabelFilterConfigInfo extends $tea.Model {
|
|
|
1989
1989
|
}
|
|
1990
1990
|
}
|
|
1991
1991
|
exports.RiskLabelFilterConfigInfo = RiskLabelFilterConfigInfo;
|
|
1992
|
+
// AI外呼每个用户维度的参数信息
|
|
1993
|
+
class RobotCallCustomerParam extends $tea.Model {
|
|
1994
|
+
constructor(map) {
|
|
1995
|
+
super(map);
|
|
1996
|
+
}
|
|
1997
|
+
static names() {
|
|
1998
|
+
return {
|
|
1999
|
+
customerKey: 'customer_key',
|
|
2000
|
+
customerOutInfo: 'customer_out_info',
|
|
2001
|
+
properties: 'properties',
|
|
2002
|
+
};
|
|
2003
|
+
}
|
|
2004
|
+
static types() {
|
|
2005
|
+
return {
|
|
2006
|
+
customerKey: 'string',
|
|
2007
|
+
customerOutInfo: 'string',
|
|
2008
|
+
properties: 'string',
|
|
2009
|
+
};
|
|
2010
|
+
}
|
|
2011
|
+
}
|
|
2012
|
+
exports.RobotCallCustomerParam = RobotCallCustomerParam;
|
|
1992
2013
|
// 天枢系统职业信息
|
|
1993
2014
|
class JobInfo extends $tea.Model {
|
|
1994
2015
|
constructor(map) {
|
|
@@ -8128,6 +8149,8 @@ class UploadUmktParamsFileRequest extends $tea.Model {
|
|
|
8128
8149
|
sceneStrategyId: 'scene_strategy_id',
|
|
8129
8150
|
execTime: 'exec_time',
|
|
8130
8151
|
fileTemplate: 'file_template',
|
|
8152
|
+
outSerialNo: 'out_serial_no',
|
|
8153
|
+
outInfo: 'out_info',
|
|
8131
8154
|
};
|
|
8132
8155
|
}
|
|
8133
8156
|
static types() {
|
|
@@ -8140,6 +8163,8 @@ class UploadUmktParamsFileRequest extends $tea.Model {
|
|
|
8140
8163
|
sceneStrategyId: 'number',
|
|
8141
8164
|
execTime: 'string',
|
|
8142
8165
|
fileTemplate: 'string',
|
|
8166
|
+
outSerialNo: 'string',
|
|
8167
|
+
outInfo: 'string',
|
|
8143
8168
|
};
|
|
8144
8169
|
}
|
|
8145
8170
|
}
|
|
@@ -8412,24 +8437,22 @@ class ApplyUmktRobotcallRequest extends $tea.Model {
|
|
|
8412
8437
|
return {
|
|
8413
8438
|
authToken: 'auth_token',
|
|
8414
8439
|
productInstanceId: 'product_instance_id',
|
|
8415
|
-
|
|
8416
|
-
|
|
8417
|
-
|
|
8418
|
-
|
|
8419
|
-
|
|
8420
|
-
params: 'params',
|
|
8440
|
+
outSerialNo: 'out_serial_no',
|
|
8441
|
+
sceneStrategyId: 'scene_strategy_id',
|
|
8442
|
+
outInfo: 'out_info',
|
|
8443
|
+
paramTemplate: 'param_template',
|
|
8444
|
+
customerDetails: 'customer_details',
|
|
8421
8445
|
};
|
|
8422
8446
|
}
|
|
8423
8447
|
static types() {
|
|
8424
8448
|
return {
|
|
8425
8449
|
authToken: 'string',
|
|
8426
8450
|
productInstanceId: 'string',
|
|
8427
|
-
|
|
8428
|
-
|
|
8429
|
-
|
|
8430
|
-
|
|
8431
|
-
|
|
8432
|
-
params: 'string',
|
|
8451
|
+
outSerialNo: 'string',
|
|
8452
|
+
sceneStrategyId: 'number',
|
|
8453
|
+
outInfo: 'string',
|
|
8454
|
+
paramTemplate: 'string',
|
|
8455
|
+
customerDetails: { 'type': 'array', 'itemType': RobotCallCustomerParam },
|
|
8433
8456
|
};
|
|
8434
8457
|
}
|
|
8435
8458
|
}
|
|
@@ -8486,6 +8509,7 @@ class QueryUmktDataaccessStatisticResponse extends $tea.Model {
|
|
|
8486
8509
|
resultCode: 'result_code',
|
|
8487
8510
|
resultMsg: 'result_msg',
|
|
8488
8511
|
statisticResult: 'statistic_result',
|
|
8512
|
+
taskStatus: 'task_status',
|
|
8489
8513
|
};
|
|
8490
8514
|
}
|
|
8491
8515
|
static types() {
|
|
@@ -8494,6 +8518,7 @@ class QueryUmktDataaccessStatisticResponse extends $tea.Model {
|
|
|
8494
8518
|
resultCode: 'string',
|
|
8495
8519
|
resultMsg: 'string',
|
|
8496
8520
|
statisticResult: StatisticResult,
|
|
8521
|
+
taskStatus: 'string',
|
|
8497
8522
|
};
|
|
8498
8523
|
}
|
|
8499
8524
|
}
|
|
@@ -9108,7 +9133,7 @@ class Client {
|
|
|
9108
9133
|
req_msg_id: alipay_util_1.default.getNonce(),
|
|
9109
9134
|
access_key: this._accessKeyId,
|
|
9110
9135
|
base_sdk_version: "TeaSDK-2.0",
|
|
9111
|
-
sdk_version: "1.15.
|
|
9136
|
+
sdk_version: "1.15.2",
|
|
9112
9137
|
_prod_code: "RISKPLUS",
|
|
9113
9138
|
_prod_channel: "undefined",
|
|
9114
9139
|
};
|