@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,750 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.renderProductDataLifecycleFiles = renderProductDataLifecycleFiles;
|
|
4
|
+
const built_in_plan_shared_js_1 = require("./built-in-plan-shared.js");
|
|
5
|
+
function retention(durationDays, reason, trigger, deletionMethod = 'hard-delete') {
|
|
6
|
+
return { deletionMethod, durationDays, reason, trigger };
|
|
7
|
+
}
|
|
8
|
+
/** @internal */
|
|
9
|
+
function renderProductDataLifecycleFiles(name, reviewedAt = '2026-07-27T00:00:00.000Z') {
|
|
10
|
+
const reviewDueAt = new Date(Date.parse(reviewedAt) + 365 * 24 * 60 * 60 * 1_000).toISOString();
|
|
11
|
+
const pascalName = name
|
|
12
|
+
.split('-')
|
|
13
|
+
.map((segment) => segment[0]?.toUpperCase() + segment.slice(1))
|
|
14
|
+
.join('');
|
|
15
|
+
const policy = {
|
|
16
|
+
backups: [
|
|
17
|
+
{
|
|
18
|
+
backupStoreId: 'database-backup',
|
|
19
|
+
categoryIds: ['product-record'],
|
|
20
|
+
developmentCopy: 'prohibited',
|
|
21
|
+
disasterRecoveryUse: 'only',
|
|
22
|
+
id: 'primary-database-backup',
|
|
23
|
+
restoreOnly: true,
|
|
24
|
+
restorePlanId: 'primary-database-restore',
|
|
25
|
+
retention: retention(30, 'Cover the reviewed point-in-time recovery window.', 'copy-created', 'lifecycle-expiry'),
|
|
26
|
+
sourceStoreId: 'primary-database',
|
|
27
|
+
},
|
|
28
|
+
],
|
|
29
|
+
categories: [
|
|
30
|
+
{
|
|
31
|
+
allowedUses: ['authenticated-request'],
|
|
32
|
+
classification: 'confidential',
|
|
33
|
+
description: 'Issuer-signed access token held in a bounded secure cookie.',
|
|
34
|
+
evidenceRefs: ['testing/auth-session'],
|
|
35
|
+
id: 'auth-access-token',
|
|
36
|
+
ingress: [
|
|
37
|
+
{
|
|
38
|
+
authorizationAction: `${name}:protected-read`,
|
|
39
|
+
contractRef: 'runtime/auth-session',
|
|
40
|
+
validationRef: 'runtime/auth-backend',
|
|
41
|
+
},
|
|
42
|
+
],
|
|
43
|
+
owner: name,
|
|
44
|
+
primaryStoreIds: ['browser-access-cookie'],
|
|
45
|
+
provenance: [{ kind: 'subject', sourceRef: 'cognito/access-token' }],
|
|
46
|
+
purpose: 'Authenticate and bind one request to a typed principal until signed expiry.',
|
|
47
|
+
rights: {
|
|
48
|
+
correction: 'not-applicable',
|
|
49
|
+
deletion: 'supported',
|
|
50
|
+
export: 'not-applicable',
|
|
51
|
+
rationale: 'Session state is revoked or expired and is not a product record.',
|
|
52
|
+
},
|
|
53
|
+
runbookRefs: ['docs/runbooks/data-lifecycle.md'],
|
|
54
|
+
sensitiveTypes: ['access-token', 'session-identifier'],
|
|
55
|
+
steward: `${name}-data-steward`,
|
|
56
|
+
subject: 'authenticated-user',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
allowedUses: ['session-refresh'],
|
|
60
|
+
classification: 'confidential',
|
|
61
|
+
description: 'Longer-lived refresh token held separately from the access token.',
|
|
62
|
+
evidenceRefs: ['testing/auth-session'],
|
|
63
|
+
id: 'auth-refresh-token',
|
|
64
|
+
ingress: [
|
|
65
|
+
{
|
|
66
|
+
authorizationAction: `${name}:protected-read`,
|
|
67
|
+
contractRef: 'runtime/auth-session',
|
|
68
|
+
validationRef: 'runtime/auth-session',
|
|
69
|
+
},
|
|
70
|
+
],
|
|
71
|
+
owner: name,
|
|
72
|
+
primaryStoreIds: ['browser-refresh-cookie'],
|
|
73
|
+
provenance: [{ kind: 'subject', sourceRef: 'cognito/refresh-token' }],
|
|
74
|
+
purpose: 'Rotate expired access credentials without exposing token material to browser scripts.',
|
|
75
|
+
rights: {
|
|
76
|
+
correction: 'not-applicable',
|
|
77
|
+
deletion: 'supported',
|
|
78
|
+
export: 'not-applicable',
|
|
79
|
+
rationale: 'Refresh state is revoked or cleared at logout and is not a product record.',
|
|
80
|
+
},
|
|
81
|
+
runbookRefs: ['docs/runbooks/data-lifecycle.md'],
|
|
82
|
+
sensitiveTypes: ['refresh-token', 'session-identifier'],
|
|
83
|
+
steward: `${name}-data-steward`,
|
|
84
|
+
subject: 'authenticated-user',
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
allowedUses: ['product-operation', 'recovery', 'subject-export'],
|
|
88
|
+
classification: 'confidential',
|
|
89
|
+
description: 'Synthetic product records owned by one authenticated principal.',
|
|
90
|
+
evidenceRefs: ['testing/data-lifecycle', 'testing/local-integration'],
|
|
91
|
+
id: 'product-record',
|
|
92
|
+
ingress: [
|
|
93
|
+
{
|
|
94
|
+
authorizationAction: `${name}:record-write`,
|
|
95
|
+
contractRef: `${name}/api-contract`,
|
|
96
|
+
validationRef: 'api/contracts/protected.ts',
|
|
97
|
+
},
|
|
98
|
+
],
|
|
99
|
+
owner: name,
|
|
100
|
+
primaryStoreIds: ['primary-database'],
|
|
101
|
+
provenance: [{ kind: 'subject', sourceRef: `${name}/records` }],
|
|
102
|
+
purpose: 'Serve the generated product record journey.',
|
|
103
|
+
rights: {
|
|
104
|
+
correction: 'supported',
|
|
105
|
+
deletion: 'supported',
|
|
106
|
+
export: 'supported',
|
|
107
|
+
rationale: 'The Standard journey exposes bounded correction, deletion, and an approved owner-scoped confidential export.',
|
|
108
|
+
},
|
|
109
|
+
runbookRefs: [
|
|
110
|
+
'docs/runbooks/data-lifecycle.md',
|
|
111
|
+
'docs/runbooks/data-restore-reconciliation.md',
|
|
112
|
+
],
|
|
113
|
+
sensitiveTypes: ['pseudonymous-identifier'],
|
|
114
|
+
steward: `${name}-data-steward`,
|
|
115
|
+
subject: 'record-owner',
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
allowedUses: [
|
|
119
|
+
'authorization-audit',
|
|
120
|
+
'data-lifecycle-control',
|
|
121
|
+
'restore-reconciliation',
|
|
122
|
+
],
|
|
123
|
+
classification: 'confidential',
|
|
124
|
+
description: 'Content-free authorization, approval, hold, outbox, receipt, retention-run, and deletion-ledger control records.',
|
|
125
|
+
evidenceRefs: ['testing/data-lifecycle', 'authorization/workflows'],
|
|
126
|
+
id: 'lifecycle-control-metadata',
|
|
127
|
+
ingress: [
|
|
128
|
+
{
|
|
129
|
+
authorizationAction: `${name}:retention-maintenance`,
|
|
130
|
+
contractRef: 'runtime/data-lifecycle',
|
|
131
|
+
validationRef: 'runtime/authorization',
|
|
132
|
+
},
|
|
133
|
+
],
|
|
134
|
+
owner: name,
|
|
135
|
+
primaryStoreIds: ['downstream-copy-registry', 'lifecycle-control'],
|
|
136
|
+
provenance: [
|
|
137
|
+
{ kind: 'derived', sourceRef: `${name}/authorized-operations` },
|
|
138
|
+
],
|
|
139
|
+
purpose: 'Enforce approvals, holds, idempotency, downstream reconciliation, bounded retention, and restore safety without retaining record content.',
|
|
140
|
+
rights: {
|
|
141
|
+
correction: 'not-applicable',
|
|
142
|
+
deletion: 'supported',
|
|
143
|
+
export: 'not-applicable',
|
|
144
|
+
rationale: 'Control rows expire under their declared enforcement or audit window and contain only safe or pseudonymous references.',
|
|
145
|
+
},
|
|
146
|
+
runbookRefs: [
|
|
147
|
+
'docs/runbooks/authorization.md',
|
|
148
|
+
'docs/runbooks/data-lifecycle.md',
|
|
149
|
+
],
|
|
150
|
+
sensitiveTypes: ['pseudonymous-identifier'],
|
|
151
|
+
steward: `${name}-data-steward`,
|
|
152
|
+
subject: 'authorized-operation',
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
allowedUses: ['contract-test'],
|
|
156
|
+
classification: 'internal',
|
|
157
|
+
description: 'Deterministic synthetic values generated independently of production data.',
|
|
158
|
+
evidenceRefs: ['testing/data-lifecycle'],
|
|
159
|
+
id: 'synthetic-test-data',
|
|
160
|
+
ingress: [
|
|
161
|
+
{
|
|
162
|
+
authorizationAction: `${name}:record-write`,
|
|
163
|
+
contractRef: 'testing/data-lifecycle',
|
|
164
|
+
validationRef: 'testing/data-lifecycle.spec.ts',
|
|
165
|
+
},
|
|
166
|
+
],
|
|
167
|
+
owner: name,
|
|
168
|
+
primaryStoreIds: ['test-fixture', 'test-record-database'],
|
|
169
|
+
provenance: [{ kind: 'derived', sourceRef: 'testing/synthetic-seed' }],
|
|
170
|
+
purpose: 'Exercise lifecycle contracts without copying production records.',
|
|
171
|
+
rights: {
|
|
172
|
+
correction: 'not-applicable',
|
|
173
|
+
deletion: 'supported',
|
|
174
|
+
export: 'not-applicable',
|
|
175
|
+
rationale: 'Fixtures are disposable synthetic evidence with no data subject.',
|
|
176
|
+
},
|
|
177
|
+
runbookRefs: ['docs/runbooks/data-lifecycle.md'],
|
|
178
|
+
sensitiveTypes: [],
|
|
179
|
+
steward: `${name}-data-steward`,
|
|
180
|
+
subject: 'synthetic',
|
|
181
|
+
},
|
|
182
|
+
],
|
|
183
|
+
copies: [
|
|
184
|
+
{
|
|
185
|
+
categoryIds: ['product-record'],
|
|
186
|
+
deletionPropagation: 'contract-event',
|
|
187
|
+
handling: 'pseudonymous',
|
|
188
|
+
id: 'created-event-archive',
|
|
189
|
+
kind: 'replay-archive',
|
|
190
|
+
purpose: `Retain minimized ${pascalName}DataLifecycleChanged events for bounded replay and correction.`,
|
|
191
|
+
retention: retention(30, 'Match the Foundation event archive replay window.', 'event-completion', 'lifecycle-expiry'),
|
|
192
|
+
sourceStoreIds: ['primary-database'],
|
|
193
|
+
storeId: 'event-archive',
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
categoryIds: ['product-record'],
|
|
197
|
+
deletionPropagation: 'contract-event',
|
|
198
|
+
handling: 'pseudonymous',
|
|
199
|
+
id: 'created-event-queue',
|
|
200
|
+
kind: 'queue',
|
|
201
|
+
purpose: 'Deliver minimized lifecycle events to the declared Slice consumer.',
|
|
202
|
+
retention: retention(4, 'Match the explicit Standard event queue message-retention window.', 'event-completion', 'lifecycle-expiry'),
|
|
203
|
+
sourceStoreIds: ['event-archive'],
|
|
204
|
+
storeId: 'event-queue',
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
categoryIds: ['product-record'],
|
|
208
|
+
deletionPropagation: 'contract-event',
|
|
209
|
+
handling: 'pseudonymous',
|
|
210
|
+
id: 'created-event-dead-letter',
|
|
211
|
+
kind: 'dlq',
|
|
212
|
+
purpose: 'Hold failed minimized lifecycle deliveries for bounded recovery.',
|
|
213
|
+
retention: retention(14, 'Match the explicit Standard dead-letter queue recovery window.', 'event-completion', 'lifecycle-expiry'),
|
|
214
|
+
sourceStoreIds: ['event-queue'],
|
|
215
|
+
storeId: 'event-dlq',
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
categoryIds: ['product-record'],
|
|
219
|
+
deletionPropagation: 'local',
|
|
220
|
+
handling: 'redacted',
|
|
221
|
+
id: 'operational-log',
|
|
222
|
+
kind: 'log',
|
|
223
|
+
purpose: 'Diagnose operations with content-free structured metadata.',
|
|
224
|
+
retention: retention(30, 'Bound operational diagnosis while excluding record content.', 'collection', 'lifecycle-expiry'),
|
|
225
|
+
sourceStoreIds: ['primary-database'],
|
|
226
|
+
storeId: 'application-log',
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
categoryIds: ['product-record'],
|
|
230
|
+
deletionPropagation: 'local',
|
|
231
|
+
handling: 'raw',
|
|
232
|
+
id: 'subject-export',
|
|
233
|
+
kind: 'export',
|
|
234
|
+
purpose: 'Deliver one approved, owner-scoped confidential export through a bounded encrypted artifact.',
|
|
235
|
+
retention: retention(1, 'Delete every version of the confidential export no later than 24 hours after creation.', 'copy-created', 'lifecycle-expiry'),
|
|
236
|
+
sourceStoreIds: ['primary-database'],
|
|
237
|
+
storeId: 'confidential-export',
|
|
238
|
+
},
|
|
239
|
+
],
|
|
240
|
+
governance: {
|
|
241
|
+
owner: name,
|
|
242
|
+
reviewDueAt,
|
|
243
|
+
reviewedAt,
|
|
244
|
+
steward: `${name}-data-steward`,
|
|
245
|
+
},
|
|
246
|
+
holds: [],
|
|
247
|
+
kind: 'ebk-data-lifecycle-policy',
|
|
248
|
+
ledger: {
|
|
249
|
+
actions: ['correction', 'deletion'],
|
|
250
|
+
backupIdsCovered: ['primary-database-backup'],
|
|
251
|
+
classification: 'confidential',
|
|
252
|
+
keyMaterial: 'pseudonymous-only',
|
|
253
|
+
retention: retention(400, 'Cover every backup window and one annual policy review.', 'collection'),
|
|
254
|
+
storeId: 'lifecycle-audit',
|
|
255
|
+
},
|
|
256
|
+
lineage: [
|
|
257
|
+
{
|
|
258
|
+
categoryIds: ['product-record'],
|
|
259
|
+
from: { id: 'primary-database', kind: 'store' },
|
|
260
|
+
id: 'database-to-event',
|
|
261
|
+
minimization: 'Publish identifiers and lifecycle metadata only.',
|
|
262
|
+
purpose: `Propagate ${pascalName}DataLifecycleChanged correction and deletion state.`,
|
|
263
|
+
recipient: `${name}-declared-consumer`,
|
|
264
|
+
to: { id: 'created-event-archive', kind: 'copy' },
|
|
265
|
+
transport: 'event',
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
categoryIds: ['product-record'],
|
|
269
|
+
from: { id: 'created-event-archive', kind: 'copy' },
|
|
270
|
+
id: 'event-archive-to-queue',
|
|
271
|
+
minimization: 'Preserve only the versioned lifecycle event envelope and opaque subject reference.',
|
|
272
|
+
purpose: 'Deliver lifecycle state to the declared consumer.',
|
|
273
|
+
recipient: `${name}-declared-consumer`,
|
|
274
|
+
to: { id: 'created-event-queue', kind: 'copy' },
|
|
275
|
+
transport: 'event',
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
categoryIds: ['product-record'],
|
|
279
|
+
from: { id: 'created-event-queue', kind: 'copy' },
|
|
280
|
+
id: 'event-queue-to-dead-letter',
|
|
281
|
+
minimization: 'Retain the failed minimized envelope without adding provider response content.',
|
|
282
|
+
purpose: 'Recover failed lifecycle event delivery.',
|
|
283
|
+
recipient: `${name}-operations`,
|
|
284
|
+
to: { id: 'created-event-dead-letter', kind: 'copy' },
|
|
285
|
+
transport: 'event',
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
categoryIds: ['product-record'],
|
|
289
|
+
from: { id: 'primary-database', kind: 'store' },
|
|
290
|
+
id: 'database-to-log',
|
|
291
|
+
minimization: 'Project content-free operation metadata.',
|
|
292
|
+
purpose: 'Support bounded operational diagnosis.',
|
|
293
|
+
to: { id: 'operational-log', kind: 'copy' },
|
|
294
|
+
transport: 'derived',
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
categoryIds: ['product-record'],
|
|
298
|
+
from: { id: 'primary-database', kind: 'store' },
|
|
299
|
+
id: 'database-to-export',
|
|
300
|
+
minimization: 'Select only the authenticated owner record approved by the exact durable export request.',
|
|
301
|
+
purpose: 'Create a bounded encrypted subject export.',
|
|
302
|
+
recipient: 'authenticated-record-owner',
|
|
303
|
+
to: { id: 'subject-export', kind: 'copy' },
|
|
304
|
+
transport: 'export',
|
|
305
|
+
},
|
|
306
|
+
],
|
|
307
|
+
policyVersion: '1.0.0',
|
|
308
|
+
restorePlans: [
|
|
309
|
+
{
|
|
310
|
+
authorization: 'required',
|
|
311
|
+
backupId: 'primary-database-backup',
|
|
312
|
+
deletionCorrectionReplay: 'required-before-service',
|
|
313
|
+
downstreamReconciliation: 'required-before-service',
|
|
314
|
+
id: 'primary-database-restore',
|
|
315
|
+
integrityValidation: 'required',
|
|
316
|
+
isolatedTarget: 'required',
|
|
317
|
+
retentionJobs: 'required-before-service',
|
|
318
|
+
runbookRef: 'docs/runbooks/data-restore-reconciliation.md',
|
|
319
|
+
},
|
|
320
|
+
],
|
|
321
|
+
schemaVersion: 1,
|
|
322
|
+
slice: name,
|
|
323
|
+
stores: [
|
|
324
|
+
{
|
|
325
|
+
accessPurposes: ['authentication'],
|
|
326
|
+
categoryIds: ['auth-access-token'],
|
|
327
|
+
classification: 'confidential',
|
|
328
|
+
encryption: {
|
|
329
|
+
atRest: 'required',
|
|
330
|
+
inTransit: 'required',
|
|
331
|
+
keyOwner: 'subject-device',
|
|
332
|
+
},
|
|
333
|
+
id: 'browser-access-cookie',
|
|
334
|
+
kind: 'browser',
|
|
335
|
+
locationRef: 'runtime/auth-session#access-cookie',
|
|
336
|
+
owner: name,
|
|
337
|
+
production: true,
|
|
338
|
+
residency: ['us-east-1'],
|
|
339
|
+
retention: retention(1, 'The httpOnly, Secure, SameSite=Strict access cookie expires no later than its signed token.', 'last-activity', 'cryptographic-erasure'),
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
accessPurposes: ['session-refresh'],
|
|
343
|
+
categoryIds: ['auth-refresh-token'],
|
|
344
|
+
classification: 'confidential',
|
|
345
|
+
encryption: {
|
|
346
|
+
atRest: 'required',
|
|
347
|
+
inTransit: 'required',
|
|
348
|
+
keyOwner: 'subject-device',
|
|
349
|
+
},
|
|
350
|
+
id: 'browser-refresh-cookie',
|
|
351
|
+
kind: 'browser',
|
|
352
|
+
locationRef: 'runtime/auth-session#refresh-cookie',
|
|
353
|
+
owner: name,
|
|
354
|
+
production: true,
|
|
355
|
+
residency: ['us-east-1'],
|
|
356
|
+
retention: retention(30, 'The separately scoped httpOnly refresh cookie matches the bounded runtime maximum and is cleared at logout.', 'last-activity', 'cryptographic-erasure'),
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
accessPurposes: ['product-operation'],
|
|
360
|
+
categoryIds: ['product-record'],
|
|
361
|
+
classification: 'confidential',
|
|
362
|
+
encryption: {
|
|
363
|
+
atRest: 'required',
|
|
364
|
+
inTransit: 'required',
|
|
365
|
+
keyOwner: 'foundation-data',
|
|
366
|
+
},
|
|
367
|
+
id: 'primary-database',
|
|
368
|
+
kind: 'database',
|
|
369
|
+
locationRef: 'database/bindings.json#primary',
|
|
370
|
+
owner: name,
|
|
371
|
+
production: true,
|
|
372
|
+
residency: ['us-east-1'],
|
|
373
|
+
retention: retention(365, 'Retain active product records until lifecycle expiry or deletion.', 'last-activity'),
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
accessPurposes: ['disaster-recovery'],
|
|
377
|
+
categoryIds: ['product-record'],
|
|
378
|
+
classification: 'confidential',
|
|
379
|
+
encryption: {
|
|
380
|
+
atRest: 'required',
|
|
381
|
+
inTransit: 'required',
|
|
382
|
+
keyOwner: 'foundation-data',
|
|
383
|
+
},
|
|
384
|
+
id: 'database-backup',
|
|
385
|
+
kind: 'backup',
|
|
386
|
+
locationRef: 'foundation/database-backup',
|
|
387
|
+
owner: name,
|
|
388
|
+
production: true,
|
|
389
|
+
residency: ['us-east-1'],
|
|
390
|
+
retention: retention(30, 'Match the reviewed point-in-time recovery window.', 'copy-created', 'lifecycle-expiry'),
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
accessPurposes: ['restore-reconciliation', 'security-audit'],
|
|
394
|
+
categoryIds: ['product-record'],
|
|
395
|
+
classification: 'confidential',
|
|
396
|
+
encryption: {
|
|
397
|
+
atRest: 'required',
|
|
398
|
+
inTransit: 'required',
|
|
399
|
+
keyOwner: name,
|
|
400
|
+
},
|
|
401
|
+
id: 'lifecycle-audit',
|
|
402
|
+
kind: 'audit',
|
|
403
|
+
locationRef: 'database/data-lifecycle-audit',
|
|
404
|
+
owner: name,
|
|
405
|
+
production: true,
|
|
406
|
+
residency: ['us-east-1'],
|
|
407
|
+
retention: retention(400, 'Cover backup replay and one annual policy review.', 'collection'),
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
accessPurposes: [
|
|
411
|
+
'authorization-audit',
|
|
412
|
+
'data-lifecycle-control',
|
|
413
|
+
'restore-reconciliation',
|
|
414
|
+
],
|
|
415
|
+
categoryIds: ['lifecycle-control-metadata'],
|
|
416
|
+
classification: 'confidential',
|
|
417
|
+
encryption: {
|
|
418
|
+
atRest: 'required',
|
|
419
|
+
inTransit: 'required',
|
|
420
|
+
keyOwner: name,
|
|
421
|
+
},
|
|
422
|
+
id: 'lifecycle-control',
|
|
423
|
+
kind: 'audit',
|
|
424
|
+
locationRef: 'database/schema.ts#authorization-and-data-lifecycle-control',
|
|
425
|
+
owner: name,
|
|
426
|
+
production: true,
|
|
427
|
+
residency: ['us-east-1'],
|
|
428
|
+
retention: retention(400, 'Cover the backup window, authorization evidence, retry, and one annual policy review before hard deletion.', 'collection'),
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
accessPurposes: ['restore-reconciliation'],
|
|
432
|
+
categoryIds: ['lifecycle-control-metadata'],
|
|
433
|
+
classification: 'confidential',
|
|
434
|
+
encryption: {
|
|
435
|
+
atRest: 'required',
|
|
436
|
+
inTransit: 'required',
|
|
437
|
+
keyOwner: name,
|
|
438
|
+
},
|
|
439
|
+
id: 'downstream-copy-registry',
|
|
440
|
+
kind: 'audit',
|
|
441
|
+
locationRef: 'database/schema.ts#data_lifecycle_downstream_copies',
|
|
442
|
+
owner: name,
|
|
443
|
+
production: true,
|
|
444
|
+
residency: ['us-east-1'],
|
|
445
|
+
retention: retention(400, 'Retain safe downstream copy reconciliation state through the backup and annual review window.', 'collection'),
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
accessPurposes: ['event-replay'],
|
|
449
|
+
categoryIds: ['product-record'],
|
|
450
|
+
classification: 'confidential',
|
|
451
|
+
encryption: {
|
|
452
|
+
atRest: 'required',
|
|
453
|
+
inTransit: 'required',
|
|
454
|
+
keyOwner: 'foundation-events',
|
|
455
|
+
},
|
|
456
|
+
id: 'event-archive',
|
|
457
|
+
kind: 'event-archive',
|
|
458
|
+
locationRef: 'foundation/event-bus',
|
|
459
|
+
owner: name,
|
|
460
|
+
production: true,
|
|
461
|
+
residency: ['us-east-1'],
|
|
462
|
+
retention: retention(30, 'Bound event replay and deletion propagation.', 'event-completion', 'lifecycle-expiry'),
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
accessPurposes: ['event-delivery'],
|
|
466
|
+
categoryIds: ['product-record'],
|
|
467
|
+
classification: 'confidential',
|
|
468
|
+
encryption: {
|
|
469
|
+
atRest: 'required',
|
|
470
|
+
inTransit: 'required',
|
|
471
|
+
keyOwner: 'foundation-events',
|
|
472
|
+
},
|
|
473
|
+
id: 'event-queue',
|
|
474
|
+
kind: 'queue',
|
|
475
|
+
locationRef: 'infra/product.ts#event-queue',
|
|
476
|
+
owner: name,
|
|
477
|
+
production: true,
|
|
478
|
+
residency: ['us-east-1'],
|
|
479
|
+
retention: retention(4, 'Match the explicit Standard event queue message-retention window.', 'event-completion', 'lifecycle-expiry'),
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
accessPurposes: ['event-recovery'],
|
|
483
|
+
categoryIds: ['product-record'],
|
|
484
|
+
classification: 'confidential',
|
|
485
|
+
encryption: {
|
|
486
|
+
atRest: 'required',
|
|
487
|
+
inTransit: 'required',
|
|
488
|
+
keyOwner: 'foundation-events',
|
|
489
|
+
},
|
|
490
|
+
id: 'event-dlq',
|
|
491
|
+
kind: 'dlq',
|
|
492
|
+
locationRef: 'infra/product.ts#event-dlq',
|
|
493
|
+
owner: name,
|
|
494
|
+
production: true,
|
|
495
|
+
residency: ['us-east-1'],
|
|
496
|
+
retention: retention(14, 'Match the explicit Standard dead-letter recovery window.', 'event-completion', 'lifecycle-expiry'),
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
accessPurposes: ['operations'],
|
|
500
|
+
categoryIds: ['product-record'],
|
|
501
|
+
classification: 'confidential',
|
|
502
|
+
encryption: {
|
|
503
|
+
atRest: 'required',
|
|
504
|
+
inTransit: 'required',
|
|
505
|
+
keyOwner: 'foundation-observability',
|
|
506
|
+
},
|
|
507
|
+
id: 'application-log',
|
|
508
|
+
kind: 'log',
|
|
509
|
+
locationRef: 'operations/logging-components.json',
|
|
510
|
+
owner: name,
|
|
511
|
+
production: true,
|
|
512
|
+
residency: ['us-east-1'],
|
|
513
|
+
retention: retention(30, 'Bound content-free operational diagnosis.', 'collection', 'lifecycle-expiry'),
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
accessPurposes: ['subject-export'],
|
|
517
|
+
categoryIds: ['product-record'],
|
|
518
|
+
classification: 'confidential',
|
|
519
|
+
encryption: {
|
|
520
|
+
atRest: 'required',
|
|
521
|
+
inTransit: 'required',
|
|
522
|
+
keyOwner: name,
|
|
523
|
+
},
|
|
524
|
+
id: 'confidential-export',
|
|
525
|
+
kind: 'export',
|
|
526
|
+
locationRef: 'infra/product.ts#dataExportBucket',
|
|
527
|
+
owner: name,
|
|
528
|
+
production: true,
|
|
529
|
+
residency: ['us-east-1'],
|
|
530
|
+
retention: retention(1, 'Delete all KMS-encrypted confidential export versions within 24 hours.', 'copy-created', 'lifecycle-expiry'),
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
accessPurposes: ['testing'],
|
|
534
|
+
categoryIds: ['synthetic-test-data'],
|
|
535
|
+
classification: 'internal',
|
|
536
|
+
encryption: {
|
|
537
|
+
atRest: 'required',
|
|
538
|
+
inTransit: 'required',
|
|
539
|
+
keyOwner: name,
|
|
540
|
+
},
|
|
541
|
+
id: 'test-fixture',
|
|
542
|
+
kind: 'test-fixture',
|
|
543
|
+
locationRef: 'testing/fixtures',
|
|
544
|
+
owner: name,
|
|
545
|
+
production: false,
|
|
546
|
+
residency: ['us-east-1'],
|
|
547
|
+
retention: retention(7, 'Remove generated synthetic data after the evidence window.', 'copy-created'),
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
accessPurposes: ['testing'],
|
|
551
|
+
categoryIds: ['synthetic-test-data'],
|
|
552
|
+
classification: 'internal',
|
|
553
|
+
encryption: {
|
|
554
|
+
atRest: 'required',
|
|
555
|
+
inTransit: 'required',
|
|
556
|
+
keyOwner: 'foundation-data',
|
|
557
|
+
},
|
|
558
|
+
id: 'test-record-database',
|
|
559
|
+
kind: 'database',
|
|
560
|
+
locationRef: 'database/schema.ts#records.test_expires_at',
|
|
561
|
+
owner: name,
|
|
562
|
+
production: false,
|
|
563
|
+
residency: ['us-east-1'],
|
|
564
|
+
retention: retention(1, 'Delete explicitly tagged synthetic test rows after their bounded run window.', 'collection'),
|
|
565
|
+
},
|
|
566
|
+
],
|
|
567
|
+
};
|
|
568
|
+
const physicalStores = {
|
|
569
|
+
observations: [
|
|
570
|
+
{
|
|
571
|
+
categoryId: 'auth-access-token',
|
|
572
|
+
classification: 'confidential',
|
|
573
|
+
locationId: 'browser-access-cookie',
|
|
574
|
+
sourceRef: 'runtime/auth-session#access-cookie',
|
|
575
|
+
surface: 'store',
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
categoryId: 'auth-refresh-token',
|
|
579
|
+
classification: 'confidential',
|
|
580
|
+
locationId: 'browser-refresh-cookie',
|
|
581
|
+
sourceRef: 'runtime/auth-session#refresh-cookie',
|
|
582
|
+
surface: 'store',
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
categoryId: 'product-record',
|
|
586
|
+
classification: 'confidential',
|
|
587
|
+
locationId: 'primary-database',
|
|
588
|
+
sourceRef: 'database/schema.ts#records',
|
|
589
|
+
surface: 'store',
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
categoryId: 'product-record',
|
|
593
|
+
classification: 'confidential',
|
|
594
|
+
locationId: 'database-backup',
|
|
595
|
+
sourceRef: 'foundation/database-backup',
|
|
596
|
+
surface: 'store',
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
categoryId: 'product-record',
|
|
600
|
+
classification: 'confidential',
|
|
601
|
+
locationId: 'lifecycle-audit',
|
|
602
|
+
sourceRef: 'database/schema.ts#data_lifecycle_ledger',
|
|
603
|
+
surface: 'store',
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
categoryId: 'lifecycle-control-metadata',
|
|
607
|
+
classification: 'confidential',
|
|
608
|
+
locationId: 'lifecycle-control',
|
|
609
|
+
sourceRef: 'database/schema.ts#authorization-and-lifecycle-tables',
|
|
610
|
+
surface: 'store',
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
categoryId: 'lifecycle-control-metadata',
|
|
614
|
+
classification: 'confidential',
|
|
615
|
+
locationId: 'downstream-copy-registry',
|
|
616
|
+
sourceRef: 'database/schema.ts#data_lifecycle_downstream_copies',
|
|
617
|
+
surface: 'store',
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
categoryId: 'product-record',
|
|
621
|
+
classification: 'confidential',
|
|
622
|
+
locationId: 'event-archive',
|
|
623
|
+
sourceRef: 'foundation/event-bus',
|
|
624
|
+
surface: 'store',
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
categoryId: 'product-record',
|
|
628
|
+
classification: 'confidential',
|
|
629
|
+
locationId: 'event-queue',
|
|
630
|
+
sourceRef: 'infra/product.ts#eventQueue',
|
|
631
|
+
surface: 'store',
|
|
632
|
+
},
|
|
633
|
+
{
|
|
634
|
+
categoryId: 'product-record',
|
|
635
|
+
classification: 'confidential',
|
|
636
|
+
locationId: 'event-dlq',
|
|
637
|
+
sourceRef: 'infra/product.ts#eventDlq',
|
|
638
|
+
surface: 'store',
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
categoryId: 'product-record',
|
|
642
|
+
classification: 'confidential',
|
|
643
|
+
locationId: 'application-log',
|
|
644
|
+
sourceRef: 'operations/logging-components.json',
|
|
645
|
+
surface: 'store',
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
categoryId: 'product-record',
|
|
649
|
+
classification: 'confidential',
|
|
650
|
+
locationId: 'confidential-export',
|
|
651
|
+
sourceRef: 'infra/product.ts#dataExportBucket',
|
|
652
|
+
surface: 'store',
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
categoryId: 'synthetic-test-data',
|
|
656
|
+
classification: 'internal',
|
|
657
|
+
locationId: 'test-fixture',
|
|
658
|
+
sourceRef: 'testing/fixtures',
|
|
659
|
+
surface: 'store',
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
categoryId: 'synthetic-test-data',
|
|
663
|
+
classification: 'internal',
|
|
664
|
+
locationId: 'test-record-database',
|
|
665
|
+
sourceRef: 'database/schema.ts#records.test_expires_at',
|
|
666
|
+
surface: 'store',
|
|
667
|
+
},
|
|
668
|
+
...[
|
|
669
|
+
'created-event-archive',
|
|
670
|
+
'created-event-dead-letter',
|
|
671
|
+
'created-event-queue',
|
|
672
|
+
'operational-log',
|
|
673
|
+
'subject-export',
|
|
674
|
+
].map((locationId) => ({
|
|
675
|
+
categoryId: 'product-record',
|
|
676
|
+
classification: 'confidential',
|
|
677
|
+
locationId,
|
|
678
|
+
sourceRef: `data/policy-observation#${locationId}`,
|
|
679
|
+
surface: 'copy',
|
|
680
|
+
})),
|
|
681
|
+
],
|
|
682
|
+
schemaVersion: 1,
|
|
683
|
+
};
|
|
684
|
+
return {
|
|
685
|
+
'data/policy-acceptance.json': (0, built_in_plan_shared_js_1.json)({
|
|
686
|
+
physicalStores,
|
|
687
|
+
policy,
|
|
688
|
+
schemaVersion: 1,
|
|
689
|
+
}),
|
|
690
|
+
'data/physical-stores.json': (0, built_in_plan_shared_js_1.json)(physicalStores),
|
|
691
|
+
'data/policy.json': (0, built_in_plan_shared_js_1.json)(policy),
|
|
692
|
+
'docs/runbooks/data-lifecycle.md': `# Data lifecycle
|
|
693
|
+
|
|
694
|
+
\`data/policy.json\` is the Slice-owned source of truth for data categories,
|
|
695
|
+
purposes, classifications, stores, copies, retention, rights, holds, lineage,
|
|
696
|
+
and evidence. Product changes update this seeded policy; framework upgrades do
|
|
697
|
+
not weaken or overwrite it.
|
|
698
|
+
|
|
699
|
+
Runtime retention, deletion, export, and restore import that same descriptor;
|
|
700
|
+
policy version and retention duration are not copied constants. Checked-in
|
|
701
|
+
holds and online \`data_lifecycle_holds\` rows are evaluated together, so either
|
|
702
|
+
source blocks its declared operation. The generated v1 administration API
|
|
703
|
+
creates exact-record holds only. Category-, subject-, and future-record holds
|
|
704
|
+
require a separately reviewed extension rather than an inferred wildcard.
|
|
705
|
+
|
|
706
|
+
\`data/physical-stores.json\` is the independently maintained, Slice-owned
|
|
707
|
+
observation set. Record every category actually present at each production
|
|
708
|
+
store and copy; one observed category never stands in for another category at
|
|
709
|
+
the same location. Framework upgrades preserve this seeded inventory so an
|
|
710
|
+
adopter must reconcile newly observed storage explicitly.
|
|
711
|
+
|
|
712
|
+
Run \`pnpm nx run ${name}:data-policy-check\` before changing an API, schema,
|
|
713
|
+
event, store, or log projection. Run
|
|
714
|
+
\`pnpm nx run ${name}:data-retention -- --report\` before any apply. Applying a
|
|
715
|
+
retention plan requires an approved request digest and writes content-free
|
|
716
|
+
checkpoint and audit evidence.
|
|
717
|
+
|
|
718
|
+
Product workloads may append and query audit rows but cannot update, truncate,
|
|
719
|
+
or delete them directly. Bounded expiry runs only through the generated
|
|
720
|
+
security-definer prune functions, whose execute privilege is granted during
|
|
721
|
+
database migration.
|
|
722
|
+
|
|
723
|
+
Production values, tokens, cookies, request bodies, and database rows are
|
|
724
|
+
prohibited from source, test fixtures, prompts, logs, and evidence. Tests use
|
|
725
|
+
deterministic synthetic references only. A deployed record may carry
|
|
726
|
+
\`testExpiresAt\` only when the authenticated principal belongs to the generated
|
|
727
|
+
\`${name}-test-writer\` group; ordinary product writes leave that column null.
|
|
728
|
+
|
|
729
|
+
Confidential export execution persists its cleanup deadline before any object
|
|
730
|
+
write and holds the workflow plus record locks through the versioned write and
|
|
731
|
+
publication commit. The hourly cleanup also claims expired \`gathering\`
|
|
732
|
+
workflows, discovers every exact object version and delete marker, and records
|
|
733
|
+
artifact-free completion after recovering a post-write database failure.
|
|
734
|
+
`,
|
|
735
|
+
'docs/runbooks/data-restore-reconciliation.md': `# Data restore reconciliation
|
|
736
|
+
|
|
737
|
+
Restore into an isolated target and keep it unavailable to product traffic.
|
|
738
|
+
Validate backup integrity, then replay every pseudonymous deletion/correction
|
|
739
|
+
ledger entry that falls inside the backup window. Run retention and reconcile
|
|
740
|
+
every downstream copy declared by \`data/policy.json\` before cutover.
|
|
741
|
+
|
|
742
|
+
The restore result records policy and backup digests, checkpoint references,
|
|
743
|
+
actual RPO/RTO, counts, and pass/fail outcomes. It never retains subject
|
|
744
|
+
identity, record content, credentials, provider response bodies, or raw
|
|
745
|
+
resource identifiers. A missing ledger range, failed replay, unresolved copy,
|
|
746
|
+
or failed authorization blocks service restoration.
|
|
747
|
+
`,
|
|
748
|
+
};
|
|
749
|
+
}
|
|
750
|
+
//# sourceMappingURL=built-in-plan-data-lifecycle-files.js.map
|