tencentcloud-sdk-nodejs-tcb 4.1.108 → 4.1.158
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 +6 -4
- package/es/services/tcb/v20180608/tcb_client.js +120 -189
- package/es/services/tcb/v20180608/tcb_models.js +1 -0
- package/package.json +7 -5
- package/tencentcloud/services/index.js +1 -0
- package/tencentcloud/services/tcb/v20180608/tcb_client.d.ts +126 -218
- package/tencentcloud/services/tcb/v20180608/tcb_client.js +185 -323
- package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +262 -1477
package/README.md
CHANGED
|
@@ -62,6 +62,8 @@ npm install tencentcloud-sdk-slim-nodejs --save
|
|
|
62
62
|
|
|
63
63
|
1. clone 代码到本地:
|
|
64
64
|
```
|
|
65
|
+
git clone https://cnb.cool/tencent/cloud/api/sdk/tencentcloud-sdk-nodejs
|
|
66
|
+
# 或者
|
|
65
67
|
git clone https://github.com/tencentcloud/tencentcloud-sdk-nodejs
|
|
66
68
|
# 或者
|
|
67
69
|
git clone https://gitee.com/tencentcloud/tencentcloud-sdk-nodejs
|
|
@@ -135,7 +137,7 @@ const CvmClient = tencentcloud.cvm.v20170312.Client
|
|
|
135
137
|
// ...
|
|
136
138
|
```
|
|
137
139
|
|
|
138
|
-
实例化 `Client` 的入参支持 `clientConfig`,数据结构和说明详见 [ClientConfig](
|
|
140
|
+
实例化 `Client` 的入参支持 `clientConfig`,数据结构和说明详见 [ClientConfig](src/common/interface.ts)。
|
|
139
141
|
|
|
140
142
|
## Common Client
|
|
141
143
|
|
|
@@ -143,17 +145,17 @@ const CvmClient = tencentcloud.cvm.v20170312.Client
|
|
|
143
145
|
|
|
144
146
|
**注意,您必须明确知道您调用的接口所需参数,否则可能会调用失败。**
|
|
145
147
|
|
|
146
|
-
详细使用请参阅示例:[使用 Common Client 进行调用](
|
|
148
|
+
详细使用请参阅示例:[使用 Common Client 进行调用](examples/common)
|
|
147
149
|
|
|
148
150
|
## 更多示例
|
|
149
151
|
|
|
150
|
-
请参考 [examples](
|
|
152
|
+
请参考 [examples](examples) 目录。
|
|
151
153
|
|
|
152
154
|
# 相关配置
|
|
153
155
|
|
|
154
156
|
## 代理
|
|
155
157
|
|
|
156
|
-
如果是有代理的环境下,需要配置代理,请在创建 Client 时传入 [profile.httpProfile.proxy](
|
|
158
|
+
如果是有代理的环境下,需要配置代理,请在创建 Client 时传入 [profile.httpProfile.proxy](src/common/interface.ts#L78) 参数,或设置系统环境变量 `http_proxy` ,否则可能无法正常调用,抛出连接超时的异常。
|
|
157
159
|
|
|
158
160
|
# 凭证管理
|
|
159
161
|
|
|
@@ -3,271 +3,202 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
3
3
|
constructor(clientConfig) {
|
|
4
4
|
super("tcb.tencentcloudapi.com", "2018-06-08", clientConfig);
|
|
5
5
|
}
|
|
6
|
-
async
|
|
7
|
-
return this.request("
|
|
6
|
+
async DescribeSpecialCostItems(req, cb) {
|
|
7
|
+
return this.request("DescribeSpecialCostItems", req, cb);
|
|
8
8
|
}
|
|
9
|
-
async
|
|
10
|
-
return this.request("
|
|
9
|
+
async DeleteGatewayVersion(req, cb) {
|
|
10
|
+
return this.request("DeleteGatewayVersion", req, cb);
|
|
11
11
|
}
|
|
12
|
-
async
|
|
13
|
-
return this.request("
|
|
12
|
+
async EstablishWxGatewayRoute(req, cb) {
|
|
13
|
+
return this.request("EstablishWxGatewayRoute", req, cb);
|
|
14
14
|
}
|
|
15
|
-
async
|
|
16
|
-
return this.request("
|
|
15
|
+
async ModifyClsTopic(req, cb) {
|
|
16
|
+
return this.request("ModifyClsTopic", req, cb);
|
|
17
17
|
}
|
|
18
|
-
async
|
|
19
|
-
return this.request("
|
|
18
|
+
async CreateHostingDomain(req, cb) {
|
|
19
|
+
return this.request("CreateHostingDomain", req, cb);
|
|
20
20
|
}
|
|
21
|
-
async
|
|
22
|
-
return this.request("
|
|
21
|
+
async DeleteWxGatewayRoute(req, cb) {
|
|
22
|
+
return this.request("DeleteWxGatewayRoute", req, cb);
|
|
23
23
|
}
|
|
24
|
-
async
|
|
25
|
-
return this.request("
|
|
24
|
+
async DescribeUserActivityInfo(req, cb) {
|
|
25
|
+
return this.request("DescribeUserActivityInfo", req, cb);
|
|
26
26
|
}
|
|
27
|
-
async
|
|
28
|
-
return this.request("
|
|
27
|
+
async BindEnvGateway(req, cb) {
|
|
28
|
+
return this.request("BindEnvGateway", req, cb);
|
|
29
29
|
}
|
|
30
|
-
async
|
|
31
|
-
return this.request("
|
|
30
|
+
async DescribeGatewayVersions(req, cb) {
|
|
31
|
+
return this.request("DescribeGatewayVersions", req, cb);
|
|
32
32
|
}
|
|
33
|
-
async
|
|
34
|
-
return this.request("
|
|
33
|
+
async DescribeSmsQuotas(req, cb) {
|
|
34
|
+
return this.request("DescribeSmsQuotas", req, cb);
|
|
35
35
|
}
|
|
36
|
-
async
|
|
37
|
-
return this.request("
|
|
36
|
+
async DescribeCbrServerVersion(req, cb) {
|
|
37
|
+
return this.request("DescribeCbrServerVersion", req, cb);
|
|
38
38
|
}
|
|
39
|
-
async
|
|
40
|
-
return this.request("
|
|
39
|
+
async DescribeBaasPackageList(req, cb) {
|
|
40
|
+
return this.request("DescribeBaasPackageList", req, cb);
|
|
41
41
|
}
|
|
42
|
-
async
|
|
43
|
-
return this.request("
|
|
42
|
+
async DescribeEnvPostpaidDeduct(req, cb) {
|
|
43
|
+
return this.request("DescribeEnvPostpaidDeduct", req, cb);
|
|
44
44
|
}
|
|
45
|
-
async
|
|
46
|
-
return this.request("
|
|
45
|
+
async DescribeEnvs(req, cb) {
|
|
46
|
+
return this.request("DescribeEnvs", req, cb);
|
|
47
47
|
}
|
|
48
|
-
async
|
|
49
|
-
return this.request("
|
|
48
|
+
async ModifyGatewayVersionTraffic(req, cb) {
|
|
49
|
+
return this.request("ModifyGatewayVersionTraffic", req, cb);
|
|
50
50
|
}
|
|
51
|
-
async
|
|
52
|
-
return this.request("
|
|
51
|
+
async CreateAuthDomain(req, cb) {
|
|
52
|
+
return this.request("CreateAuthDomain", req, cb);
|
|
53
53
|
}
|
|
54
|
-
async
|
|
55
|
-
return this.request("
|
|
54
|
+
async CreateCloudBaseRunServerVersion(req, cb) {
|
|
55
|
+
return this.request("CreateCloudBaseRunServerVersion", req, cb);
|
|
56
56
|
}
|
|
57
|
-
async
|
|
58
|
-
return this.request("
|
|
57
|
+
async DescribeCloudBaseRunServerVersion(req, cb) {
|
|
58
|
+
return this.request("DescribeCloudBaseRunServerVersion", req, cb);
|
|
59
59
|
}
|
|
60
|
-
async
|
|
61
|
-
return this.request("
|
|
60
|
+
async DescribeAuthDomains(req, cb) {
|
|
61
|
+
return this.request("DescribeAuthDomains", req, cb);
|
|
62
62
|
}
|
|
63
|
-
async
|
|
64
|
-
return this.request("
|
|
63
|
+
async DescribeWxGateways(req, cb) {
|
|
64
|
+
return this.request("DescribeWxGateways", req, cb);
|
|
65
65
|
}
|
|
66
|
-
async
|
|
67
|
-
return this.request("
|
|
66
|
+
async UnfreezeCloudBaseRunServers(req, cb) {
|
|
67
|
+
return this.request("UnfreezeCloudBaseRunServers", req, cb);
|
|
68
68
|
}
|
|
69
|
-
async
|
|
70
|
-
return this.request("
|
|
69
|
+
async CreatePostpayPackage(req, cb) {
|
|
70
|
+
return this.request("CreatePostpayPackage", req, cb);
|
|
71
71
|
}
|
|
72
|
-
async
|
|
73
|
-
return this.request("
|
|
72
|
+
async ReplaceActivityRecord(req, cb) {
|
|
73
|
+
return this.request("ReplaceActivityRecord", req, cb);
|
|
74
74
|
}
|
|
75
|
-
async
|
|
76
|
-
return this.request("
|
|
75
|
+
async DescribeBillingInfo(req, cb) {
|
|
76
|
+
return this.request("DescribeBillingInfo", req, cb);
|
|
77
77
|
}
|
|
78
|
-
async
|
|
79
|
-
return this.request("
|
|
78
|
+
async DescribeCloudBaseRunResource(req, cb) {
|
|
79
|
+
return this.request("DescribeCloudBaseRunResource", req, cb);
|
|
80
80
|
}
|
|
81
|
-
async
|
|
82
|
-
return this.request("
|
|
81
|
+
async DescribeWxGatewayRoutes(req, cb) {
|
|
82
|
+
return this.request("DescribeWxGatewayRoutes", req, cb);
|
|
83
83
|
}
|
|
84
|
-
async
|
|
85
|
-
return this.request("
|
|
84
|
+
async DescribeCloudBaseProjectVersionList(req, cb) {
|
|
85
|
+
return this.request("DescribeCloudBaseProjectVersionList", req, cb);
|
|
86
86
|
}
|
|
87
|
-
async
|
|
88
|
-
return this.request("
|
|
87
|
+
async DescribeCloudBaseProjectLatestVersionList(req, cb) {
|
|
88
|
+
return this.request("DescribeCloudBaseProjectLatestVersionList", req, cb);
|
|
89
89
|
}
|
|
90
90
|
async DescribeHostingDomainTask(req, cb) {
|
|
91
91
|
return this.request("DescribeHostingDomainTask", req, cb);
|
|
92
92
|
}
|
|
93
|
-
async
|
|
94
|
-
return this.request("
|
|
95
|
-
}
|
|
96
|
-
async CreateWxCloudBaseRunServerDBCluster(req, cb) {
|
|
97
|
-
return this.request("CreateWxCloudBaseRunServerDBCluster", req, cb);
|
|
98
|
-
}
|
|
99
|
-
async ModifyGatewayVersionTraffic(req, cb) {
|
|
100
|
-
return this.request("ModifyGatewayVersionTraffic", req, cb);
|
|
101
|
-
}
|
|
102
|
-
async CreateAuthDomain(req, cb) {
|
|
103
|
-
return this.request("CreateAuthDomain", req, cb);
|
|
104
|
-
}
|
|
105
|
-
async DescribeEnvs(req, cb) {
|
|
106
|
-
return this.request("DescribeEnvs", req, cb);
|
|
93
|
+
async ReinstateEnv(req, cb) {
|
|
94
|
+
return this.request("ReinstateEnv", req, cb);
|
|
107
95
|
}
|
|
108
|
-
async
|
|
109
|
-
return this.request("
|
|
96
|
+
async DescribeDatabaseACL(req, cb) {
|
|
97
|
+
return this.request("DescribeDatabaseACL", req, cb);
|
|
110
98
|
}
|
|
111
|
-
async
|
|
112
|
-
return this.request("
|
|
99
|
+
async ModifyCloudBaseRunServerFlowConf(req, cb) {
|
|
100
|
+
return this.request("ModifyCloudBaseRunServerFlowConf", req, cb);
|
|
113
101
|
}
|
|
114
|
-
async
|
|
115
|
-
return this.request("
|
|
102
|
+
async SearchClsLog(req, cb) {
|
|
103
|
+
return this.request("SearchClsLog", req, cb);
|
|
116
104
|
}
|
|
117
|
-
async
|
|
118
|
-
return this.request("
|
|
105
|
+
async DescribeCloudBaseRunResourceForExtend(req, cb) {
|
|
106
|
+
return this.request("DescribeCloudBaseRunResourceForExtend", req, cb);
|
|
119
107
|
}
|
|
120
108
|
async DescribeGatewayCurveData(req, cb) {
|
|
121
109
|
return this.request("DescribeGatewayCurveData", req, cb);
|
|
122
110
|
}
|
|
123
|
-
async
|
|
124
|
-
return this.request("
|
|
125
|
-
}
|
|
126
|
-
async DeleteCloudBaseRunServerVersion(req, cb) {
|
|
127
|
-
return this.request("DeleteCloudBaseRunServerVersion", req, cb);
|
|
128
|
-
}
|
|
129
|
-
async CreateCloudBaseRunResource(req, cb) {
|
|
130
|
-
return this.request("CreateCloudBaseRunResource", req, cb);
|
|
111
|
+
async DescribeEnvDealRegion(req, cb) {
|
|
112
|
+
return this.request("DescribeEnvDealRegion", req, cb);
|
|
131
113
|
}
|
|
132
114
|
async DescribeExtraPkgBillingInfo(req, cb) {
|
|
133
115
|
return this.request("DescribeExtraPkgBillingInfo", req, cb);
|
|
134
116
|
}
|
|
135
|
-
async
|
|
136
|
-
return this.request("
|
|
137
|
-
}
|
|
138
|
-
async DescribeCurveData(req, cb) {
|
|
139
|
-
return this.request("DescribeCurveData", req, cb);
|
|
140
|
-
}
|
|
141
|
-
async ModifyDatabaseACL(req, cb) {
|
|
142
|
-
return this.request("ModifyDatabaseACL", req, cb);
|
|
117
|
+
async DescribeExtensionUploadInfo(req, cb) {
|
|
118
|
+
return this.request("DescribeExtensionUploadInfo", req, cb);
|
|
143
119
|
}
|
|
144
|
-
async
|
|
145
|
-
return this.request("
|
|
120
|
+
async DescribeGraphData(req, cb) {
|
|
121
|
+
return this.request("DescribeGraphData", req, cb);
|
|
146
122
|
}
|
|
147
123
|
async CommonServiceAPI(req, cb) {
|
|
148
124
|
return this.request("CommonServiceAPI", req, cb);
|
|
149
125
|
}
|
|
150
|
-
async
|
|
151
|
-
return this.request("
|
|
152
|
-
}
|
|
153
|
-
async DestroyStaticStore(req, cb) {
|
|
154
|
-
return this.request("DestroyStaticStore", req, cb);
|
|
155
|
-
}
|
|
156
|
-
async DescribeEnvFreeQuota(req, cb) {
|
|
157
|
-
return this.request("DescribeEnvFreeQuota", req, cb);
|
|
126
|
+
async CreateAndDeployCloudBaseProject(req, cb) {
|
|
127
|
+
return this.request("CreateAndDeployCloudBaseProject", req, cb);
|
|
158
128
|
}
|
|
159
|
-
async
|
|
160
|
-
return this.request("
|
|
129
|
+
async CheckTcbService(req, cb) {
|
|
130
|
+
return this.request("CheckTcbService", req, cb);
|
|
161
131
|
}
|
|
162
|
-
async
|
|
163
|
-
return this.request("
|
|
132
|
+
async DescribePostpayPackageFreeQuotas(req, cb) {
|
|
133
|
+
return this.request("DescribePostpayPackageFreeQuotas", req, cb);
|
|
164
134
|
}
|
|
165
|
-
async
|
|
166
|
-
return this.request("
|
|
135
|
+
async ModifyCloudBaseRunServerVersion(req, cb) {
|
|
136
|
+
return this.request("ModifyCloudBaseRunServerVersion", req, cb);
|
|
167
137
|
}
|
|
168
|
-
async
|
|
169
|
-
return this.request("
|
|
138
|
+
async DescribeActivityRecord(req, cb) {
|
|
139
|
+
return this.request("DescribeActivityRecord", req, cb);
|
|
170
140
|
}
|
|
171
|
-
async
|
|
172
|
-
return this.request("
|
|
141
|
+
async DeleteCloudBaseRunServerVersion(req, cb) {
|
|
142
|
+
return this.request("DeleteCloudBaseRunServerVersion", req, cb);
|
|
173
143
|
}
|
|
174
144
|
async DescribeQuotaData(req, cb) {
|
|
175
145
|
return this.request("DescribeQuotaData", req, cb);
|
|
176
146
|
}
|
|
177
|
-
async
|
|
178
|
-
return this.request("
|
|
179
|
-
}
|
|
180
|
-
async DescribeStandaloneGateway(req, cb) {
|
|
181
|
-
return this.request("DescribeStandaloneGateway", req, cb);
|
|
147
|
+
async CreateCloudBaseRunResource(req, cb) {
|
|
148
|
+
return this.request("CreateCloudBaseRunResource", req, cb);
|
|
182
149
|
}
|
|
183
|
-
async
|
|
184
|
-
return this.request("
|
|
150
|
+
async DeleteCloudBaseProjectLatestVersion(req, cb) {
|
|
151
|
+
return this.request("DeleteCloudBaseProjectLatestVersion", req, cb);
|
|
185
152
|
}
|
|
186
|
-
async
|
|
187
|
-
return this.request("
|
|
153
|
+
async DescribeDownloadFile(req, cb) {
|
|
154
|
+
return this.request("DescribeDownloadFile", req, cb);
|
|
188
155
|
}
|
|
189
|
-
async
|
|
190
|
-
return this.request("
|
|
156
|
+
async DescribeCloudBaseRunServer(req, cb) {
|
|
157
|
+
return this.request("DescribeCloudBaseRunServer", req, cb);
|
|
191
158
|
}
|
|
192
|
-
async
|
|
193
|
-
return this.request("
|
|
159
|
+
async ModifyEnv(req, cb) {
|
|
160
|
+
return this.request("ModifyEnv", req, cb);
|
|
194
161
|
}
|
|
195
|
-
async
|
|
196
|
-
return this.request("
|
|
162
|
+
async EstablishCloudBaseRunServer(req, cb) {
|
|
163
|
+
return this.request("EstablishCloudBaseRunServer", req, cb);
|
|
197
164
|
}
|
|
198
165
|
async DestroyEnv(req, cb) {
|
|
199
166
|
return this.request("DestroyEnv", req, cb);
|
|
200
167
|
}
|
|
201
|
-
async
|
|
202
|
-
return this.request("
|
|
203
|
-
}
|
|
204
|
-
async DescribeCloudBaseRunVersionRsByCondition(req, cb) {
|
|
205
|
-
return this.request("DescribeCloudBaseRunVersionRsByCondition", req, cb);
|
|
206
|
-
}
|
|
207
|
-
async DescribePostpayFreeQuotas(req, cb) {
|
|
208
|
-
return this.request("DescribePostpayFreeQuotas", req, cb);
|
|
209
|
-
}
|
|
210
|
-
async DescribeGatewayVersions(req, cb) {
|
|
211
|
-
return this.request("DescribeGatewayVersions", req, cb);
|
|
212
|
-
}
|
|
213
|
-
async DescribeWxCloudBaseRunEnvs(req, cb) {
|
|
214
|
-
return this.request("DescribeWxCloudBaseRunEnvs", req, cb);
|
|
215
|
-
}
|
|
216
|
-
async DescribeCbrServerVersion(req, cb) {
|
|
217
|
-
return this.request("DescribeCbrServerVersion", req, cb);
|
|
218
|
-
}
|
|
219
|
-
async RollUpdateCloudBaseRunServerVersion(req, cb) {
|
|
220
|
-
return this.request("RollUpdateCloudBaseRunServerVersion", req, cb);
|
|
221
|
-
}
|
|
222
|
-
async DescribeEnvPostpaidDeduct(req, cb) {
|
|
223
|
-
return this.request("DescribeEnvPostpaidDeduct", req, cb);
|
|
224
|
-
}
|
|
225
|
-
async DescribeDownloadFile(req, cb) {
|
|
226
|
-
return this.request("DescribeDownloadFile", req, cb);
|
|
227
|
-
}
|
|
228
|
-
async CreateStandaloneGateway(req, cb) {
|
|
229
|
-
return this.request("CreateStandaloneGateway", req, cb);
|
|
230
|
-
}
|
|
231
|
-
async DescribeAuthDomains(req, cb) {
|
|
232
|
-
return this.request("DescribeAuthDomains", req, cb);
|
|
233
|
-
}
|
|
234
|
-
async UnfreezeCloudBaseRunServers(req, cb) {
|
|
235
|
-
return this.request("UnfreezeCloudBaseRunServers", req, cb);
|
|
236
|
-
}
|
|
237
|
-
async DescribeBillingInfo(req, cb) {
|
|
238
|
-
return this.request("DescribeBillingInfo", req, cb);
|
|
168
|
+
async FreezeCloudBaseRunServers(req, cb) {
|
|
169
|
+
return this.request("FreezeCloudBaseRunServers", req, cb);
|
|
239
170
|
}
|
|
240
|
-
async
|
|
241
|
-
return this.request("
|
|
171
|
+
async DescribeCloudBaseBuildService(req, cb) {
|
|
172
|
+
return this.request("DescribeCloudBaseBuildService", req, cb);
|
|
242
173
|
}
|
|
243
|
-
async
|
|
244
|
-
return this.request("
|
|
174
|
+
async DescribeCloudBaseRunVersionSnapshot(req, cb) {
|
|
175
|
+
return this.request("DescribeCloudBaseRunVersionSnapshot", req, cb);
|
|
245
176
|
}
|
|
246
|
-
async
|
|
247
|
-
return this.request("
|
|
177
|
+
async DescribeCloudBaseRunVersion(req, cb) {
|
|
178
|
+
return this.request("DescribeCloudBaseRunVersion", req, cb);
|
|
248
179
|
}
|
|
249
|
-
async
|
|
250
|
-
return this.request("
|
|
180
|
+
async DescribeCurveData(req, cb) {
|
|
181
|
+
return this.request("DescribeCurveData", req, cb);
|
|
251
182
|
}
|
|
252
|
-
async
|
|
253
|
-
return this.request("
|
|
183
|
+
async ModifyDatabaseACL(req, cb) {
|
|
184
|
+
return this.request("ModifyDatabaseACL", req, cb);
|
|
254
185
|
}
|
|
255
|
-
async
|
|
256
|
-
return this.request("
|
|
186
|
+
async CreateStaticStore(req, cb) {
|
|
187
|
+
return this.request("CreateStaticStore", req, cb);
|
|
257
188
|
}
|
|
258
|
-
async
|
|
259
|
-
return this.request("
|
|
189
|
+
async DescribeEnvLimit(req, cb) {
|
|
190
|
+
return this.request("DescribeEnvLimit", req, cb);
|
|
260
191
|
}
|
|
261
|
-
async
|
|
262
|
-
return this.request("
|
|
192
|
+
async EditAuthConfig(req, cb) {
|
|
193
|
+
return this.request("EditAuthConfig", req, cb);
|
|
263
194
|
}
|
|
264
|
-
async
|
|
265
|
-
return this.request("
|
|
195
|
+
async DestroyStaticStore(req, cb) {
|
|
196
|
+
return this.request("DestroyStaticStore", req, cb);
|
|
266
197
|
}
|
|
267
|
-
async
|
|
268
|
-
return this.request("
|
|
198
|
+
async DescribePostpayFreeQuotas(req, cb) {
|
|
199
|
+
return this.request("DescribePostpayFreeQuotas", req, cb);
|
|
269
200
|
}
|
|
270
|
-
async
|
|
271
|
-
return this.request("
|
|
201
|
+
async DescribeEnvFreeQuota(req, cb) {
|
|
202
|
+
return this.request("DescribeEnvFreeQuota", req, cb);
|
|
272
203
|
}
|
|
273
204
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tencentcloud-sdk-nodejs-tcb",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.158",
|
|
4
4
|
"description": "腾讯云 API NODEJS SDK",
|
|
5
5
|
"main": "./tencentcloud/index.js",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
"build:es": "tsc -p tsconfig.es.json",
|
|
13
13
|
"build:slim": "node ./scripts/build_slim.js",
|
|
14
14
|
"prettier": "prettier --config prettier.config.js --write 'src/**/*.{tsx,ts,jsx,js,css,json,vue}'",
|
|
15
|
-
"clean": "rimraf tencentcloud es"
|
|
15
|
+
"clean": "rimraf tencentcloud es",
|
|
16
|
+
"test:common": "vitest run"
|
|
16
17
|
},
|
|
17
18
|
"engines": {
|
|
18
19
|
"node": ">=10"
|
|
@@ -44,9 +45,9 @@
|
|
|
44
45
|
"url": "https://github.com/tencentcloud/tencentcloud-sdk-nodejs"
|
|
45
46
|
},
|
|
46
47
|
"devDependencies": {
|
|
47
|
-
"@types/
|
|
48
|
+
"@types/ini": "^4.1.1",
|
|
48
49
|
"@types/json-bigint": "^1.0.1",
|
|
49
|
-
"@types/node": "^
|
|
50
|
+
"@types/node": "^18.0.0",
|
|
50
51
|
"@types/node-fetch": "^2.5.7",
|
|
51
52
|
"@types/uuid": "^9.0.8",
|
|
52
53
|
"@typescript-eslint/eslint-plugin": "^2.34.0",
|
|
@@ -61,6 +62,7 @@
|
|
|
61
62
|
"prettier": "^2.3.0",
|
|
62
63
|
"rimraf": "^5.0.10",
|
|
63
64
|
"ts-node": "^8.10.2",
|
|
64
|
-
"typescript": "^
|
|
65
|
+
"typescript": "^5.9.2",
|
|
66
|
+
"vitest": "2.1.9"
|
|
65
67
|
}
|
|
66
68
|
}
|