tencentcloud-sdk-nodejs 4.1.190 → 4.1.191
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/es/common/sdk_version.js +1 -1
- package/es/services/tdmq/v20200217/tdmq_client.js +4 -7
- package/es/services/waf/v20180125/waf_client.js +5 -2
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/ai3d/v20250513/ai3d_models.d.ts +14 -45
- package/tencentcloud/services/aiart/v20221229/aiart_models.d.ts +2 -2
- package/tencentcloud/services/as/v20180419/as_models.d.ts +59 -112
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +18 -18
- package/tencentcloud/services/ctem/v20231128/ctem_models.d.ts +7 -3
- package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +9 -1
- package/tencentcloud/services/drm/v20181115/drm_models.d.ts +2 -2
- package/tencentcloud/services/postgres/v20170312/postgres_models.d.ts +10 -15
- package/tencentcloud/services/tcss/v20201101/tcss_models.d.ts +103 -145
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.d.ts +5 -9
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.js +6 -12
- package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +0 -38
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +26 -0
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +7 -1
- package/tencentcloud/services/tke/v20220501/tke_models.d.ts +11 -1
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +83 -27
- package/tencentcloud/services/waf/v20180125/waf_client.d.ts +7 -3
- package/tencentcloud/services/waf/v20180125/waf_client.js +9 -3
- package/tencentcloud/services/waf/v20180125/waf_models.d.ts +139 -20
- package/tencentcloud/services/wav/v20210129/wav_client.d.ts +75 -25
- package/tencentcloud/services/wav/v20210129/wav_client.js +75 -25
|
@@ -4980,6 +4980,39 @@ export interface CreateDealsRequest {
|
|
|
4980
4980
|
*/
|
|
4981
4981
|
Goods: Array<CreateDealsGoods>;
|
|
4982
4982
|
}
|
|
4983
|
+
/**
|
|
4984
|
+
* DescribeApiSecSensitiveRuleList请求参数结构体
|
|
4985
|
+
*/
|
|
4986
|
+
export interface DescribeApiSecSensitiveRuleListRequest {
|
|
4987
|
+
/**
|
|
4988
|
+
* 域名
|
|
4989
|
+
*/
|
|
4990
|
+
Domain: string;
|
|
4991
|
+
/**
|
|
4992
|
+
* 是否查询api提取规则策略,true表示查询
|
|
4993
|
+
*/
|
|
4994
|
+
IsQueryApiExtractRule?: boolean;
|
|
4995
|
+
/**
|
|
4996
|
+
* 是否查询api鉴权规则
|
|
4997
|
+
*/
|
|
4998
|
+
IsQueryApiPrivilegeRule?: boolean;
|
|
4999
|
+
/**
|
|
5000
|
+
* 是否查询api场景规则
|
|
5001
|
+
*/
|
|
5002
|
+
IsQueryApiSceneRule?: boolean;
|
|
5003
|
+
/**
|
|
5004
|
+
* 查询鉴权配置的时候,该rule只返回鉴权配置的规则
|
|
5005
|
+
*/
|
|
5006
|
+
RuleName?: string;
|
|
5007
|
+
/**
|
|
5008
|
+
* 是否查询api自定义事件规则
|
|
5009
|
+
*/
|
|
5010
|
+
IsQueryApiCustomEventRule?: boolean;
|
|
5011
|
+
/**
|
|
5012
|
+
* 是否查询无效api排除策略
|
|
5013
|
+
*/
|
|
5014
|
+
IsQueryApiExcludeRule?: boolean;
|
|
5015
|
+
}
|
|
4983
5016
|
/**
|
|
4984
5017
|
* ModifyCustomWhiteRule返回参数结构体
|
|
4985
5018
|
*/
|
|
@@ -5923,41 +5956,37 @@ export interface ModifyProtectionLevelResponse {
|
|
|
5923
5956
|
RequestId?: string;
|
|
5924
5957
|
}
|
|
5925
5958
|
/**
|
|
5926
|
-
*
|
|
5959
|
+
* api安全敏感规则列表
|
|
5927
5960
|
*/
|
|
5928
|
-
export interface
|
|
5961
|
+
export interface ApiSecSensitiveRule {
|
|
5929
5962
|
/**
|
|
5930
|
-
*
|
|
5963
|
+
* 身份证号,唯一主键
|
|
5931
5964
|
*/
|
|
5932
|
-
|
|
5933
|
-
/**
|
|
5934
|
-
* 状态
|
|
5935
|
-
*/
|
|
5936
|
-
Status?: number;
|
|
5965
|
+
RuleName?: string;
|
|
5937
5966
|
/**
|
|
5938
|
-
*
|
|
5967
|
+
* 表示OS系统内置,"custom"表示客户自定义
|
|
5939
5968
|
*/
|
|
5940
|
-
|
|
5969
|
+
Source?: string;
|
|
5941
5970
|
/**
|
|
5942
|
-
*
|
|
5971
|
+
* 开关状态,0:表示关,1表示开
|
|
5943
5972
|
*/
|
|
5944
|
-
|
|
5973
|
+
Status?: number;
|
|
5945
5974
|
/**
|
|
5946
|
-
*
|
|
5975
|
+
* 风险等级,100,200,300表示低中高三个等级
|
|
5947
5976
|
*/
|
|
5948
|
-
|
|
5977
|
+
Level?: string;
|
|
5949
5978
|
/**
|
|
5950
|
-
*
|
|
5979
|
+
* 修改时间,默认0,表示没有进行修改
|
|
5951
5980
|
*/
|
|
5952
|
-
|
|
5981
|
+
Timestamp?: number;
|
|
5953
5982
|
/**
|
|
5954
|
-
*
|
|
5983
|
+
* 自定义规则部分
|
|
5955
5984
|
*/
|
|
5956
|
-
|
|
5985
|
+
CustomRule?: ApiSecCustomSensitiveRule;
|
|
5957
5986
|
/**
|
|
5958
|
-
*
|
|
5987
|
+
* 是否泛化 0:不泛化,1:泛化
|
|
5959
5988
|
*/
|
|
5960
|
-
|
|
5989
|
+
IsPan?: number;
|
|
5961
5990
|
}
|
|
5962
5991
|
/**
|
|
5963
5992
|
* 当用户选择JWS/JWE会话管理方式的时候,上传的配置信息以及校验规则
|
|
@@ -7977,6 +8006,43 @@ export interface ModifyBatchIpAccessControlResponse {
|
|
|
7977
8006
|
*/
|
|
7978
8007
|
RequestId?: string;
|
|
7979
8008
|
}
|
|
8009
|
+
/**
|
|
8010
|
+
* 业务安全资源信息
|
|
8011
|
+
*/
|
|
8012
|
+
export interface FraudPkg {
|
|
8013
|
+
/**
|
|
8014
|
+
* 资源id
|
|
8015
|
+
*/
|
|
8016
|
+
ResourceIds?: string;
|
|
8017
|
+
/**
|
|
8018
|
+
* 状态
|
|
8019
|
+
*/
|
|
8020
|
+
Status?: number;
|
|
8021
|
+
/**
|
|
8022
|
+
* 地域
|
|
8023
|
+
*/
|
|
8024
|
+
Region?: number;
|
|
8025
|
+
/**
|
|
8026
|
+
* 开始时间
|
|
8027
|
+
*/
|
|
8028
|
+
BeginTime?: string;
|
|
8029
|
+
/**
|
|
8030
|
+
* 结束时间
|
|
8031
|
+
*/
|
|
8032
|
+
EndTime?: string;
|
|
8033
|
+
/**
|
|
8034
|
+
* 申请数量
|
|
8035
|
+
*/
|
|
8036
|
+
InquireNum?: number;
|
|
8037
|
+
/**
|
|
8038
|
+
* 使用数量
|
|
8039
|
+
*/
|
|
8040
|
+
UsedNum?: number;
|
|
8041
|
+
/**
|
|
8042
|
+
* 续费标志
|
|
8043
|
+
*/
|
|
8044
|
+
RenewFlag?: number;
|
|
8045
|
+
}
|
|
7980
8046
|
/**
|
|
7981
8047
|
* DescribeAccessExports请求参数结构体
|
|
7982
8048
|
*/
|
|
@@ -13438,6 +13504,59 @@ export interface ModifyHostStatusResponse {
|
|
|
13438
13504
|
*/
|
|
13439
13505
|
RequestId?: string;
|
|
13440
13506
|
}
|
|
13507
|
+
/**
|
|
13508
|
+
* DescribeApiSecSensitiveRuleList返回参数结构体
|
|
13509
|
+
*/
|
|
13510
|
+
export interface DescribeApiSecSensitiveRuleListResponse {
|
|
13511
|
+
/**
|
|
13512
|
+
* api敏感规则列表
|
|
13513
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13514
|
+
*/
|
|
13515
|
+
Data?: Array<ApiSecSensitiveRule>;
|
|
13516
|
+
/**
|
|
13517
|
+
* 规则数量
|
|
13518
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13519
|
+
*/
|
|
13520
|
+
Total?: number;
|
|
13521
|
+
/**
|
|
13522
|
+
* 自定义敏感检测规则总开关
|
|
13523
|
+
*/
|
|
13524
|
+
Status?: number;
|
|
13525
|
+
/**
|
|
13526
|
+
* 非内置规则的rulename列表
|
|
13527
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13528
|
+
*/
|
|
13529
|
+
RuleNameList?: Array<string>;
|
|
13530
|
+
/**
|
|
13531
|
+
* api提取规则列表
|
|
13532
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13533
|
+
*/
|
|
13534
|
+
ApiExtractRule?: Array<ApiSecExtractRule>;
|
|
13535
|
+
/**
|
|
13536
|
+
* api鉴权规则列表
|
|
13537
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13538
|
+
*/
|
|
13539
|
+
ApiSecPrivilegeRule?: Array<ApiSecPrivilegeRule>;
|
|
13540
|
+
/**
|
|
13541
|
+
* api场景规则列表
|
|
13542
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13543
|
+
*/
|
|
13544
|
+
ApiSecSceneRule?: Array<ApiSecSceneRule>;
|
|
13545
|
+
/**
|
|
13546
|
+
* 自定义事件规则
|
|
13547
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13548
|
+
*/
|
|
13549
|
+
ApiSecCustomEventRule?: Array<ApiSecCustomEventRule>;
|
|
13550
|
+
/**
|
|
13551
|
+
* 无效api排除规则列表
|
|
13552
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13553
|
+
*/
|
|
13554
|
+
ApiExcludeRule?: Array<ApiSecExcludeRule>;
|
|
13555
|
+
/**
|
|
13556
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
13557
|
+
*/
|
|
13558
|
+
RequestId?: string;
|
|
13559
|
+
}
|
|
13441
13560
|
/**
|
|
13442
13561
|
* ModifyOwaspRuleTypeStatus请求参数结构体
|
|
13443
13562
|
*/
|
|
@@ -8,75 +8,111 @@ import { QueryExternalContactDetailRequest, QueryUserInfoListRequest, QueryMater
|
|
|
8
8
|
export declare class Client extends AbstractClient {
|
|
9
9
|
constructor(clientConfig: ClientConfig);
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* 产品已经EOL
|
|
12
|
+
|
|
13
|
+
根据游标拉取活动活码列表信息
|
|
12
14
|
*/
|
|
13
15
|
QueryActivityLiveCodeList(req: QueryActivityLiveCodeListRequest, cb?: (error: string, rep: QueryActivityLiveCodeListResponse) => void): Promise<QueryActivityLiveCodeListResponse>;
|
|
14
16
|
/**
|
|
15
|
-
*
|
|
17
|
+
* 产品已经EOL
|
|
18
|
+
|
|
19
|
+
根据游标拉取活动列表信息
|
|
16
20
|
*/
|
|
17
21
|
QueryActivityList(req: QueryActivityListRequest, cb?: (error: string, rep: QueryActivityListResponse) => void): Promise<QueryActivityListResponse>;
|
|
18
22
|
/**
|
|
19
|
-
*
|
|
23
|
+
* 产品已经EOL
|
|
24
|
+
|
|
25
|
+
通过接口拉取SaaS内C端外部联系人在指定时间范围内的行为事件明细。此接口提供的数据以天为维度,查询的时间范围为[start_time,end_time],即前后均为闭区间,支持的最大查询跨度为365天。
|
|
20
26
|
*/
|
|
21
27
|
QueryCustomerEventDetailStatistics(req: QueryCustomerEventDetailStatisticsRequest, cb?: (error: string, rep: QueryCustomerEventDetailStatisticsResponse) => void): Promise<QueryCustomerEventDetailStatisticsResponse>;
|
|
22
28
|
/**
|
|
23
|
-
*
|
|
29
|
+
* 产品已经EOL
|
|
30
|
+
|
|
31
|
+
根据游标拉取活动参与列表信息
|
|
24
32
|
*/
|
|
25
33
|
QueryActivityJoinList(req: QueryActivityJoinListRequest, cb?: (error: string, rep: QueryActivityJoinListResponse) => void): Promise<QueryActivityJoinListResponse>;
|
|
26
34
|
/**
|
|
27
|
-
*
|
|
35
|
+
* 产品已经EOL
|
|
36
|
+
|
|
37
|
+
查询指定时间范围内发生过到店的潜客到店信息
|
|
28
38
|
*/
|
|
29
39
|
QueryArrivalList(req: QueryArrivalListRequest, cb?: (error: string, rep: QueryArrivalListResponse) => void): Promise<QueryArrivalListResponse>;
|
|
30
40
|
/**
|
|
31
|
-
*
|
|
41
|
+
* 产品已经EOL
|
|
42
|
+
|
|
43
|
+
根据游标拉取渠道活码列表信息
|
|
32
44
|
*/
|
|
33
45
|
QueryChannelCodeList(req: QueryChannelCodeListRequest, cb?: (error: string, rep: QueryChannelCodeListResponse) => void): Promise<QueryChannelCodeListResponse>;
|
|
34
46
|
/**
|
|
35
|
-
*
|
|
47
|
+
* 产品已经EOL
|
|
48
|
+
|
|
49
|
+
企业可通过此接口基于外部联系人获取指定成员添加的客户列表。客户是指配置了客户联系功能的成员所添加的外部联系人。没有配置客户联系功能的成员,所添加的外部联系人将不会作为客户返回。
|
|
36
50
|
*/
|
|
37
51
|
QueryExternalContactList(req: QueryExternalContactListRequest, cb?: (error: string, rep: QueryExternalContactListResponse) => void): Promise<QueryExternalContactListResponse>;
|
|
38
52
|
/**
|
|
39
|
-
*
|
|
53
|
+
* 产品已经EOL
|
|
54
|
+
|
|
55
|
+
通过接口拉取租户已有潜客客户档案列表信息
|
|
40
56
|
*/
|
|
41
57
|
QueryCustomerProfileList(req: QueryCustomerProfileListRequest, cb?: (error: string, rep: QueryCustomerProfileListResponse) => void): Promise<QueryCustomerProfileListResponse>;
|
|
42
58
|
/**
|
|
43
|
-
*
|
|
59
|
+
* 产品已经EOL
|
|
60
|
+
|
|
61
|
+
查询企业成员信息列表接口
|
|
44
62
|
*/
|
|
45
63
|
QueryUserInfoList(req: QueryUserInfoListRequest, cb?: (error: string, rep: QueryUserInfoListResponse) => void): Promise<QueryUserInfoListResponse>;
|
|
46
64
|
/**
|
|
47
|
-
*
|
|
65
|
+
* 产品已经EOL
|
|
66
|
+
|
|
67
|
+
通过接口拉取租户在指定时间范围内的外部联系人添加/删除明细,此接口提供的数据以天为维度,查询的时间范围为[StarTime, EndTime],即前后均为闭区间,支持的最大查询跨度为365天;
|
|
48
68
|
*/
|
|
49
69
|
QueryExternalUserEventList(req: QueryExternalUserEventListRequest, cb?: (error: string, rep: QueryExternalUserEventListResponse) => void): Promise<QueryExternalUserEventListResponse>;
|
|
50
70
|
/**
|
|
51
|
-
*
|
|
71
|
+
* 产品已经EOL
|
|
72
|
+
|
|
73
|
+
该接口获取license对应的详细信息
|
|
52
74
|
*/
|
|
53
75
|
QueryLicenseInfo(req: QueryLicenseInfoRequest, cb?: (error: string, rep: QueryLicenseInfoResponse) => void): Promise<QueryLicenseInfoResponse>;
|
|
54
76
|
/**
|
|
55
|
-
*
|
|
77
|
+
* 产品已经EOL
|
|
78
|
+
|
|
79
|
+
查询指定时间范围内发生过跟进的潜客信息
|
|
56
80
|
*/
|
|
57
81
|
QueryFollowList(req: QueryFollowListRequest, cb?: (error: string, rep: QueryFollowListResponse) => void): Promise<QueryFollowListResponse>;
|
|
58
82
|
/**
|
|
59
|
-
*
|
|
83
|
+
* 产品已经EOL
|
|
84
|
+
|
|
85
|
+
企业可通过此接口获取线索列表。
|
|
60
86
|
*/
|
|
61
87
|
QueryClueInfoList(req: QueryClueInfoListRequest, cb?: (error: string, rep: QueryClueInfoListResponse) => void): Promise<QueryClueInfoListResponse>;
|
|
62
88
|
/**
|
|
63
|
-
*
|
|
89
|
+
* 产品已经EOL
|
|
90
|
+
|
|
91
|
+
企业可通过此接口,根据外部联系人的userid,拉取外部联系人详情
|
|
64
92
|
*/
|
|
65
93
|
QueryExternalContactDetail(req: QueryExternalContactDetailRequest, cb?: (error: string, rep: QueryExternalContactDetailResponse) => void): Promise<QueryExternalContactDetailResponse>;
|
|
66
94
|
/**
|
|
67
|
-
*
|
|
95
|
+
* 产品已经EOL
|
|
96
|
+
|
|
97
|
+
企业可通过此接口获取企微SaaS平台上的车系车型信息。
|
|
68
98
|
*/
|
|
69
99
|
QueryVehicleInfoList(req: QueryVehicleInfoListRequest, cb?: (error: string, rep: QueryVehicleInfoListResponse) => void): Promise<QueryVehicleInfoListResponse>;
|
|
70
100
|
/**
|
|
71
|
-
*
|
|
101
|
+
* 产品已经EOL
|
|
102
|
+
|
|
103
|
+
通过接口拉取SaaS内企业成员在指定时间范围内的行为事件明细。此接口提供的数据以天为维度,查询的时间范围为[start_time,end_time],即前后均为闭区间,支持的最大查询跨度为365天。
|
|
72
104
|
*/
|
|
73
105
|
QueryStaffEventDetailStatistics(req: QueryStaffEventDetailStatisticsRequest, cb?: (error: string, rep: QueryStaffEventDetailStatisticsResponse) => void): Promise<QueryStaffEventDetailStatisticsResponse>;
|
|
74
106
|
/**
|
|
75
|
-
*
|
|
107
|
+
* 产品已经EOL
|
|
108
|
+
|
|
109
|
+
线索回收接口
|
|
76
110
|
*/
|
|
77
111
|
CreateLead(req: CreateLeadRequest, cb?: (error: string, rep: CreateLeadResponse) => void): Promise<CreateLeadResponse>;
|
|
78
112
|
/**
|
|
79
|
-
*
|
|
113
|
+
* 产品已经EOL
|
|
114
|
+
|
|
115
|
+
根据游标拉取会话存档列表信息
|
|
80
116
|
*/
|
|
81
117
|
QueryChatArchivingList(req: QueryChatArchivingListRequest, cb?: (error: string, rep: QueryChatArchivingListResponse) => void): Promise<QueryChatArchivingListResponse>;
|
|
82
118
|
/**
|
|
@@ -86,31 +122,45 @@ export declare class Client extends AbstractClient {
|
|
|
86
122
|
*/
|
|
87
123
|
CreateCorpTag(req: CreateCorpTagRequest, cb?: (error: string, rep: CreateCorpTagResponse) => void): Promise<CreateCorpTagResponse>;
|
|
88
124
|
/**
|
|
89
|
-
*
|
|
125
|
+
* 产品已经EOL
|
|
126
|
+
|
|
127
|
+
新增渠道活码接口
|
|
90
128
|
*/
|
|
91
129
|
CreateChannelCode(req: CreateChannelCodeRequest, cb?: (error: string, rep: CreateChannelCodeResponse) => void): Promise<CreateChannelCodeResponse>;
|
|
92
130
|
/**
|
|
93
|
-
*
|
|
131
|
+
* 产品已经EOL
|
|
132
|
+
|
|
133
|
+
通过接口按类型拉取租户当前的素材列表及关键信息
|
|
94
134
|
*/
|
|
95
135
|
QueryMaterialList(req: QueryMaterialListRequest, cb?: (error: string, rep: QueryMaterialListResponse) => void): Promise<QueryMaterialListResponse>;
|
|
96
136
|
/**
|
|
97
|
-
*
|
|
137
|
+
* 产品已经EOL
|
|
138
|
+
|
|
139
|
+
通过接口拉取租户/指定成员/部门在指定日期范围内的CRM跟进统计数据
|
|
98
140
|
*/
|
|
99
141
|
QueryCrmStatistics(req: QueryCrmStatisticsRequest, cb?: (error: string, rep: QueryCrmStatisticsResponse) => void): Promise<QueryCrmStatisticsResponse>;
|
|
100
142
|
/**
|
|
101
|
-
*
|
|
143
|
+
* 产品已经EOL
|
|
144
|
+
|
|
145
|
+
查询小程序码列表接口
|
|
102
146
|
*/
|
|
103
147
|
QueryMiniAppCodeList(req: QueryMiniAppCodeListRequest, cb?: (error: string, rep: QueryMiniAppCodeListResponse) => void): Promise<QueryMiniAppCodeListResponse>;
|
|
104
148
|
/**
|
|
105
|
-
*
|
|
149
|
+
* 产品已经EOL
|
|
150
|
+
|
|
151
|
+
企业可通过此接口获取录入在企微SaaS平台上的经销商信息。
|
|
106
152
|
*/
|
|
107
153
|
QueryDealerInfoList(req: QueryDealerInfoListRequest, cb?: (error: string, rep: QueryDealerInfoListResponse) => void): Promise<QueryDealerInfoListResponse>;
|
|
108
154
|
/**
|
|
109
|
-
*
|
|
155
|
+
* 产品已经EOL
|
|
156
|
+
|
|
157
|
+
企业可通过传入起始和结束时间,获取该时间段的外部联系人详情列表
|
|
110
158
|
*/
|
|
111
159
|
QueryExternalContactDetailByDate(req: QueryExternalContactDetailByDateRequest, cb?: (error: string, rep: QueryExternalContactDetailByDateResponse) => void): Promise<QueryExternalContactDetailByDateResponse>;
|
|
112
160
|
/**
|
|
113
|
-
*
|
|
161
|
+
* 产品已经EOL
|
|
162
|
+
|
|
163
|
+
企业可通过此接口将企业主体对应的外部联系人id转换为乐销车应用主体对应的外部联系人。
|
|
114
164
|
*/
|
|
115
165
|
QueryExternalUserMappingInfo(req: QueryExternalUserMappingInfoRequest, cb?: (error: string, rep: QueryExternalUserMappingInfoResponse) => void): Promise<QueryExternalUserMappingInfoResponse>;
|
|
116
166
|
}
|
|
@@ -28,109 +28,145 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
28
28
|
super("wav.tencentcloudapi.com", "2021-01-29", clientConfig);
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* 产品已经EOL
|
|
32
|
+
|
|
33
|
+
根据游标拉取活动活码列表信息
|
|
32
34
|
*/
|
|
33
35
|
async QueryActivityLiveCodeList(req, cb) {
|
|
34
36
|
return this.request("QueryActivityLiveCodeList", req, cb);
|
|
35
37
|
}
|
|
36
38
|
/**
|
|
37
|
-
*
|
|
39
|
+
* 产品已经EOL
|
|
40
|
+
|
|
41
|
+
根据游标拉取活动列表信息
|
|
38
42
|
*/
|
|
39
43
|
async QueryActivityList(req, cb) {
|
|
40
44
|
return this.request("QueryActivityList", req, cb);
|
|
41
45
|
}
|
|
42
46
|
/**
|
|
43
|
-
*
|
|
47
|
+
* 产品已经EOL
|
|
48
|
+
|
|
49
|
+
通过接口拉取SaaS内C端外部联系人在指定时间范围内的行为事件明细。此接口提供的数据以天为维度,查询的时间范围为[start_time,end_time],即前后均为闭区间,支持的最大查询跨度为365天。
|
|
44
50
|
*/
|
|
45
51
|
async QueryCustomerEventDetailStatistics(req, cb) {
|
|
46
52
|
return this.request("QueryCustomerEventDetailStatistics", req, cb);
|
|
47
53
|
}
|
|
48
54
|
/**
|
|
49
|
-
*
|
|
55
|
+
* 产品已经EOL
|
|
56
|
+
|
|
57
|
+
根据游标拉取活动参与列表信息
|
|
50
58
|
*/
|
|
51
59
|
async QueryActivityJoinList(req, cb) {
|
|
52
60
|
return this.request("QueryActivityJoinList", req, cb);
|
|
53
61
|
}
|
|
54
62
|
/**
|
|
55
|
-
*
|
|
63
|
+
* 产品已经EOL
|
|
64
|
+
|
|
65
|
+
查询指定时间范围内发生过到店的潜客到店信息
|
|
56
66
|
*/
|
|
57
67
|
async QueryArrivalList(req, cb) {
|
|
58
68
|
return this.request("QueryArrivalList", req, cb);
|
|
59
69
|
}
|
|
60
70
|
/**
|
|
61
|
-
*
|
|
71
|
+
* 产品已经EOL
|
|
72
|
+
|
|
73
|
+
根据游标拉取渠道活码列表信息
|
|
62
74
|
*/
|
|
63
75
|
async QueryChannelCodeList(req, cb) {
|
|
64
76
|
return this.request("QueryChannelCodeList", req, cb);
|
|
65
77
|
}
|
|
66
78
|
/**
|
|
67
|
-
*
|
|
79
|
+
* 产品已经EOL
|
|
80
|
+
|
|
81
|
+
企业可通过此接口基于外部联系人获取指定成员添加的客户列表。客户是指配置了客户联系功能的成员所添加的外部联系人。没有配置客户联系功能的成员,所添加的外部联系人将不会作为客户返回。
|
|
68
82
|
*/
|
|
69
83
|
async QueryExternalContactList(req, cb) {
|
|
70
84
|
return this.request("QueryExternalContactList", req, cb);
|
|
71
85
|
}
|
|
72
86
|
/**
|
|
73
|
-
*
|
|
87
|
+
* 产品已经EOL
|
|
88
|
+
|
|
89
|
+
通过接口拉取租户已有潜客客户档案列表信息
|
|
74
90
|
*/
|
|
75
91
|
async QueryCustomerProfileList(req, cb) {
|
|
76
92
|
return this.request("QueryCustomerProfileList", req, cb);
|
|
77
93
|
}
|
|
78
94
|
/**
|
|
79
|
-
*
|
|
95
|
+
* 产品已经EOL
|
|
96
|
+
|
|
97
|
+
查询企业成员信息列表接口
|
|
80
98
|
*/
|
|
81
99
|
async QueryUserInfoList(req, cb) {
|
|
82
100
|
return this.request("QueryUserInfoList", req, cb);
|
|
83
101
|
}
|
|
84
102
|
/**
|
|
85
|
-
*
|
|
103
|
+
* 产品已经EOL
|
|
104
|
+
|
|
105
|
+
通过接口拉取租户在指定时间范围内的外部联系人添加/删除明细,此接口提供的数据以天为维度,查询的时间范围为[StarTime, EndTime],即前后均为闭区间,支持的最大查询跨度为365天;
|
|
86
106
|
*/
|
|
87
107
|
async QueryExternalUserEventList(req, cb) {
|
|
88
108
|
return this.request("QueryExternalUserEventList", req, cb);
|
|
89
109
|
}
|
|
90
110
|
/**
|
|
91
|
-
*
|
|
111
|
+
* 产品已经EOL
|
|
112
|
+
|
|
113
|
+
该接口获取license对应的详细信息
|
|
92
114
|
*/
|
|
93
115
|
async QueryLicenseInfo(req, cb) {
|
|
94
116
|
return this.request("QueryLicenseInfo", req, cb);
|
|
95
117
|
}
|
|
96
118
|
/**
|
|
97
|
-
*
|
|
119
|
+
* 产品已经EOL
|
|
120
|
+
|
|
121
|
+
查询指定时间范围内发生过跟进的潜客信息
|
|
98
122
|
*/
|
|
99
123
|
async QueryFollowList(req, cb) {
|
|
100
124
|
return this.request("QueryFollowList", req, cb);
|
|
101
125
|
}
|
|
102
126
|
/**
|
|
103
|
-
*
|
|
127
|
+
* 产品已经EOL
|
|
128
|
+
|
|
129
|
+
企业可通过此接口获取线索列表。
|
|
104
130
|
*/
|
|
105
131
|
async QueryClueInfoList(req, cb) {
|
|
106
132
|
return this.request("QueryClueInfoList", req, cb);
|
|
107
133
|
}
|
|
108
134
|
/**
|
|
109
|
-
*
|
|
135
|
+
* 产品已经EOL
|
|
136
|
+
|
|
137
|
+
企业可通过此接口,根据外部联系人的userid,拉取外部联系人详情
|
|
110
138
|
*/
|
|
111
139
|
async QueryExternalContactDetail(req, cb) {
|
|
112
140
|
return this.request("QueryExternalContactDetail", req, cb);
|
|
113
141
|
}
|
|
114
142
|
/**
|
|
115
|
-
*
|
|
143
|
+
* 产品已经EOL
|
|
144
|
+
|
|
145
|
+
企业可通过此接口获取企微SaaS平台上的车系车型信息。
|
|
116
146
|
*/
|
|
117
147
|
async QueryVehicleInfoList(req, cb) {
|
|
118
148
|
return this.request("QueryVehicleInfoList", req, cb);
|
|
119
149
|
}
|
|
120
150
|
/**
|
|
121
|
-
*
|
|
151
|
+
* 产品已经EOL
|
|
152
|
+
|
|
153
|
+
通过接口拉取SaaS内企业成员在指定时间范围内的行为事件明细。此接口提供的数据以天为维度,查询的时间范围为[start_time,end_time],即前后均为闭区间,支持的最大查询跨度为365天。
|
|
122
154
|
*/
|
|
123
155
|
async QueryStaffEventDetailStatistics(req, cb) {
|
|
124
156
|
return this.request("QueryStaffEventDetailStatistics", req, cb);
|
|
125
157
|
}
|
|
126
158
|
/**
|
|
127
|
-
*
|
|
159
|
+
* 产品已经EOL
|
|
160
|
+
|
|
161
|
+
线索回收接口
|
|
128
162
|
*/
|
|
129
163
|
async CreateLead(req, cb) {
|
|
130
164
|
return this.request("CreateLead", req, cb);
|
|
131
165
|
}
|
|
132
166
|
/**
|
|
133
|
-
*
|
|
167
|
+
* 产品已经EOL
|
|
168
|
+
|
|
169
|
+
根据游标拉取会话存档列表信息
|
|
134
170
|
*/
|
|
135
171
|
async QueryChatArchivingList(req, cb) {
|
|
136
172
|
return this.request("QueryChatArchivingList", req, cb);
|
|
@@ -144,43 +180,57 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
144
180
|
return this.request("CreateCorpTag", req, cb);
|
|
145
181
|
}
|
|
146
182
|
/**
|
|
147
|
-
*
|
|
183
|
+
* 产品已经EOL
|
|
184
|
+
|
|
185
|
+
新增渠道活码接口
|
|
148
186
|
*/
|
|
149
187
|
async CreateChannelCode(req, cb) {
|
|
150
188
|
return this.request("CreateChannelCode", req, cb);
|
|
151
189
|
}
|
|
152
190
|
/**
|
|
153
|
-
*
|
|
191
|
+
* 产品已经EOL
|
|
192
|
+
|
|
193
|
+
通过接口按类型拉取租户当前的素材列表及关键信息
|
|
154
194
|
*/
|
|
155
195
|
async QueryMaterialList(req, cb) {
|
|
156
196
|
return this.request("QueryMaterialList", req, cb);
|
|
157
197
|
}
|
|
158
198
|
/**
|
|
159
|
-
*
|
|
199
|
+
* 产品已经EOL
|
|
200
|
+
|
|
201
|
+
通过接口拉取租户/指定成员/部门在指定日期范围内的CRM跟进统计数据
|
|
160
202
|
*/
|
|
161
203
|
async QueryCrmStatistics(req, cb) {
|
|
162
204
|
return this.request("QueryCrmStatistics", req, cb);
|
|
163
205
|
}
|
|
164
206
|
/**
|
|
165
|
-
*
|
|
207
|
+
* 产品已经EOL
|
|
208
|
+
|
|
209
|
+
查询小程序码列表接口
|
|
166
210
|
*/
|
|
167
211
|
async QueryMiniAppCodeList(req, cb) {
|
|
168
212
|
return this.request("QueryMiniAppCodeList", req, cb);
|
|
169
213
|
}
|
|
170
214
|
/**
|
|
171
|
-
*
|
|
215
|
+
* 产品已经EOL
|
|
216
|
+
|
|
217
|
+
企业可通过此接口获取录入在企微SaaS平台上的经销商信息。
|
|
172
218
|
*/
|
|
173
219
|
async QueryDealerInfoList(req, cb) {
|
|
174
220
|
return this.request("QueryDealerInfoList", req, cb);
|
|
175
221
|
}
|
|
176
222
|
/**
|
|
177
|
-
*
|
|
223
|
+
* 产品已经EOL
|
|
224
|
+
|
|
225
|
+
企业可通过传入起始和结束时间,获取该时间段的外部联系人详情列表
|
|
178
226
|
*/
|
|
179
227
|
async QueryExternalContactDetailByDate(req, cb) {
|
|
180
228
|
return this.request("QueryExternalContactDetailByDate", req, cb);
|
|
181
229
|
}
|
|
182
230
|
/**
|
|
183
|
-
*
|
|
231
|
+
* 产品已经EOL
|
|
232
|
+
|
|
233
|
+
企业可通过此接口将企业主体对应的外部联系人id转换为乐销车应用主体对应的外部联系人。
|
|
184
234
|
*/
|
|
185
235
|
async QueryExternalUserMappingInfo(req, cb) {
|
|
186
236
|
return this.request("QueryExternalUserMappingInfo", req, cb);
|