@empire-builder-kit/nx 1.0.0-beta.9 → 1.0.0-rc.2
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/NOTICE +6 -0
- package/README.md +113 -3
- package/executors.json +30 -0
- package/package.json +84 -6
- package/src/api-contract/baseline-update.d.ts +82 -0
- package/src/api-contract/baseline-update.js +225 -0
- package/src/api-contract/baseline-update.js.map +1 -0
- package/src/api-contract/compatibility.d.ts +30 -0
- package/src/api-contract/compatibility.js +643 -0
- package/src/api-contract/compatibility.js.map +1 -0
- package/src/api-contract/contract-graph.d.ts +35 -0
- package/src/api-contract/contract-graph.js +141 -0
- package/src/api-contract/contract-graph.js.map +1 -0
- package/src/api-contract/evidence.d.ts +23 -0
- package/src/api-contract/evidence.js +87 -0
- package/src/api-contract/evidence.js.map +1 -0
- package/src/api-contract/index.d.ts +6 -0
- package/src/api-contract/index.js +10 -0
- package/src/api-contract/index.js.map +1 -0
- package/src/api-contract/model.d.ts +144 -0
- package/src/api-contract/model.fixtures.d.ts +2 -0
- package/src/api-contract/model.fixtures.js +81 -0
- package/src/api-contract/model.fixtures.js.map +1 -0
- package/src/api-contract/model.js +993 -0
- package/src/api-contract/model.js.map +1 -0
- package/src/api-contract/rollout.d.ts +32 -0
- package/src/api-contract/rollout.js +88 -0
- package/src/api-contract/rollout.js.map +1 -0
- package/src/authorization/compatibility.d.ts +62 -0
- package/src/authorization/compatibility.js +175 -0
- package/src/authorization/compatibility.js.map +1 -0
- package/src/authorization/index.d.ts +1 -0
- package/src/authorization/index.js +5 -0
- package/src/authorization/index.js.map +1 -0
- package/src/blueprints/execution.d.ts +25 -1
- package/src/blueprints/execution.js +246 -83
- package/src/blueprints/execution.js.map +1 -1
- package/src/blueprints/external-sandbox.d.ts +53 -0
- package/src/blueprints/external-sandbox.js +1182 -0
- package/src/blueprints/external-sandbox.js.map +1 -0
- package/src/blueprints/manifest.d.ts +42 -2
- package/src/blueprints/manifest.js +82 -27
- package/src/blueprints/manifest.js.map +1 -1
- package/src/blueprints/resolver.d.ts +14 -5
- package/src/blueprints/resolver.js +228 -68
- package/src/blueprints/resolver.js.map +1 -1
- package/src/cli/agent-command.d.ts +30 -0
- package/src/cli/agent-command.js +204 -0
- package/src/cli/agent-command.js.map +1 -0
- package/src/cli/agent-runtime.d.ts +25 -0
- package/src/cli/agent-runtime.js +488 -0
- package/src/cli/agent-runtime.js.map +1 -0
- package/src/cli/blueprint-authority.d.ts +9 -0
- package/src/cli/blueprint-authority.js +43 -0
- package/src/cli/blueprint-authority.js.map +1 -0
- package/src/cli/blueprint-command.d.ts +24 -0
- package/src/cli/blueprint-command.js +63 -0
- package/src/cli/blueprint-command.js.map +1 -0
- package/src/cli/bootstrap.d.ts +31 -0
- package/src/cli/bootstrap.js +165 -0
- package/src/cli/bootstrap.js.map +1 -0
- package/src/cli/dev-command.d.ts +92 -0
- package/src/cli/dev-command.js +561 -0
- package/src/cli/dev-command.js.map +1 -0
- package/src/cli/main.d.ts +131 -0
- package/src/cli/main.js +1199 -0
- package/src/cli/main.js.map +1 -0
- package/src/cli/output.d.ts +19 -0
- package/src/cli/output.js +51 -0
- package/src/cli/output.js.map +1 -0
- package/src/cli/personal-secret-runtime.d.ts +81 -0
- package/src/cli/personal-secret-runtime.js +567 -0
- package/src/cli/personal-secret-runtime.js.map +1 -0
- package/src/cli/secret-terminal.d.ts +12 -0
- package/src/cli/secret-terminal.js +128 -0
- package/src/cli/secret-terminal.js.map +1 -0
- package/src/container-images.d.ts +1 -0
- package/src/container-images.js +5 -0
- package/src/container-images.js.map +1 -0
- package/src/data-lifecycle/index.d.ts +3 -0
- package/src/data-lifecycle/index.js +7 -0
- package/src/data-lifecycle/index.js.map +1 -0
- package/src/data-lifecycle/model.d.ts +172 -0
- package/src/data-lifecycle/model.fixtures.d.ts +2 -0
- package/src/data-lifecycle/model.fixtures.js +244 -0
- package/src/data-lifecycle/model.fixtures.js.map +1 -0
- package/src/data-lifecycle/model.js +95 -0
- package/src/data-lifecycle/model.js.map +1 -0
- package/src/data-lifecycle/sensitive-artifacts.d.ts +28 -0
- package/src/data-lifecycle/sensitive-artifacts.js +146 -0
- package/src/data-lifecycle/sensitive-artifacts.js.map +1 -0
- package/src/data-lifecycle/validation.d.ts +32 -0
- package/src/data-lifecycle/validation.js +837 -0
- package/src/data-lifecycle/validation.js.map +1 -0
- package/src/database-retirement/contract.d.ts +68 -0
- package/src/database-retirement/contract.js +166 -0
- package/src/database-retirement/contract.js.map +1 -0
- package/src/database-retirement/index.d.ts +1 -0
- package/src/database-retirement/index.js +5 -0
- package/src/database-retirement/index.js.map +1 -0
- package/src/deterministic-order.d.ts +2 -0
- package/src/deterministic-order.js +7 -0
- package/src/deterministic-order.js.map +1 -0
- package/src/developer-agent/context.d.ts +27 -0
- package/src/developer-agent/context.js +497 -0
- package/src/developer-agent/context.js.map +1 -0
- package/src/developer-agent/generator-planning.d.ts +34 -0
- package/src/developer-agent/generator-planning.js +645 -0
- package/src/developer-agent/generator-planning.js.map +1 -0
- package/src/developer-agent/generator-preview.d.ts +8 -0
- package/src/developer-agent/generator-preview.js +650 -0
- package/src/developer-agent/generator-preview.js.map +1 -0
- package/src/developer-agent/git-inspection.d.ts +108 -0
- package/src/developer-agent/git-inspection.js +815 -0
- package/src/developer-agent/git-inspection.js.map +1 -0
- package/src/developer-agent/handoff.d.ts +43 -0
- package/src/developer-agent/handoff.js +698 -0
- package/src/developer-agent/handoff.js.map +1 -0
- package/src/developer-agent/index.d.ts +10 -0
- package/src/developer-agent/index.js +14 -0
- package/src/developer-agent/index.js.map +1 -0
- package/src/developer-agent/model.d.ts +481 -0
- package/src/developer-agent/model.js +143 -0
- package/src/developer-agent/model.js.map +1 -0
- package/src/developer-agent/operation-registry.d.ts +45 -0
- package/src/developer-agent/operation-registry.js +1255 -0
- package/src/developer-agent/operation-registry.js.map +1 -0
- package/src/developer-agent/ordering.d.ts +9 -0
- package/src/developer-agent/ordering.js +15 -0
- package/src/developer-agent/ordering.js.map +1 -0
- package/src/developer-agent/planning.d.ts +18 -0
- package/src/developer-agent/planning.js +447 -0
- package/src/developer-agent/planning.js.map +1 -0
- package/src/developer-agent/preview-changes.d.ts +26 -0
- package/src/developer-agent/preview-changes.js +203 -0
- package/src/developer-agent/preview-changes.js.map +1 -0
- package/src/developer-agent/preview-source.d.ts +2 -0
- package/src/developer-agent/preview-source.js +16 -0
- package/src/developer-agent/preview-source.js.map +1 -0
- package/src/developer-agent/validation.d.ts +18 -0
- package/src/developer-agent/validation.js +2617 -0
- package/src/developer-agent/validation.js.map +1 -0
- package/src/developer-agent/workspace-inspection.d.ts +20 -0
- package/src/developer-agent/workspace-inspection.js +1134 -0
- package/src/developer-agent/workspace-inspection.js.map +1 -0
- package/src/developer-agent/workspace-path.d.ts +6 -0
- package/src/developer-agent/workspace-path.js +22 -0
- package/src/developer-agent/workspace-path.js.map +1 -0
- package/src/executors/blueprint-trust/blueprint-trust.d.ts +29 -0
- package/src/executors/blueprint-trust/blueprint-trust.js +115 -0
- package/src/executors/blueprint-trust/blueprint-trust.js.map +1 -0
- package/src/executors/blueprint-trust/schema.json +27 -0
- package/src/executors/blueprint-verification/blueprint-verification.d.ts +13 -0
- package/src/executors/blueprint-verification/blueprint-verification.js +110 -0
- package/src/executors/blueprint-verification/blueprint-verification.js.map +1 -0
- package/src/executors/blueprint-verification/schema.json +44 -0
- package/src/executors/deployment-plan/deployment-plan.js +1 -0
- package/src/executors/deployment-plan/deployment-plan.js.map +1 -1
- package/src/executors/dev-doctor/dev-doctor.d.ts +19 -5
- package/src/executors/dev-doctor/dev-doctor.js +186 -32
- package/src/executors/dev-doctor/dev-doctor.js.map +1 -1
- package/src/executors/dev-doctor/schema.json +1 -6
- package/src/executors/dev-setup/dev-setup.d.ts +7 -1
- package/src/executors/dev-setup/dev-setup.js +14 -3
- package/src/executors/dev-setup/dev-setup.js.map +1 -1
- package/src/executors/developer-context/developer-context.d.ts +38 -0
- package/src/executors/developer-context/developer-context.js +78 -0
- package/src/executors/developer-context/developer-context.js.map +1 -0
- package/src/executors/developer-context/schema.json +87 -0
- package/src/executors/fleet/fleet.d.ts +12 -43
- package/src/executors/fleet/fleet.js +120 -500
- package/src/executors/fleet/fleet.js.map +1 -1
- package/src/executors/fleet/schema.json +64 -14
- package/src/executors/github-bootstrap/github-bootstrap.d.ts +1 -0
- package/src/executors/github-bootstrap/github-bootstrap.js +1 -0
- package/src/executors/github-bootstrap/github-bootstrap.js.map +1 -1
- package/src/executors/github-bootstrap/schema.json +5 -0
- package/src/executors/infrastructure-plan/infrastructure-plan.d.ts +144 -0
- package/src/executors/infrastructure-plan/infrastructure-plan.js +3320 -0
- package/src/executors/infrastructure-plan/infrastructure-plan.js.map +1 -0
- package/src/executors/infrastructure-plan/schema.json +78 -0
- package/src/executors/secret-guardrails/schema.json +6 -0
- package/src/executors/secret-guardrails/secret-guardrails.d.ts +3 -0
- package/src/executors/secret-guardrails/secret-guardrails.js +44 -0
- package/src/executors/secret-guardrails/secret-guardrails.js.map +1 -0
- package/src/executors/secret-metadata/schema.json +31 -0
- package/src/executors/secret-metadata/secret-metadata.d.ts +32 -0
- package/src/executors/secret-metadata/secret-metadata.js +131 -0
- package/src/executors/secret-metadata/secret-metadata.js.map +1 -0
- package/src/executors/sst-lifecycle/logging-preflight.d.ts +17 -0
- package/src/executors/sst-lifecycle/logging-preflight.js +196 -0
- package/src/executors/sst-lifecycle/logging-preflight.js.map +1 -0
- package/src/executors/sst-lifecycle/run-sst-command.d.ts +23 -3
- package/src/executors/sst-lifecycle/run-sst-command.js +113 -10
- package/src/executors/sst-lifecycle/run-sst-command.js.map +1 -1
- package/src/executors/sst-lifecycle/schema.json +9 -5
- package/src/executors/sst-lifecycle/secret-preflight.d.ts +25 -0
- package/src/executors/sst-lifecycle/secret-preflight.js +119 -0
- package/src/executors/sst-lifecycle/secret-preflight.js.map +1 -0
- package/src/foundation/discovery.d.ts +17 -1
- package/src/foundation/discovery.js +16 -1
- package/src/foundation/discovery.js.map +1 -1
- package/src/foundation/index.d.ts +3 -0
- package/src/foundation/index.js +3 -0
- package/src/foundation/index.js.map +1 -1
- package/src/foundation/local-database-contract.d.ts +1 -0
- package/src/foundation/local-database-contract.js +3 -0
- package/src/foundation/local-database-contract.js.map +1 -1
- package/src/foundation/logging-preflight.d.ts +30 -0
- package/src/foundation/logging-preflight.js +138 -0
- package/src/foundation/logging-preflight.js.map +1 -0
- package/src/foundation/logging.d.ts +70 -0
- package/src/foundation/logging.js +133 -0
- package/src/foundation/logging.js.map +1 -0
- package/src/foundation/preflight.d.ts +9 -0
- package/src/foundation/preflight.js +58 -2
- package/src/foundation/preflight.js.map +1 -1
- package/src/foundation/provision-database-bindings.d.ts +9 -1
- package/src/foundation/provision-database-bindings.js +25 -5
- package/src/foundation/provision-database-bindings.js.map +1 -1
- package/src/foundation/provision-logical-database.d.ts +10 -2
- package/src/foundation/provision-logical-database.js +68 -113
- package/src/foundation/provision-logical-database.js.map +1 -1
- package/src/foundation/router-origin-proof.d.ts +2 -0
- package/src/foundation/router-origin-proof.js +25 -0
- package/src/foundation/router-origin-proof.js.map +1 -0
- package/src/foundation/stages.d.ts +1 -0
- package/src/foundation/stages.js +9 -1
- package/src/foundation/stages.js.map +1 -1
- package/src/frontend-security/index.d.ts +1 -0
- package/src/frontend-security/index.js +5 -0
- package/src/frontend-security/index.js.map +1 -0
- package/src/frontend-security/security-headers.d.ts +50 -0
- package/src/frontend-security/security-headers.js +418 -0
- package/src/frontend-security/security-headers.js.map +1 -0
- package/src/generators/feature-registry.d.ts +13 -0
- package/src/generators/feature-registry.js +73 -0
- package/src/generators/feature-registry.js.map +1 -0
- package/src/generators/function/function.d.ts +1 -1
- package/src/generators/function/function.js +51 -6
- package/src/generators/function/function.js.map +1 -1
- package/src/generators/function/schema.d.ts +1 -0
- package/src/generators/function/schema.json +6 -1
- package/src/generators/logging-registry.d.ts +13 -0
- package/src/generators/logging-registry.js +62 -0
- package/src/generators/logging-registry.js.map +1 -0
- package/src/generators/post-generation-install.d.ts +67 -0
- package/src/generators/post-generation-install.js +3308 -0
- package/src/generators/post-generation-install.js.map +1 -0
- package/src/generators/preset/generator.js +3 -0
- package/src/generators/preset/generator.js.map +1 -1
- package/src/generators/preset/tool-versions.d.ts +18 -0
- package/src/generators/preset/tool-versions.js +22 -0
- package/src/generators/preset/tool-versions.js.map +1 -0
- package/src/generators/preset/workspace-files-developer-agent.d.ts +14 -0
- package/src/generators/preset/workspace-files-developer-agent.js +511 -0
- package/src/generators/preset/workspace-files-developer-agent.js.map +1 -0
- package/src/generators/preset/workspace-files-foundation-workload-roles.d.ts +6 -0
- package/src/generators/preset/workspace-files-foundation-workload-roles.js +406 -0
- package/src/generators/preset/workspace-files-foundation-workload-roles.js.map +1 -0
- package/src/generators/preset/workspace-files-performance-cost.d.ts +66 -0
- package/src/generators/preset/workspace-files-performance-cost.js +866 -0
- package/src/generators/preset/workspace-files-performance-cost.js.map +1 -0
- package/src/generators/preset/workspace-files-performance-load.d.ts +73 -0
- package/src/generators/preset/workspace-files-performance-load.js +801 -0
- package/src/generators/preset/workspace-files-performance-load.js.map +1 -0
- package/src/generators/preset/workspace-files-workload-role-baseline.d.ts +9 -0
- package/src/generators/preset/workspace-files-workload-role-baseline.js +1102 -0
- package/src/generators/preset/workspace-files-workload-role-baseline.js.map +1 -0
- package/src/generators/preset/workspace-files.d.ts +14 -1
- package/src/generators/preset/workspace-files.js +8189 -245
- package/src/generators/preset/workspace-files.js.map +1 -1
- package/src/generators/repository-policy/repository-policy.js +3 -47
- package/src/generators/repository-policy/repository-policy.js.map +1 -1
- package/src/generators/slice/built-in-plan-api-contract-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-api-contract-files.js +2656 -0
- package/src/generators/slice/built-in-plan-api-contract-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-api-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-api-files.js +1186 -0
- package/src/generators/slice/built-in-plan-api-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-async-work-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-async-work-files.js +7903 -0
- package/src/generators/slice/built-in-plan-async-work-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-authorization-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-authorization-files.js +2314 -0
- package/src/generators/slice/built-in-plan-authorization-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-authorization-infrastructure-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-authorization-infrastructure-files.js +559 -0
- package/src/generators/slice/built-in-plan-authorization-infrastructure-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-deletion-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-deletion-files.js +1101 -0
- package/src/generators/slice/built-in-plan-data-deletion-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-export-infrastructure-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-export-infrastructure-files.js +249 -0
- package/src/generators/slice/built-in-plan-data-export-infrastructure-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-files.js +1530 -0
- package/src/generators/slice/built-in-plan-data-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-files.js +750 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-runtime-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-runtime-files.js +828 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-runtime-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-retention-job-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-retention-job-files.js +2604 -0
- package/src/generators/slice/built-in-plan-data-retention-job-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-retention-launcher-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-retention-launcher-files.js +144 -0
- package/src/generators/slice/built-in-plan-data-retention-launcher-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-rights-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-rights-files.js +4628 -0
- package/src/generators/slice/built-in-plan-data-rights-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-database-lifecycle-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-database-lifecycle-files.js +1901 -0
- package/src/generators/slice/built-in-plan-database-lifecycle-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-database-retirement-rehearsal-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-database-retirement-rehearsal-files.js +485 -0
- package/src/generators/slice/built-in-plan-database-retirement-rehearsal-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-foundation-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-foundation-files.js +184 -0
- package/src/generators/slice/built-in-plan-foundation-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-frontend-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-frontend-files.js +2233 -0
- package/src/generators/slice/built-in-plan-frontend-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-infrastructure-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-infrastructure-files.js +3038 -0
- package/src/generators/slice/built-in-plan-infrastructure-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-infrastructure-safety-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-infrastructure-safety-files.js +312 -0
- package/src/generators/slice/built-in-plan-infrastructure-safety-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-metadata-files.d.ts +3 -0
- package/src/generators/slice/built-in-plan-metadata-files.js +219 -0
- package/src/generators/slice/built-in-plan-metadata-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-operations-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-operations-files.js +630 -0
- package/src/generators/slice/built-in-plan-operations-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-performance-files.d.ts +3 -0
- package/src/generators/slice/built-in-plan-performance-files.js +3293 -0
- package/src/generators/slice/built-in-plan-performance-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-project-files.d.ts +3 -0
- package/src/generators/slice/built-in-plan-project-files.js +979 -0
- package/src/generators/slice/built-in-plan-project-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-release-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-release-files.js +6387 -0
- package/src/generators/slice/built-in-plan-release-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-reliability-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-reliability-files.js +4499 -0
- package/src/generators/slice/built-in-plan-reliability-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-secret-runtime-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-secret-runtime-files.js +1004 -0
- package/src/generators/slice/built-in-plan-secret-runtime-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-shared.d.ts +53 -0
- package/src/generators/slice/built-in-plan-shared.js +113 -0
- package/src/generators/slice/built-in-plan-shared.js.map +1 -0
- package/src/generators/slice/built-in-plan-testing-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-testing-files.js +2356 -0
- package/src/generators/slice/built-in-plan-testing-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-verification-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-verification-files.js +358 -0
- package/src/generators/slice/built-in-plan-verification-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-web-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-web-files.js +430 -0
- package/src/generators/slice/built-in-plan-web-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-workload-role-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-workload-role-files.js +2356 -0
- package/src/generators/slice/built-in-plan-workload-role-files.js.map +1 -0
- package/src/generators/slice/built-in-plan.d.ts +8 -0
- package/src/generators/slice/built-in-plan.js +264 -0
- package/src/generators/slice/built-in-plan.js.map +1 -0
- package/src/generators/slice/schema.json +1 -1
- package/src/generators/slice/slice.d.ts +1 -22
- package/src/generators/slice/slice.js +185 -1510
- package/src/generators/slice/slice.js.map +1 -1
- package/src/generators/upgrade/schema.d.ts +2 -0
- package/src/generators/upgrade/schema.json +11 -1
- package/src/generators/upgrade/upgrade.d.ts +51 -1
- package/src/generators/upgrade/upgrade.js +820 -82
- package/src/generators/upgrade/upgrade.js.map +1 -1
- package/src/generators/workload/frozen-container.d.ts +8 -0
- package/src/generators/workload/frozen-container.js +36 -0
- package/src/generators/workload/frozen-container.js.map +1 -0
- package/src/generators/workload/performance-registration.d.ts +32 -0
- package/src/generators/workload/performance-registration.js +226 -0
- package/src/generators/workload/performance-registration.js.map +1 -0
- package/src/generators/workload/reliability-registration.d.ts +16 -0
- package/src/generators/workload/reliability-registration.js +150 -0
- package/src/generators/workload/reliability-registration.js.map +1 -0
- package/src/generators/workload/schema.d.ts +1 -0
- package/src/generators/workload/schema.json +6 -1
- package/src/generators/workload/service-performance-files.d.ts +4 -0
- package/src/generators/workload/service-performance-files.js +1846 -0
- package/src/generators/workload/service-performance-files.js.map +1 -0
- package/src/generators/workload/workload.d.ts +3 -2
- package/src/generators/workload/workload.js +1083 -18
- package/src/generators/workload/workload.js.map +1 -1
- package/src/git-policy/action-pins.d.ts +10 -0
- package/src/git-policy/action-pins.js +10 -0
- package/src/git-policy/action-pins.js.map +1 -1
- package/src/git-policy/github-bootstrap.d.ts +14 -1
- package/src/git-policy/github-bootstrap.js +274 -46
- package/src/git-policy/github-bootstrap.js.map +1 -1
- package/src/index.d.ts +2 -0
- package/src/index.js +2 -0
- package/src/index.js.map +1 -1
- package/src/infrastructure-change/convergence.d.ts +13 -0
- package/src/infrastructure-change/convergence.js +85 -0
- package/src/infrastructure-change/convergence.js.map +1 -0
- package/src/infrastructure-change/drift.d.ts +13 -0
- package/src/infrastructure-change/drift.js +112 -0
- package/src/infrastructure-change/drift.js.map +1 -0
- package/src/infrastructure-change/index.d.ts +7 -0
- package/src/infrastructure-change/index.js +11 -0
- package/src/infrastructure-change/index.js.map +1 -0
- package/src/infrastructure-change/model.d.ts +253 -0
- package/src/infrastructure-change/model.js +28 -0
- package/src/infrastructure-change/model.js.map +1 -0
- package/src/infrastructure-change/normalize.d.ts +12 -0
- package/src/infrastructure-change/normalize.js +245 -0
- package/src/infrastructure-change/normalize.js.map +1 -0
- package/src/infrastructure-change/plan.d.ts +40 -0
- package/src/infrastructure-change/plan.js +361 -0
- package/src/infrastructure-change/plan.js.map +1 -0
- package/src/infrastructure-change/risk.d.ts +7 -0
- package/src/infrastructure-change/risk.js +269 -0
- package/src/infrastructure-change/risk.js.map +1 -0
- package/src/infrastructure-change/summary.d.ts +20 -0
- package/src/infrastructure-change/summary.js +130 -0
- package/src/infrastructure-change/summary.js.map +1 -0
- package/src/local-dev/context-discovery.d.ts +2 -0
- package/src/local-dev/context-discovery.js +59 -0
- package/src/local-dev/context-discovery.js.map +1 -0
- package/src/local-dev/contract-validation.d.ts +15 -0
- package/src/local-dev/contract-validation.js +84 -0
- package/src/local-dev/contract-validation.js.map +1 -0
- package/src/local-dev/contracts.d.ts +10 -1
- package/src/local-dev/contracts.js +57 -5
- package/src/local-dev/contracts.js.map +1 -1
- package/src/local-dev/control-contract.d.ts +67 -0
- package/src/local-dev/control-contract.js +180 -0
- package/src/local-dev/control-contract.js.map +1 -0
- package/src/local-dev/dev-command-core.d.ts +60 -0
- package/src/local-dev/dev-command-core.js +89 -0
- package/src/local-dev/dev-command-core.js.map +1 -0
- package/src/local-dev/effects.d.ts +16 -0
- package/src/local-dev/effects.js +63 -0
- package/src/local-dev/effects.js.map +1 -0
- package/src/local-dev/environment-inspector.d.ts +125 -0
- package/src/local-dev/environment-inspector.js +687 -0
- package/src/local-dev/environment-inspector.js.map +1 -0
- package/src/local-dev/environment-state.d.ts +113 -0
- package/src/local-dev/environment-state.js +463 -0
- package/src/local-dev/environment-state.js.map +1 -0
- package/src/local-dev/errors.d.ts +6 -0
- package/src/local-dev/errors.js +41 -0
- package/src/local-dev/errors.js.map +1 -0
- package/src/local-dev/fleet-client.d.ts +33 -0
- package/src/local-dev/fleet-client.js +156 -0
- package/src/local-dev/fleet-client.js.map +1 -0
- package/src/local-dev/fleet-configuration.d.ts +13 -0
- package/src/local-dev/fleet-configuration.js +71 -0
- package/src/local-dev/fleet-configuration.js.map +1 -0
- package/src/local-dev/fleet-inventory.d.ts +56 -0
- package/src/local-dev/fleet-inventory.js +469 -0
- package/src/local-dev/fleet-inventory.js.map +1 -0
- package/src/local-dev/fleet-ipc.d.ts +28 -0
- package/src/local-dev/fleet-ipc.js +267 -0
- package/src/local-dev/fleet-ipc.js.map +1 -0
- package/src/local-dev/fleet-launcher.d.ts +53 -0
- package/src/local-dev/fleet-launcher.js +379 -0
- package/src/local-dev/fleet-launcher.js.map +1 -0
- package/src/local-dev/fleet-lock.d.ts +41 -0
- package/src/local-dev/fleet-lock.js +135 -0
- package/src/local-dev/fleet-lock.js.map +1 -0
- package/src/local-dev/fleet-logs.d.ts +66 -0
- package/src/local-dev/fleet-logs.js +542 -0
- package/src/local-dev/fleet-logs.js.map +1 -0
- package/src/local-dev/fleet-process.d.ts +50 -0
- package/src/local-dev/fleet-process.js +289 -0
- package/src/local-dev/fleet-process.js.map +1 -0
- package/src/local-dev/fleet-runtime.d.ts +22 -0
- package/src/local-dev/fleet-runtime.js +368 -0
- package/src/local-dev/fleet-runtime.js.map +1 -0
- package/src/local-dev/fleet-session.d.ts +70 -0
- package/src/local-dev/fleet-session.js +301 -0
- package/src/local-dev/fleet-session.js.map +1 -0
- package/src/local-dev/fleet-slice-runner-daemon.d.ts +1 -0
- package/src/local-dev/fleet-slice-runner-daemon.js +21 -0
- package/src/local-dev/fleet-slice-runner-daemon.js.map +1 -0
- package/src/local-dev/fleet-startup.d.ts +22 -0
- package/src/local-dev/fleet-startup.js +114 -0
- package/src/local-dev/fleet-startup.js.map +1 -0
- package/src/local-dev/fleet-state.d.ts +62 -0
- package/src/local-dev/fleet-state.js +297 -0
- package/src/local-dev/fleet-state.js.map +1 -0
- package/src/local-dev/fleet-supervisor-daemon.d.ts +1 -0
- package/src/local-dev/fleet-supervisor-daemon.js +41 -0
- package/src/local-dev/fleet-supervisor-daemon.js.map +1 -0
- package/src/local-dev/fleet-supervisor.d.ts +52 -0
- package/src/local-dev/fleet-supervisor.js +384 -0
- package/src/local-dev/fleet-supervisor.js.map +1 -0
- package/src/local-dev/gateway.js +1 -1
- package/src/local-dev/gateway.js.map +1 -1
- package/src/local-dev/identity.js +4 -6
- package/src/local-dev/identity.js.map +1 -1
- package/src/local-dev/index.d.ts +1 -0
- package/src/local-dev/index.js +1 -0
- package/src/local-dev/index.js.map +1 -1
- package/src/local-dev/local-context.d.ts +62 -0
- package/src/local-dev/local-context.js +299 -0
- package/src/local-dev/local-context.js.map +1 -0
- package/src/local-dev/nx-workspace.d.ts +45 -0
- package/src/local-dev/nx-workspace.js +228 -0
- package/src/local-dev/nx-workspace.js.map +1 -0
- package/src/local-dev/personal-secret-ledger.d.ts +75 -0
- package/src/local-dev/personal-secret-ledger.js +391 -0
- package/src/local-dev/personal-secret-ledger.js.map +1 -0
- package/src/local-dev/personal-stage.d.ts +18 -0
- package/src/local-dev/personal-stage.js +129 -0
- package/src/local-dev/personal-stage.js.map +1 -0
- package/src/local-dev/private-state.d.ts +17 -0
- package/src/local-dev/private-state.js +254 -0
- package/src/local-dev/private-state.js.map +1 -0
- package/src/local-dev/process-identity.d.ts +9 -0
- package/src/local-dev/process-identity.js +79 -0
- package/src/local-dev/process-identity.js.map +1 -0
- package/src/local-dev/runtime-paths.d.ts +17 -0
- package/src/local-dev/runtime-paths.js +33 -0
- package/src/local-dev/runtime-paths.js.map +1 -0
- package/src/local-dev/secret-slice-claim.d.ts +17 -0
- package/src/local-dev/secret-slice-claim.js +75 -0
- package/src/local-dev/secret-slice-claim.js.map +1 -0
- package/src/local-dev/slice-claim.d.ts +36 -0
- package/src/local-dev/slice-claim.js +199 -0
- package/src/local-dev/slice-claim.js.map +1 -0
- package/src/local-dev/slice-runner.d.ts +121 -0
- package/src/local-dev/slice-runner.js +715 -0
- package/src/local-dev/slice-runner.js.map +1 -0
- package/src/local-dev/tls.js +51 -17
- package/src/local-dev/tls.js.map +1 -1
- package/src/ownership/composition.d.ts +5 -2
- package/src/ownership/composition.js +26 -3
- package/src/ownership/composition.js.map +1 -1
- package/src/ownership/hash.d.ts +1 -1
- package/src/ownership/hash.js +3 -1
- package/src/ownership/hash.js.map +1 -1
- package/src/ownership/record.d.ts +32 -1
- package/src/ownership/record.js +139 -2
- package/src/ownership/record.js.map +1 -1
- package/src/performance/cost-collection.d.ts +225 -0
- package/src/performance/cost-collection.js +825 -0
- package/src/performance/cost-collection.js.map +1 -0
- package/src/performance/cost-controls.d.ts +131 -0
- package/src/performance/cost-controls.js +336 -0
- package/src/performance/cost-controls.js.map +1 -0
- package/src/performance/evidence.d.ts +140 -0
- package/src/performance/evidence.js +599 -0
- package/src/performance/evidence.js.map +1 -0
- package/src/performance/index.d.ts +10 -0
- package/src/performance/index.js +14 -0
- package/src/performance/index.js.map +1 -0
- package/src/performance/load-safety.d.ts +84 -0
- package/src/performance/load-safety.js +346 -0
- package/src/performance/load-safety.js.map +1 -0
- package/src/performance/model.d.ts +129 -0
- package/src/performance/model.js +452 -0
- package/src/performance/model.js.map +1 -0
- package/src/performance/pr-artifact-budget.d.ts +42 -0
- package/src/performance/pr-artifact-budget.js +151 -0
- package/src/performance/pr-artifact-budget.js.map +1 -0
- package/src/performance/runner.d.ts +75 -0
- package/src/performance/runner.js +227 -0
- package/src/performance/runner.js.map +1 -0
- package/src/performance/scenario-endpoint.d.ts +1 -0
- package/src/performance/scenario-endpoint.js +5 -0
- package/src/performance/scenario-endpoint.js.map +1 -0
- package/src/performance/scenario.d.ts +193 -0
- package/src/performance/scenario.js +736 -0
- package/src/performance/scenario.js.map +1 -0
- package/src/performance/test-fixtures.d.ts +7 -0
- package/src/performance/test-fixtures.js +169 -0
- package/src/performance/test-fixtures.js.map +1 -0
- package/src/performance/unit-cost.d.ts +105 -0
- package/src/performance/unit-cost.js +364 -0
- package/src/performance/unit-cost.js.map +1 -0
- package/src/release/index.d.ts +4 -0
- package/src/release/index.js +8 -0
- package/src/release/index.js.map +1 -0
- package/src/release/lifecycle.d.ts +132 -0
- package/src/release/lifecycle.js +411 -0
- package/src/release/lifecycle.js.map +1 -0
- package/src/release/manifest.d.ts +148 -0
- package/src/release/manifest.js +503 -0
- package/src/release/manifest.js.map +1 -0
- package/src/release/rollout.d.ts +170 -0
- package/src/release/rollout.js +578 -0
- package/src/release/rollout.js.map +1 -0
- package/src/release/source-authority.d.ts +19 -0
- package/src/release/source-authority.js +195 -0
- package/src/release/source-authority.js.map +1 -0
- package/src/repository-policy/deployment-plan.d.ts +2 -1
- package/src/repository-policy/deployment-plan.js +2 -0
- package/src/repository-policy/deployment-plan.js.map +1 -1
- package/src/repository-policy/policy.d.ts +1 -1
- package/src/repository-policy/policy.js +29 -25
- package/src/repository-policy/policy.js.map +1 -1
- package/src/schemas/aggregate-count-evidence-v1.json +135 -0
- package/src/schemas/api-contract-baseline-v1.json +674 -0
- package/src/schemas/api-contract-compatibility-report-v1.json +126 -0
- package/src/schemas/aws-billing-actual-evidence-v1.json +407 -0
- package/src/schemas/blueprint-v1.json +18 -1
- package/src/schemas/data-lifecycle-policy-v1.json +517 -0
- package/src/schemas/generated-ownership-v2.json +22 -0
- package/src/schemas/performance-policy-v1.json +335 -0
- package/src/schemas/repository-policy-v1.json +1 -0
- package/src/schemas/testing-evidence-quarantine-v1.json +168 -0
- package/src/schemas/testing-evidence-result-v1.json +319 -0
- package/src/secrets/adapters.d.ts +49 -0
- package/src/secrets/adapters.js +184 -0
- package/src/secrets/adapters.js.map +1 -0
- package/src/secrets/aws-control-plane.d.ts +20 -0
- package/src/secrets/aws-control-plane.js +255 -0
- package/src/secrets/aws-control-plane.js.map +1 -0
- package/src/secrets/declaration-verification.d.ts +11 -0
- package/src/secrets/declaration-verification.js +68 -0
- package/src/secrets/declaration-verification.js.map +1 -0
- package/src/secrets/guardrails.d.ts +26 -0
- package/src/secrets/guardrails.js +328 -0
- package/src/secrets/guardrails.js.map +1 -0
- package/src/secrets/index.d.ts +12 -0
- package/src/secrets/index.js +16 -0
- package/src/secrets/index.js.map +1 -0
- package/src/secrets/metadata.d.ts +48 -0
- package/src/secrets/metadata.js +171 -0
- package/src/secrets/metadata.js.map +1 -0
- package/src/secrets/model.d.ts +49 -0
- package/src/secrets/model.js +125 -0
- package/src/secrets/model.js.map +1 -0
- package/src/secrets/operator.d.ts +101 -0
- package/src/secrets/operator.js +229 -0
- package/src/secrets/operator.js.map +1 -0
- package/src/secrets/permissions.d.ts +34 -0
- package/src/secrets/permissions.js +86 -0
- package/src/secrets/permissions.js.map +1 -0
- package/src/secrets/personal-command.d.ts +83 -0
- package/src/secrets/personal-command.js +197 -0
- package/src/secrets/personal-command.js.map +1 -0
- package/src/secrets/personal-ledger.d.ts +21 -0
- package/src/secrets/personal-ledger.js +135 -0
- package/src/secrets/personal-ledger.js.map +1 -0
- package/src/secrets/registry.d.ts +9 -0
- package/src/secrets/registry.js +86 -0
- package/src/secrets/registry.js.map +1 -0
- package/src/secrets/verification.d.ts +18 -0
- package/src/secrets/verification.js +139 -0
- package/src/secrets/verification.js.map +1 -0
- package/src/secrets/workload-access.d.ts +46 -0
- package/src/secrets/workload-access.js +163 -0
- package/src/secrets/workload-access.js.map +1 -0
- package/src/supply-chain/action-pins.d.ts +26 -0
- package/src/supply-chain/action-pins.js +208 -0
- package/src/supply-chain/action-pins.js.map +1 -0
- package/src/supply-chain/blueprint-trust-git.d.ts +130 -0
- package/src/supply-chain/blueprint-trust-git.js +1581 -0
- package/src/supply-chain/blueprint-trust-git.js.map +1 -0
- package/src/supply-chain/blueprint-trust-process.d.ts +4 -0
- package/src/supply-chain/blueprint-trust-process.js +88 -0
- package/src/supply-chain/blueprint-trust-process.js.map +1 -0
- package/src/supply-chain/blueprint-trust.d.ts +354 -0
- package/src/supply-chain/blueprint-trust.js +1558 -0
- package/src/supply-chain/blueprint-trust.js.map +1 -0
- package/src/supply-chain/blueprint-verification-authority.d.ts +62 -0
- package/src/supply-chain/blueprint-verification-authority.js +588 -0
- package/src/supply-chain/blueprint-verification-authority.js.map +1 -0
- package/src/supply-chain/blueprint-verification-execution.d.ts +68 -0
- package/src/supply-chain/blueprint-verification-execution.js +624 -0
- package/src/supply-chain/blueprint-verification-execution.js.map +1 -0
- package/src/supply-chain/build-output.d.ts +35 -0
- package/src/supply-chain/build-output.js +398 -0
- package/src/supply-chain/build-output.js.map +1 -0
- package/src/supply-chain/common.d.ts +21 -0
- package/src/supply-chain/common.js +107 -0
- package/src/supply-chain/common.js.map +1 -0
- package/src/supply-chain/container-artifact-contract.d.ts +23 -0
- package/src/supply-chain/container-artifact-contract.js +208 -0
- package/src/supply-chain/container-artifact-contract.js.map +1 -0
- package/src/supply-chain/container-release.d.ts +119 -0
- package/src/supply-chain/container-release.js +496 -0
- package/src/supply-chain/container-release.js.map +1 -0
- package/src/supply-chain/ecr-applicability.d.ts +19 -0
- package/src/supply-chain/ecr-applicability.js +103 -0
- package/src/supply-chain/ecr-applicability.js.map +1 -0
- package/src/supply-chain/ecr-scanning.d.ts +83 -0
- package/src/supply-chain/ecr-scanning.js +321 -0
- package/src/supply-chain/ecr-scanning.js.map +1 -0
- package/src/supply-chain/ecs-deployed-image.d.ts +85 -0
- package/src/supply-chain/ecs-deployed-image.js +300 -0
- package/src/supply-chain/ecs-deployed-image.js.map +1 -0
- package/src/supply-chain/errors.d.ts +6 -0
- package/src/supply-chain/errors.js +15 -0
- package/src/supply-chain/errors.js.map +1 -0
- package/src/supply-chain/generated-blueprint-trust-command.d.ts +4 -0
- package/src/supply-chain/generated-blueprint-trust-command.js +1362 -0
- package/src/supply-chain/generated-blueprint-trust-command.js.map +1 -0
- package/src/supply-chain/generated-command.d.ts +1 -0
- package/src/supply-chain/generated-command.js +687 -0
- package/src/supply-chain/generated-command.js.map +1 -0
- package/src/supply-chain/generated-container-release-command.d.ts +16 -0
- package/src/supply-chain/generated-container-release-command.js +2087 -0
- package/src/supply-chain/generated-container-release-command.js.map +1 -0
- package/src/supply-chain/generated-ecr-collector-command.d.ts +21 -0
- package/src/supply-chain/generated-ecr-collector-command.js +1338 -0
- package/src/supply-chain/generated-ecr-collector-command.js.map +1 -0
- package/src/supply-chain/generated-files.d.ts +13 -0
- package/src/supply-chain/generated-files.js +401 -0
- package/src/supply-chain/generated-files.js.map +1 -0
- package/src/supply-chain/generated-scanner-command.d.ts +1 -0
- package/src/supply-chain/generated-scanner-command.js +718 -0
- package/src/supply-chain/generated-scanner-command.js.map +1 -0
- package/src/supply-chain/index.d.ts +28 -0
- package/src/supply-chain/index.js +35 -0
- package/src/supply-chain/index.js.map +1 -0
- package/src/supply-chain/inventory.d.ts +79 -0
- package/src/supply-chain/inventory.js +717 -0
- package/src/supply-chain/inventory.js.map +1 -0
- package/src/supply-chain/license-expression.d.ts +7 -0
- package/src/supply-chain/license-expression.js +128 -0
- package/src/supply-chain/license-expression.js.map +1 -0
- package/src/supply-chain/pnpm-toolchain-authority.d.ts +31 -0
- package/src/supply-chain/pnpm-toolchain-authority.js +316 -0
- package/src/supply-chain/pnpm-toolchain-authority.js.map +1 -0
- package/src/supply-chain/policy.d.ts +105 -0
- package/src/supply-chain/policy.js +301 -0
- package/src/supply-chain/policy.js.map +1 -0
- package/src/supply-chain/publication.d.ts +48 -0
- package/src/supply-chain/publication.js +85 -0
- package/src/supply-chain/publication.js.map +1 -0
- package/src/supply-chain/sbom.d.ts +228 -0
- package/src/supply-chain/sbom.js +826 -0
- package/src/supply-chain/sbom.js.map +1 -0
- package/src/supply-chain/scanner.d.ts +77 -0
- package/src/supply-chain/scanner.js +502 -0
- package/src/supply-chain/scanner.js.map +1 -0
- package/src/supply-chain/vendored-source.d.ts +95 -0
- package/src/supply-chain/vendored-source.js +315 -0
- package/src/supply-chain/vendored-source.js.map +1 -0
- package/src/testing-evidence/fixture-scope.d.ts +52 -0
- package/src/testing-evidence/fixture-scope.js +140 -0
- package/src/testing-evidence/fixture-scope.js.map +1 -0
- package/src/testing-evidence/index.d.ts +5 -0
- package/src/testing-evidence/index.js +9 -0
- package/src/testing-evidence/index.js.map +1 -0
- package/src/testing-evidence/quarantine.d.ts +48 -0
- package/src/testing-evidence/quarantine.js +253 -0
- package/src/testing-evidence/quarantine.js.map +1 -0
- package/src/testing-evidence/result.d.ts +108 -0
- package/src/testing-evidence/result.js +571 -0
- package/src/testing-evidence/result.js.map +1 -0
- package/src/testing-evidence/runner-adapter.d.ts +51 -0
- package/src/testing-evidence/runner-adapter.js +288 -0
- package/src/testing-evidence/runner-adapter.js.map +1 -0
- package/src/testing-evidence/sensitive-artifacts.d.ts +13 -0
- package/src/testing-evidence/sensitive-artifacts.js +93 -0
- package/src/testing-evidence/sensitive-artifacts.js.map +1 -0
- package/src/work-markers/work-markers.js +4 -3
- package/src/work-markers/work-markers.js.map +1 -1
- package/src/workload-roles/account-baseline.d.ts +132 -0
- package/src/workload-roles/account-baseline.js +743 -0
- package/src/workload-roles/account-baseline.js.map +1 -0
- package/src/workload-roles/authority.d.ts +38 -0
- package/src/workload-roles/authority.js +156 -0
- package/src/workload-roles/authority.js.map +1 -0
- package/src/workload-roles/aws-adapter.d.ts +99 -0
- package/src/workload-roles/aws-adapter.js +416 -0
- package/src/workload-roles/aws-adapter.js.map +1 -0
- package/src/workload-roles/aws-internal-handler.d.ts +27 -0
- package/src/workload-roles/aws-internal-handler.js +58 -0
- package/src/workload-roles/aws-internal-handler.js.map +1 -0
- package/src/workload-roles/aws-s3-state.d.ts +52 -0
- package/src/workload-roles/aws-s3-state.js +164 -0
- package/src/workload-roles/aws-s3-state.js.map +1 -0
- package/src/workload-roles/aws-sdk-control-plane.d.ts +12 -0
- package/src/workload-roles/aws-sdk-control-plane.js +291 -0
- package/src/workload-roles/aws-sdk-control-plane.js.map +1 -0
- package/src/workload-roles/boundary.d.ts +33 -0
- package/src/workload-roles/boundary.js +130 -0
- package/src/workload-roles/boundary.js.map +1 -0
- package/src/workload-roles/convergence.d.ts +66 -0
- package/src/workload-roles/convergence.js +186 -0
- package/src/workload-roles/convergence.js.map +1 -0
- package/src/workload-roles/effective-policy.d.ts +51 -0
- package/src/workload-roles/effective-policy.js +183 -0
- package/src/workload-roles/effective-policy.js.map +1 -0
- package/src/workload-roles/handler.d.ts +43 -0
- package/src/workload-roles/handler.js +130 -0
- package/src/workload-roles/handler.js.map +1 -0
- package/src/workload-roles/history.d.ts +47 -0
- package/src/workload-roles/history.js +324 -0
- package/src/workload-roles/history.js.map +1 -0
- package/src/workload-roles/index.d.ts +17 -0
- package/src/workload-roles/index.js +21 -0
- package/src/workload-roles/index.js.map +1 -0
- package/src/workload-roles/injection.d.ts +119 -0
- package/src/workload-roles/injection.js +495 -0
- package/src/workload-roles/injection.js.map +1 -0
- package/src/workload-roles/manifest.d.ts +54 -0
- package/src/workload-roles/manifest.js +343 -0
- package/src/workload-roles/manifest.js.map +1 -0
- package/src/workload-roles/provisioner.d.ts +70 -0
- package/src/workload-roles/provisioner.js +231 -0
- package/src/workload-roles/provisioner.js.map +1 -0
- package/src/workload-roles/registration.d.ts +101 -0
- package/src/workload-roles/registration.js +457 -0
- package/src/workload-roles/registration.js.map +1 -0
- package/src/workload-roles/stage-boundary.d.ts +31 -0
- package/src/workload-roles/stage-boundary.js +208 -0
- package/src/workload-roles/stage-boundary.js.map +1 -0
- package/src/workload-roles/standard-slice.d.ts +54 -0
- package/src/workload-roles/standard-slice.js +252 -0
- package/src/workload-roles/standard-slice.js.map +1 -0
- package/migrations/standard-pre-v1-to-v1.md +0 -11
- package/src/foundation/aurora-logical-database.d.ts +0 -76
- package/src/foundation/aurora-logical-database.js +0 -419
- package/src/foundation/aurora-logical-database.js.map +0 -1
|
@@ -0,0 +1,630 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.renderSliceOperationsFiles = renderSliceOperationsFiles;
|
|
4
|
+
const index_js_1 = require("../../ownership/index.js");
|
|
5
|
+
const feature_registry_js_1 = require("../feature-registry.js");
|
|
6
|
+
const logging_registry_js_1 = require("../logging-registry.js");
|
|
7
|
+
const built_in_plan_shared_js_1 = require("./built-in-plan-shared.js");
|
|
8
|
+
/** @internal */
|
|
9
|
+
function renderSliceOperationsFiles(name, workspace = 'workspace', frameworkVersion = 'workspace-installed') {
|
|
10
|
+
return {
|
|
11
|
+
'operations/features.json': (0, built_in_plan_shared_js_1.json)({
|
|
12
|
+
features: [
|
|
13
|
+
{
|
|
14
|
+
description: 'Authentication and protected-access behavior.',
|
|
15
|
+
id: 'authorization',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
description: 'Queues, schedules, webhooks, provider delivery, and durable workflow behavior.',
|
|
19
|
+
id: 'async-work',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
description: 'Typed local and deployed dynamic configuration behavior.',
|
|
23
|
+
id: 'configuration',
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
description: 'Logical database health and lifecycle behavior.',
|
|
27
|
+
id: 'database',
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
description: 'Database bootstrap, migration, and protected retirement behavior.',
|
|
31
|
+
id: 'database-lifecycle',
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
description: 'Retention, export, correction, deletion, and hold behavior.',
|
|
35
|
+
id: 'data-lifecycle',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
description: 'Published and consumed domain-event behavior.',
|
|
39
|
+
id: 'events',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
description: 'Server/client boundaries, rendered-state accessibility, browser security, and visual evidence.',
|
|
43
|
+
id: 'frontend',
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
description: 'Health and operator-facing runtime behavior.',
|
|
47
|
+
id: 'operations',
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
description: 'Infrastructure planning, drift, approval, and convergence behavior.',
|
|
51
|
+
id: 'infrastructure-change',
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
description: 'Performance budgets, capacity limits, protected load, cost, and resource attribution.',
|
|
55
|
+
id: 'performance',
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
description: 'Immutable release, rollout, rollback, and cleanup behavior.',
|
|
59
|
+
id: 'release',
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
description: 'Service objectives, alarms, incidents, diagnostics, and recovery behavior.',
|
|
63
|
+
id: 'reliability',
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
description: 'Server-rendered web and authentication routes.',
|
|
67
|
+
id: 'web',
|
|
68
|
+
},
|
|
69
|
+
],
|
|
70
|
+
schemaVersion: feature_registry_js_1.SLICE_FEATURE_REGISTRY_SCHEMA_VERSION,
|
|
71
|
+
}),
|
|
72
|
+
'operations/log-queries.json': (0, built_in_plan_shared_js_1.json)({
|
|
73
|
+
queries: [
|
|
74
|
+
{
|
|
75
|
+
id: 'scoped-errors',
|
|
76
|
+
query: 'fields @timestamp, level, slice, feature, component, operation, message, outcome, correlationId | filter slice = ?slice and feature = ?feature and component = ?component and level in ["ERROR", "FATAL"] | sort @timestamp desc | limit 100',
|
|
77
|
+
required: ['slice', 'feature', 'component'],
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
id: 'correlation',
|
|
81
|
+
query: 'fields @timestamp, level, slice, feature, component, operation, message, outcome, correlationId, requestId, eventId | filter correlationId = ?correlationId | sort @timestamp asc | limit 200',
|
|
82
|
+
required: ['correlationId'],
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
id: 'event',
|
|
86
|
+
query: 'fields @timestamp, level, slice, feature, component, operation, message, outcome, correlationId, eventId, eventType | filter eventId = ?eventId | sort @timestamp asc | limit 200',
|
|
87
|
+
required: ['eventId'],
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
id: 'slow-successes',
|
|
91
|
+
query: 'fields @timestamp, level, slice, feature, component, operation, message, outcome, correlationId, attributes.durationMs | filter outcome = "success" and attributes.durationMs >= ?durationMs | sort attributes.durationMs desc | limit 100',
|
|
92
|
+
required: ['durationMs'],
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
id: 'grouped-failures',
|
|
96
|
+
query: 'fields @timestamp, level, slice, feature, component, operation, message, outcome | filter outcome = "failure" or level in ["ERROR", "FATAL"] | stats count() as failureCount by operation | sort failureCount desc | limit 100',
|
|
97
|
+
required: [],
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
id: 'data-protection-findings',
|
|
101
|
+
query: 'fields @timestamp, level, slice, feature, component, operation, message, outcome | filter ispresent(@dataProtection) | sort @timestamp desc | limit 100',
|
|
102
|
+
required: [],
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
id: 'database-lifecycle',
|
|
106
|
+
query: 'fields @timestamp, level, slice, feature, component, operation, message, outcome, correlationId, attributes.lifecycleEvent, attributes.databaseLifecycleId | filter feature = "database-lifecycle" | sort @timestamp asc | limit 200',
|
|
107
|
+
required: [],
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
id: 'async-recovery',
|
|
111
|
+
query: 'fields @timestamp, level, slice, feature, component, operation, message, outcome, correlationId, eventId, attributes.recoveryId, attributes.reportDigest | filter feature = "async-work" | sort @timestamp asc | limit 200',
|
|
112
|
+
required: [],
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
id: 'configuration-evaluation',
|
|
116
|
+
query: 'fields @timestamp, level, slice, feature, component, operation, outcome, attributes.provider, attributes.reason | filter feature = "configuration" | stats count() as evaluationCount by component, operation, outcome, attributes.provider, attributes.reason | limit 100',
|
|
117
|
+
required: [],
|
|
118
|
+
},
|
|
119
|
+
],
|
|
120
|
+
schemaVersion: 1,
|
|
121
|
+
}),
|
|
122
|
+
'operations/logging-components.json': (0, built_in_plan_shared_js_1.json)({
|
|
123
|
+
components: [
|
|
124
|
+
'api-health',
|
|
125
|
+
'api-protected',
|
|
126
|
+
'async-provider-delivery',
|
|
127
|
+
'async-recovery',
|
|
128
|
+
'async-schedule',
|
|
129
|
+
'async-webhook',
|
|
130
|
+
'async-workflow',
|
|
131
|
+
'authorization-delegations',
|
|
132
|
+
'data-rights',
|
|
133
|
+
'data-retention-review',
|
|
134
|
+
'database-health',
|
|
135
|
+
'database-records',
|
|
136
|
+
'event-consumer',
|
|
137
|
+
'event-publisher',
|
|
138
|
+
'configuration-evaluator',
|
|
139
|
+
'job-data-export-cleanup',
|
|
140
|
+
'job-data-retention',
|
|
141
|
+
'job-data-retention-maintenance',
|
|
142
|
+
'job-data-retention-maintenance-launcher',
|
|
143
|
+
'job-data-retention-orchestration',
|
|
144
|
+
'machine-client-provisioner',
|
|
145
|
+
'machine-authorization-proof',
|
|
146
|
+
'machine-authorization-proof-target',
|
|
147
|
+
'next-image-optimizer',
|
|
148
|
+
'next-revalidation-seeder',
|
|
149
|
+
'next-revalidation-subscriber',
|
|
150
|
+
'next-server',
|
|
151
|
+
],
|
|
152
|
+
databaseComponents: [
|
|
153
|
+
'database-bootstrap',
|
|
154
|
+
'database-migration',
|
|
155
|
+
'database-migration-orchestration',
|
|
156
|
+
'database-retirement',
|
|
157
|
+
'database-retirement-orchestration',
|
|
158
|
+
],
|
|
159
|
+
schemaVersion: logging_registry_js_1.SLICE_LOGGING_REGISTRY_SCHEMA_VERSION,
|
|
160
|
+
}),
|
|
161
|
+
'docs/runbooks/log-investigation.md': `# Log investigation
|
|
162
|
+
|
|
163
|
+
Start with the generated \`operations/log-queries.json\` templates and the exact
|
|
164
|
+
\`/ebk/<stage>/${name}/<component>[/<resource>]\` log-group prefix. Keep the time
|
|
165
|
+
range and selected groups bounded. Supply only validated correlation or event
|
|
166
|
+
identifiers; do not interpolate arbitrary Logs Insights syntax.
|
|
167
|
+
|
|
168
|
+
The normal metadata observer cannot read protected raw logs. A separately
|
|
169
|
+
authorized diagnostic investigator may run a bounded, attributable query.
|
|
170
|
+
Unmasking data-protection findings is a different break-glass authority and is
|
|
171
|
+
not implied by query access. Retained evidence contains the sanitized query
|
|
172
|
+
plan, selected group names, time range, scanned bytes, and redacted findings,
|
|
173
|
+
not raw records.
|
|
174
|
+
|
|
175
|
+
Use \`scoped-errors\` for one registered feature/component, \`correlation\` for
|
|
176
|
+
HTTP, Next.js, Service, Job, and event flow, \`event\` for
|
|
177
|
+
publisher-to-consumer delivery, \`slow-successes\` for latency investigation,
|
|
178
|
+
\`grouped-failures\` for terminal runtime failure trends, and
|
|
179
|
+
\`data-protection-findings\` for detector metadata without matching content.
|
|
180
|
+
Use \`database-lifecycle\` for bootstrap, migration, and protected retirement.
|
|
181
|
+
Resolve ownership through \`operations/features.json\`, then follow the feature
|
|
182
|
+
runbook. Do not treat an empty query result as incident resolution.
|
|
183
|
+
`,
|
|
184
|
+
'scripts/verify-slice.mjs': `import { readFileSync } from 'node:fs';
|
|
185
|
+
|
|
186
|
+
const ownership = JSON.parse(
|
|
187
|
+
readFileSync(new URL('../.ebk/ownership.json', import.meta.url), 'utf8'),
|
|
188
|
+
);
|
|
189
|
+
if (ownership.schemaVersion !== ${index_js_1.GENERATED_OWNERSHIP_SCHEMA_VERSION} || ownership.slice !== '${name}') {
|
|
190
|
+
throw new Error('Slice ownership metadata is missing or incompatible.');
|
|
191
|
+
}
|
|
192
|
+
if (!ownership.foundation.capabilities.includes('deployment')) {
|
|
193
|
+
throw new Error('Slice does not declare the Foundation deployment capability.');
|
|
194
|
+
}
|
|
195
|
+
const databaseBindings = JSON.parse(
|
|
196
|
+
readFileSync(new URL('../database/bindings.json', import.meta.url), 'utf8'),
|
|
197
|
+
);
|
|
198
|
+
const featureRegistry = JSON.parse(
|
|
199
|
+
readFileSync(new URL('../operations/features.json', import.meta.url), 'utf8'),
|
|
200
|
+
);
|
|
201
|
+
const asyncContract = JSON.parse(
|
|
202
|
+
readFileSync(
|
|
203
|
+
new URL('../async/work-contract.json', import.meta.url),
|
|
204
|
+
'utf8',
|
|
205
|
+
),
|
|
206
|
+
);
|
|
207
|
+
const configurationDeclarations = JSON.parse(
|
|
208
|
+
readFileSync(
|
|
209
|
+
new URL('../configuration/declarations.json', import.meta.url),
|
|
210
|
+
'utf8',
|
|
211
|
+
),
|
|
212
|
+
);
|
|
213
|
+
const infrastructureChange = JSON.parse(
|
|
214
|
+
readFileSync(
|
|
215
|
+
new URL('../operations/infrastructure-change.json', import.meta.url),
|
|
216
|
+
'utf8',
|
|
217
|
+
),
|
|
218
|
+
);
|
|
219
|
+
const frontend = JSON.parse(
|
|
220
|
+
readFileSync(new URL('../frontend/contract.json', import.meta.url), 'utf8'),
|
|
221
|
+
);
|
|
222
|
+
const performance = JSON.parse(
|
|
223
|
+
readFileSync(
|
|
224
|
+
new URL('../operations/performance.json', import.meta.url),
|
|
225
|
+
'utf8',
|
|
226
|
+
),
|
|
227
|
+
);
|
|
228
|
+
const release = JSON.parse(
|
|
229
|
+
readFileSync(new URL('../operations/release.json', import.meta.url), 'utf8'),
|
|
230
|
+
);
|
|
231
|
+
const reliability = JSON.parse(
|
|
232
|
+
readFileSync(
|
|
233
|
+
new URL('../operations/reliability.json', import.meta.url),
|
|
234
|
+
'utf8',
|
|
235
|
+
),
|
|
236
|
+
);
|
|
237
|
+
for (const [label, document] of [
|
|
238
|
+
['async work', asyncContract],
|
|
239
|
+
['configuration', configurationDeclarations],
|
|
240
|
+
['frontend', frontend],
|
|
241
|
+
['infrastructure change', infrastructureChange],
|
|
242
|
+
['performance', performance],
|
|
243
|
+
['release', release],
|
|
244
|
+
['reliability', reliability],
|
|
245
|
+
]) {
|
|
246
|
+
if (
|
|
247
|
+
document?.schemaVersion !== 1 ||
|
|
248
|
+
document?.slice !== '${name}'
|
|
249
|
+
) {
|
|
250
|
+
throw new Error(label + ' descriptor is missing or incompatible.');
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
const hasDatabaseBinding =
|
|
254
|
+
databaseBindings &&
|
|
255
|
+
typeof databaseBindings === 'object' &&
|
|
256
|
+
!Array.isArray(databaseBindings) &&
|
|
257
|
+
Object.keys(databaseBindings).length > 0;
|
|
258
|
+
const hasDatabaseLifecycleFeature =
|
|
259
|
+
featureRegistry?.schemaVersion === ${feature_registry_js_1.SLICE_FEATURE_REGISTRY_SCHEMA_VERSION} &&
|
|
260
|
+
Array.isArray(featureRegistry.features) &&
|
|
261
|
+
featureRegistry.features.some(
|
|
262
|
+
(feature) => feature?.id === 'database-lifecycle',
|
|
263
|
+
);
|
|
264
|
+
if (hasDatabaseBinding && !hasDatabaseLifecycleFeature) {
|
|
265
|
+
throw new Error(
|
|
266
|
+
'A Slice with a database binding must retain the database-lifecycle feature.',
|
|
267
|
+
);
|
|
268
|
+
}
|
|
269
|
+
process.stdout.write('${name} slice source contract verified.\\n');
|
|
270
|
+
`,
|
|
271
|
+
'scripts/verify-live-mode.mjs': `const origin = process.env.EBK_FLEET_ORIGIN?.trim();
|
|
272
|
+
if (origin) {
|
|
273
|
+
const parsed = new URL(origin);
|
|
274
|
+
const supportedHostname = parsed.hostname.endsWith('.ebk.localhost') || parsed.hostname.endsWith('.test');
|
|
275
|
+
if (parsed.protocol !== 'https:' || parsed.origin !== origin || !supportedHostname) {
|
|
276
|
+
throw new Error('EBK_FLEET_ORIGIN must be an exact HTTPS *.ebk.localhost or adopter-managed *.test origin.');
|
|
277
|
+
}
|
|
278
|
+
if (process.env.EBK_SECURE_COOKIES !== 'true') {
|
|
279
|
+
throw new Error('Fleet development requires EBK_SECURE_COOKIES=true.');
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
process.stdout.write('${name} live-mode prerequisites verified.\\n');
|
|
283
|
+
`,
|
|
284
|
+
'scripts/check-database.mjs': `import { existsSync, readFileSync } from 'node:fs';
|
|
285
|
+
import { createDatabaseBindingPlan } from '@empire-builder-kit/nx/foundation';
|
|
286
|
+
import databaseBindings from '../database/bindings.json' with { type: 'json' };
|
|
287
|
+
|
|
288
|
+
const migration = new URL('../database/migrations/0000_initial.sql', import.meta.url);
|
|
289
|
+
if (!existsSync(migration) || !readFileSync(migration, 'utf8').includes('CREATE TABLE')) {
|
|
290
|
+
throw new Error('The initial database migration is missing or invalid.');
|
|
291
|
+
}
|
|
292
|
+
const plan = createDatabaseBindingPlan(databaseBindings, {
|
|
293
|
+
slice: '${name}',
|
|
294
|
+
stage: process.env.EBK_STAGE ?? 'development',
|
|
295
|
+
});
|
|
296
|
+
if (!plan.active.primary) throw new Error('Database binding "primary" is required.');
|
|
297
|
+
process.stdout.write('${name} database history verified.\\n');
|
|
298
|
+
`,
|
|
299
|
+
'scripts/local-database.mjs': `import { spawnSync } from 'node:child_process';
|
|
300
|
+
import { createDatabaseBindingPlan, resolveLocalDatabaseContract } from '@empire-builder-kit/nx/foundation';
|
|
301
|
+
import databaseBindings from '../database/bindings.json' with { type: 'json' };
|
|
302
|
+
|
|
303
|
+
const action = process.argv[2];
|
|
304
|
+
if (action !== 'up' && action !== 'down') {
|
|
305
|
+
throw new Error('Usage: node scripts/local-database.mjs <up|down>');
|
|
306
|
+
}
|
|
307
|
+
const plan = createDatabaseBindingPlan(databaseBindings, {
|
|
308
|
+
slice: '${name}',
|
|
309
|
+
stage: 'development',
|
|
310
|
+
});
|
|
311
|
+
const activeDatabase = plan.active.primary;
|
|
312
|
+
if (!activeDatabase) throw new Error('Database binding "primary" is required.');
|
|
313
|
+
const local = resolveLocalDatabaseContract({
|
|
314
|
+
database: activeDatabase,
|
|
315
|
+
slice: '${name}',
|
|
316
|
+
});
|
|
317
|
+
const project = process.env.COMPOSE_PROJECT_NAME ?? ('ebk-${name}-' + activeDatabase)
|
|
318
|
+
.replace(/[^a-z0-9_-]/g, '_')
|
|
319
|
+
.toLowerCase();
|
|
320
|
+
const args = ['compose', '--project-name', project, '-f', 'database/docker-compose.yml'];
|
|
321
|
+
args.push(...(action === 'up' ? ['up', '-d', '--wait'] : ['down']));
|
|
322
|
+
const result = spawnSync('docker', args, {
|
|
323
|
+
env: {
|
|
324
|
+
...process.env,
|
|
325
|
+
EBK_LOCAL_DATABASE: local.database,
|
|
326
|
+
EBK_LOCAL_DATABASE_PASSWORD: local.password,
|
|
327
|
+
EBK_LOCAL_DATABASE_PORT: String(local.port),
|
|
328
|
+
EBK_LOCAL_DATABASE_USERNAME: local.username,
|
|
329
|
+
},
|
|
330
|
+
stdio: 'inherit',
|
|
331
|
+
});
|
|
332
|
+
if (result.error) throw result.error;
|
|
333
|
+
if (result.status !== 0) process.exit(result.status ?? 1);
|
|
334
|
+
`,
|
|
335
|
+
'scripts/confirm-deploy.mjs': `const stageArg = process.argv.find((value) => value.startsWith('--stage='));
|
|
336
|
+
const stage = stageArg?.slice('--stage='.length) ?? 'development';
|
|
337
|
+
process.stdout.write('${name} infrastructure and database migrations completed for ' + stage + '.\\n');
|
|
338
|
+
`,
|
|
339
|
+
'scripts/migrate-database.mjs': `import { createHash } from 'node:crypto';
|
|
340
|
+
import {
|
|
341
|
+
DescribeExecutionCommand,
|
|
342
|
+
SFNClient,
|
|
343
|
+
StartExecutionCommand,
|
|
344
|
+
} from '@aws-sdk/client-sfn';
|
|
345
|
+
import { GetParameterCommand, SSMClient } from '@aws-sdk/client-ssm';
|
|
346
|
+
import {
|
|
347
|
+
createDatabaseBindingPlan,
|
|
348
|
+
productSliceMigrationPath,
|
|
349
|
+
resolveFoundationStages,
|
|
350
|
+
selectDatabaseTarget,
|
|
351
|
+
} from '@empire-builder-kit/nx/foundation';
|
|
352
|
+
import databaseBindings from '../database/bindings.json' with { type: 'json' };
|
|
353
|
+
|
|
354
|
+
const stageArg = process.argv.find((value) => value.startsWith('--stage='));
|
|
355
|
+
const foundationStageArg = process.argv.find((value) =>
|
|
356
|
+
value.startsWith('--foundationStage='),
|
|
357
|
+
);
|
|
358
|
+
const { consumerStage: stage, foundationStage } = resolveFoundationStages({
|
|
359
|
+
consumerStage: stageArg?.slice('--stage='.length) ?? 'development',
|
|
360
|
+
foundationStage:
|
|
361
|
+
foundationStageArg?.slice('--foundationStage='.length) ??
|
|
362
|
+
process.env.EBK_FOUNDATION_STAGE,
|
|
363
|
+
});
|
|
364
|
+
const bindingPlan = createDatabaseBindingPlan(databaseBindings, {
|
|
365
|
+
slice: '${name}',
|
|
366
|
+
stage,
|
|
367
|
+
});
|
|
368
|
+
const databaseArg = process.argv.find((value) =>
|
|
369
|
+
value.startsWith('--database='),
|
|
370
|
+
);
|
|
371
|
+
const selectedDatabase = selectDatabaseTarget(bindingPlan, {
|
|
372
|
+
database: databaseArg?.slice('--database='.length),
|
|
373
|
+
});
|
|
374
|
+
|
|
375
|
+
const parameterName = productSliceMigrationPath(
|
|
376
|
+
foundationStage,
|
|
377
|
+
stage,
|
|
378
|
+
'${name}',
|
|
379
|
+
selectedDatabase,
|
|
380
|
+
);
|
|
381
|
+
const parameter = await new SSMClient({}).send(
|
|
382
|
+
new GetParameterCommand({ Name: parameterName }),
|
|
383
|
+
);
|
|
384
|
+
const stateMachineArn = parameter.Parameter?.Value;
|
|
385
|
+
if (!stateMachineArn) {
|
|
386
|
+
throw new Error(
|
|
387
|
+
'Database migration state machine ARN is missing at ' +
|
|
388
|
+
parameterName +
|
|
389
|
+
'. Deploy Slice infrastructure before running migrations.',
|
|
390
|
+
);
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
const sourceCommit = (
|
|
394
|
+
process.env.GITHUB_SHA ??
|
|
395
|
+
process.env.EBK_SOURCE_COMMIT ??
|
|
396
|
+
'local'
|
|
397
|
+
).replace(/[^A-Za-z0-9_-]/g, '-');
|
|
398
|
+
const runIdentity = (
|
|
399
|
+
process.env.GITHUB_RUN_ID ??
|
|
400
|
+
process.env.EBK_MIGRATION_RUN_ID ??
|
|
401
|
+
String(Date.now())
|
|
402
|
+
).replace(/[^A-Za-z0-9_-]/g, '-');
|
|
403
|
+
const runAttempt = (
|
|
404
|
+
process.env.GITHUB_RUN_ATTEMPT ??
|
|
405
|
+
'1'
|
|
406
|
+
).replace(/[^A-Za-z0-9_-]/g, '-');
|
|
407
|
+
if (!/^\\d+$/.test(runAttempt)) {
|
|
408
|
+
throw new Error('GITHUB_RUN_ATTEMPT must be a positive integer.');
|
|
409
|
+
}
|
|
410
|
+
const parsedRunAttempt = Number.parseInt(runAttempt, 10);
|
|
411
|
+
if (!Number.isSafeInteger(parsedRunAttempt) || parsedRunAttempt < 1) {
|
|
412
|
+
throw new Error('GITHUB_RUN_ATTEMPT must be a positive integer.');
|
|
413
|
+
}
|
|
414
|
+
const executionIdentity = createHash('sha256')
|
|
415
|
+
.update([
|
|
416
|
+
'${name}',
|
|
417
|
+
selectedDatabase,
|
|
418
|
+
runIdentity,
|
|
419
|
+
sourceCommit,
|
|
420
|
+
].join('\\0'))
|
|
421
|
+
.digest('hex')
|
|
422
|
+
.slice(0, 16);
|
|
423
|
+
const baseExecutionName = [
|
|
424
|
+
'ebk',
|
|
425
|
+
'${name}'.slice(0, 20),
|
|
426
|
+
selectedDatabase.slice(0, 20),
|
|
427
|
+
executionIdentity,
|
|
428
|
+
].join('-').slice(0, 80);
|
|
429
|
+
const databaseLifecycleCorrelationId =
|
|
430
|
+
'dbm-' + executionIdentity + '-' + runAttempt;
|
|
431
|
+
const sfn = new SFNClient({});
|
|
432
|
+
const executionArnFor = (name) =>
|
|
433
|
+
stateMachineArn.replace(':stateMachine:', ':execution:') + ':' + name;
|
|
434
|
+
const describeExecution = async (name) => {
|
|
435
|
+
try {
|
|
436
|
+
return await sfn.send(
|
|
437
|
+
new DescribeExecutionCommand({ executionArn: executionArnFor(name) }),
|
|
438
|
+
);
|
|
439
|
+
} catch (error) {
|
|
440
|
+
if (
|
|
441
|
+
error &&
|
|
442
|
+
typeof error === 'object' &&
|
|
443
|
+
error.name === 'ExecutionDoesNotExist'
|
|
444
|
+
) {
|
|
445
|
+
return undefined;
|
|
446
|
+
}
|
|
447
|
+
throw error;
|
|
448
|
+
}
|
|
449
|
+
};
|
|
450
|
+
const startExecution = async (name) => {
|
|
451
|
+
try {
|
|
452
|
+
await sfn.send(
|
|
453
|
+
new StartExecutionCommand({
|
|
454
|
+
input: JSON.stringify({
|
|
455
|
+
databaseLifecycleCorrelationId,
|
|
456
|
+
databaseIdentifier: selectedDatabase,
|
|
457
|
+
sourceCommit,
|
|
458
|
+
stage,
|
|
459
|
+
slice: '${name}',
|
|
460
|
+
workflowRunId: runIdentity,
|
|
461
|
+
workflowRunAttempt: runAttempt,
|
|
462
|
+
}),
|
|
463
|
+
name,
|
|
464
|
+
stateMachineArn,
|
|
465
|
+
}),
|
|
466
|
+
);
|
|
467
|
+
} catch (error) {
|
|
468
|
+
if (
|
|
469
|
+
!error ||
|
|
470
|
+
typeof error !== 'object' ||
|
|
471
|
+
error.name !== 'ExecutionAlreadyExists'
|
|
472
|
+
) {
|
|
473
|
+
throw error;
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
};
|
|
477
|
+
const terminal = new Set([
|
|
478
|
+
'ABORTED',
|
|
479
|
+
'FAILED',
|
|
480
|
+
'SUCCEEDED',
|
|
481
|
+
'TIMED_OUT',
|
|
482
|
+
]);
|
|
483
|
+
|
|
484
|
+
let executionName = baseExecutionName;
|
|
485
|
+
let execution = await describeExecution(executionName);
|
|
486
|
+
if (
|
|
487
|
+
execution &&
|
|
488
|
+
terminal.has(execution.status ?? 'UNKNOWN') &&
|
|
489
|
+
execution.status !== 'SUCCEEDED' &&
|
|
490
|
+
parsedRunAttempt > 1
|
|
491
|
+
) {
|
|
492
|
+
const retrySuffix = '-retry-' + runAttempt;
|
|
493
|
+
executionName =
|
|
494
|
+
baseExecutionName.slice(0, 80 - retrySuffix.length) + retrySuffix;
|
|
495
|
+
execution = await describeExecution(executionName);
|
|
496
|
+
}
|
|
497
|
+
if (!execution) {
|
|
498
|
+
await startExecution(executionName);
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
const executionArn = executionArnFor(executionName);
|
|
502
|
+
let status = execution?.status ?? 'RUNNING';
|
|
503
|
+
process.stdout.write(
|
|
504
|
+
'[database-migration] execution=' + executionArn + ' status=' + status + '\\n',
|
|
505
|
+
);
|
|
506
|
+
const deadline = Date.now() + 95 * 60 * 1000;
|
|
507
|
+
while (!terminal.has(status)) {
|
|
508
|
+
if (Date.now() >= deadline) {
|
|
509
|
+
throw new Error(
|
|
510
|
+
'Timed out waiting for database migration execution ' + executionArn,
|
|
511
|
+
);
|
|
512
|
+
}
|
|
513
|
+
await new Promise((resolve) => setTimeout(resolve, 5_000));
|
|
514
|
+
const execution = await sfn.send(
|
|
515
|
+
new DescribeExecutionCommand({ executionArn }),
|
|
516
|
+
);
|
|
517
|
+
status = execution.status ?? 'UNKNOWN';
|
|
518
|
+
}
|
|
519
|
+
if (status !== 'SUCCEEDED') {
|
|
520
|
+
throw new Error(
|
|
521
|
+
'Database migration execution ' +
|
|
522
|
+
executionArn +
|
|
523
|
+
' ended with status ' +
|
|
524
|
+
status +
|
|
525
|
+
'. Inspect its Step Functions and CloudWatch records.',
|
|
526
|
+
);
|
|
527
|
+
}
|
|
528
|
+
process.stdout.write(
|
|
529
|
+
'[database-migration] execution=' + executionArn + ' status=SUCCEEDED\\n',
|
|
530
|
+
);
|
|
531
|
+
`,
|
|
532
|
+
'sst-env.d.ts': `// Bootstrap placeholder. SST overwrites this file after install, dev, or deploy.
|
|
533
|
+
export {};
|
|
534
|
+
`,
|
|
535
|
+
'sst.config.ts': `export default $config({
|
|
536
|
+
app(input: { stage?: string } | undefined) {
|
|
537
|
+
const stage = input?.stage ?? 'development';
|
|
538
|
+
const production = input?.stage === 'production';
|
|
539
|
+
return {
|
|
540
|
+
name: '${name}',
|
|
541
|
+
removal: production ? 'retain' : 'remove',
|
|
542
|
+
protect: production,
|
|
543
|
+
home: 'aws',
|
|
544
|
+
providers: {
|
|
545
|
+
aws: {
|
|
546
|
+
defaultTags: {
|
|
547
|
+
tags: {
|
|
548
|
+
'ebk:cost-allocation': 'unallocated',
|
|
549
|
+
'ebk:cost-scope': '${workspace}/${name}/' + stage,
|
|
550
|
+
'ebk:framework-version': '${frameworkVersion}',
|
|
551
|
+
'ebk:managed-by': 'empire-builder-kit',
|
|
552
|
+
'ebk:owner': '${name}-product',
|
|
553
|
+
'ebk:production-profile':
|
|
554
|
+
process.env.EBK_PRODUCTION_PROFILE ?? 'standard',
|
|
555
|
+
'ebk:repository':
|
|
556
|
+
process.env.GITHUB_REPOSITORY ?? '${workspace}',
|
|
557
|
+
'ebk:slice': '${name}',
|
|
558
|
+
'ebk:stage': stage,
|
|
559
|
+
'ebk:workspace': '${workspace}',
|
|
560
|
+
},
|
|
561
|
+
},
|
|
562
|
+
region: process.env.AWS_REGION ?? 'us-east-1',
|
|
563
|
+
},
|
|
564
|
+
},
|
|
565
|
+
};
|
|
566
|
+
},
|
|
567
|
+
async run() {
|
|
568
|
+
const personalStagePattern = /^personal-[a-z0-9](?:[a-z0-9-]{0,34}[a-z0-9])?$/;
|
|
569
|
+
if ($dev && !personalStagePattern.test($app.stage)) {
|
|
570
|
+
throw new Error(
|
|
571
|
+
'SST dev requires the framework-derived personal stage. Use ebk dev.',
|
|
572
|
+
);
|
|
573
|
+
}
|
|
574
|
+
if (!$dev && personalStagePattern.test($app.stage)) {
|
|
575
|
+
throw new Error(
|
|
576
|
+
'A personal stage may run only through the framework development adapter.',
|
|
577
|
+
);
|
|
578
|
+
}
|
|
579
|
+
const workloadRoles = $dev
|
|
580
|
+
? undefined
|
|
581
|
+
: await (async () => {
|
|
582
|
+
const { preflightStandardSliceWorkloadRoles } = await import(
|
|
583
|
+
'./infra/workload-roles/preflight.js'
|
|
584
|
+
);
|
|
585
|
+
return preflightStandardSliceWorkloadRoles($app.stage);
|
|
586
|
+
})();
|
|
587
|
+
const { app } = await import('./infra/index.js');
|
|
588
|
+
return app(workloadRoles);
|
|
589
|
+
},
|
|
590
|
+
});
|
|
591
|
+
`,
|
|
592
|
+
'tsconfig.json': (0, built_in_plan_shared_js_1.json)({
|
|
593
|
+
extends: '../../tsconfig.base.json',
|
|
594
|
+
compilerOptions: {
|
|
595
|
+
allowJs: true,
|
|
596
|
+
esModuleInterop: true,
|
|
597
|
+
jsx: 'react-jsx',
|
|
598
|
+
lib: ['dom', 'dom.iterable', 'es2022'],
|
|
599
|
+
module: 'esnext',
|
|
600
|
+
moduleResolution: 'bundler',
|
|
601
|
+
plugins: [{ name: 'next' }],
|
|
602
|
+
resolveJsonModule: true,
|
|
603
|
+
types: ['node'],
|
|
604
|
+
},
|
|
605
|
+
include: [
|
|
606
|
+
'async/**/*.ts',
|
|
607
|
+
'authorization/**/*.ts',
|
|
608
|
+
'configuration/**/*.ts',
|
|
609
|
+
'contracts/**/*.ts',
|
|
610
|
+
'database/**/*.ts',
|
|
611
|
+
'data/**/*.ts',
|
|
612
|
+
'data/**/*.cts',
|
|
613
|
+
'api/**/*.ts',
|
|
614
|
+
'infra/**/*.ts',
|
|
615
|
+
'jobs/**/*.ts',
|
|
616
|
+
'reliability/**/*.ts',
|
|
617
|
+
'secrets/**/*.ts',
|
|
618
|
+
'services/**/*.ts',
|
|
619
|
+
'web/**/*.ts',
|
|
620
|
+
'web/**/*.tsx',
|
|
621
|
+
'vitest.config.ts',
|
|
622
|
+
'sst.config.ts',
|
|
623
|
+
'sst-env.d.ts',
|
|
624
|
+
'ebk-globals.d.ts',
|
|
625
|
+
],
|
|
626
|
+
exclude: ['.sst', 'dist', 'node_modules'],
|
|
627
|
+
}),
|
|
628
|
+
};
|
|
629
|
+
}
|
|
630
|
+
//# sourceMappingURL=built-in-plan-operations-files.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"built-in-plan-operations-files.js","sourceRoot":"","sources":["../../../../../../packages/nx/src/generators/slice/built-in-plan-operations-files.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export declare const PRODUCT_PERFORMANCE_SEEDED_PATHS: readonly ["docs/runbooks/performance-capacity-cost.md", "performance/aggregate-count-provider.ts", "performance/cost-allocation.json", "performance/cost-collection.json", "performance/load-scenarios.json", "performance/policy.json"];
|
|
2
|
+
/** @internal */
|
|
3
|
+
export declare function renderProductPerformanceFiles(name: string): Readonly<Record<string, string>>;
|