@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antchain/riskplus",
3
- "version": "1.16.21",
3
+ "version": "1.16.22",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -2031,51 +2031,6 @@ export class RtopCrowdRiskSummaryResp extends $tea.Model {
2031
2031
  }
2032
2032
  }
2033
2033
 
2034
- // 营销盾租户触达策略计划信息
2035
- export class TenantActionTouchPlanInfo extends $tea.Model {
2036
- // 场景策略id
2037
- sceneStrategyId: number;
2038
- // 营销名称
2039
- sceneStrategyName: string;
2040
- // 营销状态
2041
- sceneStrategyStatus: string;
2042
- // 渠道id
2043
- actionDriverCode: number;
2044
- // 渠道类型
2045
- channelCode: string;
2046
- // 创建时间
2047
- gmtCreate: string;
2048
- // 修改时间
2049
- gmtModified: string;
2050
- static names(): { [key: string]: string } {
2051
- return {
2052
- sceneStrategyId: 'scene_strategy_id',
2053
- sceneStrategyName: 'scene_strategy_name',
2054
- sceneStrategyStatus: 'scene_strategy_status',
2055
- actionDriverCode: 'action_driver_code',
2056
- channelCode: 'channel_code',
2057
- gmtCreate: 'gmt_create',
2058
- gmtModified: 'gmt_modified',
2059
- };
2060
- }
2061
-
2062
- static types(): { [key: string]: any } {
2063
- return {
2064
- sceneStrategyId: 'number',
2065
- sceneStrategyName: 'string',
2066
- sceneStrategyStatus: 'string',
2067
- actionDriverCode: 'number',
2068
- channelCode: 'string',
2069
- gmtCreate: 'string',
2070
- gmtModified: 'string',
2071
- };
2072
- }
2073
-
2074
- constructor(map?: { [key: string]: any }) {
2075
- super(map);
2076
- }
2077
- }
2078
-
2079
2034
  // 回执统计结果
2080
2035
  export class StatisticResult extends $tea.Model {
2081
2036
  // 有效任务总数量
@@ -3787,6 +3742,51 @@ export class CustomStatus extends $tea.Model {
3787
3742
  }
3788
3743
  }
3789
3744
 
3745
+ // 营销盾租户触达策略计划信息
3746
+ export class TenantActionPlanInfo extends $tea.Model {
3747
+ // 场景策略id
3748
+ sceneStrategyId: number;
3749
+ // 营销名称
3750
+ sceneStrategyName: string;
3751
+ // 营销状态
3752
+ sceneStrategyStatus: string;
3753
+ // 渠道id
3754
+ actionDriverCode: number;
3755
+ // 渠道类型
3756
+ channelCode: string;
3757
+ // 创建时间
3758
+ gmtCreate: string;
3759
+ // 修改时间
3760
+ gmtModified: string;
3761
+ static names(): { [key: string]: string } {
3762
+ return {
3763
+ sceneStrategyId: 'scene_strategy_id',
3764
+ sceneStrategyName: 'scene_strategy_name',
3765
+ sceneStrategyStatus: 'scene_strategy_status',
3766
+ actionDriverCode: 'action_driver_code',
3767
+ channelCode: 'channel_code',
3768
+ gmtCreate: 'gmt_create',
3769
+ gmtModified: 'gmt_modified',
3770
+ };
3771
+ }
3772
+
3773
+ static types(): { [key: string]: any } {
3774
+ return {
3775
+ sceneStrategyId: 'number',
3776
+ sceneStrategyName: 'string',
3777
+ sceneStrategyStatus: 'string',
3778
+ actionDriverCode: 'number',
3779
+ channelCode: 'string',
3780
+ gmtCreate: 'string',
3781
+ gmtModified: 'string',
3782
+ };
3783
+ }
3784
+
3785
+ constructor(map?: { [key: string]: any }) {
3786
+ super(map);
3787
+ }
3788
+ }
3789
+
3790
3790
  // 键值对
3791
3791
  export class XNameValuePair extends $tea.Model {
3792
3792
  // 键名
@@ -14502,7 +14502,7 @@ export class QueryUmktRobotcallStatisticinfoResponse extends $tea.Model {
14502
14502
  }
14503
14503
  }
14504
14504
 
14505
- export class QueryUmktTenantStrategyinfoRequest extends $tea.Model {
14505
+ export class QueryUmktTenantActionplaninfoRequest extends $tea.Model {
14506
14506
  // OAuth模式下的授权token
14507
14507
  authToken?: string;
14508
14508
  productInstanceId?: string;
@@ -14537,7 +14537,7 @@ export class QueryUmktTenantStrategyinfoRequest extends $tea.Model {
14537
14537
  }
14538
14538
  }
14539
14539
 
14540
- export class QueryUmktTenantStrategyinfoResponse extends $tea.Model {
14540
+ export class QueryUmktTenantActionplaninfoResponse extends $tea.Model {
14541
14541
  // 请求唯一ID,用于链路跟踪和问题排查
14542
14542
  reqMsgId?: string;
14543
14543
  // 结果码,一般OK表示调用成功
@@ -14545,7 +14545,7 @@ export class QueryUmktTenantStrategyinfoResponse extends $tea.Model {
14545
14545
  // 异常信息的文本描述
14546
14546
  resultMsg?: string;
14547
14547
  // 租户策略信息列表
14548
- queryResult?: TenantActionTouchPlanInfo[];
14548
+ queryResult?: TenantActionPlanInfo[];
14549
14549
  // 页码
14550
14550
  pageNum?: number;
14551
14551
  // 页容量
@@ -14569,7 +14569,7 @@ export class QueryUmktTenantStrategyinfoResponse extends $tea.Model {
14569
14569
  reqMsgId: 'string',
14570
14570
  resultCode: 'string',
14571
14571
  resultMsg: 'string',
14572
- queryResult: { 'type': 'array', 'itemType': TenantActionTouchPlanInfo },
14572
+ queryResult: { 'type': 'array', 'itemType': TenantActionPlanInfo },
14573
14573
  pageNum: 'number',
14574
14574
  pageSize: 'number',
14575
14575
  totalCount: 'number',
@@ -14782,7 +14782,7 @@ export default class Client {
14782
14782
  req_msg_id: AntchainUtil.getNonce(),
14783
14783
  access_key: this._accessKeyId,
14784
14784
  base_sdk_version: "TeaSDK-2.0",
14785
- sdk_version: "1.16.21",
14785
+ sdk_version: "1.16.22",
14786
14786
  _prod_code: "RISKPLUS",
14787
14787
  _prod_channel: "undefined",
14788
14788
  };
@@ -17506,19 +17506,19 @@ export default class Client {
17506
17506
  * Description: 营销盾租户场景信息查询
17507
17507
  * Summary: 营销盾租户场景信息查询
17508
17508
  */
17509
- async queryUmktTenantStrategyinfo(request: QueryUmktTenantStrategyinfoRequest): Promise<QueryUmktTenantStrategyinfoResponse> {
17509
+ async queryUmktTenantActionplaninfo(request: QueryUmktTenantActionplaninfoRequest): Promise<QueryUmktTenantActionplaninfoResponse> {
17510
17510
  let runtime = new $Util.RuntimeOptions({ });
17511
17511
  let headers : {[key: string ]: string} = { };
17512
- return await this.queryUmktTenantStrategyinfoEx(request, headers, runtime);
17512
+ return await this.queryUmktTenantActionplaninfoEx(request, headers, runtime);
17513
17513
  }
17514
17514
 
17515
17515
  /**
17516
17516
  * Description: 营销盾租户场景信息查询
17517
17517
  * Summary: 营销盾租户场景信息查询
17518
17518
  */
17519
- async queryUmktTenantStrategyinfoEx(request: QueryUmktTenantStrategyinfoRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryUmktTenantStrategyinfoResponse> {
17519
+ async queryUmktTenantActionplaninfoEx(request: QueryUmktTenantActionplaninfoRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryUmktTenantActionplaninfoResponse> {
17520
17520
  Util.validateModel(request);
17521
- return $tea.cast<QueryUmktTenantStrategyinfoResponse>(await this.doRequest("1.0", "riskplus.umkt.tenant.strategyinfo.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryUmktTenantStrategyinfoResponse({}));
17521
+ return $tea.cast<QueryUmktTenantActionplaninfoResponse>(await this.doRequest("1.0", "riskplus.umkt.tenant.actionplaninfo.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryUmktTenantActionplaninfoResponse({}));
17522
17522
  }
17523
17523
 
17524
17524
  /**