@nexusclawhq/cli 0.3.21 → 0.3.23

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.
Files changed (238) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/dist/build-info.json +4 -4
  3. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/index.d.ts +1 -0
  4. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/index.js +1 -0
  5. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/index.js.map +1 -1
  6. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.d.ts +21 -0
  7. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.js +21 -0
  8. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.js.map +1 -1
  9. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/index.d.ts +42 -0
  10. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.d.ts +21 -0
  11. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.js +21 -0
  12. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.js.map +1 -1
  13. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/system-object-persistence.d.ts +21 -0
  14. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/system-object-persistence.js +29 -0
  15. package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/system-object-persistence.js.map +1 -0
  16. package/dist/nexus-cli/node_modules/@nexusclaw/shared/package.json +4 -0
  17. package/dist/nexus-cli/src/commands/commands.test.js +3 -3
  18. package/dist/nexus-cli/src/commands/commands.test.js.map +1 -1
  19. package/dist/nexus-cli/src/commands/data/query.d.ts +7 -0
  20. package/dist/nexus-cli/src/commands/data/query.js +29 -9
  21. package/dist/nexus-cli/src/commands/data/query.js.map +1 -1
  22. package/dist/nexus-cli/src/commands/data/query.test.d.ts +1 -0
  23. package/dist/nexus-cli/src/commands/data/query.test.js +31 -0
  24. package/dist/nexus-cli/src/commands/data/query.test.js.map +1 -0
  25. package/dist/nexus-cli/src/commands/deployment/history.test.d.ts +1 -0
  26. package/dist/nexus-cli/src/commands/deployment/history.test.js +16 -0
  27. package/dist/nexus-cli/src/commands/deployment/history.test.js.map +1 -0
  28. package/dist/nexus-cli/src/commands/deployment/index.d.ts +4 -0
  29. package/dist/nexus-cli/src/commands/deployment/index.js +16 -3
  30. package/dist/nexus-cli/src/commands/deployment/index.js.map +1 -1
  31. package/dist/nexus-cli/src/commands/deployment/report.d.ts +1 -0
  32. package/dist/nexus-cli/src/commands/deployment/report.js +16 -35
  33. package/dist/nexus-cli/src/commands/deployment/report.js.map +1 -1
  34. package/dist/nexus-cli/src/commands/deployment/report.test.d.ts +1 -0
  35. package/dist/nexus-cli/src/commands/deployment/report.test.js +14 -0
  36. package/dist/nexus-cli/src/commands/deployment/report.test.js.map +1 -0
  37. package/dist/nexus-cli/src/commands/deployment/resume.js +16 -2
  38. package/dist/nexus-cli/src/commands/deployment/resume.js.map +1 -1
  39. package/dist/nexus-cli/src/commands/dx-json-option.test.d.ts +1 -0
  40. package/dist/nexus-cli/src/commands/dx-json-option.test.js +50 -0
  41. package/dist/nexus-cli/src/commands/dx-json-option.test.js.map +1 -0
  42. package/dist/nexus-cli/src/commands/dx-workflows.e2e.test.js +39 -1
  43. package/dist/nexus-cli/src/commands/dx-workflows.e2e.test.js.map +1 -1
  44. package/dist/nexus-cli/src/commands/dx.js +199 -13
  45. package/dist/nexus-cli/src/commands/dx.js.map +1 -1
  46. package/dist/nexus-cli/src/commands/employee/deploy.e2e.test.js +29 -0
  47. package/dist/nexus-cli/src/commands/employee/deploy.e2e.test.js.map +1 -1
  48. package/dist/nexus-cli/src/commands/employee/deploy.js +6 -2
  49. package/dist/nexus-cli/src/commands/employee/deploy.js.map +1 -1
  50. package/dist/nexus-cli/src/commands/generate/class.js +6 -1
  51. package/dist/nexus-cli/src/commands/generate/class.js.map +1 -1
  52. package/dist/nexus-cli/src/commands/generate/component.js +6 -1
  53. package/dist/nexus-cli/src/commands/generate/component.js.map +1 -1
  54. package/dist/nexus-cli/src/commands/generate/generate-result.d.ts +6 -0
  55. package/dist/nexus-cli/src/commands/generate/generate-result.js +52 -0
  56. package/dist/nexus-cli/src/commands/generate/generate-result.js.map +1 -0
  57. package/dist/nexus-cli/src/commands/generate/project.js +6 -0
  58. package/dist/nexus-cli/src/commands/generate/project.js.map +1 -1
  59. package/dist/nexus-cli/src/commands/generate/test.js +6 -1
  60. package/dist/nexus-cli/src/commands/generate/test.js.map +1 -1
  61. package/dist/nexus-cli/src/commands/generate/trigger.js +6 -1
  62. package/dist/nexus-cli/src/commands/generate/trigger.js.map +1 -1
  63. package/dist/nexus-cli/src/commands/log/get.js +11 -6
  64. package/dist/nexus-cli/src/commands/log/get.js.map +1 -1
  65. package/dist/nexus-cli/src/commands/log/list.js +15 -11
  66. package/dist/nexus-cli/src/commands/log/list.js.map +1 -1
  67. package/dist/nexus-cli/src/commands/log-sandbox-contract.test.d.ts +1 -0
  68. package/dist/nexus-cli/src/commands/log-sandbox-contract.test.js +25 -0
  69. package/dist/nexus-cli/src/commands/log-sandbox-contract.test.js.map +1 -0
  70. package/dist/nexus-cli/src/commands/machine-json-surface.test.d.ts +1 -0
  71. package/dist/nexus-cli/src/commands/machine-json-surface.test.js +87 -0
  72. package/dist/nexus-cli/src/commands/machine-json-surface.test.js.map +1 -0
  73. package/dist/nexus-cli/src/commands/metadata/deploy.js +44 -11
  74. package/dist/nexus-cli/src/commands/metadata/deploy.js.map +1 -1
  75. package/dist/nexus-cli/src/commands/metadata/diff.js +31 -4
  76. package/dist/nexus-cli/src/commands/metadata/diff.js.map +1 -1
  77. package/dist/nexus-cli/src/commands/metadata/export.e2e.test.js +25 -19
  78. package/dist/nexus-cli/src/commands/metadata/export.e2e.test.js.map +1 -1
  79. package/dist/nexus-cli/src/commands/metadata/export.js +36 -5
  80. package/dist/nexus-cli/src/commands/metadata/export.js.map +1 -1
  81. package/dist/nexus-cli/src/commands/metadata/validate-source.d.ts +4 -0
  82. package/dist/nexus-cli/src/commands/metadata/validate-source.js +31 -2
  83. package/dist/nexus-cli/src/commands/metadata/validate-source.js.map +1 -1
  84. package/dist/nexus-cli/src/commands/metadata/validate-source.test.d.ts +1 -0
  85. package/dist/nexus-cli/src/commands/metadata/validate-source.test.js +23 -0
  86. package/dist/nexus-cli/src/commands/metadata/validate-source.test.js.map +1 -0
  87. package/dist/nexus-cli/src/commands/org/display.js +3 -3
  88. package/dist/nexus-cli/src/commands/org/display.js.map +1 -1
  89. package/dist/nexus-cli/src/commands/org/list.js +4 -2
  90. package/dist/nexus-cli/src/commands/org/list.js.map +1 -1
  91. package/dist/nexus-cli/src/commands/org/login-web.d.ts +7 -0
  92. package/dist/nexus-cli/src/commands/org/login-web.js +43 -7
  93. package/dist/nexus-cli/src/commands/org/login-web.js.map +1 -1
  94. package/dist/nexus-cli/src/commands/org/login-web.test.js +21 -0
  95. package/dist/nexus-cli/src/commands/org/login-web.test.js.map +1 -1
  96. package/dist/nexus-cli/src/commands/org/open.d.ts +1 -0
  97. package/dist/nexus-cli/src/commands/org/open.js +8 -2
  98. package/dist/nexus-cli/src/commands/org/open.js.map +1 -1
  99. package/dist/nexus-cli/src/commands/org/open.test.d.ts +1 -0
  100. package/dist/nexus-cli/src/commands/org/open.test.js +16 -0
  101. package/dist/nexus-cli/src/commands/org/open.test.js.map +1 -0
  102. package/dist/nexus-cli/src/commands/package/history.js +9 -3
  103. package/dist/nexus-cli/src/commands/package/history.js.map +1 -1
  104. package/dist/nexus-cli/src/commands/package/install.js +1 -0
  105. package/dist/nexus-cli/src/commands/package/install.js.map +1 -1
  106. package/dist/nexus-cli/src/commands/package/list.js +7 -4
  107. package/dist/nexus-cli/src/commands/package/list.js.map +1 -1
  108. package/dist/nexus-cli/src/commands/package/list.test.d.ts +1 -0
  109. package/dist/nexus-cli/src/commands/package/list.test.js +33 -0
  110. package/dist/nexus-cli/src/commands/package/list.test.js.map +1 -0
  111. package/dist/nexus-cli/src/commands/package/promote.js +32 -7
  112. package/dist/nexus-cli/src/commands/package/promote.js.map +1 -1
  113. package/dist/nexus-cli/src/commands/project/index.js +5 -3
  114. package/dist/nexus-cli/src/commands/project/index.js.map +1 -1
  115. package/dist/nexus-cli/src/commands/revision/history.js +4 -2
  116. package/dist/nexus-cli/src/commands/revision/history.js.map +1 -1
  117. package/dist/nexus-cli/src/commands/safe-write-dry-run.test.d.ts +1 -0
  118. package/dist/nexus-cli/src/commands/safe-write-dry-run.test.js +82 -0
  119. package/dist/nexus-cli/src/commands/safe-write-dry-run.test.js.map +1 -0
  120. package/dist/nexus-cli/src/commands/sandbox/create.js +30 -1
  121. package/dist/nexus-cli/src/commands/sandbox/create.js.map +1 -1
  122. package/dist/nexus-cli/src/commands/sandbox/list.js +4 -5
  123. package/dist/nexus-cli/src/commands/sandbox/list.js.map +1 -1
  124. package/dist/nexus-cli/src/commands/source/pull-baseline.test.d.ts +1 -0
  125. package/dist/nexus-cli/src/commands/source/pull-baseline.test.js +60 -0
  126. package/dist/nexus-cli/src/commands/source/pull-baseline.test.js.map +1 -0
  127. package/dist/nexus-cli/src/commands/source/pull.d.ts +7 -0
  128. package/dist/nexus-cli/src/commands/source/pull.js +32 -5
  129. package/dist/nexus-cli/src/commands/source/pull.js.map +1 -1
  130. package/dist/nexus-cli/src/commands/workforce/escalation.d.ts +2 -0
  131. package/dist/nexus-cli/src/commands/workforce/escalation.js +62 -0
  132. package/dist/nexus-cli/src/commands/workforce/escalation.js.map +1 -0
  133. package/dist/nexus-cli/src/commands/workforce/index.js +4 -0
  134. package/dist/nexus-cli/src/commands/workforce/index.js.map +1 -1
  135. package/dist/nexus-cli/src/commands/workforce/knowledge.js +5 -0
  136. package/dist/nexus-cli/src/commands/workforce/knowledge.js.map +1 -1
  137. package/dist/nexus-cli/src/commands/workforce/notification.d.ts +2 -0
  138. package/dist/nexus-cli/src/commands/workforce/notification.js +71 -0
  139. package/dist/nexus-cli/src/commands/workforce/notification.js.map +1 -0
  140. package/dist/nexus-cli/src/commands/workforce/task.js +55 -4
  141. package/dist/nexus-cli/src/commands/workforce/task.js.map +1 -1
  142. package/dist/nexus-cli/src/commands/workspace/index.js +5 -2
  143. package/dist/nexus-cli/src/commands/workspace/index.js.map +1 -1
  144. package/dist/nexus-cli/src/commands/workspace/workspace.e2e.test.js +4 -4
  145. package/dist/nexus-cli/src/commands/workspace/workspace.e2e.test.js.map +1 -1
  146. package/dist/nexus-cli/src/services/api-client.d.ts +9 -0
  147. package/dist/nexus-cli/src/services/api-client.js +99 -11
  148. package/dist/nexus-cli/src/services/api-client.js.map +1 -1
  149. package/dist/nexus-cli/src/services/api-client.test.js +118 -8
  150. package/dist/nexus-cli/src/services/api-client.test.js.map +1 -1
  151. package/dist/nexus-cli/src/services/auth-store.d.ts +3 -0
  152. package/dist/nexus-cli/src/services/auth-store.js +24 -0
  153. package/dist/nexus-cli/src/services/auth-store.js.map +1 -1
  154. package/dist/nexus-cli/src/services/auth-store.test.js +19 -0
  155. package/dist/nexus-cli/src/services/auth-store.test.js.map +1 -1
  156. package/dist/nexus-cli/src/services/pack-registry.js +7 -0
  157. package/dist/nexus-cli/src/services/pack-registry.js.map +1 -1
  158. package/dist/nexus-cli/src/services/package-manifest.d.ts +5 -0
  159. package/dist/nexus-cli/src/services/package-manifest.js +35 -0
  160. package/dist/nexus-cli/src/services/package-manifest.js.map +1 -1
  161. package/dist/nexus-cli/src/services/package-manifest.test.d.ts +1 -0
  162. package/dist/nexus-cli/src/services/package-manifest.test.js +48 -0
  163. package/dist/nexus-cli/src/services/package-manifest.test.js.map +1 -0
  164. package/dist/nexus-cli/src/services/user-service-account-remote.js +3 -1
  165. package/dist/nexus-cli/src/services/user-service-account-remote.js.map +1 -1
  166. package/dist/nexus-cli/src/services/user-service-account-remote.test.js +5 -0
  167. package/dist/nexus-cli/src/services/user-service-account-remote.test.js.map +1 -1
  168. package/dist/nexus-cli/src/services/workforce-conversation-remote.d.ts +52 -0
  169. package/dist/nexus-cli/src/services/workforce-conversation-remote.js +119 -0
  170. package/dist/nexus-cli/src/services/workforce-conversation-remote.js.map +1 -0
  171. package/dist/nexus-cli/src/services/workforce-conversation-remote.test.d.ts +1 -0
  172. package/dist/nexus-cli/src/services/workforce-conversation-remote.test.js +115 -0
  173. package/dist/nexus-cli/src/services/workforce-conversation-remote.test.js.map +1 -0
  174. package/dist/nexus-cli/src/services/workforce-guardrail-knowledge-remote.d.ts +17 -0
  175. package/dist/nexus-cli/src/services/workforce-guardrail-knowledge-remote.js +10 -0
  176. package/dist/nexus-cli/src/services/workforce-guardrail-knowledge-remote.js.map +1 -1
  177. package/dist/nexus-cli/src/services/workforce-guardrail-knowledge-remote.test.d.ts +1 -0
  178. package/dist/nexus-cli/src/services/workforce-guardrail-knowledge-remote.test.js +65 -0
  179. package/dist/nexus-cli/src/services/workforce-guardrail-knowledge-remote.test.js.map +1 -0
  180. package/dist/nexus-cli/src/services/workforce-notification-remote.d.ts +61 -0
  181. package/dist/nexus-cli/src/services/workforce-notification-remote.js +87 -0
  182. package/dist/nexus-cli/src/services/workforce-notification-remote.js.map +1 -0
  183. package/dist/nexus-cli/src/services/workforce-notification-remote.test.d.ts +1 -0
  184. package/dist/nexus-cli/src/services/workforce-notification-remote.test.js +78 -0
  185. package/dist/nexus-cli/src/services/workforce-notification-remote.test.js.map +1 -0
  186. package/dist/nexus-cli/src/services/workforce-orchestration-remote.d.ts +6 -0
  187. package/dist/nexus-cli/src/services/workforce-orchestration-remote.js +23 -12
  188. package/dist/nexus-cli/src/services/workforce-orchestration-remote.js.map +1 -1
  189. package/dist/nexus-cli/src/services/workforce-orchestration-remote.test.d.ts +1 -0
  190. package/dist/nexus-cli/src/services/workforce-orchestration-remote.test.js +18 -0
  191. package/dist/nexus-cli/src/services/workforce-orchestration-remote.test.js.map +1 -0
  192. package/dist/nexus-cli/src/services/workforce-test-remote.d.ts +1 -1
  193. package/dist/nexus-cli/src/services/workforce-test-remote.js +19 -2
  194. package/dist/nexus-cli/src/services/workforce-test-remote.js.map +1 -1
  195. package/dist/nexus-cli/src/services/workforce-test-remote.test.js +7 -1
  196. package/dist/nexus-cli/src/services/workforce-test-remote.test.js.map +1 -1
  197. package/dist/nexus-cli/src/services/workspace-health.js +6 -0
  198. package/dist/nexus-cli/src/services/workspace-health.js.map +1 -1
  199. package/dist/nexus-cli/src/services/workspace-health.test.js +65 -0
  200. package/dist/nexus-cli/src/services/workspace-health.test.js.map +1 -1
  201. package/dist/nexus-cli/src/templates/project/templates/base-crm/package.json.tpl +0 -3
  202. package/dist/nexus-cli/src/templates/project/templates/base-crm/src-index.ts.tpl +2 -0
  203. package/dist/nexus-cli/src/templates/project/templates/base-crm/tsconfig.json.tpl +2 -2
  204. package/dist/nexus-cli/src/templates/project/templates/demo-public-channel-store-delivery/package.json.tpl +0 -3
  205. package/dist/nexus-cli/src/templates/project/templates/demo-public-channel-store-delivery/src-index.ts.tpl +2 -0
  206. package/dist/nexus-cli/src/templates/project/templates/demo-public-channel-store-delivery/tsconfig.json.tpl +2 -2
  207. package/dist/nexus-cli/src/templates/project/templates/drill-code-extension-page/package.json.tpl +0 -3
  208. package/dist/nexus-cli/src/templates/project/templates/drill-code-extension-page/src-index.ts.tpl +2 -0
  209. package/dist/nexus-cli/src/templates/project/templates/drill-code-extension-page/tsconfig.json.tpl +2 -2
  210. package/dist/nexus-cli/src/templates/project/templates/empty/package.json.tpl +0 -3
  211. package/dist/nexus-cli/src/templates/project/templates/empty/src-index.ts.tpl +2 -0
  212. package/dist/nexus-cli/src/templates/project/templates/empty/tsconfig.json.tpl +2 -2
  213. package/dist/nexus-cli/src/templates/project/templates/executable-workforce/package.json.tpl +0 -3
  214. package/dist/nexus-cli/src/templates/project/templates/executable-workforce/src-index.ts.tpl +2 -0
  215. package/dist/nexus-cli/src/templates/project/templates/executable-workforce/tsconfig.json.tpl +1 -1
  216. package/dist/nexus-cli/src/templates/project/templates/industry-education/package.json.tpl +0 -3
  217. package/dist/nexus-cli/src/templates/project/templates/industry-education/src-index.ts.tpl +2 -0
  218. package/dist/nexus-cli/src/templates/project/templates/industry-education/tsconfig.json.tpl +2 -2
  219. package/dist/nexus-cli/src/templates/project/templates/industry-finance/package.json.tpl +0 -3
  220. package/dist/nexus-cli/src/templates/project/templates/industry-finance/src-index.ts.tpl +2 -0
  221. package/dist/nexus-cli/src/templates/project/templates/industry-finance/tsconfig.json.tpl +2 -2
  222. package/dist/nexus-cli/src/templates/project/templates/industry-healthcare/package.json.tpl +0 -3
  223. package/dist/nexus-cli/src/templates/project/templates/industry-healthcare/src-index.ts.tpl +2 -0
  224. package/dist/nexus-cli/src/templates/project/templates/industry-healthcare/tsconfig.json.tpl +2 -2
  225. package/dist/nexus-cli/src/templates/project/templates/industry-partner-cloud/package.json.tpl +0 -3
  226. package/dist/nexus-cli/src/templates/project/templates/industry-partner-cloud/src-index.ts.tpl +2 -0
  227. package/dist/nexus-cli/src/templates/project/templates/industry-partner-cloud/tsconfig.json.tpl +2 -2
  228. package/dist/nexus-cli/src/templates/project/templates/industry-retail/package.json.tpl +0 -3
  229. package/dist/nexus-cli/src/templates/project/templates/industry-retail/src-index.ts.tpl +2 -0
  230. package/dist/nexus-cli/src/templates/project/templates/industry-retail/tsconfig.json.tpl +2 -2
  231. package/dist/nexus-cli/src/utils/command-options.d.ts +8 -0
  232. package/dist/nexus-cli/src/utils/command-options.js +14 -0
  233. package/dist/nexus-cli/src/utils/command-options.js.map +1 -0
  234. package/dist/nexus-cli/src/utils/command-options.test.d.ts +1 -0
  235. package/dist/nexus-cli/src/utils/command-options.test.js +23 -0
  236. package/dist/nexus-cli/src/utils/command-options.test.js.map +1 -0
  237. package/dist/tsconfig.tsbuildinfo +1 -1
  238. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.23 - 2026-08-02
4
+
5
+ - Make top-level `install`, `pack`, and `publish` honor local or global
6
+ `--json` consistently and emit one `nexusclaw.cli-result/v1` document.
7
+ - Add mutation-free `--dry-run` previews with canonical JSON output to
8
+ `sandbox create`, `package promote`, and `metadata deploy`.
9
+ - Keep metadata deployment preview on validation only and prove that it never
10
+ calls the deployment endpoint.
11
+
12
+ ## 0.3.22 - 2026-08-02
13
+
14
+ - Expand machine-readable DX workflows, environment promotion, deployment
15
+ history/report/resume, source baselines, metadata validation, and workspace
16
+ health while preserving server-owned release and authorization boundaries.
17
+ - Add AI-workforce conversation, notification, escalation, knowledge, and
18
+ orchestration command surfaces over the existing authenticated Core APIs.
19
+ - Harden JSON output, authentication storage, API error handling, package
20
+ manifest validation, log output, and data query parsing for automation use.
21
+ - Bundle and validate the workspace-template release input and revision ledger
22
+ required by the published CLI artifact.
23
+
3
24
  ## 0.3.21 - 2026-07-31
4
25
 
5
26
  - Add a governed `user service-account enable` command that reuses workspace
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "packageName": "@nexusclawhq/cli",
3
- "version": "0.3.21",
4
- "gitSha": "bf03eec913de28cad0359397ea6fedadf0792cd1",
3
+ "version": "0.3.23",
4
+ "gitSha": "9b035483943c2127617ef52e3edbeebf3e8b8718",
5
5
  "ciRunId": null,
6
- "contentDigest": "sha256:9edb5d26eeec87a8c69425ffb762a4c6f598f27951982db001de47333e490eb1",
7
- "generatedAt": "2026-07-31T06:37:28.487Z"
6
+ "contentDigest": "sha256:181519f6918585ebba6d884783543e9bbc6c67281fb57783d7820a18b9f88e3c",
7
+ "generatedAt": "2026-08-02T04:02:04.971Z"
8
8
  }
@@ -12,3 +12,4 @@ export * from './agent-executable-assets';
12
12
  export * from './ai-employee-runtime';
13
13
  export * from './ai-employee-cognition';
14
14
  export * from './workspace-regional-settings';
15
+ export * from './system-object-persistence';
@@ -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",