@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,736 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PROTECTED_LOAD_SCENARIO_ADAPTERS = void 0;
|
|
4
|
+
exports.validateProtectedLoadScenarioCatalog = validateProtectedLoadScenarioCatalog;
|
|
5
|
+
exports.createProtectedLoadScenarioDriver = createProtectedLoadScenarioDriver;
|
|
6
|
+
exports.cleanupProtectedLoadScenarioEffects = cleanupProtectedLoadScenarioEffects;
|
|
7
|
+
const model_js_1 = require("./model.js");
|
|
8
|
+
const performance_1 = require("@empire-builder-kit/runtime/performance");
|
|
9
|
+
exports.PROTECTED_LOAD_SCENARIO_ADAPTERS = performance_1.PROTECTED_LOAD_ENDPOINT_ADAPTERS;
|
|
10
|
+
const IDENTIFIER = /^[A-Za-z0-9][A-Za-z0-9._:/#@+-]{0,511}$/;
|
|
11
|
+
const DIGEST = /^[a-f0-9]{64}$/;
|
|
12
|
+
const FULL_COMMIT = /^(?:[a-f0-9]{40}|[a-f0-9]{64})$/;
|
|
13
|
+
const CLEANUP_MAXIMUM_REQUEST_MILLISECONDS = 15_000;
|
|
14
|
+
const CLEANUP_MAXIMUM_RUNTIME_MILLISECONDS = 30_000;
|
|
15
|
+
function record(value) {
|
|
16
|
+
return value !== null && typeof value === 'object' && !Array.isArray(value);
|
|
17
|
+
}
|
|
18
|
+
function onlyKeys(value, keys, pointer) {
|
|
19
|
+
if (!record(value)) {
|
|
20
|
+
throw invalid(pointer, 'must be an object');
|
|
21
|
+
}
|
|
22
|
+
for (const key of Object.keys(value)) {
|
|
23
|
+
if (!keys.includes(key)) {
|
|
24
|
+
throw invalid(`${pointer}/${key}`, 'is not part of the v1 contract');
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
function invalid(pointer, message) {
|
|
29
|
+
return new model_js_1.PerformanceContractError('performance-load-plan-invalid', pointer, message);
|
|
30
|
+
}
|
|
31
|
+
function requireIdentifier(value, pointer) {
|
|
32
|
+
if (typeof value !== 'string' || !IDENTIFIER.test(value)) {
|
|
33
|
+
throw invalid(pointer, 'must be one bounded opaque identifier');
|
|
34
|
+
}
|
|
35
|
+
return value;
|
|
36
|
+
}
|
|
37
|
+
function validHmacKey(value) {
|
|
38
|
+
const secret = record(value) && typeof value.secret === 'string' ? value.secret : '';
|
|
39
|
+
const decoded = /^[A-Za-z0-9_-]{43}$/.test(secret)
|
|
40
|
+
? Buffer.from(secret, 'base64url')
|
|
41
|
+
: Buffer.alloc(0);
|
|
42
|
+
return (record(value) &&
|
|
43
|
+
Object.keys(value).length === 2 &&
|
|
44
|
+
typeof value.id === 'string' &&
|
|
45
|
+
/^[A-Za-z0-9][A-Za-z0-9._-]{0,63}$/.test(value.id) &&
|
|
46
|
+
decoded.length === 32 &&
|
|
47
|
+
decoded.toString('base64url') === secret);
|
|
48
|
+
}
|
|
49
|
+
function exactAuthorityReference(value, reference, pointer) {
|
|
50
|
+
if (!Array.isArray(value) ||
|
|
51
|
+
value.length === 0 ||
|
|
52
|
+
value.length > 512 ||
|
|
53
|
+
value.some((entry) => typeof entry !== 'string' || !IDENTIFIER.test(entry)) ||
|
|
54
|
+
value.filter((entry) => entry === reference).length !== 1) {
|
|
55
|
+
throw invalid(pointer, `must contain exactly one authoritative ${reference} reference`);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
function validateOperationsBinding(value, policyAlarmRef, capacity) {
|
|
59
|
+
if (!record(value) || !record(value.performanceReferences)) {
|
|
60
|
+
throw invalid('operationsAuthority/performanceReferences', 'must expose reliability-owned performance references');
|
|
61
|
+
}
|
|
62
|
+
const references = value.performanceReferences;
|
|
63
|
+
exactAuthorityReference(references.capacityControls, capacity.protectionRef, 'operationsAuthority/performanceReferences/capacityControls');
|
|
64
|
+
exactAuthorityReference(references.capacitySignals, capacity.saturationSignalRef, 'operationsAuthority/performanceReferences/capacitySignals');
|
|
65
|
+
exactAuthorityReference(references.alarms, policyAlarmRef, 'operationsAuthority/performanceReferences/alarms');
|
|
66
|
+
if (capacity.saturationSignalRef.startsWith('alarm:')) {
|
|
67
|
+
exactAuthorityReference(references.alarms, capacity.saturationSignalRef, 'operationsAuthority/performanceReferences/alarms');
|
|
68
|
+
}
|
|
69
|
+
return {
|
|
70
|
+
alarmRef: policyAlarmRef,
|
|
71
|
+
capacityControlRef: capacity.protectionRef,
|
|
72
|
+
capacitySignalRef: capacity.saturationSignalRef,
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
function adapterForScenario(scenarioId) {
|
|
76
|
+
return exports.PROTECTED_LOAD_SCENARIO_ADAPTERS.find((adapter) => adapter.scenarioId === scenarioId);
|
|
77
|
+
}
|
|
78
|
+
function adapterForId(adapterId) {
|
|
79
|
+
return exports.PROTECTED_LOAD_SCENARIO_ADAPTERS.find((adapter) => adapter.id === adapterId);
|
|
80
|
+
}
|
|
81
|
+
function costStopThreshold(plan) {
|
|
82
|
+
const condition = plan.stopConditions.find(({ metric }) => metric === 'estimated-cost-usd');
|
|
83
|
+
if (!condition) {
|
|
84
|
+
throw invalid('plan/stopConditions', 'must include the emergency estimated-cost-usd threshold');
|
|
85
|
+
}
|
|
86
|
+
return condition.threshold;
|
|
87
|
+
}
|
|
88
|
+
function releaseEquals(left, right) {
|
|
89
|
+
return (left.candidateDigest === right.candidateDigest &&
|
|
90
|
+
left.releaseId === right.releaseId &&
|
|
91
|
+
left.releaseMaterialDigest === right.releaseMaterialDigest &&
|
|
92
|
+
left.sourceCommit === right.sourceCommit);
|
|
93
|
+
}
|
|
94
|
+
function validateRelease(value, expected, pointer) {
|
|
95
|
+
onlyKeys(value, ['candidateDigest', 'releaseId', 'releaseMaterialDigest', 'sourceCommit'], pointer);
|
|
96
|
+
if (typeof value.candidateDigest !== 'string' ||
|
|
97
|
+
!DIGEST.test(value.candidateDigest) ||
|
|
98
|
+
typeof value.releaseMaterialDigest !== 'string' ||
|
|
99
|
+
!DIGEST.test(value.releaseMaterialDigest) ||
|
|
100
|
+
typeof value.sourceCommit !== 'string' ||
|
|
101
|
+
!FULL_COMMIT.test(value.sourceCommit) ||
|
|
102
|
+
typeof value.releaseId !== 'string' ||
|
|
103
|
+
!IDENTIFIER.test(value.releaseId) ||
|
|
104
|
+
!releaseEquals(value, expected)) {
|
|
105
|
+
throw invalid(pointer, 'must bind the exact protected release');
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
function validateProtectedLoadScenarioCatalog(value, plan, policyValue, operationsAuthorityValue) {
|
|
109
|
+
const policy = (0, model_js_1.validatePerformancePolicy)(policyValue);
|
|
110
|
+
if ((0, model_js_1.performanceDigest)(policy) !== plan.policyDigest ||
|
|
111
|
+
policy.slice !== plan.slice) {
|
|
112
|
+
throw invalid('catalog/policy', 'must be the exact performance policy bound by the protected plan');
|
|
113
|
+
}
|
|
114
|
+
onlyKeys(value, ['kind', 'scenarios', 'schemaVersion', 'slice'], 'catalog');
|
|
115
|
+
if (value.kind !== 'ebk-protected-load-scenario-catalog' ||
|
|
116
|
+
value.schemaVersion !== 1 ||
|
|
117
|
+
value.slice !== plan.slice ||
|
|
118
|
+
!Array.isArray(value.scenarios)) {
|
|
119
|
+
throw invalid('catalog', 'must be the exact v1 scenario catalog for the planned Slice');
|
|
120
|
+
}
|
|
121
|
+
const ids = new Set();
|
|
122
|
+
const scenarios = value.scenarios.map((raw, index) => {
|
|
123
|
+
onlyKeys(raw, [
|
|
124
|
+
'adapterId',
|
|
125
|
+
'adapterStatus',
|
|
126
|
+
'demandShape',
|
|
127
|
+
'disabledUntilAdopted',
|
|
128
|
+
'estimatedCostUsdPerRequest',
|
|
129
|
+
'id',
|
|
130
|
+
'saturationSignalRef',
|
|
131
|
+
'workload',
|
|
132
|
+
], `catalog/scenarios/${index}`);
|
|
133
|
+
const id = requireIdentifier(raw.id, `catalog/scenarios/${index}/id`);
|
|
134
|
+
if (ids.has(id)) {
|
|
135
|
+
throw invalid(`catalog/scenarios/${index}/id`, 'must be unique');
|
|
136
|
+
}
|
|
137
|
+
ids.add(id);
|
|
138
|
+
const adapter = adapterForScenario(id);
|
|
139
|
+
if (!adapter ||
|
|
140
|
+
raw.adapterId !== adapter.id ||
|
|
141
|
+
raw.workload !== adapter.workload ||
|
|
142
|
+
(adapter.saturationSignalRef !== null &&
|
|
143
|
+
raw.saturationSignalRef !== adapter.saturationSignalRef) ||
|
|
144
|
+
(raw.adapterStatus !== 'managed' &&
|
|
145
|
+
raw.adapterStatus !== 'requires-adopter-service-endpoint') ||
|
|
146
|
+
typeof raw.disabledUntilAdopted !== 'boolean' ||
|
|
147
|
+
typeof raw.demandShape !== 'string' ||
|
|
148
|
+
!IDENTIFIER.test(raw.demandShape) ||
|
|
149
|
+
typeof raw.saturationSignalRef !== 'string' ||
|
|
150
|
+
!IDENTIFIER.test(raw.saturationSignalRef) ||
|
|
151
|
+
typeof raw.estimatedCostUsdPerRequest !== 'number' ||
|
|
152
|
+
!Number.isFinite(raw.estimatedCostUsdPerRequest) ||
|
|
153
|
+
raw.estimatedCostUsdPerRequest <= 0) {
|
|
154
|
+
throw invalid(`catalog/scenarios/${index}`, 'must use the fixed workload adapter and positive reviewed cost estimate');
|
|
155
|
+
}
|
|
156
|
+
return raw;
|
|
157
|
+
});
|
|
158
|
+
const matches = scenarios.filter(({ id }) => id === plan.scenarioId);
|
|
159
|
+
if (matches.length !== 1) {
|
|
160
|
+
throw invalid('catalog/scenarios', 'must contain exactly one planned scenario');
|
|
161
|
+
}
|
|
162
|
+
const scenario = matches[0];
|
|
163
|
+
const adapter = adapterForId(scenario.adapterId);
|
|
164
|
+
if (!adapter ||
|
|
165
|
+
scenario.disabledUntilAdopted ||
|
|
166
|
+
scenario.adapterStatus !== 'managed' ||
|
|
167
|
+
scenario.workload !== plan.workload ||
|
|
168
|
+
adapter.workload !== plan.workload) {
|
|
169
|
+
throw invalid('catalog/scenarios', scenario.adapterStatus === 'requires-adopter-service-endpoint'
|
|
170
|
+
? 'Service load requires a real adopter-supplied Service runtime endpoint; the framework does not relabel Next/Lambda evidence'
|
|
171
|
+
: 'planned scenario must be deliberately adopted for its fixed workload adapter');
|
|
172
|
+
}
|
|
173
|
+
const matchingCapacity = policy.capacity.filter((resource) => resource.kind === scenario.workload &&
|
|
174
|
+
resource.saturationSignalRef === scenario.saturationSignalRef);
|
|
175
|
+
if (matchingCapacity.length !== 1) {
|
|
176
|
+
throw invalid('catalog/scenarios/saturationSignalRef', 'must resolve exactly one workload saturation signal in the bound policy');
|
|
177
|
+
}
|
|
178
|
+
const selectedCapacity = matchingCapacity[0];
|
|
179
|
+
if (!selectedCapacity ||
|
|
180
|
+
selectedCapacity.status !== 'declared' ||
|
|
181
|
+
typeof selectedCapacity.configuredMaximum !== 'number' ||
|
|
182
|
+
!Number.isFinite(selectedCapacity.configuredMaximum) ||
|
|
183
|
+
selectedCapacity.configuredMaximum <= 0 ||
|
|
184
|
+
typeof selectedCapacity.downstreamMaximum !== 'number' ||
|
|
185
|
+
!Number.isFinite(selectedCapacity.downstreamMaximum) ||
|
|
186
|
+
selectedCapacity.downstreamMaximum <= 0 ||
|
|
187
|
+
typeof selectedCapacity.quotaMaximum !== 'number' ||
|
|
188
|
+
!Number.isFinite(selectedCapacity.quotaMaximum) ||
|
|
189
|
+
selectedCapacity.quotaMaximum <= 0 ||
|
|
190
|
+
selectedCapacity.configuredMaximum > selectedCapacity.downstreamMaximum ||
|
|
191
|
+
selectedCapacity.configuredMaximum > selectedCapacity.quotaMaximum) {
|
|
192
|
+
throw invalid('catalog/scenarios/capacity', 'selected capacity must be declared with positive finite configured, downstream, and quota maxima, and configured capacity must not exceed either bound');
|
|
193
|
+
}
|
|
194
|
+
const capacity = selectedCapacity;
|
|
195
|
+
const plannedCapacity = adapter.capacityBound === 'rate'
|
|
196
|
+
? plan.maximumRatePerSecond
|
|
197
|
+
: plan.maximumConcurrency;
|
|
198
|
+
if (plannedCapacity > capacity.configuredMaximum) {
|
|
199
|
+
throw invalid(adapter.capacityBound === 'rate'
|
|
200
|
+
? 'plan/maximumRatePerSecond'
|
|
201
|
+
: 'plan/maximumConcurrency', `must not exceed selected configured capacity ${capacity.configuredMaximum}`);
|
|
202
|
+
}
|
|
203
|
+
const operationsBinding = validateOperationsBinding(operationsAuthorityValue, policy.cost.anomalyRouteRef, capacity);
|
|
204
|
+
const scenarioMaximumCost = plan.maximumRequests * scenario.estimatedCostUsdPerRequest;
|
|
205
|
+
const scenarioCostStopThreshold = costStopThreshold(plan);
|
|
206
|
+
if (scenarioMaximumCost > plan.estimatedMaximumCostUsd + Number.EPSILON ||
|
|
207
|
+
scenario.estimatedCostUsdPerRequest >
|
|
208
|
+
scenarioCostStopThreshold + Number.EPSILON) {
|
|
209
|
+
throw invalid('catalog/scenarios/estimatedCostUsdPerRequest', 'reviewed per-request cost can exceed the plan or emergency cost envelope');
|
|
210
|
+
}
|
|
211
|
+
return {
|
|
212
|
+
adapter,
|
|
213
|
+
capacity,
|
|
214
|
+
catalog: {
|
|
215
|
+
kind: 'ebk-protected-load-scenario-catalog',
|
|
216
|
+
scenarios,
|
|
217
|
+
schemaVersion: 1,
|
|
218
|
+
slice: value.slice,
|
|
219
|
+
},
|
|
220
|
+
operationsBinding,
|
|
221
|
+
scenario,
|
|
222
|
+
};
|
|
223
|
+
}
|
|
224
|
+
function scenarioUrl(plan, path) {
|
|
225
|
+
const endpoint = new URL(plan.target.endpoint);
|
|
226
|
+
return new URL(`/${plan.slice}${path}`, endpoint.origin).href;
|
|
227
|
+
}
|
|
228
|
+
function scenarioRequestUrl(plan, adapter) {
|
|
229
|
+
const endpoint = new URL(plan.target.endpoint);
|
|
230
|
+
const expectedPath = `/${plan.slice}${adapter.requestPath}`;
|
|
231
|
+
if (endpoint.pathname !== expectedPath || endpoint.search || endpoint.hash) {
|
|
232
|
+
throw invalid('plan/target/endpoint', `must be the fixed exact ${adapter.id} request endpoint ${expectedPath}`);
|
|
233
|
+
}
|
|
234
|
+
return endpoint.href;
|
|
235
|
+
}
|
|
236
|
+
function cleanupPath(adapter) {
|
|
237
|
+
if (adapter.cleanupPath === null) {
|
|
238
|
+
throw invalid('cleanup/adapter', 'adapter must define its fixed cleanup path');
|
|
239
|
+
}
|
|
240
|
+
return adapter.cleanupPath;
|
|
241
|
+
}
|
|
242
|
+
function effectForRequest(adapter, plan, requestOrdinal) {
|
|
243
|
+
if (adapter.workload !== 'async-worker' && adapter.workload !== 'database') {
|
|
244
|
+
throw invalid('driver/effect', 'read-only adapters cannot reserve effects');
|
|
245
|
+
}
|
|
246
|
+
return {
|
|
247
|
+
adapterId: adapter.id,
|
|
248
|
+
effectId: (0, model_js_1.performanceDigest)({
|
|
249
|
+
adapterId: adapter.id,
|
|
250
|
+
planMaterialDigest: plan.materialDigest,
|
|
251
|
+
requestOrdinal,
|
|
252
|
+
runId: plan.runId,
|
|
253
|
+
}),
|
|
254
|
+
kind: 'ebk-protected-load-effect',
|
|
255
|
+
planMaterialDigest: plan.materialDigest,
|
|
256
|
+
requestOrdinal,
|
|
257
|
+
runId: plan.runId,
|
|
258
|
+
scenarioId: plan.scenarioId,
|
|
259
|
+
schemaVersion: 1,
|
|
260
|
+
sourceCommit: plan.sourceCommit,
|
|
261
|
+
state: 'reserved',
|
|
262
|
+
workload: adapter.workload,
|
|
263
|
+
};
|
|
264
|
+
}
|
|
265
|
+
function requestAuthorization(input) {
|
|
266
|
+
return {
|
|
267
|
+
adapterId: input.adapter.id,
|
|
268
|
+
configuredMaximum: input.capacity.configuredMaximum,
|
|
269
|
+
createdAt: input.plan.createdAt,
|
|
270
|
+
durationSeconds: input.plan.durationSeconds,
|
|
271
|
+
effectId: input.effect?.effectId ?? null,
|
|
272
|
+
expiresAt: input.plan.expiresAt,
|
|
273
|
+
hmacKeyId: input.hmacKeyId,
|
|
274
|
+
maximumRequests: input.plan.maximumRequests,
|
|
275
|
+
operation: input.operation,
|
|
276
|
+
planMaterialDigest: input.plan.materialDigest,
|
|
277
|
+
release: input.plan.release,
|
|
278
|
+
requestOrdinal: input.requestOrdinal,
|
|
279
|
+
runId: input.plan.runId,
|
|
280
|
+
saturationSignalRef: input.scenario.saturationSignalRef,
|
|
281
|
+
scenarioId: input.plan.scenarioId,
|
|
282
|
+
stage: input.plan.target.stage,
|
|
283
|
+
target: {
|
|
284
|
+
accountFingerprint: input.plan.target.accountFingerprint,
|
|
285
|
+
endpoint: input.operation === 'cleanup'
|
|
286
|
+
? scenarioUrl(input.plan, cleanupPath(input.adapter))
|
|
287
|
+
: input.plan.target.endpoint,
|
|
288
|
+
region: input.plan.target.region,
|
|
289
|
+
slice: input.plan.slice,
|
|
290
|
+
},
|
|
291
|
+
workload: input.adapter
|
|
292
|
+
.workload,
|
|
293
|
+
};
|
|
294
|
+
}
|
|
295
|
+
function authorizationHeaders(input) {
|
|
296
|
+
const { authorization } = input;
|
|
297
|
+
return {
|
|
298
|
+
'x-ebk-performance-account-fingerprint': authorization.target.accountFingerprint,
|
|
299
|
+
'x-ebk-performance-candidate': authorization.release.candidateDigest,
|
|
300
|
+
'x-ebk-performance-configured-maximum': String(authorization.configuredMaximum),
|
|
301
|
+
'x-ebk-performance-created-at': authorization.createdAt,
|
|
302
|
+
'x-ebk-performance-duration-seconds': String(authorization.durationSeconds),
|
|
303
|
+
'x-ebk-performance-expires-at': authorization.expiresAt,
|
|
304
|
+
'x-ebk-performance-hmac-key-id': authorization.hmacKeyId,
|
|
305
|
+
'x-ebk-performance-maximum-requests': String(authorization.maximumRequests),
|
|
306
|
+
'x-ebk-performance-plan': authorization.planMaterialDigest,
|
|
307
|
+
'x-ebk-performance-release-id': authorization.release.releaseId,
|
|
308
|
+
'x-ebk-performance-release-material': authorization.release.releaseMaterialDigest,
|
|
309
|
+
'x-ebk-performance-request': String(authorization.requestOrdinal),
|
|
310
|
+
'x-ebk-performance-region': authorization.target.region,
|
|
311
|
+
'x-ebk-performance-run': authorization.runId,
|
|
312
|
+
'x-ebk-performance-saturation-signal': authorization.saturationSignalRef,
|
|
313
|
+
'x-ebk-performance-scenario': authorization.scenarioId,
|
|
314
|
+
'x-ebk-performance-slice': authorization.target.slice,
|
|
315
|
+
'x-ebk-performance-signature': (0, performance_1.createProtectedLoadRequestSignature)(input),
|
|
316
|
+
'x-ebk-performance-source': authorization.release.sourceCommit,
|
|
317
|
+
'x-ebk-performance-stage': authorization.stage,
|
|
318
|
+
};
|
|
319
|
+
}
|
|
320
|
+
function validateTelemetry(value, input) {
|
|
321
|
+
onlyKeys(value, [
|
|
322
|
+
'effect',
|
|
323
|
+
'hmacKeyId',
|
|
324
|
+
'kind',
|
|
325
|
+
'planMaterialDigest',
|
|
326
|
+
'release',
|
|
327
|
+
'requestOrdinal',
|
|
328
|
+
'runId',
|
|
329
|
+
'saturation',
|
|
330
|
+
'scenarioId',
|
|
331
|
+
'schemaVersion',
|
|
332
|
+
'target',
|
|
333
|
+
'workload',
|
|
334
|
+
], 'driver/telemetry');
|
|
335
|
+
onlyKeys(value.saturation, ['percent', 'signalRef'], 'driver/telemetry/saturation');
|
|
336
|
+
onlyKeys(value.target, ['accountFingerprint', 'endpoint', 'region', 'slice'], 'driver/telemetry/target');
|
|
337
|
+
validateRelease(value.release, input.plan.release, 'driver/telemetry/release');
|
|
338
|
+
if (value.effect !== undefined) {
|
|
339
|
+
onlyKeys(value.effect, ['id', 'state'], 'driver/telemetry/effect');
|
|
340
|
+
}
|
|
341
|
+
if (value.kind !== 'ebk-protected-load-telemetry' ||
|
|
342
|
+
value.hmacKeyId !== input.hmacKeyId ||
|
|
343
|
+
value.schemaVersion !== 1 ||
|
|
344
|
+
value.planMaterialDigest !== input.plan.materialDigest ||
|
|
345
|
+
value.requestOrdinal !== input.requestOrdinal ||
|
|
346
|
+
value.runId !== input.plan.runId ||
|
|
347
|
+
value.scenarioId !== input.plan.scenarioId ||
|
|
348
|
+
JSON.stringify(value.target) !==
|
|
349
|
+
JSON.stringify({
|
|
350
|
+
accountFingerprint: input.plan.target.accountFingerprint,
|
|
351
|
+
endpoint: input.plan.target.endpoint,
|
|
352
|
+
region: input.plan.target.region,
|
|
353
|
+
slice: input.plan.slice,
|
|
354
|
+
}) ||
|
|
355
|
+
value.workload !== input.plan.workload ||
|
|
356
|
+
value.saturation.signalRef !== input.scenario.saturationSignalRef ||
|
|
357
|
+
typeof value.saturation.percent !== 'number' ||
|
|
358
|
+
!Number.isFinite(value.saturation.percent) ||
|
|
359
|
+
value.saturation.percent < 0 ||
|
|
360
|
+
value.saturation.percent > 100) {
|
|
361
|
+
throw invalid('driver/telemetry', 'omitted or mismatched authoritative saturation and release telemetry');
|
|
362
|
+
}
|
|
363
|
+
if (input.adapter.mutation &&
|
|
364
|
+
(!input.effect ||
|
|
365
|
+
!record(value.effect) ||
|
|
366
|
+
value.effect.id !== input.effect.effectId ||
|
|
367
|
+
!['already-existed', 'created'].includes(String(value.effect.state)))) {
|
|
368
|
+
throw invalid('driver/telemetry/effect', 'mutating adapter must confirm its pre-reserved cleanup identity');
|
|
369
|
+
}
|
|
370
|
+
if (!input.adapter.mutation && value.effect !== undefined) {
|
|
371
|
+
throw invalid('driver/telemetry/effect', 'read-only adapter cannot report a cleanup effect');
|
|
372
|
+
}
|
|
373
|
+
return value;
|
|
374
|
+
}
|
|
375
|
+
function createProtectedLoadScenarioDriver(input) {
|
|
376
|
+
const { adapter, capacity, catalog, operationsBinding, scenario } = validateProtectedLoadScenarioCatalog(input.catalog, input.plan, input.policy, input.operationsAuthority);
|
|
377
|
+
if (!validHmacKey(input.hmacKey)) {
|
|
378
|
+
throw invalid('driver/hmacKey', 'must be one bounded protected HMAC key generation');
|
|
379
|
+
}
|
|
380
|
+
if (adapter.mutation && !input.recordEffect) {
|
|
381
|
+
throw invalid('driver/recordEffect', 'mutating adapter requires durable pre-request effect reservation');
|
|
382
|
+
}
|
|
383
|
+
const fetchImplementation = input.fetch ??
|
|
384
|
+
((url, init) => fetch(url, init));
|
|
385
|
+
const wait = input.wait ??
|
|
386
|
+
((milliseconds) => new Promise((resolve) => setTimeout(resolve, milliseconds)));
|
|
387
|
+
let terminated = false;
|
|
388
|
+
let nextOrdinal = 1;
|
|
389
|
+
let cumulativeEstimatedCostUsd = 0;
|
|
390
|
+
const scenarioCostStopThreshold = costStopThreshold(input.plan);
|
|
391
|
+
const scenarioContractDigest = (0, model_js_1.performanceDigest)({
|
|
392
|
+
adapter,
|
|
393
|
+
capacity,
|
|
394
|
+
catalog,
|
|
395
|
+
operationsBinding,
|
|
396
|
+
scenario,
|
|
397
|
+
});
|
|
398
|
+
const requestUrl = scenarioRequestUrl(input.plan, adapter);
|
|
399
|
+
const driver = {
|
|
400
|
+
hmacKeyId: input.hmacKey.id,
|
|
401
|
+
id: adapter.id,
|
|
402
|
+
scenarioContractDigest,
|
|
403
|
+
version: adapter.version,
|
|
404
|
+
workload: adapter.workload,
|
|
405
|
+
async executeStep(context) {
|
|
406
|
+
if (terminated) {
|
|
407
|
+
throw invalid('driver', 'is already terminated');
|
|
408
|
+
}
|
|
409
|
+
const startedAt = Date.now();
|
|
410
|
+
const deadline = startedAt + context.stepDurationSeconds * 1_000;
|
|
411
|
+
let nextRequestIndex = 0;
|
|
412
|
+
let attemptedRequests = 0;
|
|
413
|
+
let completedRequests = 0;
|
|
414
|
+
let downstreamSaturation = 0;
|
|
415
|
+
let errors = 0;
|
|
416
|
+
const latencies = [];
|
|
417
|
+
let fatal;
|
|
418
|
+
let costCeilingReached = false;
|
|
419
|
+
const worker = async () => {
|
|
420
|
+
while (!terminated && fatal === undefined) {
|
|
421
|
+
const requestIndex = nextRequestIndex++;
|
|
422
|
+
if (requestIndex >= context.maximumRequests)
|
|
423
|
+
return;
|
|
424
|
+
const scheduledAt = startedAt + (requestIndex / context.maximumRatePerSecond) * 1_000;
|
|
425
|
+
const delay = scheduledAt - Date.now();
|
|
426
|
+
if (delay > 0)
|
|
427
|
+
await wait(delay);
|
|
428
|
+
if (Date.now() >= deadline || terminated || fatal !== undefined) {
|
|
429
|
+
return;
|
|
430
|
+
}
|
|
431
|
+
if (cumulativeEstimatedCostUsd + scenario.estimatedCostUsdPerRequest >
|
|
432
|
+
scenarioCostStopThreshold + Number.EPSILON) {
|
|
433
|
+
costCeilingReached = true;
|
|
434
|
+
return;
|
|
435
|
+
}
|
|
436
|
+
cumulativeEstimatedCostUsd += scenario.estimatedCostUsdPerRequest;
|
|
437
|
+
const requestOrdinal = nextOrdinal++;
|
|
438
|
+
const effect = adapter.mutation
|
|
439
|
+
? effectForRequest(adapter, input.plan, requestOrdinal)
|
|
440
|
+
: undefined;
|
|
441
|
+
if (effect) {
|
|
442
|
+
await input.recordEffect?.(effect);
|
|
443
|
+
}
|
|
444
|
+
attemptedRequests += 1;
|
|
445
|
+
const requestStartedAt = Date.now();
|
|
446
|
+
const controller = new AbortController();
|
|
447
|
+
const timeout = setTimeout(() => controller.abort(), Math.max(1, deadline - Date.now()));
|
|
448
|
+
try {
|
|
449
|
+
const body = {
|
|
450
|
+
...(effect ? { effectId: effect.effectId } : {}),
|
|
451
|
+
planMaterialDigest: input.plan.materialDigest,
|
|
452
|
+
release: input.plan.release,
|
|
453
|
+
requestOrdinal,
|
|
454
|
+
runId: input.plan.runId,
|
|
455
|
+
scenarioId: input.plan.scenarioId,
|
|
456
|
+
workload: input.plan.workload,
|
|
457
|
+
};
|
|
458
|
+
const authorization = requestAuthorization({
|
|
459
|
+
adapter,
|
|
460
|
+
capacity,
|
|
461
|
+
...(effect ? { effect } : {}),
|
|
462
|
+
hmacKeyId: input.hmacKey.id,
|
|
463
|
+
operation: 'execute',
|
|
464
|
+
plan: input.plan,
|
|
465
|
+
requestOrdinal,
|
|
466
|
+
scenario,
|
|
467
|
+
});
|
|
468
|
+
const response = await fetchImplementation(requestUrl, {
|
|
469
|
+
...(adapter.requestMethod === 'POST'
|
|
470
|
+
? { body: JSON.stringify(body) }
|
|
471
|
+
: {}),
|
|
472
|
+
headers: {
|
|
473
|
+
accept: 'application/json',
|
|
474
|
+
...(adapter.requestMethod === 'POST'
|
|
475
|
+
? { 'content-type': 'application/json' }
|
|
476
|
+
: {}),
|
|
477
|
+
...authorizationHeaders({
|
|
478
|
+
authorization,
|
|
479
|
+
hmacKey: input.hmacKey,
|
|
480
|
+
}),
|
|
481
|
+
'user-agent': 'empire-builder-kit-protected-load-scenario/1.0.0',
|
|
482
|
+
},
|
|
483
|
+
method: adapter.requestMethod,
|
|
484
|
+
redirect: 'manual',
|
|
485
|
+
signal: controller.signal,
|
|
486
|
+
});
|
|
487
|
+
completedRequests += 1;
|
|
488
|
+
if (!response.ok)
|
|
489
|
+
errors += 1;
|
|
490
|
+
let telemetry;
|
|
491
|
+
try {
|
|
492
|
+
telemetry = await response.json();
|
|
493
|
+
}
|
|
494
|
+
catch {
|
|
495
|
+
throw invalid('driver/telemetry', 'omitted the authoritative JSON telemetry envelope');
|
|
496
|
+
}
|
|
497
|
+
const envelope = validateTelemetry(telemetry, {
|
|
498
|
+
adapter,
|
|
499
|
+
effect,
|
|
500
|
+
hmacKeyId: input.hmacKey.id,
|
|
501
|
+
plan: input.plan,
|
|
502
|
+
requestOrdinal,
|
|
503
|
+
scenario,
|
|
504
|
+
});
|
|
505
|
+
downstreamSaturation = Math.max(downstreamSaturation, envelope.saturation.percent);
|
|
506
|
+
}
|
|
507
|
+
catch (error) {
|
|
508
|
+
if (error instanceof model_js_1.PerformanceContractError) {
|
|
509
|
+
fatal = error;
|
|
510
|
+
terminated = true;
|
|
511
|
+
return;
|
|
512
|
+
}
|
|
513
|
+
errors += 1;
|
|
514
|
+
}
|
|
515
|
+
finally {
|
|
516
|
+
clearTimeout(timeout);
|
|
517
|
+
latencies.push(Date.now() - requestStartedAt);
|
|
518
|
+
}
|
|
519
|
+
}
|
|
520
|
+
};
|
|
521
|
+
await Promise.all(Array.from({
|
|
522
|
+
length: Math.min(context.maximumConcurrency, context.maximumRequests),
|
|
523
|
+
}, () => worker()));
|
|
524
|
+
if (fatal !== undefined)
|
|
525
|
+
throw fatal;
|
|
526
|
+
const orderedLatencies = [...latencies].sort((left, right) => left - right);
|
|
527
|
+
return {
|
|
528
|
+
attemptedRequests,
|
|
529
|
+
completedRequests,
|
|
530
|
+
downstreamSaturation,
|
|
531
|
+
elapsedSeconds: Math.max(0.001, Math.min(context.stepDurationSeconds, (Date.now() - startedAt) / 1_000)),
|
|
532
|
+
errors,
|
|
533
|
+
estimatedCostUsd: attemptedRequests * scenario.estimatedCostUsdPerRequest,
|
|
534
|
+
latencyP95Milliseconds: orderedLatencies[Math.max(0, Math.ceil(orderedLatencies.length * 0.95) - 1)] ?? 0,
|
|
535
|
+
...(costCeilingReached
|
|
536
|
+
? { stopReason: 'estimated-cost' }
|
|
537
|
+
: {}),
|
|
538
|
+
};
|
|
539
|
+
},
|
|
540
|
+
async terminate() {
|
|
541
|
+
terminated = true;
|
|
542
|
+
},
|
|
543
|
+
};
|
|
544
|
+
return {
|
|
545
|
+
allowedDriver: {
|
|
546
|
+
hmacKeyId: input.hmacKey.id,
|
|
547
|
+
id: adapter.id,
|
|
548
|
+
scenarioContractDigest,
|
|
549
|
+
version: adapter.version,
|
|
550
|
+
workload: adapter.workload,
|
|
551
|
+
},
|
|
552
|
+
driver,
|
|
553
|
+
};
|
|
554
|
+
}
|
|
555
|
+
function validateEffect(value, adapter, plan, pointer) {
|
|
556
|
+
onlyKeys(value, [
|
|
557
|
+
'adapterId',
|
|
558
|
+
'effectId',
|
|
559
|
+
'kind',
|
|
560
|
+
'planMaterialDigest',
|
|
561
|
+
'requestOrdinal',
|
|
562
|
+
'runId',
|
|
563
|
+
'scenarioId',
|
|
564
|
+
'schemaVersion',
|
|
565
|
+
'sourceCommit',
|
|
566
|
+
'state',
|
|
567
|
+
'workload',
|
|
568
|
+
], pointer);
|
|
569
|
+
if (value.adapterId !== adapter.id ||
|
|
570
|
+
typeof value.effectId !== 'string' ||
|
|
571
|
+
!DIGEST.test(value.effectId) ||
|
|
572
|
+
value.kind !== 'ebk-protected-load-effect' ||
|
|
573
|
+
value.planMaterialDigest !== plan.materialDigest ||
|
|
574
|
+
typeof value.requestOrdinal !== 'number' ||
|
|
575
|
+
!Number.isSafeInteger(value.requestOrdinal) ||
|
|
576
|
+
value.requestOrdinal <= 0 ||
|
|
577
|
+
value.runId !== plan.runId ||
|
|
578
|
+
value.scenarioId !== plan.scenarioId ||
|
|
579
|
+
value.schemaVersion !== 1 ||
|
|
580
|
+
value.sourceCommit !== plan.sourceCommit ||
|
|
581
|
+
value.state !== 'reserved' ||
|
|
582
|
+
value.workload !== adapter.workload) {
|
|
583
|
+
throw invalid(pointer, 'does not belong to the exact protected load run');
|
|
584
|
+
}
|
|
585
|
+
return value;
|
|
586
|
+
}
|
|
587
|
+
async function cleanupProtectedLoadScenarioEffects(input) {
|
|
588
|
+
const cleanupDeadline = Date.now() + CLEANUP_MAXIMUM_RUNTIME_MILLISECONDS;
|
|
589
|
+
const { adapter, capacity, catalog, operationsBinding, scenario } = validateProtectedLoadScenarioCatalog(input.catalog, input.plan, input.policy, input.operationsAuthority);
|
|
590
|
+
if (!validHmacKey(input.hmacKey)) {
|
|
591
|
+
throw invalid('cleanup/hmacKey', 'must be one bounded protected HMAC key generation');
|
|
592
|
+
}
|
|
593
|
+
scenarioRequestUrl(input.plan, adapter);
|
|
594
|
+
if (!Array.isArray(input.effects)) {
|
|
595
|
+
throw invalid('cleanup/effects', 'must be an array');
|
|
596
|
+
}
|
|
597
|
+
if (input.effects.length > input.plan.maximumRequests) {
|
|
598
|
+
throw invalid('cleanup/effects', 'cannot exceed the exact protected run request budget');
|
|
599
|
+
}
|
|
600
|
+
if (!adapter.mutation && input.effects.length > 0) {
|
|
601
|
+
throw invalid('cleanup/effects', 'read-only adapter cannot own cleanup effects');
|
|
602
|
+
}
|
|
603
|
+
const fetchImplementation = input.fetch ??
|
|
604
|
+
((url, init) => fetch(url, init));
|
|
605
|
+
const seen = new Set();
|
|
606
|
+
const effects = input.effects.map((effect, index) => {
|
|
607
|
+
const validated = validateEffect(effect, adapter, input.plan, `cleanup/effects/${index}`);
|
|
608
|
+
if (seen.has(validated.effectId)) {
|
|
609
|
+
throw invalid(`cleanup/effects/${index}`, 'duplicates an effect identity');
|
|
610
|
+
}
|
|
611
|
+
seen.add(validated.effectId);
|
|
612
|
+
return validated;
|
|
613
|
+
});
|
|
614
|
+
let remoteCleanup = 'not-required';
|
|
615
|
+
if (adapter.cleanupPath !== null) {
|
|
616
|
+
const controller = new AbortController();
|
|
617
|
+
let timeout;
|
|
618
|
+
try {
|
|
619
|
+
const authorization = requestAuthorization({
|
|
620
|
+
adapter,
|
|
621
|
+
capacity,
|
|
622
|
+
hmacKeyId: input.hmacKey.id,
|
|
623
|
+
operation: 'cleanup',
|
|
624
|
+
plan: input.plan,
|
|
625
|
+
requestOrdinal: 1,
|
|
626
|
+
scenario,
|
|
627
|
+
});
|
|
628
|
+
const remainingRuntime = cleanupDeadline - Date.now();
|
|
629
|
+
if (remainingRuntime <= 0) {
|
|
630
|
+
throw invalid('cleanup/deadline', 'exhausted the bounded cleanup runtime before the request');
|
|
631
|
+
}
|
|
632
|
+
const requestTimeout = Math.min(CLEANUP_MAXIMUM_REQUEST_MILLISECONDS, remainingRuntime);
|
|
633
|
+
const request = (async () => {
|
|
634
|
+
const response = await fetchImplementation(scenarioUrl(input.plan, cleanupPath(adapter)), {
|
|
635
|
+
body: JSON.stringify({
|
|
636
|
+
planMaterialDigest: input.plan.materialDigest,
|
|
637
|
+
release: input.plan.release,
|
|
638
|
+
requestOrdinal: 1,
|
|
639
|
+
runId: input.plan.runId,
|
|
640
|
+
scenarioId: input.plan.scenarioId,
|
|
641
|
+
workload: input.plan.workload,
|
|
642
|
+
}),
|
|
643
|
+
headers: {
|
|
644
|
+
accept: 'application/json',
|
|
645
|
+
'content-type': 'application/json',
|
|
646
|
+
...authorizationHeaders({
|
|
647
|
+
authorization,
|
|
648
|
+
hmacKey: input.hmacKey,
|
|
649
|
+
}),
|
|
650
|
+
'user-agent': 'empire-builder-kit-protected-load-cleanup/1.0.0',
|
|
651
|
+
},
|
|
652
|
+
method: 'POST',
|
|
653
|
+
redirect: 'manual',
|
|
654
|
+
signal: controller.signal,
|
|
655
|
+
});
|
|
656
|
+
return { body: await response.json(), response };
|
|
657
|
+
})();
|
|
658
|
+
const expired = new Promise((_resolve, reject) => {
|
|
659
|
+
timeout = setTimeout(() => {
|
|
660
|
+
controller.abort();
|
|
661
|
+
reject(invalid('cleanup/deadline', 'exceeded the bounded cleanup request deadline'));
|
|
662
|
+
}, requestTimeout);
|
|
663
|
+
});
|
|
664
|
+
const { body, response } = await Promise.race([request, expired]);
|
|
665
|
+
onlyKeys(body, [
|
|
666
|
+
'kind',
|
|
667
|
+
'hmacKeyId',
|
|
668
|
+
'planMaterialDigest',
|
|
669
|
+
'release',
|
|
670
|
+
'remainingEffectCount',
|
|
671
|
+
'removedEffectCount',
|
|
672
|
+
'runId',
|
|
673
|
+
'scenarioId',
|
|
674
|
+
'schemaVersion',
|
|
675
|
+
'status',
|
|
676
|
+
'target',
|
|
677
|
+
], 'cleanup/response');
|
|
678
|
+
validateRelease(body.release, input.plan.release, 'cleanup/response/release');
|
|
679
|
+
onlyKeys(body.target, ['accountFingerprint', 'endpoint', 'region', 'slice'], 'cleanup/response/target');
|
|
680
|
+
if (!response.ok ||
|
|
681
|
+
body.kind !== 'ebk-protected-load-cleanup-result' ||
|
|
682
|
+
body.hmacKeyId !== input.hmacKey.id ||
|
|
683
|
+
body.planMaterialDigest !== input.plan.materialDigest ||
|
|
684
|
+
typeof body.remainingEffectCount !== 'number' ||
|
|
685
|
+
!Number.isSafeInteger(body.remainingEffectCount) ||
|
|
686
|
+
body.remainingEffectCount !== 0 ||
|
|
687
|
+
typeof body.removedEffectCount !== 'number' ||
|
|
688
|
+
!Number.isSafeInteger(body.removedEffectCount) ||
|
|
689
|
+
body.removedEffectCount < 0 ||
|
|
690
|
+
body.runId !== input.plan.runId ||
|
|
691
|
+
body.scenarioId !== input.plan.scenarioId ||
|
|
692
|
+
body.schemaVersion !== 1 ||
|
|
693
|
+
body.status !== 'run-absent' ||
|
|
694
|
+
JSON.stringify(body.target) !==
|
|
695
|
+
JSON.stringify({
|
|
696
|
+
accountFingerprint: input.plan.target.accountFingerprint,
|
|
697
|
+
endpoint: scenarioUrl(input.plan, cleanupPath(adapter)),
|
|
698
|
+
region: input.plan.target.region,
|
|
699
|
+
slice: input.plan.slice,
|
|
700
|
+
})) {
|
|
701
|
+
throw invalid('cleanup/response', 'must prove every protected effect for the exact run is absent');
|
|
702
|
+
}
|
|
703
|
+
remoteCleanup = 'run-proved-absent';
|
|
704
|
+
}
|
|
705
|
+
catch (error) {
|
|
706
|
+
throw invalid('cleanup', `did not prove the exact protected run absent (${error instanceof Error ? error.message : String(error)})`);
|
|
707
|
+
}
|
|
708
|
+
finally {
|
|
709
|
+
if (timeout !== undefined)
|
|
710
|
+
clearTimeout(timeout);
|
|
711
|
+
}
|
|
712
|
+
}
|
|
713
|
+
const unsigned = {
|
|
714
|
+
adapterId: adapter.id,
|
|
715
|
+
cleanupScope: 'run',
|
|
716
|
+
hmacKeyId: input.hmacKey.id,
|
|
717
|
+
kind: 'ebk-protected-load-cleanup',
|
|
718
|
+
observedEffectIds: effects.map(({ effectId }) => effectId),
|
|
719
|
+
planMaterialDigest: input.plan.materialDigest,
|
|
720
|
+
remainingEffectCount: 0,
|
|
721
|
+
remoteCleanup,
|
|
722
|
+
result: 'run-effects-absent',
|
|
723
|
+
runId: input.plan.runId,
|
|
724
|
+
scenarioContractDigest: (0, model_js_1.performanceDigest)({
|
|
725
|
+
adapter,
|
|
726
|
+
capacity,
|
|
727
|
+
catalog,
|
|
728
|
+
operationsBinding,
|
|
729
|
+
scenario,
|
|
730
|
+
}),
|
|
731
|
+
schemaVersion: 1,
|
|
732
|
+
sourceCommit: input.plan.sourceCommit,
|
|
733
|
+
};
|
|
734
|
+
return { ...unsigned, materialDigest: (0, model_js_1.performanceDigest)(unsigned) };
|
|
735
|
+
}
|
|
736
|
+
//# sourceMappingURL=scenario.js.map
|