@antchain/riskplus 1.19.22 → 1.19.23

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antchain/riskplus",
3
- "version": "1.19.22",
3
+ "version": "1.19.23",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -11372,6 +11372,8 @@ export class QueryQmpRobotcallDetailRequest extends $tea.Model {
11372
11372
  templateType: string;
11373
11373
  // 场景策略id
11374
11374
  sceneStrategyId: number;
11375
+ // 分流字段,行业标签区分哈啰流量归属于umkt或qmp
11376
+ industryTag?: string;
11375
11377
  static names(): { [key: string]: string } {
11376
11378
  return {
11377
11379
  authToken: 'auth_token',
@@ -11380,6 +11382,7 @@ export class QueryQmpRobotcallDetailRequest extends $tea.Model {
11380
11382
  phoneNumber: 'phone_number',
11381
11383
  templateType: 'template_type',
11382
11384
  sceneStrategyId: 'scene_strategy_id',
11385
+ industryTag: 'industry_tag',
11383
11386
  };
11384
11387
  }
11385
11388
 
@@ -11391,6 +11394,7 @@ export class QueryQmpRobotcallDetailRequest extends $tea.Model {
11391
11394
  phoneNumber: 'string',
11392
11395
  templateType: 'string',
11393
11396
  sceneStrategyId: 'number',
11397
+ industryTag: 'string',
11394
11398
  };
11395
11399
  }
11396
11400
 
@@ -11445,11 +11449,14 @@ export class QueryQmpDataaccessStatisticRequest extends $tea.Model {
11445
11449
  productInstanceId?: string;
11446
11450
  // 查询回执统计的任务id
11447
11451
  taskId: number;
11452
+ // 分流字段,行业标签区分哈啰流量归属于umkt或qmp
11453
+ industryTag?: string;
11448
11454
  static names(): { [key: string]: string } {
11449
11455
  return {
11450
11456
  authToken: 'auth_token',
11451
11457
  productInstanceId: 'product_instance_id',
11452
11458
  taskId: 'task_id',
11459
+ industryTag: 'industry_tag',
11453
11460
  };
11454
11461
  }
11455
11462
 
@@ -11458,6 +11465,7 @@ export class QueryQmpDataaccessStatisticRequest extends $tea.Model {
11458
11465
  authToken: 'string',
11459
11466
  productInstanceId: 'string',
11460
11467
  taskId: 'number',
11468
+ industryTag: 'string',
11461
11469
  };
11462
11470
  }
11463
11471
 
@@ -11510,12 +11518,15 @@ export class QueryQmpRobotcallStatisticinfoRequest extends $tea.Model {
11510
11518
  sceneStrategyId: number;
11511
11519
  // 客户透传字段
11512
11520
  outInfo: string;
11521
+ // 分流字段,行业标签区分哈啰流量归属于umkt或qmp
11522
+ industryTag?: string;
11513
11523
  static names(): { [key: string]: string } {
11514
11524
  return {
11515
11525
  authToken: 'auth_token',
11516
11526
  productInstanceId: 'product_instance_id',
11517
11527
  sceneStrategyId: 'scene_strategy_id',
11518
11528
  outInfo: 'out_info',
11529
+ industryTag: 'industry_tag',
11519
11530
  };
11520
11531
  }
11521
11532
 
@@ -11525,6 +11536,7 @@ export class QueryQmpRobotcallStatisticinfoRequest extends $tea.Model {
11525
11536
  productInstanceId: 'string',
11526
11537
  sceneStrategyId: 'number',
11527
11538
  outInfo: 'string',
11539
+ industryTag: 'string',
11528
11540
  };
11529
11541
  }
11530
11542
 
@@ -11601,6 +11613,8 @@ export class BatchqueryQmpTaskDetailRequest extends $tea.Model {
11601
11613
  callDate?: string;
11602
11614
  // 结束外呼时间
11603
11615
  endCallDate?: string;
11616
+ // 分流字段,行业标签区分哈啰流量归属于umkt或qmp
11617
+ industryTag?: string;
11604
11618
  static names(): { [key: string]: string } {
11605
11619
  return {
11606
11620
  authToken: 'auth_token',
@@ -11611,6 +11625,7 @@ export class BatchqueryQmpTaskDetailRequest extends $tea.Model {
11611
11625
  sceneStrategyId: 'scene_strategy_id',
11612
11626
  callDate: 'call_date',
11613
11627
  endCallDate: 'end_call_date',
11628
+ industryTag: 'industry_tag',
11614
11629
  };
11615
11630
  }
11616
11631
 
@@ -11624,6 +11639,7 @@ export class BatchqueryQmpTaskDetailRequest extends $tea.Model {
11624
11639
  sceneStrategyId: 'number',
11625
11640
  callDate: 'string',
11626
11641
  endCallDate: 'string',
11642
+ industryTag: 'string',
11627
11643
  };
11628
11644
  }
11629
11645
 
@@ -11745,11 +11761,14 @@ export class BatchqueryQmpActionplanDetailRequest extends $tea.Model {
11745
11761
  productInstanceId?: string;
11746
11762
  // 场景策略id
11747
11763
  sceneStrategyId: number[];
11764
+ // 分流字段,行业标签区分哈啰流量归属于umkt或qmp
11765
+ industryTag?: string;
11748
11766
  static names(): { [key: string]: string } {
11749
11767
  return {
11750
11768
  authToken: 'auth_token',
11751
11769
  productInstanceId: 'product_instance_id',
11752
11770
  sceneStrategyId: 'scene_strategy_id',
11771
+ industryTag: 'industry_tag',
11753
11772
  };
11754
11773
  }
11755
11774
 
@@ -11758,6 +11777,7 @@ export class BatchqueryQmpActionplanDetailRequest extends $tea.Model {
11758
11777
  authToken: 'string',
11759
11778
  productInstanceId: 'string',
11760
11779
  sceneStrategyId: { 'type': 'array', 'itemType': 'number' },
11780
+ industryTag: 'string',
11761
11781
  };
11762
11782
  }
11763
11783
 
@@ -11879,6 +11899,8 @@ export class BatchqueryQmpTenantActionplaninfoRequest extends $tea.Model {
11879
11899
  pageNum: number;
11880
11900
  // 页数
11881
11901
  pageSize: number;
11902
+ // 分流字段,行业标签区分哈啰流量归属于umkt或qmp
11903
+ industryTag?: string;
11882
11904
  static names(): { [key: string]: string } {
11883
11905
  return {
11884
11906
  authToken: 'auth_token',
@@ -11886,6 +11908,7 @@ export class BatchqueryQmpTenantActionplaninfoRequest extends $tea.Model {
11886
11908
  contentType: 'content_type',
11887
11909
  pageNum: 'page_num',
11888
11910
  pageSize: 'page_size',
11911
+ industryTag: 'industry_tag',
11889
11912
  };
11890
11913
  }
11891
11914
 
@@ -11896,6 +11919,7 @@ export class BatchqueryQmpTenantActionplaninfoRequest extends $tea.Model {
11896
11919
  contentType: 'string',
11897
11920
  pageNum: 'number',
11898
11921
  pageSize: 'number',
11922
+ industryTag: 'string',
11899
11923
  };
11900
11924
  }
11901
11925
 
@@ -11950,6 +11974,8 @@ export class QueryQmpTenantActionplaninfoRequest extends $tea.Model {
11950
11974
  pageSize?: number;
11951
11975
  // 渠道code
11952
11976
  channelType: string;
11977
+ // 分流字段,行业标签区分哈啰流量归属于umkt或qmp
11978
+ industryTag?: string;
11953
11979
  static names(): { [key: string]: string } {
11954
11980
  return {
11955
11981
  authToken: 'auth_token',
@@ -11957,6 +11983,7 @@ export class QueryQmpTenantActionplaninfoRequest extends $tea.Model {
11957
11983
  pageNum: 'page_num',
11958
11984
  pageSize: 'page_size',
11959
11985
  channelType: 'channel_type',
11986
+ industryTag: 'industry_tag',
11960
11987
  };
11961
11988
  }
11962
11989
 
@@ -11967,6 +11994,7 @@ export class QueryQmpTenantActionplaninfoRequest extends $tea.Model {
11967
11994
  pageNum: 'number',
11968
11995
  pageSize: 'number',
11969
11996
  channelType: 'string',
11997
+ industryTag: 'string',
11970
11998
  };
11971
11999
  }
11972
12000
 
@@ -19903,7 +19931,7 @@ export default class Client {
19903
19931
  req_msg_id: AntchainUtil.getNonce(),
19904
19932
  access_key: this._accessKeyId,
19905
19933
  base_sdk_version: "TeaSDK-2.0",
19906
- sdk_version: "1.19.22",
19934
+ sdk_version: "1.19.23",
19907
19935
  _prod_code: "RISKPLUS",
19908
19936
  _prod_channel: "undefined",
19909
19937
  };