@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,1101 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.renderProductDataDeletionFiles = renderProductDataDeletionFiles;
|
|
4
|
+
const built_in_plan_shared_js_1 = require("./built-in-plan-shared.js");
|
|
5
|
+
/** @internal */
|
|
6
|
+
function renderProductDataDeletionFiles(name, pascalName, workspace) {
|
|
7
|
+
const identifierPrefix = (0, built_in_plan_shared_js_1.lowerCamelIdentifier)(pascalName);
|
|
8
|
+
return {
|
|
9
|
+
'data/lifecycle-consumers.json': (0, built_in_plan_shared_js_1.json)({
|
|
10
|
+
acceptedSources: [name],
|
|
11
|
+
schemaVersion: 1,
|
|
12
|
+
}),
|
|
13
|
+
'data/pseudonymous-reference.ts': `import {
|
|
14
|
+
createDataLifecyclePseudonymousReference,
|
|
15
|
+
} from '@empire-builder-kit/runtime/data-lifecycle';
|
|
16
|
+
|
|
17
|
+
function reference(namespace: string, value: string): string {
|
|
18
|
+
return createDataLifecyclePseudonymousReference({
|
|
19
|
+
categoryId: namespace,
|
|
20
|
+
slice: '${name}',
|
|
21
|
+
value,
|
|
22
|
+
});
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/** One Slice-local identity for the record across holds, ledger, and events. */
|
|
26
|
+
export function productRecordReference(recordId: string): string {
|
|
27
|
+
return reference('product-record', recordId);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/** Safe request identity retained after the approval row expires. */
|
|
31
|
+
export function approvalReference(approvalRequestId: string): string {
|
|
32
|
+
return reference('approval-request', approvalRequestId);
|
|
33
|
+
}
|
|
34
|
+
`,
|
|
35
|
+
'database/deletions.ts': `import { createHash } from 'node:crypto';
|
|
36
|
+
import {
|
|
37
|
+
EventBridgeClient,
|
|
38
|
+
PutEventsCommand,
|
|
39
|
+
type PutEventsRequestEntry,
|
|
40
|
+
} from '@aws-sdk/client-eventbridge';
|
|
41
|
+
import type { RuntimeHttpEvent } from '@empire-builder-kit/runtime';
|
|
42
|
+
import type { Principal } from '@empire-builder-kit/runtime/auth';
|
|
43
|
+
import { createContractHttpJsonHandler } from '@empire-builder-kit/runtime/api-server';
|
|
44
|
+
import {
|
|
45
|
+
assertAuthorizationAllowed,
|
|
46
|
+
beginApprovalExecution,
|
|
47
|
+
completeApprovalExecution,
|
|
48
|
+
createApprovalRequest,
|
|
49
|
+
createDirectAuthorizationPrincipal,
|
|
50
|
+
decideApprovalRequest,
|
|
51
|
+
type ApprovalRequest,
|
|
52
|
+
} from '@empire-builder-kit/runtime/authorization';
|
|
53
|
+
import {
|
|
54
|
+
createDataLifecycleDeletionRequest,
|
|
55
|
+
createDataLifecycleLedgerEntry,
|
|
56
|
+
transitionDataLifecycleDeletion,
|
|
57
|
+
type DataLifecycleDeletionRequestV1,
|
|
58
|
+
type DataLifecycleRuntimeHoldV1,
|
|
59
|
+
} from '@empire-builder-kit/runtime/data-lifecycle';
|
|
60
|
+
import { buildEventEntry } from '@empire-builder-kit/runtime/events';
|
|
61
|
+
import { RuntimeError } from '@empire-builder-kit/runtime/response';
|
|
62
|
+
import type { Client as PgClient } from 'pg';
|
|
63
|
+
import {
|
|
64
|
+
${identifierPrefix}DecideRecordDeletion,
|
|
65
|
+
${identifierPrefix}DeleteRecord,
|
|
66
|
+
${identifierPrefix}RequestRecordDeletion,
|
|
67
|
+
} from '../api/contracts/protected.js';
|
|
68
|
+
import { authorize${pascalName}Operation } from '../authorization/runtime.js';
|
|
69
|
+
import {
|
|
70
|
+
${identifierPrefix}AuthorizationPolicy,
|
|
71
|
+
type ${pascalName}AuthorizationAction,
|
|
72
|
+
} from '../authorization/policy.js';
|
|
73
|
+
import {
|
|
74
|
+
${pascalName}DataLifecycleChanged,
|
|
75
|
+
} from '../contracts/events.js';
|
|
76
|
+
import {
|
|
77
|
+
create${pascalName}DataLifecycleChanged,
|
|
78
|
+
} from '../data/lifecycle-event.js';
|
|
79
|
+
import {
|
|
80
|
+
approvalReference,
|
|
81
|
+
productRecordReference,
|
|
82
|
+
} from '../data/pseudonymous-reference.js';
|
|
83
|
+
import {
|
|
84
|
+
${pascalName}DataLifecycleRuntimePolicy,
|
|
85
|
+
} from '../data/runtime-policy.cjs';
|
|
86
|
+
import { withPrimaryDatabase } from './runtime-client.js';
|
|
87
|
+
|
|
88
|
+
const POLICY_VERSION =
|
|
89
|
+
${pascalName}DataLifecycleRuntimePolicy.policyVersion;
|
|
90
|
+
const AUTHORIZATION_POLICY_VERSION =
|
|
91
|
+
${identifierPrefix}AuthorizationPolicy.version;
|
|
92
|
+
const OUTBOX_COPY_ID = 'event-contract';
|
|
93
|
+
const eventBridge = new EventBridgeClient({});
|
|
94
|
+
|
|
95
|
+
type ProductApproval = ApprovalRequest<${pascalName}AuthorizationAction>;
|
|
96
|
+
|
|
97
|
+
interface WorkflowRow {
|
|
98
|
+
approval: ProductApproval;
|
|
99
|
+
lifecycle: DataLifecycleDeletionRequestV1;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
interface OutboxRow {
|
|
103
|
+
eventJson: PutEventsRequestEntry;
|
|
104
|
+
publishedAt: Date | null;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
function canonicalNow(): string {
|
|
108
|
+
return new Date().toISOString();
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
function digestReference(namespace: string, value: string): string {
|
|
112
|
+
return (
|
|
113
|
+
'sha256:' +
|
|
114
|
+
createHash('sha256')
|
|
115
|
+
.update('${name}\\0' + namespace + '\\0' + value)
|
|
116
|
+
.digest('hex')
|
|
117
|
+
);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
function deletionCommand(recordId: string, reasonCode: string) {
|
|
121
|
+
return { reasonCode, recordId };
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
function plusDays(value: string, days: number): string {
|
|
125
|
+
const result = new Date(value);
|
|
126
|
+
result.setUTCDate(result.getUTCDate() + days);
|
|
127
|
+
return result.toISOString();
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
function notFound(): never {
|
|
131
|
+
throw new RuntimeError({
|
|
132
|
+
code: 'record_not_found',
|
|
133
|
+
message: 'The record was not found.',
|
|
134
|
+
retryable: false,
|
|
135
|
+
status: 404,
|
|
136
|
+
});
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
function held(): never {
|
|
140
|
+
throw new RuntimeError({
|
|
141
|
+
code: 'data_deletion_held',
|
|
142
|
+
message: 'Deletion is blocked by an active hold.',
|
|
143
|
+
retryable: false,
|
|
144
|
+
status: 409,
|
|
145
|
+
});
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
function retryRequired(): never {
|
|
149
|
+
throw new RuntimeError({
|
|
150
|
+
code: 'data_deletion_retry_required',
|
|
151
|
+
message: 'Deletion propagation requires retry.',
|
|
152
|
+
retryable: true,
|
|
153
|
+
status: 503,
|
|
154
|
+
});
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
function approvalOutcome(value: string): 'approved' | 'rejected' {
|
|
158
|
+
if (value === 'approved' || value === 'rejected') return value;
|
|
159
|
+
throw new RuntimeError({
|
|
160
|
+
code: 'approval_outcome_invalid',
|
|
161
|
+
message: 'The approval outcome is invalid.',
|
|
162
|
+
retryable: false,
|
|
163
|
+
status: 400,
|
|
164
|
+
});
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
async function rollback(client: PgClient): Promise<void> {
|
|
168
|
+
await client.query('ROLLBACK').catch(() => undefined);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
async function loadWorkflow(
|
|
172
|
+
client: PgClient,
|
|
173
|
+
approvalRequestId: string,
|
|
174
|
+
): Promise<WorkflowRow | undefined> {
|
|
175
|
+
const result = await client.query<{
|
|
176
|
+
approval: ProductApproval;
|
|
177
|
+
lifecycle: DataLifecycleDeletionRequestV1;
|
|
178
|
+
}>(
|
|
179
|
+
\`SELECT a.request_json AS approval,
|
|
180
|
+
d.request_json AS lifecycle
|
|
181
|
+
FROM approval_requests a
|
|
182
|
+
JOIN data_lifecycle_requests d
|
|
183
|
+
ON d.approval_request_id = a.id
|
|
184
|
+
WHERE a.id = $1::uuid
|
|
185
|
+
FOR UPDATE OF a, d\`,
|
|
186
|
+
[approvalRequestId],
|
|
187
|
+
);
|
|
188
|
+
return result.rows[0];
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
async function writeApproval(
|
|
192
|
+
client: PgClient,
|
|
193
|
+
previousRevision: number,
|
|
194
|
+
approval: ProductApproval,
|
|
195
|
+
): Promise<void> {
|
|
196
|
+
const result = await client.query(
|
|
197
|
+
\`UPDATE approval_requests
|
|
198
|
+
SET expires_at = $3,
|
|
199
|
+
policy_version = $4,
|
|
200
|
+
request_digest = $5,
|
|
201
|
+
request_json = $6::jsonb,
|
|
202
|
+
revision = $7,
|
|
203
|
+
status = $8
|
|
204
|
+
WHERE id = $1::uuid AND revision = $2\`,
|
|
205
|
+
[
|
|
206
|
+
approval.id,
|
|
207
|
+
previousRevision,
|
|
208
|
+
approval.expiresAt,
|
|
209
|
+
approval.policyVersion,
|
|
210
|
+
approval.requestDigest,
|
|
211
|
+
JSON.stringify(approval),
|
|
212
|
+
approval.revision,
|
|
213
|
+
approval.status,
|
|
214
|
+
],
|
|
215
|
+
);
|
|
216
|
+
if (result.rowCount !== 1) {
|
|
217
|
+
throw new Error('Approval compare-and-set failed.');
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
async function writeLifecycle(
|
|
222
|
+
client: PgClient,
|
|
223
|
+
approvalRequestId: string,
|
|
224
|
+
lifecycle: DataLifecycleDeletionRequestV1,
|
|
225
|
+
): Promise<void> {
|
|
226
|
+
const result = await client.query(
|
|
227
|
+
\`UPDATE data_lifecycle_requests
|
|
228
|
+
SET request_json = $2::jsonb,
|
|
229
|
+
revision = revision + 1,
|
|
230
|
+
status = $3,
|
|
231
|
+
updated_at = $4
|
|
232
|
+
WHERE approval_request_id = $1::uuid\`,
|
|
233
|
+
[
|
|
234
|
+
approvalRequestId,
|
|
235
|
+
JSON.stringify(lifecycle),
|
|
236
|
+
lifecycle.status,
|
|
237
|
+
lifecycle.updatedAt,
|
|
238
|
+
],
|
|
239
|
+
);
|
|
240
|
+
if (result.rowCount !== 1) {
|
|
241
|
+
throw new Error('Lifecycle request compare-and-set failed.');
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
async function writeWorkflowAudit(
|
|
246
|
+
client: PgClient,
|
|
247
|
+
input: {
|
|
248
|
+
action: string;
|
|
249
|
+
approvalRequestId: string;
|
|
250
|
+
correlationId: string;
|
|
251
|
+
principal: Principal;
|
|
252
|
+
reasonCategory: string;
|
|
253
|
+
recordId: string;
|
|
254
|
+
},
|
|
255
|
+
): Promise<void> {
|
|
256
|
+
await client.query(
|
|
257
|
+
\`INSERT INTO authorization_audit
|
|
258
|
+
(action, approval_reference, authority_mode, correlation_id, decision,
|
|
259
|
+
delegation_reference, policy_version, principal_kind,
|
|
260
|
+
pseudonymous_subject_id, reason_category, resource_reference,
|
|
261
|
+
resource_type, slice, stage, subject_type)
|
|
262
|
+
VALUES ($1, $2, 'direct', $3, 'allow', NULL, $4, $5, $6, $7, $8,
|
|
263
|
+
'record', $9, $10, $11)\`,
|
|
264
|
+
[
|
|
265
|
+
input.action,
|
|
266
|
+
digestReference('approval', input.approvalRequestId),
|
|
267
|
+
input.correlationId,
|
|
268
|
+
AUTHORIZATION_POLICY_VERSION,
|
|
269
|
+
input.principal.kind,
|
|
270
|
+
digestReference('subject', input.principal.id),
|
|
271
|
+
input.reasonCategory,
|
|
272
|
+
digestReference('record', input.recordId),
|
|
273
|
+
'${name}',
|
|
274
|
+
process.env.EBK_STAGE ?? 'development',
|
|
275
|
+
input.principal.session.subject.type,
|
|
276
|
+
],
|
|
277
|
+
);
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
async function activeHolds(
|
|
281
|
+
client: PgClient,
|
|
282
|
+
scopeRef: string,
|
|
283
|
+
): Promise<DataLifecycleRuntimeHoldV1[]> {
|
|
284
|
+
const result = await client.query<{ holdJson: DataLifecycleRuntimeHoldV1 }>(
|
|
285
|
+
\`SELECT hold_json AS "holdJson"
|
|
286
|
+
FROM data_lifecycle_holds
|
|
287
|
+
WHERE category_id = 'product-record'
|
|
288
|
+
AND scope_ref = $1
|
|
289
|
+
AND status = 'active'
|
|
290
|
+
ORDER BY hold_id\`,
|
|
291
|
+
[scopeRef],
|
|
292
|
+
);
|
|
293
|
+
return [
|
|
294
|
+
...${pascalName}DataLifecycleRuntimePolicy.declaredHolds,
|
|
295
|
+
...result.rows.map(({ holdJson }) => holdJson),
|
|
296
|
+
];
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
export const requestDeletionHandler = createContractHttpJsonHandler<
|
|
300
|
+
typeof ${identifierPrefix}RequestRecordDeletion,
|
|
301
|
+
RuntimeHttpEvent,
|
|
302
|
+
Principal
|
|
303
|
+
>({
|
|
304
|
+
component: 'database-records',
|
|
305
|
+
operation: ${identifierPrefix}RequestRecordDeletion,
|
|
306
|
+
workspace: '${workspace}',
|
|
307
|
+
authorize: authorize${pascalName}Operation,
|
|
308
|
+
async handle({ context, principal, request }) {
|
|
309
|
+
const now = canonicalNow();
|
|
310
|
+
const command = deletionCommand(
|
|
311
|
+
request.path.recordId,
|
|
312
|
+
request.body.reasonCode,
|
|
313
|
+
);
|
|
314
|
+
const approval = createApprovalRequest<${pascalName}AuthorizationAction>({
|
|
315
|
+
action: '${name}:record-delete',
|
|
316
|
+
author: createDirectAuthorizationPrincipal(principal),
|
|
317
|
+
command,
|
|
318
|
+
expiresAt: plusDays(now, 1),
|
|
319
|
+
now,
|
|
320
|
+
policyVersion: AUTHORIZATION_POLICY_VERSION,
|
|
321
|
+
resource: { id: request.path.recordId, type: 'record' },
|
|
322
|
+
slice: '${name}',
|
|
323
|
+
});
|
|
324
|
+
const lifecycle = createDataLifecycleDeletionRequest({
|
|
325
|
+
approvalRequirement: 'required',
|
|
326
|
+
categoryId: 'product-record',
|
|
327
|
+
createdAt: now,
|
|
328
|
+
downstreamCopyIds: [OUTBOX_COPY_ID],
|
|
329
|
+
policyVersion: POLICY_VERSION,
|
|
330
|
+
primaryLocationId: 'primary-database',
|
|
331
|
+
requestRef: approvalReference(approval.id),
|
|
332
|
+
scopeRef: productRecordReference(request.path.recordId),
|
|
333
|
+
});
|
|
334
|
+
|
|
335
|
+
await withPrimaryDatabase(
|
|
336
|
+
context,
|
|
337
|
+
'api-database-records',
|
|
338
|
+
async (client) => {
|
|
339
|
+
await client.query('BEGIN');
|
|
340
|
+
try {
|
|
341
|
+
const record = await client.query(
|
|
342
|
+
'SELECT 1 FROM records WHERE id = $1::uuid FOR UPDATE',
|
|
343
|
+
[request.path.recordId],
|
|
344
|
+
);
|
|
345
|
+
if (record.rowCount !== 1) notFound();
|
|
346
|
+
await client.query(
|
|
347
|
+
\`INSERT INTO approval_requests
|
|
348
|
+
(id, author_reference, expires_at, policy_version,
|
|
349
|
+
request_digest, request_json, revision, status)
|
|
350
|
+
VALUES ($1::uuid, $2, $3, $4, $5, $6::jsonb, $7, $8)\`,
|
|
351
|
+
[
|
|
352
|
+
approval.id,
|
|
353
|
+
approval.author.effectiveHumanId ?? approval.author.actorId,
|
|
354
|
+
approval.expiresAt,
|
|
355
|
+
approval.policyVersion,
|
|
356
|
+
approval.requestDigest,
|
|
357
|
+
JSON.stringify(approval),
|
|
358
|
+
approval.revision,
|
|
359
|
+
approval.status,
|
|
360
|
+
],
|
|
361
|
+
);
|
|
362
|
+
await client.query(
|
|
363
|
+
\`INSERT INTO data_lifecycle_requests
|
|
364
|
+
(id, approval_request_id, request_json, revision, status,
|
|
365
|
+
updated_at)
|
|
366
|
+
VALUES (gen_random_uuid(), $1::uuid, $2::jsonb, 0, $3, $4)\`,
|
|
367
|
+
[
|
|
368
|
+
approval.id,
|
|
369
|
+
JSON.stringify(lifecycle),
|
|
370
|
+
lifecycle.status,
|
|
371
|
+
lifecycle.updatedAt,
|
|
372
|
+
],
|
|
373
|
+
);
|
|
374
|
+
await writeWorkflowAudit(client, {
|
|
375
|
+
action: '${name}:approval-request',
|
|
376
|
+
approvalRequestId: approval.id,
|
|
377
|
+
correlationId: context.correlationId,
|
|
378
|
+
principal,
|
|
379
|
+
reasonCategory: 'approval-pending',
|
|
380
|
+
recordId: request.path.recordId,
|
|
381
|
+
});
|
|
382
|
+
await client.query('COMMIT');
|
|
383
|
+
} catch (error) {
|
|
384
|
+
await rollback(client);
|
|
385
|
+
throw error;
|
|
386
|
+
}
|
|
387
|
+
},
|
|
388
|
+
);
|
|
389
|
+
return {
|
|
390
|
+
approvalRequestId: approval.id,
|
|
391
|
+
expiresAt: approval.expiresAt,
|
|
392
|
+
requestDigest: approval.requestDigest,
|
|
393
|
+
status: 'pending' as const,
|
|
394
|
+
};
|
|
395
|
+
},
|
|
396
|
+
});
|
|
397
|
+
|
|
398
|
+
export const decideDeletionHandler = createContractHttpJsonHandler<
|
|
399
|
+
typeof ${identifierPrefix}DecideRecordDeletion,
|
|
400
|
+
RuntimeHttpEvent,
|
|
401
|
+
Principal
|
|
402
|
+
>({
|
|
403
|
+
component: 'database-records',
|
|
404
|
+
operation: ${identifierPrefix}DecideRecordDeletion,
|
|
405
|
+
workspace: '${workspace}',
|
|
406
|
+
authorize: authorize${pascalName}Operation,
|
|
407
|
+
async handle({ context, principal, request }) {
|
|
408
|
+
const result = await withPrimaryDatabase(
|
|
409
|
+
context,
|
|
410
|
+
'api-database-records',
|
|
411
|
+
async (client) => {
|
|
412
|
+
await client.query('BEGIN');
|
|
413
|
+
try {
|
|
414
|
+
const workflow = await loadWorkflow(
|
|
415
|
+
client,
|
|
416
|
+
request.path.approvalRequestId,
|
|
417
|
+
);
|
|
418
|
+
if (
|
|
419
|
+
!workflow ||
|
|
420
|
+
workflow.approval.resource.id !== request.path.recordId
|
|
421
|
+
) {
|
|
422
|
+
notFound();
|
|
423
|
+
}
|
|
424
|
+
const now = canonicalNow();
|
|
425
|
+
const transition = decideApprovalRequest(workflow.approval, {
|
|
426
|
+
approver: createDirectAuthorizationPrincipal(principal),
|
|
427
|
+
expectedRequestDigest: request.body.expectedRequestDigest,
|
|
428
|
+
now,
|
|
429
|
+
outcome: approvalOutcome(request.body.outcome),
|
|
430
|
+
reasonReference: request.body.reasonReference,
|
|
431
|
+
requiredPolicyVersion: AUTHORIZATION_POLICY_VERSION,
|
|
432
|
+
});
|
|
433
|
+
assertAuthorizationAllowed(transition.decision);
|
|
434
|
+
await writeApproval(
|
|
435
|
+
client,
|
|
436
|
+
workflow.approval.revision,
|
|
437
|
+
transition.request,
|
|
438
|
+
);
|
|
439
|
+
if (transition.request.status === 'rejected') {
|
|
440
|
+
await writeLifecycle(
|
|
441
|
+
client,
|
|
442
|
+
transition.request.id,
|
|
443
|
+
transitionDataLifecycleDeletion(workflow.lifecycle, {
|
|
444
|
+
at: now,
|
|
445
|
+
reasonCode: 'approval-rejected',
|
|
446
|
+
type: 'reject',
|
|
447
|
+
}),
|
|
448
|
+
);
|
|
449
|
+
}
|
|
450
|
+
await writeWorkflowAudit(client, {
|
|
451
|
+
action: '${name}:approval-decision',
|
|
452
|
+
approvalRequestId: transition.request.id,
|
|
453
|
+
correlationId: context.correlationId,
|
|
454
|
+
principal,
|
|
455
|
+
reasonCategory:
|
|
456
|
+
transition.request.status === 'approved'
|
|
457
|
+
? 'approval-approved'
|
|
458
|
+
: 'approval-rejected',
|
|
459
|
+
recordId: request.path.recordId,
|
|
460
|
+
});
|
|
461
|
+
await client.query('COMMIT');
|
|
462
|
+
return transition.request;
|
|
463
|
+
} catch (error) {
|
|
464
|
+
await rollback(client);
|
|
465
|
+
throw error;
|
|
466
|
+
}
|
|
467
|
+
},
|
|
468
|
+
);
|
|
469
|
+
return {
|
|
470
|
+
approvalRequestId: result.id,
|
|
471
|
+
status: result.status as 'approved' | 'rejected',
|
|
472
|
+
};
|
|
473
|
+
},
|
|
474
|
+
});
|
|
475
|
+
|
|
476
|
+
interface PreparedDeletion {
|
|
477
|
+
alreadyCompleted: boolean;
|
|
478
|
+
approval: ProductApproval;
|
|
479
|
+
event?: PutEventsRequestEntry;
|
|
480
|
+
held: boolean;
|
|
481
|
+
lifecycle: DataLifecycleDeletionRequestV1;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
async function prepareDeletion(
|
|
485
|
+
client: PgClient,
|
|
486
|
+
input: {
|
|
487
|
+
approvalRequestId: string;
|
|
488
|
+
correlationId: string;
|
|
489
|
+
principal: Principal;
|
|
490
|
+
reasonCode: string;
|
|
491
|
+
recordId: string;
|
|
492
|
+
},
|
|
493
|
+
): Promise<PreparedDeletion> {
|
|
494
|
+
const workflow = await loadWorkflow(client, input.approvalRequestId);
|
|
495
|
+
if (
|
|
496
|
+
!workflow ||
|
|
497
|
+
workflow.approval.resource.id !== input.recordId ||
|
|
498
|
+
workflow.approval.action !== '${name}:record-delete'
|
|
499
|
+
) {
|
|
500
|
+
notFound();
|
|
501
|
+
}
|
|
502
|
+
if (
|
|
503
|
+
workflow.approval.status === 'executed' &&
|
|
504
|
+
workflow.lifecycle.status === 'completed'
|
|
505
|
+
) {
|
|
506
|
+
return {
|
|
507
|
+
alreadyCompleted: true,
|
|
508
|
+
approval: workflow.approval,
|
|
509
|
+
held: false,
|
|
510
|
+
lifecycle: workflow.lifecycle,
|
|
511
|
+
};
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
const now = canonicalNow();
|
|
515
|
+
const command = deletionCommand(input.recordId, input.reasonCode);
|
|
516
|
+
const executionId = 'deletion:' + input.approvalRequestId;
|
|
517
|
+
if (
|
|
518
|
+
workflow.lifecycle.status === 'requested' ||
|
|
519
|
+
workflow.lifecycle.status === 'held' ||
|
|
520
|
+
workflow.lifecycle.status === 'verified'
|
|
521
|
+
) {
|
|
522
|
+
const record = await client.query(
|
|
523
|
+
'SELECT 1 FROM records WHERE id = $1::uuid FOR UPDATE',
|
|
524
|
+
[input.recordId],
|
|
525
|
+
);
|
|
526
|
+
if (record.rowCount !== 1) notFound();
|
|
527
|
+
}
|
|
528
|
+
const begun = beginApprovalExecution(workflow.approval, {
|
|
529
|
+
action: '${name}:record-delete',
|
|
530
|
+
command,
|
|
531
|
+
executionId,
|
|
532
|
+
now,
|
|
533
|
+
requiredPolicyVersion: AUTHORIZATION_POLICY_VERSION,
|
|
534
|
+
resource: { id: input.recordId, type: 'record' },
|
|
535
|
+
});
|
|
536
|
+
assertAuthorizationAllowed(begun.decision);
|
|
537
|
+
let lifecycle = workflow.lifecycle;
|
|
538
|
+
if (lifecycle.status === 'requested' || lifecycle.status === 'held') {
|
|
539
|
+
lifecycle = transitionDataLifecycleDeletion(lifecycle, {
|
|
540
|
+
approvalRef: approvalReference(input.approvalRequestId),
|
|
541
|
+
at: now,
|
|
542
|
+
authorityRef: digestReference('subject', input.principal.id),
|
|
543
|
+
holds: await activeHolds(client, lifecycle.scopeRef),
|
|
544
|
+
type: 'verify',
|
|
545
|
+
});
|
|
546
|
+
}
|
|
547
|
+
if (lifecycle.status === 'held') {
|
|
548
|
+
await writeLifecycle(client, input.approvalRequestId, lifecycle);
|
|
549
|
+
return {
|
|
550
|
+
alreadyCompleted: false,
|
|
551
|
+
approval: workflow.approval,
|
|
552
|
+
held: true,
|
|
553
|
+
lifecycle,
|
|
554
|
+
};
|
|
555
|
+
}
|
|
556
|
+
if (lifecycle.status === 'failed') {
|
|
557
|
+
lifecycle = transitionDataLifecycleDeletion(lifecycle, {
|
|
558
|
+
at: now,
|
|
559
|
+
type: 'retry',
|
|
560
|
+
});
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
let event: PutEventsRequestEntry | undefined;
|
|
564
|
+
if (
|
|
565
|
+
lifecycle.status === 'verified' ||
|
|
566
|
+
lifecycle.status === 'primary-deletion-in-progress'
|
|
567
|
+
) {
|
|
568
|
+
if (lifecycle.status === 'verified') {
|
|
569
|
+
lifecycle = transitionDataLifecycleDeletion(lifecycle, {
|
|
570
|
+
at: now,
|
|
571
|
+
type: 'start-primary',
|
|
572
|
+
});
|
|
573
|
+
}
|
|
574
|
+
const deleted = await client.query(
|
|
575
|
+
'DELETE FROM records WHERE id = $1::uuid',
|
|
576
|
+
[input.recordId],
|
|
577
|
+
);
|
|
578
|
+
const pseudonymousKey = productRecordReference(input.recordId);
|
|
579
|
+
const ledger = createDataLifecycleLedgerEntry({
|
|
580
|
+
action: 'deletion',
|
|
581
|
+
categoryId: 'product-record',
|
|
582
|
+
effectiveAt: now,
|
|
583
|
+
expiresAt: plusDays(now, 400),
|
|
584
|
+
policyVersion: POLICY_VERSION,
|
|
585
|
+
pseudonymousKey,
|
|
586
|
+
});
|
|
587
|
+
await client.query(
|
|
588
|
+
\`INSERT INTO data_lifecycle_ledger
|
|
589
|
+
(entry_id, action, category_id, effective_at, expires_at,
|
|
590
|
+
idempotency_key, policy_version, pseudonymous_key)
|
|
591
|
+
VALUES ($1, $2, $3, $4, $5, $6, $7, $8)
|
|
592
|
+
ON CONFLICT (idempotency_key) DO NOTHING\`,
|
|
593
|
+
[
|
|
594
|
+
ledger.entryId,
|
|
595
|
+
ledger.action,
|
|
596
|
+
ledger.categoryId,
|
|
597
|
+
ledger.effectiveAt,
|
|
598
|
+
ledger.expiresAt,
|
|
599
|
+
digestReference('approval', input.approvalRequestId),
|
|
600
|
+
ledger.policyVersion,
|
|
601
|
+
ledger.pseudonymousKey,
|
|
602
|
+
],
|
|
603
|
+
);
|
|
604
|
+
const lifecycleEvent = create${pascalName}DataLifecycleChanged({
|
|
605
|
+
action: 'deletion',
|
|
606
|
+
occurredAt: now,
|
|
607
|
+
policyVersion: POLICY_VERSION,
|
|
608
|
+
recordId: input.recordId,
|
|
609
|
+
requestRef: approvalReference(input.approvalRequestId),
|
|
610
|
+
});
|
|
611
|
+
const built = buildEventEntry(
|
|
612
|
+
${pascalName}DataLifecycleChanged,
|
|
613
|
+
lifecycleEvent,
|
|
614
|
+
{
|
|
615
|
+
busName: process.env.EVENT_BUS_NAME ?? '',
|
|
616
|
+
context: { correlationId: input.correlationId },
|
|
617
|
+
eventId: input.approvalRequestId,
|
|
618
|
+
occurredAt: now,
|
|
619
|
+
stage: process.env.EBK_STAGE ?? 'development',
|
|
620
|
+
},
|
|
621
|
+
);
|
|
622
|
+
event = {
|
|
623
|
+
Detail: built.entry.detail,
|
|
624
|
+
DetailType: built.entry.detailType,
|
|
625
|
+
EventBusName: built.entry.eventBusName,
|
|
626
|
+
Source: built.entry.source,
|
|
627
|
+
};
|
|
628
|
+
await client.query(
|
|
629
|
+
\`INSERT INTO data_lifecycle_outbox
|
|
630
|
+
(idempotency_key, event_json, expires_at)
|
|
631
|
+
VALUES ($1, $2::jsonb, $3)
|
|
632
|
+
ON CONFLICT (idempotency_key) DO NOTHING\`,
|
|
633
|
+
[
|
|
634
|
+
digestReference('outbox', input.approvalRequestId),
|
|
635
|
+
JSON.stringify(event),
|
|
636
|
+
plusDays(now, 30),
|
|
637
|
+
],
|
|
638
|
+
);
|
|
639
|
+
lifecycle = transitionDataLifecycleDeletion(lifecycle, {
|
|
640
|
+
at: now,
|
|
641
|
+
outcomeCode: deleted.rowCount === 1 ? 'deleted' : 'not-found',
|
|
642
|
+
type: 'complete-primary',
|
|
643
|
+
});
|
|
644
|
+
} else {
|
|
645
|
+
const outbox = await client.query<OutboxRow>(
|
|
646
|
+
\`SELECT event_json AS "eventJson", published_at AS "publishedAt"
|
|
647
|
+
FROM data_lifecycle_outbox
|
|
648
|
+
WHERE idempotency_key = $1
|
|
649
|
+
FOR UPDATE\`,
|
|
650
|
+
[digestReference('outbox', input.approvalRequestId)],
|
|
651
|
+
);
|
|
652
|
+
event = outbox.rows[0]?.eventJson;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
if (begun.request !== workflow.approval) {
|
|
656
|
+
await writeApproval(
|
|
657
|
+
client,
|
|
658
|
+
workflow.approval.revision,
|
|
659
|
+
begun.request,
|
|
660
|
+
);
|
|
661
|
+
}
|
|
662
|
+
await writeLifecycle(client, input.approvalRequestId, lifecycle);
|
|
663
|
+
return {
|
|
664
|
+
alreadyCompleted: false,
|
|
665
|
+
approval: begun.request,
|
|
666
|
+
event,
|
|
667
|
+
held: false,
|
|
668
|
+
lifecycle,
|
|
669
|
+
};
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
async function recordPublicationFailure(
|
|
673
|
+
context: { correlationId: string },
|
|
674
|
+
approvalRequestId: string,
|
|
675
|
+
): Promise<void> {
|
|
676
|
+
await withPrimaryDatabase(
|
|
677
|
+
context,
|
|
678
|
+
'api-database-records',
|
|
679
|
+
async (client) => {
|
|
680
|
+
await client.query('BEGIN');
|
|
681
|
+
try {
|
|
682
|
+
const workflow = await loadWorkflow(client, approvalRequestId);
|
|
683
|
+
if (
|
|
684
|
+
workflow &&
|
|
685
|
+
workflow.lifecycle.status ===
|
|
686
|
+
'downstream-deletion-in-progress'
|
|
687
|
+
) {
|
|
688
|
+
const at = canonicalNow();
|
|
689
|
+
const started = transitionDataLifecycleDeletion(
|
|
690
|
+
workflow.lifecycle,
|
|
691
|
+
{ at, copyId: OUTBOX_COPY_ID, type: 'start-copy' },
|
|
692
|
+
);
|
|
693
|
+
const failed = transitionDataLifecycleDeletion(started, {
|
|
694
|
+
at,
|
|
695
|
+
copyId: OUTBOX_COPY_ID,
|
|
696
|
+
errorCode: 'event-publication-failed',
|
|
697
|
+
type: 'fail-copy',
|
|
698
|
+
});
|
|
699
|
+
await writeLifecycle(client, approvalRequestId, failed);
|
|
700
|
+
}
|
|
701
|
+
await client.query(
|
|
702
|
+
\`UPDATE data_lifecycle_outbox
|
|
703
|
+
SET attempts = attempts + 1,
|
|
704
|
+
last_error_code = 'event-publication-failed'
|
|
705
|
+
WHERE idempotency_key = $1\`,
|
|
706
|
+
[digestReference('outbox', approvalRequestId)],
|
|
707
|
+
);
|
|
708
|
+
await client.query('COMMIT');
|
|
709
|
+
} catch (error) {
|
|
710
|
+
await rollback(client);
|
|
711
|
+
throw error;
|
|
712
|
+
}
|
|
713
|
+
},
|
|
714
|
+
);
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
async function completeDeletion(
|
|
718
|
+
context: { correlationId: string },
|
|
719
|
+
input: {
|
|
720
|
+
approvalRequestId: string;
|
|
721
|
+
principal: Principal;
|
|
722
|
+
recordId: string;
|
|
723
|
+
},
|
|
724
|
+
): Promise<void> {
|
|
725
|
+
await withPrimaryDatabase(
|
|
726
|
+
context,
|
|
727
|
+
'api-database-records',
|
|
728
|
+
async (client) => {
|
|
729
|
+
await client.query('BEGIN');
|
|
730
|
+
try {
|
|
731
|
+
const workflow = await loadWorkflow(
|
|
732
|
+
client,
|
|
733
|
+
input.approvalRequestId,
|
|
734
|
+
);
|
|
735
|
+
if (!workflow) notFound();
|
|
736
|
+
if (
|
|
737
|
+
workflow.approval.status === 'executed' &&
|
|
738
|
+
workflow.lifecycle.status === 'completed'
|
|
739
|
+
) {
|
|
740
|
+
await client.query('COMMIT');
|
|
741
|
+
return;
|
|
742
|
+
}
|
|
743
|
+
const at = canonicalNow();
|
|
744
|
+
let lifecycle = workflow.lifecycle;
|
|
745
|
+
if (lifecycle.status === 'failed') {
|
|
746
|
+
lifecycle = transitionDataLifecycleDeletion(lifecycle, {
|
|
747
|
+
at,
|
|
748
|
+
type: 'retry',
|
|
749
|
+
});
|
|
750
|
+
}
|
|
751
|
+
const started = transitionDataLifecycleDeletion(lifecycle, {
|
|
752
|
+
at,
|
|
753
|
+
copyId: OUTBOX_COPY_ID,
|
|
754
|
+
type: 'start-copy',
|
|
755
|
+
});
|
|
756
|
+
lifecycle = transitionDataLifecycleDeletion(started, {
|
|
757
|
+
at,
|
|
758
|
+
copyId: OUTBOX_COPY_ID,
|
|
759
|
+
outcomeCode: 'acknowledged',
|
|
760
|
+
type: 'complete-copy',
|
|
761
|
+
});
|
|
762
|
+
const completed = completeApprovalExecution(workflow.approval, {
|
|
763
|
+
executionId: 'deletion:' + input.approvalRequestId,
|
|
764
|
+
now: at,
|
|
765
|
+
requiredPolicyVersion: AUTHORIZATION_POLICY_VERSION,
|
|
766
|
+
});
|
|
767
|
+
assertAuthorizationAllowed(completed.decision);
|
|
768
|
+
await writeLifecycle(client, input.approvalRequestId, lifecycle);
|
|
769
|
+
await writeApproval(
|
|
770
|
+
client,
|
|
771
|
+
workflow.approval.revision,
|
|
772
|
+
completed.request,
|
|
773
|
+
);
|
|
774
|
+
await client.query(
|
|
775
|
+
\`UPDATE data_lifecycle_outbox
|
|
776
|
+
SET attempts = attempts + 1,
|
|
777
|
+
last_error_code = NULL,
|
|
778
|
+
published_at = $2
|
|
779
|
+
WHERE idempotency_key = $1\`,
|
|
780
|
+
[digestReference('outbox', input.approvalRequestId), at],
|
|
781
|
+
);
|
|
782
|
+
await writeWorkflowAudit(client, {
|
|
783
|
+
action: '${name}:approval-execution',
|
|
784
|
+
approvalRequestId: input.approvalRequestId,
|
|
785
|
+
correlationId: context.correlationId,
|
|
786
|
+
principal: input.principal,
|
|
787
|
+
reasonCategory: 'approval-executed',
|
|
788
|
+
recordId: input.recordId,
|
|
789
|
+
});
|
|
790
|
+
await client.query('COMMIT');
|
|
791
|
+
} catch (error) {
|
|
792
|
+
await rollback(client);
|
|
793
|
+
throw error;
|
|
794
|
+
}
|
|
795
|
+
},
|
|
796
|
+
);
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
export const deleteHandler = createContractHttpJsonHandler<
|
|
800
|
+
typeof ${identifierPrefix}DeleteRecord,
|
|
801
|
+
RuntimeHttpEvent,
|
|
802
|
+
Principal
|
|
803
|
+
>({
|
|
804
|
+
component: 'database-records',
|
|
805
|
+
operation: ${identifierPrefix}DeleteRecord,
|
|
806
|
+
workspace: '${workspace}',
|
|
807
|
+
authorize: authorize${pascalName}Operation,
|
|
808
|
+
async handle({ context, principal, request }) {
|
|
809
|
+
const prepared = await withPrimaryDatabase(
|
|
810
|
+
context,
|
|
811
|
+
'api-database-records',
|
|
812
|
+
async (client) => {
|
|
813
|
+
await client.query('BEGIN');
|
|
814
|
+
try {
|
|
815
|
+
const result = await prepareDeletion(client, {
|
|
816
|
+
approvalRequestId: request.query.approvalRequestId,
|
|
817
|
+
correlationId: context.correlationId,
|
|
818
|
+
principal,
|
|
819
|
+
reasonCode: request.query.reasonCode,
|
|
820
|
+
recordId: request.path.recordId,
|
|
821
|
+
});
|
|
822
|
+
await client.query('COMMIT');
|
|
823
|
+
return result;
|
|
824
|
+
} catch (error) {
|
|
825
|
+
await rollback(client);
|
|
826
|
+
throw error;
|
|
827
|
+
}
|
|
828
|
+
},
|
|
829
|
+
);
|
|
830
|
+
if (prepared.held) held();
|
|
831
|
+
if (prepared.alreadyCompleted) {
|
|
832
|
+
return { deleted: true, id: request.path.recordId };
|
|
833
|
+
}
|
|
834
|
+
if (!prepared.event) retryRequired();
|
|
835
|
+
try {
|
|
836
|
+
const result = await eventBridge.send(
|
|
837
|
+
new PutEventsCommand({ Entries: [prepared.event] }),
|
|
838
|
+
);
|
|
839
|
+
if (
|
|
840
|
+
result.FailedEntryCount !== 0 ||
|
|
841
|
+
result.Entries?.[0]?.ErrorCode
|
|
842
|
+
) {
|
|
843
|
+
throw new Error('EventBridge rejected the lifecycle event.');
|
|
844
|
+
}
|
|
845
|
+
} catch {
|
|
846
|
+
await recordPublicationFailure(
|
|
847
|
+
{ correlationId: context.correlationId },
|
|
848
|
+
request.query.approvalRequestId,
|
|
849
|
+
);
|
|
850
|
+
retryRequired();
|
|
851
|
+
}
|
|
852
|
+
await completeDeletion(
|
|
853
|
+
{ correlationId: context.correlationId },
|
|
854
|
+
{
|
|
855
|
+
approvalRequestId: request.query.approvalRequestId,
|
|
856
|
+
principal,
|
|
857
|
+
recordId: request.path.recordId,
|
|
858
|
+
},
|
|
859
|
+
);
|
|
860
|
+
return { deleted: true, id: request.path.recordId };
|
|
861
|
+
},
|
|
862
|
+
});
|
|
863
|
+
`,
|
|
864
|
+
'testing/data-deletion-journey.spec.ts': `import {
|
|
865
|
+
beginApprovalExecution,
|
|
866
|
+
completeApprovalExecution,
|
|
867
|
+
createApprovalRequest,
|
|
868
|
+
decideApprovalRequest,
|
|
869
|
+
type AuthorizationPrincipal,
|
|
870
|
+
} from '@empire-builder-kit/runtime/authorization';
|
|
871
|
+
import {
|
|
872
|
+
createDataLifecycleDeletionRequest,
|
|
873
|
+
createDataLifecycleLedgerEntry,
|
|
874
|
+
transitionDataLifecycleDeletion,
|
|
875
|
+
} from '@empire-builder-kit/runtime/data-lifecycle';
|
|
876
|
+
import { describe, expect, it } from 'vitest';
|
|
877
|
+
import { create${pascalName}DataLifecycleChanged } from '../data/lifecycle-event.js';
|
|
878
|
+
import {
|
|
879
|
+
approvalReference,
|
|
880
|
+
productRecordReference,
|
|
881
|
+
} from '../data/pseudonymous-reference.js';
|
|
882
|
+
|
|
883
|
+
const recordId = '00000000-0000-4000-8000-000000000001';
|
|
884
|
+
const approvalRef = approvalReference(
|
|
885
|
+
'00000000-0000-4000-8000-000000000010',
|
|
886
|
+
);
|
|
887
|
+
const scopeRef = productRecordReference(recordId);
|
|
888
|
+
const command = { reasonCode: 'subject-request', recordId };
|
|
889
|
+
|
|
890
|
+
function human(
|
|
891
|
+
id: string,
|
|
892
|
+
kind: 'admin' | 'customer' = 'customer',
|
|
893
|
+
): AuthorizationPrincipal {
|
|
894
|
+
return {
|
|
895
|
+
actor: { id, type: 'user' },
|
|
896
|
+
authority: { mode: 'direct' },
|
|
897
|
+
kind,
|
|
898
|
+
roles: kind === 'admin' ? ['${name}-admin'] : [],
|
|
899
|
+
scopes: [],
|
|
900
|
+
subject: { id, type: 'user' },
|
|
901
|
+
};
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
describe('${pascalName} durable data deletion journey', () => {
|
|
905
|
+
it('resumes one exact approved deletion through downstream retry', () => {
|
|
906
|
+
const pending = createApprovalRequest({
|
|
907
|
+
action: '${name}:record-delete',
|
|
908
|
+
author: human('record-owner'),
|
|
909
|
+
command,
|
|
910
|
+
expiresAt: '2026-07-27T13:00:00.000Z',
|
|
911
|
+
now: '2026-07-27T12:00:00.000Z',
|
|
912
|
+
policyVersion: '1.0.0',
|
|
913
|
+
resource: { id: recordId, type: 'record' },
|
|
914
|
+
slice: '${name}',
|
|
915
|
+
});
|
|
916
|
+
expect(
|
|
917
|
+
decideApprovalRequest(pending, {
|
|
918
|
+
approver: human('privacy-reviewer', 'admin'),
|
|
919
|
+
expectedRequestDigest: pending.requestDigest,
|
|
920
|
+
now: '2026-07-27T12:05:00.000Z',
|
|
921
|
+
outcome: 'approved',
|
|
922
|
+
reasonReference: 'privacy-review-stale',
|
|
923
|
+
requiredPolicyVersion: '2.0.0',
|
|
924
|
+
}),
|
|
925
|
+
).toMatchObject({
|
|
926
|
+
decision: {
|
|
927
|
+
category: 'policy-stale',
|
|
928
|
+
decision: 'deny',
|
|
929
|
+
policyVersion: '2.0.0',
|
|
930
|
+
},
|
|
931
|
+
request: pending,
|
|
932
|
+
});
|
|
933
|
+
const approved = decideApprovalRequest(pending, {
|
|
934
|
+
approver: human('privacy-reviewer', 'admin'),
|
|
935
|
+
expectedRequestDigest: pending.requestDigest,
|
|
936
|
+
now: '2026-07-27T12:05:00.000Z',
|
|
937
|
+
outcome: 'approved',
|
|
938
|
+
reasonReference: 'privacy-review-1',
|
|
939
|
+
requiredPolicyVersion: '1.0.0',
|
|
940
|
+
}).request;
|
|
941
|
+
expect(
|
|
942
|
+
beginApprovalExecution(approved, {
|
|
943
|
+
action: '${name}:record-delete',
|
|
944
|
+
command,
|
|
945
|
+
executionId: 'deletion:' + pending.id,
|
|
946
|
+
now: '2026-07-27T12:06:00.000Z',
|
|
947
|
+
requiredPolicyVersion: '2.0.0',
|
|
948
|
+
resource: { id: recordId, type: 'record' },
|
|
949
|
+
}),
|
|
950
|
+
).toMatchObject({
|
|
951
|
+
decision: {
|
|
952
|
+
category: 'policy-stale',
|
|
953
|
+
decision: 'deny',
|
|
954
|
+
policyVersion: '2.0.0',
|
|
955
|
+
},
|
|
956
|
+
request: { status: 'approved' },
|
|
957
|
+
});
|
|
958
|
+
const begun = beginApprovalExecution(approved, {
|
|
959
|
+
action: '${name}:record-delete',
|
|
960
|
+
command,
|
|
961
|
+
executionId: 'deletion:' + pending.id,
|
|
962
|
+
now: '2026-07-27T12:06:00.000Z',
|
|
963
|
+
requiredPolicyVersion: '1.0.0',
|
|
964
|
+
resource: { id: recordId, type: 'record' },
|
|
965
|
+
});
|
|
966
|
+
expect(begun.decision.decision).toBe('allow');
|
|
967
|
+
|
|
968
|
+
let deletion = createDataLifecycleDeletionRequest({
|
|
969
|
+
approvalRequirement: 'required',
|
|
970
|
+
categoryId: 'product-record',
|
|
971
|
+
createdAt: '2026-07-27T12:00:00.000Z',
|
|
972
|
+
downstreamCopyIds: ['event-contract'],
|
|
973
|
+
policyVersion: '1.0.0',
|
|
974
|
+
primaryLocationId: 'primary-database',
|
|
975
|
+
requestRef: approvalRef,
|
|
976
|
+
scopeRef,
|
|
977
|
+
});
|
|
978
|
+
deletion = transitionDataLifecycleDeletion(deletion, {
|
|
979
|
+
approvalRef,
|
|
980
|
+
at: '2026-07-27T12:06:00.000Z',
|
|
981
|
+
authorityRef: 'sha256:' + 'c'.repeat(64),
|
|
982
|
+
holds: [],
|
|
983
|
+
type: 'verify',
|
|
984
|
+
});
|
|
985
|
+
deletion = transitionDataLifecycleDeletion(deletion, {
|
|
986
|
+
at: '2026-07-27T12:06:01.000Z',
|
|
987
|
+
type: 'start-primary',
|
|
988
|
+
});
|
|
989
|
+
deletion = transitionDataLifecycleDeletion(deletion, {
|
|
990
|
+
at: '2026-07-27T12:06:02.000Z',
|
|
991
|
+
outcomeCode: 'deleted',
|
|
992
|
+
type: 'complete-primary',
|
|
993
|
+
});
|
|
994
|
+
const ledger = createDataLifecycleLedgerEntry({
|
|
995
|
+
action: 'deletion',
|
|
996
|
+
categoryId: 'product-record',
|
|
997
|
+
effectiveAt: '2026-07-27T12:06:02.000Z',
|
|
998
|
+
expiresAt: '2027-09-01T12:06:02.000Z',
|
|
999
|
+
policyVersion: '1.0.0',
|
|
1000
|
+
pseudonymousKey: scopeRef,
|
|
1001
|
+
});
|
|
1002
|
+
const event = create${pascalName}DataLifecycleChanged({
|
|
1003
|
+
action: 'deletion',
|
|
1004
|
+
occurredAt: ledger.effectiveAt,
|
|
1005
|
+
policyVersion: ledger.policyVersion,
|
|
1006
|
+
recordId,
|
|
1007
|
+
requestRef: approvalRef,
|
|
1008
|
+
});
|
|
1009
|
+
expect(JSON.stringify({ event, ledger })).not.toContain(recordId);
|
|
1010
|
+
|
|
1011
|
+
deletion = transitionDataLifecycleDeletion(deletion, {
|
|
1012
|
+
at: '2026-07-27T12:06:03.000Z',
|
|
1013
|
+
copyId: 'event-contract',
|
|
1014
|
+
type: 'start-copy',
|
|
1015
|
+
});
|
|
1016
|
+
deletion = transitionDataLifecycleDeletion(deletion, {
|
|
1017
|
+
at: '2026-07-27T12:06:04.000Z',
|
|
1018
|
+
copyId: 'event-contract',
|
|
1019
|
+
errorCode: 'event-publication-failed',
|
|
1020
|
+
type: 'fail-copy',
|
|
1021
|
+
});
|
|
1022
|
+
expect(deletion.status).toBe('failed');
|
|
1023
|
+
|
|
1024
|
+
const resumed = beginApprovalExecution(begun.request, {
|
|
1025
|
+
action: '${name}:record-delete',
|
|
1026
|
+
command,
|
|
1027
|
+
executionId: 'deletion:' + pending.id,
|
|
1028
|
+
now: '2026-07-27T12:07:00.000Z',
|
|
1029
|
+
requiredPolicyVersion: '1.0.0',
|
|
1030
|
+
resource: { id: recordId, type: 'record' },
|
|
1031
|
+
});
|
|
1032
|
+
expect(resumed.decision.decision).toBe('allow');
|
|
1033
|
+
expect(resumed.request).toBe(begun.request);
|
|
1034
|
+
deletion = transitionDataLifecycleDeletion(deletion, {
|
|
1035
|
+
at: '2026-07-27T12:07:00.000Z',
|
|
1036
|
+
type: 'retry',
|
|
1037
|
+
});
|
|
1038
|
+
deletion = transitionDataLifecycleDeletion(deletion, {
|
|
1039
|
+
at: '2026-07-27T12:07:01.000Z',
|
|
1040
|
+
copyId: 'event-contract',
|
|
1041
|
+
type: 'start-copy',
|
|
1042
|
+
});
|
|
1043
|
+
deletion = transitionDataLifecycleDeletion(deletion, {
|
|
1044
|
+
at: '2026-07-27T12:07:02.000Z',
|
|
1045
|
+
copyId: 'event-contract',
|
|
1046
|
+
outcomeCode: 'acknowledged',
|
|
1047
|
+
type: 'complete-copy',
|
|
1048
|
+
});
|
|
1049
|
+
const completed = completeApprovalExecution(resumed.request, {
|
|
1050
|
+
executionId: 'deletion:' + pending.id,
|
|
1051
|
+
now: '2026-07-27T12:07:02.000Z',
|
|
1052
|
+
requiredPolicyVersion: '1.0.0',
|
|
1053
|
+
});
|
|
1054
|
+
expect({
|
|
1055
|
+
approval: completed.request.status,
|
|
1056
|
+
lifecycle: deletion.status,
|
|
1057
|
+
}).toEqual({ approval: 'executed', lifecycle: 'completed' });
|
|
1058
|
+
});
|
|
1059
|
+
|
|
1060
|
+
it('persists a held state before any primary deletion starts', () => {
|
|
1061
|
+
let deletion = createDataLifecycleDeletionRequest({
|
|
1062
|
+
approvalRequirement: 'required',
|
|
1063
|
+
categoryId: 'product-record',
|
|
1064
|
+
createdAt: '2026-07-27T12:00:00.000Z',
|
|
1065
|
+
downstreamCopyIds: ['event-contract'],
|
|
1066
|
+
policyVersion: '1.0.0',
|
|
1067
|
+
primaryLocationId: 'primary-database',
|
|
1068
|
+
requestRef: approvalRef,
|
|
1069
|
+
scopeRef,
|
|
1070
|
+
});
|
|
1071
|
+
deletion = transitionDataLifecycleDeletion(deletion, {
|
|
1072
|
+
approvalRef,
|
|
1073
|
+
at: '2026-07-27T12:05:00.000Z',
|
|
1074
|
+
authorityRef: 'sha256:' + 'c'.repeat(64),
|
|
1075
|
+
holds: [
|
|
1076
|
+
{
|
|
1077
|
+
categoryId: 'product-record',
|
|
1078
|
+
effects: ['block-deletion'],
|
|
1079
|
+
expiresAt: '2026-07-30T12:00:00.000Z',
|
|
1080
|
+
holdId: 'legal-review',
|
|
1081
|
+
issuerCode: 'privacy-office',
|
|
1082
|
+
purpose: 'legal',
|
|
1083
|
+
reviewAt: '2026-07-29T12:00:00.000Z',
|
|
1084
|
+
scopeRef,
|
|
1085
|
+
startsAt: '2026-07-27T12:00:00.000Z',
|
|
1086
|
+
status: 'active',
|
|
1087
|
+
},
|
|
1088
|
+
],
|
|
1089
|
+
type: 'verify',
|
|
1090
|
+
});
|
|
1091
|
+
expect(deletion).toMatchObject({
|
|
1092
|
+
holdIds: ['legal-review'],
|
|
1093
|
+
primaryStatus: 'pending',
|
|
1094
|
+
status: 'held',
|
|
1095
|
+
});
|
|
1096
|
+
});
|
|
1097
|
+
});
|
|
1098
|
+
`,
|
|
1099
|
+
};
|
|
1100
|
+
}
|
|
1101
|
+
//# sourceMappingURL=built-in-plan-data-deletion-files.js.map
|