@cloudbase/cli 2.11.6 → 2.11.7
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/.augment-guidelines +119 -0
- package/.claude/settings.local.json +6 -0
- package/.clinerules/cloudbase-rules.mdc +119 -0
- package/.cursor/rules/cloudbase-rules.mdc +119 -0
- package/.editorconfig +10 -0
- package/.eslintignore +8 -0
- package/.eslintrc +35 -0
- package/.mcp.json +11 -0
- package/.prettierignore +1 -0
- package/.prettierrc.js +29 -0
- package/.vscode/launch.json +26 -0
- package/.yarnrc.yml +1 -0
- package/CLAUDE.md +119 -0
- package/LICENSE +6 -0
- package/bin/ccr.js +3 -0
- package/bin/cloudbase.js +7 -0
- package/bin/tcb.js +339 -0
- package/changelog.md +6 -0
- package/cloudbaserc.json +13 -0
- package/jest.config.js +17 -0
- package/lib/auth/index.js +18 -0
- package/lib/auth/login.js +111 -0
- package/lib/auth/logout.js +20 -0
- package/lib/commands/account/index.js +18 -0
- package/lib/commands/account/login.js +269 -0
- package/lib/commands/account/logout.js +56 -0
- package/lib/commands/ai/index.js +200 -0
- package/lib/commands/cloudfunction/base.js +369 -0
- package/lib/commands/cloudfunction/index.js +17 -0
- package/lib/commands/cloudrun/base.js +1040 -0
- package/lib/commands/cloudrun/cloudrun-run-ui/index.html +193 -0
- package/lib/commands/cloudrun/index.js +17 -0
- package/lib/commands/common.js +225 -0
- package/lib/commands/config/delete.js +72 -0
- package/lib/commands/config/get.js +69 -0
- package/lib/commands/config/index.js +21 -0
- package/lib/commands/config/interface.js +25 -0
- package/lib/commands/config/list.js +72 -0
- package/lib/commands/config/set.js +89 -0
- package/lib/commands/constants.js +11 -0
- package/lib/commands/db/base.js +399 -0
- package/lib/commands/db/index.js +17 -0
- package/lib/commands/env/base.js +129 -0
- package/lib/commands/env/domain.js +222 -0
- package/lib/commands/env/index.js +19 -0
- package/lib/commands/env/login.js +271 -0
- package/lib/commands/framework/index.js +196 -0
- package/lib/commands/fun/base.js +434 -0
- package/lib/commands/fun/index.js +17 -0
- package/lib/commands/functions/alias/getRoute.js +99 -0
- package/lib/commands/functions/alias/index.js +18 -0
- package/lib/commands/functions/alias/setRoute.js +101 -0
- package/lib/commands/functions/code-download.js +123 -0
- package/lib/commands/functions/code-update.js +96 -0
- package/lib/commands/functions/concurrency/delete.js +71 -0
- package/lib/commands/functions/concurrency/index.js +19 -0
- package/lib/commands/functions/concurrency/list.js +82 -0
- package/lib/commands/functions/concurrency/set.js +73 -0
- package/lib/commands/functions/config-update.js +103 -0
- package/lib/commands/functions/copy.js +82 -0
- package/lib/commands/functions/delete.js +102 -0
- package/lib/commands/functions/deploy.js +331 -0
- package/lib/commands/functions/detail.js +166 -0
- package/lib/commands/functions/index.js +33 -0
- package/lib/commands/functions/invoke.js +140 -0
- package/lib/commands/functions/layer/bind.js +191 -0
- package/lib/commands/functions/layer/common.js +13 -0
- package/lib/commands/functions/layer/create.js +88 -0
- package/lib/commands/functions/layer/delete.js +92 -0
- package/lib/commands/functions/layer/download.js +112 -0
- package/lib/commands/functions/layer/index.js +23 -0
- package/lib/commands/functions/layer/list.js +105 -0
- package/lib/commands/functions/layer/sort.js +98 -0
- package/lib/commands/functions/list.js +92 -0
- package/lib/commands/functions/log.js +156 -0
- package/lib/commands/functions/run.js +245 -0
- package/lib/commands/functions/trigger-create.js +99 -0
- package/lib/commands/functions/trigger-delete.js +121 -0
- package/lib/commands/functions/version/index.js +18 -0
- package/lib/commands/functions/version/list.js +97 -0
- package/lib/commands/functions/version/publish.js +71 -0
- package/lib/commands/gateway/create.js +125 -0
- package/lib/commands/gateway/delete.js +111 -0
- package/lib/commands/gateway/domain.js +202 -0
- package/lib/commands/gateway/index.js +21 -0
- package/lib/commands/gateway/list.js +107 -0
- package/lib/commands/gateway/switch.js +144 -0
- package/lib/commands/helpers/index.js +19 -0
- package/lib/commands/helpers/init.js +395 -0
- package/lib/commands/helpers/new.js +130 -0
- package/lib/commands/helpers/open.js +90 -0
- package/lib/commands/hosting/hosting.js +378 -0
- package/lib/commands/hosting/index.js +17 -0
- package/lib/commands/index.js +38 -0
- package/lib/commands/lowcode/app.js +400 -0
- package/lib/commands/lowcode/comps.js +384 -0
- package/lib/commands/lowcode/deps.js +85 -0
- package/lib/commands/lowcode/index.js +19 -0
- package/lib/commands/lowcode/utils.js +308 -0
- package/lib/commands/pull/index.js +17 -0
- package/lib/commands/pull/pull.js +107 -0
- package/lib/commands/run/delete.js +102 -0
- package/lib/commands/run/image/common.js +13 -0
- package/lib/commands/run/image/delete.js +91 -0
- package/lib/commands/run/image/download.js +86 -0
- package/lib/commands/run/image/index.js +21 -0
- package/lib/commands/run/image/list.js +104 -0
- package/lib/commands/run/image/upload.js +114 -0
- package/lib/commands/run/index.js +21 -0
- package/lib/commands/run/list.js +104 -0
- package/lib/commands/run/service/config.js +113 -0
- package/lib/commands/run/service/deploy.js +155 -0
- package/lib/commands/run/service/index.js +20 -0
- package/lib/commands/run/service/list.js +116 -0
- package/lib/commands/run/service/update.js +141 -0
- package/lib/commands/run/standalonegateway/common.js +13 -0
- package/lib/commands/run/standalonegateway/create.js +106 -0
- package/lib/commands/run/standalonegateway/destroy.js +82 -0
- package/lib/commands/run/standalonegateway/index.js +21 -0
- package/lib/commands/run/standalonegateway/list.js +78 -0
- package/lib/commands/run/standalonegateway/package.js +87 -0
- package/lib/commands/run/standalonegateway/turn.js +87 -0
- package/lib/commands/run/version/common.js +13 -0
- package/lib/commands/run/version/create.js +329 -0
- package/lib/commands/run/version/delete.js +90 -0
- package/lib/commands/run/version/index.js +21 -0
- package/lib/commands/run/version/list.js +109 -0
- package/lib/commands/run/version/modify.js +142 -0
- package/lib/commands/run/version/update.js +353 -0
- package/lib/commands/runf/base.js +453 -0
- package/lib/commands/runf/index.js +17 -0
- package/lib/commands/self-update.js +134 -0
- package/lib/commands/smart.js +124 -0
- package/lib/commands/storage/index.js +17 -0
- package/lib/commands/storage/storage.js +515 -0
- package/lib/commands/third/index.js +17 -0
- package/lib/commands/third/thirdAttach.js +78 -0
- package/lib/commands/utils.js +197 -0
- package/lib/completion/index.js +15 -0
- package/lib/constant.js +142 -0
- package/lib/db/index.js +85 -0
- package/lib/decorators/captureError.js +30 -0
- package/lib/decorators/constants.js +15 -0
- package/lib/decorators/deprecate.js +18 -0
- package/lib/decorators/guard.js +35 -0
- package/lib/decorators/index.js +25 -0
- package/lib/decorators/injectParams.js +58 -0
- package/lib/decorators/params/common.js +16 -0
- package/lib/decorators/params/index.js +34 -0
- package/lib/env/domain.js +42 -0
- package/lib/env/index.js +80 -0
- package/lib/env/login.js +78 -0
- package/lib/error.js +17 -0
- package/lib/function/alias.js +54 -0
- package/lib/function/base.js +266 -0
- package/lib/function/code.js +28 -0
- package/lib/function/concurrency.js +70 -0
- package/lib/function/create.js +72 -0
- package/lib/function/delete.js +53 -0
- package/lib/function/index.js +27 -0
- package/lib/function/layer/attach.js +63 -0
- package/lib/function/layer/create.js +63 -0
- package/lib/function/layer/delete.js +24 -0
- package/lib/function/layer/download.js +37 -0
- package/lib/function/layer/index.js +23 -0
- package/lib/function/layer/list.js +36 -0
- package/lib/function/layer/sort.js +25 -0
- package/lib/function/trigger.js +106 -0
- package/lib/function/update.js +41 -0
- package/lib/function/version.js +52 -0
- package/lib/function/vpc.js +35 -0
- package/lib/gateway/index.js +136 -0
- package/lib/help.js +44 -0
- package/lib/hosting.js +244 -0
- package/lib/i18n/index.js +73 -0
- package/lib/index.js +13 -0
- package/lib/logger.js +19 -0
- package/lib/run/delete.js +22 -0
- package/lib/run/image/build.js +37 -0
- package/lib/run/image/delete.js +22 -0
- package/lib/run/image/index.js +20 -0
- package/lib/run/image/info.js +29 -0
- package/lib/run/image/list.js +30 -0
- package/lib/run/index.js +23 -0
- package/lib/run/list.js +39 -0
- package/lib/run/repo.js +31 -0
- package/lib/run/service/common.js +271 -0
- package/lib/run/service/config.js +70 -0
- package/lib/run/service/deployPackage.js +83 -0
- package/lib/run/service/index.js +22 -0
- package/lib/run/service/list.js +31 -0
- package/lib/run/service/showLogs.js +117 -0
- package/lib/run/service/update.js +84 -0
- package/lib/run/standalonegateway/create.js +32 -0
- package/lib/run/standalonegateway/destroy.js +28 -0
- package/lib/run/standalonegateway/index.js +21 -0
- package/lib/run/standalonegateway/list.js +48 -0
- package/lib/run/standalonegateway/package/index.js +17 -0
- package/lib/run/standalonegateway/package/list.js +32 -0
- package/lib/run/standalonegateway/turn/index.js +18 -0
- package/lib/run/standalonegateway/turn/off.js +28 -0
- package/lib/run/standalonegateway/turn/on.js +28 -0
- package/lib/run/version/create.js +50 -0
- package/lib/run/version/delete.js +23 -0
- package/lib/run/version/index.js +22 -0
- package/lib/run/version/list.js +24 -0
- package/lib/run/version/modify.js +24 -0
- package/lib/run/version/repo.js +33 -0
- package/lib/run/version/update.js +39 -0
- package/lib/storage.js +125 -0
- package/lib/third/index.js +25 -0
- package/lib/types.js +12 -0
- package/lib/utils/ai/banner.js +106 -0
- package/lib/utils/ai/claudeWindows.js +64 -0
- package/lib/utils/ai/config.js +290 -0
- package/lib/utils/ai/const.js +178 -0
- package/lib/utils/ai/ensureFiles.js +27 -0
- package/lib/utils/ai/env.js +37 -0
- package/lib/utils/ai/envLocalManager.js +145 -0
- package/lib/utils/ai/nodeVersion.js +19 -0
- package/lib/utils/ai/router.js +1315 -0
- package/lib/utils/ai/setup.js +705 -0
- package/lib/utils/auth.js +28 -0
- package/lib/utils/checkTcbrEnv.js +76 -0
- package/lib/utils/cli-table.js +19 -0
- package/lib/utils/commonParamsCheck.js +49 -0
- package/lib/utils/config.js +59 -0
- package/lib/utils/debug-logger.js +31 -0
- package/lib/utils/dts.js +154 -0
- package/lib/utils/env.js +222 -0
- package/lib/utils/fs/del.js +11 -0
- package/lib/utils/fs/index.js +94 -0
- package/lib/utils/function-packer.js +87 -0
- package/lib/utils/index.js +38 -0
- package/lib/utils/log.js +85 -0
- package/lib/utils/mcp-config-modifier.js +205 -0
- package/lib/utils/net/cloud-api-request.js +64 -0
- package/lib/utils/net/credential.js +61 -0
- package/lib/utils/net/http-request.js +108 -0
- package/lib/utils/net/index.js +21 -0
- package/lib/utils/net/manager-service.js +51 -0
- package/lib/utils/net/proxy.js +9 -0
- package/lib/utils/notice.js +37 -0
- package/lib/utils/output/highlight.js +11 -0
- package/lib/utils/output/index.js +19 -0
- package/lib/utils/output/link.js +16 -0
- package/lib/utils/output/loading.js +68 -0
- package/lib/utils/parallel.js +65 -0
- package/lib/utils/platform/index.js +19 -0
- package/lib/utils/platform/mac.js +37 -0
- package/lib/utils/platform/os.js +59 -0
- package/lib/utils/platform/port.js +26 -0
- package/lib/utils/progress-bar.js +44 -0
- package/lib/utils/prompt/index.js +17 -0
- package/lib/utils/prompt/select.js +54 -0
- package/lib/utils/report.js +78 -0
- package/lib/utils/reporter/agree.js +31 -0
- package/lib/utils/reporter/download.js +37 -0
- package/lib/utils/reporter/index.js +19 -0
- package/lib/utils/reporter/usage.js +32 -0
- package/lib/utils/store/auth.js +59 -0
- package/lib/utils/store/common.js +8 -0
- package/lib/utils/store/config.js +49 -0
- package/lib/utils/store/db.js +84 -0
- package/lib/utils/store/index.js +21 -0
- package/lib/utils/store/usage.js +9 -0
- package/lib/utils/tcbrApi/callTcbrApi.js +39 -0
- package/lib/utils/tcbrApi/index.js +17 -0
- package/lib/utils/template-manager.js +458 -0
- package/lib/utils/template.js +131 -0
- package/lib/utils/tools/common.js +74 -0
- package/lib/utils/tools/encoding.js +13 -0
- package/lib/utils/tools/index.js +20 -0
- package/lib/utils/tools/object.js +28 -0
- package/lib/utils/tools/time.js +49 -0
- package/lib/utils/tools/uid.js +25 -0
- package/lib/utils/url.js +19 -0
- package/lib/utils/validator.js +72 -0
- package/locales/README.md +160 -0
- package/locales/i18next-scanner.config.js +211 -0
- package/locales/index.js +5 -0
- package/locales/langs/en.json +1236 -0
- package/locales/langs/zh.json +1236 -0
- package/locales/mapping.json +1242 -0
- package/package.json +133 -16
- package/patches/@musistudio+claude-code-router+1.0.36.patch +40 -0
- package/post-install.js +63 -0
- package/rules/cloudbase-platform.mdc +44 -0
- package/rules/database.mdc +25 -0
- package/rules/miniprogram-development.mdc +61 -0
- package/rules/ui-design.mdc +24 -0
- package/rules/web-development.mdc +44 -0
- package/rules/workflows.mdc +30 -0
- package/runtime/nodejs/bootstrap.js +255 -0
- package/runtime/nodejs/runtime.js +183 -0
- package/specs/ai-cli-bootstrap/QWEN.md +196 -0
- package/specs/ai-cli-bootstrap/design.md +185 -0
- package/specs/ai-cli-bootstrap/requirements.md +51 -0
- package/specs/ai-cli-bootstrap/tasks.md +70 -0
- package/specs/ai-cli-bootstrap/technical-docs.md +421 -0
- package/specs/cli-install-upgrade/design.md +207 -0
- package/specs/cli-install-upgrade/requirements.md +315 -0
- package/specs/cli-install-upgrade/tasks.md +120 -0
- package/specs/codebuddy-integration/design.md +152 -0
- package/specs/codebuddy-integration/requirements.md +85 -0
- package/specs/codebuddy-integration/tasks.md +159 -0
- package/specs/mcp-global-bin/design.md +57 -0
- package/specs/mcp-global-bin/requirements.md +43 -0
- package/specs/mcp-global-bin/tasks.md +54 -0
- package/specs/ssl-fix/design.md +93 -0
- package/specs/ssl-fix/requirements.md +47 -0
- package/specs/ssl-fix/tasks.md +65 -0
- package/specs/tcb-pull-cnb-support/design.md +137 -0
- package/specs/tcb-pull-cnb-support/requirements.md +56 -0
- package/specs/tcb-pull-cnb-support/tasks.md +101 -0
- package/specs/tcb-pull-mcp-integration/design.md +153 -0
- package/specs/tcb-pull-mcp-integration/implementation-summary.md +127 -0
- package/specs/tcb-pull-mcp-integration/requirements.md +68 -0
- package/specs/tcb-pull-mcp-integration/tasks.md +125 -0
- package/specs/template-pull-command/design.md +135 -0
- package/specs/template-pull-command/implementation-summary.md +160 -0
- package/specs/template-pull-command/requirements.md +73 -0
- package/specs/template-pull-command/tasks.md +101 -0
- package/templates/html/loginFail.html +90 -0
- package/templates/html/loginSuccess.html +86 -0
- package/templates/server/node/_gitignore +54 -0
- package/templates/server/node/cloudbaserc.json +10 -0
- package/templates/server/node/index.js +6 -0
- package/templates/server/node/package.json +9 -0
- package/test-mcp-integration.js +68 -0
- package/tsconfig.json +20 -0
- package/tsconfig.test.json +13 -0
- package/types/auth/index.d.ts +2 -0
- package/types/auth/login.d.ts +25 -0
- package/types/auth/logout.d.ts +1 -0
- package/types/commands/account/index.d.ts +2 -0
- package/types/commands/account/login.d.ts +15 -0
- package/types/commands/account/logout.d.ts +12 -0
- package/types/commands/ai/index.d.ts +23 -0
- package/types/commands/cloudfunction/base.d.ts +43 -0
- package/types/commands/cloudfunction/index.d.ts +1 -0
- package/types/commands/cloudrun/base.d.ts +160 -0
- package/types/commands/cloudrun/index.d.ts +1 -0
- package/types/commands/common.d.ts +38 -0
- package/types/commands/config/delete.d.ts +13 -0
- package/types/commands/config/get.d.ts +13 -0
- package/types/commands/config/index.d.ts +5 -0
- package/types/commands/config/interface.d.ts +17 -0
- package/types/commands/config/list.d.ts +13 -0
- package/types/commands/config/set.d.ts +13 -0
- package/types/commands/constants.d.ts +8 -0
- package/types/commands/db/base.d.ts +44 -0
- package/types/commands/db/index.d.ts +1 -0
- package/types/commands/env/base.d.ts +27 -0
- package/types/commands/env/domain.d.ts +53 -0
- package/types/commands/env/index.d.ts +3 -0
- package/types/commands/env/login.d.ts +47 -0
- package/types/commands/framework/index.d.ts +42 -0
- package/types/commands/fun/base.d.ts +43 -0
- package/types/commands/fun/index.d.ts +1 -0
- package/types/commands/functions/alias/getRoute.d.ts +13 -0
- package/types/commands/functions/alias/index.d.ts +2 -0
- package/types/commands/functions/alias/setRoute.d.ts +13 -0
- package/types/commands/functions/code-download.d.ts +18 -0
- package/types/commands/functions/code-update.d.ts +18 -0
- package/types/commands/functions/concurrency/delete.d.ts +13 -0
- package/types/commands/functions/concurrency/index.d.ts +3 -0
- package/types/commands/functions/concurrency/list.d.ts +13 -0
- package/types/commands/functions/concurrency/set.d.ts +13 -0
- package/types/commands/functions/config-update.d.ts +19 -0
- package/types/commands/functions/copy.d.ts +15 -0
- package/types/commands/functions/delete.d.ts +14 -0
- package/types/commands/functions/deploy.d.ts +22 -0
- package/types/commands/functions/detail.d.ts +16 -0
- package/types/commands/functions/index.d.ts +17 -0
- package/types/commands/functions/invoke.d.ts +15 -0
- package/types/commands/functions/layer/bind.d.ts +35 -0
- package/types/commands/functions/layer/common.d.ts +8 -0
- package/types/commands/functions/layer/create.d.ts +18 -0
- package/types/commands/functions/layer/delete.d.ts +18 -0
- package/types/commands/functions/layer/download.d.ts +18 -0
- package/types/commands/functions/layer/index.d.ts +7 -0
- package/types/commands/functions/layer/list.d.ts +19 -0
- package/types/commands/functions/layer/sort.d.ts +18 -0
- package/types/commands/functions/list.d.ts +14 -0
- package/types/commands/functions/log.d.ts +15 -0
- package/types/commands/functions/run.d.ts +17 -0
- package/types/commands/functions/trigger-create.d.ts +18 -0
- package/types/commands/functions/trigger-delete.d.ts +18 -0
- package/types/commands/functions/version/index.d.ts +2 -0
- package/types/commands/functions/version/list.d.ts +13 -0
- package/types/commands/functions/version/publish.d.ts +13 -0
- package/types/commands/gateway/create.d.ts +14 -0
- package/types/commands/gateway/delete.d.ts +14 -0
- package/types/commands/gateway/domain.d.ts +47 -0
- package/types/commands/gateway/index.d.ts +5 -0
- package/types/commands/gateway/list.d.ts +15 -0
- package/types/commands/gateway/switch.d.ts +31 -0
- package/types/commands/helpers/index.d.ts +3 -0
- package/types/commands/helpers/init.d.ts +22 -0
- package/types/commands/helpers/new.d.ts +17 -0
- package/types/commands/helpers/open.d.ts +11 -0
- package/types/commands/hosting/hosting.d.ts +66 -0
- package/types/commands/hosting/index.d.ts +1 -0
- package/types/commands/index.d.ts +22 -0
- package/types/commands/lowcode/app.d.ts +81 -0
- package/types/commands/lowcode/comps.d.ts +77 -0
- package/types/commands/lowcode/deps.d.ts +15 -0
- package/types/commands/lowcode/index.d.ts +3 -0
- package/types/commands/lowcode/utils.d.ts +23 -0
- package/types/commands/pull/index.d.ts +1 -0
- package/types/commands/pull/pull.d.ts +16 -0
- package/types/commands/run/delete.d.ts +13 -0
- package/types/commands/run/image/common.d.ts +8 -0
- package/types/commands/run/image/delete.d.ts +17 -0
- package/types/commands/run/image/download.d.ts +17 -0
- package/types/commands/run/image/index.d.ts +5 -0
- package/types/commands/run/image/list.d.ts +17 -0
- package/types/commands/run/image/upload.d.ts +17 -0
- package/types/commands/run/index.d.ts +5 -0
- package/types/commands/run/list.d.ts +13 -0
- package/types/commands/run/service/config.d.ts +14 -0
- package/types/commands/run/service/deploy.d.ts +13 -0
- package/types/commands/run/service/index.d.ts +4 -0
- package/types/commands/run/service/list.d.ts +13 -0
- package/types/commands/run/service/update.d.ts +13 -0
- package/types/commands/run/standalonegateway/common.d.ts +8 -0
- package/types/commands/run/standalonegateway/create.d.ts +17 -0
- package/types/commands/run/standalonegateway/destroy.d.ts +17 -0
- package/types/commands/run/standalonegateway/index.d.ts +5 -0
- package/types/commands/run/standalonegateway/list.d.ts +17 -0
- package/types/commands/run/standalonegateway/package.d.ts +17 -0
- package/types/commands/run/standalonegateway/turn.d.ts +17 -0
- package/types/commands/run/version/common.d.ts +8 -0
- package/types/commands/run/version/create.d.ts +17 -0
- package/types/commands/run/version/delete.d.ts +17 -0
- package/types/commands/run/version/index.d.ts +5 -0
- package/types/commands/run/version/list.d.ts +17 -0
- package/types/commands/run/version/modify.d.ts +17 -0
- package/types/commands/run/version/update.d.ts +17 -0
- package/types/commands/runf/base.d.ts +43 -0
- package/types/commands/runf/index.d.ts +1 -0
- package/types/commands/self-update.d.ts +24 -0
- package/types/commands/smart.d.ts +1 -0
- package/types/commands/storage/index.d.ts +1 -0
- package/types/commands/storage/storage.d.ts +106 -0
- package/types/commands/third/index.d.ts +1 -0
- package/types/commands/third/thirdAttach.d.ts +15 -0
- package/types/commands/utils.d.ts +28 -0
- package/types/completion/index.d.ts +4 -0
- package/types/constant.d.ts +71 -0
- package/types/db/index.d.ts +24 -0
- package/types/decorators/captureError.d.ts +1 -0
- package/types/decorators/constants.d.ts +11 -0
- package/types/decorators/deprecate.d.ts +4 -0
- package/types/decorators/guard.d.ts +5 -0
- package/types/decorators/index.d.ts +7 -0
- package/types/decorators/injectParams.d.ts +1 -0
- package/types/decorators/params/common.d.ts +4 -0
- package/types/decorators/params/index.d.ts +8 -0
- package/types/env/domain.d.ts +11 -0
- package/types/env/index.d.ts +12 -0
- package/types/env/login.d.ts +16 -0
- package/types/error.d.ts +20 -0
- package/types/function/alias.d.ts +3 -0
- package/types/function/base.d.ts +32 -0
- package/types/function/code.d.ts +8 -0
- package/types/function/concurrency.d.ts +4 -0
- package/types/function/create.d.ts +3 -0
- package/types/function/delete.d.ts +8 -0
- package/types/function/index.d.ts +11 -0
- package/types/function/layer/attach.d.ts +9 -0
- package/types/function/layer/create.d.ts +8 -0
- package/types/function/layer/delete.d.ts +5 -0
- package/types/function/layer/download.d.ts +7 -0
- package/types/function/layer/index.d.ts +7 -0
- package/types/function/layer/list.d.ts +10 -0
- package/types/function/layer/sort.d.ts +10 -0
- package/types/function/trigger.d.ts +5 -0
- package/types/function/update.d.ts +2 -0
- package/types/function/version.d.ts +3 -0
- package/types/function/vpc.d.ts +2 -0
- package/types/gateway/index.d.ts +18 -0
- package/types/help.d.ts +1 -0
- package/types/hosting.d.ts +35 -0
- package/types/i18n/index.d.ts +3 -0
- package/types/index.d.ts +4 -0
- package/types/logger.d.ts +3 -0
- package/types/run/delete.d.ts +2 -0
- package/types/run/image/build.d.ts +10 -0
- package/types/run/image/delete.d.ts +2 -0
- package/types/run/image/index.d.ts +4 -0
- package/types/run/image/info.d.ts +1 -0
- package/types/run/image/list.d.ts +3 -0
- package/types/run/index.d.ts +7 -0
- package/types/run/list.d.ts +2 -0
- package/types/run/repo.d.ts +5 -0
- package/types/run/service/common.d.ts +42 -0
- package/types/run/service/config.d.ts +23 -0
- package/types/run/service/deployPackage.d.ts +11 -0
- package/types/run/service/index.d.ts +6 -0
- package/types/run/service/list.d.ts +2 -0
- package/types/run/service/showLogs.d.ts +2 -0
- package/types/run/service/update.d.ts +3 -0
- package/types/run/standalonegateway/create.d.ts +2 -0
- package/types/run/standalonegateway/destroy.d.ts +2 -0
- package/types/run/standalonegateway/index.d.ts +5 -0
- package/types/run/standalonegateway/list.d.ts +2 -0
- package/types/run/standalonegateway/package/index.d.ts +1 -0
- package/types/run/standalonegateway/package/list.d.ts +2 -0
- package/types/run/standalonegateway/turn/index.d.ts +2 -0
- package/types/run/standalonegateway/turn/off.d.ts +2 -0
- package/types/run/standalonegateway/turn/on.d.ts +2 -0
- package/types/run/version/create.d.ts +10 -0
- package/types/run/version/delete.d.ts +2 -0
- package/types/run/version/index.d.ts +6 -0
- package/types/run/version/list.d.ts +2 -0
- package/types/run/version/modify.d.ts +2 -0
- package/types/run/version/repo.d.ts +10 -0
- package/types/run/version/update.d.ts +6 -0
- package/types/storage.d.ts +34 -0
- package/types/third/index.d.ts +1 -0
- package/types/types.d.ts +590 -0
- package/types/utils/ai/banner.d.ts +2 -0
- package/types/utils/ai/claudeWindows.d.ts +2 -0
- package/types/utils/ai/config.d.ts +89 -0
- package/types/utils/ai/const.d.ts +401 -0
- package/types/utils/ai/ensureFiles.d.ts +1 -0
- package/types/utils/ai/env.d.ts +2 -0
- package/types/utils/ai/envLocalManager.d.ts +23 -0
- package/types/utils/ai/nodeVersion.d.ts +2 -0
- package/types/utils/ai/router.d.ts +59 -0
- package/types/utils/ai/setup.d.ts +26 -0
- package/types/utils/auth.d.ts +3 -0
- package/types/utils/checkTcbrEnv.d.ts +3 -0
- package/types/utils/cli-table.d.ts +2 -0
- package/types/utils/commonParamsCheck.d.ts +3 -0
- package/types/utils/config.d.ts +27 -0
- package/types/utils/debug-logger.d.ts +1 -0
- package/types/utils/dts.d.ts +6 -0
- package/types/utils/env.d.ts +5 -0
- package/types/utils/fs/del.d.ts +1 -0
- package/types/utils/fs/index.d.ts +7 -0
- package/types/utils/function-packer.d.ts +18 -0
- package/types/utils/index.d.ts +22 -0
- package/types/utils/log.d.ts +22 -0
- package/types/utils/mcp-config-modifier.d.ts +7 -0
- package/types/utils/net/cloud-api-request.d.ts +9 -0
- package/types/utils/net/credential.d.ts +5 -0
- package/types/utils/net/http-request.d.ts +8 -0
- package/types/utils/net/index.d.ts +5 -0
- package/types/utils/net/manager-service.d.ts +4 -0
- package/types/utils/net/proxy.d.ts +1 -0
- package/types/utils/notice.d.ts +1 -0
- package/types/utils/output/highlight.d.ts +1 -0
- package/types/utils/output/index.d.ts +3 -0
- package/types/utils/output/link.d.ts +1 -0
- package/types/utils/output/loading.d.ts +18 -0
- package/types/utils/parallel.d.ts +11 -0
- package/types/utils/platform/index.d.ts +3 -0
- package/types/utils/platform/mac.d.ts +2 -0
- package/types/utils/platform/os.d.ts +2 -0
- package/types/utils/platform/port.d.ts +1 -0
- package/types/utils/progress-bar.d.ts +1 -0
- package/types/utils/prompt/index.d.ts +1 -0
- package/types/utils/prompt/select.d.ts +4 -0
- package/types/utils/report.d.ts +16 -0
- package/types/utils/reporter/agree.d.ts +1 -0
- package/types/utils/reporter/download.d.ts +1 -0
- package/types/utils/reporter/index.d.ts +3 -0
- package/types/utils/reporter/usage.d.ts +1 -0
- package/types/utils/store/auth.d.ts +8 -0
- package/types/utils/store/common.d.ts +2 -0
- package/types/utils/store/config.d.ts +8 -0
- package/types/utils/store/db.d.ts +17 -0
- package/types/utils/store/index.d.ts +5 -0
- package/types/utils/store/usage.d.ts +2 -0
- package/types/utils/tcbrApi/callTcbrApi.d.ts +1 -0
- package/types/utils/tcbrApi/index.d.ts +1 -0
- package/types/utils/template-manager.d.ts +27 -0
- package/types/utils/template.d.ts +8 -0
- package/types/utils/tools/common.d.ts +1 -0
- package/types/utils/tools/encoding.d.ts +1 -0
- package/types/utils/tools/index.d.ts +4 -0
- package/types/utils/tools/object.d.ts +1 -0
- package/types/utils/tools/time.d.ts +2 -0
- package/types/utils/tools/uid.d.ts +2 -0
- package/types/utils/url.d.ts +18 -0
- package/types/utils/validator.d.ts +9 -0
- package/bin/ccr +0 -2
- package/bin/cloudbase +0 -2
- package/bin/cloudbase-mcp +0 -2
- package/bin/tcb +0 -2
- package/dist/fonts/Slant.flf +0 -1295
- package/dist/standalone/ccr.js +0 -78668
- package/dist/standalone/cli.js +0 -627922
|
@@ -0,0 +1,1236 @@
|
|
|
1
|
+
{
|
|
2
|
+
"k_8ca59f26": "Tip: cloudbase command can be abbreviated as tcb",
|
|
3
|
+
"k_e94e8bd3": "Shanghai",
|
|
4
|
+
"k_692e9266": "Beijing",
|
|
5
|
+
"k_7e040aa9": "Guangzhou",
|
|
6
|
+
"k_ce8a7b5b": "Singapore",
|
|
7
|
+
"k_950d9adf": "Current Node.js version is v{{current}}. Please upgrade to at least v{{min}} version.",
|
|
8
|
+
"k_ecfca2cd": "Try the tcb ai command to start your AI full-stack development experience",
|
|
9
|
+
"k_4fcda2f3": "Private configuration detected",
|
|
10
|
+
"k_96c278fb": "Print internal runtime information",
|
|
11
|
+
"k_46606909": "Specify environment for loading env files",
|
|
12
|
+
"k_c813a5a2": "Set configuration file, default is cloudbaserc.json",
|
|
13
|
+
"k_540d18bb": "Specify environment region",
|
|
14
|
+
"k_d5b50007": "Output current CloudBase CLI version",
|
|
15
|
+
"k_01863ddb": "{{cmd}} is not a valid command",
|
|
16
|
+
"k_f2934ac9": "\nDid you mean to use the command: tcb {{suggest}}\n",
|
|
17
|
+
"k_32ce0443": "Use {{helpCmd}} to view all commands",
|
|
18
|
+
"k_b5abda34": "Parameter error, please check if you are using the correct command!",
|
|
19
|
+
"k_bcc7593d": "\nThis environment may not belong to the current account, or it may be a non-{{region}} region environment. To switch regions, please add a parameter (e.g., -r gz). Please check the environment ownership and refer to the multi-region usage method: {{url}}",
|
|
20
|
+
"k_a031643a": "This environment may belong to {{region}} region, do you want to switch region and re-execute the command?",
|
|
21
|
+
"k_4cdf7d16": "Re-executing command:",
|
|
22
|
+
"k_971ad0fc": "No valid identity information, please use cloudbase login to login",
|
|
23
|
+
"k_e6714c36": "New version found:",
|
|
24
|
+
"k_5fbac9c3": "Current version:",
|
|
25
|
+
"k_916c89b2": "Please refer to upgrade documentation:",
|
|
26
|
+
"k_359cfebb": "login succeeded.",
|
|
27
|
+
"k_bd61b9ec": "Invalid identity information!",
|
|
28
|
+
"k_5b24dfac": "Check login status failed",
|
|
29
|
+
"k_f108277b": "Invalid parameter: {{msg}}",
|
|
30
|
+
"k_4c8ca4d9": "Web authorization login failed, possibly due to environment compatibility issues",
|
|
31
|
+
"k_5a0dd9a2": "Recommend using key login: tcb login --key",
|
|
32
|
+
"k_e1547b44": "For detailed instructions, please refer to: {{url}}",
|
|
33
|
+
"k_5cf0cb6c": "Web authorization login failed, please use key login: tcb login --key",
|
|
34
|
+
"k_89d126b4": "SecretID or SecretKey cannot be empty",
|
|
35
|
+
"k_52906579": "You are not logged in yet, please authorize login in console",
|
|
36
|
+
"k_31db1845": "Authorize on the authorization page open in the browser.",
|
|
37
|
+
"k_7111c7e4": "Authorization login successful!",
|
|
38
|
+
"k_396cdc77": "Use the following command to proceed with the operation:",
|
|
39
|
+
"k_fc58c38b": "One-click AI development experience",
|
|
40
|
+
"k_c279e3fb": "View command usage introduction",
|
|
41
|
+
"k_28e76dc9": "Tips: You can use the tcb command tcb to replace cloudbase",
|
|
42
|
+
"k_db66921d": "AI Programming: Run tcb ai to start a full-stack AI development experience",
|
|
43
|
+
"k_cb2b3d87": "AI IDE Integration: Run tcb mcp info to view CloudBase MCP configuration guide",
|
|
44
|
+
"k_a06a3ca8": "In MCP-supported AI IDE, add the following MCP configuration to enable convenient CloudBase MCP integration",
|
|
45
|
+
"k_d05bd06a": "View detailed AI IDE configuration guide {{url}}",
|
|
46
|
+
"k_83caeaf0": "Does Cloudbase CLI require or not to collect your usage data to improve product?",
|
|
47
|
+
"k_63fffa83": "Log in using a permanent key",
|
|
48
|
+
"k_96385f00": "Tencent Cloud API SecretId",
|
|
49
|
+
"k_23032c38": "Tencent Cloud API Key",
|
|
50
|
+
"k_721802b1": "Tencent Cloud API temporary secret key Token",
|
|
51
|
+
"k_7317f0c2": "log in to Tencent Cloud account",
|
|
52
|
+
"k_65687472": "Verify login status",
|
|
53
|
+
"k_5488586b": "You are logged in. No need to log in again.",
|
|
54
|
+
"k_97da4a10": "Verifying Tencent Cloud Key...",
|
|
55
|
+
"k_3aa37c8b": "Tencent Cloud Key verification failed. Check whether the key is correct or the terminal network is available.",
|
|
56
|
+
"k_4f9d75e7": "You can access {{link}} to get the API key",
|
|
57
|
+
"k_95f24fc2": "please enter Tencent Cloud SecretID:",
|
|
58
|
+
"k_40b15cf8": "Please enter Tencent Cloud SecretKey:",
|
|
59
|
+
"k_7a680c62": "Web authorization login failed",
|
|
60
|
+
"k_b9250e9e": "Environment compatibility issue detected",
|
|
61
|
+
"k_24f64bb5": "Recommend using key login:",
|
|
62
|
+
"k_10e15c8e": "tcb login --key",
|
|
63
|
+
"k_a7e70684": "Switch to key login mode?",
|
|
64
|
+
"k_66caca97": "Web authorization login failed. Key verification failed.",
|
|
65
|
+
"k_af48dfd1": "You have no available environment. Go to the console {{link}} to create environment.",
|
|
66
|
+
"k_4ee27c18": "Log out from Tencent Cloud account",
|
|
67
|
+
"k_8dad68c9": "logout succeeded.",
|
|
68
|
+
"k_4ca68745": "AI CLI tools (claude, qwen, codex, aider, codebuddy)",
|
|
69
|
+
"k_a81e2cd3": "CloudBase environment ID",
|
|
70
|
+
"k_bfee665f": "Specify template type (miniprogram, react, vue, uniapp, rules)",
|
|
71
|
+
"k_a587e046": "Run configuration wizard",
|
|
72
|
+
"k_8dcb86f7": "Show configuration information",
|
|
73
|
+
"k_a40b5bb5": "Reset configuration",
|
|
74
|
+
"k_f58732d5": "Automatically set default template rules",
|
|
75
|
+
"k_f62c082a": "CloudBase AI CLI - Quick start and configure mainstream AI programming tools\n\nExamples:\n tcb ai -a claude -- --continue\n tcb ai -a codebuddy -- mcp list\n\nNote: Parameters after -- will be passed directly to the target AI CLI.",
|
|
76
|
+
"k_8ed6512b": "AI configuration has been reset",
|
|
77
|
+
"k_089eeef9": "Failed to reset configuration",
|
|
78
|
+
"k_2a9a53f4": "Current AI configuration:",
|
|
79
|
+
"k_a6abb1c2": "Failed to read configuration",
|
|
80
|
+
"k_a7c4b6c7": "Environment ID",
|
|
81
|
+
"k_8f3747c0": "Service Name",
|
|
82
|
+
"k_ecf6c08f": "Target function file directory path. Defaults to current path",
|
|
83
|
+
"k_30378d8c": "Deploy Cloud Function Service",
|
|
84
|
+
"k_a8efb86d": "Current Environment ID: {{envId}}",
|
|
85
|
+
"k_682735d1": "About to start deployment, confirm to continue?",
|
|
86
|
+
"k_a7b4bc10": "Current function is in Updating state, cannot perform this operation, please try again later",
|
|
87
|
+
"k_29659b10": "Current function is in updating state, cannot perform this operation, please try again later",
|
|
88
|
+
"k_8ee01f82": "Download Cloud Function Service Code",
|
|
89
|
+
"k_9b5c5202": "Download will overwrite code in {{targetDir}} directory, continue?",
|
|
90
|
+
"k_6e996a49": "Directory path where the target function file is located, defaults to current path\n ",
|
|
91
|
+
"k_c2ca2b6e": "Port to listen on, defaults to 3000\n ",
|
|
92
|
+
"k_0b5af27d": "Whether to enable hot restart mode. If enabled, the service will automatically restart when files change, defaults to false\n ",
|
|
93
|
+
"k_432faee5": "Run Cloud Function Code Locally",
|
|
94
|
+
"k_c2ea95ea": "Missing development dependency nodemon, not included in standalone release. Please install in local development environment before using this command.",
|
|
95
|
+
"k_d314caa1": "Please enter service name",
|
|
96
|
+
"k_48985001": "Supports uppercase and lowercase letters, numbers, - and _, but must start with a letter and end with letters and numbers, does not support starting with lcap or lowcode, maximum 45 characters",
|
|
97
|
+
"k_5e6eaa4a": "Container-based cloud hosting",
|
|
98
|
+
"k_e444f94f": "Function-based cloud hosting",
|
|
99
|
+
"k_9d801fe0": "Environment ID",
|
|
100
|
+
"k_a5d1c511": "Template Name",
|
|
101
|
+
"k_5d977e84": "Project initialization target path (absolute or relative path, default: current directory)",
|
|
102
|
+
"k_b7d8959d": "Initialize Cloud Run Service Code Project",
|
|
103
|
+
"k_9af823fd": "Please select template",
|
|
104
|
+
"k_9c78cdff": "Initializing project code...",
|
|
105
|
+
"k_1380b51d": "Project initialization successful",
|
|
106
|
+
"k_37bdefdd": "Project path: {{projectDir}}",
|
|
107
|
+
"k_6eda0b03": "Project initialization failed",
|
|
108
|
+
"k_cbd300d3": "Page size (default: 10)",
|
|
109
|
+
"k_9f558879": "Page number (default: 1)",
|
|
110
|
+
"k_e8cf9349": "Service name filter",
|
|
111
|
+
"k_aa6ac393": "Service type filter (options: function | container)",
|
|
112
|
+
"k_ef259283": "View Cloud Run Service List",
|
|
113
|
+
"k_70829f1c": "Current environment: {{envId}}",
|
|
114
|
+
"k_226b0912": "Type",
|
|
115
|
+
"k_a001a226": "Update Time",
|
|
116
|
+
"k_e4b51d5c": "Running Status",
|
|
117
|
+
"k_cdb18fc6": "Public Access",
|
|
118
|
+
"k_e93b6b9f": "Function Service",
|
|
119
|
+
"k_eb7db287": "Container Service",
|
|
120
|
+
"k_e6a5c367": "Allowed",
|
|
121
|
+
"k_e06828f4": "Not Allowed",
|
|
122
|
+
"k_ad896f76": "Code download target path (absolute or relative path, default: current directory)",
|
|
123
|
+
"k_70063d76": "Force overwrite, no confirmation prompt",
|
|
124
|
+
"k_e324f103": "Download Cloud Run Service Code",
|
|
125
|
+
"k_9ec8508b": "User cancelled download operation",
|
|
126
|
+
"k_e2ba1fb8": "Cloud Run service {{serviceName}} code successfully downloaded to: {{targetDir}}",
|
|
127
|
+
"k_692255ac": "Force delete, no confirmation prompt",
|
|
128
|
+
"k_97ed700e": "Delete Cloud Run Service",
|
|
129
|
+
"k_57b5f1c1": "Are you sure you want to delete Cloud Run service {{serviceName}}?",
|
|
130
|
+
"k_2945dc67": "Delete operation cancelled",
|
|
131
|
+
"k_80f574af": "Cloud Run service {{serviceName}} deleted successfully",
|
|
132
|
+
"k_8ea86854": "Container Cloud Run service port (invalid for function Cloud Run)",
|
|
133
|
+
"k_8f1743c9": "Deploy code directory path (absolute or relative path, default: current directory)",
|
|
134
|
+
"k_3fe571e9": "Create Function Agent",
|
|
135
|
+
"k_004a4505": "Force deploy, skip all confirmation prompts",
|
|
136
|
+
"k_0cc01029": "Install dependencies online",
|
|
137
|
+
"k_4021b926": "Deploy Cloud Run Service",
|
|
138
|
+
"k_66d46c4d": "Please enter Function Agent name:",
|
|
139
|
+
"k_df09fff7": "Name cannot be empty",
|
|
140
|
+
"k_62657ef3": "Please enter the identifier in parentheses ibot-(service name-BotTag). Example: agent-chat:",
|
|
141
|
+
"k_7b81fb66": "Identifier format error, should be \"xxx-xxx\"",
|
|
142
|
+
"k_604f8da9": "Please open the link to view deployment status: {{url}}",
|
|
143
|
+
"k_17fb1567": "The {{containerConfigFile}} file in CLI will not take effect, please configure through command line parameters!",
|
|
144
|
+
"k_23bbdccf": "Unable to determine Cloud Run service type",
|
|
145
|
+
"k_6aacc711": "Unsupported Cloud Run service type: {{serverType}}",
|
|
146
|
+
"k_07e48a6e": "Submitting {{serverType}} {{serviceName}}, please wait...",
|
|
147
|
+
"k_0e0070f6": "{{serverType}} {{serviceName}} submission completed!",
|
|
148
|
+
"k_ac465931": "Platform currently has deployment tasks running. Confirm to continue deployment, running deployment tasks will be cancelled and latest code will be deployed immediately",
|
|
149
|
+
"k_d378e4bc": "Run mode, options: normal(regular function) | agent(function agent), default: normal",
|
|
150
|
+
"k_5d8241fe": "Agent ID required for debugging in agent mode",
|
|
151
|
+
"k_f0e31ae4": "Whether to not start the service, only verify that the code can be loaded normally, defaults to false\n ",
|
|
152
|
+
"k_84b0c012": "Log file directory, defaults to ./logs\n ",
|
|
153
|
+
"k_dd934b98": "Multi-function definition config file, default: ./cloudbase-functions.json. Environment variable: FUNCTIONS_CONFIG_FILE",
|
|
154
|
+
"k_e8f9c223": "Whether to load all functions in the \"functionsRoot\" directory. Defaults to false\n ",
|
|
155
|
+
"k_7ba02a54": "Value for parsing context.extendedContext. \"\" means feature is disabled. Default: null. Example: --extendedContext '{\"a\":1,\"b\":2}'. Environment variable: EXTENDED_CONTEXT",
|
|
156
|
+
"k_851a7059": "Open debug panel, default: 'true'",
|
|
157
|
+
"k_f32cd523": "Run function Cloud Run service locally (container Cloud Run not supported)",
|
|
158
|
+
"k_a5e0bd4d": "Current run mode: {{type}}",
|
|
159
|
+
"k_9e1e8b1e": "Please enter Agent ID (enter any value if none):",
|
|
160
|
+
"k_3e2d04e2": "Agent ID cannot be empty",
|
|
161
|
+
"k_927c53b8": "Current Agent ID: {{agentId}}",
|
|
162
|
+
"k_1ed7704c": "Child process exited with code: {{code}}",
|
|
163
|
+
"k_650a49e4": "Click [{{url}}] to open Agent debug app",
|
|
164
|
+
"k_5d99f1f5": "Click [{{url}}] to open function debug panel",
|
|
165
|
+
"k_15a6d511": "Timeout waiting for service {{url}} to be ready",
|
|
166
|
+
"k_6f24ed12": "Please enter target path (directory name or absolute path)",
|
|
167
|
+
"k_6140f5e2": "Please enter a valid path",
|
|
168
|
+
"k_353dc6a0": "Output help information",
|
|
169
|
+
"k_8b2ede3c": "View command help information",
|
|
170
|
+
"k_ccbb5555": "No valid identity information, will automatically open authorization page for you.",
|
|
171
|
+
"k_ca98ea11": "No valid environment Id detected, please use cloudbaserc config file for operation or specify environment Id through -e parameter",
|
|
172
|
+
"k_2ec7996f": "This command will be deprecated, please use the new command tcb {{cmd}} instead",
|
|
173
|
+
"k_6d7faa8a": "Loading data...",
|
|
174
|
+
"k_26c7538e": "Delete configuration",
|
|
175
|
+
"k_074078ac": "missing necessary parameter: key",
|
|
176
|
+
"k_509abd14": "Unknown configuration item: {{key}}",
|
|
177
|
+
"k_46454dca": "get configuration value",
|
|
178
|
+
"k_938e5706": "whether to use the international site",
|
|
179
|
+
"k_7dc57516": "Language, available value: zh (Chinese), en (English)",
|
|
180
|
+
"k_8a57c0aa": "List all configurations",
|
|
181
|
+
"k_d7b031c1": "Available configurations",
|
|
182
|
+
"k_c1693d1d": "current configuration",
|
|
183
|
+
"k_cceed5f6": "Set configuration",
|
|
184
|
+
"k_0bcfd361": "missing necessary parameter: key or value",
|
|
185
|
+
"k_8e73c357": "Expected {{key}} to be {{type}}",
|
|
186
|
+
"k_9cc7020f": "List all data models in the cloud",
|
|
187
|
+
"k_d7ec2d3f": "Name",
|
|
188
|
+
"k_45235f6c": "Identifier",
|
|
189
|
+
"k_eca37cb0": "Creation Time",
|
|
190
|
+
"k_0e1334ac": "Local directory for storing database model definitions, default: database-schemas",
|
|
191
|
+
"k_9e3cc154": "List of model English identifiers to pull, can specify multiple, separated by commas. If not specified, all models will be pulled by default",
|
|
192
|
+
"k_a7a9968d": "Pull multiple data models from cloud to local",
|
|
193
|
+
"k_0d3112db": "Data model synchronized successfully. File name: {{fileName}}",
|
|
194
|
+
"k_d7319125": "Data model type definition file synchronized successfully, intelligent field hints supported when calling SDK. File name: {{dtsFileName}}",
|
|
195
|
+
"k_27a93fd7": "List of model names to push, can specify multiple, separated by commas. If not specified, all data models in local directory will be pushed by default",
|
|
196
|
+
"k_65e927a4": "Push local data models to cloud",
|
|
197
|
+
"k_b6c1c832": "Using environment ID: {{envId}}",
|
|
198
|
+
"k_1e6a68b4": "Directory {{dir}} does not exist, please specify correct directory",
|
|
199
|
+
"k_c9191f5f": "No data models found in directory {{dir}}",
|
|
200
|
+
"k_9a9d492e": "Starting to check data model {{modelName}}",
|
|
201
|
+
"k_f5e1cada": "Data model {{modelName}} already exists, update it?",
|
|
202
|
+
"k_349c4e0c": "Skipping update of data model {{modelName}}",
|
|
203
|
+
"k_e6d662ae": "Data model {{modelName}} updated successfully, click to view {{link}}",
|
|
204
|
+
"k_8d2a9573": "Data model {{modelName}} does not exist, create it?",
|
|
205
|
+
"k_4f1d738a": "Skipping creation of data model {{modelName}}",
|
|
206
|
+
"k_64f8ecfd": "Data model {{modelName}} created successfully, click to view {{link}}",
|
|
207
|
+
"k_5d6e22a7": "Data models have been imported successfully, publish them?",
|
|
208
|
+
"k_fd6e80f1": "Normal",
|
|
209
|
+
"k_d1e4a7e9": "Unavailable",
|
|
210
|
+
"k_fcb25913": "Please select a CloudBase environment first",
|
|
211
|
+
"k_0e1e520e": "Please select a data model (space to select, enter to confirm)",
|
|
212
|
+
"k_4190b290": "Display CloudBase environment information",
|
|
213
|
+
"k_6d5b2048": "Package Version",
|
|
214
|
+
"k_26ca20b1": "Source",
|
|
215
|
+
"k_1c450dfa": "Environment Status",
|
|
216
|
+
"k_ba59ef7d": "Pay-as-you-go",
|
|
217
|
+
"k_0ed5103f": "Mini Program",
|
|
218
|
+
"k_ba07491f": "CloudBase",
|
|
219
|
+
"k_6591ae57": "Your environment contains unavailable environments: [{{envId}}], please note!",
|
|
220
|
+
"k_c5bfbb3c": "Modify CloudBase environment alias",
|
|
221
|
+
"k_4b610937": "Environment alias cannot be empty!",
|
|
222
|
+
"k_a2bbdb11": "Environment alias updated successfully!",
|
|
223
|
+
"k_62f09617": "Domain Management",
|
|
224
|
+
"k_7a850643": "List environment security domain list",
|
|
225
|
+
"k_058e6b02": "Security domains are empty!",
|
|
226
|
+
"k_75370d6d": "Domain ID",
|
|
227
|
+
"k_190980c7": "Domain",
|
|
228
|
+
"k_3fea7ca7": "Status",
|
|
229
|
+
"k_c16e2ef8": "Enabled",
|
|
230
|
+
"k_a6c049be": "Disabled",
|
|
231
|
+
"k_d0bd543b": "Add environment security domain, multiple separated by slash /",
|
|
232
|
+
"k_7abd0d65": "Confirm adding the following security domains: {{domains}}?",
|
|
233
|
+
"k_dd219d4a": "Operation cancelled!",
|
|
234
|
+
"k_34981615": "Domain [{{domains}}] already exists!",
|
|
235
|
+
"k_920ff7ae": "Security domain added successfully!",
|
|
236
|
+
"k_56cf47ee": "Delete environment security domain",
|
|
237
|
+
"k_8e38a801": "Fetching environment security domains",
|
|
238
|
+
"k_2f11ae90": "Security domains are empty, cannot perform delete operation!",
|
|
239
|
+
"k_f853a1cf": "Environment security domains fetched successfully!",
|
|
240
|
+
"k_9f5deaad": "Please select domains to delete (multiple selection allowed)>",
|
|
241
|
+
"k_7286fb89": "Confirm deleting the following security domains: {{domains}}?",
|
|
242
|
+
"k_59eb2563": "Successfully deleted {{count}} domain(s)!",
|
|
243
|
+
"k_d4bf6ed1": "WeChat Open Platform",
|
|
244
|
+
"k_285113e5": "WeChat Official Account Platform",
|
|
245
|
+
"k_3f8b9788": "Anonymous Login",
|
|
246
|
+
"k_6bacc938": "Login Authorization Management",
|
|
247
|
+
"k_2c33243a": "List environment login configuration",
|
|
248
|
+
"k_4981287f": "Platform",
|
|
249
|
+
"k_25cef13f": "Platform ID",
|
|
250
|
+
"k_7854b52a": "Enable",
|
|
251
|
+
"k_710ad08b": "Disable",
|
|
252
|
+
"k_dfe159ed": "Add environment login method configuration",
|
|
253
|
+
"k_a3ae593f": "Please select login method:",
|
|
254
|
+
"k_b32c5872": "Please enter AppId:",
|
|
255
|
+
"k_6f5027e9": "Please enter AppSecret:",
|
|
256
|
+
"k_9d9f7404": "AppId and AppSecret cannot be empty!",
|
|
257
|
+
"k_c4965263": "Login method created successfully!",
|
|
258
|
+
"k_d7b3c7c7": "Login method already enabled",
|
|
259
|
+
"k_239f9e31": "Update environment login method configuration",
|
|
260
|
+
"k_fb6b88f1": "Please select the item to configure:",
|
|
261
|
+
"k_767d9a9a": "Please select login method status:",
|
|
262
|
+
"k_be32460d": "Please enter AppId (optional when configuring status):",
|
|
263
|
+
"k_979f7bcf": "Please enter AppSecret (optional when configuring status):",
|
|
264
|
+
"k_f6cff1d4": "Login method updated successfully!",
|
|
265
|
+
"k_e3f8b630": "View function hosting service list",
|
|
266
|
+
"k_f30a2360": "Getting function hosting service list...",
|
|
267
|
+
"k_8089e2de": "Failed to get function hosting service list: {{message}}",
|
|
268
|
+
"k_915c882e": "WeChat AppId",
|
|
269
|
+
"k_9f48d050": "Include local node_modules directory, default is false (not included)",
|
|
270
|
+
"k_487fd951": "Multi-function definition configuration file, default is ./cloudbase-functions.json",
|
|
271
|
+
"k_3d2a0e43": "Deploy function hosting code",
|
|
272
|
+
"k_29cd1745": "Multi-function definition configuration file {{functionsConfigFile}} has errors, please check",
|
|
273
|
+
"k_040eb8c5": "{{serviceName}} service already exists, but it's not a function hosting service, please use a different service name",
|
|
274
|
+
"k_beac4aaa": "Creating service...",
|
|
275
|
+
"k_84418480": "Service created successfully",
|
|
276
|
+
"k_5e1de17a": "Failed to create service: {{message}}",
|
|
277
|
+
"k_3fcc12bd": "Uploading code package...",
|
|
278
|
+
"k_f6d92190": "Failed to upload code package: {{message}}",
|
|
279
|
+
"k_a8110203": "Creating release task...",
|
|
280
|
+
"k_3866fc88": "Release task created successfully, please visit https://cloud.weixin.qq.com/cloudrun/service/{{serviceName}} to view task details",
|
|
281
|
+
"k_f8b3aacf": "Failed to create release task: {{message}}",
|
|
282
|
+
"k_eb602f00": "Run function hosting code locally",
|
|
283
|
+
"k_b1de8a25": "Please enter service name (can only contain numbers, lowercase letters and -, must start with lowercase letter, max 20 characters)",
|
|
284
|
+
"k_037c3028": "Please enter a valid service name",
|
|
285
|
+
"k_c8db10a7": "Please enter WeChat AppID",
|
|
286
|
+
"k_97ebd10f": "View function version traffic configuration",
|
|
287
|
+
"k_ad74b95b": "Querying function [{{name}}] version traffic configuration...",
|
|
288
|
+
"k_fe2df04a": "Version",
|
|
289
|
+
"k_418d63bb": "Traffic ratio",
|
|
290
|
+
"k_1e3205f8": "Set function version traffic configuration",
|
|
291
|
+
"k_b5421e60": "version2 and traffic2 must be set together",
|
|
292
|
+
"k_d43c946d": "When traffic1 and traffic2 are set together, the sum must be 100",
|
|
293
|
+
"k_58dbfb75": "Setting function [{{name}}] version traffic configuration...",
|
|
294
|
+
"k_cd06cdcb": "Function [{{name}}] version traffic configuration set successfully!",
|
|
295
|
+
"k_e3aabf6e": "Function code management",
|
|
296
|
+
"k_77c6c9aa": "Return data length, default value is 20",
|
|
297
|
+
"k_079065fc": "CodeSecret for code-encrypted function",
|
|
298
|
+
"k_a98a33b1": "Download cloud function code",
|
|
299
|
+
"k_162e5a03": "Please specify cloud function name!",
|
|
300
|
+
"k_b45d6d8b": "Cloud function [{{name}}] does not exist!\n\nUse {{command}} command to view deployed cloud functions",
|
|
301
|
+
"k_fa17c027": "Function already exists, overwrite original file?",
|
|
302
|
+
"k_e6affcf3": "Download terminated!",
|
|
303
|
+
"k_8ffe8dae": "File downloading...",
|
|
304
|
+
"k_d7dbb1ba": "[{{name}}] Cloud function code downloaded successfully!",
|
|
305
|
+
"k_09a6e845": "Pass this parameter to protect code, format: 36 characters of uppercase and lowercase letters and numbers",
|
|
306
|
+
"k_f1cef5e4": "Update cloud function code",
|
|
307
|
+
"k_b9c73b83": "[{{name}}] Function code updating...",
|
|
308
|
+
"k_23433727": "[{{name}}] Function code updated successfully!",
|
|
309
|
+
"k_e0396d71": "Delete function version provisioned concurrency configuration",
|
|
310
|
+
"k_1dddf392": "Deleting function [{{name}}] provisioned concurrency configuration...",
|
|
311
|
+
"k_1baf13ce": "Function [{{name}}] provisioned concurrency configuration deleted successfully!",
|
|
312
|
+
"k_b4466cf5": "Get function version provisioned concurrency configuration",
|
|
313
|
+
"k_ae071411": "Pulling function [{{name}}] provisioned concurrency configuration...",
|
|
314
|
+
"k_63e48398": "Set concurrency count",
|
|
315
|
+
"k_f7a678f4": "Completed concurrency count",
|
|
316
|
+
"k_9b915941": "Provisioned task status",
|
|
317
|
+
"k_a6a2d40f": "Status description",
|
|
318
|
+
"k_d0b29584": "Version number",
|
|
319
|
+
"k_d81bb206": "None",
|
|
320
|
+
"k_670c7e5f": "Set function version provisioned concurrency",
|
|
321
|
+
"k_519cf50e": "Configuring function [{{name}}] provisioned concurrency...",
|
|
322
|
+
"k_4a921a30": "Function [{{name}}] provisioned concurrency configured successfully!",
|
|
323
|
+
"k_191cf60b": "Function configuration management",
|
|
324
|
+
"k_89d10ce8": "Update cloud function configuration",
|
|
325
|
+
"k_8df9590c": "No cloud function name specified, update configuration of all cloud functions in configuration file?",
|
|
326
|
+
"k_035baa72": "Function configuration not found, please check if function name is correct",
|
|
327
|
+
"k_fa13f52f": "[{{name}}] Cloud function configuration updated successfully!",
|
|
328
|
+
"k_cf59f222": "Target environment ID",
|
|
329
|
+
"k_cc9e9069": "If a function with the same name exists in the target environment, overwrite the original function",
|
|
330
|
+
"k_c5d49a77": "Copy cloud function",
|
|
331
|
+
"k_72d156d2": "Please specify function name!",
|
|
332
|
+
"k_d0e189ea": "Function copied successfully",
|
|
333
|
+
"k_44ae9957": "Delete cloud function",
|
|
334
|
+
"k_a0d56aa1": "No cloud function name specified, delete all cloud functions in configuration file?",
|
|
335
|
+
"k_3c7b9a7e": "Confirm to delete all cloud functions in configuration file?",
|
|
336
|
+
"k_2fe5c862": "Please specify the cloud function name to delete!",
|
|
337
|
+
"k_54f2eb97": "Deleting function [{{name}}]...",
|
|
338
|
+
"k_ec14620c": "Function [{{name}}] deleted successfully!",
|
|
339
|
+
"k_9a6c6659": "If a function with the same name exists, overwrite it after upload",
|
|
340
|
+
"k_590cd741": "Automatically create HTTP access service access path",
|
|
341
|
+
"k_19164b10": "Deploy all cloud functions included in the configuration file",
|
|
342
|
+
"k_3989f0ff": "Specify the folder path of the cloud function",
|
|
343
|
+
"k_03dc0387": "Deploy SCF",
|
|
344
|
+
"k_ef4f6e40": "--path parameter has been changed to HTTP access service path, please use --dir to specify the folder path of the function to deploy",
|
|
345
|
+
"k_d95c43b6": "HTTP access service path must start with /",
|
|
346
|
+
"k_5675f08f": "--dir parameter must specify the folder path of the cloud function",
|
|
347
|
+
"k_f8c4b13d": "Function deployment configuration not found, using default configuration => Runtime: Nodejs10.15/Install dependencies online",
|
|
348
|
+
"k_3600fc55": "Cloud function deploying...",
|
|
349
|
+
"k_9b4f5857": "[{{name}}] Cloud function deployed successfully!",
|
|
350
|
+
"k_290045b8": "\nCloud function HTTP access service link: {{link}}",
|
|
351
|
+
"k_a87f90a1": "No cloud function specified for deployment, deploy all cloud functions in the configuration file?",
|
|
352
|
+
"k_f488ae6e": "Please specify the name of the cloud function to deploy or use --path parameter to specify the path of the function to deploy!",
|
|
353
|
+
"k_8d8e4c5b": "Cloud function deploying",
|
|
354
|
+
"k_379b5b3e": "[{{name}}] Cloud function deployed successfully",
|
|
355
|
+
"k_5b956383": "Large number of functions, will use queue deployment",
|
|
356
|
+
"k_e81ada26": "Successfully deployed {{count}} function(s)",
|
|
357
|
+
"k_867b4267": "{{count}} cloud function(s) deployment failed",
|
|
358
|
+
"k_18097ff2": "Cloud function with same name exists: [{{name}}], overwrite original function code and configuration?",
|
|
359
|
+
"k_324be248": "Cloud function update deploying...",
|
|
360
|
+
"k_b7a45bdd": "[{{name}}] Cloud function configuration updating...",
|
|
361
|
+
"k_969ee480": "[{{name}}] Cloud function updated successfully!",
|
|
362
|
+
"k_c430f295": "[{{functionName}}] Function update timeout, waited {{timeoutMinutes}} minutes",
|
|
363
|
+
"k_be88155c": "[{{functionName}}] Cloud function code updated!",
|
|
364
|
+
"k_9076b5fb": "Updating [{{functionName}}] cloud function code... Current status: {{status}}",
|
|
365
|
+
"k_1622dc9b": "Unknown",
|
|
366
|
+
"k_87312714": "Failed to get [{{functionName}}] cloud function status, retrying...",
|
|
367
|
+
"k_8fde389f": "View function details in console or create HTTP access service link: {{link}}",
|
|
368
|
+
"k_d1a8c48e": "Use {{command}} command to view deployed cloud functions",
|
|
369
|
+
"k_7d173a0a": "Generating cloud function HTTP access service...",
|
|
370
|
+
"k_ef857e7e": "\nCloud function HTTP access service link: {{link}}",
|
|
371
|
+
"k_d39c80d0": "Deployment completed",
|
|
372
|
+
"k_a4e40472": "Creating",
|
|
373
|
+
"k_a889286a": "Creation failed",
|
|
374
|
+
"k_f339d471": "Updating",
|
|
375
|
+
"k_930442e2": "Update failed",
|
|
376
|
+
"k_1f1cb389": "Get cloud function information",
|
|
377
|
+
"k_ffcb8986": "Getting function information...",
|
|
378
|
+
"k_ca33b869": "[{{name}}] Function does not exist",
|
|
379
|
+
"k_e1d52f3a": "Function name",
|
|
380
|
+
"k_3e176445": "Code size (B)",
|
|
381
|
+
"k_8507fd4b": "Environment variables (key=value)",
|
|
382
|
+
"k_03889214": "Execution method",
|
|
383
|
+
"k_82a3e149": "Memory configuration (MB)",
|
|
384
|
+
"k_158744a8": "Runtime environment",
|
|
385
|
+
"k_84b28944": "Timeout (S)",
|
|
386
|
+
"k_7ec71f52": "Network configuration",
|
|
387
|
+
"k_4696724e": "Triggers",
|
|
388
|
+
"k_1303e638": "Modification time",
|
|
389
|
+
"k_e671bd73": "Auto install dependencies",
|
|
390
|
+
"k_d8c7e04c": "Information",
|
|
391
|
+
"k_fe7509e0": "Value",
|
|
392
|
+
"k_920f0503": "Status description",
|
|
393
|
+
"k_0b6fac7c": "Cloud function [{{name}}] details:",
|
|
394
|
+
"k_2b6b1925": "Function code (Java functions and functions with entry point larger than 1 M will not be displayed)\n",
|
|
395
|
+
"k_cf8763aa": "Input parameters for function invocation, in JSON string format",
|
|
396
|
+
"k_a447b044": "Trigger cloud-deployed cloud function",
|
|
397
|
+
"k_9fb6af81": "No cloud function name specified, invoke all cloud functions in configuration file?",
|
|
398
|
+
"k_b33f7f08": "jsonStringParams parameter is not a valid JSON string",
|
|
399
|
+
"k_0a452be1": "[{{name}}] call succeeded\n",
|
|
400
|
+
"k_ea7b7855": "[{{name}}] call failed\n",
|
|
401
|
+
"k_9f70e40e": "Runtime",
|
|
402
|
+
"k_44cdb3f7": "Memory usage",
|
|
403
|
+
"k_5491712f": "Billing time",
|
|
404
|
+
"k_80863b47": "Request Id ",
|
|
405
|
+
"k_75ef6f10": "Return result",
|
|
406
|
+
"k_4604d502": "Error message",
|
|
407
|
+
"k_a6b94726": "Invocation log",
|
|
408
|
+
"k_0baa0e3f": "Publishing",
|
|
409
|
+
"k_250688d7": "Publish failed",
|
|
410
|
+
"k_5cc23262": "Deleted",
|
|
411
|
+
"k_36f5e8fe": "Bind file layer to cloud function",
|
|
412
|
+
"k_5ae6f7ad": "Current environment does not have this function [{{fnName}}]",
|
|
413
|
+
"k_c195df63": "Abnormal",
|
|
414
|
+
"k_5537844a": "No available file layers, please create file layer first!",
|
|
415
|
+
"k_a8a7705c": "Select file layer name",
|
|
416
|
+
"k_e1cc3392": "No available file layer versions, please create file layer version first!",
|
|
417
|
+
"k_ad9946af": "Select file layer version",
|
|
418
|
+
"k_243e6f08": "File layer binding...",
|
|
419
|
+
"k_a0ff341d": "File layer bound successfully!",
|
|
420
|
+
"k_c8eb1d40": "Delete file layer bound to cloud function",
|
|
421
|
+
"k_056947e4": "This cloud function has no file layer bound!",
|
|
422
|
+
"k_49f9c50e": "Name: {{layerName}} / Version: {{layerVersion}}",
|
|
423
|
+
"k_7241b717": "Select file layer",
|
|
424
|
+
"k_54dd289e": "File layer unbinding...",
|
|
425
|
+
"k_05a8b672": "File layer unbound successfully!",
|
|
426
|
+
"k_d95a093d": "Cloud function layer management",
|
|
427
|
+
"k_de6104ca": "File path",
|
|
428
|
+
"k_f9474080": "Create function file layer",
|
|
429
|
+
"k_55382201": "Layer name {{layerName}} is already occupied by your current environment or other environments, please use a different name",
|
|
430
|
+
"k_9ea626a6": "Creating file layer...",
|
|
431
|
+
"k_4e59d772": "File layer created successfully!",
|
|
432
|
+
"k_af66eace": "Delete file layer of current environment",
|
|
433
|
+
"k_59986ee6": "No available file layers in current environment, please create file layer first!",
|
|
434
|
+
"k_f038c2d7": "Deleting file layer...",
|
|
435
|
+
"k_65af9b73": "File layer deleted successfully!",
|
|
436
|
+
"k_3e500f8b": "Download file storage address",
|
|
437
|
+
"k_6f871f7f": "Download cloud function file layer",
|
|
438
|
+
"k_b5aa5677": "File download successful!",
|
|
439
|
+
"k_f22c9485": "File layer alias",
|
|
440
|
+
"k_7496525c": "Display file layer list",
|
|
441
|
+
"k_ee8ecb9e": "Priority",
|
|
442
|
+
"k_d40b5115": "Certificate",
|
|
443
|
+
"k_c5c82947": "Supported runtime",
|
|
444
|
+
"k_b7612b71": "Empty",
|
|
445
|
+
"k_346d72d7": "Tips: When functions bind multiple versions, files with the same name will be executed in order of priority from small to large.",
|
|
446
|
+
"k_eb77618d": "Reorder the sequence of file layers bound to cloud functions",
|
|
447
|
+
"k_70897572": "Sorting file layers...",
|
|
448
|
+
"k_c7a99cae": "File layer sorting successful!",
|
|
449
|
+
"k_b14fe304": "Data offset, default value is 0",
|
|
450
|
+
"k_e6a8f6e9": "Display cloud function list",
|
|
451
|
+
"k_79abe70e": "limit and offset must be integers",
|
|
452
|
+
"k_99805adb": "limit and offset must be integers greater than 0",
|
|
453
|
+
"k_bc7d0d2a": "Function Id",
|
|
454
|
+
"k_9d996717": "Runtime",
|
|
455
|
+
"k_20da24a6": "Function request ID",
|
|
456
|
+
"k_da31f861": "Data offset, Offset + Limit cannot exceed 10000",
|
|
457
|
+
"k_6ede6885": "Return data length, Offset + Limit cannot exceed 10000",
|
|
458
|
+
"k_db8ae5a2": "Sort logs in ascending or descending order, optional values: desc and asc",
|
|
459
|
+
"k_69196f9c": "Sort logs by a specific field, supports the following fields: function_name, duration, mem_usage, start_time",
|
|
460
|
+
"k_6fd9aec1": "Specific date to query, e.g.: 2019-05-16 20:00:00, can only differ from endtime within one day",
|
|
461
|
+
"k_3aa90d94": "Specific date to query, e.g.: 2019-05-16 20:59:59, can only differ from startTime within one day",
|
|
462
|
+
"k_6ecb8dde": "Only return error type logs",
|
|
463
|
+
"k_32580d59": "Only return success type logs",
|
|
464
|
+
"k_1d9750cf": "Function version, defaults to $LATEST",
|
|
465
|
+
"k_69ee24e1": "Print cloud function logs",
|
|
466
|
+
"k_49643bcc": "Cloud function name cannot be empty",
|
|
467
|
+
"k_d85f2424": "Time format error, must be in format 2019-05-16 20:59:59",
|
|
468
|
+
"k_bf45c9fb": "Start time cannot be later than end time",
|
|
469
|
+
"k_789738c4": "endTime and startTime can only differ within one day",
|
|
470
|
+
"k_8699ae40": "Request time",
|
|
471
|
+
"k_dfc60fc5": "Billing time(ms)",
|
|
472
|
+
"k_8b718239": "Runtime(ms)",
|
|
473
|
+
"k_00d5bdf1": "Invocation count",
|
|
474
|
+
"k_32835c39": "Memory usage",
|
|
475
|
+
"k_dd827096": "Request Id",
|
|
476
|
+
"k_4820582c": "Invocation status",
|
|
477
|
+
"k_fa9f8d3f": "Function: {{name}} call log:\n",
|
|
478
|
+
"k_a1c2e60b": "No invocation logs",
|
|
479
|
+
"k_330363df": "Success",
|
|
480
|
+
"k_acd5cb84": "Failed",
|
|
481
|
+
"k_8e593911": "Log:\n {{log}} \n",
|
|
482
|
+
"k_fc552bb1": "Invalid JSON string",
|
|
483
|
+
"k_7d755849": "Process execution error: {{message}}",
|
|
484
|
+
"k_15c19b4d": "\nCloud function execution exited abnormally, error code: {{code}}",
|
|
485
|
+
"k_f26b3e26": "Not logged in, cannot directly call Node SDK",
|
|
486
|
+
"k_dec173c2": "index.js file does not exist!",
|
|
487
|
+
"k_155ff308": "main method does not exist!",
|
|
488
|
+
"k_26580ae4": "Import cloud function error: {{message}}",
|
|
489
|
+
"k_f7d802e6": "> Starting Node cloud function debugging with default configuration",
|
|
490
|
+
"k_b54629b6": "{{indexFile}} file does not exist!",
|
|
491
|
+
"k_134362f3": "{{mainFunction}} method in handler does not exist, please check your configuration!",
|
|
492
|
+
"k_856d8309": "Import cloud function error:{{message}}",
|
|
493
|
+
"k_98fc1dae": "Cloud function path, call cloud function directly with default configuration, no configuration file needed",
|
|
494
|
+
"k_bda31ad2": "Specify cloud function name for invocation, configuration file required",
|
|
495
|
+
"k_875ddb96": "Parameters passed to function, JSON string format",
|
|
496
|
+
"k_e41bf2e1": "Port number for debugging, default is 9229",
|
|
497
|
+
"k_929b0176": "Start debug mode",
|
|
498
|
+
"k_5fd95e70": "Run cloud function locally (currently only supports Node)",
|
|
499
|
+
"k_04315c2d": "Please specify the name of the function to run or the path of the function\n\nFor example: cloudbase functions:run --name app",
|
|
500
|
+
"k_f36d49c0": "Function trigger operations",
|
|
501
|
+
"k_67f932c6": "Create cloud function trigger",
|
|
502
|
+
"k_76214528": "No cloud function name specified, deploy all triggers of all cloud functions in configuration file?",
|
|
503
|
+
"k_3e6020be": "Trigger configuration cannot be empty",
|
|
504
|
+
"k_8b5fbc7a": "[{{name}}] Cloud function trigger created successfully!",
|
|
505
|
+
"k_8f0e2600": "Delete cloud function trigger",
|
|
506
|
+
"k_0728f0a1": "No cloud function name specified, delete all triggers of all cloud functions in configuration file?",
|
|
507
|
+
"k_98495c3a": "Confirm to delete all triggers of all cloud functions in configuration file?",
|
|
508
|
+
"k_35aa187a": "Please specify cloud function name and trigger name!",
|
|
509
|
+
"k_ef00151e": "No trigger name specified, delete all triggers of this cloud function?",
|
|
510
|
+
"k_ba1c492f": "Trigger name cannot be empty",
|
|
511
|
+
"k_ebdbbf59": "Display function version list",
|
|
512
|
+
"k_f4ecbc73": "Pulling function [{{name}}] version list...",
|
|
513
|
+
"k_3bdd08ad": "Description",
|
|
514
|
+
"k_92fa30d8": "Publish function new version",
|
|
515
|
+
"k_9e314a9c": "Publishing function [{{name}}] new version...",
|
|
516
|
+
"k_652d4768": "Function [{{name}}] new version published successfully!",
|
|
517
|
+
"k_59421c40": "HTTP access service path, e.g. api",
|
|
518
|
+
"k_b16af84a": "Cloud function name bound to HTTP access service path",
|
|
519
|
+
"k_6d3452c6": "Create HTTP access service",
|
|
520
|
+
"k_d708aadf": "No available cloud functions in current environment, please create cloud function first!",
|
|
521
|
+
"k_7163eb63": "Please select cloud function to create HTTP access service",
|
|
522
|
+
"k_7db6a7eb": "Please enter HTTP access service path",
|
|
523
|
+
"k_20ab9e35": "Please specify the HTTP access service path to create!",
|
|
524
|
+
"k_672dfbd9": "[{{functionName}}] HTTP access service creating...",
|
|
525
|
+
"k_c1f77e4b": "[{{functionName}}] Cloud function does not exist!",
|
|
526
|
+
"k_6f958847": "HTTP access service created successfully!\nClick to access> {{link}}",
|
|
527
|
+
"k_a5e98e81": "Path already exists!",
|
|
528
|
+
"k_e063bab3": "HTTP access service path, delete HTTP access service corresponding to this path",
|
|
529
|
+
"k_cd47342d": "HTTP access service Id, delete HTTP access service corresponding to this Id",
|
|
530
|
+
"k_8d15172e": "Cloud function name, delete all HTTP access services bound to this function",
|
|
531
|
+
"k_5182a6e8": "Delete HTTP access service",
|
|
532
|
+
"k_b741286b": "Please select Service to delete",
|
|
533
|
+
"k_b7f49584": "Function name: {{name}}/Path: {{path}}",
|
|
534
|
+
"k_0828b6b6": "HTTP access service deleting...",
|
|
535
|
+
"k_b570fae0": "HTTP access service deleted successfully!",
|
|
536
|
+
"k_ce85571b": "Deploying",
|
|
537
|
+
"k_1cdfe97c": "Deployment failed",
|
|
538
|
+
"k_446c6b6d": "Deployment successful",
|
|
539
|
+
"k_f8de3dbe": "Deleting",
|
|
540
|
+
"k_acf0664a": "Deletion failed",
|
|
541
|
+
"k_9a46c429": "HTTP access service domain management",
|
|
542
|
+
"k_b6912001": "Bind custom HTTP access service domain",
|
|
543
|
+
"k_951fb0ba": "Please specify the HTTP access service domain to bind!",
|
|
544
|
+
"k_bfae102e": "HTTP access service domain [{{domain}}] binding...",
|
|
545
|
+
"k_09253f8f": "HTTP access service domain[{{domain}}] bound successfully!",
|
|
546
|
+
"k_9b14a6bb": "Query HTTP access service custom domain",
|
|
547
|
+
"k_ccab1dba": "Please specify environment ID or HTTP access service domain to query!",
|
|
548
|
+
"k_37b4224c": "Querying HTTP access service domain...",
|
|
549
|
+
"k_c0ff53de": "HTTP access service domain query successful!",
|
|
550
|
+
"k_89b61123": "HTTP access service domain is empty!",
|
|
551
|
+
"k_540644fc": "Unbind custom HTTP access service domain",
|
|
552
|
+
"k_e38ec87e": "Please specify the HTTP access service domain to unbind!",
|
|
553
|
+
"k_37875eb9": "HTTP Service domain [{{domain}}] unbinding...",
|
|
554
|
+
"k_d2ddc9fb": "HTTP Service domain [{{domain}}] unbound successfully!",
|
|
555
|
+
"k_80c06f9a": "Custom domain",
|
|
556
|
+
"k_804aca8d": "Service Path",
|
|
557
|
+
"k_1d9839f6": "Service Id",
|
|
558
|
+
"k_b3fca009": "Get HTTP access service list",
|
|
559
|
+
"k_d41411c2": "Please specify environment ID or HTTP access service custom domain to query!",
|
|
560
|
+
"k_0906bac4": "Querying HTTP access service...",
|
|
561
|
+
"k_6f6f9ae5": "HTTP access service is empty",
|
|
562
|
+
"k_1a078af1": "Trigger path",
|
|
563
|
+
"k_8c092104": "Associated resource",
|
|
564
|
+
"k_ff9814bf": "Trigger type",
|
|
565
|
+
"k_eb49d690": "Cloud function",
|
|
566
|
+
"k_a781c46f": "Cloud hosting",
|
|
567
|
+
"k_22dc8772": "Enable/disable HTTP access service",
|
|
568
|
+
"k_9db7a84f": "Enabled",
|
|
569
|
+
"k_9c58505d": "Disabled",
|
|
570
|
+
"k_4f672f81": "Enable/disable HTTP access service (current status: {{status}})",
|
|
571
|
+
"k_cc42dd31": "Enable",
|
|
572
|
+
"k_b15d9127": "Disable",
|
|
573
|
+
"k_305a1a89": "HTTP access service is starting",
|
|
574
|
+
"k_d59a1bb5": "HTTP access service is stopping",
|
|
575
|
+
"k_1c0affdc": "HTTP access service started successfully!",
|
|
576
|
+
"k_0e1a847f": "HTTP access service stopped successfully!",
|
|
577
|
+
"k_3d43f77b": "HTTP access service access authentication management",
|
|
578
|
+
"k_0fa1ade0": "Enable/disable HTTP access service access authentication",
|
|
579
|
+
"k_4b5b1bd3": "Enable/disable HTTP access service access authentication (current status: {{status}})",
|
|
580
|
+
"k_7bc07545": "HTTP access service access authentication {{enable}}...",
|
|
581
|
+
"k_1d0884b7": "HTTP access service access authentication {{enable}} successfully!",
|
|
582
|
+
"k_87f7d6e1": "Environment initialization in progress, estimated to take three minutes",
|
|
583
|
+
"k_8a13d2d9": "Specify project template name",
|
|
584
|
+
"k_1bb15e38": "Do not use template, initialize in current project",
|
|
585
|
+
"k_08d58198": "Specify project name",
|
|
586
|
+
"k_6d73678b": "Create and initialize a new cloud development project",
|
|
587
|
+
"k_4c120877": "This command will be deprecated, please use the new command => tcb new <appName> [template]",
|
|
588
|
+
"k_3b0c6e35": "Getting environment list...",
|
|
589
|
+
"k_51d7a25d": "Create new environment",
|
|
590
|
+
"k_c88f0833": "No available environments, create new environment",
|
|
591
|
+
"k_4ffe9c35": "Select associated environment",
|
|
592
|
+
"k_685554bd": "Console opened, please go to console to create environment",
|
|
593
|
+
"k_4a2b8c6f": "Failed to receive environment Id information, please run init command again!",
|
|
594
|
+
"k_6abb7449": "Environment created successfully, environment Id: {{envId}}",
|
|
595
|
+
"k_9e021a0a": "Fetching cloud development template list...",
|
|
596
|
+
"k_adb72923": "Select cloud development template",
|
|
597
|
+
"k_09c44691": "Template `{{templateName}}` does not exist",
|
|
598
|
+
"k_4371e2b4": "Please enter project name",
|
|
599
|
+
"k_d615369f": "Folder with same name already exists: {{projectName}}, overwrite?",
|
|
600
|
+
"k_88598585": "Downloading files...",
|
|
601
|
+
"k_c4fe7fc2": "Opening authorization page in browser for authorization...",
|
|
602
|
+
"k_43229ca0": "All environment statuses are abnormal",
|
|
603
|
+
"k_d3e1231c": "Environment {{envId}} initialization successful",
|
|
604
|
+
"k_217c505b": "You have not enabled cloud development service yet, jump to console to enable cloud development service? (Cancel will not be able to continue operation)",
|
|
605
|
+
"k_45d227ba": "init operation terminated, please enable cloud development service before proceeding!",
|
|
606
|
+
"k_e8ada3f5": "Cloud development console opened, please login and enable service in cloud development console!",
|
|
607
|
+
"k_4645e11b": "Waiting for cloud development service to be enabled...",
|
|
608
|
+
"k_282a59d5": "Cloud development service enabled successfully!",
|
|
609
|
+
"k_cd294325": "Request exception",
|
|
610
|
+
"k_6e38b9e6": "File not found",
|
|
611
|
+
"k_b92301e9": "Project {{projectName}} initialized successfully!\n",
|
|
612
|
+
"k_64cf472f": "Execute command {{command}} to enter the project folder",
|
|
613
|
+
"k_b444bf34": "After development is complete, execute command {{command}} to deploy with one click",
|
|
614
|
+
"k_e59a99fe": "Whether to Clone entire repository when creating template from Git",
|
|
615
|
+
"k_57a79809": "Create a new cloud development application",
|
|
616
|
+
"k_cf864949": "Application {{appName}} created successfully!\n",
|
|
617
|
+
"k_f45d0ed6": "Application created successfully!",
|
|
618
|
+
"k_d6d221c6": "Execute command {{command}} to enter the folder",
|
|
619
|
+
"k_1d47036e": "CLI Documentation",
|
|
620
|
+
"k_67b86939": "Open cloud development related links in browser",
|
|
621
|
+
"k_895ccaff": "{{link}} link does not exist!",
|
|
622
|
+
"k_c5234479": "Please select link to open",
|
|
623
|
+
"k_92ed0ba7": "Please specify link to open!",
|
|
624
|
+
"k_2e590c97": "Opening {{name}} link in your default browser:",
|
|
625
|
+
"k_06f8bd5d": "Initializing",
|
|
626
|
+
"k_5d459d55": "Processing",
|
|
627
|
+
"k_8d4a7497": "Online",
|
|
628
|
+
"k_1e6c94c7": "Destroying",
|
|
629
|
+
"k_0a666759": "Offline",
|
|
630
|
+
"k_ab94e2c3": "Initialization failed",
|
|
631
|
+
"k_e00eada8": "Destruction failed",
|
|
632
|
+
"k_182016c3": "View static website service information",
|
|
633
|
+
"k_b0128a23": "Static website domain: {{link}}",
|
|
634
|
+
"k_5154a82c": "Static website status: 【{{status}}】",
|
|
635
|
+
"k_4b7a460b": "Deploy static website files",
|
|
636
|
+
"k_73c6fb60": "Local directory",
|
|
637
|
+
"k_bec77f4e": "Preparing upload...",
|
|
638
|
+
"k_58fa999a": "File deployment successful!",
|
|
639
|
+
"k_d50d2bb9": "\nDeployment complete => {{link}}",
|
|
640
|
+
"k_00b62cbb": "Total files: {{totalFiles}}",
|
|
641
|
+
"k_d8b002c6": "Successfully uploaded {{count}} file(s)",
|
|
642
|
+
"k_2a0c4740": "File",
|
|
643
|
+
"k_47a7915e": "Failed to upload {{count}} file(s)",
|
|
644
|
+
"k_571237d0": "Upload failed files:",
|
|
645
|
+
"k_b54113e0": "Some files upload failed, process exit",
|
|
646
|
+
"k_796a9dc0": "Whether deletion target is folder",
|
|
647
|
+
"k_48e76cb0": "Delete static website files/folders, folders need to specify --dir option",
|
|
648
|
+
"k_a50703da": "Cloud path is empty, will delete all files, continue?",
|
|
649
|
+
"k_1f4c1042": "Folder",
|
|
650
|
+
"k_9bea7bbb": "Deleting {{fileText}}...",
|
|
651
|
+
"k_e2da2341": "{{fileText}} deleted successfully!",
|
|
652
|
+
"k_9280e870": "{{fileText}} deletion failed!",
|
|
653
|
+
"k_498f509b": "Display file list",
|
|
654
|
+
"k_021ce8e2": "Getting file list...",
|
|
655
|
+
"k_faaadc44": "Index",
|
|
656
|
+
"k_89735695": "Key",
|
|
657
|
+
"k_e262f422": "LastModified",
|
|
658
|
+
"k_611a2b5d": "ETag",
|
|
659
|
+
"k_76f7f141": "Size(KB)",
|
|
660
|
+
"k_a1835898": "Failed to get file list!",
|
|
661
|
+
"k_d3328886": "Whether download target is folder",
|
|
662
|
+
"k_b2be36fd": "Download files/folders, folders need to specify --dir option",
|
|
663
|
+
"k_c6bb645e": "Downloading {{fileText}}...",
|
|
664
|
+
"k_c464c469": "{{fileText}} downloaded successfully!",
|
|
665
|
+
"k_c6f9afa5": "Specify template source",
|
|
666
|
+
"k_0baaa2d0": "Specify output directory",
|
|
667
|
+
"k_3d95d7f5": "Force clean target output directory (use with caution)",
|
|
668
|
+
"k_1022e8e8": "Pull project template\n\nSupported built-in templates:\n miniprogram - WeChat Mini Program + CloudBase\n react - Web App - React + CloudBase\n vue - Web App - Vue + CloudBase\n uniapp - Cross-platform App - UniApp + CloudBase\n rules - AI rules and configuration\n\nSupported Git repositories:\n GitHub: https://github.com/user/repo\n Gitee: https://gitee.com/user/repo\n CNB: https://cnb.cool/user/repo\n SSH: git@github.com:user/repo.git\n\nSupported Git subdirectories:\n https://github.com/user/repo/tree/main/src/templates\n https://cnb.cool/user/repo/tree/main/examples\n\nExamples:\n tcb pull miniprogram\n tcb pull https://github.com/user/repo\n tcb pull https://cnb.cool/user/repo\n tcb pull https://cnb.cool/user/repo/tree/main/examples --output ./my-project",
|
|
669
|
+
"k_b4f45ca3": "Please specify the template source to pull",
|
|
670
|
+
"k_c52edaa4": "Template pull completed!",
|
|
671
|
+
"k_efd2196e": "Project created at: {{output}}",
|
|
672
|
+
"k_dac2f103": "Failed to pull template: {{message}}",
|
|
673
|
+
"k_6eb36002": "Available built-in templates:",
|
|
674
|
+
"k_9b300f98": "\nSupported Git repository formats:",
|
|
675
|
+
"k_58a65472": "\nSupported Git subdirectories:",
|
|
676
|
+
"k_3208efee": "Cloud Run service name",
|
|
677
|
+
"k_d0cdc72c": "Service name must be provided",
|
|
678
|
+
"k_dea930dd": "Service still has versions, please clear version list first",
|
|
679
|
+
"k_15c47d49": "Deleting service",
|
|
680
|
+
"k_5bef5cce": "Service deletion completed",
|
|
681
|
+
"k_f287e4da": "Service deletion failed",
|
|
682
|
+
"k_647d90e2": "Delete bound image repository {{imageRepo}}?",
|
|
683
|
+
"k_0a60ac8f": "Yes",
|
|
684
|
+
"k_c9744f45": "No",
|
|
685
|
+
"k_1080a074": "Deleting image repository",
|
|
686
|
+
"k_31c17ea2": "Repository deletion completed",
|
|
687
|
+
"k_a359d1cd": "Repository deletion failed",
|
|
688
|
+
"k_d68914f8": "Cloud Run image management",
|
|
689
|
+
"k_acf81ffc": "Hosted service name",
|
|
690
|
+
"k_9a77f352": "Image tag",
|
|
691
|
+
"k_8ebba762": "Delete Cloud Run service version in cloud development environment",
|
|
692
|
+
"k_5c6f4e0c": "Must provide serviceName and imageTag",
|
|
693
|
+
"k_31811f76": "Successfully deleted {{imageUrl}} image under {{serviceName}} service",
|
|
694
|
+
"k_423dedda": "Download Cloud Run service image in cloud development environment",
|
|
695
|
+
"k_0b5a1bbd": "Cannot find ~/.docker/config.json or not logged in, need to execute docker login",
|
|
696
|
+
"k_93ef08b3": "Pull successful",
|
|
697
|
+
"k_6a4e981a": "Display selected Cloud Run service version list",
|
|
698
|
+
"k_30cd9c21": "Please enter service name to query",
|
|
699
|
+
"k_34772285": "Image",
|
|
700
|
+
"k_58f96667": "Size",
|
|
701
|
+
"k_1bfd0c78": "Associated service version",
|
|
702
|
+
"k_6c576593": "Local image id",
|
|
703
|
+
"k_748cbb5c": "Upload Cloud Run service image in cloud development environment",
|
|
704
|
+
"k_0e75b7ec": "Must provide serviceName, imageId and imageTag",
|
|
705
|
+
"k_a7699ba7": "Upload successful",
|
|
706
|
+
"k_bba85598": "Display Cloud Run service list",
|
|
707
|
+
"k_60897382": "Service remark",
|
|
708
|
+
"k_871210fb": "Private network",
|
|
709
|
+
"k_e0076ce9": "Environment Id, required",
|
|
710
|
+
"k_8fb41d65": "Service name, required",
|
|
711
|
+
"k_2b7bc30a": "Single instance CPU specification, default 0.5",
|
|
712
|
+
"k_b788f8f9": "Single instance memory specification, default 1",
|
|
713
|
+
"k_60e54d3f": "Minimum replica count, default 0",
|
|
714
|
+
"k_84063041": "Maximum replica count, default 50, cannot exceed 50",
|
|
715
|
+
"k_03310834": "Auto-scaling configuration, format: condition_type=condition_ratio(%), multiple conditions separated by &, memory condition is mem, CPU condition is cpu, default memory>60% or CPU>60%, i.e. cpu=60&mem=60",
|
|
716
|
+
"k_1672e923": "Log collection path, default stdout",
|
|
717
|
+
"k_94618c2c": "Environment variables, format: xx=a&yy=b, default empty",
|
|
718
|
+
"k_e865df3e": "Display results in JSON format",
|
|
719
|
+
"k_3a6bff71": "Specify environment and service, update service basic configuration",
|
|
720
|
+
"k_a1683e06": "Configuration update successful",
|
|
721
|
+
"k_2ce13d15": "Skip secondary confirmation before deployment",
|
|
722
|
+
"k_064b32bc": "Whether default parameters follow old version configuration",
|
|
723
|
+
"k_4b41c013": "Local code root directory",
|
|
724
|
+
"k_0392d6ee": "Log type, can only be none, for custom logs please configure in console",
|
|
725
|
+
"k_fb23fe19": "Listening port, required",
|
|
726
|
+
"k_554779c6": "Version remark, default empty",
|
|
727
|
+
"k_c67e1ada": "Target directory",
|
|
728
|
+
"k_ea03aec1": "Dockerfile filename, default Dockerfile",
|
|
729
|
+
"k_18a3da69": "TCR repository image URL",
|
|
730
|
+
"k_4d22c1f9": "Online image repository tag, only available when service exists",
|
|
731
|
+
"k_9e63ad54": "Image tag or ID",
|
|
732
|
+
"k_5b7c69d2": "Deploy service in specified environment",
|
|
733
|
+
"k_6b7dc973": "Current service does not exist, please go to console {{link}} to create service",
|
|
734
|
+
"k_f592ef2f": "Service name",
|
|
735
|
+
"k_b2627f8c": "Display service information in environment",
|
|
736
|
+
"k_f408ed67": "Getting service list",
|
|
737
|
+
"k_0e0ec96e": "No services in current environment",
|
|
738
|
+
"k_484d92aa": "Online image repository tag",
|
|
739
|
+
"k_493eebc3": "Specify environment and existing service, deploy new application",
|
|
740
|
+
"k_7418d6e2": "Cloud Run small tenant gateway management",
|
|
741
|
+
"k_82fab21f": "Gateway alias",
|
|
742
|
+
"k_29563f8e": "Gateway description",
|
|
743
|
+
"k_d85c8057": "VPC",
|
|
744
|
+
"k_9c9f8211": "Subnet list",
|
|
745
|
+
"k_7532227d": "Create small tenant gateway",
|
|
746
|
+
"k_8a4c3861": "Please enter VPC",
|
|
747
|
+
"k_76a178b6": "Please enter subnet list",
|
|
748
|
+
"k_c11fe026": "Please enter gateway description",
|
|
749
|
+
"k_6f8fcb62": "Please enter package version",
|
|
750
|
+
"k_412bf381": "Operation executed successfully, gateway name: {{name}}",
|
|
751
|
+
"k_611e4c35": "Gateway name",
|
|
752
|
+
"k_9abb6d7a": "Force confirm resource deletion",
|
|
753
|
+
"k_bf6c3513": "Destroy small tenant gateway",
|
|
754
|
+
"k_dbfb1dc7": "Please enter gateway name",
|
|
755
|
+
"k_f548aec6": "Please use --isForce option to confirm resource destruction!",
|
|
756
|
+
"k_cd5f7062": "Gateway destroyed",
|
|
757
|
+
"k_93946f2c": "Query small tenant gateway",
|
|
758
|
+
"k_6dc7a717": "Alias",
|
|
759
|
+
"k_7d45d557": "Subnet",
|
|
760
|
+
"k_04eca8f1": "Public IP",
|
|
761
|
+
"k_c6646204": "Private IP",
|
|
762
|
+
"k_b59cdfbe": "Service information",
|
|
763
|
+
"k_3894bfd1": "Package operation",
|
|
764
|
+
"k_86f141a3": "Please enter specific operation",
|
|
765
|
+
"k_2b55387d": "CPU",
|
|
766
|
+
"k_9932551c": "Memory",
|
|
767
|
+
"k_fe93a7b3": "Gateway name",
|
|
768
|
+
"k_a2d4a062": "Cloud Run service list",
|
|
769
|
+
"k_aca9bbf5": "Start/stop small tenant gateway",
|
|
770
|
+
"k_0268e608": "Please enter start/stop status",
|
|
771
|
+
"k_86f3046f": "Please enter gateway name",
|
|
772
|
+
"k_9644d963": "Please enter Cloud Run service list",
|
|
773
|
+
"k_2ea54ac8": "Operation executed successfully",
|
|
774
|
+
"k_8c2d5fcf": "Cloud Run version management",
|
|
775
|
+
"k_f9d7481d": "Local code",
|
|
776
|
+
"k_16e5d131": "Code repository pull",
|
|
777
|
+
"k_f76f9653": "Image pull",
|
|
778
|
+
"k_09abe456": "Local code path, used when selecting local code upload",
|
|
779
|
+
"k_b56aaa9d": "Repository information, format: channel|fullName|branch, channel can be github, gitlab or gitee, used when selecting code repository pull",
|
|
780
|
+
"k_857e9260": "Image URL, used when selecting image pull",
|
|
781
|
+
"k_b59fa877": "Listening port, default 80",
|
|
782
|
+
"k_9b765ba8": "Traffic strategy (%), 0 or 100, default 0",
|
|
783
|
+
"k_86e66386": "Remark information, default empty",
|
|
784
|
+
"k_f7ad152b": "CPU specification (cores), default 0.5",
|
|
785
|
+
"k_93c5fec5": "Memory specification (G), default 1",
|
|
786
|
+
"k_7c317b09": "Replica count, format: min~max, default 0~50",
|
|
787
|
+
"k_f64dc9bd": "Auto-scaling condition, format: condition_type|condition_ratio(%), CPU condition is cpu, memory condition is mem, default cpu|60",
|
|
788
|
+
"k_7e1dc6ec": "Dockerfile name, used when not pulling images, default Dockerfile",
|
|
789
|
+
"k_97b2c4e2": "Log collection path, default stdout",
|
|
790
|
+
"k_b9072c21": "Initial delay time (seconds), default 2",
|
|
791
|
+
"k_9b9aaffb": "Create Cloud Run service version in CloudBase environment",
|
|
792
|
+
"k_1c5462d1": "Must enter serviceName",
|
|
793
|
+
"k_aaf0a174": "Compressing...",
|
|
794
|
+
"k_36430ddc": "Compression completed",
|
|
795
|
+
"k_c2468c67": "Please select at least one upload method",
|
|
796
|
+
"k_b1ef082c": "Please enter valid port number",
|
|
797
|
+
"k_805a1c24": "Please enter valid traffic strategy",
|
|
798
|
+
"k_2ebdff92": "Please enter valid CPU and memory specifications",
|
|
799
|
+
"k_bfd97283": "Please enter valid replica count",
|
|
800
|
+
"k_02f52edc": "Please enter valid auto-scaling condition",
|
|
801
|
+
"k_0aeaa205": "Please enter valid delay time",
|
|
802
|
+
"k_26b5bd49": "Loading...",
|
|
803
|
+
"k_bd8528d7": "Uploading...",
|
|
804
|
+
"k_6c06fd14": "Delete local archive",
|
|
805
|
+
"k_db0dfacf": "Successfully deleted local archive",
|
|
806
|
+
"k_15ce80d0": "Failed to submit build task",
|
|
807
|
+
"k_3c6be621": "Deploying...",
|
|
808
|
+
"k_0f9fd8b3": "Build failed, logs written to {{file}}",
|
|
809
|
+
"k_b72a527c": "Current build progress {{percent}}%",
|
|
810
|
+
"k_e2859548": "Build successful",
|
|
811
|
+
"k_f098b786": "Version name",
|
|
812
|
+
"k_f13c3259": "Must enter serviceName and versionName",
|
|
813
|
+
"k_cd0ed54c": "Successfully deleted {{versionName}} version under {{serviceName}} service",
|
|
814
|
+
"k_62859cb9": "Deletion failed, please check if version exists, or clear version gray traffic first",
|
|
815
|
+
"k_a05e4eec": "Version name",
|
|
816
|
+
"k_c6e3373a": "Traffic",
|
|
817
|
+
"k_2432b575": "Remark",
|
|
818
|
+
"k_3cc53f99": "Traffic configuration sum must be 0 or 100",
|
|
819
|
+
"k_b05fa6dc": "Allocation failed",
|
|
820
|
+
"k_f54845c8": "Allocation successful",
|
|
821
|
+
"k_06edbd59": "Configuration type, percentage allocation is FLOW|versionName1=a&...&versionName1=b, URL allocation is URL|key1,value1,version1&...&key1,value1,version1|defaultVersion",
|
|
822
|
+
"k_a657d332": "Please enter valid Cloud Run service name",
|
|
823
|
+
"k_de1fae1b": "Current configuration is as follows",
|
|
824
|
+
"k_efd72d46": "Image name {{name}}",
|
|
825
|
+
"k_1ae11c9a": "Upload method {{type}}",
|
|
826
|
+
"k_42293c91": "Local code upload",
|
|
827
|
+
"k_cba26b31": "Code repository pull",
|
|
828
|
+
"k_ad763010": "Listening port {{port}}",
|
|
829
|
+
"k_f5edd67a": "Auto-scaling condition {{type}} usage > {{threshold}}",
|
|
830
|
+
"k_0c4465d4": "Specification cpu {{cpu}} cores mem {{mem}}G",
|
|
831
|
+
"k_5cddf1ff": "InitialDelaySeconds {{seconds}}",
|
|
832
|
+
"k_9830cf33": "Log collection path {{path}}",
|
|
833
|
+
"k_99ecdcc0": "Environment variables {{vars}}",
|
|
834
|
+
"k_11dd85d9": "Deploy Cloud Function 2.0 service",
|
|
835
|
+
"k_26797ab6": "Download Cloud Function 2.0 service code",
|
|
836
|
+
"k_74963842": "Multi-function definition configuration file, defaults to ./cloudbase-functions.json.\n Environment variable: FUNCTIONS_CONFIG_FILE\n ",
|
|
837
|
+
"k_ed096711": "Enable Cross-Origin Resource Sharing (CORS) for configured sources, default value is false\n Environment variable: ENABLE_CORS\n ",
|
|
838
|
+
"k_cdf0f437": "Set the origins allowed by CORS. By default, localhost and 127.0.0.1 are allowed.\n Supports wildcard origins, e.g., ['.example.com'].\n Multiple origins should be separated by commas.\n Example: --allowedOrigins .example.com,www.another.com\n Environment variable: ALLOWED_ORIGINSS\n ",
|
|
839
|
+
"k_c896b60c": "Value used to parse context.extendedContext. \"\" means this feature is disabled. Default value is null\n Example: --extendedContext '{\"a\":1,\"b\":2}'\n Environment variable: EXTENDED_CONTEXT\n ",
|
|
840
|
+
"k_40eb6935": "Run Cloud Function 2.0 code locally",
|
|
841
|
+
"k_d1be483b": "Update current CloudBase CLI (standalone release) to specified or latest version",
|
|
842
|
+
"k_253746ee": "Specify version number, default to latest",
|
|
843
|
+
"k_27a0239e": "Channel: stable|beta, default stable",
|
|
844
|
+
"k_811da06c": "Download base URL, default https://static.cloudbase.net/cli",
|
|
845
|
+
"k_6aa25150": "Self-update failed: {{error}}",
|
|
846
|
+
"k_87be3f0f": "Rollback CloudBase CLI (standalone release) to previous version",
|
|
847
|
+
"k_84c389d6": "Installed version directory not found, cannot rollback",
|
|
848
|
+
"k_cacb54c7": "No rollback history versions available",
|
|
849
|
+
"k_8e71acfa": "Rolled back to version: {{version}}",
|
|
850
|
+
"k_8f230a9b": "Rollback failed: {{error}}",
|
|
851
|
+
"k_35447fa5": "Environment detection in progress",
|
|
852
|
+
"k_1d317273": "Current directory is empty, initializing CloudBase project\n",
|
|
853
|
+
"k_a8f54b9a": "Project initialized successfully!\n",
|
|
854
|
+
"k_b5cd4567": "Use CloudBase to deploy current project <{{path}}>?",
|
|
855
|
+
"k_81fb0b12": "All users can read, only creator and admin can write",
|
|
856
|
+
"k_8f402a77": "Only creator and admin can read and write",
|
|
857
|
+
"k_deddf9be": "All users can read, only admin can write",
|
|
858
|
+
"k_13f5ab74": "Only admin can read and write",
|
|
859
|
+
"k_2abfb6a7": "cloudPath cannot start with \"/\"",
|
|
860
|
+
"k_3957cab0": "Set upload retry count, default value is 1",
|
|
861
|
+
"k_c17bb183": "Set retry interval when upload fails (milliseconds), default value is 500",
|
|
862
|
+
"k_f9be8f5e": "Upload file/folder",
|
|
863
|
+
"k_5ebc77ce": "File not found!",
|
|
864
|
+
"k_99385580": "Upload retry count should be between 0-10",
|
|
865
|
+
"k_dd4c575d": "File upload successful!",
|
|
866
|
+
"k_edbf7b43": "Total {{count}} file(s)",
|
|
867
|
+
"k_4af5ecc4": "Storage folder does not exist!",
|
|
868
|
+
"k_13266be4": "Downloading {{type}}",
|
|
869
|
+
"k_8e5c46e6": "Download {{type}} successful!",
|
|
870
|
+
"k_93a55dd3": "Delete file/folder, folder requires --dir option",
|
|
871
|
+
"k_95f013ab": "Deleting {{type}}",
|
|
872
|
+
"k_43aa671a": "Delete {{type}} successful!",
|
|
873
|
+
"k_2b1acf94": "Get file storage file list, get all file list when path is not specified",
|
|
874
|
+
"k_44881766": "Get file temporary access address",
|
|
875
|
+
"k_0f02bdd6": "File temporary access address: {{url}}",
|
|
876
|
+
"k_c5244565": "Get file information",
|
|
877
|
+
"k_0ed2a21e": "File size: {{size}}\nFile type: {{type}}\nModified date: {{date}}\nETag: {{etag}}",
|
|
878
|
+
"k_2ccae632": "Get file storage permission information",
|
|
879
|
+
"k_74568014": "Current permission [{{acl}}]",
|
|
880
|
+
"k_b3be7560": "Set file storage permission information",
|
|
881
|
+
"k_b17be281": "Select permission",
|
|
882
|
+
"k_17f5f57f": "Storage permission set successfully!",
|
|
883
|
+
"k_b84591a0": "Third-party source",
|
|
884
|
+
"k_c210f95d": "Third-party appId",
|
|
885
|
+
"k_a90be4a9": "Unbind third-party",
|
|
886
|
+
"k_7f1cff3b": "Please specify corresponding source",
|
|
887
|
+
"k_72472ec6": "Getting environment list...",
|
|
888
|
+
"k_89979d04": "Please select environment",
|
|
889
|
+
"k_3da93ea9": "Failed to update cloudbaserc.json: {{error}}",
|
|
890
|
+
"k_0b267ab4": "Isolating",
|
|
891
|
+
"k_c6837202": "Function version publishing",
|
|
892
|
+
"k_2733192b": "Function version publish failed",
|
|
893
|
+
"k_1faec458": "Function deleting",
|
|
894
|
+
"k_ac787190": "Function delete failed",
|
|
895
|
+
"k_fad5222c": "Completed",
|
|
896
|
+
"k_fb852fc6": "In progress",
|
|
897
|
+
"k_9882b34a": "This command is deprecated!",
|
|
898
|
+
"k_ac6da90d": "[{{name}}] Set function traffic configuration failed: {{error}}",
|
|
899
|
+
"k_e0b868bd": "[{{name}}] Query function alias configuration failed: {{error}}",
|
|
900
|
+
"k_ba3362c6": "Get function list failed: {{error}}",
|
|
901
|
+
"k_65bd87f2": "{{name}} get information failed: {{error}}",
|
|
902
|
+
"k_0c838c5f": "{{name}} update configuration failed: {{error}}",
|
|
903
|
+
"k_3490b9b6": "[{{name}}] call failed:\n{{error}}",
|
|
904
|
+
"k_73c0857c": "[{{name}}] call succeeded\nResponse result:\n",
|
|
905
|
+
"k_8bc9b1e7": "{{name}} function invoke failed: {{error}}",
|
|
906
|
+
"k_f9207442": "Missing parameters",
|
|
907
|
+
"k_be079212": "[{{name}}] Set function provisioned concurrency failed: {{error}}",
|
|
908
|
+
"k_e252f3da": "[{{name}}] View function provisioned concurrency information failed: {{error}}",
|
|
909
|
+
"k_3543c899": "[{{name}}] Delete function provisioned concurrency failed: {{error}}",
|
|
910
|
+
"k_fdeb0b7a": "[{{name}}] Deploy failed, {{error}}",
|
|
911
|
+
"k_a4261c3a": "[{{name}}] Function deploying...",
|
|
912
|
+
"k_03343977": "[{{name}}] Function deploy successful",
|
|
913
|
+
"k_a89e2abc": "[{{name}}] Function deploy failed",
|
|
914
|
+
"k_0e315e0f": "[{{name}}] Function delete successful!",
|
|
915
|
+
"k_7373c323": "Layer does not exist",
|
|
916
|
+
"k_e29e9a63": "File type is incorrect, currently only ZIP files are supported!",
|
|
917
|
+
"k_f69fb7ed": "File already exists: {{path}}",
|
|
918
|
+
"k_86d2ea8c": "Unsupported trigger type [{{type}}], currently only supports timer trigger (timer)!",
|
|
919
|
+
"k_25eac01e": "[{{name}}] Create trigger failed: {{error}}",
|
|
920
|
+
"k_1735827d": "[{{name}}] Delete cloud function trigger {{trigger}} successful!",
|
|
921
|
+
"k_6ec2e8c8": "[{{name}}] Delete trigger failed: {{error}}",
|
|
922
|
+
"k_cca46298": "CodeSecret format error, format should be 1-160 characters of uppercase, lowercase letters, numbers+=/",
|
|
923
|
+
"k_8a110364": "[{{name}}] Function code update failed: {{error}}",
|
|
924
|
+
"k_ecf1e04a": "[{{name}}] Function publish new version failed: {{error}}",
|
|
925
|
+
"k_02594bee": "[{{name}}] View function version list failed: {{error}}",
|
|
926
|
+
"k_ddf7d2a5": "Commands",
|
|
927
|
+
"k_0f6c9a7a": "Start AI full-stack development experience",
|
|
928
|
+
"k_e016c694": "Environment management operations",
|
|
929
|
+
"k_1e500552": "Function operations",
|
|
930
|
+
"k_8532463b": "Static hosting resource management operations",
|
|
931
|
+
"k_4c853255": "Cloud storage resource management operations",
|
|
932
|
+
"k_3d2573e4": "HTTP access service management operations",
|
|
933
|
+
"k_ad6842a9": "Cloud hosting service management operations",
|
|
934
|
+
"k_ea15ae2b": "Options",
|
|
935
|
+
"k_2f3cf908": "Specify configuration file path",
|
|
936
|
+
"k_94685833": "Output current version",
|
|
937
|
+
"k_a0d4cc0f": "Tips",
|
|
938
|
+
"k_402d19e5": "Login",
|
|
939
|
+
"k_e654a3bd": "Deploy using AI full-stack development",
|
|
940
|
+
"k_879eb99c": "Online",
|
|
941
|
+
"k_4805dd77": "Offline",
|
|
942
|
+
"k_b5e4c766": "You have not enabled static hosting, do you want to enable it now?",
|
|
943
|
+
"k_04474177": "Static hosting enabled successfully! Resources are being initialized, please wait 3-5 minutes and try again...",
|
|
944
|
+
"k_10d1b57e": "Failed to enable static hosting\n request id: {{requestId}}",
|
|
945
|
+
"k_89406033": "You have not enabled the static website service. Please enable it in the CloudBase console first!\n=> {{link}}",
|
|
946
|
+
"k_10415d94": "Static website service [{{status}}], cannot perform this operation!",
|
|
947
|
+
"k_24a5ae67": "Static website service is already enabled, please do not repeat the operation!",
|
|
948
|
+
"k_6bafd6e9": "Static website files are not empty, cannot destroy!",
|
|
949
|
+
"k_81b6dc08": "Static website service is not enabled!",
|
|
950
|
+
"k_564eb4ab": "{{item}} must be a number",
|
|
951
|
+
"k_b46a5da3": "Please enter valid scaling configuration",
|
|
952
|
+
"k_8f707144": "Please use -e or --envId to specify environment ID",
|
|
953
|
+
"k_6b3e7cf8": "Please use -s or --serviceName to specify service name",
|
|
954
|
+
"k_2de64b89": "Please use --containerPort to specify listening port",
|
|
955
|
+
"k_a6d8ed06": "Please use --path to specify code root directory or --custom_image to specify TCR image URL",
|
|
956
|
+
"k_508f4f4c": "Please use --path to specify the code root directory or --custom_image to specify the TCR image URL or --library_image to specify the online image tag ",
|
|
957
|
+
"k_4d0d50c2": "Log type log_type can only be none, please go to console to configure custom logs",
|
|
958
|
+
"k_270fc36b": "You have not authorized TCR instance, please authorize in console first: {{link}}",
|
|
959
|
+
"k_61393ee3": "Image {{image}} does not exist",
|
|
960
|
+
"k_e16d7834": "Currently --image parameter is not supported, please use --custom_image to specify TCR image URL or --library_image to specify online image tag",
|
|
961
|
+
"k_efb3bcc1": "Image URL parsing failed, please check if the input image URL is correct",
|
|
962
|
+
"k_dd8cb633": "Must use -e or --envId to specify environment ID",
|
|
963
|
+
"k_267c61f9": "Must use -s or --serviceName to specify service name",
|
|
964
|
+
"k_0f2dc981": "Service does not exist, please check if service name is correct or create service in console {{link}}",
|
|
965
|
+
"k_36a93835": "Compressing files...",
|
|
966
|
+
"k_60d99349": "File compression completed",
|
|
967
|
+
"k_da8fa938": "Cannot find specified folder, please check if file path is correct",
|
|
968
|
+
"k_ffa9627b": "\nUploading code package...",
|
|
969
|
+
"k_3e83f998": "Upload code package failed, please try again later",
|
|
970
|
+
"k_21455c7c": "Log Start",
|
|
971
|
+
"k_26610d8f": "Log End",
|
|
972
|
+
"k_e24170dd": "Service is updating and deploying, please try again later or view real-time deployment logs",
|
|
973
|
+
"k_a4d6daff": "Are you sure you want to update the service?",
|
|
974
|
+
"k_a375bbce": "There is already a deployment task running, please try again later or view real-time deployment logs",
|
|
975
|
+
"k_e3b7106a": "Task ID for this task: {{taskId}}",
|
|
976
|
+
"k_69fe2603": "Service update successful, Task ID for this task: {{taskId}}",
|
|
977
|
+
"k_505aef72": "Service {{name}} {{status}}",
|
|
978
|
+
"k_ea4a363d": "Disabled",
|
|
979
|
+
"k_740e2644": "Invalid permission value, only supports: READONLY, PRIVATE, ADMINWRITE, ADMINONLY",
|
|
980
|
+
"k_0733297b": "CloudBase AI Native Development",
|
|
981
|
+
"k_1d1c6e31": "Connect your AI development tools (such as Cursor, CodeBuddy) with the CloudBase platform through CloudBase MCP,",
|
|
982
|
+
"k_b05683bc": "enabling a new AI-native development experience. Describe requirements in natural language, and AI automatically completes the entire process from code generation to application deployment.",
|
|
983
|
+
"k_b8885f87": "The path specified by environment variable CLAUDE_CODE_GIT_BASH_PATH \"{{path}}\" does not exist, please check",
|
|
984
|
+
"k_86ff3d7b": "Claude Code on Windows requires git-bash (https://git-scm.com/downloads/win). If installed but not in PATH, please set the environment variable CLAUDE_CODE_GIT_BASH_PATH to point to your bash.exe, like: CLAUDE_CODE_GIT_BASH_PATH=C:\\Program Files\\Git\\bin\\bash.exe\nOr use WSL to run. For details, please read the official documentation {{link}}",
|
|
985
|
+
"k_cb274a97": "AI configuration not found, please run tcb ai --setup to configure",
|
|
986
|
+
"k_1a33aa47": "Failed to reset AI configuration, please manually delete AI configuration parts in `.env.local`, `cloudbaserc.json` files, or run tcb ai --setup again",
|
|
987
|
+
"k_42c799c8": "Not configured",
|
|
988
|
+
"k_08b23a84": "(default if empty)",
|
|
989
|
+
"k_e83a256e": "confirm",
|
|
990
|
+
"k_52e339a3": "Use arrow keys to select, press Enter to confirm",
|
|
991
|
+
"k_ffff15c3": "Environment {{envId}} does not match the current account, please reselect",
|
|
992
|
+
"k_269c7b88": "Environment {{envId}} is not available, please reselect",
|
|
993
|
+
"k_e4e35fc9": "Failed to update AI configuration: {{error}}",
|
|
994
|
+
"k_8dfdac86": "Failed to remove AI configuration: {{error}}",
|
|
995
|
+
"k_9cf680b8": "Default AI tool cannot be empty",
|
|
996
|
+
"k_6894eb69": "{{agentName}} must configure API Key",
|
|
997
|
+
"k_c8ecd31e": "{{agentName}} Base URL format is incorrect",
|
|
998
|
+
"k_6ed1b631": "Current Node.js version is {{current}}. Please upgrade to at least {{required}} version.",
|
|
999
|
+
"k_6a1737a6": "Invalid agent: {{agent}}",
|
|
1000
|
+
"k_a9cf6e59": "No AI CLI configuration detected, please run 'tcb ai --setup' to configure",
|
|
1001
|
+
"k_bb16508e": "{{agent}} configuration not found, please run tcb ai --setup to configure",
|
|
1002
|
+
"k_9e158783": "Starting {{agent}} AI CLI tool",
|
|
1003
|
+
"k_562d1871": "CloudBase functionality check failed, but AI tool can still be used normally",
|
|
1004
|
+
"k_c8dbeb59": "{{agent}} configuration is invalid, please reconfigure",
|
|
1005
|
+
"k_c4c3512e": "Template download skipped, CloudBase MCP and AI rules cannot be used. For usage, please refer to tcb pull --help",
|
|
1006
|
+
"k_399fb4df": "Download template for complete development experience: {{hint}}",
|
|
1007
|
+
"k_e67a69b0": "WeChat Mini Program + CloudBase",
|
|
1008
|
+
"k_4159a881": "Web App - React + CloudBase",
|
|
1009
|
+
"k_ce975f75": "Web App - Vue + CloudBase",
|
|
1010
|
+
"k_4243a59a": "Cross-platform App - UniApp + CloudBase",
|
|
1011
|
+
"k_b9d1f717": "Download AI rules and configuration only",
|
|
1012
|
+
"k_daa9a78e": "Do not download template",
|
|
1013
|
+
"k_2df8b835": "Skip template download",
|
|
1014
|
+
"k_43dd729e": "Downloading and extracting {{templateType}} template...",
|
|
1015
|
+
"k_e485fee3": "{{templateType}} template configuration completed",
|
|
1016
|
+
"k_c49495a4": "Configuration failed: {{error}}",
|
|
1017
|
+
"k_4a6fad3b": "Template download failed",
|
|
1018
|
+
"k_5b48cc61": "Unknown template type",
|
|
1019
|
+
"k_6b4aa885": "Download failed: {{statusCode}}",
|
|
1020
|
+
"k_ea8d2c73": "Skipping mismatched agent directory: {{entryPath}} (current agent: {{agent}})",
|
|
1021
|
+
"k_c85f23fa": "MCP configuration merge failed {{entryPath}}: {{error}}, skipped",
|
|
1022
|
+
"k_969afe94": "cloudbaserc.json merge failed, skipped: {{error}}",
|
|
1023
|
+
"k_8b6cea41": "Detected existing file {{entryPath}}, overwrite? {{hint}}",
|
|
1024
|
+
"k_e5896caa": "# Please refer to {{agent}} official installation documentation",
|
|
1025
|
+
"k_592c2887": "Command execution failed: {{command}} {{args}} (exit code: {{code}})",
|
|
1026
|
+
"k_9a4e8d9b": "{{errorMsg}}",
|
|
1027
|
+
"k_373470cb": "Command not found, please check if installed correctly",
|
|
1028
|
+
"k_e19e7ee1": "Installation command: {{installCmd}}",
|
|
1029
|
+
"k_9b5b7b3c": "May be parameter error or configuration issue",
|
|
1030
|
+
"k_eab185dc": "Please check if API key, model name and other configurations are correct",
|
|
1031
|
+
"k_a8b8d3ba": "Please go to {{logPath}} to view logs",
|
|
1032
|
+
"k_c04448ea": "Startup failed: {{command}} ({{error}})",
|
|
1033
|
+
"k_d46214da": "Command does not exist, please install the corresponding AI CLI tool first",
|
|
1034
|
+
"k_9966f70f": "Insufficient permissions, please check file permissions or use administrator privileges",
|
|
1035
|
+
"k_da685384": "Agent configuration is empty",
|
|
1036
|
+
"k_3862e1a2": "Agent configuration validation passed",
|
|
1037
|
+
"k_b79d70a2": "{{agent}} configuration is invalid: {{error}}",
|
|
1038
|
+
"k_6e242f2e": "Unsupported AI tool: {{agent}}",
|
|
1039
|
+
"k_030183e3": "Failed to get CloudBase Access Token, please run tcb login and try again, {{token}}",
|
|
1040
|
+
"k_16f64d62": "Failed to execute ccr restart, trying ccr stop && ccr start",
|
|
1041
|
+
"k_f406f2ba": "ccr restart failed, please go to {{logPath}} to view logs",
|
|
1042
|
+
"k_33287eac": "{{current}}/{{max}} Waiting for ccr restart to complete...",
|
|
1043
|
+
"k_296c8c98": "ccr restart completed",
|
|
1044
|
+
"k_513063c1": "claude-code-router configuration is empty, writing CloudBase configuration...",
|
|
1045
|
+
"k_1a5cfee0": "claude-code-router configuration completed",
|
|
1046
|
+
"k_530eaa71": "claude-code-router configuration file is not valid JSON, overwrite? {{hint}}",
|
|
1047
|
+
"k_77798e68": "claude-code-router configuration file is not valid JSON, please fix manually",
|
|
1048
|
+
"k_57fc6584": "Unknown claude-code-router configuration file format, please fix manually",
|
|
1049
|
+
"k_b790a9dc": "claude-code-router configuration file Providers field is not array type, please fix manually",
|
|
1050
|
+
"k_bb1592db": "claude code router is installed!",
|
|
1051
|
+
"k_f5a338fe": "AI development is missing claude code router dependency, install? {{hint}}",
|
|
1052
|
+
"k_42c76529": "claude-code-router installation completed",
|
|
1053
|
+
"k_11c745ca": "claude code router is not installed, please install manually",
|
|
1054
|
+
"k_b6dc7a18": "claude code is installed!",
|
|
1055
|
+
"k_f7eb5ba2": "AI development is missing claude code dependency, install? {{hint}}",
|
|
1056
|
+
"k_4bd7401f": "curl installation failed, trying npm installation...",
|
|
1057
|
+
"k_aae4598d": "claude code installation failed",
|
|
1058
|
+
"k_988ed149": "Please install claude code manually:",
|
|
1059
|
+
"k_5c55930c": "Installation documentation: {{link}}",
|
|
1060
|
+
"k_570e17d3": "claude code installation completed",
|
|
1061
|
+
"k_d858a45b": "claude code is not installed, please install manually",
|
|
1062
|
+
"k_36aee20d": "qwen code is installed!",
|
|
1063
|
+
"k_073c6530": "AI development is missing qwen code dependency, install? {{hint}}",
|
|
1064
|
+
"k_787037cb": "qwen code installation completed",
|
|
1065
|
+
"k_2eded9d6": "qwen code is not installed, please install manually",
|
|
1066
|
+
"k_7018328c": "Cursor CLI is installed!",
|
|
1067
|
+
"k_3102481a": "AI development is missing Cursor CLI dependency, install? {{hint}}",
|
|
1068
|
+
"k_b23fc0cc": "Installing Cursor CLI...",
|
|
1069
|
+
"k_55621b37": "Cursor CLI installation completed",
|
|
1070
|
+
"k_ebdc43e1": "Cursor CLI is not installed, please install manually",
|
|
1071
|
+
"k_112739fa": "codex is installed!",
|
|
1072
|
+
"k_f177896c": "AI development is missing codex dependency, install? {{hint}}",
|
|
1073
|
+
"k_2896f1b8": "codex installation completed",
|
|
1074
|
+
"k_ab80b5b9": "codex is not installed, please install manually",
|
|
1075
|
+
"k_7b23757f": "aider is installed!",
|
|
1076
|
+
"k_0363aef6": "AI development is missing aider dependency, install? {{hint}}",
|
|
1077
|
+
"k_d22a2e9a": "Installing aider...",
|
|
1078
|
+
"k_93d2414e": "aider installation completed",
|
|
1079
|
+
"k_aab16408": "aider is not installed, please install manually",
|
|
1080
|
+
"k_3ccbe296": "Modifying MCP configuration files...",
|
|
1081
|
+
"k_ef495b65": "MCP configuration file modification completed",
|
|
1082
|
+
"k_cb672f4c": "MCP configuration file modification failed: {{error}}",
|
|
1083
|
+
"k_cb4d58e2": "Modified configuration file {{filePath}}: npx -> cloudbase-mcp",
|
|
1084
|
+
"k_be16dfea": "Modified {{filePath}}",
|
|
1085
|
+
"k_1c027c9d": "Failed to modify configuration file {{filePath}}: {{error}}",
|
|
1086
|
+
"k_85eb63ac": "codebuddy is installed!",
|
|
1087
|
+
"k_177a3bcb": "AI development is missing codebuddy dependency, install it? {{hint}}",
|
|
1088
|
+
"k_75deee8c": "codebuddy installation completed",
|
|
1089
|
+
"k_e3d95e2f": "codebuddy not installed, please install manually",
|
|
1090
|
+
"k_1979f561": "Installation command: npm install -g @tencent-ai/codebuddy-code",
|
|
1091
|
+
"k_bc92a673": "Select default AI CLI tool to use:",
|
|
1092
|
+
"k_b6ba4051": "AI configuration completed! Configuration saved to .env.local file",
|
|
1093
|
+
"k_e4b806de": "Tip: Please ensure .env.local file is added to .gitignore to protect sensitive information",
|
|
1094
|
+
"k_03171529": "You can now use the tcb ai command!",
|
|
1095
|
+
"k_c1f774ee": "Configuration wizard execution failed",
|
|
1096
|
+
"k_dca1b92a": "Using provided envId {{envId}}",
|
|
1097
|
+
"k_975fbfa2": "No envId provided, getting from cloudbaserc.json",
|
|
1098
|
+
"k_0a690ab7": "No envId configuration in cloudbaserc.json!",
|
|
1099
|
+
"k_d6ba5b3a": "Selected envId: {{envId}}",
|
|
1100
|
+
"k_a75d977c": "Using envId from cloudbaserc.json: {{envId}}",
|
|
1101
|
+
"k_3c1f221b": "Current envId is {{envId}}, do you need to update? {{hint}}",
|
|
1102
|
+
"k_1d15bd79": "No configured AI tools, please run tcb ai --setup to configure first",
|
|
1103
|
+
"k_74ae055e": "Auto-selected the only configured AI tool: {{agentName}}",
|
|
1104
|
+
"k_674e3b0b": "Select default AI CLI tool to use: {{hint}}",
|
|
1105
|
+
"k_31afb562": "Select AI CLI tool to configure:",
|
|
1106
|
+
"k_819d69aa": "Configuration instructions:",
|
|
1107
|
+
"k_6de0e73e": "• This configuration only takes effect in CloudBase AI CLI",
|
|
1108
|
+
"k_78e61cb7": "• Will not modify the original configuration of AI tools already installed in your system",
|
|
1109
|
+
"k_7613cae7": "• Configuration files will be saved in the current project directory (.env.local, etc.)",
|
|
1110
|
+
"k_3df94710": "• You can reset configuration anytime with tcb ai --reset",
|
|
1111
|
+
"k_12d829df": "\nConfiguring {{agentName}}:",
|
|
1112
|
+
"k_5adb3381": "Configuration instructions can be found at {{link}}",
|
|
1113
|
+
"k_8eb90290": "Select configuration method: {{hint}}",
|
|
1114
|
+
"k_514bac5a": "Use CloudBase service, one-click login, no configuration needed",
|
|
1115
|
+
"k_f59fdfb0": "Self-configure API KEY and Base URL, requires large model supporting Anthropic protocol",
|
|
1116
|
+
"k_d6f7af63": "Not configured for now, use Claude Code built-in authentication (such as OAuth)",
|
|
1117
|
+
"k_144060df": "Select API Base URL: {{hint}}",
|
|
1118
|
+
"k_7f567eea": "Zhipu",
|
|
1119
|
+
"k_af74ee33": "Custom URL",
|
|
1120
|
+
"k_0f7fb5f8": "Please enter custom API Base URL:",
|
|
1121
|
+
"k_40e8fe3c": "Please enter a valid Base URL",
|
|
1122
|
+
"k_e8d02420": "Please enter a valid Auth Token",
|
|
1123
|
+
"k_ce3f227f": "Model name:",
|
|
1124
|
+
"k_2dc4707f": "Please enter a valid model name",
|
|
1125
|
+
"k_4ea5850f": "Self-configure API KEY and Base URL",
|
|
1126
|
+
"k_693d89e0": "Not configured for now, use Qwen Code built-in authentication (such as OAuth)",
|
|
1127
|
+
"k_90bb667b": "API Base URL (leave empty for default):",
|
|
1128
|
+
"k_a53d4822": "Please enter a valid API Key",
|
|
1129
|
+
"k_9cb4187a": "Model name (leave empty for default):",
|
|
1130
|
+
"k_723dcaec": "Not configured for now, use OpenAI Codex built-in authentication (such as OAuth)",
|
|
1131
|
+
"k_251c76e4": "API Key:",
|
|
1132
|
+
"k_e1e8cd6c": "Select large model provider: {{hint}}",
|
|
1133
|
+
"k_8e74eb00": "Please enter custom provider name:",
|
|
1134
|
+
"k_de8c2a4b": "Provider name cannot be empty",
|
|
1135
|
+
"k_15d2f351": "Please enter model name:",
|
|
1136
|
+
"k_dd368b83": "Model name cannot be empty",
|
|
1137
|
+
"k_890306fb": "Select model: {{hint}}",
|
|
1138
|
+
"k_c31ccdc6": "Please enter custom model name:",
|
|
1139
|
+
"k_7eb80889": "Login with CodeBuddy account",
|
|
1140
|
+
"k_ff79303c": "Configure CodeBuddy API KEY (for non-interactive environments)",
|
|
1141
|
+
"k_fff03da5": "CodeBuddy Code configuration completed",
|
|
1142
|
+
"k_2ab79761": "Tip: Browser will automatically open for OAuth authentication on first use",
|
|
1143
|
+
"k_ed1ebe8d": "Service List",
|
|
1144
|
+
"k_c10d265a": "Create Service",
|
|
1145
|
+
"k_a4ef01a0": "Delete Service",
|
|
1146
|
+
"k_7669d5bf": "Version List",
|
|
1147
|
+
"k_305445c8": "Create Version",
|
|
1148
|
+
"k_5cc594b0": "Allocate Traffic",
|
|
1149
|
+
"k_196ac100": "Rolling Update",
|
|
1150
|
+
"k_859406a7": "Delete Version",
|
|
1151
|
+
"k_5d198484": "View Images",
|
|
1152
|
+
"k_98188006": "Upload Image",
|
|
1153
|
+
"k_22659ffa": "Download Image",
|
|
1154
|
+
"k_0306ea19": "Delete Image",
|
|
1155
|
+
"k_66bcb486": "View Environment Services",
|
|
1156
|
+
"k_d1f10d6c": "Create Cloud Run Service",
|
|
1157
|
+
"k_a4f95389": "Update Cloud Run Service",
|
|
1158
|
+
"k_a6cbda53": "Update Service Basic Configuration",
|
|
1159
|
+
"k_cbf0933c": "Please use -e or --envId to specify environment ID",
|
|
1160
|
+
"k_51a1bbc5": "Unable to read valid environment information, please check if the environment ID is correct\nrequestId: {{requestId}}",
|
|
1161
|
+
"k_2e70846f": "Current capability does not support {{envId}} environment, please use the following operation set: {{cmdSet}}",
|
|
1162
|
+
"k_4ed70958": "List data is empty",
|
|
1163
|
+
"k_0af836fb": "Maximum replica count must be greater than or equal to 0 and less than or equal to 50",
|
|
1164
|
+
"k_0440fb29": "Minimum replica count must be greater than or equal to 0 and less than or equal to 50",
|
|
1165
|
+
"k_5ef53b65": "Minimum replica count cannot be greater than maximum replica count",
|
|
1166
|
+
"k_691c6771": "\nFailed to write log: {{error}}",
|
|
1167
|
+
"k_cb17b4e2": "Data Model",
|
|
1168
|
+
"k_7ab0cd3c": "Associated {{title}} object",
|
|
1169
|
+
"k_fb1daccc": "_compile error: {{error}}",
|
|
1170
|
+
"k_859d611c": "The environment ID {{envId}} you specified does not exist, please specify the correct environment ID!",
|
|
1171
|
+
"k_823ac66d": "Please select associated environment",
|
|
1172
|
+
"k_3b762bdd": "Please select environment region",
|
|
1173
|
+
"k_c392e1c4": "Path does not exist: {{path}}",
|
|
1174
|
+
"k_2c22f5ad": "Path has no read/write permissions: {{path}}",
|
|
1175
|
+
"k_dcec9b6a": "Path does not exist or no permission to access: {{path}}",
|
|
1176
|
+
"k_4e218635": "Function code packaging failed:\n {{error}}",
|
|
1177
|
+
"k_8ea00d25": "Checking file: {{filePath}}",
|
|
1178
|
+
"k_8fbe9cc3": "Found MCP configuration file: {{filePath}}",
|
|
1179
|
+
"k_17f86510": "File does not exist: {{filePath}}",
|
|
1180
|
+
"k_a557157f": "MCP configuration file modification failed: {{error}}",
|
|
1181
|
+
"k_35ca9a0e": "Reading configuration file {{filePath}}: {{config}}",
|
|
1182
|
+
"k_abc853e4": "Check command",
|
|
1183
|
+
"k_27b78fc1": "Matched command that needs modification: {{argsStr}}",
|
|
1184
|
+
"k_2ebdb2a4": "Modify configuration file",
|
|
1185
|
+
"k_293380bd": "Command does not match modification conditions: {{argsStr}}",
|
|
1186
|
+
"k_53de259b": "Configuration file {{filePath}} was not modified",
|
|
1187
|
+
"k_49834066": "Failed to modify configuration file {{filePath}}: {{error}}",
|
|
1188
|
+
"k_2b689f7b": "Modified",
|
|
1189
|
+
"k_5bb745d9": "Failed to modify configuration file {{filePath}}: {{errorMessage}}",
|
|
1190
|
+
"k_391e0753": "Request timeout, please check your network. If the terminal cannot directly access the public network, please set up terminal HTTP request proxy!",
|
|
1191
|
+
"k_f55a63f1": "File transfer in progress [:bar] :percent :etas",
|
|
1192
|
+
"k_b4e1b508": "Next Page",
|
|
1193
|
+
"k_c7e05339": "List has no data",
|
|
1194
|
+
"k_55bf1526": "This is your CloudBase identity credential file, please do not share it with others!",
|
|
1195
|
+
"k_c7fcdf7a": "You do not have permission to perform this operation, please check CAM policy\n",
|
|
1196
|
+
"k_439845b8": "WeChat Mini Program",
|
|
1197
|
+
"k_298d7b8b": "Web Application",
|
|
1198
|
+
"k_123f8019": "Cross-platform Application",
|
|
1199
|
+
"k_87f1f478": "AI Rules and Configuration",
|
|
1200
|
+
"k_0e5af635": "Unsupported template source: {{source}}",
|
|
1201
|
+
"k_31dbc211": "Template pull completed: {{targetPath}}",
|
|
1202
|
+
"k_e9049925": "Unable to parse Git URL: {{url}}",
|
|
1203
|
+
"k_fd5a3c2d": "Unsupported Git platform: {{platform}}",
|
|
1204
|
+
"k_d51bf56e": "Subdirectory does not exist: {{subpath}}",
|
|
1205
|
+
"k_49bffb57": "Failed to clone subdirectory: {{error}}",
|
|
1206
|
+
"k_61c40cdb": "Unknown built-in template: {{templateId}}",
|
|
1207
|
+
"k_e3eca24b": "Downloading {{templateName}} template to temporary directory...",
|
|
1208
|
+
"k_c7cdcdc9": "{{templateName}} template download completed to temporary directory",
|
|
1209
|
+
"k_31cfda2e": "Failed to download built-in template: {{error}}",
|
|
1210
|
+
"k_6d5541cd": "Downloading zip file template to temporary directory: {{zipUrl}}",
|
|
1211
|
+
"k_660961b8": "Zip file template download completed to temporary directory",
|
|
1212
|
+
"k_113638c7": "Failed to download zip file template: {{error}}",
|
|
1213
|
+
"k_0c500b82": "Downloading template from {{platform}} to temporary directory...",
|
|
1214
|
+
"k_1c37bb33": "Git template download completed to temporary directory",
|
|
1215
|
+
"k_d19795b8": "Git template download failed: {{error}}",
|
|
1216
|
+
"k_d52fabed": "Copying from temporary directory to target directory {{targetPath}}...",
|
|
1217
|
+
"k_18f9ad3a": "Using --force parameter will overwrite existing files in the target directory",
|
|
1218
|
+
"k_5935f7b8": "Target directory is not empty, will skip existing files and only copy new files",
|
|
1219
|
+
"k_6a24c43c": "Template copy completed",
|
|
1220
|
+
"k_10a131d0": "Starting to call MCP configuration modifier...",
|
|
1221
|
+
"k_2abbf8e9": "MCP configuration modifier call completed",
|
|
1222
|
+
"k_9f998204": "MCP configuration modification failed: {{error}}",
|
|
1223
|
+
"k_80887df1": "Failed to copy template: {{error}}",
|
|
1224
|
+
"k_6fa9f88f": "Copy failed: {{path}} - {{error}}",
|
|
1225
|
+
"k_7ea24f56": "Copy statistics: {{copiedCount}} new files copied, {{overwrittenCount}} files overwritten",
|
|
1226
|
+
"k_93dc62bc": "Copy statistics: {{copiedCount}} files copied, {{skippedCount}} files skipped",
|
|
1227
|
+
"k_d89a8d5a": "Getting application template list",
|
|
1228
|
+
"k_4741e6d9": "Please select application template",
|
|
1229
|
+
"k_2e2d6bd0": "Template `{{template}}` does not exist",
|
|
1230
|
+
"k_931dfd44": "Folder with same name already exists: {{name}}, do you want to overwrite?",
|
|
1231
|
+
"k_1167307b": "Download failed, status code: {{status}}",
|
|
1232
|
+
"k_45a7775f": "No data stream in download response",
|
|
1233
|
+
"k_0133139e": "CPU and memory specifications do not match. Current specifications: cpu: {{cpu}}, mem: {{mem}}\nPlease use one of the following specification combinations: {{options}}",
|
|
1234
|
+
"k_f092830e": "Current CPU specification is not supported, please use one of the following CPU specifications: {{options}}",
|
|
1235
|
+
"k_39ef45b3": "Current memory specification is not supported, please use one of the following memory specifications: {{options}}"
|
|
1236
|
+
}
|