@treeseed/sdk 0.10.28 → 0.12.4
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/README.md +213 -7
- package/dist/agent-capacity.d.ts +916 -0
- package/dist/agent-capacity.js +1600 -0
- package/dist/agent-tools.d.ts +37 -0
- package/dist/agent-tools.js +301 -0
- package/dist/api/app.d.ts +1 -1
- package/dist/api/auth/d1-database.d.ts +2 -2
- package/dist/api/auth/d1-provider.d.ts +4 -4
- package/dist/api/auth/d1-store.d.ts +2 -2
- package/dist/api/auth/memory-provider.d.ts +1 -1
- package/dist/api/auth/tokens.d.ts +1 -1
- package/dist/api/config.d.ts +3 -1
- package/dist/api/config.js +34 -10
- package/dist/api/http.d.ts +2 -2
- package/dist/api/index.d.ts +10 -10
- package/dist/api/index.js +4 -2
- package/dist/api/operations-routes.d.ts +3 -3
- package/dist/api/operations.d.ts +1 -1
- package/dist/api/providers.d.ts +1 -1
- package/dist/api/providers.js +21 -4
- package/dist/api/railway.d.ts +3 -2
- package/dist/api/sdk-dispatch.d.ts +4 -4
- package/dist/api/sdk-routes.d.ts +2 -2
- package/dist/api/templates.d.ts +2 -2
- package/dist/api/types.d.ts +3 -2
- package/dist/capacity-provider.d.ts +118 -59
- package/dist/capacity-provider.js +235 -43
- package/dist/capacity.d.ts +2 -2
- package/dist/cli-tools.d.ts +1 -1
- package/dist/content-operations.d.ts +97 -0
- package/dist/content-operations.js +250 -0
- package/dist/content-store.d.ts +4 -4
- package/dist/control-plane-client.d.ts +13 -18
- package/dist/control-plane-client.js +8 -86
- package/dist/control-plane.d.ts +3 -2
- package/dist/control-plane.js +38 -13
- package/dist/copilot.d.ts +3 -0
- package/dist/copilot.js +16 -1
- package/dist/d1-http.d.ts +1 -1
- package/dist/d1-store.d.ts +32 -57
- package/dist/d1-store.js +115 -318
- package/dist/db/d1.d.ts +1 -232
- package/dist/db/index.d.ts +3 -3
- package/dist/db/market-schema.d.ts +50900 -11018
- package/dist/db/market-schema.js +2313 -467
- package/dist/db/node-sqlite.d.ts +1 -232
- package/dist/db/node-sqlite.js +7 -2
- package/dist/db/schema.d.ts +0 -462
- package/dist/db/schema.js +2 -22
- package/dist/dispatch.d.ts +1 -1
- package/dist/dispatch.js +0 -11
- package/dist/fixture-support.js +52 -4
- package/dist/governance.d.ts +133 -0
- package/dist/governance.js +285 -0
- package/dist/graph/build.d.ts +2 -2
- package/dist/graph/context-query-contracts.d.ts +1 -1
- package/dist/graph/dsl.d.ts +1 -1
- package/dist/graph/query.d.ts +4 -4
- package/dist/graph/ranking.d.ts +1 -1
- package/dist/graph/schema.d.ts +1 -1
- package/dist/graph.d.ts +11 -11
- package/dist/guarantees/index.d.ts +425 -0
- package/dist/guarantees/index.js +1146 -0
- package/dist/hosting/apps.d.ts +12 -0
- package/dist/hosting/apps.js +107 -0
- package/dist/hosting/builtins.d.ts +25 -0
- package/dist/hosting/builtins.js +602 -0
- package/dist/hosting/contracts.d.ts +208 -0
- package/dist/hosting/contracts.js +0 -0
- package/dist/hosting/graph.d.ts +195 -0
- package/dist/hosting/graph.js +1092 -0
- package/dist/hosting/index.d.ts +4 -0
- package/dist/hosting/index.js +4 -0
- package/dist/index.d.ts +88 -67
- package/dist/index.js +142 -14
- package/dist/local-dev/managed-dev.d.ts +85 -0
- package/dist/local-dev/managed-dev.js +368 -0
- package/dist/managed-dependencies.d.ts +9 -0
- package/dist/managed-dependencies.js +10 -9
- package/dist/market-client.d.ts +327 -9
- package/dist/market-client.js +464 -20
- package/dist/model-registry.d.ts +1 -1
- package/dist/model-registry.js +19 -19
- package/dist/operations/agent-tools.d.ts +2 -11
- package/dist/operations/agent-tools.js +2 -14
- package/dist/operations/providers/default.d.ts +1 -1
- package/dist/operations/providers/default.js +20 -37
- package/dist/operations/repository-operations.d.ts +26 -2
- package/dist/operations/repository-operations.js +159 -1
- package/dist/operations/runtime.d.ts +3 -3
- package/dist/operations/services/bootstrap-runner.d.ts +4 -2
- package/dist/operations/services/bootstrap-runner.js +22 -2
- package/dist/operations/services/build-warning-policy.d.ts +34 -0
- package/dist/operations/services/build-warning-policy.js +81 -82
- package/dist/operations/services/commit-message-provider.js +4 -4
- package/dist/operations/services/config-runtime.d.ts +83 -24
- package/dist/operations/services/config-runtime.js +449 -130
- package/dist/operations/services/deploy.d.ts +106 -624
- package/dist/operations/services/deploy.js +746 -263
- package/dist/operations/services/deployment-readiness.d.ts +30 -0
- package/dist/operations/services/deployment-readiness.js +206 -0
- package/dist/operations/services/git-remote-policy.js +12 -4
- package/dist/operations/services/git-runner.d.ts +66 -0
- package/dist/operations/services/git-runner.js +479 -0
- package/dist/operations/services/git-workflow.d.ts +45 -6
- package/dist/operations/services/git-workflow.js +251 -23
- package/dist/operations/services/github-actions-verification.d.ts +4 -1
- package/dist/operations/services/github-actions-verification.js +12 -3
- package/dist/operations/services/github-api.js +22 -6
- package/dist/operations/services/github-automation.d.ts +4 -4
- package/dist/operations/services/github-automation.js +19 -21
- package/dist/operations/services/github-credentials.d.ts +13 -0
- package/dist/operations/services/github-credentials.js +59 -0
- package/dist/operations/services/hosted-service-checks.d.ts +81 -0
- package/dist/operations/services/hosted-service-checks.js +478 -0
- package/dist/operations/services/hosting-audit.d.ts +2 -2
- package/dist/operations/services/hosting-audit.js +7 -7
- package/dist/operations/services/hub-launch.d.ts +1 -1
- package/dist/operations/services/hub-provider-launch.d.ts +5 -5
- package/dist/operations/services/hub-provider-launch.js +22 -17
- package/dist/operations/services/live-hosted-service-checks.d.ts +26 -0
- package/dist/operations/services/live-hosted-service-checks.js +463 -0
- package/dist/operations/services/local-dev.js +0 -1
- package/dist/operations/services/managed-host-security.d.ts +1 -1
- package/dist/operations/services/managed-host-security.js +1 -1
- package/dist/operations/services/managed-repositories.d.ts +37 -0
- package/dist/operations/services/managed-repositories.js +177 -0
- package/dist/operations/services/operations-runner-smoke.d.ts +31 -0
- package/dist/operations/services/operations-runner-smoke.js +198 -0
- package/dist/operations/services/package-adapters.d.ts +170 -0
- package/dist/operations/services/package-adapters.js +859 -0
- package/dist/operations/services/package-reference-policy.d.ts +13 -88
- package/dist/operations/services/package-reference-policy.js +96 -215
- package/dist/operations/services/project-host-operations.d.ts +4 -4
- package/dist/operations/services/project-platform.d.ts +57 -173
- package/dist/operations/services/project-platform.js +80 -111
- package/dist/operations/services/project-web-monitor.d.ts +2 -2
- package/dist/operations/services/project-web-monitor.js +122 -5
- package/dist/operations/services/railway-api.d.ts +117 -5
- package/dist/operations/services/railway-api.js +915 -93
- package/dist/operations/services/railway-deploy.d.ts +30 -112
- package/dist/operations/services/railway-deploy.js +521 -961
- package/dist/operations/services/release-history.js +3 -4
- package/dist/operations/services/release-proof-ledger.d.ts +13 -0
- package/dist/operations/services/release-proof-ledger.js +81 -0
- package/dist/operations/services/release-proof-planner.d.ts +48 -0
- package/dist/operations/services/release-proof-planner.js +195 -0
- package/dist/operations/services/release-proof-runner.d.ts +16 -0
- package/dist/operations/services/release-proof-runner.js +169 -0
- package/dist/operations/services/release-proof.d.ts +81 -0
- package/dist/operations/services/release-proof.js +79 -0
- package/dist/operations/services/repository-save-orchestrator.d.ts +8 -7
- package/dist/operations/services/repository-save-orchestrator.js +604 -212
- package/dist/operations/services/runtime-paths.d.ts +1 -3
- package/dist/operations/services/runtime-paths.js +0 -4
- package/dist/operations/services/runtime-tools.d.ts +1 -191
- package/dist/operations/services/runtime-tools.js +4 -443
- package/dist/operations/services/save-deploy-preflight.js +9 -1
- package/dist/operations/services/template-host-bindings.d.ts +2 -2
- package/dist/operations/services/template-host-bindings.js +3 -2
- package/dist/operations/services/template-registry.d.ts +6 -6
- package/dist/operations/services/template-registry.js +33 -14
- package/dist/operations/services/template-secret-sync.d.ts +3 -3
- package/dist/operations/services/verification-cache.d.ts +25 -0
- package/dist/operations/services/verification-cache.js +71 -0
- package/dist/operations/services/workflow-timing.d.ts +25 -0
- package/dist/operations/services/workflow-timing.js +79 -0
- package/dist/operations/services/workspace-dependency-mode.js +50 -5
- package/dist/operations/services/workspace-preflight.js +8 -8
- package/dist/operations/services/workspace-save-script.d.ts +4 -4
- package/dist/operations/services/workspace-save.d.ts +1 -0
- package/dist/operations/services/workspace-save.js +42 -19
- package/dist/operations/services/workspace-tools.js +42 -7
- package/dist/operations-registry.d.ts +1 -1
- package/dist/operations-registry.js +5 -6
- package/dist/operations-types.d.ts +1 -1
- package/dist/operations.d.ts +17 -11
- package/dist/operations.js +57 -3
- package/dist/platform/book-export.js +2 -0
- package/dist/platform/books-data.d.ts +1 -1
- package/dist/platform/config.d.ts +27 -0
- package/dist/platform/config.js +100 -0
- package/dist/platform/content-runtime-source.d.ts +54 -0
- package/dist/platform/content-runtime-source.js +169 -0
- package/dist/platform/contracts.d.ts +38 -2
- package/dist/platform/deploy-config.d.ts +1 -1
- package/dist/platform/deploy-config.js +80 -9
- package/dist/platform/deploy-runtime.d.ts +1 -1
- package/dist/platform/desired-state.d.ts +63 -0
- package/dist/platform/desired-state.js +1021 -0
- package/dist/platform/env.yaml +568 -45
- package/dist/platform/environment.d.ts +3 -2
- package/dist/platform/environment.js +122 -21
- package/dist/platform/local-content-materialization.d.ts +9 -0
- package/dist/platform/local-content-materialization.js +212 -0
- package/dist/platform/plugin.d.ts +13 -4
- package/dist/platform/plugins/runtime.d.ts +3 -3
- package/dist/platform/plugins/runtime.js +62 -1
- package/dist/platform/plugins.d.ts +6 -6
- package/dist/platform/published-content-pipeline.d.ts +3 -3
- package/dist/platform/published-content-pipeline.js +5 -1
- package/dist/platform/published-content.d.ts +4 -3
- package/dist/platform/site-config-schema.d.ts +1 -0
- package/dist/platform/site-config-schema.js +4 -1
- package/dist/platform/tenant/runtime-config.d.ts +152 -2
- package/dist/platform/tenant-config.d.ts +1 -1
- package/dist/platform/utils/site-config-schema.d.ts +154 -0
- package/dist/platform/utils/site-config-schema.js +400 -461
- package/dist/platform-operation-store.d.ts +1 -1
- package/dist/platform-operation-store.js +2 -2
- package/dist/platform-operations.js +1 -1
- package/dist/plugin-default.d.ts +1 -1
- package/dist/plugin-default.js +27 -12
- package/dist/project-import.d.ts +91 -0
- package/dist/project-import.js +257 -0
- package/dist/project-workflow.d.ts +1 -1
- package/dist/reconcile/bootstrap-systems.d.ts +2 -2
- package/dist/reconcile/bootstrap-systems.js +5 -5
- package/dist/reconcile/builtin-adapters.d.ts +7 -1
- package/dist/reconcile/builtin-adapters.js +3190 -429
- package/dist/reconcile/contracts.d.ts +23 -6
- package/dist/reconcile/desired-state.d.ts +2 -192
- package/dist/reconcile/desired-state.js +29 -38
- package/dist/reconcile/engine.d.ts +61 -395
- package/dist/reconcile/engine.js +229 -44
- package/dist/reconcile/index.d.ts +10 -8
- package/dist/reconcile/index.js +2 -0
- package/dist/reconcile/live-acceptance.d.ts +100 -0
- package/dist/reconcile/live-acceptance.js +2027 -0
- package/dist/reconcile/platform.d.ts +104 -0
- package/dist/reconcile/platform.js +100 -0
- package/dist/reconcile/providers/docker-private.d.ts +54 -0
- package/dist/reconcile/providers/docker-private.js +101 -0
- package/dist/reconcile/providers/github-private.d.ts +65 -0
- package/dist/reconcile/providers/github-private.js +119 -0
- package/dist/reconcile/providers/local-private.d.ts +28 -0
- package/dist/reconcile/providers/local-private.js +75 -0
- package/dist/reconcile/providers/railway-iac.d.ts +66 -0
- package/dist/reconcile/providers/railway-iac.js +275 -0
- package/dist/reconcile/providers/release-private.d.ts +92 -0
- package/dist/reconcile/providers/release-private.js +152 -0
- package/dist/reconcile/registry.d.ts +2 -2
- package/dist/reconcile/registry.js +16 -1
- package/dist/reconcile/state.d.ts +1 -1
- package/dist/reconcile/state.js +7 -44
- package/dist/reconcile/units.d.ts +1 -1
- package/dist/reconcile/units.js +9 -3
- package/dist/remote.d.ts +6 -6
- package/dist/scenes/artifacts.d.ts +16 -0
- package/dist/scenes/artifacts.js +61 -0
- package/dist/scenes/auth.d.ts +2 -0
- package/dist/scenes/auth.js +28 -0
- package/dist/scenes/base-url.d.ts +12 -0
- package/dist/scenes/base-url.js +123 -0
- package/dist/scenes/builtin-plugins.d.ts +2 -0
- package/dist/scenes/builtin-plugins.js +447 -0
- package/dist/scenes/checkpoints.d.ts +14 -0
- package/dist/scenes/checkpoints.js +33 -0
- package/dist/scenes/device-matrix.d.ts +2 -0
- package/dist/scenes/device-matrix.js +97 -0
- package/dist/scenes/devices.d.ts +11 -0
- package/dist/scenes/devices.js +22 -0
- package/dist/scenes/diagnostics.d.ts +5 -0
- package/dist/scenes/diagnostics.js +22 -0
- package/dist/scenes/diagram-providers.d.ts +2 -0
- package/dist/scenes/diagram-providers.js +181 -0
- package/dist/scenes/diagram-validation.d.ts +22 -0
- package/dist/scenes/diagram-validation.js +74 -0
- package/dist/scenes/environment.d.ts +2 -0
- package/dist/scenes/environment.js +65 -0
- package/dist/scenes/evidence-bundle.d.ts +5 -0
- package/dist/scenes/evidence-bundle.js +42 -0
- package/dist/scenes/evidence-report.d.ts +10 -0
- package/dist/scenes/evidence-report.js +73 -0
- package/dist/scenes/evidence.d.ts +16 -0
- package/dist/scenes/evidence.js +277 -0
- package/dist/scenes/index.d.ts +48 -0
- package/dist/scenes/index.js +312 -0
- package/dist/scenes/inspect.d.ts +9 -0
- package/dist/scenes/inspect.js +64 -0
- package/dist/scenes/loader.d.ts +3 -0
- package/dist/scenes/loader.js +38 -0
- package/dist/scenes/logs.d.ts +2 -0
- package/dist/scenes/logs.js +47 -0
- package/dist/scenes/operations.d.ts +3 -0
- package/dist/scenes/operations.js +128 -0
- package/dist/scenes/phase0.d.ts +9 -0
- package/dist/scenes/phase0.js +637 -0
- package/dist/scenes/planner.d.ts +12 -0
- package/dist/scenes/planner.js +166 -0
- package/dist/scenes/playwright-adapter.d.ts +2 -0
- package/dist/scenes/playwright-adapter.js +63 -0
- package/dist/scenes/plugins.d.ts +5 -0
- package/dist/scenes/plugins.js +115 -0
- package/dist/scenes/progress.d.ts +17 -0
- package/dist/scenes/progress.js +24 -0
- package/dist/scenes/publish-destinations.d.ts +12 -0
- package/dist/scenes/publish-destinations.js +99 -0
- package/dist/scenes/publish-plan-report.d.ts +10 -0
- package/dist/scenes/publish-plan-report.js +70 -0
- package/dist/scenes/publish-plan.d.ts +15 -0
- package/dist/scenes/publish-plan.js +248 -0
- package/dist/scenes/publish-redaction.d.ts +16 -0
- package/dist/scenes/publish-redaction.js +148 -0
- package/dist/scenes/publish-release-record.d.ts +13 -0
- package/dist/scenes/publish-release-record.js +34 -0
- package/dist/scenes/publish-report.d.ts +10 -0
- package/dist/scenes/publish-report.js +67 -0
- package/dist/scenes/publish.d.ts +16 -0
- package/dist/scenes/publish.js +298 -0
- package/dist/scenes/registry.d.ts +12 -0
- package/dist/scenes/registry.js +65 -0
- package/dist/scenes/remotion-adapter.d.ts +3 -0
- package/dist/scenes/remotion-adapter.js +94 -0
- package/dist/scenes/remotion-composition-registry.d.ts +2 -0
- package/dist/scenes/remotion-composition-registry.js +12 -0
- package/dist/scenes/remotion-compositions.d.ts +15 -0
- package/dist/scenes/remotion-compositions.js +464 -0
- package/dist/scenes/remotion-diagrams.d.ts +9 -0
- package/dist/scenes/remotion-diagrams.js +188 -0
- package/dist/scenes/remotion-input.d.ts +13 -0
- package/dist/scenes/remotion-input.js +291 -0
- package/dist/scenes/remotion-visuals.d.ts +29 -0
- package/dist/scenes/remotion-visuals.js +198 -0
- package/dist/scenes/render-media-assets.d.ts +9 -0
- package/dist/scenes/render-media-assets.js +117 -0
- package/dist/scenes/render-report.d.ts +10 -0
- package/dist/scenes/render-report.js +27 -0
- package/dist/scenes/render.d.ts +2 -0
- package/dist/scenes/render.js +218 -0
- package/dist/scenes/reporter.d.ts +3 -0
- package/dist/scenes/reporter.js +101 -0
- package/dist/scenes/resume.d.ts +2 -0
- package/dist/scenes/resume.js +79 -0
- package/dist/scenes/runner.d.ts +2 -0
- package/dist/scenes/runner.js +674 -0
- package/dist/scenes/schema.d.ts +6 -0
- package/dist/scenes/schema.js +994 -0
- package/dist/scenes/seed.d.ts +2 -0
- package/dist/scenes/seed.js +83 -0
- package/dist/scenes/segments.d.ts +15 -0
- package/dist/scenes/segments.js +79 -0
- package/dist/scenes/selectors.d.ts +3 -0
- package/dist/scenes/selectors.js +21 -0
- package/dist/scenes/timeline.d.ts +11 -0
- package/dist/scenes/timeline.js +26 -0
- package/dist/scenes/timeouts.d.ts +6 -0
- package/dist/scenes/timeouts.js +17 -0
- package/dist/scenes/training-captions.d.ts +14 -0
- package/dist/scenes/training-captions.js +98 -0
- package/dist/scenes/training-report.d.ts +10 -0
- package/dist/scenes/training-report.js +78 -0
- package/dist/scenes/training-transcript.d.ts +24 -0
- package/dist/scenes/training-transcript.js +204 -0
- package/dist/scenes/training.d.ts +10 -0
- package/dist/scenes/training.js +134 -0
- package/dist/scenes/types.d.ts +1872 -0
- package/dist/scenes/types.js +8 -0
- package/dist/scenes/visual-audit-contact-sheets.d.ts +6 -0
- package/dist/scenes/visual-audit-contact-sheets.js +119 -0
- package/dist/scenes/visual-audit-fixtures.d.ts +25 -0
- package/dist/scenes/visual-audit-fixtures.js +210 -0
- package/dist/scenes/visual-audit-report.d.ts +11 -0
- package/dist/scenes/visual-audit-report.js +85 -0
- package/dist/scenes/visual-audit-review.d.ts +23 -0
- package/dist/scenes/visual-audit-review.js +829 -0
- package/dist/scenes/visual-audit-routes.d.ts +13 -0
- package/dist/scenes/visual-audit-routes.js +308 -0
- package/dist/scenes/visual-audit.d.ts +3 -0
- package/dist/scenes/visual-audit.js +596 -0
- package/dist/scripts/build-dist.js +154 -40
- package/dist/scripts/check-build-warnings.js +42 -53
- package/dist/scripts/cleanup-markdown.js +1 -1
- package/dist/scripts/cli-test-fixtures.js +24 -28
- package/dist/scripts/deployment-readiness.js +20 -0
- package/dist/scripts/generate-treedx-openapi-types.js +186 -0
- package/dist/scripts/migrate-journey-csv-to-guarantees.js +140 -0
- package/dist/scripts/operations-runner-smoke.js +16 -0
- package/dist/scripts/package-tools.js +12 -1
- package/dist/scripts/prepare.js +3 -7
- package/dist/scripts/release-verify.js +6 -6
- package/dist/scripts/run-fixture-astro-command.js +1 -1
- package/dist/scripts/template-catalog.test.js +68 -82
- package/dist/scripts/tenant-dev.js +0 -10
- package/dist/scripts/tenant-workflow-action.js +10 -1
- package/dist/scripts/test-cloudflare-local.js +1 -1
- package/dist/scripts/test-scaffold.js +0 -1
- package/dist/scripts/test-smoke.js +3 -3
- package/dist/scripts/treeseed-build-dist.js +4 -7
- package/dist/scripts/treeseed-release-verify.js +1 -1
- package/dist/scripts/verify-driver.js +30 -21
- package/dist/scripts/workflow-commands.test.js +18 -27
- package/dist/scripts/workspace-command-e2e.js +1 -1
- package/dist/scripts/workspace-lint.js +6 -0
- package/dist/scripts/workspace-release-test.js +90 -1
- package/dist/scripts/workspace-test.js +6 -0
- package/dist/sdk-dispatch.d.ts +1 -1
- package/dist/sdk-dispatch.js +0 -16
- package/dist/sdk-fields.d.ts +1 -1
- package/dist/sdk-filters.d.ts +1 -1
- package/dist/sdk-types.d.ts +1352 -116
- package/dist/sdk-types.js +413 -2
- package/dist/sdk.d.ts +106 -100
- package/dist/sdk.js +211 -51
- package/dist/secrets-capability.d.ts +421 -0
- package/dist/secrets-capability.js +530 -0
- package/dist/seeds/normalize.js +1 -0
- package/dist/seeds/planner.js +38 -0
- package/dist/seeds/schema.js +293 -4
- package/dist/seeds/types.d.ts +60 -0
- package/dist/seeds/types.js +9 -1
- package/dist/service-credentials.d.ts +54 -0
- package/dist/service-credentials.js +112 -0
- package/dist/stores/cursor-store.d.ts +2 -2
- package/dist/stores/envelopes.d.ts +1 -1
- package/dist/stores/helpers.d.ts +1 -1
- package/dist/stores/lease-store.d.ts +2 -2
- package/dist/stores/message-store.d.ts +2 -2
- package/dist/stores/operational-store.d.ts +3 -26
- package/dist/stores/operational-store.js +0 -225
- package/dist/stores/project-workflow-store.d.ts +2 -2
- package/dist/stores/run-store.d.ts +2 -3
- package/dist/stores/run-store.js +0 -98
- package/dist/stores/subscription-store.d.ts +2 -3
- package/dist/stores/subscription-store.js +0 -100
- package/dist/template-catalog.d.ts +1 -1
- package/dist/template-launch-requirements.d.ts +2 -2
- package/dist/template-launch-requirements.js +9 -0
- package/dist/template-launch-ui.d.ts +2 -2
- package/dist/treedx/adapters.d.ts +6 -0
- package/dist/treedx/adapters.js +36 -0
- package/dist/treedx/client.d.ts +222 -0
- package/dist/treedx/client.js +871 -0
- package/dist/treedx/errors.d.ts +13 -0
- package/dist/treedx/errors.js +17 -0
- package/dist/treedx/federated-client.d.ts +27 -0
- package/dist/treedx/federated-client.js +158 -0
- package/dist/treedx/generated/openapi-types.d.ts +3558 -0
- package/dist/treedx/generated/openapi-types.js +0 -0
- package/dist/treedx/graph-adapter.d.ts +33 -0
- package/dist/treedx/graph-adapter.js +156 -0
- package/dist/treedx/index.d.ts +14 -0
- package/dist/treedx/index.js +48 -0
- package/dist/treedx/market-integration.d.ts +27 -0
- package/dist/treedx/market-integration.js +131 -0
- package/dist/treedx/ports.d.ts +166 -0
- package/dist/treedx/ports.js +231 -0
- package/dist/treedx/query-adapter.d.ts +19 -0
- package/dist/treedx/query-adapter.js +62 -0
- package/dist/treedx/registry-client.d.ts +11 -0
- package/dist/treedx/registry-client.js +19 -0
- package/dist/treedx/repository-adapter.d.ts +45 -0
- package/dist/treedx/repository-adapter.js +319 -0
- package/dist/treedx/sdk-integration.d.ts +27 -0
- package/dist/treedx/sdk-integration.js +63 -0
- package/dist/treedx/types.d.ts +1084 -0
- package/dist/treedx/types.js +8 -0
- package/dist/treedx/workspace-adapter.d.ts +27 -0
- package/dist/treedx/workspace-adapter.js +65 -0
- package/dist/treedx-backends.d.ts +220 -0
- package/dist/treedx-backends.js +634 -0
- package/dist/treedx-client.d.ts +89 -0
- package/dist/treedx-client.js +184 -0
- package/dist/treeseed/services/compose.yml +2 -3
- package/dist/treeseed/template-catalog/catalog.fixture.json +27 -27
- package/dist/types/agents.d.ts +256 -0
- package/dist/types/agents.js +42 -1
- package/dist/verification.d.ts +1 -0
- package/dist/verification.js +143 -14
- package/dist/workflow/operations.d.ts +580 -523
- package/dist/workflow/operations.js +2084 -1279
- package/dist/workflow/policy.js +19 -7
- package/dist/workflow/runs.d.ts +9 -3
- package/dist/workflow/runs.js +66 -26
- package/dist/workflow/session.d.ts +4 -1
- package/dist/workflow/session.js +50 -10
- package/dist/workflow/worktrees.d.ts +6 -2
- package/dist/workflow/worktrees.js +98 -15
- package/dist/workflow-state.d.ts +17 -4
- package/dist/workflow-state.js +68 -41
- package/dist/workflow-support.d.ts +26 -17
- package/dist/workflow-support.js +84 -24
- package/dist/workflow.d.ts +51 -16
- package/dist/workflow.js +19 -7
- package/drizzle/d1/0000_treeseed_d1.sql +0 -18
- package/drizzle/market/0000_market_control_plane.sql +1793 -1499
- package/drizzle/market/0004_treedx_market_integration.sql +99 -0
- package/drizzle/market/0005_agent_capacity_coordination.sql +145 -0
- package/drizzle/market/0006_provider_assignment_lifecycle.sql +9 -0
- package/drizzle/market/0007_agent_architecture_gap_closure.sql +157 -0
- package/drizzle/market/0008_agent_capacity_operational_closure.sql +27 -0
- package/drizzle/market/0009_agent_capacity_runtime_hardening.sql +29 -0
- package/drizzle/market/0010_secrets_capability_persistence.sql +130 -0
- package/drizzle/market/0011_github_app_adapter.sql +47 -0
- package/drizzle/market/0012_workday_test_runs.sql +44 -0
- package/drizzle/market/0013_runtime_task_lifecycle.sql +39 -0
- package/drizzle/market/0014_governance_pipeline.sql +189 -0
- package/package.json +106 -18
- package/scripts/{verify-driver.mjs → verify-driver.ts} +19 -4
- package/templates/github/deploy-web.workflow.yml +49 -12
- package/dist/operations/services/mailpit-runtime.d.ts +0 -20
- package/dist/operations/services/mailpit-runtime.js +0 -67
- package/dist/operations/services/release-candidate.d.ts +0 -41
- package/dist/operations/services/release-candidate.js +0 -616
- package/dist/scripts/ensure-mailpit.js +0 -48
- package/dist/scripts/logs-mailpit.js +0 -2
- package/dist/scripts/run-ts.js +0 -45
- package/dist/scripts/stop-mailpit.js +0 -5
- package/dist/scripts/treeseed-run-ts.js +0 -45
|
@@ -0,0 +1,291 @@
|
|
|
1
|
+
import { existsSync, readdirSync, readFileSync } from "node:fs";
|
|
2
|
+
import { join } from "node:path";
|
|
3
|
+
import { sceneErrorDiagnostic, sceneWarningDiagnostic } from "./diagnostics.js";
|
|
4
|
+
import { buildTreeseedSceneRenderDiagrams } from "./diagram-validation.js";
|
|
5
|
+
import { resolveTreeseedSceneDeviceProfile } from "./devices.js";
|
|
6
|
+
import { resolveTreeseedSceneRunRoot } from "./inspect.js";
|
|
7
|
+
import { validateTreeseedScene } from "./planner.js";
|
|
8
|
+
import { listTreeseedSceneRemotionCompositions } from "./remotion-composition-registry.js";
|
|
9
|
+
import { resolveTreeseedScenePlugins } from "./registry.js";
|
|
10
|
+
import { buildTreeseedSceneTrainingOutputs } from "./training.js";
|
|
11
|
+
function readJson(path) {
|
|
12
|
+
return JSON.parse(readFileSync(path, "utf8"));
|
|
13
|
+
}
|
|
14
|
+
function hasError(diagnostics) {
|
|
15
|
+
return diagnostics.some((entry) => entry.severity === "error");
|
|
16
|
+
}
|
|
17
|
+
function defaultRenderMode(scene, run) {
|
|
18
|
+
if (scene.runtime.mode === "training") return "training";
|
|
19
|
+
if (scene.runtime.mode === "demo") return "demo";
|
|
20
|
+
if (run.workflowStatus === "failed") return "failure-review";
|
|
21
|
+
return "demo";
|
|
22
|
+
}
|
|
23
|
+
function defaultTreeseedSceneRemotionComposition(mode) {
|
|
24
|
+
if (mode === "training") return "treeseed-training-default";
|
|
25
|
+
if (mode === "failure-review") return "treeseed-failure-review";
|
|
26
|
+
if (mode === "diagram-only") return "treeseed-diagram-only";
|
|
27
|
+
return "treeseed-demo-default";
|
|
28
|
+
}
|
|
29
|
+
function renderSettings(scene, run, mode, composition, format, durationMs) {
|
|
30
|
+
const remotion = scene.render.remotion;
|
|
31
|
+
const fps = remotion?.output?.fps ?? 30;
|
|
32
|
+
const resolution = run.device?.output ?? remotion?.output?.resolution ?? { width: 1920, height: 1080 };
|
|
33
|
+
const width = resolution.width;
|
|
34
|
+
const height = resolution.height;
|
|
35
|
+
const selectedFormat = format ?? (remotion?.output?.format === "mp4" ? "mp4" : "mp4");
|
|
36
|
+
const durationSeconds = Math.max(4, durationMs / 1e3);
|
|
37
|
+
return {
|
|
38
|
+
mode,
|
|
39
|
+
composition: composition ?? remotion?.composition ?? defaultTreeseedSceneRemotionComposition(mode),
|
|
40
|
+
fps,
|
|
41
|
+
width,
|
|
42
|
+
height,
|
|
43
|
+
durationInFrames: Math.max(1, Math.ceil(durationSeconds * fps)),
|
|
44
|
+
format: selectedFormat
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
function renderSettingsWithLayout(settings, mode, renderDiagrams) {
|
|
48
|
+
if (mode === "diagram-only") {
|
|
49
|
+
return {
|
|
50
|
+
...settings,
|
|
51
|
+
durationInFrames: Math.max(1, Math.ceil(renderDiagrams.reduce((sum, diagram) => sum + diagram.durationSeconds, 0) * settings.fps)),
|
|
52
|
+
introFrames: 0,
|
|
53
|
+
interstitialFrames: 0,
|
|
54
|
+
evidenceStartFrame: 0,
|
|
55
|
+
evidenceDurationInFrames: 0
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
const sourceFrames = settings.durationInFrames;
|
|
59
|
+
const introFrames = Math.min(90, Math.floor(settings.fps * 3));
|
|
60
|
+
const interstitialFrames = renderDiagrams.filter((entry) => entry.placement !== "overlay").reduce((sum, diagram) => sum + Math.max(1, Math.ceil(diagram.durationSeconds * settings.fps)), 0);
|
|
61
|
+
const evidenceStartFrame = introFrames + interstitialFrames;
|
|
62
|
+
return {
|
|
63
|
+
...settings,
|
|
64
|
+
introFrames,
|
|
65
|
+
interstitialFrames,
|
|
66
|
+
evidenceStartFrame,
|
|
67
|
+
evidenceDurationInFrames: sourceFrames,
|
|
68
|
+
durationInFrames: evidenceStartFrame + sourceFrames
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
function captureViewportForRender(scene, run) {
|
|
72
|
+
return run.capture?.videoSize ?? run.capture?.viewport ?? scene.render.remotion?.capture?.video ?? scene.render.remotion?.capture?.viewport ?? scene.target.viewport;
|
|
73
|
+
}
|
|
74
|
+
function aspect(value) {
|
|
75
|
+
return value.width / Math.max(1, value.height);
|
|
76
|
+
}
|
|
77
|
+
function durationMsFor(input) {
|
|
78
|
+
if (input.chapterId) {
|
|
79
|
+
const chapter = input.run.chapters.find((entry) => entry.id === input.chapterId);
|
|
80
|
+
if (chapter) return Math.max(4e3, chapter.durationMs);
|
|
81
|
+
}
|
|
82
|
+
const stepStarts = input.run.steps.map((step) => input.timeline.find((event) => event.type === "step.start" && event.stepId === step.id)?.offsetMs ?? null).filter((offset) => typeof offset === "number");
|
|
83
|
+
const stepEnds = input.run.steps.map((step) => input.timeline.find((event) => event.type === "step.end" && event.stepId === step.id)?.offsetMs ?? null).filter((offset) => typeof offset === "number");
|
|
84
|
+
if (stepStarts.length > 0 && stepEnds.length > 0) {
|
|
85
|
+
return Math.max(4e3, Math.max(...stepEnds) - Math.min(...stepStarts) + 3e3);
|
|
86
|
+
}
|
|
87
|
+
if (input.run.durationMs > 0) return input.run.durationMs;
|
|
88
|
+
const maxTimeline = Math.max(0, ...input.timeline.map((event) => event.offsetMs));
|
|
89
|
+
if (maxTimeline > 0) return maxTimeline;
|
|
90
|
+
return Math.max(input.run.steps.length * 4e3, 8e3);
|
|
91
|
+
}
|
|
92
|
+
function readCheckpoints(run) {
|
|
93
|
+
const root = run.artifacts?.checkpointsRoot;
|
|
94
|
+
if (!root || !existsSync(root)) return run.checkpoints ?? [];
|
|
95
|
+
return readdirSync(root).filter((entry) => entry.endsWith(".json")).sort().map((entry) => readJson(join(root, entry)));
|
|
96
|
+
}
|
|
97
|
+
function readSegmentPaths(run) {
|
|
98
|
+
return (run.segments ?? []).map((segment) => segment.segmentPath).filter((path) => typeof path === "string" && path.length > 0);
|
|
99
|
+
}
|
|
100
|
+
function imageDimensions(path) {
|
|
101
|
+
if (!existsSync(path)) return { width: null, height: null };
|
|
102
|
+
try {
|
|
103
|
+
const buffer = readFileSync(path);
|
|
104
|
+
if (buffer.length >= 24 && buffer.toString("ascii", 1, 4) === "PNG") {
|
|
105
|
+
return { width: buffer.readUInt32BE(16), height: buffer.readUInt32BE(20) };
|
|
106
|
+
}
|
|
107
|
+
} catch {
|
|
108
|
+
}
|
|
109
|
+
return { width: null, height: null };
|
|
110
|
+
}
|
|
111
|
+
function screenshotsFromRun(run, timeline) {
|
|
112
|
+
const timelineByStep = /* @__PURE__ */ new Map();
|
|
113
|
+
for (const event of timeline) {
|
|
114
|
+
if ((event.type === "screenshot.viewport" || event.type === "screenshot") && event.stepId && !timelineByStep.has(event.stepId)) timelineByStep.set(event.stepId, event);
|
|
115
|
+
}
|
|
116
|
+
return run.steps.map((step) => {
|
|
117
|
+
const viewportPath = step.viewportScreenshotPath && existsSync(step.viewportScreenshotPath) ? step.viewportScreenshotPath : null;
|
|
118
|
+
const fullPagePath = step.screenshotPath && existsSync(step.screenshotPath) ? step.screenshotPath : null;
|
|
119
|
+
const path = viewportPath ?? fullPagePath;
|
|
120
|
+
if (!path) return null;
|
|
121
|
+
const event = timelineByStep.get(step.id);
|
|
122
|
+
const dimensions = imageDimensions(path);
|
|
123
|
+
return {
|
|
124
|
+
stepId: step.id,
|
|
125
|
+
path,
|
|
126
|
+
src: imageDataUri(path),
|
|
127
|
+
timestamp: event?.timestamp ?? null,
|
|
128
|
+
offsetMs: event?.offsetMs ?? null,
|
|
129
|
+
captureKind: viewportPath ? "viewport" : "full-page",
|
|
130
|
+
width: dimensions.width,
|
|
131
|
+
height: dimensions.height
|
|
132
|
+
};
|
|
133
|
+
}).filter((entry) => Boolean(entry)).sort((a, b) => (a.offsetMs ?? Number.MAX_SAFE_INTEGER) - (b.offsetMs ?? Number.MAX_SAFE_INTEGER));
|
|
134
|
+
}
|
|
135
|
+
function videoRefFromPath(path) {
|
|
136
|
+
const lower = path.toLowerCase();
|
|
137
|
+
const mimeType = lower.endsWith(".mp4") ? "video/mp4" : lower.endsWith(".mov") || lower.endsWith(".qt") ? "video/quicktime" : "video/webm";
|
|
138
|
+
if (/^(https?:|data:)/iu.test(path)) {
|
|
139
|
+
return { path, src: path, mimeType, source: "playwright" };
|
|
140
|
+
}
|
|
141
|
+
if (existsSync(path)) return { path, mimeType, source: "playwright" };
|
|
142
|
+
return null;
|
|
143
|
+
}
|
|
144
|
+
function legacyFullPageScreenshotsFromArtifacts(run, timeline) {
|
|
145
|
+
const known = new Set(run.steps.map((step) => step.screenshotPath).filter(Boolean));
|
|
146
|
+
return (run.artifacts?.screenshotPaths ?? []).filter((path) => !known.has(path) && existsSync(path)).map((step) => {
|
|
147
|
+
const event = timeline.find((entry) => entry.type === "screenshot" && "path" in entry.data && entry.data.path === step);
|
|
148
|
+
const dimensions = imageDimensions(step);
|
|
149
|
+
return {
|
|
150
|
+
stepId: event?.stepId ?? null,
|
|
151
|
+
path: step,
|
|
152
|
+
src: imageDataUri(step),
|
|
153
|
+
timestamp: event?.timestamp ?? null,
|
|
154
|
+
offsetMs: event?.offsetMs ?? null,
|
|
155
|
+
captureKind: "full-page",
|
|
156
|
+
width: dimensions.width,
|
|
157
|
+
height: dimensions.height
|
|
158
|
+
};
|
|
159
|
+
});
|
|
160
|
+
}
|
|
161
|
+
function imageDataUri(path) {
|
|
162
|
+
if (/^(https?:|data:)/iu.test(path) || !existsSync(path)) return path;
|
|
163
|
+
const extension = path.toLowerCase().endsWith(".jpg") || path.toLowerCase().endsWith(".jpeg") ? "jpeg" : "png";
|
|
164
|
+
return `data:image/${extension};base64,${readFileSync(path).toString("base64")}`;
|
|
165
|
+
}
|
|
166
|
+
function filterForChapter(run, timeline, chapterId) {
|
|
167
|
+
if (!chapterId) return { timeline, segments: run.segments ?? [] };
|
|
168
|
+
const chapter = run.chapters.find((entry) => entry.id === chapterId);
|
|
169
|
+
if (!chapter) return null;
|
|
170
|
+
const stepIds = new Set(chapter.stepIds);
|
|
171
|
+
return {
|
|
172
|
+
timeline: timeline.filter((event) => !event.stepId || stepIds.has(event.stepId)),
|
|
173
|
+
segments: (run.segments ?? []).filter((segment) => segment.chapterId === chapterId)
|
|
174
|
+
};
|
|
175
|
+
}
|
|
176
|
+
function filterDiagramsForChapter(diagrams, run, chapterId) {
|
|
177
|
+
if (!chapterId) return diagrams;
|
|
178
|
+
const chapter = run.chapters.find((entry) => entry.id === chapterId);
|
|
179
|
+
if (!chapter) return diagrams;
|
|
180
|
+
const stepIds = new Set(chapter.stepIds);
|
|
181
|
+
return diagrams.filter((diagram) => stepIds.has(diagram.at));
|
|
182
|
+
}
|
|
183
|
+
function loadTreeseedSceneRenderInput(input) {
|
|
184
|
+
const diagnostics = [];
|
|
185
|
+
const warnings = [];
|
|
186
|
+
const blockers = [];
|
|
187
|
+
if (input.format && input.format !== "mp4") {
|
|
188
|
+
blockers.push(sceneErrorDiagnostic("scene.render_format_unsupported", `Unsupported scene render format: ${input.format}.`, "format"));
|
|
189
|
+
return { ok: false, input: null, runRoot: null, diagnostics: [...diagnostics, ...blockers], warnings, blockers };
|
|
190
|
+
}
|
|
191
|
+
const resolved = resolveTreeseedSceneRunRoot(input.projectRoot, input.from);
|
|
192
|
+
diagnostics.push(...resolved.diagnostics);
|
|
193
|
+
if (!resolved.runRoot) return { ok: false, input: null, runRoot: null, diagnostics, warnings, blockers: resolved.diagnostics.filter((entry) => entry.severity === "error") };
|
|
194
|
+
const scenePath = join(resolved.runRoot, "scene.normalized.json");
|
|
195
|
+
const runPath = join(resolved.runRoot, "run.json");
|
|
196
|
+
const timelinePath = join(resolved.runRoot, "timeline.json");
|
|
197
|
+
if (!existsSync(scenePath)) blockers.push(sceneErrorDiagnostic("scene.render_missing_scene", `Normalized scene artifact not found: ${scenePath}.`, "scene"));
|
|
198
|
+
if (!existsSync(runPath)) blockers.push(sceneErrorDiagnostic("scene.render_missing_run", `Run report artifact not found: ${runPath}.`, "from"));
|
|
199
|
+
if (!existsSync(timelinePath)) blockers.push(sceneErrorDiagnostic("scene.render_missing_timeline", `Timeline artifact not found: ${timelinePath}.`, "from"));
|
|
200
|
+
if (blockers.length > 0) return { ok: false, input: null, runRoot: resolved.runRoot, diagnostics: [...diagnostics, ...blockers], warnings, blockers };
|
|
201
|
+
const scene = readJson(scenePath);
|
|
202
|
+
const run = readJson(runPath);
|
|
203
|
+
const timeline = readJson(timelinePath);
|
|
204
|
+
if (input.device && run.device?.id && input.device !== run.device.id) {
|
|
205
|
+
blockers.push(sceneErrorDiagnostic("scene.render_device_mismatch", `Requested render device "${input.device}" does not match source run device "${run.device.id}".`, "device"));
|
|
206
|
+
}
|
|
207
|
+
if (input.device && !run.device?.id) {
|
|
208
|
+
const resolvedDevice = resolveTreeseedSceneDeviceProfile({ scene, device: input.device });
|
|
209
|
+
blockers.push(...resolvedDevice.diagnostics.filter((entry) => entry.severity === "error"));
|
|
210
|
+
warnings.push(...resolvedDevice.diagnostics.filter((entry) => entry.severity === "warning"));
|
|
211
|
+
if (resolvedDevice.profile) run.device = resolvedDevice.profile;
|
|
212
|
+
}
|
|
213
|
+
const validation = validateTreeseedScene({ projectRoot: input.projectRoot, scene: input.scene });
|
|
214
|
+
if (!validation.ok) {
|
|
215
|
+
blockers.push(...validation.diagnostics);
|
|
216
|
+
} else if (validation.scene?.id !== scene.id) {
|
|
217
|
+
blockers.push(sceneErrorDiagnostic("scene.render_scene_mismatch", `Scene manifest "${validation.scene?.id ?? "(unknown)"}" does not match source run scene "${scene.id}".`, "scene"));
|
|
218
|
+
}
|
|
219
|
+
if (input.chapterId && !run.chapters.some((chapter) => chapter.id === input.chapterId)) {
|
|
220
|
+
blockers.push(sceneErrorDiagnostic("scene.render_chapter_not_found", `Scene run chapter not found: ${input.chapterId}.`, "chapter"));
|
|
221
|
+
}
|
|
222
|
+
const mode = input.mode ?? defaultRenderMode(scene, run);
|
|
223
|
+
let settings = renderSettings(scene, run, mode, input.composition, input.format, durationMsFor({ run, timeline, chapterId: input.chapterId }));
|
|
224
|
+
const renderer = input.renderer ?? "remotion";
|
|
225
|
+
if (renderer === "remotion" && !listTreeseedSceneRemotionCompositions().some((composition) => composition.id === settings.composition)) {
|
|
226
|
+
blockers.push(sceneErrorDiagnostic("scene.render_composition_unknown", `Unknown Remotion scene composition: ${settings.composition}.`, "composition"));
|
|
227
|
+
}
|
|
228
|
+
const filtered = filterForChapter(run, timeline, input.chapterId);
|
|
229
|
+
if (!filtered) blockers.push(sceneErrorDiagnostic("scene.render_chapter_not_found", `Scene run chapter not found: ${input.chapterId}.`, "chapter"));
|
|
230
|
+
const pluginResolution = resolveTreeseedScenePlugins();
|
|
231
|
+
const renderDiagramReport = buildTreeseedSceneRenderDiagrams({
|
|
232
|
+
scene,
|
|
233
|
+
run,
|
|
234
|
+
timeline: filtered?.timeline ?? timeline,
|
|
235
|
+
registry: pluginResolution.registry
|
|
236
|
+
});
|
|
237
|
+
const renderDiagrams = filterDiagramsForChapter(renderDiagramReport.diagrams, run, input.chapterId);
|
|
238
|
+
settings = renderSettingsWithLayout(settings, mode, renderDiagrams);
|
|
239
|
+
const captureViewport = captureViewportForRender(scene, run);
|
|
240
|
+
if (Math.abs(aspect(captureViewport) - aspect({ width: settings.width, height: settings.height })) > 0.01) {
|
|
241
|
+
warnings.push(sceneWarningDiagnostic(
|
|
242
|
+
"scene.render_capture_aspect_mismatch",
|
|
243
|
+
`Scene capture viewport ${captureViewport.width}x${captureViewport.height} does not match render output ${settings.width}x${settings.height}; fixed-browser rendering will preserve the browser viewport and may add padding.`,
|
|
244
|
+
"render.remotion.capture"
|
|
245
|
+
));
|
|
246
|
+
}
|
|
247
|
+
const diagramDiagnostics = [...renderDiagramReport.diagnostics, ...pluginResolution.diagnostics];
|
|
248
|
+
warnings.push(...diagramDiagnostics.filter((entry) => entry.severity === "warning"));
|
|
249
|
+
blockers.push(...diagramDiagnostics.filter((entry) => entry.severity === "error"));
|
|
250
|
+
if (mode === "diagram-only" && renderDiagrams.length === 0) blockers.push(sceneErrorDiagnostic("scene.render_missing_diagram", "Diagram-only rendering requires at least one valid diagram for the selected run or chapter.", "diagrams"));
|
|
251
|
+
const sourceVideos = [...new Set([...run.videoPaths ?? [], ...run.artifacts?.videoPaths ?? []].filter(Boolean))];
|
|
252
|
+
const videoRefs = sourceVideos.map(videoRefFromPath).filter((path) => Boolean(path));
|
|
253
|
+
const videos = videoRefs.map((entry) => entry.src ?? entry.staticPath ?? entry.path);
|
|
254
|
+
const screenshots = [
|
|
255
|
+
...screenshotsFromRun(run, filtered?.timeline ?? timeline),
|
|
256
|
+
...legacyFullPageScreenshotsFromArtifacts(run, filtered?.timeline ?? timeline)
|
|
257
|
+
].sort((a, b) => (a.offsetMs ?? Number.MAX_SAFE_INTEGER) - (b.offsetMs ?? Number.MAX_SAFE_INTEGER));
|
|
258
|
+
if (videoRefs.length === 0 && screenshots.length > 0) {
|
|
259
|
+
const message = sourceVideos.length > 0 ? "Playwright video artifacts were not directly loadable by the Remotion browser; rendering from screenshots and timeline evidence." : "No Playwright video was found; rendering from screenshots and timeline evidence.";
|
|
260
|
+
warnings.push(sceneWarningDiagnostic("scene.render_video_missing", message, "from"));
|
|
261
|
+
}
|
|
262
|
+
if (mode !== "diagram-only" && videoRefs.length === 0 && screenshots.length === 0) blockers.push(sceneErrorDiagnostic("scene.render_missing_media", "Scene render requires at least one Playwright video or screenshot artifact.", "from"));
|
|
263
|
+
if (hasError(blockers)) return { ok: false, input: null, runRoot: resolved.runRoot, diagnostics: [...diagnostics, ...warnings, ...blockers], warnings, blockers };
|
|
264
|
+
const trainingOutputs = buildTreeseedSceneTrainingOutputs({ scene, run, timeline: filtered?.timeline ?? timeline });
|
|
265
|
+
const renderInput = {
|
|
266
|
+
schemaVersion: "treeseed.scene.render-input/v1",
|
|
267
|
+
scene,
|
|
268
|
+
run,
|
|
269
|
+
timeline: filtered?.timeline ?? timeline,
|
|
270
|
+
chapters: input.chapterId ? run.chapters.filter((chapter) => chapter.id === input.chapterId) : run.chapters ?? [],
|
|
271
|
+
segments: filtered?.segments ?? run.segments ?? [],
|
|
272
|
+
checkpoints: readCheckpoints(run),
|
|
273
|
+
overlays: scene.overlays,
|
|
274
|
+
diagrams: scene.diagrams,
|
|
275
|
+
renderDiagrams,
|
|
276
|
+
training: {
|
|
277
|
+
captions: trainingOutputs.captions,
|
|
278
|
+
transcript: trainingOutputs.transcript,
|
|
279
|
+
narration: trainingOutputs.narration,
|
|
280
|
+
glossary: trainingOutputs.glossary,
|
|
281
|
+
chapterClips: trainingOutputs.chapterClips
|
|
282
|
+
},
|
|
283
|
+
media: { videos, videoRefs, screenshots },
|
|
284
|
+
render: settings
|
|
285
|
+
};
|
|
286
|
+
return { ok: true, input: renderInput, runRoot: resolved.runRoot, diagnostics: [...diagnostics, ...warnings], warnings, blockers };
|
|
287
|
+
}
|
|
288
|
+
export {
|
|
289
|
+
defaultTreeseedSceneRemotionComposition,
|
|
290
|
+
loadTreeseedSceneRenderInput
|
|
291
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { TreeseedSceneMotion, TreeseedSceneVisualObject, TreeseedSceneVisualRegion, TreeseedSceneVisualStyle } from './types.js';
|
|
3
|
+
export declare const treeseedSceneVideoTheme: {
|
|
4
|
+
bg: string;
|
|
5
|
+
panel: string;
|
|
6
|
+
panelSolid: string;
|
|
7
|
+
text: string;
|
|
8
|
+
muted: string;
|
|
9
|
+
accent: string;
|
|
10
|
+
success: string;
|
|
11
|
+
warning: string;
|
|
12
|
+
danger: string;
|
|
13
|
+
brand: string;
|
|
14
|
+
line: string;
|
|
15
|
+
};
|
|
16
|
+
export declare function resolveVisualRegion(region: TreeseedSceneVisualRegion | undefined, margin?: number): React.CSSProperties;
|
|
17
|
+
export declare function visualStyle(style?: TreeseedSceneVisualStyle): React.CSSProperties;
|
|
18
|
+
export declare function interpolateSceneMotion(input: {
|
|
19
|
+
motion?: TreeseedSceneMotion;
|
|
20
|
+
frame: number;
|
|
21
|
+
fps: number;
|
|
22
|
+
durationSeconds: number;
|
|
23
|
+
}): React.CSSProperties;
|
|
24
|
+
export declare function renderTreeseedVisualObject(input: {
|
|
25
|
+
object: TreeseedSceneVisualObject;
|
|
26
|
+
frame: number;
|
|
27
|
+
fps: number;
|
|
28
|
+
durationSeconds: number;
|
|
29
|
+
}): React.ReactElement | null;
|
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { interpolate } from "remotion";
|
|
3
|
+
const treeseedSceneVideoTheme = {
|
|
4
|
+
bg: "#0f172a",
|
|
5
|
+
panel: "rgba(15,23,42,0.88)",
|
|
6
|
+
panelSolid: "#172033",
|
|
7
|
+
text: "#f8fafc",
|
|
8
|
+
muted: "#cbd5e1",
|
|
9
|
+
accent: "#38bdf8",
|
|
10
|
+
success: "#22c55e",
|
|
11
|
+
warning: "#f59e0b",
|
|
12
|
+
danger: "#ef4444",
|
|
13
|
+
brand: "#14b8a6",
|
|
14
|
+
line: "rgba(148,163,184,0.42)"
|
|
15
|
+
};
|
|
16
|
+
function unitValue(value, unit) {
|
|
17
|
+
return unit === "percent" ? `${value}%` : value;
|
|
18
|
+
}
|
|
19
|
+
function pointStyle(point) {
|
|
20
|
+
if (!point) return {};
|
|
21
|
+
return { left: unitValue(point.x, point.unit), top: unitValue(point.y, point.unit) };
|
|
22
|
+
}
|
|
23
|
+
function sizeStyle(size) {
|
|
24
|
+
if (!size) return {};
|
|
25
|
+
return { width: unitValue(size.width, size.unit), height: unitValue(size.height, size.unit) };
|
|
26
|
+
}
|
|
27
|
+
function resolveVisualRegion(region, margin = 48) {
|
|
28
|
+
const common = { position: "absolute" };
|
|
29
|
+
if (region === "top-left") return { ...common, left: margin, top: margin };
|
|
30
|
+
if (region === "top") return { ...common, left: "50%", top: margin, transform: "translateX(-50%)" };
|
|
31
|
+
if (region === "top-right" || !region) return { ...common, right: margin, top: margin };
|
|
32
|
+
if (region === "left") return { ...common, left: margin, top: "50%", transform: "translateY(-50%)" };
|
|
33
|
+
if (region === "center") return { ...common, left: "50%", top: "50%", transform: "translate(-50%, -50%)" };
|
|
34
|
+
if (region === "right") return { ...common, right: margin, top: "50%", transform: "translateY(-50%)" };
|
|
35
|
+
if (region === "bottom-left") return { ...common, left: margin, bottom: margin };
|
|
36
|
+
if (region === "bottom") return { ...common, left: "50%", bottom: margin, transform: "translateX(-50%)" };
|
|
37
|
+
return { ...common, right: margin, bottom: margin };
|
|
38
|
+
}
|
|
39
|
+
function toneColors(style) {
|
|
40
|
+
if (style?.tone === "success") return { accent: treeseedSceneVideoTheme.success, background: "rgba(20,83,45,0.88)" };
|
|
41
|
+
if (style?.tone === "warning") return { accent: treeseedSceneVideoTheme.warning, background: "rgba(120,53,15,0.9)" };
|
|
42
|
+
if (style?.tone === "danger") return { accent: treeseedSceneVideoTheme.danger, background: "rgba(127,29,29,0.9)" };
|
|
43
|
+
if (style?.tone === "brand") return { accent: treeseedSceneVideoTheme.brand, background: "rgba(19,78,74,0.9)" };
|
|
44
|
+
if (style?.tone === "info") return { accent: treeseedSceneVideoTheme.accent, background: "rgba(12,74,110,0.9)" };
|
|
45
|
+
return { accent: treeseedSceneVideoTheme.accent, background: treeseedSceneVideoTheme.panel };
|
|
46
|
+
}
|
|
47
|
+
function visualStyle(style) {
|
|
48
|
+
const colors = toneColors(style);
|
|
49
|
+
const shadow = style?.shadow === "none" ? "none" : style?.shadow === "strong" ? "0 28px 80px rgba(0,0,0,0.44)" : style?.shadow === "soft" ? "0 10px 24px rgba(0,0,0,0.18)" : "0 18px 46px rgba(0,0,0,0.28)";
|
|
50
|
+
return {
|
|
51
|
+
background: style?.background ?? colors.background,
|
|
52
|
+
color: style?.color ?? treeseedSceneVideoTheme.text,
|
|
53
|
+
borderColor: style?.borderColor ?? colors.accent,
|
|
54
|
+
borderStyle: "solid",
|
|
55
|
+
borderWidth: style?.borderWidth ?? 1,
|
|
56
|
+
borderRadius: style?.radius ?? 10,
|
|
57
|
+
boxShadow: shadow,
|
|
58
|
+
opacity: style?.opacity ?? 1
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
function easing(value) {
|
|
62
|
+
if (value === "ease-in") return (t) => t * t;
|
|
63
|
+
if (value === "ease-out") return (t) => 1 - (1 - t) * (1 - t);
|
|
64
|
+
if (value === "ease" || value === "ease-in-out") return (t) => t * t * (3 - 2 * t);
|
|
65
|
+
return (t) => t;
|
|
66
|
+
}
|
|
67
|
+
function interpolateSceneMotion(input) {
|
|
68
|
+
const motion = input.motion;
|
|
69
|
+
if (!motion || motion.keyframes.length === 0) return {};
|
|
70
|
+
const durationFrames = Math.max(1, Math.ceil(input.durationSeconds * input.fps));
|
|
71
|
+
const frame = motion.loop ? input.frame % durationFrames : Math.min(input.frame, durationFrames);
|
|
72
|
+
const currentSeconds = frame / Math.max(1, input.fps);
|
|
73
|
+
const normalized = frame / durationFrames;
|
|
74
|
+
const keyframes = [...motion.keyframes].sort((a, b) => a.at - b.at);
|
|
75
|
+
const frameAt = (at, unit) => unit === "progress" ? at : at / Math.max(1e-3, input.durationSeconds);
|
|
76
|
+
const progress = keyframes[0]?.unit === "progress" ? normalized : currentSeconds / Math.max(1e-3, input.durationSeconds);
|
|
77
|
+
let previous = keyframes[0];
|
|
78
|
+
let next = keyframes[keyframes.length - 1];
|
|
79
|
+
for (let index = 0; index < keyframes.length - 1; index += 1) {
|
|
80
|
+
const a = keyframes[index];
|
|
81
|
+
const b = keyframes[index + 1];
|
|
82
|
+
const start2 = frameAt(a.at, a.unit);
|
|
83
|
+
const end2 = frameAt(b.at, b.unit);
|
|
84
|
+
if (progress >= start2 && progress <= end2) {
|
|
85
|
+
previous = a;
|
|
86
|
+
next = b;
|
|
87
|
+
break;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
const start = frameAt(previous.at, previous.unit);
|
|
91
|
+
const end = frameAt(next.at, next.unit);
|
|
92
|
+
const raw = end === start ? 1 : Math.max(0, Math.min(1, (progress - start) / (end - start)));
|
|
93
|
+
const t = easing(next.easing ?? previous.easing)(raw);
|
|
94
|
+
const mix = (a, b, fallback) => interpolate(t, [0, 1], [a ?? fallback, b ?? a ?? fallback]);
|
|
95
|
+
const style = {};
|
|
96
|
+
if (previous.position || next.position) {
|
|
97
|
+
const from = previous.position ?? next.position;
|
|
98
|
+
const to = next.position ?? previous.position;
|
|
99
|
+
style.left = unitValue(mix(from.x, to.x, from.x), to.unit ?? from.unit);
|
|
100
|
+
style.top = unitValue(mix(from.y, to.y, from.y), to.unit ?? from.unit);
|
|
101
|
+
}
|
|
102
|
+
if (previous.size || next.size) {
|
|
103
|
+
const from = previous.size ?? next.size;
|
|
104
|
+
const to = next.size ?? previous.size;
|
|
105
|
+
style.width = unitValue(mix(from.width, to.width, from.width), to.unit ?? from.unit);
|
|
106
|
+
style.height = unitValue(mix(from.height, to.height, from.height), to.unit ?? from.unit);
|
|
107
|
+
}
|
|
108
|
+
if (previous.opacity !== void 0 || next.opacity !== void 0) style.opacity = mix(previous.opacity, next.opacity, previous.opacity ?? 1);
|
|
109
|
+
const scale = mix(previous.scale, next.scale, previous.scale ?? 1);
|
|
110
|
+
const rotate = mix(previous.rotateDeg, next.rotateDeg, previous.rotateDeg ?? 0);
|
|
111
|
+
style.transform = `scale(${scale}) rotate(${rotate}deg)`;
|
|
112
|
+
return style;
|
|
113
|
+
}
|
|
114
|
+
function renderTreeseedVisualObject(input) {
|
|
115
|
+
const object = input.object;
|
|
116
|
+
const base = {
|
|
117
|
+
position: "absolute",
|
|
118
|
+
...resolveVisualRegion(object.region, 0),
|
|
119
|
+
...pointStyle(object.position),
|
|
120
|
+
...sizeStyle(object.size),
|
|
121
|
+
...visualStyle(object.style),
|
|
122
|
+
...interpolateSceneMotion({ motion: object.motion, frame: input.frame, fps: input.fps, durationSeconds: input.durationSeconds }),
|
|
123
|
+
boxSizing: "border-box",
|
|
124
|
+
fontFamily: "Inter, Arial, sans-serif",
|
|
125
|
+
pointerEvents: "none"
|
|
126
|
+
};
|
|
127
|
+
if (object.type === "text" || object.type === "badge") {
|
|
128
|
+
return React.createElement("div", {
|
|
129
|
+
key: object.id,
|
|
130
|
+
style: {
|
|
131
|
+
...base,
|
|
132
|
+
padding: object.type === "badge" ? "8px 12px" : "12px 16px",
|
|
133
|
+
fontSize: object.type === "badge" ? 18 : 24,
|
|
134
|
+
fontWeight: 800,
|
|
135
|
+
whiteSpace: "pre-wrap"
|
|
136
|
+
}
|
|
137
|
+
}, object.text ?? object.id);
|
|
138
|
+
}
|
|
139
|
+
if (object.type === "circle" || object.type === "spotlight") {
|
|
140
|
+
return React.createElement("div", { key: object.id, style: { ...base, borderRadius: 999, background: object.type === "spotlight" ? "rgba(56,189,248,0.12)" : base.background } });
|
|
141
|
+
}
|
|
142
|
+
if (object.type === "line" || object.type === "arrow") {
|
|
143
|
+
const from = object.from ?? object.position ?? { x: 0, y: 0 };
|
|
144
|
+
const to = object.to ?? { x: from.x + 160, y: from.y };
|
|
145
|
+
const dx = to.x - from.x;
|
|
146
|
+
const dy = to.y - from.y;
|
|
147
|
+
const length = Math.sqrt(dx * dx + dy * dy);
|
|
148
|
+
const angle = Math.atan2(dy, dx) * 180 / Math.PI;
|
|
149
|
+
return React.createElement("div", {
|
|
150
|
+
key: object.id,
|
|
151
|
+
style: {
|
|
152
|
+
position: "absolute",
|
|
153
|
+
left: unitValue(from.x, from.unit),
|
|
154
|
+
top: unitValue(from.y, from.unit),
|
|
155
|
+
width: length,
|
|
156
|
+
height: object.style?.borderWidth ?? 4,
|
|
157
|
+
background: object.style?.color ?? object.style?.borderColor ?? treeseedSceneVideoTheme.accent,
|
|
158
|
+
transformOrigin: "0 50%",
|
|
159
|
+
transform: `rotate(${angle}deg)`,
|
|
160
|
+
boxShadow: "0 0 18px rgba(56,189,248,0.4)"
|
|
161
|
+
}
|
|
162
|
+
}, object.type === "arrow" ? React.createElement("span", {
|
|
163
|
+
style: {
|
|
164
|
+
position: "absolute",
|
|
165
|
+
right: -2,
|
|
166
|
+
top: -7,
|
|
167
|
+
width: 0,
|
|
168
|
+
height: 0,
|
|
169
|
+
borderTop: "8px solid transparent",
|
|
170
|
+
borderBottom: "8px solid transparent",
|
|
171
|
+
borderLeft: `14px solid ${object.style?.color ?? object.style?.borderColor ?? treeseedSceneVideoTheme.accent}`
|
|
172
|
+
}
|
|
173
|
+
}) : null);
|
|
174
|
+
}
|
|
175
|
+
if (object.type === "cursor") {
|
|
176
|
+
return React.createElement("div", {
|
|
177
|
+
key: object.id,
|
|
178
|
+
style: {
|
|
179
|
+
...base,
|
|
180
|
+
width: object.size?.width ?? 28,
|
|
181
|
+
height: object.size?.height ?? 28,
|
|
182
|
+
background: "transparent",
|
|
183
|
+
border: 0,
|
|
184
|
+
boxShadow: "none",
|
|
185
|
+
color: object.style?.color ?? treeseedSceneVideoTheme.text,
|
|
186
|
+
fontSize: 30
|
|
187
|
+
}
|
|
188
|
+
}, "\u25B8");
|
|
189
|
+
}
|
|
190
|
+
return React.createElement("div", { key: object.id, style: base });
|
|
191
|
+
}
|
|
192
|
+
export {
|
|
193
|
+
interpolateSceneMotion,
|
|
194
|
+
renderTreeseedVisualObject,
|
|
195
|
+
resolveVisualRegion,
|
|
196
|
+
treeseedSceneVideoTheme,
|
|
197
|
+
visualStyle
|
|
198
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { TreeseedSceneDiagnostic, TreeseedSceneRenderInput } from './types.js';
|
|
2
|
+
export declare function stageTreeseedSceneRenderMediaAssets(input: {
|
|
3
|
+
renderRoot: string;
|
|
4
|
+
renderInput: TreeseedSceneRenderInput;
|
|
5
|
+
}): {
|
|
6
|
+
renderInput: TreeseedSceneRenderInput;
|
|
7
|
+
publicDir: string;
|
|
8
|
+
warnings: TreeseedSceneDiagnostic[];
|
|
9
|
+
};
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
import { copyFileSync, existsSync, mkdirSync, readFileSync, statSync } from "node:fs";
|
|
2
|
+
import { createHash } from "node:crypto";
|
|
3
|
+
import { spawnSync } from "node:child_process";
|
|
4
|
+
import { extname, join } from "node:path";
|
|
5
|
+
import { sceneWarningDiagnostic } from "./diagnostics.js";
|
|
6
|
+
function extensionFor(path, mimeType) {
|
|
7
|
+
const extension = extname(path);
|
|
8
|
+
if (extension) return extension;
|
|
9
|
+
if (mimeType === "video/mp4") return ".mp4";
|
|
10
|
+
if (mimeType === "video/quicktime") return ".mov";
|
|
11
|
+
return ".webm";
|
|
12
|
+
}
|
|
13
|
+
function smallDataUriFallback(path, mimeType) {
|
|
14
|
+
if (!existsSync(path)) return null;
|
|
15
|
+
const stat = statSync(path);
|
|
16
|
+
if (stat.size > 1024 * 1024) return null;
|
|
17
|
+
return `data:${mimeType};base64,${readFileSync(path).toString("base64")}`;
|
|
18
|
+
}
|
|
19
|
+
function normalizePlaywrightVideo(input) {
|
|
20
|
+
const filename = `${input.hash}-normalized-v1.mp4`;
|
|
21
|
+
const outputPath = join(input.mediaDir, filename);
|
|
22
|
+
if (existsSync(outputPath)) return { path: outputPath, staticPath: `media/${filename}` };
|
|
23
|
+
const cropWidth = Math.max(2, Math.floor(input.sourceWidth * 0.95 / 2) * 2);
|
|
24
|
+
const cropHeight = Math.max(2, Math.floor(input.sourceHeight * 0.95 / 2) * 2);
|
|
25
|
+
const result = spawnSync("ffmpeg", [
|
|
26
|
+
"-y",
|
|
27
|
+
"-loglevel",
|
|
28
|
+
"error",
|
|
29
|
+
"-i",
|
|
30
|
+
input.path,
|
|
31
|
+
"-vf",
|
|
32
|
+
`crop=${cropWidth}:${cropHeight}:0:0,scale=${input.width}:${input.height},setsar=1,fps=${input.fps}`,
|
|
33
|
+
"-an",
|
|
34
|
+
"-c:v",
|
|
35
|
+
"libx264",
|
|
36
|
+
"-preset",
|
|
37
|
+
"veryfast",
|
|
38
|
+
"-crf",
|
|
39
|
+
"18",
|
|
40
|
+
"-pix_fmt",
|
|
41
|
+
"yuv420p",
|
|
42
|
+
"-movflags",
|
|
43
|
+
"+faststart",
|
|
44
|
+
outputPath
|
|
45
|
+
], { encoding: "utf8" });
|
|
46
|
+
if (result.status !== 0 || !existsSync(outputPath)) return null;
|
|
47
|
+
return { path: outputPath, staticPath: `media/${filename}` };
|
|
48
|
+
}
|
|
49
|
+
function stageTreeseedSceneRenderMediaAssets(input) {
|
|
50
|
+
const publicDir = join(input.renderRoot, "public");
|
|
51
|
+
const mediaDir = join(publicDir, "media");
|
|
52
|
+
mkdirSync(mediaDir, { recursive: true });
|
|
53
|
+
const warnings = [];
|
|
54
|
+
const stagedRefs = (input.renderInput.media.videoRefs ?? []).flatMap((ref) => {
|
|
55
|
+
if (ref.staticPath || ref.src) return [ref];
|
|
56
|
+
try {
|
|
57
|
+
if (!existsSync(ref.path)) return [];
|
|
58
|
+
const bytes = readFileSync(ref.path);
|
|
59
|
+
const hash = createHash("sha256").update(bytes).digest("hex");
|
|
60
|
+
const filename = `${hash}${extensionFor(ref.path, ref.mimeType)}`;
|
|
61
|
+
const targetPath = join(mediaDir, filename);
|
|
62
|
+
if (!existsSync(targetPath)) copyFileSync(ref.path, targetPath);
|
|
63
|
+
if (input.renderInput.run.capture?.evidenceFit === "fixed-browser") {
|
|
64
|
+
const source = input.renderInput.run.capture?.videoSize ?? input.renderInput.run.capture?.viewport ?? {
|
|
65
|
+
width: input.renderInput.render.width,
|
|
66
|
+
height: input.renderInput.render.height
|
|
67
|
+
};
|
|
68
|
+
const normalized = normalizePlaywrightVideo({
|
|
69
|
+
path: ref.path,
|
|
70
|
+
hash,
|
|
71
|
+
mediaDir,
|
|
72
|
+
fps: input.renderInput.render.fps,
|
|
73
|
+
sourceWidth: source.width,
|
|
74
|
+
sourceHeight: source.height,
|
|
75
|
+
width: input.renderInput.render.width,
|
|
76
|
+
height: input.renderInput.render.height
|
|
77
|
+
});
|
|
78
|
+
if (normalized) {
|
|
79
|
+
return [{ ...ref, staticPath: normalized.staticPath, mimeType: "video/mp4" }];
|
|
80
|
+
}
|
|
81
|
+
if (!normalized) {
|
|
82
|
+
warnings.push(sceneWarningDiagnostic(
|
|
83
|
+
"scene.render_video_normalization_failed",
|
|
84
|
+
"Playwright video normalization failed; Remotion will use staged source video or screenshot fallback.",
|
|
85
|
+
ref.path
|
|
86
|
+
));
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
return [{ ...ref, staticPath: `media/${filename}` }];
|
|
90
|
+
} catch (error) {
|
|
91
|
+
const fallback = smallDataUriFallback(ref.path, ref.mimeType);
|
|
92
|
+
if (fallback) return [{ ...ref, src: fallback }];
|
|
93
|
+
warnings.push(sceneWarningDiagnostic(
|
|
94
|
+
"scene.render_video_staging_failed",
|
|
95
|
+
`Playwright video could not be staged for Remotion rendering and screenshots will be used if available. ${error instanceof Error ? error.message : String(error ?? "")}`.trim(),
|
|
96
|
+
ref.path
|
|
97
|
+
));
|
|
98
|
+
return [];
|
|
99
|
+
}
|
|
100
|
+
});
|
|
101
|
+
return {
|
|
102
|
+
publicDir,
|
|
103
|
+
warnings,
|
|
104
|
+
renderInput: {
|
|
105
|
+
...input.renderInput,
|
|
106
|
+
media: {
|
|
107
|
+
...input.renderInput.media,
|
|
108
|
+
videoRefs: stagedRefs,
|
|
109
|
+
videoFrames: [],
|
|
110
|
+
videos: stagedRefs.map((ref) => ref.staticPath ?? ref.src ?? ref.path)
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
};
|
|
114
|
+
}
|
|
115
|
+
export {
|
|
116
|
+
stageTreeseedSceneRenderMediaAssets
|
|
117
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { TreeseedSceneDiagnostic, TreeseedSceneRenderInput, TreeseedSceneRenderReport } from './types.js';
|
|
2
|
+
export declare function writeTreeseedSceneRenderReport(input: {
|
|
3
|
+
report: TreeseedSceneRenderReport;
|
|
4
|
+
input: TreeseedSceneRenderInput | null;
|
|
5
|
+
composition: Record<string, unknown> | null;
|
|
6
|
+
}): void;
|
|
7
|
+
export declare function appendTreeseedSceneRenderedVideo(input: {
|
|
8
|
+
runPath: string;
|
|
9
|
+
outputPath: string;
|
|
10
|
+
}): TreeseedSceneDiagnostic[];
|