@antchain/riskplus 1.22.2 → 1.22.3
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 +2 -0
- package/dist/client.js +5 -1
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +9 -1
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -4980,6 +4980,10 @@ export class TenantActionPlanInfo extends $tea.Model {
|
|
|
4980
4980
|
gmtCreate: string;
|
|
4981
4981
|
// 修改时间
|
|
4982
4982
|
gmtModified: string;
|
|
4983
|
+
// 场景策略入参名
|
|
4984
|
+
actionParamInfo?: string[];
|
|
4985
|
+
// 参数查询是否完成
|
|
4986
|
+
isParamQueryDone?: boolean;
|
|
4983
4987
|
static names(): { [key: string]: string } {
|
|
4984
4988
|
return {
|
|
4985
4989
|
sceneStrategyId: 'scene_strategy_id',
|
|
@@ -4989,6 +4993,8 @@ export class TenantActionPlanInfo extends $tea.Model {
|
|
|
4989
4993
|
channelCode: 'channel_code',
|
|
4990
4994
|
gmtCreate: 'gmt_create',
|
|
4991
4995
|
gmtModified: 'gmt_modified',
|
|
4996
|
+
actionParamInfo: 'action_param_info',
|
|
4997
|
+
isParamQueryDone: 'is_param_query_done',
|
|
4992
4998
|
};
|
|
4993
4999
|
}
|
|
4994
5000
|
|
|
@@ -5001,6 +5007,8 @@ export class TenantActionPlanInfo extends $tea.Model {
|
|
|
5001
5007
|
channelCode: 'string',
|
|
5002
5008
|
gmtCreate: 'string',
|
|
5003
5009
|
gmtModified: 'string',
|
|
5010
|
+
actionParamInfo: { 'type': 'array', 'itemType': 'string' },
|
|
5011
|
+
isParamQueryDone: 'boolean',
|
|
5004
5012
|
};
|
|
5005
5013
|
}
|
|
5006
5014
|
|
|
@@ -21822,7 +21830,7 @@ export default class Client {
|
|
|
21822
21830
|
req_msg_id: AntchainUtil.getNonce(),
|
|
21823
21831
|
access_key: this._accessKeyId,
|
|
21824
21832
|
base_sdk_version: "TeaSDK-2.0",
|
|
21825
|
-
sdk_version: "1.22.
|
|
21833
|
+
sdk_version: "1.22.3",
|
|
21826
21834
|
_prod_code: "RISKPLUS",
|
|
21827
21835
|
_prod_channel: "undefined",
|
|
21828
21836
|
};
|