@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,717 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SUPPLY_CHAIN_SUPPORTED_PLATFORMS = exports.SUPPLY_CHAIN_INVENTORY_SCHEMA_VERSION = void 0;
|
|
4
|
+
exports.discoverLifecycleScripts = discoverLifecycleScripts;
|
|
5
|
+
exports.validateReviewedBuildPermissions = validateReviewedBuildPermissions;
|
|
6
|
+
exports.validateLifecycleScriptInventory = validateLifecycleScriptInventory;
|
|
7
|
+
exports.scanContainerImageAuthorities = scanContainerImageAuthorities;
|
|
8
|
+
exports.scanContainerRecipe = scanContainerRecipe;
|
|
9
|
+
exports.createSupplyChainInventory = createSupplyChainInventory;
|
|
10
|
+
const deterministic_order_js_1 = require("../deterministic-order.js");
|
|
11
|
+
const yaml_1 = require("yaml");
|
|
12
|
+
const validation_js_1 = require("../validation.js");
|
|
13
|
+
const common_js_1 = require("./common.js");
|
|
14
|
+
const errors_js_1 = require("./errors.js");
|
|
15
|
+
exports.SUPPLY_CHAIN_INVENTORY_SCHEMA_VERSION = 2;
|
|
16
|
+
exports.SUPPLY_CHAIN_SUPPORTED_PLATFORMS = [
|
|
17
|
+
'darwin-arm64',
|
|
18
|
+
'darwin-x64',
|
|
19
|
+
'linux-arm64-glibc',
|
|
20
|
+
'linux-arm64-musl',
|
|
21
|
+
'linux-x64-glibc',
|
|
22
|
+
'linux-x64-musl',
|
|
23
|
+
'win32-arm64',
|
|
24
|
+
'win32-x64',
|
|
25
|
+
];
|
|
26
|
+
function discoverLifecycleScripts(packageMetadata) {
|
|
27
|
+
const discovered = new Map();
|
|
28
|
+
for (const [index, metadata] of packageMetadata.entries()) {
|
|
29
|
+
if (!(0, validation_js_1.isRecord)(metadata)) {
|
|
30
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', `packageMetadata[${index}]`, 'must be a package manifest object');
|
|
31
|
+
}
|
|
32
|
+
const scripts = (0, validation_js_1.isRecord)(metadata.scripts) ? metadata.scripts : {};
|
|
33
|
+
const lifecycle = ['preinstall', 'install', 'postinstall'].filter((name) => typeof scripts[name] === 'string');
|
|
34
|
+
if (lifecycle.length === 0)
|
|
35
|
+
continue;
|
|
36
|
+
if (typeof metadata.name !== 'string' ||
|
|
37
|
+
!common_js_1.SUPPLY_CHAIN_PACKAGE_NAME.test(metadata.name) ||
|
|
38
|
+
typeof metadata.version !== 'string' ||
|
|
39
|
+
metadata.version.trim() === '') {
|
|
40
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', `packageMetadata[${index}]`, 'a package with lifecycle code must expose exact name and version metadata');
|
|
41
|
+
}
|
|
42
|
+
const identity = `${metadata.name}@${metadata.version}`;
|
|
43
|
+
const existing = discovered.get(identity);
|
|
44
|
+
if (existing &&
|
|
45
|
+
existing.scripts.join('\0') !== lifecycle.sort().join('\0')) {
|
|
46
|
+
throw new errors_js_1.SupplyChainError('supply-chain-inventory-incomplete', `packageMetadata[${index}]`, `${identity} has conflicting installed lifecycle metadata`);
|
|
47
|
+
}
|
|
48
|
+
discovered.set(identity, {
|
|
49
|
+
package: metadata.name,
|
|
50
|
+
scripts: lifecycle.sort(),
|
|
51
|
+
version: metadata.version,
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
return [...discovered.values()].sort((left, right) => (0, deterministic_order_js_1.compareUtf16)(`${left.package}\0${left.version}`, `${right.package}\0${right.version}`));
|
|
55
|
+
}
|
|
56
|
+
function manifestImporter(path) {
|
|
57
|
+
if (path === 'package.json')
|
|
58
|
+
return '.';
|
|
59
|
+
if (!path.endsWith('/package.json') || path.startsWith('/')) {
|
|
60
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', path, 'manifest path must be repository-relative and end with package.json');
|
|
61
|
+
}
|
|
62
|
+
const importer = path.slice(0, -'/package.json'.length);
|
|
63
|
+
if (importer
|
|
64
|
+
.split('/')
|
|
65
|
+
.some((segment) => segment === '' || segment === '.' || segment === '..')) {
|
|
66
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', path, 'manifest path contains an unsafe segment');
|
|
67
|
+
}
|
|
68
|
+
return importer;
|
|
69
|
+
}
|
|
70
|
+
function dependencySections() {
|
|
71
|
+
return [
|
|
72
|
+
['dependencies', 'production'],
|
|
73
|
+
['devDependencies', 'development'],
|
|
74
|
+
['optionalDependencies', 'optional'],
|
|
75
|
+
['peerDependencies', 'peer'],
|
|
76
|
+
];
|
|
77
|
+
}
|
|
78
|
+
function lockSection(scope) {
|
|
79
|
+
switch (scope) {
|
|
80
|
+
case 'development':
|
|
81
|
+
return 'devDependencies';
|
|
82
|
+
case 'optional':
|
|
83
|
+
return 'optionalDependencies';
|
|
84
|
+
case 'peer':
|
|
85
|
+
return 'peerDependencies';
|
|
86
|
+
case 'production':
|
|
87
|
+
return 'dependencies';
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
function requirePackageManager(manifest, nodeVersion) {
|
|
91
|
+
if (typeof manifest.packageManager !== 'string' ||
|
|
92
|
+
!/^pnpm@\d+\.\d+\.\d+(?:-[0-9A-Za-z.-]+)?\+sha512\.[a-f0-9]{128}$/.test(manifest.packageManager)) {
|
|
93
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', 'package.json#packageManager', 'must pin an exact pnpm version and Corepack SHA-512 artifact digest');
|
|
94
|
+
}
|
|
95
|
+
const engines = manifest.engines;
|
|
96
|
+
if (!(0, validation_js_1.isRecord)(engines) ||
|
|
97
|
+
typeof engines.node !== 'string' ||
|
|
98
|
+
engines.node.trim() === '') {
|
|
99
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', 'package.json#engines.node', 'must declare the supported Node.js version policy');
|
|
100
|
+
}
|
|
101
|
+
if (!/^\d+\.\d+\.\d+$/.test(nodeVersion)) {
|
|
102
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', '.node-version', 'must pin one exact Node.js patch version');
|
|
103
|
+
}
|
|
104
|
+
return { node: nodeVersion, packageManager: manifest.packageManager };
|
|
105
|
+
}
|
|
106
|
+
function parseLockfile(lockfile) {
|
|
107
|
+
let value;
|
|
108
|
+
try {
|
|
109
|
+
value = (0, yaml_1.parse)(lockfile);
|
|
110
|
+
}
|
|
111
|
+
catch (error) {
|
|
112
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', 'pnpm-lock.yaml', `cannot be parsed: ${error instanceof Error ? error.message : String(error)}`);
|
|
113
|
+
}
|
|
114
|
+
if (!(0, validation_js_1.isRecord)(value) ||
|
|
115
|
+
!['9.0', 9].includes(value.lockfileVersion) ||
|
|
116
|
+
!(0, validation_js_1.isRecord)(value.importers) ||
|
|
117
|
+
!(0, validation_js_1.isRecord)(value.packages)) {
|
|
118
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', 'pnpm-lock.yaml', `must be a complete pnpm lockfile v9 (version=${String((0, validation_js_1.isRecord)(value) ? value.lockfileVersion : undefined)}, importers=${String((0, validation_js_1.isRecord)(value) && (0, validation_js_1.isRecord)(value.importers))}, packages=${String((0, validation_js_1.isRecord)(value) && (0, validation_js_1.isRecord)(value.packages))})`);
|
|
119
|
+
}
|
|
120
|
+
return value;
|
|
121
|
+
}
|
|
122
|
+
function collectDependencies(manifests, lockfile) {
|
|
123
|
+
const importers = lockfile.importers;
|
|
124
|
+
const entries = [];
|
|
125
|
+
for (const [manifestPath, manifestValue] of Object.entries(manifests).sort(([left], [right]) => (0, deterministic_order_js_1.compareUtf16)(left, right))) {
|
|
126
|
+
if (!(0, validation_js_1.isRecord)(manifestValue)) {
|
|
127
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', manifestPath, 'package manifest must be an object');
|
|
128
|
+
}
|
|
129
|
+
const importerName = manifestImporter(manifestPath);
|
|
130
|
+
const importer = importers[importerName];
|
|
131
|
+
if (!(0, validation_js_1.isRecord)(importer)) {
|
|
132
|
+
throw new errors_js_1.SupplyChainError('supply-chain-lock-drift', `pnpm-lock.yaml#importers.${importerName}`, `is missing the importer for ${manifestPath}`);
|
|
133
|
+
}
|
|
134
|
+
for (const [manifestSection, scope] of dependencySections()) {
|
|
135
|
+
const declared = manifestValue[manifestSection];
|
|
136
|
+
if (declared === undefined)
|
|
137
|
+
continue;
|
|
138
|
+
if (!(0, validation_js_1.isRecord)(declared)) {
|
|
139
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', `${manifestPath}#${manifestSection}`, 'must be an object');
|
|
140
|
+
}
|
|
141
|
+
const locked = importer[lockSection(scope)];
|
|
142
|
+
if (!(0, validation_js_1.isRecord)(locked) && Object.keys(declared).length > 0) {
|
|
143
|
+
throw new errors_js_1.SupplyChainError('supply-chain-lock-drift', `pnpm-lock.yaml#importers.${importerName}.${lockSection(scope)}`, 'is missing declared dependencies');
|
|
144
|
+
}
|
|
145
|
+
for (const [dependency, specifier] of Object.entries(declared).sort(([left], [right]) => (0, deterministic_order_js_1.compareUtf16)(left, right))) {
|
|
146
|
+
if (!common_js_1.SUPPLY_CHAIN_PACKAGE_NAME.test(dependency) ||
|
|
147
|
+
typeof specifier !== 'string' ||
|
|
148
|
+
specifier.trim() === '') {
|
|
149
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', `${manifestPath}#${manifestSection}.${dependency}`, 'must be a valid package name and non-empty specifier');
|
|
150
|
+
}
|
|
151
|
+
const lockEntry = (0, validation_js_1.isRecord)(locked) ? locked[dependency] : undefined;
|
|
152
|
+
if (!(0, validation_js_1.isRecord)(lockEntry) ||
|
|
153
|
+
lockEntry.specifier !== specifier ||
|
|
154
|
+
typeof lockEntry.version !== 'string' ||
|
|
155
|
+
lockEntry.version.trim() === '') {
|
|
156
|
+
throw new errors_js_1.SupplyChainError('supply-chain-lock-drift', `pnpm-lock.yaml#importers.${importerName}.${lockSection(scope)}.${dependency}`, `does not exactly bind manifest specifier ${specifier}`);
|
|
157
|
+
}
|
|
158
|
+
entries.push({
|
|
159
|
+
importer: importerName,
|
|
160
|
+
name: dependency,
|
|
161
|
+
resolved: lockEntry.version,
|
|
162
|
+
scope,
|
|
163
|
+
specifier,
|
|
164
|
+
});
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
return entries.sort((left, right) => (0, deterministic_order_js_1.compareUtf16)([
|
|
169
|
+
left.importer,
|
|
170
|
+
left.scope,
|
|
171
|
+
left.name,
|
|
172
|
+
left.specifier,
|
|
173
|
+
left.resolved,
|
|
174
|
+
].join('\0'), [
|
|
175
|
+
right.importer,
|
|
176
|
+
right.scope,
|
|
177
|
+
right.name,
|
|
178
|
+
right.specifier,
|
|
179
|
+
right.resolved,
|
|
180
|
+
].join('\0')));
|
|
181
|
+
}
|
|
182
|
+
function parseLockPackageIdentity(lockKey) {
|
|
183
|
+
const withoutPeers = lockKey.replace(/\(.+$/, '');
|
|
184
|
+
const separator = withoutPeers.lastIndexOf('@');
|
|
185
|
+
if (separator <= 0) {
|
|
186
|
+
throw new errors_js_1.SupplyChainError('supply-chain-inventory-incomplete', `pnpm-lock.yaml#packages.${lockKey}`, 'cannot derive package name and exact version from lock key');
|
|
187
|
+
}
|
|
188
|
+
const name = withoutPeers.slice(0, separator);
|
|
189
|
+
const version = withoutPeers.slice(separator + 1);
|
|
190
|
+
if (!common_js_1.SUPPLY_CHAIN_PACKAGE_NAME.test(name) ||
|
|
191
|
+
version.length === 0 ||
|
|
192
|
+
/^(?:link|workspace|file):/.test(version)) {
|
|
193
|
+
throw new errors_js_1.SupplyChainError('supply-chain-inventory-incomplete', `pnpm-lock.yaml#packages.${lockKey}`, 'must identify a registry package and exact resolved version');
|
|
194
|
+
}
|
|
195
|
+
return { name, version };
|
|
196
|
+
}
|
|
197
|
+
function packageDependencyReference(value, path) {
|
|
198
|
+
const separator = value.startsWith('@')
|
|
199
|
+
? value.indexOf('@', value.indexOf('/') + 1)
|
|
200
|
+
: value.indexOf('@');
|
|
201
|
+
const name = value.slice(0, separator);
|
|
202
|
+
const reference = value.slice(separator + 1);
|
|
203
|
+
if (separator <= 0 ||
|
|
204
|
+
!common_js_1.SUPPLY_CHAIN_PACKAGE_NAME.test(name) ||
|
|
205
|
+
reference.trim() === '') {
|
|
206
|
+
throw new errors_js_1.SupplyChainError('supply-chain-inventory-incomplete', path, 'must identify a package name and exact lock reference');
|
|
207
|
+
}
|
|
208
|
+
return { name, reference };
|
|
209
|
+
}
|
|
210
|
+
function effectivePackagePlatforms(roots, packages) {
|
|
211
|
+
const byLockKey = new Map(packages.map((entry) => [entry.lockKey, entry]));
|
|
212
|
+
const byIdentity = new Map();
|
|
213
|
+
for (const entry of packages) {
|
|
214
|
+
const identity = `${entry.name}\0${entry.version}`;
|
|
215
|
+
byIdentity.set(identity, [...(byIdentity.get(identity) ?? []), entry]);
|
|
216
|
+
}
|
|
217
|
+
const targetFor = (name, reference, path) => {
|
|
218
|
+
if (/^(?:file|link|workspace):/.test(reference))
|
|
219
|
+
return undefined;
|
|
220
|
+
let targetName = name;
|
|
221
|
+
let targetReference = reference;
|
|
222
|
+
if (reference.startsWith('npm:')) {
|
|
223
|
+
const alias = packageDependencyReference(reference.slice(4), path);
|
|
224
|
+
targetName = alias.name;
|
|
225
|
+
targetReference = alias.reference;
|
|
226
|
+
}
|
|
227
|
+
const exact = byLockKey.get(`${targetName}@${targetReference}`);
|
|
228
|
+
if (exact)
|
|
229
|
+
return exact;
|
|
230
|
+
const aliasSeparator = targetReference.startsWith('@')
|
|
231
|
+
? targetReference.indexOf('@', targetReference.indexOf('/') + 1)
|
|
232
|
+
: targetReference.indexOf('@');
|
|
233
|
+
const aliasName = targetReference.slice(0, aliasSeparator);
|
|
234
|
+
const aliasReference = targetReference.slice(aliasSeparator + 1);
|
|
235
|
+
if (aliasSeparator > 0 &&
|
|
236
|
+
common_js_1.SUPPLY_CHAIN_PACKAGE_NAME.test(aliasName) &&
|
|
237
|
+
aliasReference.trim() !== '') {
|
|
238
|
+
targetName = aliasName;
|
|
239
|
+
targetReference = aliasReference;
|
|
240
|
+
const aliased = byLockKey.get(`${targetName}@${targetReference}`);
|
|
241
|
+
if (aliased)
|
|
242
|
+
return aliased;
|
|
243
|
+
}
|
|
244
|
+
const peerlessReference = targetReference.replace(/\(.+$/, '');
|
|
245
|
+
const candidates = byIdentity.get(`${targetName}\0${peerlessReference}`) ?? [];
|
|
246
|
+
if (candidates.length !== 1) {
|
|
247
|
+
throw new errors_js_1.SupplyChainError('supply-chain-inventory-incomplete', path, candidates.length === 0
|
|
248
|
+
? `has no package snapshot for ${targetName}@${targetReference}`
|
|
249
|
+
: `does not select one exact peer context for ${targetName}@${targetReference}`);
|
|
250
|
+
}
|
|
251
|
+
return candidates[0];
|
|
252
|
+
};
|
|
253
|
+
const effective = new Map();
|
|
254
|
+
const queue = [];
|
|
255
|
+
const include = (entry, platforms) => {
|
|
256
|
+
const current = effective.get(entry.lockKey) ?? new Set();
|
|
257
|
+
const previousSize = current.size;
|
|
258
|
+
for (const platform of platforms) {
|
|
259
|
+
if (entry.applicablePlatforms.includes(platform))
|
|
260
|
+
current.add(platform);
|
|
261
|
+
}
|
|
262
|
+
effective.set(entry.lockKey, current);
|
|
263
|
+
if (current.size !== previousSize)
|
|
264
|
+
queue.push(entry.lockKey);
|
|
265
|
+
};
|
|
266
|
+
for (const [index, root] of roots.entries()) {
|
|
267
|
+
const target = targetFor(root.name, root.resolved, `dependencies[${index}].resolved`);
|
|
268
|
+
if (target)
|
|
269
|
+
include(target, target.applicablePlatforms);
|
|
270
|
+
}
|
|
271
|
+
for (let index = 0; index < queue.length; index += 1) {
|
|
272
|
+
const parentKey = queue[index];
|
|
273
|
+
const parent = parentKey ? byLockKey.get(parentKey) : undefined;
|
|
274
|
+
if (!parent)
|
|
275
|
+
continue;
|
|
276
|
+
const parentPlatforms = effective.get(parent.lockKey) ?? new Set();
|
|
277
|
+
for (const [dependencyIndex, dependency] of parent.dependencies.entries()) {
|
|
278
|
+
const parsed = packageDependencyReference(dependency, `pnpm-lock.yaml#snapshots.${parent.lockKey}.dependencies[${dependencyIndex}]`);
|
|
279
|
+
const child = targetFor(parsed.name, parsed.reference, `pnpm-lock.yaml#snapshots.${parent.lockKey}.dependencies[${dependencyIndex}]`);
|
|
280
|
+
if (child)
|
|
281
|
+
include(child, [...parentPlatforms]);
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
return packages.map((entry) => {
|
|
285
|
+
const platforms = effective.get(entry.lockKey) ?? new Set();
|
|
286
|
+
return {
|
|
287
|
+
...entry,
|
|
288
|
+
applicablePlatforms: exports.SUPPLY_CHAIN_SUPPORTED_PLATFORMS.filter((platform) => platforms.has(platform)),
|
|
289
|
+
};
|
|
290
|
+
});
|
|
291
|
+
}
|
|
292
|
+
function collectResolvedPackages(lockfile, roots) {
|
|
293
|
+
const packages = lockfile.packages;
|
|
294
|
+
const snapshots = (0, validation_js_1.isRecord)(lockfile.snapshots) ? lockfile.snapshots : {};
|
|
295
|
+
const packageMetadata = new Map();
|
|
296
|
+
for (const [packageKey, metadata] of Object.entries(packages).sort(([left], [right]) => (0, deterministic_order_js_1.compareUtf16)(left, right))) {
|
|
297
|
+
if (packageKey.replace(/\(.+$/, '') !== packageKey) {
|
|
298
|
+
throw new errors_js_1.SupplyChainError('supply-chain-inventory-incomplete', `pnpm-lock.yaml#packages.${packageKey}`, 'package metadata keys must be peerless; peer contexts belong in snapshots');
|
|
299
|
+
}
|
|
300
|
+
parseLockPackageIdentity(packageKey);
|
|
301
|
+
if (!(0, validation_js_1.isRecord)(metadata) ||
|
|
302
|
+
!(0, validation_js_1.isRecord)(metadata.resolution) ||
|
|
303
|
+
typeof metadata.resolution.integrity !== 'string' ||
|
|
304
|
+
!/^sha512-[A-Za-z0-9+/]{43,}={0,2}$/.test(metadata.resolution.integrity)) {
|
|
305
|
+
throw new errors_js_1.SupplyChainError('supply-chain-inventory-incomplete', `pnpm-lock.yaml#packages.${packageKey}.resolution.integrity`, 'registry package must retain its SHA-512 integrity');
|
|
306
|
+
}
|
|
307
|
+
packageMetadata.set(packageKey, {
|
|
308
|
+
applicablePlatforms: supportedPackagePlatforms(metadata, `pnpm-lock.yaml#packages.${packageKey}`),
|
|
309
|
+
integrity: metadata.resolution.integrity,
|
|
310
|
+
});
|
|
311
|
+
}
|
|
312
|
+
const coveredPackageKeys = new Set();
|
|
313
|
+
const resolvedPackages = Object.entries(snapshots)
|
|
314
|
+
.sort(([left], [right]) => (0, deterministic_order_js_1.compareUtf16)(left, right))
|
|
315
|
+
.map(([lockKey, snapshot]) => {
|
|
316
|
+
const packageKey = lockKey.replace(/\(.+$/, '');
|
|
317
|
+
const identity = parseLockPackageIdentity(lockKey);
|
|
318
|
+
const metadata = packageMetadata.get(packageKey);
|
|
319
|
+
if (!metadata) {
|
|
320
|
+
throw new errors_js_1.SupplyChainError('supply-chain-inventory-incomplete', `pnpm-lock.yaml#snapshots.${lockKey}`, `peer context has no exact peerless package metadata at packages.${packageKey}`);
|
|
321
|
+
}
|
|
322
|
+
const packageIdentity = parseLockPackageIdentity(packageKey);
|
|
323
|
+
if (packageIdentity.name !== identity.name ||
|
|
324
|
+
packageIdentity.version !== identity.version ||
|
|
325
|
+
!(0, validation_js_1.isRecord)(snapshot)) {
|
|
326
|
+
throw new errors_js_1.SupplyChainError('supply-chain-inventory-incomplete', `pnpm-lock.yaml#snapshots.${lockKey}`, 'must be an object that resolves to the same peerless package identity');
|
|
327
|
+
}
|
|
328
|
+
coveredPackageKeys.add(packageKey);
|
|
329
|
+
const dependencies = ['dependencies', 'optionalDependencies'].flatMap((section) => {
|
|
330
|
+
const entries = snapshot[section];
|
|
331
|
+
if (entries === undefined)
|
|
332
|
+
return [];
|
|
333
|
+
if (!(0, validation_js_1.isRecord)(entries)) {
|
|
334
|
+
throw new errors_js_1.SupplyChainError('supply-chain-inventory-incomplete', `pnpm-lock.yaml#snapshots.${lockKey}.${section}`, 'must be an exact dependency map');
|
|
335
|
+
}
|
|
336
|
+
return Object.entries(entries)
|
|
337
|
+
.sort(([left], [right]) => (0, deterministic_order_js_1.compareUtf16)(left, right))
|
|
338
|
+
.map(([name, version]) => {
|
|
339
|
+
if (!common_js_1.SUPPLY_CHAIN_PACKAGE_NAME.test(name) ||
|
|
340
|
+
typeof version !== 'string' ||
|
|
341
|
+
version.trim() === '') {
|
|
342
|
+
throw new errors_js_1.SupplyChainError('supply-chain-inventory-incomplete', `pnpm-lock.yaml#snapshots.${lockKey}.${section}.${name}`, 'must bind a package name to one exact lock reference');
|
|
343
|
+
}
|
|
344
|
+
return `${name}@${version}`;
|
|
345
|
+
});
|
|
346
|
+
});
|
|
347
|
+
return {
|
|
348
|
+
applicablePlatforms: metadata.applicablePlatforms,
|
|
349
|
+
dependencies: [...new Set(dependencies)].sort(),
|
|
350
|
+
integrity: metadata.integrity,
|
|
351
|
+
lockKey,
|
|
352
|
+
...identity,
|
|
353
|
+
};
|
|
354
|
+
});
|
|
355
|
+
for (const packageKey of packageMetadata.keys()) {
|
|
356
|
+
if (!coveredPackageKeys.has(packageKey)) {
|
|
357
|
+
throw new errors_js_1.SupplyChainError('supply-chain-inventory-incomplete', `pnpm-lock.yaml#packages.${packageKey}`, 'peerless package metadata has no exact dependency snapshot');
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
return effectivePackagePlatforms(roots, resolvedPackages);
|
|
361
|
+
}
|
|
362
|
+
function platformParts(platform) {
|
|
363
|
+
const [os, cpu, libc] = platform.split('-');
|
|
364
|
+
return {
|
|
365
|
+
cpu: cpu ?? '',
|
|
366
|
+
...(libc ? { libc } : {}),
|
|
367
|
+
os: os ?? '',
|
|
368
|
+
};
|
|
369
|
+
}
|
|
370
|
+
function packageConstraint(metadata, field, path) {
|
|
371
|
+
const value = metadata[field];
|
|
372
|
+
if (value === undefined)
|
|
373
|
+
return [];
|
|
374
|
+
if (!Array.isArray(value) ||
|
|
375
|
+
value.length === 0 ||
|
|
376
|
+
value.some((entry) => typeof entry !== 'string' ||
|
|
377
|
+
!/^!?[a-z0-9][a-z0-9._-]{0,31}$/.test(entry)) ||
|
|
378
|
+
new Set(value).size !== value.length) {
|
|
379
|
+
throw new errors_js_1.SupplyChainError('supply-chain-inventory-incomplete', `${path}.${field}`, 'must be a unique bounded package-platform constraint list');
|
|
380
|
+
}
|
|
381
|
+
return value;
|
|
382
|
+
}
|
|
383
|
+
function constraintMatches(constraints, actual) {
|
|
384
|
+
if (constraints.length === 0)
|
|
385
|
+
return true;
|
|
386
|
+
const excluded = new Set(constraints
|
|
387
|
+
.filter((value) => value.startsWith('!'))
|
|
388
|
+
.map((value) => value.slice(1)));
|
|
389
|
+
if (actual !== undefined && excluded.has(actual))
|
|
390
|
+
return false;
|
|
391
|
+
const included = constraints.filter((value) => !value.startsWith('!'));
|
|
392
|
+
return (included.length === 0 || (actual !== undefined && included.includes(actual)));
|
|
393
|
+
}
|
|
394
|
+
function supportedPackagePlatforms(metadata, path) {
|
|
395
|
+
const cpu = packageConstraint(metadata, 'cpu', path);
|
|
396
|
+
const libc = packageConstraint(metadata, 'libc', path);
|
|
397
|
+
const os = packageConstraint(metadata, 'os', path);
|
|
398
|
+
return exports.SUPPLY_CHAIN_SUPPORTED_PLATFORMS.filter((platform) => {
|
|
399
|
+
const candidate = platformParts(platform);
|
|
400
|
+
return (constraintMatches(os, candidate.os) &&
|
|
401
|
+
constraintMatches(cpu, candidate.cpu) &&
|
|
402
|
+
constraintMatches(libc, candidate.libc));
|
|
403
|
+
});
|
|
404
|
+
}
|
|
405
|
+
function parseWorkspacePolicy(value) {
|
|
406
|
+
let parsed;
|
|
407
|
+
try {
|
|
408
|
+
parsed = (0, yaml_1.parse)(value);
|
|
409
|
+
}
|
|
410
|
+
catch (error) {
|
|
411
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', 'pnpm-workspace.yaml', `cannot be parsed: ${error instanceof Error ? error.message : String(error)}`);
|
|
412
|
+
}
|
|
413
|
+
if (!(0, validation_js_1.isRecord)(parsed)) {
|
|
414
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', 'pnpm-workspace.yaml', 'must be an object');
|
|
415
|
+
}
|
|
416
|
+
const allowBuilds = parsed.allowBuilds;
|
|
417
|
+
if (allowBuilds !== undefined && !(0, validation_js_1.isRecord)(allowBuilds)) {
|
|
418
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', 'pnpm-workspace.yaml#allowBuilds', 'must be an exact package-to-boolean map');
|
|
419
|
+
}
|
|
420
|
+
const normalized = {};
|
|
421
|
+
for (const [name, allowed] of Object.entries(allowBuilds ?? {}).sort(([left], [right]) => (0, deterministic_order_js_1.compareUtf16)(left, right))) {
|
|
422
|
+
if (!common_js_1.SUPPLY_CHAIN_PACKAGE_NAME.test(name) || allowed !== true) {
|
|
423
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', `pnpm-workspace.yaml#allowBuilds.${name}`, 'must name an exact package allowed with the boolean true');
|
|
424
|
+
}
|
|
425
|
+
normalized[name] = true;
|
|
426
|
+
}
|
|
427
|
+
return {
|
|
428
|
+
allowBuilds: normalized,
|
|
429
|
+
strictDepBuilds: parsed.strictDepBuilds === true,
|
|
430
|
+
};
|
|
431
|
+
}
|
|
432
|
+
function validateReviewedBuildPermissions(workspacePolicy, permissions) {
|
|
433
|
+
const policy = parseWorkspacePolicy(workspacePolicy);
|
|
434
|
+
const reviewed = new Map();
|
|
435
|
+
for (const [index, permission] of permissions.entries()) {
|
|
436
|
+
if (!permission ||
|
|
437
|
+
typeof permission !== 'object' ||
|
|
438
|
+
!common_js_1.SUPPLY_CHAIN_PACKAGE_NAME.test(permission.package) ||
|
|
439
|
+
typeof permission.approvedAt !== 'string' ||
|
|
440
|
+
new Date(permission.approvedAt).toISOString() !== permission.approvedAt ||
|
|
441
|
+
[permission.owner, permission.rationale, permission.workItem].some((entry) => typeof entry !== 'string' ||
|
|
442
|
+
entry.trim() === '' ||
|
|
443
|
+
entry !== entry.trim()) ||
|
|
444
|
+
reviewed.has(permission.package)) {
|
|
445
|
+
throw new errors_js_1.SupplyChainError('supply-chain-script-unreviewed', `buildPermissions[${index}]`, 'must be a unique, attributable exact-package approval');
|
|
446
|
+
}
|
|
447
|
+
reviewed.set(permission.package, permission);
|
|
448
|
+
}
|
|
449
|
+
for (const name of Object.keys(policy.allowBuilds)) {
|
|
450
|
+
if (!reviewed.has(name)) {
|
|
451
|
+
throw new errors_js_1.SupplyChainError('supply-chain-script-unreviewed', `pnpm-workspace.yaml#allowBuilds.${name}`, 'has no owner, rationale, approval time, and work item');
|
|
452
|
+
}
|
|
453
|
+
}
|
|
454
|
+
for (const name of reviewed.keys()) {
|
|
455
|
+
if (!policy.allowBuilds[name]) {
|
|
456
|
+
throw new errors_js_1.SupplyChainError('supply-chain-script-unreviewed', `buildPermissions.${name}`, 'does not correspond to an active allowBuilds entry');
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
function validateLifecycleScriptInventory(lifecycleScripts, workspacePolicy) {
|
|
461
|
+
const { allowBuilds, strictDepBuilds } = parseWorkspacePolicy(workspacePolicy);
|
|
462
|
+
if (!strictDepBuilds) {
|
|
463
|
+
throw new errors_js_1.SupplyChainError('supply-chain-script-unreviewed', 'pnpm-workspace.yaml#strictDepBuilds', 'must equal true so newly introduced dependency scripts fail closed');
|
|
464
|
+
}
|
|
465
|
+
const seen = new Set();
|
|
466
|
+
for (const [index, entry] of lifecycleScripts.entries()) {
|
|
467
|
+
if (!common_js_1.SUPPLY_CHAIN_PACKAGE_NAME.test(entry.package) ||
|
|
468
|
+
typeof entry.version !== 'string' ||
|
|
469
|
+
entry.version.trim() === '' ||
|
|
470
|
+
entry.scripts.length === 0 ||
|
|
471
|
+
entry.scripts.some((script) => !['preinstall', 'install', 'postinstall'].includes(script)) ||
|
|
472
|
+
new Set(entry.scripts).size !== entry.scripts.length ||
|
|
473
|
+
seen.has(`${entry.package}@${entry.version}`)) {
|
|
474
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', `lifecycleScripts[${index}]`, 'must uniquely identify exact packages and declared lifecycle hooks');
|
|
475
|
+
}
|
|
476
|
+
seen.add(`${entry.package}@${entry.version}`);
|
|
477
|
+
if (!allowBuilds[entry.package]) {
|
|
478
|
+
throw new errors_js_1.SupplyChainError('supply-chain-script-unreviewed', `lifecycleScripts[${index}]`, `${entry.package}@${entry.version} has lifecycle code but is not reviewed in allowBuilds`);
|
|
479
|
+
}
|
|
480
|
+
}
|
|
481
|
+
}
|
|
482
|
+
function dockerfileInstructions(path, source) {
|
|
483
|
+
if (source.includes('\0')) {
|
|
484
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', path, 'container recipe contains a NUL byte');
|
|
485
|
+
}
|
|
486
|
+
const instructions = [];
|
|
487
|
+
let pending = '';
|
|
488
|
+
let pendingLine = 0;
|
|
489
|
+
for (const [index, raw] of source
|
|
490
|
+
.replace(/\r\n/g, '\n')
|
|
491
|
+
.split('\n')
|
|
492
|
+
.entries()) {
|
|
493
|
+
const trimmed = raw.trim();
|
|
494
|
+
if (pending === '' && (trimmed === '' || trimmed.startsWith('#')))
|
|
495
|
+
continue;
|
|
496
|
+
if (pending === '')
|
|
497
|
+
pendingLine = index + 1;
|
|
498
|
+
const trailingBackslashes = /\\+$/.exec(trimmed)?.[0].length ?? 0;
|
|
499
|
+
const continued = trailingBackslashes % 2 === 1;
|
|
500
|
+
const fragment = continued ? trimmed.slice(0, -1).trimEnd() : trimmed;
|
|
501
|
+
pending = pending === '' ? fragment : `${pending} ${fragment}`;
|
|
502
|
+
if (continued)
|
|
503
|
+
continue;
|
|
504
|
+
if (/\s<<[-~]?\s*['"]?[^\s'"]+['"]?(?:\s|$)/u.test(pending)) {
|
|
505
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', `${path}#line[${pendingLine}]`, 'Blueprint container recipes may not use heredoc instructions');
|
|
506
|
+
}
|
|
507
|
+
instructions.push({ line: pendingLine, value: pending });
|
|
508
|
+
pending = '';
|
|
509
|
+
}
|
|
510
|
+
if (pending !== '') {
|
|
511
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', `${path}#line[${pendingLine}]`, 'container recipe ends inside a continued instruction');
|
|
512
|
+
}
|
|
513
|
+
return instructions;
|
|
514
|
+
}
|
|
515
|
+
function pinnedContainerImage(reference, label) {
|
|
516
|
+
if (!/^[a-z0-9][a-z0-9._/-]*:[A-Za-z0-9._-]+@sha256:[a-f0-9]{64}$/.test(reference)) {
|
|
517
|
+
throw new errors_js_1.SupplyChainError('supply-chain-container-mutable', label, 'container image authority must retain a readable tag and pin a lowercase SHA-256 digest');
|
|
518
|
+
}
|
|
519
|
+
return reference;
|
|
520
|
+
}
|
|
521
|
+
function externalImageAuthority(reference, stages, stageCount, label) {
|
|
522
|
+
if (/^\d+$/u.test(reference)) {
|
|
523
|
+
const index = Number(reference);
|
|
524
|
+
if (Number.isSafeInteger(index) && index >= 0 && index < stageCount) {
|
|
525
|
+
return undefined;
|
|
526
|
+
}
|
|
527
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', label, 'container stage index does not identify a prior stage');
|
|
528
|
+
}
|
|
529
|
+
if (stages.has(reference.toLowerCase()))
|
|
530
|
+
return undefined;
|
|
531
|
+
return pinnedContainerImage(reference, label);
|
|
532
|
+
}
|
|
533
|
+
function scanContainerImageAuthorities(path, source) {
|
|
534
|
+
const authorities = [];
|
|
535
|
+
if (source.startsWith('\uFEFF')) {
|
|
536
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', `${path}#encoding`, 'container recipe must not use a byte-order mark that can alter parser-directive recognition');
|
|
537
|
+
}
|
|
538
|
+
const escapeDirectives = [
|
|
539
|
+
...source.matchAll(/^\s*#\s*escape\s*=\s*(\S+)\s*$/gim),
|
|
540
|
+
];
|
|
541
|
+
if (escapeDirectives.length > 1) {
|
|
542
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', `${path}#escape`, 'container recipe must declare at most one escape parser directive');
|
|
543
|
+
}
|
|
544
|
+
if (escapeDirectives.length === 1 && escapeDirectives[0]?.[1] !== '\\') {
|
|
545
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', `${path}#escape`, 'Blueprint container recipes must use the default backslash escape so image-authority parsing cannot diverge from Docker');
|
|
546
|
+
}
|
|
547
|
+
const syntaxDirectives = [
|
|
548
|
+
...source.matchAll(/^\s*#\s*syntax\s*=\s*(\S+)\s*$/gim),
|
|
549
|
+
];
|
|
550
|
+
if (syntaxDirectives.length > 1) {
|
|
551
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', `${path}#syntax`, 'container recipe must declare at most one syntax frontend');
|
|
552
|
+
}
|
|
553
|
+
for (const [index, directive] of syntaxDirectives.entries()) {
|
|
554
|
+
const value = (directive[1] ?? '').replace(/^docker-image:\/\//u, '');
|
|
555
|
+
const reference = pinnedContainerImage(value, `${path}#syntax[${index}]`);
|
|
556
|
+
authorities.push({ instruction: 'syntax', reference });
|
|
557
|
+
}
|
|
558
|
+
const stages = new Set();
|
|
559
|
+
let stageCount = 0;
|
|
560
|
+
for (const { line, value } of dockerfileInstructions(path, source)) {
|
|
561
|
+
const instruction = value.replace(/^ONBUILD\s+/iu, '');
|
|
562
|
+
if (/^FROM\b/iu.test(instruction)) {
|
|
563
|
+
const match = /^FROM\s+(?:(?:--platform=\S+)\s+)*(\S+)(?:\s+AS\s+([A-Za-z0-9][A-Za-z0-9._-]{0,127}))?$/iu.exec(instruction);
|
|
564
|
+
if (!match) {
|
|
565
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', `${path}#line[${line}]`, 'container FROM instruction is not in the supported exact form');
|
|
566
|
+
}
|
|
567
|
+
const base = match[1] ?? '';
|
|
568
|
+
const external = externalImageAuthority(base, stages, stageCount, `${path}#FROM[${stageCount}]`);
|
|
569
|
+
if (external)
|
|
570
|
+
authorities.push({ instruction: 'FROM', reference: external });
|
|
571
|
+
const alias = match[2]?.toLowerCase();
|
|
572
|
+
if (alias) {
|
|
573
|
+
if (/^\d+$/u.test(alias) || stages.has(alias)) {
|
|
574
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', `${path}#FROM[${stageCount}]`, 'container stage aliases must be unique non-numeric identities');
|
|
575
|
+
}
|
|
576
|
+
stages.add(alias);
|
|
577
|
+
}
|
|
578
|
+
stageCount += 1;
|
|
579
|
+
continue;
|
|
580
|
+
}
|
|
581
|
+
if (/^COPY\b/iu.test(instruction)) {
|
|
582
|
+
const fromTokens = [...instruction.matchAll(/(?:^|\s)--from=(\S+)/giu)];
|
|
583
|
+
if (/--from\b/iu.test(instruction) && fromTokens.length !== 1) {
|
|
584
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', `${path}#line[${line}]`, 'container COPY --from must name one exact prior stage or image');
|
|
585
|
+
}
|
|
586
|
+
if (fromTokens.length === 1) {
|
|
587
|
+
const external = externalImageAuthority(fromTokens[0]?.[1] ?? '', stages, stageCount, `${path}#COPY-from[line-${line}]`);
|
|
588
|
+
if (external)
|
|
589
|
+
authorities.push({ instruction: 'COPY', reference: external });
|
|
590
|
+
}
|
|
591
|
+
}
|
|
592
|
+
if (/^RUN\b/iu.test(instruction)) {
|
|
593
|
+
for (const [mountIndex, mount] of [
|
|
594
|
+
...instruction.matchAll(/(?:^|\s)--mount=([^\s]+)/giu),
|
|
595
|
+
].entries()) {
|
|
596
|
+
const from = (mount[1] ?? '')
|
|
597
|
+
.split(',')
|
|
598
|
+
.filter((field) => field.startsWith('from='));
|
|
599
|
+
if (from.length > 1) {
|
|
600
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', `${path}#RUN-mount[${mountIndex}]`, 'container RUN mount must name at most one image or prior stage');
|
|
601
|
+
}
|
|
602
|
+
if (from.length === 1) {
|
|
603
|
+
const external = externalImageAuthority(from[0]?.slice('from='.length) ?? '', stages, stageCount, `${path}#RUN-mount[${mountIndex}]`);
|
|
604
|
+
if (external) {
|
|
605
|
+
authorities.push({ instruction: 'RUN-mount', reference: external });
|
|
606
|
+
}
|
|
607
|
+
}
|
|
608
|
+
}
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
if (!authorities.some(({ instruction }) => instruction === 'FROM')) {
|
|
612
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', path, 'container recipe contains no external FROM image authority');
|
|
613
|
+
}
|
|
614
|
+
return authorities;
|
|
615
|
+
}
|
|
616
|
+
function scanContainerRecipe(path, source) {
|
|
617
|
+
const authorities = scanContainerImageAuthorities(path, source);
|
|
618
|
+
for (const [index, directive] of [
|
|
619
|
+
...source.matchAll(/^\s*#\s*syntax\s*=\s*(\S+)\s*$/gim),
|
|
620
|
+
].entries()) {
|
|
621
|
+
if (!/@sha256:[a-f0-9]{64}$/.test(directive[1] ?? '')) {
|
|
622
|
+
throw new errors_js_1.SupplyChainError('supply-chain-container-mutable', `${path}#syntax[${index}]`, 'Dockerfile frontend directives must pin an exact SHA-256 digest');
|
|
623
|
+
}
|
|
624
|
+
}
|
|
625
|
+
const bases = authorities
|
|
626
|
+
.filter(({ instruction }) => instruction === 'FROM')
|
|
627
|
+
.map(({ reference }) => reference);
|
|
628
|
+
if (/(?:^|\s)npm\s+(?:i|install|ci)(?:\s|$)/im.test(source)) {
|
|
629
|
+
throw new errors_js_1.SupplyChainError('supply-chain-container-mutable', path, 'npm installation may re-resolve outside the reviewed pnpm lockfile');
|
|
630
|
+
}
|
|
631
|
+
if (/\bcorepack\s+enable\b/i.test(source)) {
|
|
632
|
+
const descriptors = [
|
|
633
|
+
...source.matchAll(/\bcorepack\s+prepare\s+(pnpm@\S+)\s+--activate\b/gim),
|
|
634
|
+
].map((match) => match[1] ?? '');
|
|
635
|
+
if (descriptors.length !== 1 ||
|
|
636
|
+
!/^pnpm@\d+\.\d+\.\d+(?:-[0-9A-Za-z.-]+)?\+sha512\.[a-f0-9]{128}$/.test(descriptors[0] ?? '')) {
|
|
637
|
+
throw new errors_js_1.SupplyChainError('supply-chain-container-mutable', `${path}#corepack`, 'Corepack must install one exact pnpm artifact with a SHA-512 descriptor');
|
|
638
|
+
}
|
|
639
|
+
}
|
|
640
|
+
for (const fetch of source.matchAll(/^\s*RUN\s+.*\bpnpm\b.*\bfetch\b.*$/gim)) {
|
|
641
|
+
if (!(fetch[0] ?? '').includes('--frozen-lockfile')) {
|
|
642
|
+
throw new errors_js_1.SupplyChainError('supply-chain-container-mutable', path, 'pnpm fetch must retain the reviewed lockfile');
|
|
643
|
+
}
|
|
644
|
+
}
|
|
645
|
+
for (const install of source.matchAll(/^\s*RUN\s+.*\bpnpm\b.*\binstall\b.*$/gim)) {
|
|
646
|
+
const command = install[0] ?? '';
|
|
647
|
+
if (!command.includes('--frozen-lockfile') ||
|
|
648
|
+
!command.includes('--offline')) {
|
|
649
|
+
throw new errors_js_1.SupplyChainError('supply-chain-container-mutable', path, 'pnpm install must be both frozen and offline after lockfile fetch');
|
|
650
|
+
}
|
|
651
|
+
}
|
|
652
|
+
for (const deploy of source.matchAll(/^\s*RUN\s+.*\bpnpm\b.*\bdeploy\b.*$/gim)) {
|
|
653
|
+
const command = deploy[0] ?? '';
|
|
654
|
+
if (!/^\s*RUN\s+--network=none(?:\s|$)/i.test(command) ||
|
|
655
|
+
!command.includes('--prod') ||
|
|
656
|
+
!command.includes('--offline') ||
|
|
657
|
+
!command.includes('--frozen-lockfile') ||
|
|
658
|
+
command.includes('--legacy')) {
|
|
659
|
+
throw new errors_js_1.SupplyChainError('supply-chain-container-mutable', path, 'pnpm deploy must assemble one frozen, offline production closure with BuildKit network access disabled');
|
|
660
|
+
}
|
|
661
|
+
}
|
|
662
|
+
return {
|
|
663
|
+
bases,
|
|
664
|
+
path,
|
|
665
|
+
recipeDigest: (0, common_js_1.supplyChainDigest)(source.replace(/\r\n/g, '\n')),
|
|
666
|
+
};
|
|
667
|
+
}
|
|
668
|
+
function createSupplyChainInventory(input) {
|
|
669
|
+
const lockfile = parseLockfile(input.lockfile);
|
|
670
|
+
const rootManifest = input.manifests['package.json'];
|
|
671
|
+
if (!(0, validation_js_1.isRecord)(rootManifest)) {
|
|
672
|
+
throw new errors_js_1.SupplyChainError('supply-chain-inventory-incomplete', 'package.json', 'root manifest is required');
|
|
673
|
+
}
|
|
674
|
+
const toolchain = requirePackageManager(rootManifest, input.nodeVersion);
|
|
675
|
+
const dependencies = collectDependencies(input.manifests, lockfile);
|
|
676
|
+
const resolvedPackages = collectResolvedPackages(lockfile, dependencies);
|
|
677
|
+
validateLifecycleScriptInventory(input.lifecycleScripts ?? [], input.workspacePolicy);
|
|
678
|
+
const containers = Object.entries(input.containers ?? {})
|
|
679
|
+
.sort(([left], [right]) => (0, deterministic_order_js_1.compareUtf16)(left, right))
|
|
680
|
+
.map(([path, source]) => scanContainerRecipe(path, source));
|
|
681
|
+
const registries = [...(input.registries ?? ['https://registry.npmjs.org'])]
|
|
682
|
+
.sort()
|
|
683
|
+
.filter((entry, index, values) => index === 0 || entry !== values[index - 1]);
|
|
684
|
+
if (registries.length === 0 ||
|
|
685
|
+
registries.some((registry) => !/^https:\/\/[A-Za-z0-9.-]+(?::\d+)?(?:\/[A-Za-z0-9._~/-]*)?$/.test(registry))) {
|
|
686
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', 'registries', 'must contain explicit HTTPS registry origins');
|
|
687
|
+
}
|
|
688
|
+
for (const [index, tool] of (input.downloadedTools ?? []).entries()) {
|
|
689
|
+
if (!common_js_1.SUPPLY_CHAIN_SHA256.test(tool.digest) ||
|
|
690
|
+
[tool.name, tool.source, tool.version].some((value) => typeof value !== 'string' || value.trim() === '') ||
|
|
691
|
+
!/^https:\/\//.test(tool.source)) {
|
|
692
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', `downloadedTools[${index}]`, 'must bind a named version to an HTTPS source and SHA-256 digest');
|
|
693
|
+
}
|
|
694
|
+
}
|
|
695
|
+
for (const [index, vendored] of (input.vendoredInputs ?? []).entries()) {
|
|
696
|
+
if (!common_js_1.SUPPLY_CHAIN_SHA256.test(vendored.sha256) ||
|
|
697
|
+
[vendored.identity, vendored.revision].some((value) => typeof value !== 'string' || value.trim() === '')) {
|
|
698
|
+
throw new errors_js_1.SupplyChainError('supply-chain-input-invalid', `vendoredInputs[${index}]`, 'must bind identity and immutable revision to a SHA-256 digest');
|
|
699
|
+
}
|
|
700
|
+
}
|
|
701
|
+
return {
|
|
702
|
+
containers,
|
|
703
|
+
dependencies,
|
|
704
|
+
downloadedTools: [...(input.downloadedTools ?? [])].sort((left, right) => (0, deterministic_order_js_1.compareUtf16)(`${left.name}\0${left.version}`, `${right.name}\0${right.version}`)),
|
|
705
|
+
lifecycleScripts: [...(input.lifecycleScripts ?? [])]
|
|
706
|
+
.map((entry) => ({ ...entry, scripts: [...entry.scripts].sort() }))
|
|
707
|
+
.sort((left, right) => (0, deterministic_order_js_1.compareUtf16)(`${left.package}\0${left.version}`, `${right.package}\0${right.version}`)),
|
|
708
|
+
lockfileDigest: (0, common_js_1.supplyChainDigest)(input.lockfile.replace(/\r\n/g, '\n')),
|
|
709
|
+
nodeVersion: toolchain.node,
|
|
710
|
+
packageManager: toolchain.packageManager,
|
|
711
|
+
registries,
|
|
712
|
+
resolvedPackages,
|
|
713
|
+
schemaVersion: exports.SUPPLY_CHAIN_INVENTORY_SCHEMA_VERSION,
|
|
714
|
+
vendoredInputs: [...(input.vendoredInputs ?? [])].sort((left, right) => (0, deterministic_order_js_1.compareUtf16)(`${left.identity}\0${left.revision}`, `${right.identity}\0${right.revision}`)),
|
|
715
|
+
};
|
|
716
|
+
}
|
|
717
|
+
//# sourceMappingURL=inventory.js.map
|