@antchain/riskplus 1.16.21 → 1.16.22

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 CHANGED
@@ -815,24 +815,6 @@ export declare class RtopCrowdRiskSummaryResp extends $tea.Model {
815
815
  [key: string]: any;
816
816
  });
817
817
  }
818
- export declare class TenantActionTouchPlanInfo extends $tea.Model {
819
- sceneStrategyId: number;
820
- sceneStrategyName: string;
821
- sceneStrategyStatus: string;
822
- actionDriverCode: number;
823
- channelCode: string;
824
- gmtCreate: string;
825
- gmtModified: string;
826
- static names(): {
827
- [key: string]: string;
828
- };
829
- static types(): {
830
- [key: string]: any;
831
- };
832
- constructor(map?: {
833
- [key: string]: any;
834
- });
835
- }
836
818
  export declare class StatisticResult extends $tea.Model {
837
819
  validCount: number;
838
820
  statisticInfoDetailList: StatisticInfoDetail[];
@@ -1522,6 +1504,24 @@ export declare class CustomStatus extends $tea.Model {
1522
1504
  [key: string]: any;
1523
1505
  });
1524
1506
  }
1507
+ export declare class TenantActionPlanInfo extends $tea.Model {
1508
+ sceneStrategyId: number;
1509
+ sceneStrategyName: string;
1510
+ sceneStrategyStatus: string;
1511
+ actionDriverCode: number;
1512
+ channelCode: string;
1513
+ gmtCreate: string;
1514
+ gmtModified: string;
1515
+ static names(): {
1516
+ [key: string]: string;
1517
+ };
1518
+ static types(): {
1519
+ [key: string]: any;
1520
+ };
1521
+ constructor(map?: {
1522
+ [key: string]: any;
1523
+ });
1524
+ }
1525
1525
  export declare class XNameValuePair extends $tea.Model {
1526
1526
  name: string;
1527
1527
  value: string;
@@ -6127,7 +6127,7 @@ export declare class QueryUmktRobotcallStatisticinfoResponse extends $tea.Model
6127
6127
  [key: string]: any;
6128
6128
  });
6129
6129
  }
6130
- export declare class QueryUmktTenantStrategyinfoRequest extends $tea.Model {
6130
+ export declare class QueryUmktTenantActionplaninfoRequest extends $tea.Model {
6131
6131
  authToken?: string;
6132
6132
  productInstanceId?: string;
6133
6133
  pageNum?: number;
@@ -6143,11 +6143,11 @@ export declare class QueryUmktTenantStrategyinfoRequest extends $tea.Model {
6143
6143
  [key: string]: any;
6144
6144
  });
6145
6145
  }
6146
- export declare class QueryUmktTenantStrategyinfoResponse extends $tea.Model {
6146
+ export declare class QueryUmktTenantActionplaninfoResponse extends $tea.Model {
6147
6147
  reqMsgId?: string;
6148
6148
  resultCode?: string;
6149
6149
  resultMsg?: string;
6150
- queryResult?: TenantActionTouchPlanInfo[];
6150
+ queryResult?: TenantActionPlanInfo[];
6151
6151
  pageNum?: number;
6152
6152
  pageSize?: number;
6153
6153
  totalCount?: number;
@@ -7865,14 +7865,14 @@ export default class Client {
7865
7865
  * Description: 营销盾租户场景信息查询
7866
7866
  * Summary: 营销盾租户场景信息查询
7867
7867
  */
7868
- queryUmktTenantStrategyinfo(request: QueryUmktTenantStrategyinfoRequest): Promise<QueryUmktTenantStrategyinfoResponse>;
7868
+ queryUmktTenantActionplaninfo(request: QueryUmktTenantActionplaninfoRequest): Promise<QueryUmktTenantActionplaninfoResponse>;
7869
7869
  /**
7870
7870
  * Description: 营销盾租户场景信息查询
7871
7871
  * Summary: 营销盾租户场景信息查询
7872
7872
  */
7873
- queryUmktTenantStrategyinfoEx(request: QueryUmktTenantStrategyinfoRequest, headers: {
7873
+ queryUmktTenantActionplaninfoEx(request: QueryUmktTenantActionplaninfoRequest, headers: {
7874
7874
  [key: string]: string;
7875
- }, runtime: $Util.RuntimeOptions): Promise<QueryUmktTenantStrategyinfoResponse>;
7875
+ }, runtime: $Util.RuntimeOptions): Promise<QueryUmktTenantActionplaninfoResponse>;
7876
7876
  /**
7877
7877
  * Description: 创建HTTP PUT提交的文件上传
7878
7878
  * Summary: 文件上传创建
package/dist/client.js CHANGED
@@ -1324,35 +1324,6 @@ class RtopCrowdRiskSummaryResp extends $tea.Model {
1324
1324
  }
1325
1325
  }
1326
1326
  exports.RtopCrowdRiskSummaryResp = RtopCrowdRiskSummaryResp;
1327
- // 营销盾租户触达策略计划信息
1328
- class TenantActionTouchPlanInfo extends $tea.Model {
1329
- constructor(map) {
1330
- super(map);
1331
- }
1332
- static names() {
1333
- return {
1334
- sceneStrategyId: 'scene_strategy_id',
1335
- sceneStrategyName: 'scene_strategy_name',
1336
- sceneStrategyStatus: 'scene_strategy_status',
1337
- actionDriverCode: 'action_driver_code',
1338
- channelCode: 'channel_code',
1339
- gmtCreate: 'gmt_create',
1340
- gmtModified: 'gmt_modified',
1341
- };
1342
- }
1343
- static types() {
1344
- return {
1345
- sceneStrategyId: 'number',
1346
- sceneStrategyName: 'string',
1347
- sceneStrategyStatus: 'string',
1348
- actionDriverCode: 'number',
1349
- channelCode: 'string',
1350
- gmtCreate: 'string',
1351
- gmtModified: 'string',
1352
- };
1353
- }
1354
- }
1355
- exports.TenantActionTouchPlanInfo = TenantActionTouchPlanInfo;
1356
1327
  // 回执统计结果
1357
1328
  class StatisticResult extends $tea.Model {
1358
1329
  constructor(map) {
@@ -2459,6 +2430,35 @@ class CustomStatus extends $tea.Model {
2459
2430
  }
2460
2431
  }
2461
2432
  exports.CustomStatus = CustomStatus;
2433
+ // 营销盾租户触达策略计划信息
2434
+ class TenantActionPlanInfo extends $tea.Model {
2435
+ constructor(map) {
2436
+ super(map);
2437
+ }
2438
+ static names() {
2439
+ return {
2440
+ sceneStrategyId: 'scene_strategy_id',
2441
+ sceneStrategyName: 'scene_strategy_name',
2442
+ sceneStrategyStatus: 'scene_strategy_status',
2443
+ actionDriverCode: 'action_driver_code',
2444
+ channelCode: 'channel_code',
2445
+ gmtCreate: 'gmt_create',
2446
+ gmtModified: 'gmt_modified',
2447
+ };
2448
+ }
2449
+ static types() {
2450
+ return {
2451
+ sceneStrategyId: 'number',
2452
+ sceneStrategyName: 'string',
2453
+ sceneStrategyStatus: 'string',
2454
+ actionDriverCode: 'number',
2455
+ channelCode: 'string',
2456
+ gmtCreate: 'string',
2457
+ gmtModified: 'string',
2458
+ };
2459
+ }
2460
+ }
2461
+ exports.TenantActionPlanInfo = TenantActionPlanInfo;
2462
2462
  // 键值对
2463
2463
  class XNameValuePair extends $tea.Model {
2464
2464
  constructor(map) {
@@ -9502,7 +9502,7 @@ class QueryUmktRobotcallStatisticinfoResponse extends $tea.Model {
9502
9502
  }
9503
9503
  }
9504
9504
  exports.QueryUmktRobotcallStatisticinfoResponse = QueryUmktRobotcallStatisticinfoResponse;
9505
- class QueryUmktTenantStrategyinfoRequest extends $tea.Model {
9505
+ class QueryUmktTenantActionplaninfoRequest extends $tea.Model {
9506
9506
  constructor(map) {
9507
9507
  super(map);
9508
9508
  }
@@ -9525,8 +9525,8 @@ class QueryUmktTenantStrategyinfoRequest extends $tea.Model {
9525
9525
  };
9526
9526
  }
9527
9527
  }
9528
- exports.QueryUmktTenantStrategyinfoRequest = QueryUmktTenantStrategyinfoRequest;
9529
- class QueryUmktTenantStrategyinfoResponse extends $tea.Model {
9528
+ exports.QueryUmktTenantActionplaninfoRequest = QueryUmktTenantActionplaninfoRequest;
9529
+ class QueryUmktTenantActionplaninfoResponse extends $tea.Model {
9530
9530
  constructor(map) {
9531
9531
  super(map);
9532
9532
  }
@@ -9546,14 +9546,14 @@ class QueryUmktTenantStrategyinfoResponse extends $tea.Model {
9546
9546
  reqMsgId: 'string',
9547
9547
  resultCode: 'string',
9548
9548
  resultMsg: 'string',
9549
- queryResult: { 'type': 'array', 'itemType': TenantActionTouchPlanInfo },
9549
+ queryResult: { 'type': 'array', 'itemType': TenantActionPlanInfo },
9550
9550
  pageNum: 'number',
9551
9551
  pageSize: 'number',
9552
9552
  totalCount: 'number',
9553
9553
  };
9554
9554
  }
9555
9555
  }
9556
- exports.QueryUmktTenantStrategyinfoResponse = QueryUmktTenantStrategyinfoResponse;
9556
+ exports.QueryUmktTenantActionplaninfoResponse = QueryUmktTenantActionplaninfoResponse;
9557
9557
  class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
9558
9558
  constructor(map) {
9559
9559
  super(map);
@@ -9698,7 +9698,7 @@ class Client {
9698
9698
  req_msg_id: alipay_util_1.default.getNonce(),
9699
9699
  access_key: this._accessKeyId,
9700
9700
  base_sdk_version: "TeaSDK-2.0",
9701
- sdk_version: "1.16.21",
9701
+ sdk_version: "1.16.22",
9702
9702
  _prod_code: "RISKPLUS",
9703
9703
  _prod_channel: "undefined",
9704
9704
  };
@@ -12131,18 +12131,18 @@ class Client {
12131
12131
  * Description: 营销盾租户场景信息查询
12132
12132
  * Summary: 营销盾租户场景信息查询
12133
12133
  */
12134
- async queryUmktTenantStrategyinfo(request) {
12134
+ async queryUmktTenantActionplaninfo(request) {
12135
12135
  let runtime = new $Util.RuntimeOptions({});
12136
12136
  let headers = {};
12137
- return await this.queryUmktTenantStrategyinfoEx(request, headers, runtime);
12137
+ return await this.queryUmktTenantActionplaninfoEx(request, headers, runtime);
12138
12138
  }
12139
12139
  /**
12140
12140
  * Description: 营销盾租户场景信息查询
12141
12141
  * Summary: 营销盾租户场景信息查询
12142
12142
  */
12143
- async queryUmktTenantStrategyinfoEx(request, headers, runtime) {
12143
+ async queryUmktTenantActionplaninfoEx(request, headers, runtime) {
12144
12144
  tea_util_1.default.validateModel(request);
12145
- return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.tenant.strategyinfo.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryUmktTenantStrategyinfoResponse({}));
12145
+ return $tea.cast(await this.doRequest("1.0", "riskplus.umkt.tenant.actionplaninfo.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryUmktTenantActionplaninfoResponse({}));
12146
12146
  }
12147
12147
  /**
12148
12148
  * Description: 创建HTTP PUT提交的文件上传