@nexusclawhq/cli 0.3.20 → 0.3.22
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/CHANGELOG.md +21 -0
- package/dist/build-info.json +4 -4
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/index.d.ts +1 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/index.js +1 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/index.js.map +1 -1
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.d.ts +21 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.js +21 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.js.map +1 -1
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/index.d.ts +42 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.d.ts +21 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.js +21 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.js.map +1 -1
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/system-object-persistence.d.ts +21 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/system-object-persistence.js +29 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/system-object-persistence.js.map +1 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/package.json +4 -0
- package/dist/nexus-cli/src/cli.js +2 -0
- package/dist/nexus-cli/src/cli.js.map +1 -1
- package/dist/nexus-cli/src/commands/commands.test.js +3 -3
- package/dist/nexus-cli/src/commands/commands.test.js.map +1 -1
- package/dist/nexus-cli/src/commands/data/query.d.ts +7 -0
- package/dist/nexus-cli/src/commands/data/query.js +29 -9
- package/dist/nexus-cli/src/commands/data/query.js.map +1 -1
- package/dist/nexus-cli/src/commands/data/query.test.d.ts +1 -0
- package/dist/nexus-cli/src/commands/data/query.test.js +31 -0
- package/dist/nexus-cli/src/commands/data/query.test.js.map +1 -0
- package/dist/nexus-cli/src/commands/deployment/history.test.d.ts +1 -0
- package/dist/nexus-cli/src/commands/deployment/history.test.js +16 -0
- package/dist/nexus-cli/src/commands/deployment/history.test.js.map +1 -0
- package/dist/nexus-cli/src/commands/deployment/index.d.ts +4 -0
- package/dist/nexus-cli/src/commands/deployment/index.js +16 -3
- package/dist/nexus-cli/src/commands/deployment/index.js.map +1 -1
- package/dist/nexus-cli/src/commands/deployment/report.d.ts +1 -0
- package/dist/nexus-cli/src/commands/deployment/report.js +16 -35
- package/dist/nexus-cli/src/commands/deployment/report.js.map +1 -1
- package/dist/nexus-cli/src/commands/deployment/report.test.d.ts +1 -0
- package/dist/nexus-cli/src/commands/deployment/report.test.js +14 -0
- package/dist/nexus-cli/src/commands/deployment/report.test.js.map +1 -0
- package/dist/nexus-cli/src/commands/deployment/resume.js +16 -2
- package/dist/nexus-cli/src/commands/deployment/resume.js.map +1 -1
- package/dist/nexus-cli/src/commands/dx-json-option.test.d.ts +1 -0
- package/dist/nexus-cli/src/commands/dx-json-option.test.js +39 -0
- package/dist/nexus-cli/src/commands/dx-json-option.test.js.map +1 -0
- package/dist/nexus-cli/src/commands/dx-workflows.e2e.test.js +33 -0
- package/dist/nexus-cli/src/commands/dx-workflows.e2e.test.js.map +1 -1
- package/dist/nexus-cli/src/commands/dx.js +193 -10
- package/dist/nexus-cli/src/commands/dx.js.map +1 -1
- package/dist/nexus-cli/src/commands/employee/deploy.e2e.test.js +29 -0
- package/dist/nexus-cli/src/commands/employee/deploy.e2e.test.js.map +1 -1
- package/dist/nexus-cli/src/commands/employee/deploy.js +6 -2
- package/dist/nexus-cli/src/commands/employee/deploy.js.map +1 -1
- package/dist/nexus-cli/src/commands/generate/class.js +6 -1
- package/dist/nexus-cli/src/commands/generate/class.js.map +1 -1
- package/dist/nexus-cli/src/commands/generate/component.js +6 -1
- package/dist/nexus-cli/src/commands/generate/component.js.map +1 -1
- package/dist/nexus-cli/src/commands/generate/generate-result.d.ts +6 -0
- package/dist/nexus-cli/src/commands/generate/generate-result.js +52 -0
- package/dist/nexus-cli/src/commands/generate/generate-result.js.map +1 -0
- package/dist/nexus-cli/src/commands/generate/project.js +6 -0
- package/dist/nexus-cli/src/commands/generate/project.js.map +1 -1
- package/dist/nexus-cli/src/commands/generate/test.js +6 -1
- package/dist/nexus-cli/src/commands/generate/test.js.map +1 -1
- package/dist/nexus-cli/src/commands/generate/trigger.js +6 -1
- package/dist/nexus-cli/src/commands/generate/trigger.js.map +1 -1
- package/dist/nexus-cli/src/commands/log/get.js +11 -6
- package/dist/nexus-cli/src/commands/log/get.js.map +1 -1
- package/dist/nexus-cli/src/commands/log/list.js +15 -11
- package/dist/nexus-cli/src/commands/log/list.js.map +1 -1
- package/dist/nexus-cli/src/commands/log-sandbox-contract.test.d.ts +1 -0
- package/dist/nexus-cli/src/commands/log-sandbox-contract.test.js +25 -0
- package/dist/nexus-cli/src/commands/log-sandbox-contract.test.js.map +1 -0
- package/dist/nexus-cli/src/commands/machine-json-surface.test.d.ts +1 -0
- package/dist/nexus-cli/src/commands/machine-json-surface.test.js +67 -0
- package/dist/nexus-cli/src/commands/machine-json-surface.test.js.map +1 -0
- package/dist/nexus-cli/src/commands/metadata/diff.js +31 -4
- package/dist/nexus-cli/src/commands/metadata/diff.js.map +1 -1
- package/dist/nexus-cli/src/commands/metadata/export.e2e.test.js +25 -19
- package/dist/nexus-cli/src/commands/metadata/export.e2e.test.js.map +1 -1
- package/dist/nexus-cli/src/commands/metadata/export.js +36 -5
- package/dist/nexus-cli/src/commands/metadata/export.js.map +1 -1
- package/dist/nexus-cli/src/commands/metadata/validate-source.d.ts +4 -0
- package/dist/nexus-cli/src/commands/metadata/validate-source.js +31 -2
- package/dist/nexus-cli/src/commands/metadata/validate-source.js.map +1 -1
- package/dist/nexus-cli/src/commands/metadata/validate-source.test.d.ts +1 -0
- package/dist/nexus-cli/src/commands/metadata/validate-source.test.js +23 -0
- package/dist/nexus-cli/src/commands/metadata/validate-source.test.js.map +1 -0
- package/dist/nexus-cli/src/commands/org/display.js +3 -3
- package/dist/nexus-cli/src/commands/org/display.js.map +1 -1
- package/dist/nexus-cli/src/commands/org/list.js +4 -2
- package/dist/nexus-cli/src/commands/org/list.js.map +1 -1
- package/dist/nexus-cli/src/commands/org/login-web.d.ts +7 -0
- package/dist/nexus-cli/src/commands/org/login-web.js +43 -7
- package/dist/nexus-cli/src/commands/org/login-web.js.map +1 -1
- package/dist/nexus-cli/src/commands/org/login-web.test.js +21 -0
- package/dist/nexus-cli/src/commands/org/login-web.test.js.map +1 -1
- package/dist/nexus-cli/src/commands/org/open.d.ts +1 -0
- package/dist/nexus-cli/src/commands/org/open.js +8 -2
- package/dist/nexus-cli/src/commands/org/open.js.map +1 -1
- package/dist/nexus-cli/src/commands/org/open.test.d.ts +1 -0
- package/dist/nexus-cli/src/commands/org/open.test.js +16 -0
- package/dist/nexus-cli/src/commands/org/open.test.js.map +1 -0
- package/dist/nexus-cli/src/commands/package/history.js +9 -3
- package/dist/nexus-cli/src/commands/package/history.js.map +1 -1
- package/dist/nexus-cli/src/commands/package/install.js +1 -0
- package/dist/nexus-cli/src/commands/package/install.js.map +1 -1
- package/dist/nexus-cli/src/commands/package/list.js +7 -4
- package/dist/nexus-cli/src/commands/package/list.js.map +1 -1
- package/dist/nexus-cli/src/commands/package/list.test.d.ts +1 -0
- package/dist/nexus-cli/src/commands/package/list.test.js +33 -0
- package/dist/nexus-cli/src/commands/package/list.test.js.map +1 -0
- package/dist/nexus-cli/src/commands/project/index.js +5 -3
- package/dist/nexus-cli/src/commands/project/index.js.map +1 -1
- package/dist/nexus-cli/src/commands/revision/history.js +4 -2
- package/dist/nexus-cli/src/commands/revision/history.js.map +1 -1
- package/dist/nexus-cli/src/commands/sandbox/list.js +4 -5
- package/dist/nexus-cli/src/commands/sandbox/list.js.map +1 -1
- package/dist/nexus-cli/src/commands/source/pull-baseline.test.d.ts +1 -0
- package/dist/nexus-cli/src/commands/source/pull-baseline.test.js +60 -0
- package/dist/nexus-cli/src/commands/source/pull-baseline.test.js.map +1 -0
- package/dist/nexus-cli/src/commands/source/pull.d.ts +7 -0
- package/dist/nexus-cli/src/commands/source/pull.js +32 -5
- package/dist/nexus-cli/src/commands/source/pull.js.map +1 -1
- package/dist/nexus-cli/src/commands/user/index.d.ts +2 -0
- package/dist/nexus-cli/src/commands/user/index.js +14 -0
- package/dist/nexus-cli/src/commands/user/index.js.map +1 -0
- package/dist/nexus-cli/src/commands/user/service-account.d.ts +2 -0
- package/dist/nexus-cli/src/commands/user/service-account.js +30 -0
- package/dist/nexus-cli/src/commands/user/service-account.js.map +1 -0
- package/dist/nexus-cli/src/commands/workforce/agent.d.ts +2 -0
- package/dist/nexus-cli/src/commands/workforce/agent.js +50 -0
- package/dist/nexus-cli/src/commands/workforce/agent.js.map +1 -0
- package/dist/nexus-cli/src/commands/workforce/escalation.d.ts +2 -0
- package/dist/nexus-cli/src/commands/workforce/escalation.js +62 -0
- package/dist/nexus-cli/src/commands/workforce/escalation.js.map +1 -0
- package/dist/nexus-cli/src/commands/workforce/index.js +6 -0
- package/dist/nexus-cli/src/commands/workforce/index.js.map +1 -1
- package/dist/nexus-cli/src/commands/workforce/knowledge.js +5 -0
- package/dist/nexus-cli/src/commands/workforce/knowledge.js.map +1 -1
- package/dist/nexus-cli/src/commands/workforce/notification.d.ts +2 -0
- package/dist/nexus-cli/src/commands/workforce/notification.js +71 -0
- package/dist/nexus-cli/src/commands/workforce/notification.js.map +1 -0
- package/dist/nexus-cli/src/commands/workforce/task.js +55 -4
- package/dist/nexus-cli/src/commands/workforce/task.js.map +1 -1
- package/dist/nexus-cli/src/commands/workspace/index.js +5 -2
- package/dist/nexus-cli/src/commands/workspace/index.js.map +1 -1
- package/dist/nexus-cli/src/commands/workspace/workspace.e2e.test.js +4 -4
- package/dist/nexus-cli/src/commands/workspace/workspace.e2e.test.js.map +1 -1
- package/dist/nexus-cli/src/services/api-client.d.ts +9 -0
- package/dist/nexus-cli/src/services/api-client.js +99 -11
- package/dist/nexus-cli/src/services/api-client.js.map +1 -1
- package/dist/nexus-cli/src/services/api-client.test.js +118 -8
- package/dist/nexus-cli/src/services/api-client.test.js.map +1 -1
- package/dist/nexus-cli/src/services/auth-store.d.ts +3 -0
- package/dist/nexus-cli/src/services/auth-store.js +24 -0
- package/dist/nexus-cli/src/services/auth-store.js.map +1 -1
- package/dist/nexus-cli/src/services/auth-store.test.js +19 -0
- package/dist/nexus-cli/src/services/auth-store.test.js.map +1 -1
- package/dist/nexus-cli/src/services/pack-registry.js +7 -0
- package/dist/nexus-cli/src/services/pack-registry.js.map +1 -1
- package/dist/nexus-cli/src/services/package-manifest.d.ts +5 -0
- package/dist/nexus-cli/src/services/package-manifest.js +35 -0
- package/dist/nexus-cli/src/services/package-manifest.js.map +1 -1
- package/dist/nexus-cli/src/services/package-manifest.test.d.ts +1 -0
- package/dist/nexus-cli/src/services/package-manifest.test.js +48 -0
- package/dist/nexus-cli/src/services/package-manifest.test.js.map +1 -0
- package/dist/nexus-cli/src/services/user-service-account-remote.d.ts +14 -0
- package/dist/nexus-cli/src/services/user-service-account-remote.js +58 -0
- package/dist/nexus-cli/src/services/user-service-account-remote.js.map +1 -0
- package/dist/nexus-cli/src/services/user-service-account-remote.test.d.ts +1 -0
- package/dist/nexus-cli/src/services/user-service-account-remote.test.js +78 -0
- package/dist/nexus-cli/src/services/user-service-account-remote.test.js.map +1 -0
- package/dist/nexus-cli/src/services/workforce-agent-remote.d.ts +27 -0
- package/dist/nexus-cli/src/services/workforce-agent-remote.js +40 -0
- package/dist/nexus-cli/src/services/workforce-agent-remote.js.map +1 -0
- package/dist/nexus-cli/src/services/workforce-conversation-remote.d.ts +52 -0
- package/dist/nexus-cli/src/services/workforce-conversation-remote.js +119 -0
- package/dist/nexus-cli/src/services/workforce-conversation-remote.js.map +1 -0
- package/dist/nexus-cli/src/services/workforce-conversation-remote.test.d.ts +1 -0
- package/dist/nexus-cli/src/services/workforce-conversation-remote.test.js +115 -0
- package/dist/nexus-cli/src/services/workforce-conversation-remote.test.js.map +1 -0
- package/dist/nexus-cli/src/services/workforce-guardrail-knowledge-remote.d.ts +17 -0
- package/dist/nexus-cli/src/services/workforce-guardrail-knowledge-remote.js +10 -0
- package/dist/nexus-cli/src/services/workforce-guardrail-knowledge-remote.js.map +1 -1
- package/dist/nexus-cli/src/services/workforce-guardrail-knowledge-remote.test.d.ts +1 -0
- package/dist/nexus-cli/src/services/workforce-guardrail-knowledge-remote.test.js +65 -0
- package/dist/nexus-cli/src/services/workforce-guardrail-knowledge-remote.test.js.map +1 -0
- package/dist/nexus-cli/src/services/workforce-notification-remote.d.ts +61 -0
- package/dist/nexus-cli/src/services/workforce-notification-remote.js +87 -0
- package/dist/nexus-cli/src/services/workforce-notification-remote.js.map +1 -0
- package/dist/nexus-cli/src/services/workforce-notification-remote.test.d.ts +1 -0
- package/dist/nexus-cli/src/services/workforce-notification-remote.test.js +78 -0
- package/dist/nexus-cli/src/services/workforce-notification-remote.test.js.map +1 -0
- package/dist/nexus-cli/src/services/workforce-orchestration-remote.d.ts +6 -0
- package/dist/nexus-cli/src/services/workforce-orchestration-remote.js +23 -12
- package/dist/nexus-cli/src/services/workforce-orchestration-remote.js.map +1 -1
- package/dist/nexus-cli/src/services/workforce-orchestration-remote.test.d.ts +1 -0
- package/dist/nexus-cli/src/services/workforce-orchestration-remote.test.js +18 -0
- package/dist/nexus-cli/src/services/workforce-orchestration-remote.test.js.map +1 -0
- package/dist/nexus-cli/src/services/workforce-test-remote.d.ts +1 -1
- package/dist/nexus-cli/src/services/workforce-test-remote.js +19 -2
- package/dist/nexus-cli/src/services/workforce-test-remote.js.map +1 -1
- package/dist/nexus-cli/src/services/workforce-test-remote.test.js +7 -1
- package/dist/nexus-cli/src/services/workforce-test-remote.test.js.map +1 -1
- package/dist/nexus-cli/src/services/workspace-health.js +6 -0
- package/dist/nexus-cli/src/services/workspace-health.js.map +1 -1
- package/dist/nexus-cli/src/services/workspace-health.test.js +65 -0
- package/dist/nexus-cli/src/services/workspace-health.test.js.map +1 -1
- package/dist/nexus-cli/src/templates/project/templates/base-crm/package.json.tpl +0 -3
- package/dist/nexus-cli/src/templates/project/templates/base-crm/src-index.ts.tpl +2 -0
- package/dist/nexus-cli/src/templates/project/templates/base-crm/tsconfig.json.tpl +2 -2
- package/dist/nexus-cli/src/templates/project/templates/demo-public-channel-store-delivery/package.json.tpl +0 -3
- package/dist/nexus-cli/src/templates/project/templates/demo-public-channel-store-delivery/src-index.ts.tpl +2 -0
- package/dist/nexus-cli/src/templates/project/templates/demo-public-channel-store-delivery/tsconfig.json.tpl +2 -2
- package/dist/nexus-cli/src/templates/project/templates/drill-code-extension-page/package.json.tpl +0 -3
- package/dist/nexus-cli/src/templates/project/templates/drill-code-extension-page/src-index.ts.tpl +2 -0
- package/dist/nexus-cli/src/templates/project/templates/drill-code-extension-page/tsconfig.json.tpl +2 -2
- package/dist/nexus-cli/src/templates/project/templates/empty/package.json.tpl +0 -3
- package/dist/nexus-cli/src/templates/project/templates/empty/src-index.ts.tpl +2 -0
- package/dist/nexus-cli/src/templates/project/templates/empty/tsconfig.json.tpl +2 -2
- package/dist/nexus-cli/src/templates/project/templates/executable-workforce/package.json.tpl +0 -3
- package/dist/nexus-cli/src/templates/project/templates/executable-workforce/src-index.ts.tpl +2 -0
- package/dist/nexus-cli/src/templates/project/templates/executable-workforce/tsconfig.json.tpl +1 -1
- package/dist/nexus-cli/src/templates/project/templates/industry-education/package.json.tpl +0 -3
- package/dist/nexus-cli/src/templates/project/templates/industry-education/src-index.ts.tpl +2 -0
- package/dist/nexus-cli/src/templates/project/templates/industry-education/tsconfig.json.tpl +2 -2
- package/dist/nexus-cli/src/templates/project/templates/industry-finance/package.json.tpl +0 -3
- package/dist/nexus-cli/src/templates/project/templates/industry-finance/src-index.ts.tpl +2 -0
- package/dist/nexus-cli/src/templates/project/templates/industry-finance/tsconfig.json.tpl +2 -2
- package/dist/nexus-cli/src/templates/project/templates/industry-healthcare/package.json.tpl +0 -3
- package/dist/nexus-cli/src/templates/project/templates/industry-healthcare/src-index.ts.tpl +2 -0
- package/dist/nexus-cli/src/templates/project/templates/industry-healthcare/tsconfig.json.tpl +2 -2
- package/dist/nexus-cli/src/templates/project/templates/industry-partner-cloud/package.json.tpl +0 -3
- package/dist/nexus-cli/src/templates/project/templates/industry-partner-cloud/src-index.ts.tpl +2 -0
- package/dist/nexus-cli/src/templates/project/templates/industry-partner-cloud/tsconfig.json.tpl +2 -2
- package/dist/nexus-cli/src/templates/project/templates/industry-retail/package.json.tpl +0 -3
- package/dist/nexus-cli/src/templates/project/templates/industry-retail/src-index.ts.tpl +2 -0
- package/dist/nexus-cli/src/templates/project/templates/industry-retail/tsconfig.json.tpl +2 -2
- package/dist/nexus-cli/src/utils/command-options.d.ts +8 -0
- package/dist/nexus-cli/src/utils/command-options.js +14 -0
- package/dist/nexus-cli/src/utils/command-options.js.map +1 -0
- package/dist/nexus-cli/src/utils/command-options.test.d.ts +1 -0
- package/dist/nexus-cli/src/utils/command-options.test.js +23 -0
- package/dist/nexus-cli/src/utils/command-options.test.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -13704,6 +13704,10 @@ export declare const locales: {
|
|
|
13704
13704
|
delegatedApproverPlaceholder: string;
|
|
13705
13705
|
federationIdPlaceholder: string;
|
|
13706
13706
|
accountActiveLabel: string;
|
|
13707
|
+
serviceAccountLabel: string;
|
|
13708
|
+
serviceAccountHelp: string;
|
|
13709
|
+
serviceAccountEnabled: string;
|
|
13710
|
+
serviceAccountEnableFailed: string;
|
|
13707
13711
|
switchEnabled: string;
|
|
13708
13712
|
switchDisabled: string;
|
|
13709
13713
|
};
|
|
@@ -15658,6 +15662,8 @@ export declare const locales: {
|
|
|
15658
15662
|
deny: string;
|
|
15659
15663
|
requestedPermissions: string;
|
|
15660
15664
|
requestsAccess: string;
|
|
15665
|
+
fullAccess: string;
|
|
15666
|
+
fullDxAccessDescription: string;
|
|
15661
15667
|
};
|
|
15662
15668
|
opportunityPage: {
|
|
15663
15669
|
basicInfo: string;
|
|
@@ -18986,6 +18992,21 @@ export declare const locales: {
|
|
|
18986
18992
|
description: string;
|
|
18987
18993
|
subscriptionSummary: string;
|
|
18988
18994
|
healthAndUsage: string;
|
|
18995
|
+
environmentTitle: string;
|
|
18996
|
+
environmentDescription: string;
|
|
18997
|
+
environmentCurrent: string;
|
|
18998
|
+
environmentChange: string;
|
|
18999
|
+
environmentTarget: string;
|
|
19000
|
+
environmentReason: string;
|
|
19001
|
+
environmentReasonPlaceholder: string;
|
|
19002
|
+
environmentReasonRequired: string;
|
|
19003
|
+
environmentWarning: string;
|
|
19004
|
+
environmentUpdateSuccess: string;
|
|
19005
|
+
environmentUpdateFailed: string;
|
|
19006
|
+
environmentLocal: string;
|
|
19007
|
+
environmentSandbox: string;
|
|
19008
|
+
environmentStaging: string;
|
|
19009
|
+
environmentProduction: string;
|
|
18989
19010
|
price: string;
|
|
18990
19011
|
currentStart: string;
|
|
18991
19012
|
currentEnd: string;
|
|
@@ -35751,6 +35772,10 @@ export declare const locales: {
|
|
|
35751
35772
|
delegatedApproverPlaceholder: string;
|
|
35752
35773
|
federationIdPlaceholder: string;
|
|
35753
35774
|
accountActiveLabel: string;
|
|
35775
|
+
serviceAccountLabel: string;
|
|
35776
|
+
serviceAccountHelp: string;
|
|
35777
|
+
serviceAccountEnabled: string;
|
|
35778
|
+
serviceAccountEnableFailed: string;
|
|
35754
35779
|
switchEnabled: string;
|
|
35755
35780
|
switchDisabled: string;
|
|
35756
35781
|
};
|
|
@@ -37705,6 +37730,8 @@ export declare const locales: {
|
|
|
37705
37730
|
deny: string;
|
|
37706
37731
|
requestedPermissions: string;
|
|
37707
37732
|
requestsAccess: string;
|
|
37733
|
+
fullAccess: string;
|
|
37734
|
+
fullDxAccessDescription: string;
|
|
37708
37735
|
};
|
|
37709
37736
|
opportunityPage: {
|
|
37710
37737
|
basicInfo: string;
|
|
@@ -41033,6 +41060,21 @@ export declare const locales: {
|
|
|
41033
41060
|
description: string;
|
|
41034
41061
|
subscriptionSummary: string;
|
|
41035
41062
|
healthAndUsage: string;
|
|
41063
|
+
environmentTitle: string;
|
|
41064
|
+
environmentDescription: string;
|
|
41065
|
+
environmentCurrent: string;
|
|
41066
|
+
environmentChange: string;
|
|
41067
|
+
environmentTarget: string;
|
|
41068
|
+
environmentReason: string;
|
|
41069
|
+
environmentReasonPlaceholder: string;
|
|
41070
|
+
environmentReasonRequired: string;
|
|
41071
|
+
environmentWarning: string;
|
|
41072
|
+
environmentUpdateSuccess: string;
|
|
41073
|
+
environmentUpdateFailed: string;
|
|
41074
|
+
environmentLocal: string;
|
|
41075
|
+
environmentSandbox: string;
|
|
41076
|
+
environmentStaging: string;
|
|
41077
|
+
environmentProduction: string;
|
|
41036
41078
|
price: string;
|
|
41037
41079
|
currentStart: string;
|
|
41038
41080
|
currentEnd: string;
|
|
@@ -13700,6 +13700,10 @@ declare const _default: {
|
|
|
13700
13700
|
delegatedApproverPlaceholder: string;
|
|
13701
13701
|
federationIdPlaceholder: string;
|
|
13702
13702
|
accountActiveLabel: string;
|
|
13703
|
+
serviceAccountLabel: string;
|
|
13704
|
+
serviceAccountHelp: string;
|
|
13705
|
+
serviceAccountEnabled: string;
|
|
13706
|
+
serviceAccountEnableFailed: string;
|
|
13703
13707
|
switchEnabled: string;
|
|
13704
13708
|
switchDisabled: string;
|
|
13705
13709
|
};
|
|
@@ -15654,6 +15658,8 @@ declare const _default: {
|
|
|
15654
15658
|
deny: string;
|
|
15655
15659
|
requestedPermissions: string;
|
|
15656
15660
|
requestsAccess: string;
|
|
15661
|
+
fullAccess: string;
|
|
15662
|
+
fullDxAccessDescription: string;
|
|
15657
15663
|
};
|
|
15658
15664
|
opportunityPage: {
|
|
15659
15665
|
basicInfo: string;
|
|
@@ -18982,6 +18988,21 @@ declare const _default: {
|
|
|
18982
18988
|
description: string;
|
|
18983
18989
|
subscriptionSummary: string;
|
|
18984
18990
|
healthAndUsage: string;
|
|
18991
|
+
environmentTitle: string;
|
|
18992
|
+
environmentDescription: string;
|
|
18993
|
+
environmentCurrent: string;
|
|
18994
|
+
environmentChange: string;
|
|
18995
|
+
environmentTarget: string;
|
|
18996
|
+
environmentReason: string;
|
|
18997
|
+
environmentReasonPlaceholder: string;
|
|
18998
|
+
environmentReasonRequired: string;
|
|
18999
|
+
environmentWarning: string;
|
|
19000
|
+
environmentUpdateSuccess: string;
|
|
19001
|
+
environmentUpdateFailed: string;
|
|
19002
|
+
environmentLocal: string;
|
|
19003
|
+
environmentSandbox: string;
|
|
19004
|
+
environmentStaging: string;
|
|
19005
|
+
environmentProduction: string;
|
|
18985
19006
|
price: string;
|
|
18986
19007
|
currentStart: string;
|
|
18987
19008
|
currentEnd: string;
|
|
@@ -13700,6 +13700,10 @@ const messages = {
|
|
|
13700
13700
|
delegatedApproverPlaceholder: "选择代理审批人",
|
|
13701
13701
|
federationIdPlaceholder: "外部身份系统映射 ID",
|
|
13702
13702
|
accountActiveLabel: "账户启用状态",
|
|
13703
|
+
serviceAccountLabel: "服务账户",
|
|
13704
|
+
serviceAccountHelp: "启用后该用户成为独立 AI 员工可绑定的非登录授权主体。必须先配置职权和组织节点;启用后不可在此关闭。",
|
|
13705
|
+
serviceAccountEnabled: "服务账户已启用",
|
|
13706
|
+
serviceAccountEnableFailed: "服务账户启用失败",
|
|
13703
13707
|
switchEnabled: "启用",
|
|
13704
13708
|
switchDisabled: "停用",
|
|
13705
13709
|
},
|
|
@@ -15661,6 +15665,8 @@ const messages = {
|
|
|
15661
15665
|
deny: "拒绝",
|
|
15662
15666
|
requestedPermissions: "请求的权限",
|
|
15663
15667
|
requestsAccess: "请求访问您的账户",
|
|
15668
|
+
fullAccess: "完整访问权限",
|
|
15669
|
+
fullDxAccessDescription: "允许 NexusClaw CLI 代表您使用开发工具、元数据、软件包和记录。",
|
|
15664
15670
|
},
|
|
15665
15671
|
opportunityPage: {
|
|
15666
15672
|
basicInfo: "基本信息",
|
|
@@ -19010,6 +19016,21 @@ const messages = {
|
|
|
19010
19016
|
description: "核对客户订阅、健康风险、资源用量、注册账号和正式账单。",
|
|
19011
19017
|
subscriptionSummary: "订阅摘要",
|
|
19012
19018
|
healthAndUsage: "健康与资源用量",
|
|
19019
|
+
environmentTitle: "环境分类",
|
|
19020
|
+
environmentDescription: "该分类控制 CLI 与部署目标的安全边界,仅平台管理员可通过正式接口变更。",
|
|
19021
|
+
environmentCurrent: "当前分类",
|
|
19022
|
+
environmentChange: "更改环境分类",
|
|
19023
|
+
environmentTarget: "目标分类",
|
|
19024
|
+
environmentReason: "变更原因",
|
|
19025
|
+
environmentReasonPlaceholder: "请填写可审计的变更原因",
|
|
19026
|
+
environmentReasonRequired: "必须填写变更原因",
|
|
19027
|
+
environmentWarning: "此操作需要 MFA 二次验证,并写入正式设置审计记录。",
|
|
19028
|
+
environmentUpdateSuccess: "环境分类已更新",
|
|
19029
|
+
environmentUpdateFailed: "环境分类更新失败",
|
|
19030
|
+
environmentLocal: "本地",
|
|
19031
|
+
environmentSandbox: "沙箱",
|
|
19032
|
+
environmentStaging: "预发布",
|
|
19033
|
+
environmentProduction: "生产",
|
|
19013
19034
|
price: "订阅金额",
|
|
19014
19035
|
currentStart: "本期开始",
|
|
19015
19036
|
currentEnd: "本期结束",
|