@svton/cli 2.1.0 → 2.2.0
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/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/features.json +10 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
package/features.json
CHANGED
|
@@ -215,20 +215,26 @@
|
|
|
215
215
|
},
|
|
216
216
|
"storage": {
|
|
217
217
|
"name": "对象存储",
|
|
218
|
-
"description": "
|
|
218
|
+
"description": "七牛云/腾讯云 COS",
|
|
219
219
|
"category": "backend",
|
|
220
220
|
"packages": {
|
|
221
221
|
"dependencies": {
|
|
222
222
|
"@svton/nestjs-object-storage": "latest",
|
|
223
|
-
"@svton/nestjs-object-storage-qiniu-kodo": "latest"
|
|
223
|
+
"@svton/nestjs-object-storage-qiniu-kodo": "latest",
|
|
224
|
+
"@svton/nestjs-object-storage-tencent-cos": "latest"
|
|
224
225
|
}
|
|
225
226
|
},
|
|
226
227
|
"envVars": [
|
|
227
|
-
{ "key": "STORAGE_PROVIDER", "default": "qiniu", "description": "存储服务商 (qiniu/
|
|
228
|
+
{ "key": "STORAGE_PROVIDER", "default": "qiniu", "description": "存储服务商 (qiniu/tencent-cos)" },
|
|
228
229
|
{ "key": "QINIU_ACCESS_KEY", "default": "", "description": "七牛云 AccessKey" },
|
|
229
230
|
{ "key": "QINIU_SECRET_KEY", "default": "", "description": "七牛云 SecretKey" },
|
|
230
231
|
{ "key": "QINIU_BUCKET", "default": "", "description": "七牛云存储空间名称" },
|
|
231
|
-
{ "key": "QINIU_DOMAIN", "default": "", "description": "七牛云 CDN 域名" }
|
|
232
|
+
{ "key": "QINIU_DOMAIN", "default": "", "description": "七牛云 CDN 域名" },
|
|
233
|
+
{ "key": "COS_SECRET_ID", "default": "", "description": "腾讯云 COS SecretId" },
|
|
234
|
+
{ "key": "COS_SECRET_KEY", "default": "", "description": "腾讯云 COS SecretKey" },
|
|
235
|
+
{ "key": "COS_BUCKET", "default": "", "description": "腾讯云 COS 存储桶名称" },
|
|
236
|
+
{ "key": "COS_REGION", "default": "ap-guangzhou", "description": "腾讯云 COS 地域" },
|
|
237
|
+
{ "key": "COS_DOMAIN", "default": "", "description": "腾讯云 COS 自定义域名(可选)" }
|
|
232
238
|
],
|
|
233
239
|
"configFiles": [
|
|
234
240
|
{
|