@runa-ai/runa-cli 0.5.26
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/dist/cli/contract-mode.d.ts +2 -0
- package/dist/cli/contract-mode.d.ts.map +1 -0
- package/dist/cli/contract-output.d.ts +4 -0
- package/dist/cli/contract-output.d.ts.map +1 -0
- package/dist/cli/early-flags.d.ts +10 -0
- package/dist/cli/early-flags.d.ts.map +1 -0
- package/dist/cli/error-handler.d.ts +28 -0
- package/dist/cli/error-handler.d.ts.map +1 -0
- package/dist/cli/exec.d.ts +15 -0
- package/dist/cli/exec.d.ts.map +1 -0
- package/dist/cli/index.d.ts +16 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/json-output.d.ts +4 -0
- package/dist/cli/json-output.d.ts.map +1 -0
- package/dist/cli/non-interactive.d.ts +4 -0
- package/dist/cli/non-interactive.d.ts.map +1 -0
- package/dist/cli/output-format.d.ts +5 -0
- package/dist/cli/output-format.d.ts.map +1 -0
- package/dist/cli/signal-handler.d.ts +32 -0
- package/dist/cli/signal-handler.d.ts.map +1 -0
- package/dist/commands/build/actors/build.d.ts +32 -0
- package/dist/commands/build/actors/build.d.ts.map +1 -0
- package/dist/commands/build/actors/clean.d.ts +36 -0
- package/dist/commands/build/actors/clean.d.ts.map +1 -0
- package/dist/commands/build/actors/db-sync.d.ts +30 -0
- package/dist/commands/build/actors/db-sync.d.ts.map +1 -0
- package/dist/commands/build/actors/index.d.ts +20 -0
- package/dist/commands/build/actors/index.d.ts.map +1 -0
- package/dist/commands/build/actors/manifest.d.ts +34 -0
- package/dist/commands/build/actors/manifest.d.ts.map +1 -0
- package/dist/commands/build/actors/setup.d.ts +74 -0
- package/dist/commands/build/actors/setup.d.ts.map +1 -0
- package/dist/commands/build/actors/static-checks.d.ts +36 -0
- package/dist/commands/build/actors/static-checks.d.ts.map +1 -0
- package/dist/commands/build/actors/validate.d.ts +28 -0
- package/dist/commands/build/actors/validate.d.ts.map +1 -0
- package/dist/commands/build/commands/build.d.ts +25 -0
- package/dist/commands/build/commands/build.d.ts.map +1 -0
- package/dist/commands/build/contract.d.ts +213 -0
- package/dist/commands/build/contract.d.ts.map +1 -0
- package/dist/commands/build/guards.d.ts +106 -0
- package/dist/commands/build/guards.d.ts.map +1 -0
- package/dist/commands/build/index.d.ts +9 -0
- package/dist/commands/build/index.d.ts.map +1 -0
- package/dist/commands/build/machine.d.ts +212 -0
- package/dist/commands/build/machine.d.ts.map +1 -0
- package/dist/commands/build/types.d.ts +75 -0
- package/dist/commands/build/types.d.ts.map +1 -0
- package/dist/commands/cache.d.ts +32 -0
- package/dist/commands/cache.d.ts.map +1 -0
- package/dist/commands/check/commands/check.d.ts +26 -0
- package/dist/commands/check/commands/check.d.ts.map +1 -0
- package/dist/commands/check/index.d.ts +24 -0
- package/dist/commands/check/index.d.ts.map +1 -0
- package/dist/commands/ci/commands/ci-checks.d.ts +14 -0
- package/dist/commands/ci/commands/ci-checks.d.ts.map +1 -0
- package/dist/commands/ci/commands/ci-layer-content.d.ts +40 -0
- package/dist/commands/ci/commands/ci-layer-content.d.ts.map +1 -0
- package/dist/commands/ci/commands/ci-pr-capabilities.d.ts +30 -0
- package/dist/commands/ci/commands/ci-pr-capabilities.d.ts.map +1 -0
- package/dist/commands/ci/commands/ci-prod-apply.d.ts +10 -0
- package/dist/commands/ci/commands/ci-prod-apply.d.ts.map +1 -0
- package/dist/commands/ci/commands/ci-prod-db-operations.d.ts +98 -0
- package/dist/commands/ci/commands/ci-prod-db-operations.d.ts.map +1 -0
- package/dist/commands/ci/commands/ci-prod-github.d.ts +28 -0
- package/dist/commands/ci/commands/ci-prod-github.d.ts.map +1 -0
- package/dist/commands/ci/commands/ci-prod-utils.d.ts +33 -0
- package/dist/commands/ci/commands/ci-prod-utils.d.ts.map +1 -0
- package/dist/commands/ci/commands/ci-resolvers.d.ts +71 -0
- package/dist/commands/ci/commands/ci-resolvers.d.ts.map +1 -0
- package/dist/commands/ci/commands/ci-static.d.ts +18 -0
- package/dist/commands/ci/commands/ci-static.d.ts.map +1 -0
- package/dist/commands/ci/commands/ci-supabase-local.d.ts +51 -0
- package/dist/commands/ci/commands/ci-supabase-local.d.ts.map +1 -0
- package/dist/commands/ci/index.d.ts +23 -0
- package/dist/commands/ci/index.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/build/app-build.d.ts +31 -0
- package/dist/commands/ci/machine/actors/build/app-build.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/build/app-start.d.ts +47 -0
- package/dist/commands/ci/machine/actors/build/app-start.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/build/build-and-playwright.d.ts +41 -0
- package/dist/commands/ci/machine/actors/build/build-and-playwright.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/build/index.d.ts +12 -0
- package/dist/commands/ci/machine/actors/build/index.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/build/playwright-install.d.ts +30 -0
- package/dist/commands/ci/machine/actors/build/playwright-install.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/build/static-checks.d.ts +35 -0
- package/dist/commands/ci/machine/actors/build/static-checks.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/db/apply-seeds.d.ts +32 -0
- package/dist/commands/ci/machine/actors/db/apply-seeds.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/db/collect-schema-stats.d.ts +38 -0
- package/dist/commands/ci/machine/actors/db/collect-schema-stats.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/db/index.d.ts +16 -0
- package/dist/commands/ci/machine/actors/db/index.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/db/pgtap-install.d.ts +33 -0
- package/dist/commands/ci/machine/actors/db/pgtap-install.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/db/production-preview.d.ts +34 -0
- package/dist/commands/ci/machine/actors/db/production-preview.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/db/pull-production.d.ts +35 -0
- package/dist/commands/ci/machine/actors/db/pull-production.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/db/reset.d.ts +31 -0
- package/dist/commands/ci/machine/actors/db/reset.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/db/schema-stats.d.ts +141 -0
- package/dist/commands/ci/machine/actors/db/schema-stats.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/db/setup-roles.d.ts +37 -0
- package/dist/commands/ci/machine/actors/db/setup-roles.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/db/sync-schema.d.ts +48 -0
- package/dist/commands/ci/machine/actors/db/sync-schema.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/finalize/github.d.ts +66 -0
- package/dist/commands/ci/machine/actors/finalize/github.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/finalize/index.d.ts +9 -0
- package/dist/commands/ci/machine/actors/finalize/index.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/finalize/summary.d.ts +32 -0
- package/dist/commands/ci/machine/actors/finalize/summary.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/index.d.ts +17 -0
- package/dist/commands/ci/machine/actors/index.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/setup/index.d.ts +10 -0
- package/dist/commands/ci/machine/actors/setup/index.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/setup/local.d.ts +41 -0
- package/dist/commands/ci/machine/actors/setup/local.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/setup/pr-common.d.ts +145 -0
- package/dist/commands/ci/machine/actors/setup/pr-common.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/setup/pr-local.d.ts +17 -0
- package/dist/commands/ci/machine/actors/setup/pr-local.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/test/capabilities.d.ts +66 -0
- package/dist/commands/ci/machine/actors/test/capabilities.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/test/index.d.ts +9 -0
- package/dist/commands/ci/machine/actors/test/index.d.ts.map +1 -0
- package/dist/commands/ci/machine/actors/test/run-layers.d.ts +43 -0
- package/dist/commands/ci/machine/actors/test/run-layers.d.ts.map +1 -0
- package/dist/commands/ci/machine/commands/ci-local.d.ts +18 -0
- package/dist/commands/ci/machine/commands/ci-local.d.ts.map +1 -0
- package/dist/commands/ci/machine/commands/ci-pr.d.ts +14 -0
- package/dist/commands/ci/machine/commands/ci-pr.d.ts.map +1 -0
- package/dist/commands/ci/machine/commands/index.d.ts +13 -0
- package/dist/commands/ci/machine/commands/index.d.ts.map +1 -0
- package/dist/commands/ci/machine/commands/machine-runner.d.ts +36 -0
- package/dist/commands/ci/machine/commands/machine-runner.d.ts.map +1 -0
- package/dist/commands/ci/machine/contract.d.ts +393 -0
- package/dist/commands/ci/machine/contract.d.ts.map +1 -0
- package/dist/commands/ci/machine/formatters/github-comment-types.d.ts +87 -0
- package/dist/commands/ci/machine/formatters/github-comment-types.d.ts.map +1 -0
- package/dist/commands/ci/machine/formatters/github-comment.d.ts +44 -0
- package/dist/commands/ci/machine/formatters/github-comment.d.ts.map +1 -0
- package/dist/commands/ci/machine/formatters/index.d.ts +13 -0
- package/dist/commands/ci/machine/formatters/index.d.ts.map +1 -0
- package/dist/commands/ci/machine/formatters/sections/final-comment.d.ts +18 -0
- package/dist/commands/ci/machine/formatters/sections/final-comment.d.ts.map +1 -0
- package/dist/commands/ci/machine/formatters/sections/format-helpers.d.ts +63 -0
- package/dist/commands/ci/machine/formatters/sections/format-helpers.d.ts.map +1 -0
- package/dist/commands/ci/machine/formatters/sections/index.d.ts +10 -0
- package/dist/commands/ci/machine/formatters/sections/index.d.ts.map +1 -0
- package/dist/commands/ci/machine/formatters/sections/progress-comment.d.ts +14 -0
- package/dist/commands/ci/machine/formatters/sections/progress-comment.d.ts.map +1 -0
- package/dist/commands/ci/machine/formatters/sections/schema-matrix.d.ts +25 -0
- package/dist/commands/ci/machine/formatters/sections/schema-matrix.d.ts.map +1 -0
- package/dist/commands/ci/machine/formatters/summary.d.ts +27 -0
- package/dist/commands/ci/machine/formatters/summary.d.ts.map +1 -0
- package/dist/commands/ci/machine/guards.d.ts +136 -0
- package/dist/commands/ci/machine/guards.d.ts.map +1 -0
- package/dist/commands/ci/machine/helpers.d.ts +88 -0
- package/dist/commands/ci/machine/helpers.d.ts.map +1 -0
- package/dist/commands/ci/machine/index.d.ts +21 -0
- package/dist/commands/ci/machine/index.d.ts.map +1 -0
- package/dist/commands/ci/machine/machine.d.ts +315 -0
- package/dist/commands/ci/machine/machine.d.ts.map +1 -0
- package/dist/commands/ci/machine/types.d.ts +264 -0
- package/dist/commands/ci/machine/types.d.ts.map +1 -0
- package/dist/commands/ci/utils/ai-report.d.ts +70 -0
- package/dist/commands/ci/utils/ai-report.d.ts.map +1 -0
- package/dist/commands/ci/utils/app-process.d.ts +29 -0
- package/dist/commands/ci/utils/app-process.d.ts.map +1 -0
- package/dist/commands/ci/utils/app-runtime.d.ts +27 -0
- package/dist/commands/ci/utils/app-runtime.d.ts.map +1 -0
- package/dist/commands/ci/utils/ci-config.d.ts +22 -0
- package/dist/commands/ci/utils/ci-config.d.ts.map +1 -0
- package/dist/commands/ci/utils/ci-env-schema.d.ts +128 -0
- package/dist/commands/ci/utils/ci-env-schema.d.ts.map +1 -0
- package/dist/commands/ci/utils/ci-logging.d.ts +16 -0
- package/dist/commands/ci/utils/ci-logging.d.ts.map +1 -0
- package/dist/commands/ci/utils/ci-summary.d.ts +109 -0
- package/dist/commands/ci/utils/ci-summary.d.ts.map +1 -0
- package/dist/commands/ci/utils/config-readers.d.ts +46 -0
- package/dist/commands/ci/utils/config-readers.d.ts.map +1 -0
- package/dist/commands/ci/utils/db-url-utils.d.ts +81 -0
- package/dist/commands/ci/utils/db-url-utils.d.ts.map +1 -0
- package/dist/commands/ci/utils/e2e-auth-setup.d.ts +78 -0
- package/dist/commands/ci/utils/e2e-auth-setup.d.ts.map +1 -0
- package/dist/commands/ci/utils/execa-helpers.d.ts +14 -0
- package/dist/commands/ci/utils/execa-helpers.d.ts.map +1 -0
- package/dist/commands/ci/utils/exit-code-computation.d.ts +62 -0
- package/dist/commands/ci/utils/exit-code-computation.d.ts.map +1 -0
- package/dist/commands/ci/utils/github-api.d.ts +54 -0
- package/dist/commands/ci/utils/github-api.d.ts.map +1 -0
- package/dist/commands/ci/utils/github.d.ts +43 -0
- package/dist/commands/ci/utils/github.d.ts.map +1 -0
- package/dist/commands/ci/utils/index.d.ts +25 -0
- package/dist/commands/ci/utils/index.d.ts.map +1 -0
- package/dist/commands/ci/utils/pgtap-installer.d.ts +34 -0
- package/dist/commands/ci/utils/pgtap-installer.d.ts.map +1 -0
- package/dist/commands/ci/utils/rls-verification.d.ts +72 -0
- package/dist/commands/ci/utils/rls-verification.d.ts.map +1 -0
- package/dist/commands/ci/utils/schema-operations.d.ts +42 -0
- package/dist/commands/ci/utils/schema-operations.d.ts.map +1 -0
- package/dist/commands/ci/utils/seed-operations.d.ts +101 -0
- package/dist/commands/ci/utils/seed-operations.d.ts.map +1 -0
- package/dist/commands/ci/utils/test-parallel.d.ts +45 -0
- package/dist/commands/ci/utils/test-parallel.d.ts.map +1 -0
- package/dist/commands/ci/utils/timestamp-invariants.d.ts +13 -0
- package/dist/commands/ci/utils/timestamp-invariants.d.ts.map +1 -0
- package/dist/commands/db/apply/actors.d.ts +42 -0
- package/dist/commands/db/apply/actors.d.ts.map +1 -0
- package/dist/commands/db/apply/contract.d.ts +64 -0
- package/dist/commands/db/apply/contract.d.ts.map +1 -0
- package/dist/commands/db/apply/helpers/advisory-lock.d.ts +18 -0
- package/dist/commands/db/apply/helpers/advisory-lock.d.ts.map +1 -0
- package/dist/commands/db/apply/helpers/index.d.ts +11 -0
- package/dist/commands/db/apply/helpers/index.d.ts.map +1 -0
- package/dist/commands/db/apply/helpers/pg-schema-diff-helpers.d.ts +122 -0
- package/dist/commands/db/apply/helpers/pg-schema-diff-helpers.d.ts.map +1 -0
- package/dist/commands/db/apply/helpers/retry-logic.d.ts +51 -0
- package/dist/commands/db/apply/helpers/retry-logic.d.ts.map +1 -0
- package/dist/commands/db/apply/index.d.ts +9 -0
- package/dist/commands/db/apply/index.d.ts.map +1 -0
- package/dist/commands/db/apply/machine.d.ts +126 -0
- package/dist/commands/db/apply/machine.d.ts.map +1 -0
- package/dist/commands/db/commands/db-apply.d.ts +6 -0
- package/dist/commands/db/commands/db-apply.d.ts.map +1 -0
- package/dist/commands/db/commands/db-audit.d.ts +13 -0
- package/dist/commands/db/commands/db-audit.d.ts.map +1 -0
- package/dist/commands/db/commands/db-backup.d.ts +18 -0
- package/dist/commands/db/commands/db-backup.d.ts.map +1 -0
- package/dist/commands/db/commands/db-cleanup.d.ts +3 -0
- package/dist/commands/db/commands/db-cleanup.d.ts.map +1 -0
- package/dist/commands/db/commands/db-derive-role-passwords.d.ts +18 -0
- package/dist/commands/db/commands/db-derive-role-passwords.d.ts.map +1 -0
- package/dist/commands/db/commands/db-derive-urls.d.ts +14 -0
- package/dist/commands/db/commands/db-derive-urls.d.ts.map +1 -0
- package/dist/commands/db/commands/db-diagram.d.ts +21 -0
- package/dist/commands/db/commands/db-diagram.d.ts.map +1 -0
- package/dist/commands/db/commands/db-drizzle.d.ts +17 -0
- package/dist/commands/db/commands/db-drizzle.d.ts.map +1 -0
- package/dist/commands/db/commands/db-extension.d.ts +16 -0
- package/dist/commands/db/commands/db-extension.d.ts.map +1 -0
- package/dist/commands/db/commands/db-generate-password.d.ts +19 -0
- package/dist/commands/db/commands/db-generate-password.d.ts.map +1 -0
- package/dist/commands/db/commands/db-lifecycle.d.ts +43 -0
- package/dist/commands/db/commands/db-lifecycle.d.ts.map +1 -0
- package/dist/commands/db/commands/db-rollback.d.ts +17 -0
- package/dist/commands/db/commands/db-rollback.d.ts.map +1 -0
- package/dist/commands/db/commands/db-schema.d.ts +51 -0
- package/dist/commands/db/commands/db-schema.d.ts.map +1 -0
- package/dist/commands/db/commands/db-seed-metadata.d.ts +20 -0
- package/dist/commands/db/commands/db-seed-metadata.d.ts.map +1 -0
- package/dist/commands/db/commands/db-seed-verify.d.ts +13 -0
- package/dist/commands/db/commands/db-seed-verify.d.ts.map +1 -0
- package/dist/commands/db/commands/db-seed.d.ts +32 -0
- package/dist/commands/db/commands/db-seed.d.ts.map +1 -0
- package/dist/commands/db/commands/db-snapshot.d.ts +12 -0
- package/dist/commands/db/commands/db-snapshot.d.ts.map +1 -0
- package/dist/commands/db/commands/db-stack.d.ts +17 -0
- package/dist/commands/db/commands/db-stack.d.ts.map +1 -0
- package/dist/commands/db/commands/db-stats.d.ts +15 -0
- package/dist/commands/db/commands/db-stats.d.ts.map +1 -0
- package/dist/commands/db/commands/db-sync.d.ts +3 -0
- package/dist/commands/db/commands/db-sync.d.ts.map +1 -0
- package/dist/commands/db/commands/db-test.d.ts +27 -0
- package/dist/commands/db/commands/db-test.d.ts.map +1 -0
- package/dist/commands/db/constants.d.ts +97 -0
- package/dist/commands/db/constants.d.ts.map +1 -0
- package/dist/commands/db/extension-registry.d.ts +81 -0
- package/dist/commands/db/extension-registry.d.ts.map +1 -0
- package/dist/commands/db/index.d.ts +17 -0
- package/dist/commands/db/index.d.ts.map +1 -0
- package/dist/commands/db/preflight/actors.d.ts +6 -0
- package/dist/commands/db/preflight/actors.d.ts.map +1 -0
- package/dist/commands/db/preflight/contract.d.ts +53 -0
- package/dist/commands/db/preflight/contract.d.ts.map +1 -0
- package/dist/commands/db/preflight/index.d.ts +3 -0
- package/dist/commands/db/preflight/index.d.ts.map +1 -0
- package/dist/commands/db/sync/actors.d.ts +93 -0
- package/dist/commands/db/sync/actors.d.ts.map +1 -0
- package/dist/commands/db/sync/contract.d.ts +155 -0
- package/dist/commands/db/sync/contract.d.ts.map +1 -0
- package/dist/commands/db/sync/index.d.ts +10 -0
- package/dist/commands/db/sync/index.d.ts.map +1 -0
- package/dist/commands/db/sync/machine.d.ts +159 -0
- package/dist/commands/db/sync/machine.d.ts.map +1 -0
- package/dist/commands/db/types.d.ts +107 -0
- package/dist/commands/db/types.d.ts.map +1 -0
- package/dist/commands/db/utils/db-target.d.ts +53 -0
- package/dist/commands/db/utils/db-target.d.ts.map +1 -0
- package/dist/commands/db/utils/db-url-builder.d.ts +34 -0
- package/dist/commands/db/utils/db-url-builder.d.ts.map +1 -0
- package/dist/commands/db/utils/error-handlers.d.ts +17 -0
- package/dist/commands/db/utils/error-handlers.d.ts.map +1 -0
- package/dist/commands/db/utils/preflight-check.d.ts +20 -0
- package/dist/commands/db/utils/preflight-check.d.ts.map +1 -0
- package/dist/commands/db/utils/psql.d.ts +17 -0
- package/dist/commands/db/utils/psql.d.ts.map +1 -0
- package/dist/commands/db/utils/schema-detector.d.ts +32 -0
- package/dist/commands/db/utils/schema-detector.d.ts.map +1 -0
- package/dist/commands/db/utils/schema-sync.d.ts +59 -0
- package/dist/commands/db/utils/schema-sync.d.ts.map +1 -0
- package/dist/commands/db/utils/script-runner.d.ts +34 -0
- package/dist/commands/db/utils/script-runner.d.ts.map +1 -0
- package/dist/commands/db/utils/seed-manager.d.ts +23 -0
- package/dist/commands/db/utils/seed-manager.d.ts.map +1 -0
- package/dist/commands/db/utils/semantic-mapper.d.ts +119 -0
- package/dist/commands/db/utils/semantic-mapper.d.ts.map +1 -0
- package/dist/commands/db/utils/sql-table-extractor.d.ts +56 -0
- package/dist/commands/db/utils/sql-table-extractor.d.ts.map +1 -0
- package/dist/commands/db/utils/stack-detector.d.ts +34 -0
- package/dist/commands/db/utils/stack-detector.d.ts.map +1 -0
- package/dist/commands/db/utils/table-registry.d.ts +112 -0
- package/dist/commands/db/utils/table-registry.d.ts.map +1 -0
- package/dist/commands/dev/actors/index.d.ts +14 -0
- package/dist/commands/dev/actors/index.d.ts.map +1 -0
- package/dist/commands/dev/commands/dev.d.ts +15 -0
- package/dist/commands/dev/commands/dev.d.ts.map +1 -0
- package/dist/commands/dev/contract.d.ts +46 -0
- package/dist/commands/dev/contract.d.ts.map +1 -0
- package/dist/commands/dev/guards.d.ts +26 -0
- package/dist/commands/dev/guards.d.ts.map +1 -0
- package/dist/commands/dev/machine.d.ts +121 -0
- package/dist/commands/dev/machine.d.ts.map +1 -0
- package/dist/commands/dev/types.d.ts +44 -0
- package/dist/commands/dev/types.d.ts.map +1 -0
- package/dist/commands/env/commands/env-check.d.ts +24 -0
- package/dist/commands/env/commands/env-check.d.ts.map +1 -0
- package/dist/commands/env/commands/env-encrypt.d.ts +19 -0
- package/dist/commands/env/commands/env-encrypt.d.ts.map +1 -0
- package/dist/commands/env/commands/env-pull.d.ts +49 -0
- package/dist/commands/env/commands/env-pull.d.ts.map +1 -0
- package/dist/commands/env/commands/env-setup.d.ts +51 -0
- package/dist/commands/env/commands/env-setup.d.ts.map +1 -0
- package/dist/commands/env/commands/env-sync.d.ts +18 -0
- package/dist/commands/env/commands/env-sync.d.ts.map +1 -0
- package/dist/commands/env/commands/setup/action.d.ts +18 -0
- package/dist/commands/env/commands/setup/action.d.ts.map +1 -0
- package/dist/commands/env/commands/setup/auth.d.ts +25 -0
- package/dist/commands/env/commands/setup/auth.d.ts.map +1 -0
- package/dist/commands/env/commands/setup/file-export.d.ts +20 -0
- package/dist/commands/env/commands/setup/file-export.d.ts.map +1 -0
- package/dist/commands/env/commands/setup/github-api.d.ts +17 -0
- package/dist/commands/env/commands/setup/github-api.d.ts.map +1 -0
- package/dist/commands/env/commands/setup/helpers.d.ts +117 -0
- package/dist/commands/env/commands/setup/helpers.d.ts.map +1 -0
- package/dist/commands/env/commands/setup/index.d.ts +16 -0
- package/dist/commands/env/commands/setup/index.d.ts.map +1 -0
- package/dist/commands/env/commands/setup/parsers.d.ts +66 -0
- package/dist/commands/env/commands/setup/parsers.d.ts.map +1 -0
- package/dist/commands/env/commands/setup/prompts.d.ts +41 -0
- package/dist/commands/env/commands/setup/prompts.d.ts.map +1 -0
- package/dist/commands/env/commands/setup/supabase-api.d.ts +30 -0
- package/dist/commands/env/commands/setup/supabase-api.d.ts.map +1 -0
- package/dist/commands/env/commands/setup/types.d.ts +105 -0
- package/dist/commands/env/commands/setup/types.d.ts.map +1 -0
- package/dist/commands/env/commands/setup/vercel-api.d.ts +34 -0
- package/dist/commands/env/commands/setup/vercel-api.d.ts.map +1 -0
- package/dist/commands/env/constants/local-supabase.d.ts +43 -0
- package/dist/commands/env/constants/local-supabase.d.ts.map +1 -0
- package/dist/commands/env/index.d.ts +14 -0
- package/dist/commands/env/index.d.ts.map +1 -0
- package/dist/commands/hotfix/actors.d.ts +88 -0
- package/dist/commands/hotfix/actors.d.ts.map +1 -0
- package/dist/commands/hotfix/commands/hotfix-complete.d.ts +23 -0
- package/dist/commands/hotfix/commands/hotfix-complete.d.ts.map +1 -0
- package/dist/commands/hotfix/commands/hotfix-create.d.ts +23 -0
- package/dist/commands/hotfix/commands/hotfix-create.d.ts.map +1 -0
- package/dist/commands/hotfix/commands/hotfix-deploy.d.ts +23 -0
- package/dist/commands/hotfix/commands/hotfix-deploy.d.ts.map +1 -0
- package/dist/commands/hotfix/commands/hotfix-status.d.ts +20 -0
- package/dist/commands/hotfix/commands/hotfix-status.d.ts.map +1 -0
- package/dist/commands/hotfix/contract.d.ts +219 -0
- package/dist/commands/hotfix/contract.d.ts.map +1 -0
- package/dist/commands/hotfix/index.d.ts +15 -0
- package/dist/commands/hotfix/index.d.ts.map +1 -0
- package/dist/commands/hotfix/machine.d.ts +242 -0
- package/dist/commands/hotfix/machine.d.ts.map +1 -0
- package/dist/commands/hotfix/metadata.d.ts +37 -0
- package/dist/commands/hotfix/metadata.d.ts.map +1 -0
- package/dist/commands/hotfix/utils/hotfix-machine-helper.d.ts +58 -0
- package/dist/commands/hotfix/utils/hotfix-machine-helper.d.ts.map +1 -0
- package/dist/commands/init.d.ts +21 -0
- package/dist/commands/init.d.ts.map +1 -0
- package/dist/commands/inject-test-attrs/action.d.ts +14 -0
- package/dist/commands/inject-test-attrs/action.d.ts.map +1 -0
- package/dist/commands/inject-test-attrs/commands/inject-test-attrs.d.ts +16 -0
- package/dist/commands/inject-test-attrs/commands/inject-test-attrs.d.ts.map +1 -0
- package/dist/commands/inject-test-attrs/contract.d.ts +52 -0
- package/dist/commands/inject-test-attrs/contract.d.ts.map +1 -0
- package/dist/commands/inject-test-attrs/formatter.d.ts +13 -0
- package/dist/commands/inject-test-attrs/formatter.d.ts.map +1 -0
- package/dist/commands/inject-test-attrs/index.d.ts +9 -0
- package/dist/commands/inject-test-attrs/index.d.ts.map +1 -0
- package/dist/commands/inject-test-attrs/manifest-generator.d.ts +21 -0
- package/dist/commands/inject-test-attrs/manifest-generator.d.ts.map +1 -0
- package/dist/commands/inject-test-attrs/processor-utils.d.ts +76 -0
- package/dist/commands/inject-test-attrs/processor-utils.d.ts.map +1 -0
- package/dist/commands/inject-test-attrs/processor.d.ts +35 -0
- package/dist/commands/inject-test-attrs/processor.d.ts.map +1 -0
- package/dist/commands/inject-test-attrs/types.d.ts +48 -0
- package/dist/commands/inject-test-attrs/types.d.ts.map +1 -0
- package/dist/commands/link.d.ts +16 -0
- package/dist/commands/link.d.ts.map +1 -0
- package/dist/commands/manifest/index.d.ts +27 -0
- package/dist/commands/manifest/index.d.ts.map +1 -0
- package/dist/commands/prepare/commands/prepare.d.ts +32 -0
- package/dist/commands/prepare/commands/prepare.d.ts.map +1 -0
- package/dist/commands/prepare/index.d.ts +10 -0
- package/dist/commands/prepare/index.d.ts.map +1 -0
- package/dist/commands/sdk/commands/publish.d.ts +33 -0
- package/dist/commands/sdk/commands/publish.d.ts.map +1 -0
- package/dist/commands/sdk/index.d.ts +14 -0
- package/dist/commands/sdk/index.d.ts.map +1 -0
- package/dist/commands/services/index.d.ts +3 -0
- package/dist/commands/services/index.d.ts.map +1 -0
- package/dist/commands/session/index.d.ts +19 -0
- package/dist/commands/session/index.d.ts.map +1 -0
- package/dist/commands/status.d.ts +13 -0
- package/dist/commands/status.d.ts.map +1 -0
- package/dist/commands/telemetry.d.ts +3 -0
- package/dist/commands/telemetry.d.ts.map +1 -0
- package/dist/commands/template-check/actors/compare.d.ts +18 -0
- package/dist/commands/template-check/actors/compare.d.ts.map +1 -0
- package/dist/commands/template-check/actors/discover.d.ts +18 -0
- package/dist/commands/template-check/actors/discover.d.ts.map +1 -0
- package/dist/commands/template-check/actors/index.d.ts +9 -0
- package/dist/commands/template-check/actors/index.d.ts.map +1 -0
- package/dist/commands/template-check/actors/report.d.ts +44 -0
- package/dist/commands/template-check/actors/report.d.ts.map +1 -0
- package/dist/commands/template-check/commands/template-check.d.ts +17 -0
- package/dist/commands/template-check/commands/template-check.d.ts.map +1 -0
- package/dist/commands/template-check/config.d.ts +100 -0
- package/dist/commands/template-check/config.d.ts.map +1 -0
- package/dist/commands/template-check/contract.d.ts +169 -0
- package/dist/commands/template-check/contract.d.ts.map +1 -0
- package/dist/commands/template-check/index.d.ts +8 -0
- package/dist/commands/template-check/index.d.ts.map +1 -0
- package/dist/commands/template-check/machine.d.ts +91 -0
- package/dist/commands/template-check/machine.d.ts.map +1 -0
- package/dist/commands/template-check/types.d.ts +87 -0
- package/dist/commands/template-check/types.d.ts.map +1 -0
- package/dist/commands/template-check/utils/diff-analyzer.d.ts +40 -0
- package/dist/commands/template-check/utils/diff-analyzer.d.ts.map +1 -0
- package/dist/commands/template-check/utils/normalizer.d.ts +55 -0
- package/dist/commands/template-check/utils/normalizer.d.ts.map +1 -0
- package/dist/commands/template-check/utils/path-mapping.d.ts +43 -0
- package/dist/commands/template-check/utils/path-mapping.d.ts.map +1 -0
- package/dist/commands/test/commands/test-db.d.ts +25 -0
- package/dist/commands/test/commands/test-db.d.ts.map +1 -0
- package/dist/commands/test/commands/test-e2e.d.ts +20 -0
- package/dist/commands/test/commands/test-e2e.d.ts.map +1 -0
- package/dist/commands/test/commands/test-fast.d.ts +21 -0
- package/dist/commands/test/commands/test-fast.d.ts.map +1 -0
- package/dist/commands/test/commands/test-integration.d.ts +3 -0
- package/dist/commands/test/commands/test-integration.d.ts.map +1 -0
- package/dist/commands/test/commands/test-layer.d.ts +8 -0
- package/dist/commands/test/commands/test-layer.d.ts.map +1 -0
- package/dist/commands/test/commands/test-owasp-generate.d.ts +11 -0
- package/dist/commands/test/commands/test-owasp-generate.d.ts.map +1 -0
- package/dist/commands/test/commands/test-service.d.ts +3 -0
- package/dist/commands/test/commands/test-service.d.ts.map +1 -0
- package/dist/commands/test/commands/test-static.d.ts +3 -0
- package/dist/commands/test/commands/test-static.d.ts.map +1 -0
- package/dist/commands/test/commands/test.d.ts +3 -0
- package/dist/commands/test/commands/test.d.ts.map +1 -0
- package/dist/commands/test/index.d.ts +39 -0
- package/dist/commands/test/index.d.ts.map +1 -0
- package/dist/commands/test-gen.d.ts +39 -0
- package/dist/commands/test-gen.d.ts.map +1 -0
- package/dist/commands/ui.d.ts +12 -0
- package/dist/commands/ui.d.ts.map +1 -0
- package/dist/commands/upgrade.d.ts +38 -0
- package/dist/commands/upgrade.d.ts.map +1 -0
- package/dist/commands/validate.d.ts +9 -0
- package/dist/commands/validate.d.ts.map +1 -0
- package/dist/commands/vuln-check.d.ts +18 -0
- package/dist/commands/vuln-check.d.ts.map +1 -0
- package/dist/commands/watch.d.ts +21 -0
- package/dist/commands/watch.d.ts.map +1 -0
- package/dist/commands/workflow/commands/deploy-production.d.ts +10 -0
- package/dist/commands/workflow/commands/deploy-production.d.ts.map +1 -0
- package/dist/commands/workflow/commands/final-status.d.ts +19 -0
- package/dist/commands/workflow/commands/final-status.d.ts.map +1 -0
- package/dist/commands/workflow/commands/log.d.ts +14 -0
- package/dist/commands/workflow/commands/log.d.ts.map +1 -0
- package/dist/commands/workflow/commands/notify.d.ts +18 -0
- package/dist/commands/workflow/commands/notify.d.ts.map +1 -0
- package/dist/commands/workflow/commands/paths.d.ts +15 -0
- package/dist/commands/workflow/commands/paths.d.ts.map +1 -0
- package/dist/commands/workflow/commands/sync.d.ts +21 -0
- package/dist/commands/workflow/commands/sync.d.ts.map +1 -0
- package/dist/commands/workflow/commands/validate.d.ts +9 -0
- package/dist/commands/workflow/commands/validate.d.ts.map +1 -0
- package/dist/commands/workflow/commands/verify-credentials.d.ts +15 -0
- package/dist/commands/workflow/commands/verify-credentials.d.ts.map +1 -0
- package/dist/commands/workflow/index.d.ts +15 -0
- package/dist/commands/workflow/index.d.ts.map +1 -0
- package/dist/commands/workflow/types.d.ts +87 -0
- package/dist/commands/workflow/types.d.ts.map +1 -0
- package/dist/config/env-files.d.ts +65 -0
- package/dist/config/env-files.d.ts.map +1 -0
- package/dist/config/env.d.ts +131 -0
- package/dist/config/env.d.ts.map +1 -0
- package/dist/constants/versions.d.ts +26 -0
- package/dist/constants/versions.d.ts.map +1 -0
- package/dist/contracts/envelope.d.ts +2 -0
- package/dist/contracts/envelope.d.ts.map +1 -0
- package/dist/errors/catalog.d.ts +461 -0
- package/dist/errors/catalog.d.ts.map +1 -0
- package/dist/errors/exit-codes.d.ts +46 -0
- package/dist/errors/exit-codes.d.ts.map +1 -0
- package/dist/errors/index.d.ts +13 -0
- package/dist/errors/index.d.ts.map +1 -0
- package/dist/incremental/affected-tests.d.ts +29 -0
- package/dist/incremental/affected-tests.d.ts.map +1 -0
- package/dist/index.d.ts +31 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +36594 -0
- package/dist/internal/machines/index.d.ts +10 -0
- package/dist/internal/machines/index.d.ts.map +1 -0
- package/dist/internal/machines/machine-runner.d.ts +18 -0
- package/dist/internal/machines/machine-runner.d.ts.map +1 -0
- package/dist/internal/machines/types.d.ts +48 -0
- package/dist/internal/machines/types.d.ts.map +1 -0
- package/dist/internal/vuln-checker/analyzers/dependency-analyzer.d.ts +24 -0
- package/dist/internal/vuln-checker/analyzers/dependency-analyzer.d.ts.map +1 -0
- package/dist/internal/vuln-checker/analyzers/rls-analyzer.d.ts +28 -0
- package/dist/internal/vuln-checker/analyzers/rls-analyzer.d.ts.map +1 -0
- package/dist/internal/vuln-checker/analyzers/secret-analyzer.d.ts +26 -0
- package/dist/internal/vuln-checker/analyzers/secret-analyzer.d.ts.map +1 -0
- package/dist/internal/vuln-checker/analyzers/typescript-analyzer.d.ts +25 -0
- package/dist/internal/vuln-checker/analyzers/typescript-analyzer.d.ts.map +1 -0
- package/dist/internal/vuln-checker/config/loader.d.ts +16 -0
- package/dist/internal/vuln-checker/config/loader.d.ts.map +1 -0
- package/dist/internal/vuln-checker/constants.d.ts +75 -0
- package/dist/internal/vuln-checker/constants.d.ts.map +1 -0
- package/dist/internal/vuln-checker/ignore/matcher.d.ts +23 -0
- package/dist/internal/vuln-checker/ignore/matcher.d.ts.map +1 -0
- package/dist/internal/vuln-checker/index.d.ts +45 -0
- package/dist/internal/vuln-checker/index.d.ts.map +1 -0
- package/dist/internal/vuln-checker/reporters/console-reporter.d.ts +9 -0
- package/dist/internal/vuln-checker/reporters/console-reporter.d.ts.map +1 -0
- package/dist/internal/vuln-checker/reporters/json-reporter.d.ts +9 -0
- package/dist/internal/vuln-checker/reporters/json-reporter.d.ts.map +1 -0
- package/dist/internal/vuln-checker/reporters/markdown-reporter.d.ts +9 -0
- package/dist/internal/vuln-checker/reporters/markdown-reporter.d.ts.map +1 -0
- package/dist/internal/vuln-checker/reporters/sarif-reporter.d.ts +12 -0
- package/dist/internal/vuln-checker/reporters/sarif-reporter.d.ts.map +1 -0
- package/dist/internal/vuln-checker/types.d.ts +149 -0
- package/dist/internal/vuln-checker/types.d.ts.map +1 -0
- package/dist/notifiers/desktop-notifier.d.ts +34 -0
- package/dist/notifiers/desktop-notifier.d.ts.map +1 -0
- package/dist/schemas/ci.config.schema.json +206 -0
- package/dist/ui/components/db-panel.d.ts +12 -0
- package/dist/ui/components/db-panel.d.ts.map +1 -0
- package/dist/ui/components/status-bar.d.ts +6 -0
- package/dist/ui/components/status-bar.d.ts.map +1 -0
- package/dist/ui/components/test-panel.d.ts +12 -0
- package/dist/ui/components/test-panel.d.ts.map +1 -0
- package/dist/ui/dashboard.d.ts +20 -0
- package/dist/ui/dashboard.d.ts.map +1 -0
- package/dist/ui/index.d.ts +16 -0
- package/dist/ui/index.d.ts.map +1 -0
- package/dist/utils/config-loader.d.ts +92 -0
- package/dist/utils/config-loader.d.ts.map +1 -0
- package/dist/utils/config-updater.d.ts +44 -0
- package/dist/utils/config-updater.d.ts.map +1 -0
- package/dist/utils/diagnostics.d.ts +44 -0
- package/dist/utils/diagnostics.d.ts.map +1 -0
- package/dist/utils/dotenvx.d.ts +33 -0
- package/dist/utils/dotenvx.d.ts.map +1 -0
- package/dist/utils/execution-plan.d.ts +43 -0
- package/dist/utils/execution-plan.d.ts.map +1 -0
- package/dist/utils/help-system.d.ts +34 -0
- package/dist/utils/help-system.d.ts.map +1 -0
- package/dist/utils/license/admin-auth.d.ts +39 -0
- package/dist/utils/license/admin-auth.d.ts.map +1 -0
- package/dist/utils/license/allowlist-checker.d.ts +56 -0
- package/dist/utils/license/allowlist-checker.d.ts.map +1 -0
- package/dist/utils/license/ci-detector.d.ts +43 -0
- package/dist/utils/license/ci-detector.d.ts.map +1 -0
- package/dist/utils/license/index.d.ts +49 -0
- package/dist/utils/license/index.d.ts.map +1 -0
- package/dist/utils/license/owner-resolver.d.ts +35 -0
- package/dist/utils/license/owner-resolver.d.ts.map +1 -0
- package/dist/utils/license/types.d.ts +42 -0
- package/dist/utils/license/types.d.ts.map +1 -0
- package/dist/utils/license/validate-owner.d.ts +33 -0
- package/dist/utils/license/validate-owner.d.ts.map +1 -0
- package/dist/utils/port-allocator.d.ts +59 -0
- package/dist/utils/port-allocator.d.ts.map +1 -0
- package/dist/utils/secure-exec.d.ts +95 -0
- package/dist/utils/secure-exec.d.ts.map +1 -0
- package/dist/utils/template-fetcher.d.ts +63 -0
- package/dist/utils/template-fetcher.d.ts.map +1 -0
- package/dist/utils/type-guards.d.ts +25 -0
- package/dist/utils/type-guards.d.ts.map +1 -0
- package/dist/utils/vercel-project.d.ts +38 -0
- package/dist/utils/vercel-project.d.ts.map +1 -0
- package/dist/utils/workspace-detector.d.ts +71 -0
- package/dist/utils/workspace-detector.d.ts.map +1 -0
- package/dist/validators/risk-detector.d.ts +38 -0
- package/dist/validators/risk-detector.d.ts.map +1 -0
- package/dist/validators/schema-validator.d.ts +20 -0
- package/dist/validators/schema-validator.d.ts.map +1 -0
- package/dist/version.d.ts +13 -0
- package/dist/version.d.ts.map +1 -0
- package/dist/watchers/schema-watcher.d.ts +61 -0
- package/dist/watchers/schema-watcher.d.ts.map +1 -0
- package/dist/watchers/test-watcher.d.ts +57 -0
- package/dist/watchers/test-watcher.d.ts.map +1 -0
- package/package.json +74 -0
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AI HINT: GitHub PR Comment Actor
|
|
3
|
+
*
|
|
4
|
+
* Purpose: Post/upsert PR comments, add labels
|
|
5
|
+
* Pattern: Fine-grained actor for single step
|
|
6
|
+
*
|
|
7
|
+
* Used in ci-pr-local mode (not ci-local):
|
|
8
|
+
* - Post CI results to PR
|
|
9
|
+
*
|
|
10
|
+
* Features:
|
|
11
|
+
* - Upsert (find existing by marker, update or create)
|
|
12
|
+
* - Add labels
|
|
13
|
+
* - Build workflow run URL
|
|
14
|
+
*/
|
|
15
|
+
import { buildWorkflowRunUrl, type RepoContext, resolveRepoContextFromEnv } from '../../../utils/github-api.js';
|
|
16
|
+
export interface UpsertCommentInput {
|
|
17
|
+
repo?: RepoContext;
|
|
18
|
+
issueNumber: number;
|
|
19
|
+
marker: string;
|
|
20
|
+
body: string;
|
|
21
|
+
}
|
|
22
|
+
export interface UpsertCommentOutput {
|
|
23
|
+
success: boolean;
|
|
24
|
+
error?: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Upsert a PR comment (find by marker, update or create).
|
|
28
|
+
*
|
|
29
|
+
* @param input - Comment data
|
|
30
|
+
* @returns Success indicator
|
|
31
|
+
*/
|
|
32
|
+
export declare const upsertCommentActor: import("xstate").PromiseActorLogic<UpsertCommentOutput, UpsertCommentInput, import("xstate").EventObject>;
|
|
33
|
+
export interface AddLabelsInput {
|
|
34
|
+
repo?: RepoContext;
|
|
35
|
+
issueNumber: number;
|
|
36
|
+
labels: string[];
|
|
37
|
+
}
|
|
38
|
+
export interface AddLabelsOutput {
|
|
39
|
+
success: boolean;
|
|
40
|
+
error?: string;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* Add labels to a PR/issue.
|
|
44
|
+
*
|
|
45
|
+
* @param input - Label data
|
|
46
|
+
* @returns Success indicator
|
|
47
|
+
*/
|
|
48
|
+
export declare const addLabelsActor: import("xstate").PromiseActorLogic<AddLabelsOutput, AddLabelsInput, import("xstate").EventObject>;
|
|
49
|
+
export interface FindPrInput {
|
|
50
|
+
repo?: RepoContext;
|
|
51
|
+
sha: string;
|
|
52
|
+
}
|
|
53
|
+
export interface FindPrOutput {
|
|
54
|
+
prNumber: number | null;
|
|
55
|
+
error?: string;
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* Find PR number for a commit SHA.
|
|
59
|
+
*
|
|
60
|
+
* @param input - Commit SHA
|
|
61
|
+
* @returns PR number if found
|
|
62
|
+
*/
|
|
63
|
+
export declare const findPrActor: import("xstate").PromiseActorLogic<FindPrOutput, FindPrInput, import("xstate").EventObject>;
|
|
64
|
+
export { buildWorkflowRunUrl, resolveRepoContextFromEnv };
|
|
65
|
+
export type { RepoContext };
|
|
66
|
+
//# sourceMappingURL=github.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"github.d.ts","sourceRoot":"","sources":["../../../../../../src/commands/ci/machine/actors/finalize/github.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAGH,OAAO,EAEL,mBAAmB,EAEnB,KAAK,WAAW,EAChB,yBAAyB,EAE1B,MAAM,8BAA8B,CAAC;AAEtC,MAAM,WAAW,kBAAkB;IACjC,IAAI,CAAC,EAAE,WAAW,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,mBAAmB;IAClC,OAAO,EAAE,OAAO,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;;;GAKG;AACH,eAAO,MAAM,kBAAkB,2GAwB9B,CAAC;AAEF,MAAM,WAAW,cAAc;IAC7B,IAAI,CAAC,EAAE,WAAW,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,EAAE,CAAC;CAClB;AAED,MAAM,WAAW,eAAe;IAC9B,OAAO,EAAE,OAAO,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;;;GAKG;AACH,eAAO,MAAM,cAAc,mGAe1B,CAAC;AAEF,MAAM,WAAW,WAAW;IAC1B,IAAI,CAAC,EAAE,WAAW,CAAC;IACnB,GAAG,EAAE,MAAM,CAAC;CACb;AAED,MAAM,WAAW,YAAY;IAC3B,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;;;GAKG;AACH,eAAO,MAAM,WAAW,6FAevB,CAAC;AAGF,OAAO,EAAE,mBAAmB,EAAE,yBAAyB,EAAE,CAAC;AAG1D,YAAY,EAAE,WAAW,EAAE,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AI HINT: Finalize Actors Barrel Export
|
|
3
|
+
*
|
|
4
|
+
* Purpose: Re-export all finalize-related actors
|
|
5
|
+
* Pattern: Barrel export for clean imports
|
|
6
|
+
*/
|
|
7
|
+
export { type AddLabelsInput, type AddLabelsOutput, addLabelsActor, buildWorkflowRunUrl, type FindPrInput, type FindPrOutput, findPrActor, type RepoContext, resolveRepoContextFromEnv, type UpsertCommentInput, type UpsertCommentOutput, upsertCommentActor, } from './github.js';
|
|
8
|
+
export { type CiLayerStatus, CiLayerStatusSchema, type CiStepStatus, CiStepStatusSchema, type CiSummary, CiSummarySchema, type LayerBlockingLevel, LayerBlockingLevelSchema, type WriteSummaryInput, type WriteSummaryOutput, writeSummaryActor, } from './summary.js';
|
|
9
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/commands/ci/machine/actors/finalize/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EACL,KAAK,cAAc,EACnB,KAAK,eAAe,EACpB,cAAc,EACd,mBAAmB,EACnB,KAAK,WAAW,EAChB,KAAK,YAAY,EACjB,WAAW,EACX,KAAK,WAAW,EAChB,yBAAyB,EACzB,KAAK,kBAAkB,EACvB,KAAK,mBAAmB,EACxB,kBAAkB,GACnB,MAAM,aAAa,CAAC;AACrB,OAAO,EACL,KAAK,aAAa,EAClB,mBAAmB,EACnB,KAAK,YAAY,EACjB,kBAAkB,EAClB,KAAK,SAAS,EACd,eAAe,EACf,KAAK,kBAAkB,EACvB,wBAAwB,EACxB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,iBAAiB,GAClB,MAAM,cAAc,CAAC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AI HINT: CI Summary Writer Actor
|
|
3
|
+
*
|
|
4
|
+
* Purpose: Write structured CI summary to .runa/tmp/ci-summary.json
|
|
5
|
+
* Pattern: Fine-grained actor for single step
|
|
6
|
+
*
|
|
7
|
+
* Used in ci-pr-local mode (not ci-local):
|
|
8
|
+
* - Write summary for PR
|
|
9
|
+
*
|
|
10
|
+
* Contract:
|
|
11
|
+
* - Always writes .runa/tmp/ci-summary.json
|
|
12
|
+
* - Shape is stable for AI + tooling consumption
|
|
13
|
+
*/
|
|
14
|
+
import { type CiSummary } from '../../../utils/ci-summary.js';
|
|
15
|
+
export interface WriteSummaryInput {
|
|
16
|
+
cwd?: string;
|
|
17
|
+
summary: CiSummary;
|
|
18
|
+
}
|
|
19
|
+
export interface WriteSummaryOutput {
|
|
20
|
+
filePath: string;
|
|
21
|
+
error?: string;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Write CI summary to file.
|
|
25
|
+
*
|
|
26
|
+
* @param input - Summary data
|
|
27
|
+
* @returns Path to written file
|
|
28
|
+
*/
|
|
29
|
+
export declare const writeSummaryActor: import("xstate").PromiseActorLogic<WriteSummaryOutput, WriteSummaryInput, import("xstate").EventObject>;
|
|
30
|
+
export type { CiSummary };
|
|
31
|
+
export { type CiLayerStatus, CiLayerStatusSchema, type CiStepStatus, CiStepStatusSchema, CiSummarySchema, type LayerBlockingLevel, LayerBlockingLevelSchema, } from '../../../utils/ci-summary.js';
|
|
32
|
+
//# sourceMappingURL=summary.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"summary.d.ts","sourceRoot":"","sources":["../../../../../../src/commands/ci/machine/actors/finalize/summary.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAGH,OAAO,EAAE,KAAK,SAAS,EAAkB,MAAM,8BAA8B,CAAC;AAE9E,MAAM,WAAW,iBAAiB;IAChC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,SAAS,CAAC;CACpB;AAED,MAAM,WAAW,kBAAkB;IACjC,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;;;GAKG;AACH,eAAO,MAAM,iBAAiB,yGAc7B,CAAC;AAGF,YAAY,EAAE,SAAS,EAAE,CAAC;AAC1B,OAAO,EACL,KAAK,aAAa,EAClB,mBAAmB,EACnB,KAAK,YAAY,EACjB,kBAAkB,EAClB,eAAe,EACf,KAAK,kBAAkB,EACvB,wBAAwB,GACzB,MAAM,8BAA8B,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AI HINT: CI Machine Actors Barrel Export
|
|
3
|
+
*
|
|
4
|
+
* Purpose: Central export for all CI actors
|
|
5
|
+
* Pattern: Barrel export for clean imports
|
|
6
|
+
*
|
|
7
|
+
* Actor Categories:
|
|
8
|
+
* - db/*: Database operations (reset, sync, seeds, roles, pgtap, pull-production)
|
|
9
|
+
* - build/*: Build operations (static-checks, app-build, app-start, playwright)
|
|
10
|
+
* - test/*: Test operations (capabilities, run-layers)
|
|
11
|
+
* - finalize/*: Finalization (summary, github)
|
|
12
|
+
*/
|
|
13
|
+
export * from './build/index.js';
|
|
14
|
+
export * from './db/index.js';
|
|
15
|
+
export * from './finalize/index.js';
|
|
16
|
+
export * from './test/index.js';
|
|
17
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/commands/ci/machine/actors/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAGH,cAAc,kBAAkB,CAAC;AAEjC,cAAc,eAAe,CAAC;AAE9B,cAAc,qBAAqB,CAAC;AAEpC,cAAc,iBAAiB,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AI HINT: Setup Actors Barrel Export
|
|
3
|
+
*
|
|
4
|
+
* Purpose: Re-export all setup-related actors
|
|
5
|
+
* Pattern: Barrel export for clean imports
|
|
6
|
+
*/
|
|
7
|
+
export { type LocalSetupInput, type LocalSetupOutput, localSetupActor } from './local.js';
|
|
8
|
+
export { createErrorOutput, detectApp, detectRepoKind, executePrSetupBase, type PrSetupBaseInput, type PrSetupBaseOutput, resolveBranchName, resolvePolicy, resolvePrContext, type SupabaseEnvResult, } from './pr-common.js';
|
|
9
|
+
export { type PrLocalSetupInput, type PrLocalSetupOutput, prLocalSetupActor } from './pr-local.js';
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/commands/ci/machine/actors/setup/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,KAAK,eAAe,EAAE,KAAK,gBAAgB,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AAE1F,OAAO,EACL,iBAAiB,EACjB,SAAS,EACT,cAAc,EACd,kBAAkB,EAClB,KAAK,gBAAgB,EACrB,KAAK,iBAAiB,EACtB,iBAAiB,EACjB,aAAa,EACb,gBAAgB,EAChB,KAAK,iBAAiB,GACvB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,KAAK,iBAAiB,EAAE,KAAK,kBAAkB,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AI HINT: CI Local Setup Actor
|
|
3
|
+
*
|
|
4
|
+
* Purpose: Setup for ci-local mode (standalone local simulation)
|
|
5
|
+
* Pattern: Fine-grained actor for single step
|
|
6
|
+
*
|
|
7
|
+
* Workflow:
|
|
8
|
+
* 1. Resolve repo root and tmp dir
|
|
9
|
+
* 2. Start local Supabase (if not running)
|
|
10
|
+
* 3. Resolve Supabase URLs
|
|
11
|
+
* 4. Parse layer selection
|
|
12
|
+
*
|
|
13
|
+
* Used only in ci-local mode (runa ci local).
|
|
14
|
+
*/
|
|
15
|
+
export interface LocalSetupInput {
|
|
16
|
+
targetDir?: string;
|
|
17
|
+
layer?: string;
|
|
18
|
+
verbose?: boolean;
|
|
19
|
+
/** Database URL (captured at entry point, fallback to default) */
|
|
20
|
+
databaseUrl?: string;
|
|
21
|
+
/** Production database URL for schema pull (captured at entry point) */
|
|
22
|
+
productionDatabaseUrl?: string;
|
|
23
|
+
}
|
|
24
|
+
export interface LocalSetupOutput {
|
|
25
|
+
repoRoot: string;
|
|
26
|
+
tmpDir: string;
|
|
27
|
+
databaseUrl: string;
|
|
28
|
+
productionUrl: string | undefined;
|
|
29
|
+
supabaseUrl: string;
|
|
30
|
+
anonKey: string;
|
|
31
|
+
layers: number[];
|
|
32
|
+
error?: string;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Setup for ci-local mode.
|
|
36
|
+
*
|
|
37
|
+
* @param input - Setup parameters
|
|
38
|
+
* @returns Resolved environment
|
|
39
|
+
*/
|
|
40
|
+
export declare const localSetupActor: import("xstate").PromiseActorLogic<LocalSetupOutput, LocalSetupInput, import("xstate").EventObject>;
|
|
41
|
+
//# sourceMappingURL=local.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"local.d.ts","sourceRoot":"","sources":["../../../../../../src/commands/ci/machine/actors/setup/local.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAUH,MAAM,WAAW,eAAe;IAC9B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,kEAAkE;IAClE,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,wEAAwE;IACxE,qBAAqB,CAAC,EAAE,MAAM,CAAC;CAChC;AAED,MAAM,WAAW,gBAAgB;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,GAAG,SAAS,CAAC;IAClC,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAiBD;;;;;GAKG;AACH,eAAO,MAAM,eAAe,qGA6C3B,CAAC"}
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AI HINT: CI PR Common Setup Utilities
|
|
3
|
+
*
|
|
4
|
+
* Purpose: Shared utilities for ci-pr-local setup
|
|
5
|
+
* Pattern: Pure utility functions for PR context resolution
|
|
6
|
+
*
|
|
7
|
+
* Environment Capture Pattern:
|
|
8
|
+
* - All environment values are captured at entry points (ci-pr.ts, ci-local.ts)
|
|
9
|
+
* - Actors receive values via input, NOT by reading process.env directly
|
|
10
|
+
* - This makes the code testable and environment-independent
|
|
11
|
+
*
|
|
12
|
+
* Exports:
|
|
13
|
+
* - resolvePrContext: Extract PR info from input (captured at entry)
|
|
14
|
+
* - resolvePolicy: Resolve CI policy from config or defaults
|
|
15
|
+
* - detectApp: Detect app configuration for E2E tests
|
|
16
|
+
*/
|
|
17
|
+
import type { CiPrPolicy, DetectedApp, PrContext, RepoKind } from '../../types.js';
|
|
18
|
+
/**
|
|
19
|
+
* Input for resolving PR context (captured at entry point).
|
|
20
|
+
*/
|
|
21
|
+
export interface PrContextInput {
|
|
22
|
+
githubRef?: string;
|
|
23
|
+
githubEventAction?: string;
|
|
24
|
+
githubSha?: string;
|
|
25
|
+
githubBaseRef?: string;
|
|
26
|
+
githubHeadRef?: string;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Resolve PR context from input (captured at entry point).
|
|
30
|
+
*
|
|
31
|
+
* @param input - GitHub context captured at CLI entry point
|
|
32
|
+
* @returns Resolved PR context
|
|
33
|
+
*/
|
|
34
|
+
export declare function resolvePrContext(input: PrContextInput): PrContext;
|
|
35
|
+
/**
|
|
36
|
+
* Resolve CI policy from config or defaults.
|
|
37
|
+
*/
|
|
38
|
+
export declare function resolvePolicy(_config: unknown, _repoKind: RepoKind): CiPrPolicy;
|
|
39
|
+
/**
|
|
40
|
+
* Detect repo kind from directory structure.
|
|
41
|
+
*/
|
|
42
|
+
export declare function detectRepoKind(repoRoot: string): RepoKind;
|
|
43
|
+
/**
|
|
44
|
+
* Optional config override for app detection.
|
|
45
|
+
* Loaded from runa.config.ts app section.
|
|
46
|
+
*
|
|
47
|
+
* Note: Port is NOT in runa.config.ts app schema.
|
|
48
|
+
* Port is always auto-detected from package.json scripts.
|
|
49
|
+
* The port field here is for programmatic override only.
|
|
50
|
+
*/
|
|
51
|
+
export interface AppConfigOverride {
|
|
52
|
+
/** App directory from runa.config.ts (relative path) */
|
|
53
|
+
directory?: string;
|
|
54
|
+
/** Port override (programmatic only, not from config file) */
|
|
55
|
+
port?: number;
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* Detect app configuration for E2E tests.
|
|
59
|
+
*
|
|
60
|
+
* Detection strategy (config-first, then auto-detect):
|
|
61
|
+
* 1. If runa.config.ts specifies app.directory and it exists → use it (user intent)
|
|
62
|
+
* 2. Scan apps/* for known framework configs (Next.js, Vite, Remix, etc.)
|
|
63
|
+
* 3. Scan apps/* for any valid app (package.json fallback)
|
|
64
|
+
* 4. Check root for known framework app (single-app repo)
|
|
65
|
+
* 5. Check root for package.json (custom setup)
|
|
66
|
+
* 6. Auto-detect port from package.json scripts (unless overridden)
|
|
67
|
+
*
|
|
68
|
+
* If detection fails but apps/ contains valid apps,
|
|
69
|
+
* the error context will include suggestions.
|
|
70
|
+
*
|
|
71
|
+
* @param repoRoot - Repository root directory
|
|
72
|
+
* @param configOverride - Optional config from runa.config.ts
|
|
73
|
+
*/
|
|
74
|
+
export declare function detectApp(repoRoot: string, configOverride?: AppConfigOverride): DetectedApp | null;
|
|
75
|
+
/**
|
|
76
|
+
* Get suggestions for app directory configuration.
|
|
77
|
+
* Called when detectApp returns null to provide helpful error context.
|
|
78
|
+
*/
|
|
79
|
+
export declare function getAppDetectionSuggestions(repoRoot: string): string[];
|
|
80
|
+
/**
|
|
81
|
+
* Resolve branch name for Branch DB.
|
|
82
|
+
*
|
|
83
|
+
* Priority order:
|
|
84
|
+
* 1. Explicit override
|
|
85
|
+
* 2. PR number (pr-{number} format) - PREFERRED for Branch DB consistency
|
|
86
|
+
* 3. Git head branch (fallback)
|
|
87
|
+
* 4. SHA-based name (last resort)
|
|
88
|
+
*/
|
|
89
|
+
export declare function resolveBranchName(prContext: PrContext, override?: string): string | null;
|
|
90
|
+
/**
|
|
91
|
+
* Base input for PR setup (shared fields).
|
|
92
|
+
*/
|
|
93
|
+
export interface PrSetupBaseInput {
|
|
94
|
+
targetDir?: string;
|
|
95
|
+
config?: unknown;
|
|
96
|
+
verbose?: boolean;
|
|
97
|
+
layers?: number[];
|
|
98
|
+
githubRef?: string;
|
|
99
|
+
githubEventAction?: string;
|
|
100
|
+
githubSha?: string;
|
|
101
|
+
githubBaseRef?: string;
|
|
102
|
+
githubHeadRef?: string;
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* Base output for PR setup (shared fields).
|
|
106
|
+
*/
|
|
107
|
+
export interface PrSetupBaseOutput {
|
|
108
|
+
repoRoot: string;
|
|
109
|
+
tmpDir: string;
|
|
110
|
+
repoKind: RepoKind;
|
|
111
|
+
prContext: PrContext;
|
|
112
|
+
policy: CiPrPolicy;
|
|
113
|
+
app: DetectedApp | null;
|
|
114
|
+
databaseUrl: string;
|
|
115
|
+
supabaseUrl: string;
|
|
116
|
+
anonKey: string;
|
|
117
|
+
layers: number[];
|
|
118
|
+
error?: string;
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* Supabase environment resolution result.
|
|
122
|
+
*/
|
|
123
|
+
export interface SupabaseEnvResult {
|
|
124
|
+
databaseUrl: string;
|
|
125
|
+
supabaseUrl: string;
|
|
126
|
+
anonKey: string;
|
|
127
|
+
}
|
|
128
|
+
/**
|
|
129
|
+
* Create error output for PR setup.
|
|
130
|
+
*/
|
|
131
|
+
export declare function createErrorOutput<T extends PrSetupBaseOutput>(repoRoot: string, error: unknown, extraFields?: Partial<T>): T;
|
|
132
|
+
/**
|
|
133
|
+
* Execute common PR setup steps.
|
|
134
|
+
* Returns base context or throws on failure.
|
|
135
|
+
*/
|
|
136
|
+
export declare function executePrSetupBase(input: PrSetupBaseInput, ensureTmpDir: (root: string) => Promise<string>): Promise<{
|
|
137
|
+
repoRoot: string;
|
|
138
|
+
tmpDir: string;
|
|
139
|
+
repoKind: RepoKind;
|
|
140
|
+
prContext: PrContext;
|
|
141
|
+
policy: CiPrPolicy;
|
|
142
|
+
app: DetectedApp | null;
|
|
143
|
+
layers: number[];
|
|
144
|
+
}>;
|
|
145
|
+
//# sourceMappingURL=pr-common.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pr-common.d.ts","sourceRoot":"","sources":["../../../../../../src/commands/ci/machine/actors/setup/pr-common.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AAKH,OAAO,KAAK,EAAE,UAAU,EAAE,WAAW,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAEnF;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,cAAc,GAAG,SAAS,CAWjE;AAED;;GAEG;AACH,wBAAgB,aAAa,CAAC,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,QAAQ,GAAG,UAAU,CAQ/E;AAED;;GAEG;AACH,wBAAgB,cAAc,CAAC,QAAQ,EAAE,MAAM,GAAG,QAAQ,CAmBzD;AAqND;;;;;;;GAOG;AACH,MAAM,WAAW,iBAAiB;IAChC,wDAAwD;IACxD,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,8DAA8D;IAC9D,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED;;;;;;;;;;;;;;;;GAgBG;AACH,wBAAgB,SAAS,CACvB,QAAQ,EAAE,MAAM,EAChB,cAAc,CAAC,EAAE,iBAAiB,GACjC,WAAW,GAAG,IAAI,CAwCpB;AAED;;;GAGG;AACH,wBAAgB,0BAA0B,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,CAcrE;AAED;;;;;;;;GAQG;AACH,wBAAgB,iBAAiB,CAAC,SAAS,EAAE,SAAS,EAAE,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAMxF;AAMD;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAElB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,QAAQ,CAAC;IACnB,SAAS,EAAE,SAAS,CAAC;IACrB,MAAM,EAAE,UAAU,CAAC;IACnB,GAAG,EAAE,WAAW,GAAG,IAAI,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;CACjB;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,CAAC,SAAS,iBAAiB,EAC3D,QAAQ,EAAE,MAAM,EAChB,KAAK,EAAE,OAAO,EACd,WAAW,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,GACvB,CAAC,CAmBH;AAED;;;GAGG;AACH,wBAAsB,kBAAkB,CACtC,KAAK,EAAE,gBAAgB,EACvB,YAAY,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,CAAC,GAC9C,OAAO,CAAC;IACT,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,QAAQ,CAAC;IACnB,SAAS,EAAE,SAAS,CAAC;IACrB,MAAM,EAAE,UAAU,CAAC;IACnB,GAAG,EAAE,WAAW,GAAG,IAAI,CAAC;IACxB,MAAM,EAAE,MAAM,EAAE,CAAC;CAClB,CAAC,CA2BD"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AI HINT: CI PR Local Setup Actor
|
|
3
|
+
*
|
|
4
|
+
* Purpose: Setup for ci-pr-local mode (PR CI with local Supabase)
|
|
5
|
+
* Pattern: Uses common setup factory + local Supabase resolver
|
|
6
|
+
*/
|
|
7
|
+
import type { PrSetupBaseInput, PrSetupBaseOutput } from './pr-common.js';
|
|
8
|
+
export interface PrLocalSetupInput extends PrSetupBaseInput {
|
|
9
|
+
databaseUrl?: string;
|
|
10
|
+
}
|
|
11
|
+
export interface PrLocalSetupOutput extends PrSetupBaseOutput {
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Setup for ci-pr-local mode.
|
|
15
|
+
*/
|
|
16
|
+
export declare const prLocalSetupActor: import("xstate").PromiseActorLogic<PrLocalSetupOutput, PrLocalSetupInput, import("xstate").EventObject>;
|
|
17
|
+
//# sourceMappingURL=pr-local.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pr-local.d.ts","sourceRoot":"","sources":["../../../../../../src/commands/ci/machine/actors/setup/pr-local.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AASH,OAAO,KAAK,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAG1E,MAAM,WAAW,iBAAkB,SAAQ,gBAAgB;IACzD,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,kBAAmB,SAAQ,iBAAiB;CAAG;AAEhE;;GAEG;AACH,eAAO,MAAM,iBAAiB,yGAmC7B,CAAC"}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AI HINT: Capabilities Detection Actor
|
|
3
|
+
*
|
|
4
|
+
* Purpose: Detect CI environment capabilities for test gating
|
|
5
|
+
* Pattern: Fine-grained actor for single step
|
|
6
|
+
*
|
|
7
|
+
* Only used in ci-pr-local mode (not ci-local):
|
|
8
|
+
* - Detect DB, E2E, preview capabilities
|
|
9
|
+
* - Detect layer content (machines, tables, API routes, pages)
|
|
10
|
+
*
|
|
11
|
+
* Capabilities detected:
|
|
12
|
+
* - db.postgres, db.schemaApplied, db.rlsEnabled
|
|
13
|
+
* - db.appCanSelectSomeTable, db.appIsAuthenticatedMember
|
|
14
|
+
* - ui.contractReady
|
|
15
|
+
* - e2e.generatedLayer4Present, e2e.generatedLayer4HasUnknown
|
|
16
|
+
* - e2e.previewReachable
|
|
17
|
+
*
|
|
18
|
+
* Layer content detection:
|
|
19
|
+
* - L1: XState machines
|
|
20
|
+
* - L2: Domain tables (SQL)
|
|
21
|
+
* - L3: API routes (Hono)
|
|
22
|
+
* - L4: User-facing pages
|
|
23
|
+
*/
|
|
24
|
+
import { type CiCapabilities, type CiCapability } from '../../../commands/ci-pr-capabilities.js';
|
|
25
|
+
import { type LayerContentResult } from '../../../commands/ci-layer-content.js';
|
|
26
|
+
export interface CapabilitiesInput {
|
|
27
|
+
repoRoot: string;
|
|
28
|
+
tmpDir: string;
|
|
29
|
+
databaseUrlApp: string;
|
|
30
|
+
baseUrl: string | null;
|
|
31
|
+
/** Selected layers for content detection */
|
|
32
|
+
selectedLayers: number[];
|
|
33
|
+
}
|
|
34
|
+
export interface CapabilitiesOutput {
|
|
35
|
+
detected: CiCapabilities;
|
|
36
|
+
/** Layer content detection result */
|
|
37
|
+
layerContent: LayerContentResult;
|
|
38
|
+
error?: string;
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Detect CI capabilities and layer content.
|
|
42
|
+
*
|
|
43
|
+
* @param input - Detection parameters
|
|
44
|
+
* @returns Detected capabilities and layer content
|
|
45
|
+
*/
|
|
46
|
+
export declare const capabilitiesActor: import("xstate").PromiseActorLogic<CapabilitiesOutput, CapabilitiesInput, import("xstate").EventObject>;
|
|
47
|
+
export interface AssertCapabilitiesInput {
|
|
48
|
+
config: unknown;
|
|
49
|
+
repoKind: 'monorepo' | 'pj-repo' | 'unknown';
|
|
50
|
+
layer: 3 | 4;
|
|
51
|
+
detected: CiCapabilities;
|
|
52
|
+
}
|
|
53
|
+
export interface AssertCapabilitiesOutput {
|
|
54
|
+
passed: boolean;
|
|
55
|
+
required: CiCapability[];
|
|
56
|
+
missing: CiCapability[];
|
|
57
|
+
error?: string;
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* Assert required capabilities for a layer.
|
|
61
|
+
*
|
|
62
|
+
* @param input - Assertion parameters
|
|
63
|
+
* @returns Result indicating pass/fail
|
|
64
|
+
*/
|
|
65
|
+
export declare const assertCapabilitiesActor: import("xstate").PromiseActorLogic<AssertCapabilitiesOutput, AssertCapabilitiesInput, import("xstate").EventObject>;
|
|
66
|
+
//# sourceMappingURL=capabilities.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"capabilities.d.ts","sourceRoot":"","sources":["../../../../../../src/commands/ci/machine/actors/test/capabilities.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;GAsBG;AAGH,OAAO,EAEL,KAAK,cAAc,EACnB,KAAK,YAAY,EAGlB,MAAM,yCAAyC,CAAC;AACjD,OAAO,EAAsB,KAAK,kBAAkB,EAAE,MAAM,uCAAuC,CAAC;AAEpG,MAAM,WAAW,iBAAiB;IAChC,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,cAAc,EAAE,MAAM,CAAC;IACvB,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB,4CAA4C;IAC5C,cAAc,EAAE,MAAM,EAAE,CAAC;CAC1B;AAED,MAAM,WAAW,kBAAkB;IACjC,QAAQ,EAAE,cAAc,CAAC;IACzB,qCAAqC;IACrC,YAAY,EAAE,kBAAkB,CAAC;IACjC,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;;;GAKG;AACH,eAAO,MAAM,iBAAiB,yGAsD7B,CAAC;AAEF,MAAM,WAAW,uBAAuB;IACtC,MAAM,EAAE,OAAO,CAAC;IAChB,QAAQ,EAAE,UAAU,GAAG,SAAS,GAAG,SAAS,CAAC;IAC7C,KAAK,EAAE,CAAC,GAAG,CAAC,CAAC;IACb,QAAQ,EAAE,cAAc,CAAC;CAC1B;AAED,MAAM,WAAW,wBAAwB;IACvC,MAAM,EAAE,OAAO,CAAC;IAChB,QAAQ,EAAE,YAAY,EAAE,CAAC;IACzB,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;;;GAKG;AACH,eAAO,MAAM,uBAAuB,qHA6BnC,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AI HINT: Test Actors Barrel Export
|
|
3
|
+
*
|
|
4
|
+
* Purpose: Re-export all test-related actors
|
|
5
|
+
* Pattern: Barrel export for clean imports
|
|
6
|
+
*/
|
|
7
|
+
export { type AssertCapabilitiesInput, type AssertCapabilitiesOutput, assertCapabilitiesActor, type CapabilitiesInput, type CapabilitiesOutput, capabilitiesActor, } from './capabilities.js';
|
|
8
|
+
export { type LayerRunResult, type RunLayersInput, type RunLayersOutput, runLayersActor, } from './run-layers.js';
|
|
9
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/commands/ci/machine/actors/test/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EACL,KAAK,uBAAuB,EAC5B,KAAK,wBAAwB,EAC7B,uBAAuB,EACvB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,iBAAiB,GAClB,MAAM,mBAAmB,CAAC;AAE3B,OAAO,EACL,KAAK,cAAc,EACnB,KAAK,cAAc,EACnB,KAAK,eAAe,EACpB,cAAc,GACf,MAAM,iBAAiB,CAAC"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AI HINT: Test Layer Execution Actor
|
|
3
|
+
*
|
|
4
|
+
* Purpose: Run test layers in parallel with fail-fast support
|
|
5
|
+
* Pattern: Fine-grained actor for single step
|
|
6
|
+
*
|
|
7
|
+
* Used in all CI modes:
|
|
8
|
+
* - ci-local: Run layers 1-4 (based on config)
|
|
9
|
+
* - ci-pr-local: Run layers 1-4
|
|
10
|
+
*
|
|
11
|
+
* Features:
|
|
12
|
+
* - Process-based isolation per layer
|
|
13
|
+
* - Structured result files (not exit codes) for success determination
|
|
14
|
+
* - Fail-fast with proper process cleanup
|
|
15
|
+
* - Timeout handling with AbortController
|
|
16
|
+
*/
|
|
17
|
+
import { type LayerRunResult } from '../../../utils/test-parallel.js';
|
|
18
|
+
export interface RunLayersInput {
|
|
19
|
+
repoRoot: string;
|
|
20
|
+
tmpDir: string;
|
|
21
|
+
layers: number[];
|
|
22
|
+
baseUrl: string;
|
|
23
|
+
env: NodeJS.ProcessEnv;
|
|
24
|
+
playwrightWorkers?: number;
|
|
25
|
+
failFast?: boolean;
|
|
26
|
+
maxWaitSeconds?: number;
|
|
27
|
+
progressIntervalSeconds?: number;
|
|
28
|
+
}
|
|
29
|
+
export interface RunLayersOutput {
|
|
30
|
+
results: LayerRunResult[];
|
|
31
|
+
allPassed: boolean;
|
|
32
|
+
failedLayers: number[];
|
|
33
|
+
error?: string;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Run test layers in parallel.
|
|
37
|
+
*
|
|
38
|
+
* @param input - Execution parameters
|
|
39
|
+
* @returns Results for each layer
|
|
40
|
+
*/
|
|
41
|
+
export declare const runLayersActor: import("xstate").PromiseActorLogic<RunLayersOutput, RunLayersInput, import("xstate").EventObject>;
|
|
42
|
+
export type { LayerRunResult };
|
|
43
|
+
//# sourceMappingURL=run-layers.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"run-layers.d.ts","sourceRoot":"","sources":["../../../../../../src/commands/ci/machine/actors/test/run-layers.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AAGH,OAAO,EAAE,KAAK,cAAc,EAAuB,MAAM,iCAAiC,CAAC;AAE3F,MAAM,WAAW,cAAc;IAC7B,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,GAAG,EAAE,MAAM,CAAC,UAAU,CAAC;IACvB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,uBAAuB,CAAC,EAAE,MAAM,CAAC;CAClC;AAED,MAAM,WAAW,eAAe;IAC9B,OAAO,EAAE,cAAc,EAAE,CAAC;IAC1B,SAAS,EAAE,OAAO,CAAC;IACnB,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;;;GAKG;AACH,eAAO,MAAM,cAAc,mGAoD1B,CAAC;AAGF,YAAY,EAAE,cAAc,EAAE,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AI HINT: `runa ci local` - Unified Machine Implementation
|
|
3
|
+
*
|
|
4
|
+
* Purpose: Local CI simulation using unified XState machine
|
|
5
|
+
* - Resets local DB to clean slate (prevents enum collision)
|
|
6
|
+
* - Pulls production schema (no data)
|
|
7
|
+
* - Applies PR schema changes
|
|
8
|
+
* - Runs Layer 2 (pgTAP) and Layer 3 (API) tests
|
|
9
|
+
*
|
|
10
|
+
* Usage:
|
|
11
|
+
* - runa ci local # Full simulation (Layer 2,3)
|
|
12
|
+
* - runa ci local --layer 2 # Layer 2 only
|
|
13
|
+
* - runa ci local --layer 2,3,4 # Include E2E
|
|
14
|
+
* - runa ci local --check # Dry-run (no tests)
|
|
15
|
+
*/
|
|
16
|
+
import { Command } from 'commander';
|
|
17
|
+
export declare const ciLocalUnifiedCommand: Command;
|
|
18
|
+
//# sourceMappingURL=ci-local.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ci-local.d.ts","sourceRoot":"","sources":["../../../../../src/commands/ci/machine/commands/ci-local.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAIH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAgNpC,eAAO,MAAM,qBAAqB,SAe9B,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AI HINT: `runa ci pr` - Unified Machine Implementation
|
|
3
|
+
*
|
|
4
|
+
* Purpose: PR CI orchestration using unified XState machine
|
|
5
|
+
* - Uses local Docker Supabase for PR CI
|
|
6
|
+
* - Deterministic orchestration for PR CI
|
|
7
|
+
*
|
|
8
|
+
* Key Design:
|
|
9
|
+
* - Thin YAML: setup tools + `runa ci pr`
|
|
10
|
+
* - Uses flushAndExit() for guaranteed I/O completion before exit
|
|
11
|
+
*/
|
|
12
|
+
import { Command } from 'commander';
|
|
13
|
+
export declare const ciPrUnifiedCommand: Command;
|
|
14
|
+
//# sourceMappingURL=ci-pr.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ci-pr.d.ts","sourceRoot":"","sources":["../../../../../src/commands/ci/machine/commands/ci-pr.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAIH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAmbpC,eAAO,MAAM,kBAAkB,SAmBN,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AI HINT: Unified CI Commands Barrel Export
|
|
3
|
+
*
|
|
4
|
+
* Purpose: Re-export unified CI commands using the new machine architecture
|
|
5
|
+
* Pattern: Barrel export for clean imports
|
|
6
|
+
*
|
|
7
|
+
* Commands:
|
|
8
|
+
* - ciLocalUnifiedCommand: `runa ci local` (production schema + Layer 2,3 tests)
|
|
9
|
+
* - ciPrUnifiedCommand: `runa ci pr` (Branch DB or Local mode)
|
|
10
|
+
*/
|
|
11
|
+
export { ciLocalUnifiedCommand } from './ci-local.js';
|
|
12
|
+
export { ciPrUnifiedCommand } from './ci-pr.js';
|
|
13
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/commands/ci/machine/commands/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,EAAE,qBAAqB,EAAE,MAAM,eAAe,CAAC;AACtD,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AI HINT: Shared Machine Runner
|
|
3
|
+
*
|
|
4
|
+
* Purpose: Common logic for running CI machine across commands
|
|
5
|
+
* Pattern: Extract shared actor subscription/completion logic
|
|
6
|
+
*
|
|
7
|
+
* Progress Comments:
|
|
8
|
+
* - Automatically updates PR comment on state transitions
|
|
9
|
+
* - Uses state-to-step mapping for progress tracking
|
|
10
|
+
* - Fire-and-forget pattern (non-blocking)
|
|
11
|
+
*/
|
|
12
|
+
import type { CLILogger } from '@runa-ai/runa';
|
|
13
|
+
import { type CiSnapshot } from '../machine.js';
|
|
14
|
+
import type { CiInput, CiOutput, LayerResult } from '../types.js';
|
|
15
|
+
/**
|
|
16
|
+
* State change callback type.
|
|
17
|
+
*/
|
|
18
|
+
export type StateChangeHandler = (snapshot: CiSnapshot, prevState: string, logger: CLILogger) => void;
|
|
19
|
+
/**
|
|
20
|
+
* Run CI machine with common orchestration logic.
|
|
21
|
+
*/
|
|
22
|
+
export declare function runCiMachine(input: CiInput, logger: CLILogger, onStateChange?: StateChangeHandler): Promise<CiOutput>;
|
|
23
|
+
/**
|
|
24
|
+
* Format layer results for display.
|
|
25
|
+
*/
|
|
26
|
+
export declare function formatLayerResults(layers: Record<number, LayerResult>): {
|
|
27
|
+
passed: number;
|
|
28
|
+
failed: number;
|
|
29
|
+
lines: string[];
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* Flush stdout/stderr and exit with code.
|
|
33
|
+
* Ensures all output is written before process exits.
|
|
34
|
+
*/
|
|
35
|
+
export declare function flushAndExit(exitCode: number): Promise<never>;
|
|
36
|
+
//# sourceMappingURL=machine-runner.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"machine-runner.d.ts","sourceRoot":"","sources":["../../../../../src/commands/ci/machine/commands/machine-runner.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAS/C,OAAO,EAAE,KAAK,UAAU,EAAuC,MAAM,eAAe,CAAC;AACrF,OAAO,KAAK,EAAa,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAkR7E;;GAEG;AACH,MAAM,MAAM,kBAAkB,GAAG,CAC/B,QAAQ,EAAE,UAAU,EACpB,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,SAAS,KACd,IAAI,CAAC;AAEV;;GAEG;AACH,wBAAsB,YAAY,CAChC,KAAK,EAAE,OAAO,EACd,MAAM,EAAE,SAAS,EACjB,aAAa,CAAC,EAAE,kBAAkB,GACjC,OAAO,CAAC,QAAQ,CAAC,CA2CnB;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC,GAAG;IACvE,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,EAAE,CAAC;CACjB,CAWA;AAED;;;GAGG;AACH,wBAAsB,YAAY,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,KAAK,CAAC,CAUnE"}
|