tencentcloud-sdk-nodejs-ccc 4.0.1048 → 4.1.6

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/README.md CHANGED
@@ -44,18 +44,40 @@ npm install tencentcloud-sdk-nodejs-vpc --save
44
44
 
45
45
  ### 安装全产品 SDK
46
46
 
47
+ 如果项目依赖的云产品较多,可以引入全产品 SDK。
48
+
47
49
  ```
48
50
  npm install tencentcloud-sdk-nodejs --save
49
51
  ```
50
52
 
51
- 全产品 SDK 包含了所有云产品的调用代码,体积偏大,对体积敏感的场景,推荐安装指定产品 SDK。
53
+ 全产品 SDK 包含所有云产品调用代码和 TypeScript 类型文件,体积偏大。对于体积敏感的场景,推荐安装指定产品 SDK。
54
+
55
+ 如果既希望全产品调用,又对包体积比较敏感,可以使用 Slim 版本 SDK。Slim SDK 移除类型文件,并进行了代码压缩,适合体积敏感场景使用:
56
+
57
+ ```
58
+ npm install tencentcloud-sdk-slim-nodejs --save
59
+ ```
52
60
 
53
61
  ## 通过源码包安装
54
62
 
55
- 1. 前往 [GitHub 仓库](https://github.com/tencentcloud/tencentcloud-sdk-nodejs) 或者 [Gitee 仓库](https://gitee.com/tencentcloud/tencentcloud-sdk-nodejs) 下载源码压缩包。
56
- 2. 解压源码包到您项目合适的位置,例如 `sdk/tencentcloud-sdk-nodejs`。
57
- 3. 执行 `npm install ./sdk/tencentcloud-sdk-nodejs`。
58
- 4. 使用 `require("tencentcloud-sdk-nodejs")` 的方式引入 SDK,具体可参考示例。
63
+ 1. clone 代码到本地:
64
+ ```
65
+ git clone https://github.com/tencentcloud/tencentcloud-sdk-nodejs
66
+ # 或者
67
+ git clone https://gitee.com/tencentcloud/tencentcloud-sdk-nodejs
68
+ ```
69
+ 2. 在项目根目录执行以下命令完成构建:
70
+ ```
71
+ npm install && npm run build
72
+ ```
73
+ 3. 打包 NPM 压缩文件,例如 `tencentcloud-sdk-nodejs-4.0.0.tgz`
74
+ ```
75
+ npm pack
76
+ ```
77
+ 4. 安装包到你的项目里:
78
+ ```
79
+ npm install /path/to/tencentcloud-sdk-nodejs/tencentcloud-sdk-nodejs-4.0.0.tgz
80
+ ```
59
81
 
60
82
  # 示例
61
83
 
package/es/index.js ADDED
@@ -0,0 +1 @@
1
+ export * from "./services";
@@ -0,0 +1,4 @@
1
+ import { v20200210 } from "./v20200210";
2
+ export const ccc = {
3
+ v20200210: v20200210,
4
+ };
@@ -0,0 +1,198 @@
1
+ import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
2
+ export class Client extends TencentCloudCommon.AbstractClient {
3
+ constructor(clientConfig) {
4
+ super("ccc.tencentcloudapi.com", "2020-02-10", clientConfig);
5
+ }
6
+ async ModifyStaff(req, cb) {
7
+ return this.request("ModifyStaff", req, cb);
8
+ }
9
+ async DescribeExtensions(req, cb) {
10
+ return this.request("DescribeExtensions", req, cb);
11
+ }
12
+ async DescribeAutoCalloutTasks(req, cb) {
13
+ return this.request("DescribeAutoCalloutTasks", req, cb);
14
+ }
15
+ async CreateAICall(req, cb) {
16
+ return this.request("CreateAICall", req, cb);
17
+ }
18
+ async DescribeTelRecordAsr(req, cb) {
19
+ return this.request("DescribeTelRecordAsr", req, cb);
20
+ }
21
+ async StopAutoCalloutTask(req, cb) {
22
+ return this.request("StopAutoCalloutTask", req, cb);
23
+ }
24
+ async DisableCCCPhoneNumber(req, cb) {
25
+ return this.request("DisableCCCPhoneNumber", req, cb);
26
+ }
27
+ async DescribePSTNActiveSessionList(req, cb) {
28
+ return this.request("DescribePSTNActiveSessionList", req, cb);
29
+ }
30
+ async DeleteExtension(req, cb) {
31
+ return this.request("DeleteExtension", req, cb);
32
+ }
33
+ async DescribeChatMessages(req, cb) {
34
+ return this.request("DescribeChatMessages", req, cb);
35
+ }
36
+ async BindStaffSkillGroupList(req, cb) {
37
+ return this.request("BindStaffSkillGroupList", req, cb);
38
+ }
39
+ async BindNumberCallOutSkillGroup(req, cb) {
40
+ return this.request("BindNumberCallOutSkillGroup", req, cb);
41
+ }
42
+ async DescribeIMCdrs(req, cb) {
43
+ return this.request("DescribeIMCdrs", req, cb);
44
+ }
45
+ async DescribeIvrAudioList(req, cb) {
46
+ return this.request("DescribeIvrAudioList", req, cb);
47
+ }
48
+ async DeleteStaff(req, cb) {
49
+ return this.request("DeleteStaff", req, cb);
50
+ }
51
+ async ModifyCompanyApply(req, cb) {
52
+ return this.request("ModifyCompanyApply", req, cb);
53
+ }
54
+ async CreateExtension(req, cb) {
55
+ return this.request("CreateExtension", req, cb);
56
+ }
57
+ async ResetExtensionPassword(req, cb) {
58
+ return this.request("ResetExtensionPassword", req, cb);
59
+ }
60
+ async DescribeTelCallInfo(req, cb) {
61
+ return this.request("DescribeTelCallInfo", req, cb);
62
+ }
63
+ async UploadIvrAudio(req, cb) {
64
+ return this.request("UploadIvrAudio", req, cb);
65
+ }
66
+ async DescribeExtension(req, cb) {
67
+ return this.request("DescribeExtension", req, cb);
68
+ }
69
+ async DescribeCarrierPrivilegeNumberApplicants(req, cb) {
70
+ return this.request("DescribeCarrierPrivilegeNumberApplicants", req, cb);
71
+ }
72
+ async DescribeTelSession(req, cb) {
73
+ return this.request("DescribeTelSession", req, cb);
74
+ }
75
+ async CreateCallOutSession(req, cb) {
76
+ return this.request("CreateCallOutSession", req, cb);
77
+ }
78
+ async DescribePredictiveDialingCampaigns(req, cb) {
79
+ return this.request("DescribePredictiveDialingCampaigns", req, cb);
80
+ }
81
+ async DescribeAutoCalloutTask(req, cb) {
82
+ return this.request("DescribeAutoCalloutTask", req, cb);
83
+ }
84
+ async DescribePredictiveDialingSessions(req, cb) {
85
+ return this.request("DescribePredictiveDialingSessions", req, cb);
86
+ }
87
+ async CreateCompanyApply(req, cb) {
88
+ return this.request("CreateCompanyApply", req, cb);
89
+ }
90
+ async DescribeTelCdr(req, cb) {
91
+ return this.request("DescribeTelCdr", req, cb);
92
+ }
93
+ async DescribeSkillGroupInfoList(req, cb) {
94
+ return this.request("DescribeSkillGroupInfoList", req, cb);
95
+ }
96
+ async UnbindNumberCallOutSkillGroup(req, cb) {
97
+ return this.request("UnbindNumberCallOutSkillGroup", req, cb);
98
+ }
99
+ async ModifyOwnNumberApply(req, cb) {
100
+ return this.request("ModifyOwnNumberApply", req, cb);
101
+ }
102
+ async CreatePredictiveDialingCampaign(req, cb) {
103
+ return this.request("CreatePredictiveDialingCampaign", req, cb);
104
+ }
105
+ async CreateCarrierPrivilegeNumberApplicant(req, cb) {
106
+ return this.request("CreateCarrierPrivilegeNumberApplicant", req, cb);
107
+ }
108
+ async DescribeAICallExtractResult(req, cb) {
109
+ return this.request("DescribeAICallExtractResult", req, cb);
110
+ }
111
+ async CreateOwnNumberApply(req, cb) {
112
+ return this.request("CreateOwnNumberApply", req, cb);
113
+ }
114
+ async DescribeCCCBuyInfoList(req, cb) {
115
+ return this.request("DescribeCCCBuyInfoList", req, cb);
116
+ }
117
+ async ResumePredictiveDialingCampaign(req, cb) {
118
+ return this.request("ResumePredictiveDialingCampaign", req, cb);
119
+ }
120
+ async CreateCCCSkillGroup(req, cb) {
121
+ return this.request("CreateCCCSkillGroup", req, cb);
122
+ }
123
+ async UnbindStaffSkillGroupList(req, cb) {
124
+ return this.request("UnbindStaffSkillGroupList", req, cb);
125
+ }
126
+ async ModifyStaffPassword(req, cb) {
127
+ return this.request("ModifyStaffPassword", req, cb);
128
+ }
129
+ async DescribeStaffInfoList(req, cb) {
130
+ return this.request("DescribeStaffInfoList", req, cb);
131
+ }
132
+ async DescribePredictiveDialingCampaign(req, cb) {
133
+ return this.request("DescribePredictiveDialingCampaign", req, cb);
134
+ }
135
+ async DescribeStaffStatusMetrics(req, cb) {
136
+ return this.request("DescribeStaffStatusMetrics", req, cb);
137
+ }
138
+ async CreateStaff(req, cb) {
139
+ return this.request("CreateStaff", req, cb);
140
+ }
141
+ async CreateIVRSession(req, cb) {
142
+ return this.request("CreateIVRSession", req, cb);
143
+ }
144
+ async CreateAutoCalloutTask(req, cb) {
145
+ return this.request("CreateAutoCalloutTask", req, cb);
146
+ }
147
+ async ModifyExtension(req, cb) {
148
+ return this.request("ModifyExtension", req, cb);
149
+ }
150
+ async UpdateCCCSkillGroup(req, cb) {
151
+ return this.request("UpdateCCCSkillGroup", req, cb);
152
+ }
153
+ async CreateUserSig(req, cb) {
154
+ return this.request("CreateUserSig", req, cb);
155
+ }
156
+ async HangUpCall(req, cb) {
157
+ return this.request("HangUpCall", req, cb);
158
+ }
159
+ async PausePredictiveDialingCampaign(req, cb) {
160
+ return this.request("PausePredictiveDialingCampaign", req, cb);
161
+ }
162
+ async CreateAdminURL(req, cb) {
163
+ return this.request("CreateAdminURL", req, cb);
164
+ }
165
+ async DescribeProtectedTelCdr(req, cb) {
166
+ return this.request("DescribeProtectedTelCdr", req, cb);
167
+ }
168
+ async DescribeIMCdrList(req, cb) {
169
+ return this.request("DescribeIMCdrList", req, cb);
170
+ }
171
+ async DescribeCallInMetrics(req, cb) {
172
+ return this.request("DescribeCallInMetrics", req, cb);
173
+ }
174
+ async CreateSDKLoginToken(req, cb) {
175
+ return this.request("CreateSDKLoginToken", req, cb);
176
+ }
177
+ async DescribeActiveCarrierPrivilegeNumber(req, cb) {
178
+ return this.request("DescribeActiveCarrierPrivilegeNumber", req, cb);
179
+ }
180
+ async DescribeNumbers(req, cb) {
181
+ return this.request("DescribeNumbers", req, cb);
182
+ }
183
+ async AbortPredictiveDialingCampaign(req, cb) {
184
+ return this.request("AbortPredictiveDialingCampaign", req, cb);
185
+ }
186
+ async DescribeCompanyList(req, cb) {
187
+ return this.request("DescribeCompanyList", req, cb);
188
+ }
189
+ async CreateAIAgentCall(req, cb) {
190
+ return this.request("CreateAIAgentCall", req, cb);
191
+ }
192
+ async DeletePredictiveDialingCampaign(req, cb) {
193
+ return this.request("DeletePredictiveDialingCampaign", req, cb);
194
+ }
195
+ async UpdatePredictiveDialingCampaign(req, cb) {
196
+ return this.request("UpdatePredictiveDialingCampaign", req, cb);
197
+ }
198
+ }
File without changes
@@ -0,0 +1,6 @@
1
+ import * as Models from "./ccc_models";
2
+ import { Client } from "./ccc_client";
3
+ export const v20200210 = {
4
+ Client: Client,
5
+ Models: Models,
6
+ };
@@ -0,0 +1 @@
1
+ export { ccc } from "./ccc";
package/package.json CHANGED
@@ -1,16 +1,26 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-ccc",
3
- "version": "4.0.1048",
4
- "description": "Tencent Cloud API NODEJS SDK",
5
- "main": "tencentcloud/index.js",
3
+ "version": "4.1.6",
4
+ "description": "腾讯云 API NODEJS SDK",
5
+ "main": "./tencentcloud/index.js",
6
+ "module": "./es/index.js",
7
+ "types": "./tencentcloud/index.d.ts",
6
8
  "scripts": {
7
9
  "test": "mocha -t 10000",
8
- "build": "tsc",
9
- "prettier": "prettier --config prettier.config.js --write 'src/**/*.{tsx,ts,jsx,js,css,json,vue}'"
10
+ "build": "concurrently 'npm:build:cjs' 'npm:build:es'",
11
+ "build:cjs": "tsc -p tsconfig.json",
12
+ "build:es": "tsc -p tsconfig.es.json",
13
+ "build:slim": "node ./scripts/build_slim.js",
14
+ "prettier": "prettier --config prettier.config.js --write 'src/**/*.{tsx,ts,jsx,js,css,json,vue}'",
15
+ "clean": "rimraf tencentcloud es"
10
16
  },
11
17
  "engines": {
12
18
  "node": ">=10"
13
19
  },
20
+ "files": [
21
+ "tencentcloud",
22
+ "es"
23
+ ],
14
24
  "keywords": [
15
25
  "tencentcloudapi",
16
26
  "tencentcloud",
@@ -22,7 +32,7 @@
22
32
  "author": "tencentcloudapi",
23
33
  "license": "Apache-2.0",
24
34
  "dependencies": {
25
- "tencentcloud-sdk-nodejs-common": "^4.0.488",
35
+ "tencentcloud-sdk-nodejs-common": "*",
26
36
  "tslib": "1.13.0"
27
37
  },
28
38
  "directories": {
@@ -35,14 +45,22 @@
35
45
  },
36
46
  "devDependencies": {
37
47
  "@types/form-data": "^2.5.0",
48
+ "@types/json-bigint": "^1.0.1",
38
49
  "@types/node": "^14.0.26",
39
50
  "@types/node-fetch": "^2.5.7",
51
+ "@types/uuid": "^9.0.8",
40
52
  "@typescript-eslint/eslint-plugin": "^2.34.0",
41
53
  "@typescript-eslint/parser": "^2.34.0",
54
+ "babel-eslint": "^10.0.2",
42
55
  "chai": "^4.2.0",
56
+ "concurrently": "^6.5.1",
57
+ "esbuild": "^0.25.0",
43
58
  "eslint": "^6.8.0",
44
- "mocha": "^8.1.1",
59
+ "eslint-plugin-react": "^7.17.0",
60
+ "mocha": "^8.4.0",
61
+ "prettier": "^2.3.0",
62
+ "rimraf": "^5.0.10",
45
63
  "ts-node": "^8.10.2",
46
64
  "typescript": "^3.9.7"
47
65
  }
48
- }
66
+ }
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Client = void 0;
4
+ const tslib_1 = require("tslib");
4
5
  /* eslint-disable @typescript-eslint/no-unused-vars */
5
6
  /*
6
7
  * Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
@@ -18,7 +19,7 @@ exports.Client = void 0;
18
19
  * specific language governing permissions and limitations
19
20
  * under the License.
20
21
  */
21
- const TencentCloudCommon = require("tencentcloud-sdk-nodejs-common");
22
+ const TencentCloudCommon = tslib_1.__importStar(require("tencentcloud-sdk-nodejs-common"));
22
23
  /**
23
24
  * ccc client
24
25
  * @class
@@ -777,6 +777,14 @@ export interface CreatePredictiveDialingCampaignRequest {
777
777
  * 被叫属性
778
778
  */
779
779
  CalleeAttributes?: Array<CalleeAttribute>;
780
+ /**
781
+ * IANA 时区名称,参考 https://datatracker.ietf.org/doc/html/draft-ietf-netmod-iana-timezones
782
+ */
783
+ TimeZone?: string;
784
+ /**
785
+ * 可用时间段
786
+ */
787
+ AvailableTime?: Array<TimeRange>;
780
788
  }
781
789
  /**
782
790
  * CreateCompanyApply返回参数结构体
@@ -1444,9 +1452,9 @@ export interface CreateAutoCalloutTaskRequest {
1444
1452
  */
1445
1453
  Callers: Array<string>;
1446
1454
  /**
1447
- * 呼叫使用的Ivr
1455
+ * 呼叫使用的 IVR Id,不填时需要填写 AIAgentId
1448
1456
  */
1449
- IvrId: number;
1457
+ IvrId?: number;
1450
1458
  /**
1451
1459
  * 任务名
1452
1460
  */
@@ -1475,6 +1483,18 @@ export interface CreateAutoCalloutTaskRequest {
1475
1483
  * 被叫属性
1476
1484
  */
1477
1485
  CalleeAttributes?: Array<CalleeAttribute>;
1486
+ /**
1487
+ * IANA 时区名称,参考 https://datatracker.ietf.org/doc/html/draft-ietf-netmod-iana-timezones
1488
+ */
1489
+ TimeZone?: string;
1490
+ /**
1491
+ * 可用时间段
1492
+ */
1493
+ AvailableTime?: Array<TimeRange>;
1494
+ /**
1495
+ * 智能体 ID,不填写时需要填写 IvrId
1496
+ */
1497
+ AIAgentId?: number;
1478
1498
  }
1479
1499
  /**
1480
1500
  * ResumePredictiveDialingCampaign返回参数结构体
@@ -2217,6 +2237,19 @@ export interface UpdateCCCSkillGroupRequest {
2217
2237
  */
2218
2238
  RingAll?: boolean;
2219
2239
  }
2240
+ /**
2241
+ * 时间范围,24 小时制,格式为 09:00:00
2242
+ */
2243
+ export interface TimeRange {
2244
+ /**
2245
+ * 开始时间
2246
+ */
2247
+ StartTime?: string;
2248
+ /**
2249
+ * 结束时间
2250
+ */
2251
+ EndTime?: string;
2252
+ }
2220
2253
  /**
2221
2254
  * ModifyStaffPassword请求参数结构体
2222
2255
  */
@@ -2569,8 +2602,14 @@ export interface StaffInfo {
2569
2602
  StaffNumber?: string;
2570
2603
  /**
2571
2604
  * 用户角色id
2605
+ 一个用户绑定了多个角色时以RoleIdList为准
2606
+ * @deprecated
2572
2607
  */
2573
2608
  RoleId?: number;
2609
+ /**
2610
+ * 用户角色id列表
2611
+ */
2612
+ RoleIdList?: number;
2574
2613
  /**
2575
2614
  * 所属技能组列表
2576
2615
  */
@@ -1,7 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.v20200210 = void 0;
4
- const Models = require("./ccc_models");
4
+ const tslib_1 = require("tslib");
5
+ const Models = tslib_1.__importStar(require("./ccc_models"));
5
6
  const ccc_client_1 = require("./ccc_client");
6
7
  exports.v20200210 = {
7
8
  Client: ccc_client_1.Client,
package/index.d.ts DELETED
@@ -1,2 +0,0 @@
1
- import * as tencentcloud from './tencentcloud';
2
- export default tencentcloud;
package/index.js DELETED
@@ -1,6 +0,0 @@
1
- 'use strict'
2
- Object.defineProperty(exports, '__esModule', { value: true })
3
- const tslib_1 = require('tslib')
4
- const tencentcloud = tslib_1.__importStar(require('./tencentcloud'))
5
- exports.default = tencentcloud
6
- //# sourceMappingURL=index.js.map
@@ -1,38 +0,0 @@
1
- // prettier.config.js
2
- module.exports = {
3
- // 一行最多 100 字符
4
- printWidth: 100,
5
- // 使用 4 个空格缩进
6
- tabWidth: 2,
7
- // 不使用缩进符,而使用空格
8
- useTabs: false,
9
- // 行尾需要有分号
10
- semi: false,
11
- // 使用单引号
12
- singleQuote: false,
13
- // 对象的 key 仅在必要时用引号
14
- quoteProps: "as-needed",
15
- // jsx 不使用单引号,而使用双引号
16
- jsxSingleQuote: false,
17
- // 末尾不需要逗号
18
- trailingComma: "es5",
19
- // 大括号内的首尾需要空格
20
- bracketSpacing: true,
21
- // jsx 标签的反尖括号需要换行
22
- jsxBracketSameLine: false,
23
- // 箭头函数,只有一个参数的时候,也需要括号
24
- arrowParens: "always",
25
- // 每个文件格式化的范围是文件的全部内容
26
- rangeStart: 0,
27
- rangeEnd: Infinity,
28
- // 不需要写文件开头的 @prettier
29
- requirePragma: false,
30
- // 不需要自动在文件开头插入 @prettier
31
- insertPragma: false,
32
- // 使用默认的折行标准
33
- proseWrap: "preserve",
34
- // 根据显示样式决定 html 要不要折行
35
- htmlWhitespaceSensitivity: "css",
36
- // 换行符使用 lf
37
- endOfLine: "lf",
38
- }
package/src/index.ts DELETED
@@ -1 +0,0 @@
1
- export * from "./services"
@@ -1,5 +0,0 @@
1
- import { v20200210 } from "./v20200210"
2
-
3
- export const ccc = {
4
- v20200210: v20200210,
5
- }