@antchain/riskplus 1.16.57 → 1.16.59
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 +3 -0
- package/dist/client.js +7 -1
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +13 -1
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -15588,6 +15588,8 @@ export class CallbackUmktRobotcallRequest extends $tea.Model {
|
|
|
15588
15588
|
callId: string;
|
|
15589
15589
|
// 外呼任务编号
|
|
15590
15590
|
taskId: number;
|
|
15591
|
+
// 渠道侧任务名称
|
|
15592
|
+
taskName: string;
|
|
15591
15593
|
// 外呼的话术模板ID,可以为空
|
|
15592
15594
|
templateId?: number;
|
|
15593
15595
|
// 外呼状态编码
|
|
@@ -15666,6 +15668,7 @@ export class CallbackUmktRobotcallRequest extends $tea.Model {
|
|
|
15666
15668
|
tag: 'tag',
|
|
15667
15669
|
callId: 'call_id',
|
|
15668
15670
|
taskId: 'task_id',
|
|
15671
|
+
taskName: 'task_name',
|
|
15669
15672
|
templateId: 'template_id',
|
|
15670
15673
|
statusCode: 'status_code',
|
|
15671
15674
|
statusDescription: 'status_description',
|
|
@@ -15714,6 +15717,7 @@ export class CallbackUmktRobotcallRequest extends $tea.Model {
|
|
|
15714
15717
|
tag: 'string',
|
|
15715
15718
|
callId: 'string',
|
|
15716
15719
|
taskId: 'number',
|
|
15720
|
+
taskName: 'string',
|
|
15717
15721
|
templateId: 'number',
|
|
15718
15722
|
statusCode: 'number',
|
|
15719
15723
|
statusDescription: 'string',
|
|
@@ -15892,6 +15896,10 @@ export class CallbackUmktSmsReportRequest extends $tea.Model {
|
|
|
15892
15896
|
bizProperties: string;
|
|
15893
15897
|
// 发送卡片短信时,文本短信状态报告中才会有该字段,且取值为CARD_SMS,发送纯文本短信时,状态报告中没有该字段
|
|
15894
15898
|
smsType?: string;
|
|
15899
|
+
// 运营商
|
|
15900
|
+
serviceProvider: string;
|
|
15901
|
+
// 手机号码所属城市
|
|
15902
|
+
city?: string;
|
|
15895
15903
|
static names(): { [key: string]: string } {
|
|
15896
15904
|
return {
|
|
15897
15905
|
authToken: 'auth_token',
|
|
@@ -15907,6 +15915,8 @@ export class CallbackUmktSmsReportRequest extends $tea.Model {
|
|
|
15907
15915
|
bizId: 'biz_id',
|
|
15908
15916
|
bizProperties: 'biz_properties',
|
|
15909
15917
|
smsType: 'sms_type',
|
|
15918
|
+
serviceProvider: 'service_provider',
|
|
15919
|
+
city: 'city',
|
|
15910
15920
|
};
|
|
15911
15921
|
}
|
|
15912
15922
|
|
|
@@ -15925,6 +15935,8 @@ export class CallbackUmktSmsReportRequest extends $tea.Model {
|
|
|
15925
15935
|
bizId: 'string',
|
|
15926
15936
|
bizProperties: 'string',
|
|
15927
15937
|
smsType: 'string',
|
|
15938
|
+
serviceProvider: 'string',
|
|
15939
|
+
city: 'string',
|
|
15928
15940
|
};
|
|
15929
15941
|
}
|
|
15930
15942
|
|
|
@@ -16655,7 +16667,7 @@ export default class Client {
|
|
|
16655
16667
|
req_msg_id: AntchainUtil.getNonce(),
|
|
16656
16668
|
access_key: this._accessKeyId,
|
|
16657
16669
|
base_sdk_version: "TeaSDK-2.0",
|
|
16658
|
-
sdk_version: "1.16.
|
|
16670
|
+
sdk_version: "1.16.59",
|
|
16659
16671
|
_prod_code: "RISKPLUS",
|
|
16660
16672
|
_prod_channel: "undefined",
|
|
16661
16673
|
};
|