@nexusclawhq/cli 0.3.21 → 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 +12 -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/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/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 +4 -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.js +3 -1
- package/dist/nexus-cli/src/services/user-service-account-remote.js.map +1 -1
- package/dist/nexus-cli/src/services/user-service-account-remote.test.js +5 -0
- package/dist/nexus-cli/src/services/user-service-account-remote.test.js.map +1 -1
- 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
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.22 - 2026-08-02
|
|
4
|
+
|
|
5
|
+
- Expand machine-readable DX workflows, environment promotion, deployment
|
|
6
|
+
history/report/resume, source baselines, metadata validation, and workspace
|
|
7
|
+
health while preserving server-owned release and authorization boundaries.
|
|
8
|
+
- Add AI-workforce conversation, notification, escalation, knowledge, and
|
|
9
|
+
orchestration command surfaces over the existing authenticated Core APIs.
|
|
10
|
+
- Harden JSON output, authentication storage, API error handling, package
|
|
11
|
+
manifest validation, log output, and data query parsing for automation use.
|
|
12
|
+
- Bundle and validate the workspace-template release input and revision ledger
|
|
13
|
+
required by the published CLI artifact.
|
|
14
|
+
|
|
3
15
|
## 0.3.21 - 2026-07-31
|
|
4
16
|
|
|
5
17
|
- Add a governed `user service-account enable` command that reuses workspace
|
package/dist/build-info.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"packageName": "@nexusclawhq/cli",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"gitSha": "
|
|
3
|
+
"version": "0.3.22",
|
|
4
|
+
"gitSha": "a4fe98f90413b8ac2d202a5c15f486657e0b9763",
|
|
5
5
|
"ciRunId": null,
|
|
6
|
-
"contentDigest": "sha256:
|
|
7
|
-
"generatedAt": "2026-
|
|
6
|
+
"contentDigest": "sha256:37b13fe8fd7a100c606a1c253db292612aa21862275776bc934e9c85434f40c4",
|
|
7
|
+
"generatedAt": "2026-08-01T20:19:59.160Z"
|
|
8
8
|
}
|
|
@@ -30,4 +30,5 @@ __exportStar(require("./agent-executable-assets"), exports);
|
|
|
30
30
|
__exportStar(require("./ai-employee-runtime"), exports);
|
|
31
31
|
__exportStar(require("./ai-employee-cognition"), exports);
|
|
32
32
|
__exportStar(require("./workspace-regional-settings"), exports);
|
|
33
|
+
__exportStar(require("./system-object-persistence"), exports);
|
|
33
34
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,4CAA0B;AAC1B,6CAAoD;AAA3C,0GAAA,eAAe,OAAA;AACxB,kDAAgC;AAChC,0DAAwC;AACxC,0DAAwC;AACxC,qDAAmC;AACnC,oDAAkC;AAClC,0DAAwC;AACxC,mEAAiD;AACjD,sEAAoD;AACpD,4DAA0C;AAC1C,wDAAsC;AACtC,0DAAwC;AACxC,gEAA8C"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,4CAA0B;AAC1B,6CAAoD;AAA3C,0GAAA,eAAe,OAAA;AACxB,kDAAgC;AAChC,0DAAwC;AACxC,0DAAwC;AACxC,qDAAmC;AACnC,oDAAkC;AAClC,0DAAwC;AACxC,mEAAiD;AACjD,sEAAoD;AACpD,4DAA0C;AAC1C,wDAAsC;AACtC,0DAAwC;AACxC,gEAA8C;AAC9C,8DAA4C"}
|
|
@@ -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;
|
|
@@ -13727,6 +13727,10 @@ const messages = {
|
|
|
13727
13727
|
delegatedApproverPlaceholder: "Select delegated approver",
|
|
13728
13728
|
federationIdPlaceholder: "External identity system mapping ID",
|
|
13729
13729
|
accountActiveLabel: "Account Status",
|
|
13730
|
+
serviceAccountLabel: "Service Account",
|
|
13731
|
+
serviceAccountHelp: "Once enabled, this user becomes a non-login authorization principal that can be assigned to an independent AI employee. Configure a role and organization node first. It cannot be disabled here afterward.",
|
|
13732
|
+
serviceAccountEnabled: "Service account enabled",
|
|
13733
|
+
serviceAccountEnableFailed: "Failed to enable service account",
|
|
13730
13734
|
switchEnabled: "Active",
|
|
13731
13735
|
switchDisabled: "Inactive",
|
|
13732
13736
|
},
|
|
@@ -15704,6 +15708,8 @@ const messages = {
|
|
|
15704
15708
|
deny: "Deny",
|
|
15705
15709
|
requestedPermissions: "Requested Permissions",
|
|
15706
15710
|
requestsAccess: "requests access to your account",
|
|
15711
|
+
fullAccess: "Full access",
|
|
15712
|
+
fullDxAccessDescription: "Use NexusClaw developer tools, metadata, packages, and records on your behalf.",
|
|
15707
15713
|
},
|
|
15708
15714
|
opportunityPage: {
|
|
15709
15715
|
basicInfo: "Basic Info",
|
|
@@ -19053,6 +19059,21 @@ const messages = {
|
|
|
19053
19059
|
description: "Review the customer subscription, health risks, resource usage, registration account, and formal invoices.",
|
|
19054
19060
|
subscriptionSummary: "Subscription Summary",
|
|
19055
19061
|
healthAndUsage: "Health and Resource Usage",
|
|
19062
|
+
environmentTitle: "Environment Classification",
|
|
19063
|
+
environmentDescription: "This classification controls CLI and deployment safety boundaries. Only platform administrators can change it through the governed API.",
|
|
19064
|
+
environmentCurrent: "Current Classification",
|
|
19065
|
+
environmentChange: "Change Classification",
|
|
19066
|
+
environmentTarget: "Target Classification",
|
|
19067
|
+
environmentReason: "Change Reason",
|
|
19068
|
+
environmentReasonPlaceholder: "Enter an attributable audit reason",
|
|
19069
|
+
environmentReasonRequired: "A change reason is required",
|
|
19070
|
+
environmentWarning: "This action requires MFA step-up and writes a formal setup audit record.",
|
|
19071
|
+
environmentUpdateSuccess: "Environment classification updated",
|
|
19072
|
+
environmentUpdateFailed: "Failed to update environment classification",
|
|
19073
|
+
environmentLocal: "Local",
|
|
19074
|
+
environmentSandbox: "Sandbox",
|
|
19075
|
+
environmentStaging: "Staging",
|
|
19076
|
+
environmentProduction: "Production",
|
|
19056
19077
|
price: "Subscription Amount",
|
|
19057
19078
|
currentStart: "Current Period Start",
|
|
19058
19079
|
currentEnd: "Current Period End",
|