@xfey/tutti 0.1.0
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 +50 -0
- package/dist/approvals/index.d.ts +3 -0
- package/dist/approvals/index.js +3 -0
- package/dist/approvals/manager.d.ts +47 -0
- package/dist/approvals/manager.js +180 -0
- package/dist/approvals/projections.d.ts +34 -0
- package/dist/approvals/projections.js +444 -0
- package/dist/artifacts/index.d.ts +4 -0
- package/dist/artifacts/index.js +4 -0
- package/dist/artifacts/manifest.d.ts +48 -0
- package/dist/artifacts/manifest.js +334 -0
- package/dist/artifacts/preview-runtime.d.ts +97 -0
- package/dist/artifacts/preview-runtime.js +585 -0
- package/dist/artifacts/static-preview.d.ts +17 -0
- package/dist/artifacts/static-preview.js +180 -0
- package/dist/chat-assistant/index.d.ts +66 -0
- package/dist/chat-assistant/index.js +268 -0
- package/dist/checks/index.d.ts +47 -0
- package/dist/checks/index.js +169 -0
- package/dist/collaboration-state/clarification-messages.d.ts +8 -0
- package/dist/collaboration-state/clarification-messages.js +180 -0
- package/dist/collaboration-state/clarification-records.d.ts +27 -0
- package/dist/collaboration-state/clarification-records.js +266 -0
- package/dist/collaboration-state/clarification-round-writes.d.ts +14 -0
- package/dist/collaboration-state/clarification-round-writes.js +58 -0
- package/dist/collaboration-state/clarification-rounds.d.ts +19 -0
- package/dist/collaboration-state/clarification-rounds.js +347 -0
- package/dist/collaboration-state/clarification-successors.d.ts +8 -0
- package/dist/collaboration-state/clarification-successors.js +318 -0
- package/dist/collaboration-state/execution-status.d.ts +3 -0
- package/dist/collaboration-state/execution-status.js +8 -0
- package/dist/collaboration-state/index.d.ts +17 -0
- package/dist/collaboration-state/index.js +16 -0
- package/dist/collaboration-state/messages.d.ts +25 -0
- package/dist/collaboration-state/messages.js +371 -0
- package/dist/collaboration-state/read-state.d.ts +7 -0
- package/dist/collaboration-state/read-state.js +136 -0
- package/dist/collaboration-state/recovery.d.ts +6 -0
- package/dist/collaboration-state/recovery.js +125 -0
- package/dist/collaboration-state/run-recording.d.ts +5 -0
- package/dist/collaboration-state/run-recording.js +216 -0
- package/dist/collaboration-state/run-results.d.ts +12 -0
- package/dist/collaboration-state/run-results.js +202 -0
- package/dist/collaboration-state/scratchpad-source-state.d.ts +46 -0
- package/dist/collaboration-state/scratchpad-source-state.js +207 -0
- package/dist/collaboration-state/scratchpad.d.ts +8 -0
- package/dist/collaboration-state/scratchpad.js +84 -0
- package/dist/collaboration-state/serialization.d.ts +16 -0
- package/dist/collaboration-state/serialization.js +71 -0
- package/dist/collaboration-state/storage-types.d.ts +136 -0
- package/dist/collaboration-state/storage-types.js +2 -0
- package/dist/collaboration-state/task-details.d.ts +5 -0
- package/dist/collaboration-state/task-details.js +25 -0
- package/dist/collaboration-state/types.d.ts +289 -0
- package/dist/collaboration-state/types.js +2 -0
- package/dist/collaboration-state/worklist.d.ts +11 -0
- package/dist/collaboration-state/worklist.js +286 -0
- package/dist/control-plane/clarification-commands.d.ts +34 -0
- package/dist/control-plane/clarification-commands.js +106 -0
- package/dist/control-plane/command-recovery.d.ts +3 -0
- package/dist/control-plane/command-recovery.js +79 -0
- package/dist/control-plane/context-sync.d.ts +47 -0
- package/dist/control-plane/context-sync.js +207 -0
- package/dist/control-plane/event-publishers.d.ts +24 -0
- package/dist/control-plane/event-publishers.js +192 -0
- package/dist/control-plane/execution-status.d.ts +13 -0
- package/dist/control-plane/execution-status.js +130 -0
- package/dist/control-plane/follow-up-context.d.ts +27 -0
- package/dist/control-plane/follow-up-context.js +93 -0
- package/dist/control-plane/follow-up-output.d.ts +53 -0
- package/dist/control-plane/follow-up-output.js +141 -0
- package/dist/control-plane/follow-up-run.d.ts +22 -0
- package/dist/control-plane/follow-up-run.js +90 -0
- package/dist/control-plane/follow-up-start.d.ts +26 -0
- package/dist/control-plane/follow-up-start.js +101 -0
- package/dist/control-plane/formatters.d.ts +12 -0
- package/dist/control-plane/formatters.js +47 -0
- package/dist/control-plane/index.d.ts +62 -0
- package/dist/control-plane/index.js +416 -0
- package/dist/control-plane/invalidations.d.ts +12 -0
- package/dist/control-plane/invalidations.js +67 -0
- package/dist/control-plane/procedure-logging.d.ts +11 -0
- package/dist/control-plane/procedure-logging.js +95 -0
- package/dist/control-plane/project-brief-refresh.d.ts +31 -0
- package/dist/control-plane/project-brief-refresh.js +105 -0
- package/dist/control-plane/project-context-bootstrap.d.ts +39 -0
- package/dist/control-plane/project-context-bootstrap.js +107 -0
- package/dist/control-plane/reference-summary-refresh.d.ts +22 -0
- package/dist/control-plane/reference-summary-refresh.js +344 -0
- package/dist/control-plane/run-lineage.d.ts +8 -0
- package/dist/control-plane/run-lineage.js +13 -0
- package/dist/control-plane/run-result-recording.d.ts +46 -0
- package/dist/control-plane/run-result-recording.js +81 -0
- package/dist/control-plane/run-scheduler.d.ts +35 -0
- package/dist/control-plane/run-scheduler.js +110 -0
- package/dist/control-plane/run-start.d.ts +30 -0
- package/dist/control-plane/run-start.js +167 -0
- package/dist/control-plane/scratchpad-auto-refresh.d.ts +32 -0
- package/dist/control-plane/scratchpad-auto-refresh.js +150 -0
- package/dist/control-plane/scratchpad-refresh-start.d.ts +60 -0
- package/dist/control-plane/scratchpad-refresh-start.js +240 -0
- package/dist/control-plane/scratchpad-refresh.d.ts +29 -0
- package/dist/control-plane/scratchpad-refresh.js +55 -0
- package/dist/control-plane/scratchpad-source-messages.d.ts +10 -0
- package/dist/control-plane/scratchpad-source-messages.js +131 -0
- package/dist/control-plane/startup-recovery.d.ts +19 -0
- package/dist/control-plane/startup-recovery.js +113 -0
- package/dist/control-plane/task-compile-continuation.d.ts +25 -0
- package/dist/control-plane/task-compile-continuation.js +127 -0
- package/dist/control-plane/task-compile-output.d.ts +29 -0
- package/dist/control-plane/task-compile-output.js +122 -0
- package/dist/control-plane/task-compile-start.d.ts +43 -0
- package/dist/control-plane/task-compile-start.js +280 -0
- package/dist/control-plane/task-proposal.d.ts +3 -0
- package/dist/control-plane/task-proposal.js +37 -0
- package/dist/control-plane/types.d.ts +155 -0
- package/dist/control-plane/types.js +2 -0
- package/dist/control-plane/workflows/index.d.ts +4 -0
- package/dist/control-plane/workflows/index.js +4 -0
- package/dist/control-plane/workflows/openai.d.ts +34 -0
- package/dist/control-plane/workflows/openai.js +411 -0
- package/dist/control-plane/workflows/structured-output-schemas.d.ts +9 -0
- package/dist/control-plane/workflows/structured-output-schemas.js +289 -0
- package/dist/control-plane/workflows/structured-output-validators.d.ts +15 -0
- package/dist/control-plane/workflows/structured-output-validators.js +295 -0
- package/dist/control-plane/workflows/structured-output.d.ts +3 -0
- package/dist/control-plane/workflows/structured-output.js +3 -0
- package/dist/control-plane/workflows/types.d.ts +274 -0
- package/dist/control-plane/workflows/types.js +2 -0
- package/dist/control-plane/worklist-terminal-feedback.d.ts +15 -0
- package/dist/control-plane/worklist-terminal-feedback.js +135 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +32 -0
- package/dist/procedure-engine/index.d.ts +56 -0
- package/dist/procedure-engine/index.js +163 -0
- package/dist/project-brief/index.d.ts +4 -0
- package/dist/project-brief/index.js +3 -0
- package/dist/project-brief/repository.d.ts +5 -0
- package/dist/project-brief/repository.js +97 -0
- package/dist/project-brief/source.d.ts +8 -0
- package/dist/project-brief/source.js +75 -0
- package/dist/project-brief/types.d.ts +40 -0
- package/dist/project-brief/types.js +2 -0
- package/dist/project-docs/context.d.ts +34 -0
- package/dist/project-docs/context.js +86 -0
- package/dist/project-timeline/index.d.ts +20 -0
- package/dist/project-timeline/index.js +100 -0
- package/dist/prompt-templates/index.d.ts +13 -0
- package/dist/prompt-templates/index.js +86 -0
- package/dist/provider-usage/index.d.ts +37 -0
- package/dist/provider-usage/index.js +227 -0
- package/dist/providers/index.d.ts +2 -0
- package/dist/providers/index.js +2 -0
- package/dist/providers/openai/app-server/json-rpc.d.ts +71 -0
- package/dist/providers/openai/app-server/json-rpc.js +298 -0
- package/dist/providers/openai/app-server/permission-profile.d.ts +64 -0
- package/dist/providers/openai/app-server/permission-profile.js +67 -0
- package/dist/providers/openai/app-server/provider-config.d.ts +10 -0
- package/dist/providers/openai/app-server/provider-config.js +39 -0
- package/dist/providers/openai/app-server/read-only-procedure.d.ts +68 -0
- package/dist/providers/openai/app-server/read-only-procedure.js +293 -0
- package/dist/providers/openai/app-server/runtime-helpers.d.ts +20 -0
- package/dist/providers/openai/app-server/runtime-helpers.js +151 -0
- package/dist/providers/openai/app-server/skills.d.ts +82 -0
- package/dist/providers/openai/app-server/skills.js +222 -0
- package/dist/providers/openai/app-server/smoke-cli.d.ts +2 -0
- package/dist/providers/openai/app-server/smoke-cli.js +42 -0
- package/dist/providers/openai/app-server/smoke-helpers.d.ts +19 -0
- package/dist/providers/openai/app-server/smoke-helpers.js +125 -0
- package/dist/providers/openai/app-server/smoke-provider-input.d.ts +6 -0
- package/dist/providers/openai/app-server/smoke-provider-input.js +20 -0
- package/dist/providers/openai/app-server/smoke-types.d.ts +49 -0
- package/dist/providers/openai/app-server/smoke-types.js +20 -0
- package/dist/providers/openai/app-server/smoke.d.ts +9 -0
- package/dist/providers/openai/app-server/smoke.js +157 -0
- package/dist/providers/openai/app-server/workspace-write-run.d.ts +87 -0
- package/dist/providers/openai/app-server/workspace-write-run.js +379 -0
- package/dist/providers/openai/chat-assistant.d.ts +34 -0
- package/dist/providers/openai/chat-assistant.js +72 -0
- package/dist/providers/openai/codex-app-server.d.ts +126 -0
- package/dist/providers/openai/codex-app-server.js +147 -0
- package/dist/providers/openai/credential-store.d.ts +31 -0
- package/dist/providers/openai/credential-store.js +143 -0
- package/dist/providers/openai/credential-validation.d.ts +45 -0
- package/dist/providers/openai/credential-validation.js +190 -0
- package/dist/providers/openai/index.d.ts +13 -0
- package/dist/providers/openai/index.js +13 -0
- package/dist/providers/openai/machine-local-files.d.ts +19 -0
- package/dist/providers/openai/machine-local-files.js +55 -0
- package/dist/providers/openai/model-config.d.ts +4 -0
- package/dist/providers/openai/model-config.js +4 -0
- package/dist/providers/openai/provider-config-errors.d.ts +6 -0
- package/dist/providers/openai/provider-config-errors.js +13 -0
- package/dist/providers/openai/provider-config-shape.d.ts +3 -0
- package/dist/providers/openai/provider-config-shape.js +108 -0
- package/dist/providers/openai/provider-config-toml.d.ts +13 -0
- package/dist/providers/openai/provider-config-toml.js +113 -0
- package/dist/providers/openai/provider-config.d.ts +73 -0
- package/dist/providers/openai/provider-config.js +117 -0
- package/dist/providers/openai/provider-setup.d.ts +31 -0
- package/dist/providers/openai/provider-setup.js +88 -0
- package/dist/providers/openai/sdk-procedure-runner.d.ts +70 -0
- package/dist/providers/openai/sdk-procedure-runner.js +123 -0
- package/dist/providers/openai/token-usage.d.ts +11 -0
- package/dist/providers/openai/token-usage.js +90 -0
- package/dist/run-engine/index.d.ts +61 -0
- package/dist/run-engine/index.js +140 -0
- package/dist/run-pipeline/candidate-diff.d.ts +3 -0
- package/dist/run-pipeline/candidate-diff.js +10 -0
- package/dist/run-pipeline/openai.d.ts +41 -0
- package/dist/run-pipeline/openai.js +548 -0
- package/dist/run-pipeline/promotion-reconcile.d.ts +13 -0
- package/dist/run-pipeline/promotion-reconcile.js +138 -0
- package/dist/run-pipeline/result-projections.d.ts +39 -0
- package/dist/run-pipeline/result-projections.js +115 -0
- package/dist/run-pipeline/task-run-invocation.d.ts +6 -0
- package/dist/run-pipeline/task-run-invocation.js +130 -0
- package/dist/run-pipeline/task-run-output.d.ts +38 -0
- package/dist/run-pipeline/task-run-output.js +146 -0
- package/dist/server-shell/cli/args.d.ts +7 -0
- package/dist/server-shell/cli/args.js +30 -0
- package/dist/server-shell/cli/cli.d.ts +3 -0
- package/dist/server-shell/cli/cli.js +57 -0
- package/dist/server-shell/cli/errors.d.ts +9 -0
- package/dist/server-shell/cli/errors.js +53 -0
- package/dist/server-shell/cli/git-bootstrap.d.ts +24 -0
- package/dist/server-shell/cli/git-bootstrap.js +246 -0
- package/dist/server-shell/cli/host-lifecycle.d.ts +45 -0
- package/dist/server-shell/cli/host-lifecycle.js +298 -0
- package/dist/server-shell/cli/host-relay-status.d.ts +6 -0
- package/dist/server-shell/cli/host-relay-status.js +43 -0
- package/dist/server-shell/cli/host-runtime-endpoint.d.ts +22 -0
- package/dist/server-shell/cli/host-runtime-endpoint.js +120 -0
- package/dist/server-shell/cli/host-server-runtime.d.ts +30 -0
- package/dist/server-shell/cli/host-server-runtime.js +432 -0
- package/dist/server-shell/cli/index.d.ts +8 -0
- package/dist/server-shell/cli/index.js +8 -0
- package/dist/server-shell/cli/launch.d.ts +45 -0
- package/dist/server-shell/cli/launch.js +115 -0
- package/dist/server-shell/cli/machine-local.d.ts +69 -0
- package/dist/server-shell/cli/machine-local.js +223 -0
- package/dist/server-shell/cli/project-identity.d.ts +20 -0
- package/dist/server-shell/cli/project-identity.js +87 -0
- package/dist/server-shell/cli/relay-registration.d.ts +31 -0
- package/dist/server-shell/cli/relay-registration.js +61 -0
- package/dist/server-shell/command-idempotency/index.d.ts +44 -0
- package/dist/server-shell/command-idempotency/index.js +155 -0
- package/dist/server-shell/dev-runner/cli.d.ts +2 -0
- package/dist/server-shell/dev-runner/cli.js +10 -0
- package/dist/server-shell/dev-runner/config.d.ts +38 -0
- package/dist/server-shell/dev-runner/config.js +277 -0
- package/dist/server-shell/dev-runner/host-cli.d.ts +2 -0
- package/dist/server-shell/dev-runner/host-cli.js +22 -0
- package/dist/server-shell/dev-runner/index.d.ts +3 -0
- package/dist/server-shell/dev-runner/index.js +3 -0
- package/dist/server-shell/dev-runner/runner.d.ts +30 -0
- package/dist/server-shell/dev-runner/runner.js +236 -0
- package/dist/server-shell/http/create-server.d.ts +18 -0
- package/dist/server-shell/http/create-server.js +51 -0
- package/dist/server-shell/http/host-tunnel.d.ts +15 -0
- package/dist/server-shell/http/host-tunnel.js +154 -0
- package/dist/server-shell/http/logger.d.ts +7 -0
- package/dist/server-shell/http/logger.js +19 -0
- package/dist/server-shell/http/routes/agent-context-auth.d.ts +41 -0
- package/dist/server-shell/http/routes/agent-context-auth.js +73 -0
- package/dist/server-shell/http/routes/agent-context-errors.d.ts +6 -0
- package/dist/server-shell/http/routes/agent-context-errors.js +9 -0
- package/dist/server-shell/http/routes/agent-context-messages-routes.d.ts +4 -0
- package/dist/server-shell/http/routes/agent-context-messages-routes.js +74 -0
- package/dist/server-shell/http/routes/agent-context-project-doc-routes.d.ts +4 -0
- package/dist/server-shell/http/routes/agent-context-project-doc-routes.js +86 -0
- package/dist/server-shell/http/routes/agent-context-project-docs.d.ts +40 -0
- package/dist/server-shell/http/routes/agent-context-project-docs.js +98 -0
- package/dist/server-shell/http/routes/agent-context-query.d.ts +31 -0
- package/dist/server-shell/http/routes/agent-context-query.js +72 -0
- package/dist/server-shell/http/routes/agent-context-reference-routes.d.ts +4 -0
- package/dist/server-shell/http/routes/agent-context-reference-routes.js +82 -0
- package/dist/server-shell/http/routes/agent-context-references.d.ts +21 -0
- package/dist/server-shell/http/routes/agent-context-references.js +85 -0
- package/dist/server-shell/http/routes/agent-context-shared.d.ts +34 -0
- package/dist/server-shell/http/routes/agent-context-shared.js +44 -0
- package/dist/server-shell/http/routes/agent-context-skills-routes.d.ts +4 -0
- package/dist/server-shell/http/routes/agent-context-skills-routes.js +85 -0
- package/dist/server-shell/http/routes/agent-context-workspace-routes.d.ts +4 -0
- package/dist/server-shell/http/routes/agent-context-workspace-routes.js +130 -0
- package/dist/server-shell/http/routes/agent-context.d.ts +8 -0
- package/dist/server-shell/http/routes/agent-context.js +16 -0
- package/dist/server-shell/http/routes/health.d.ts +7 -0
- package/dist/server-shell/http/routes/health.js +41 -0
- package/dist/server-shell/http/routes/local-control.d.ts +40 -0
- package/dist/server-shell/http/routes/local-control.js +260 -0
- package/dist/server-shell/http/routes/project-api/approval-routes.d.ts +4 -0
- package/dist/server-shell/http/routes/project-api/approval-routes.js +64 -0
- package/dist/server-shell/http/routes/project-api/artifacts-routes.d.ts +8 -0
- package/dist/server-shell/http/routes/project-api/artifacts-routes.js +166 -0
- package/dist/server-shell/http/routes/project-api/clarification-routes.d.ts +4 -0
- package/dist/server-shell/http/routes/project-api/clarification-routes.js +150 -0
- package/dist/server-shell/http/routes/project-api/constants.d.ts +3 -0
- package/dist/server-shell/http/routes/project-api/constants.js +3 -0
- package/dist/server-shell/http/routes/project-api/errors.d.ts +26 -0
- package/dist/server-shell/http/routes/project-api/errors.js +41 -0
- package/dist/server-shell/http/routes/project-api/events-stream.d.ts +11 -0
- package/dist/server-shell/http/routes/project-api/events-stream.js +55 -0
- package/dist/server-shell/http/routes/project-api/execution-routes.d.ts +4 -0
- package/dist/server-shell/http/routes/project-api/execution-routes.js +92 -0
- package/dist/server-shell/http/routes/project-api/headers.d.ts +2 -0
- package/dist/server-shell/http/routes/project-api/headers.js +7 -0
- package/dist/server-shell/http/routes/project-api/invalidations.d.ts +10 -0
- package/dist/server-shell/http/routes/project-api/invalidations.js +57 -0
- package/dist/server-shell/http/routes/project-api/messages-routes.d.ts +8 -0
- package/dist/server-shell/http/routes/project-api/messages-routes.js +80 -0
- package/dist/server-shell/http/routes/project-api/openapi-approval-routes.d.ts +128 -0
- package/dist/server-shell/http/routes/project-api/openapi-approval-routes.js +32 -0
- package/dist/server-shell/http/routes/project-api/openapi-artifacts-routes.d.ts +51 -0
- package/dist/server-shell/http/routes/project-api/openapi-artifacts-routes.js +56 -0
- package/dist/server-shell/http/routes/project-api/openapi-collaboration-routes.d.ts +466 -0
- package/dist/server-shell/http/routes/project-api/openapi-collaboration-routes.js +165 -0
- package/dist/server-shell/http/routes/project-api/openapi-diagnostic-routes.d.ts +16 -0
- package/dist/server-shell/http/routes/project-api/openapi-diagnostic-routes.js +17 -0
- package/dist/server-shell/http/routes/project-api/openapi-execution-routes.d.ts +215 -0
- package/dist/server-shell/http/routes/project-api/openapi-execution-routes.js +75 -0
- package/dist/server-shell/http/routes/project-api/openapi-path-parameters.d.ts +9 -0
- package/dist/server-shell/http/routes/project-api/openapi-path-parameters.js +18 -0
- package/dist/server-shell/http/routes/project-api/openapi-skills-routes.d.ts +60 -0
- package/dist/server-shell/http/routes/project-api/openapi-skills-routes.js +51 -0
- package/dist/server-shell/http/routes/project-api/openapi-timeline-routes.d.ts +115 -0
- package/dist/server-shell/http/routes/project-api/openapi-timeline-routes.js +17 -0
- package/dist/server-shell/http/routes/project-api/openapi-viewer-routes.d.ts +323 -0
- package/dist/server-shell/http/routes/project-api/openapi-viewer-routes.js +120 -0
- package/dist/server-shell/http/routes/project-api/openapi-workspace-routes.d.ts +1317 -0
- package/dist/server-shell/http/routes/project-api/openapi-workspace-routes.js +95 -0
- package/dist/server-shell/http/routes/project-api/openapi.d.ts +2457 -0
- package/dist/server-shell/http/routes/project-api/openapi.js +30 -0
- package/dist/server-shell/http/routes/project-api/payload-validation.d.ts +6 -0
- package/dist/server-shell/http/routes/project-api/payload-validation.js +36 -0
- package/dist/server-shell/http/routes/project-api/project-docs-helpers.d.ts +9 -0
- package/dist/server-shell/http/routes/project-api/project-docs-helpers.js +17 -0
- package/dist/server-shell/http/routes/project-api/project-docs-routes.d.ts +8 -0
- package/dist/server-shell/http/routes/project-api/project-docs-routes.js +151 -0
- package/dist/server-shell/http/routes/project-api/project-timeline-projection.d.ts +8 -0
- package/dist/server-shell/http/routes/project-api/project-timeline-projection.js +658 -0
- package/dist/server-shell/http/routes/project-api/project-timeline-routes.d.ts +4 -0
- package/dist/server-shell/http/routes/project-api/project-timeline-routes.js +23 -0
- package/dist/server-shell/http/routes/project-api/read-state-routes.d.ts +8 -0
- package/dist/server-shell/http/routes/project-api/read-state-routes.js +82 -0
- package/dist/server-shell/http/routes/project-api/reference-files-routes.d.ts +8 -0
- package/dist/server-shell/http/routes/project-api/reference-files-routes.js +184 -0
- package/dist/server-shell/http/routes/project-api/reference-files.d.ts +17 -0
- package/dist/server-shell/http/routes/project-api/reference-files.js +212 -0
- package/dist/server-shell/http/routes/project-api/repo-projection.d.ts +3 -0
- package/dist/server-shell/http/routes/project-api/repo-projection.js +58 -0
- package/dist/server-shell/http/routes/project-api/schemas.d.ts +1351 -0
- package/dist/server-shell/http/routes/project-api/schemas.js +441 -0
- package/dist/server-shell/http/routes/project-api/session-requirements.d.ts +10 -0
- package/dist/server-shell/http/routes/project-api/session-requirements.js +60 -0
- package/dist/server-shell/http/routes/project-api/skills-helpers.d.ts +7 -0
- package/dist/server-shell/http/routes/project-api/skills-helpers.js +48 -0
- package/dist/server-shell/http/routes/project-api/skills-routes.d.ts +8 -0
- package/dist/server-shell/http/routes/project-api/skills-routes.js +185 -0
- package/dist/server-shell/http/routes/project-api/staged-uploads.d.ts +14 -0
- package/dist/server-shell/http/routes/project-api/staged-uploads.js +149 -0
- package/dist/server-shell/http/routes/project-api/system-routes.d.ts +8 -0
- package/dist/server-shell/http/routes/project-api/system-routes.js +141 -0
- package/dist/server-shell/http/routes/project-api/types.d.ts +137 -0
- package/dist/server-shell/http/routes/project-api/types.js +2 -0
- package/dist/server-shell/http/routes/project-api/viewer-projections.d.ts +17 -0
- package/dist/server-shell/http/routes/project-api/viewer-projections.js +102 -0
- package/dist/server-shell/http/routes/project-api/viewer-routes.d.ts +4 -0
- package/dist/server-shell/http/routes/project-api/viewer-routes.js +100 -0
- package/dist/server-shell/http/routes/project-api/workflow-routes.d.ts +4 -0
- package/dist/server-shell/http/routes/project-api/workflow-routes.js +85 -0
- package/dist/server-shell/http/routes/project-api/workspace-projections.d.ts +5 -0
- package/dist/server-shell/http/routes/project-api/workspace-projections.js +103 -0
- package/dist/server-shell/http/routes/project-api.d.ts +8 -0
- package/dist/server-shell/http/routes/project-api.js +34 -0
- package/dist/server-shell/http/sse-replay-buffer.d.ts +54 -0
- package/dist/server-shell/http/sse-replay-buffer.js +110 -0
- package/dist/server-shell/http/sse.d.ts +12 -0
- package/dist/server-shell/http/sse.js +22 -0
- package/dist/server-shell/http/static-web.d.ts +6 -0
- package/dist/server-shell/http/static-web.js +52 -0
- package/dist/server-shell/http/validation.d.ts +13 -0
- package/dist/server-shell/http/validation.js +136 -0
- package/dist/server-shell/http/workspace-events.d.ts +38 -0
- package/dist/server-shell/http/workspace-events.js +98 -0
- package/dist/server-shell/session/relay-session-context.d.ts +25 -0
- package/dist/server-shell/session/relay-session-context.js +49 -0
- package/dist/server-shell/smoke/e2e-client.d.ts +59 -0
- package/dist/server-shell/smoke/e2e-client.js +304 -0
- package/dist/server-shell/smoke/index.d.ts +2 -0
- package/dist/server-shell/smoke/index.js +2 -0
- package/dist/skills/constants.d.ts +8 -0
- package/dist/skills/constants.js +9 -0
- package/dist/skills/errors.d.ts +6 -0
- package/dist/skills/errors.js +9 -0
- package/dist/skills/index.d.ts +41 -0
- package/dist/skills/index.js +171 -0
- package/dist/skills/metadata.d.ts +8 -0
- package/dist/skills/metadata.js +80 -0
- package/dist/skills/zip-import.d.ts +18 -0
- package/dist/skills/zip-import.js +241 -0
- package/dist/store/command-recovery.d.ts +26 -0
- package/dist/store/command-recovery.js +71 -0
- package/dist/store/index.d.ts +6 -0
- package/dist/store/index.js +6 -0
- package/dist/store/lifecycle.d.ts +23 -0
- package/dist/store/lifecycle.js +53 -0
- package/dist/store/metadata.d.ts +18 -0
- package/dist/store/metadata.js +30 -0
- package/dist/store/migrations.d.ts +20 -0
- package/dist/store/migrations.js +76 -0
- package/dist/store/sqlite.d.ts +11 -0
- package/dist/store/sqlite.js +21 -0
- package/dist/workspace-ops/constants.d.ts +15 -0
- package/dist/workspace-ops/constants.js +20 -0
- package/dist/workspace-ops/errors.d.ts +8 -0
- package/dist/workspace-ops/errors.js +33 -0
- package/dist/workspace-ops/git.d.ts +13 -0
- package/dist/workspace-ops/git.js +53 -0
- package/dist/workspace-ops/index.d.ts +11 -0
- package/dist/workspace-ops/index.js +9 -0
- package/dist/workspace-ops/mainline.d.ts +2 -0
- package/dist/workspace-ops/mainline.js +16 -0
- package/dist/workspace-ops/project-doc-templates.d.ts +12 -0
- package/dist/workspace-ops/project-doc-templates.js +180 -0
- package/dist/workspace-ops/project-docs.d.ts +7 -0
- package/dist/workspace-ops/project-docs.js +156 -0
- package/dist/workspace-ops/reference-files.d.ts +3 -0
- package/dist/workspace-ops/reference-files.js +137 -0
- package/dist/workspace-ops/reference-metadata.d.ts +13 -0
- package/dist/workspace-ops/reference-metadata.js +86 -0
- package/dist/workspace-ops/reference-summaries.d.ts +17 -0
- package/dist/workspace-ops/reference-summaries.js +298 -0
- package/dist/workspace-ops/run-workspaces.d.ts +18 -0
- package/dist/workspace-ops/run-workspaces.js +271 -0
- package/dist/workspace-ops/types.d.ts +219 -0
- package/dist/workspace-ops/types.js +2 -0
- package/dist/workspace-ops/viewer-file.d.ts +4 -0
- package/dist/workspace-ops/viewer-file.js +207 -0
- package/dist/workspace-ops/viewer-git.d.ts +20 -0
- package/dist/workspace-ops/viewer-git.js +111 -0
- package/dist/workspace-ops/viewer-paths.d.ts +3 -0
- package/dist/workspace-ops/viewer-paths.js +13 -0
- package/dist/workspace-ops/viewer-tree.d.ts +9 -0
- package/dist/workspace-ops/viewer-tree.js +144 -0
- package/dist/workspace-ops/viewer.d.ts +5 -0
- package/dist/workspace-ops/viewer.js +5 -0
- package/migrations/0001_init.sql +674 -0
- package/migrations/0002_allow_sealed_round_successor_note.sql +14 -0
- package/migrations/0003_drop_scratchpad_source_message_refs.sql +1 -0
- package/migrations/0004_read_state.sql +109 -0
- package/migrations/0005_provider_usage.sql +15 -0
- package/migrations/0006_scratchpad_source_state.sql +29 -0
- package/migrations/0007_workspace_signal_read_state_scopes.sql +74 -0
- package/migrations/0008_provider_usage_anchors.sql +32 -0
- package/migrations/0009_project_timeline_events.sql +33 -0
- package/migrations/0010_project_brief.sql +13 -0
- package/migrations/0011_message_author_avatar.sql +5 -0
- package/migrations/README.md +44 -0
- package/node_modules/@tutti/relay-client/dist/host-control.d.ts +164 -0
- package/node_modules/@tutti/relay-client/dist/host-control.js +284 -0
- package/node_modules/@tutti/relay-client/dist/index.d.ts +3 -0
- package/node_modules/@tutti/relay-client/dist/index.js +3 -0
- package/node_modules/@tutti/relay-client/dist/tunnel-frames.d.ts +8 -0
- package/node_modules/@tutti/relay-client/dist/tunnel-frames.js +124 -0
- package/node_modules/@tutti/relay-client/dist/tunnel-types.d.ts +61 -0
- package/node_modules/@tutti/relay-client/dist/tunnel-types.js +2 -0
- package/node_modules/@tutti/relay-client/dist/tunnel.d.ts +4 -0
- package/node_modules/@tutti/relay-client/dist/tunnel.js +144 -0
- package/node_modules/@tutti/relay-client/package.json +18 -0
- package/node_modules/@tutti/shared/dist/domain/index.d.ts +59 -0
- package/node_modules/@tutti/shared/dist/domain/index.js +37 -0
- package/node_modules/@tutti/shared/dist/ids/index.d.ts +85 -0
- package/node_modules/@tutti/shared/dist/ids/index.js +88 -0
- package/node_modules/@tutti/shared/dist/index.d.ts +6 -0
- package/node_modules/@tutti/shared/dist/index.js +6 -0
- package/node_modules/@tutti/shared/dist/schemas/api/approvals.d.ts +307 -0
- package/node_modules/@tutti/shared/dist/schemas/api/approvals.js +110 -0
- package/node_modules/@tutti/shared/dist/schemas/api/artifacts.d.ts +173 -0
- package/node_modules/@tutti/shared/dist/schemas/api/artifacts.js +107 -0
- package/node_modules/@tutti/shared/dist/schemas/api/clarifications.d.ts +704 -0
- package/node_modules/@tutti/shared/dist/schemas/api/clarifications.js +224 -0
- package/node_modules/@tutti/shared/dist/schemas/api/index.d.ts +18 -0
- package/node_modules/@tutti/shared/dist/schemas/api/index.js +17 -0
- package/node_modules/@tutti/shared/dist/schemas/api/messages.d.ts +370 -0
- package/node_modules/@tutti/shared/dist/schemas/api/messages.js +134 -0
- package/node_modules/@tutti/shared/dist/schemas/api/openapi.d.ts +32 -0
- package/node_modules/@tutti/shared/dist/schemas/api/openapi.js +100 -0
- package/node_modules/@tutti/shared/dist/schemas/api/primitives.d.ts +109 -0
- package/node_modules/@tutti/shared/dist/schemas/api/primitives.js +174 -0
- package/node_modules/@tutti/shared/dist/schemas/api/project-timeline.d.ts +149 -0
- package/node_modules/@tutti/shared/dist/schemas/api/project-timeline.js +44 -0
- package/node_modules/@tutti/shared/dist/schemas/api/provider-config.d.ts +21 -0
- package/node_modules/@tutti/shared/dist/schemas/api/provider-config.js +33 -0
- package/node_modules/@tutti/shared/dist/schemas/api/provider-usage.d.ts +87 -0
- package/node_modules/@tutti/shared/dist/schemas/api/provider-usage.js +48 -0
- package/node_modules/@tutti/shared/dist/schemas/api/read-state.d.ts +89 -0
- package/node_modules/@tutti/shared/dist/schemas/api/read-state.js +39 -0
- package/node_modules/@tutti/shared/dist/schemas/api/runtime-events.d.ts +484 -0
- package/node_modules/@tutti/shared/dist/schemas/api/runtime-events.js +185 -0
- package/node_modules/@tutti/shared/dist/schemas/api/skills.d.ts +88 -0
- package/node_modules/@tutti/shared/dist/schemas/api/skills.js +71 -0
- package/node_modules/@tutti/shared/dist/schemas/api/types.d.ts +253 -0
- package/node_modules/@tutti/shared/dist/schemas/api/types.js +2 -0
- package/node_modules/@tutti/shared/dist/schemas/api/uploads.d.ts +103 -0
- package/node_modules/@tutti/shared/dist/schemas/api/uploads.js +78 -0
- package/node_modules/@tutti/shared/dist/schemas/api/viewer-reference.d.ts +484 -0
- package/node_modules/@tutti/shared/dist/schemas/api/viewer-reference.js +267 -0
- package/node_modules/@tutti/shared/dist/schemas/api/work-items.d.ts +264 -0
- package/node_modules/@tutti/shared/dist/schemas/api/work-items.js +196 -0
- package/node_modules/@tutti/shared/dist/schemas/api/workspace-commands.d.ts +179 -0
- package/node_modules/@tutti/shared/dist/schemas/api/workspace-commands.js +137 -0
- package/node_modules/@tutti/shared/dist/schemas/domain/index.d.ts +31 -0
- package/node_modules/@tutti/shared/dist/schemas/domain/index.js +49 -0
- package/node_modules/@tutti/shared/dist/schemas/internal/index.d.ts +46 -0
- package/node_modules/@tutti/shared/dist/schemas/internal/index.js +46 -0
- package/node_modules/@tutti/shared/dist/utils/command-idempotency/index.d.ts +40 -0
- package/node_modules/@tutti/shared/dist/utils/command-idempotency/index.js +100 -0
- package/node_modules/@tutti/shared/dist/utils/index.d.ts +5 -0
- package/node_modules/@tutti/shared/dist/utils/index.js +5 -0
- package/node_modules/@tutti/shared/dist/utils/logging/index.d.ts +34 -0
- package/node_modules/@tutti/shared/dist/utils/logging/index.js +130 -0
- package/node_modules/@tutti/shared/dist/utils/path-policy/index.d.ts +13 -0
- package/node_modules/@tutti/shared/dist/utils/path-policy/index.js +80 -0
- package/node_modules/@tutti/shared/dist/utils/redaction/index.d.ts +19 -0
- package/node_modules/@tutti/shared/dist/utils/redaction/index.js +158 -0
- package/node_modules/@tutti/shared/package.json +63 -0
- package/package.json +47 -0
- package/prompts/README.md +36 -0
- package/prompts/chat-assistant.md +43 -0
- package/prompts/codex/README.md +13 -0
- package/prompts/codex/no-write-smoke.md +35 -0
- package/prompts/procedures/README.md +38 -0
- package/prompts/procedures/context-sync.md +66 -0
- package/prompts/procedures/follow-up-check.md +83 -0
- package/prompts/procedures/project-brief-refresh.md +79 -0
- package/prompts/procedures/project-context-bootstrap.md +58 -0
- package/prompts/procedures/reference-file-summary.md +49 -0
- package/prompts/procedures/scratchpad-refresh.md +83 -0
- package/prompts/procedures/task-compile.md +116 -0
- package/prompts/prompt-flow-experiment-plan.md +203 -0
- package/prompts/prompt-flow-map.md +478 -0
- package/prompts/runs/README.md +17 -0
- package/prompts/runs/task-continuation.md +148 -0
- package/prompts/runs/task-retry.md +153 -0
- package/prompts/runs/task-run.md +135 -0
- package/prompts/skills/README.md +25 -0
- package/prompts/skills/read-main-chat/README.md +8 -0
- package/prompts/skills/read-main-chat/SKILL.md +18 -0
- package/prompts/skills/read-project-docs/README.md +13 -0
- package/prompts/skills/read-project-docs/SKILL.md +42 -0
- package/prompts/skills/read-references/README.md +9 -0
- package/prompts/skills/read-references/SKILL.md +26 -0
- package/prompts/skills/read-scratchpad/README.md +8 -0
- package/prompts/skills/read-scratchpad/SKILL.md +16 -0
- package/prompts/skills/read-user-skills/README.md +7 -0
- package/prompts/skills/read-user-skills/SKILL.md +22 -0
- package/prompts/skills/read-worklist/README.md +9 -0
- package/prompts/skills/read-worklist/SKILL.md +20 -0
- package/web/assets/Tutti-B7gEyTp1.png +0 -0
- package/web/assets/Tutti-square-BqFU7F0D.png +0 -0
- package/web/assets/index-CWkBgHap.js +29 -0
- package/web/assets/index-D8xJY8Gr.css +1 -0
- package/web/index.html +13 -0
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
import { Type } from "@sinclair/typebox";
|
|
2
|
+
import { ActivityRefSchema, ApprovalRequestIdSchema, ClarificationRoundRefSchema, ClarificationThreadRefSchema, EventRefSchema, IsoDateTimeStringSchema, RecoverySummaryIdSchema, RunResultIdSchema, TaskIdSchema, TaskModuleIdSchema, WorkflowInvocationRefSchema, WorkflowKindSchema, } from "../domain/index.js";
|
|
3
|
+
import { ProviderConfigProjectionSchema } from "./provider-config.js";
|
|
4
|
+
import { ActiveApprovalProjectionSchema } from "./approvals.js";
|
|
5
|
+
import { NonEmptyStringSchema, SseReplayWindowPolicySchema } from "./primitives.js";
|
|
6
|
+
import { ResultAnchorSchema, RunLineageSchema, ScratchpadProjectionSchema, TaskDetailProjectionSchema, TaskProjectionSchema, } from "./work-items.js";
|
|
7
|
+
export const ExecutionStatusKindSchema = Type.Union([
|
|
8
|
+
Type.Literal("idle"),
|
|
9
|
+
Type.Literal("running"),
|
|
10
|
+
Type.Literal("pending"),
|
|
11
|
+
Type.Literal("failed"),
|
|
12
|
+
]);
|
|
13
|
+
export const ProcedureLaneSchema = Type.Union([
|
|
14
|
+
Type.Literal("foreground"),
|
|
15
|
+
Type.Literal("scratchpad_background"),
|
|
16
|
+
]);
|
|
17
|
+
export const ExecutionActivitySummarySchema = Type.Object({
|
|
18
|
+
activity_ref: ActivityRefSchema,
|
|
19
|
+
activity_kind: Type.Union([Type.Literal("run"), Type.Literal("procedure")]),
|
|
20
|
+
workflow_ref: Type.Optional(WorkflowInvocationRefSchema),
|
|
21
|
+
workflow_kind: Type.Optional(WorkflowKindSchema),
|
|
22
|
+
lane: Type.Optional(ProcedureLaneSchema),
|
|
23
|
+
started_at: Type.Optional(IsoDateTimeStringSchema),
|
|
24
|
+
}, { additionalProperties: false });
|
|
25
|
+
export const ExecutionStatusProjectionSchema = Type.Object({
|
|
26
|
+
status: ExecutionStatusKindSchema,
|
|
27
|
+
summary: Type.String(),
|
|
28
|
+
active_task: Type.Optional(TaskProjectionSchema),
|
|
29
|
+
active_activity: Type.Optional(ExecutionActivitySummarySchema),
|
|
30
|
+
active_activities: Type.Optional(Type.Array(ExecutionActivitySummarySchema)),
|
|
31
|
+
blocked_by: Type.Optional(Type.Union([
|
|
32
|
+
Type.Object({
|
|
33
|
+
kind: Type.Literal("clarification"),
|
|
34
|
+
thread_id: ClarificationThreadRefSchema,
|
|
35
|
+
round_id: ClarificationRoundRefSchema,
|
|
36
|
+
}, { additionalProperties: false }),
|
|
37
|
+
Type.Object({
|
|
38
|
+
kind: Type.Literal("approval"),
|
|
39
|
+
approval_id: ApprovalRequestIdSchema,
|
|
40
|
+
}, { additionalProperties: false }),
|
|
41
|
+
])),
|
|
42
|
+
last_conclusion: Type.Optional(Type.Object({
|
|
43
|
+
kind: Type.Union([
|
|
44
|
+
Type.Literal("completed"),
|
|
45
|
+
Type.Literal("failed"),
|
|
46
|
+
Type.Literal("needs_human"),
|
|
47
|
+
Type.Literal("recovered"),
|
|
48
|
+
]),
|
|
49
|
+
summary: Type.String(),
|
|
50
|
+
task_id: Type.Optional(TaskIdSchema),
|
|
51
|
+
activity_ref: Type.Optional(ActivityRefSchema),
|
|
52
|
+
workflow_ref: Type.Optional(WorkflowInvocationRefSchema),
|
|
53
|
+
occurred_at: IsoDateTimeStringSchema,
|
|
54
|
+
}, { additionalProperties: false })),
|
|
55
|
+
updated_at: IsoDateTimeStringSchema,
|
|
56
|
+
}, { additionalProperties: false });
|
|
57
|
+
export const ActivityProjectionSchema = Type.Object({
|
|
58
|
+
activity_ref: ActivityRefSchema,
|
|
59
|
+
activity_kind: Type.Union([Type.Literal("run"), Type.Literal("procedure")]),
|
|
60
|
+
status: Type.Union([
|
|
61
|
+
Type.Literal("running"),
|
|
62
|
+
Type.Literal("needs_human"),
|
|
63
|
+
Type.Literal("finished"),
|
|
64
|
+
Type.Literal("failed"),
|
|
65
|
+
Type.Literal("interrupted"),
|
|
66
|
+
]),
|
|
67
|
+
title: NonEmptyStringSchema,
|
|
68
|
+
summary: Type.String(),
|
|
69
|
+
task_id: Type.Optional(TaskIdSchema),
|
|
70
|
+
workflow_ref: Type.Optional(WorkflowInvocationRefSchema),
|
|
71
|
+
workflow_kind: Type.Optional(WorkflowKindSchema),
|
|
72
|
+
lane: Type.Optional(ProcedureLaneSchema),
|
|
73
|
+
run_lineage: Type.Optional(RunLineageSchema),
|
|
74
|
+
started_at: Type.Optional(IsoDateTimeStringSchema),
|
|
75
|
+
ended_at: Type.Optional(IsoDateTimeStringSchema),
|
|
76
|
+
latest_event_ref: Type.Optional(EventRefSchema),
|
|
77
|
+
result_anchor: Type.Optional(ResultAnchorSchema),
|
|
78
|
+
}, { additionalProperties: false });
|
|
79
|
+
export const ActivityEventProjectionSchema = Type.Object({
|
|
80
|
+
event_ref: EventRefSchema,
|
|
81
|
+
activity_ref: ActivityRefSchema,
|
|
82
|
+
event_kind: Type.Union([
|
|
83
|
+
Type.Literal("started"),
|
|
84
|
+
Type.Literal("progress"),
|
|
85
|
+
Type.Literal("needs_human"),
|
|
86
|
+
Type.Literal("artifact_snapshot"),
|
|
87
|
+
Type.Literal("finished"),
|
|
88
|
+
Type.Literal("failed"),
|
|
89
|
+
]),
|
|
90
|
+
occurred_at: IsoDateTimeStringSchema,
|
|
91
|
+
summary: Type.String(),
|
|
92
|
+
payload: Type.Optional(Type.Object({
|
|
93
|
+
progress: Type.Optional(Type.Object({
|
|
94
|
+
message: Type.String(),
|
|
95
|
+
phase: Type.Optional(Type.String()),
|
|
96
|
+
}, { additionalProperties: false })),
|
|
97
|
+
artifact: Type.Optional(Type.Object({
|
|
98
|
+
artifact_kind: Type.Union([
|
|
99
|
+
Type.Literal("scratchpad_snapshot"),
|
|
100
|
+
Type.Literal("task_compile_proposal"),
|
|
101
|
+
Type.Literal("context_sync_findings"),
|
|
102
|
+
Type.Literal("recovery_summary"),
|
|
103
|
+
Type.Literal("run_changed_paths"),
|
|
104
|
+
]),
|
|
105
|
+
summary: Type.String(),
|
|
106
|
+
}, { additionalProperties: false })),
|
|
107
|
+
terminal: Type.Optional(Type.Object({
|
|
108
|
+
result_kind: Type.Union([
|
|
109
|
+
Type.Literal("needs_human"),
|
|
110
|
+
Type.Literal("finished"),
|
|
111
|
+
Type.Literal("failed"),
|
|
112
|
+
]),
|
|
113
|
+
summary: Type.String(),
|
|
114
|
+
}, { additionalProperties: false })),
|
|
115
|
+
}, { additionalProperties: false })),
|
|
116
|
+
}, { additionalProperties: false });
|
|
117
|
+
export const ConnectionReadyEventPayloadSchema = Type.Object({
|
|
118
|
+
server_time: IsoDateTimeStringSchema,
|
|
119
|
+
current_event_cursor: NonEmptyStringSchema,
|
|
120
|
+
replay: Type.Object({
|
|
121
|
+
requested_cursor: Type.Optional(NonEmptyStringSchema),
|
|
122
|
+
status: Type.Union([
|
|
123
|
+
Type.Literal("not_requested"),
|
|
124
|
+
Type.Literal("replayed"),
|
|
125
|
+
Type.Literal("missed"),
|
|
126
|
+
]),
|
|
127
|
+
replayed_event_count: Type.Integer({ minimum: 0 }),
|
|
128
|
+
}, { additionalProperties: false }),
|
|
129
|
+
retry_after_ms: Type.Integer({ minimum: 0 }),
|
|
130
|
+
replay_window: SseReplayWindowPolicySchema,
|
|
131
|
+
}, { additionalProperties: false });
|
|
132
|
+
export const QueryInvalidateEventPayloadSchema = Type.Object({
|
|
133
|
+
reason: Type.Union([
|
|
134
|
+
Type.Literal("replay_missed"),
|
|
135
|
+
Type.Literal("bulk_state_change"),
|
|
136
|
+
Type.Literal("workspace_recovered"),
|
|
137
|
+
Type.Literal("viewer_changed"),
|
|
138
|
+
]),
|
|
139
|
+
message: Type.Optional(Type.String()),
|
|
140
|
+
}, { additionalProperties: false });
|
|
141
|
+
export const ExecutionStatusChangedEventPayloadSchema = Type.Object({
|
|
142
|
+
execution_status: ExecutionStatusProjectionSchema,
|
|
143
|
+
}, { additionalProperties: false });
|
|
144
|
+
export const ApprovalChangedEventPayloadSchema = Type.Object({
|
|
145
|
+
approval: ActiveApprovalProjectionSchema,
|
|
146
|
+
}, { additionalProperties: false });
|
|
147
|
+
export const ActivityEventSsePayloadSchema = Type.Object({
|
|
148
|
+
activity: ActivityProjectionSchema,
|
|
149
|
+
event: ActivityEventProjectionSchema,
|
|
150
|
+
}, { additionalProperties: false });
|
|
151
|
+
export const WorklistChangedEventPayloadSchema = Type.Object({
|
|
152
|
+
reason: Type.Union([
|
|
153
|
+
Type.Literal("task_compile_applied"),
|
|
154
|
+
Type.Literal("task_state_changed"),
|
|
155
|
+
Type.Literal("task_result_recorded"),
|
|
156
|
+
Type.Literal("workspace_recovered"),
|
|
157
|
+
]),
|
|
158
|
+
workflow_ref: Type.Optional(WorkflowInvocationRefSchema),
|
|
159
|
+
activity_ref: Type.Optional(ActivityRefSchema),
|
|
160
|
+
changed_module_ids: Type.Optional(Type.Array(TaskModuleIdSchema)),
|
|
161
|
+
changed_task_ids: Type.Optional(Type.Array(TaskIdSchema)),
|
|
162
|
+
}, { additionalProperties: false });
|
|
163
|
+
export const TaskUpdatedEventPayloadSchema = Type.Object({
|
|
164
|
+
task: TaskProjectionSchema,
|
|
165
|
+
}, { additionalProperties: false });
|
|
166
|
+
export const TaskDetailUpdatedEventPayloadSchema = Type.Object({
|
|
167
|
+
task_id: TaskIdSchema,
|
|
168
|
+
task: Type.Optional(TaskProjectionSchema),
|
|
169
|
+
detail: Type.Optional(TaskDetailProjectionSchema),
|
|
170
|
+
latest_run_result_id: Type.Optional(RunResultIdSchema),
|
|
171
|
+
}, { additionalProperties: false });
|
|
172
|
+
export const ScratchpadUpdatedEventPayloadSchema = Type.Object({
|
|
173
|
+
scratchpad: ScratchpadProjectionSchema,
|
|
174
|
+
activity_ref: Type.Optional(ActivityRefSchema),
|
|
175
|
+
}, { additionalProperties: false });
|
|
176
|
+
export const ProviderConfigChangedEventPayloadSchema = Type.Object({
|
|
177
|
+
provider_config: ProviderConfigProjectionSchema,
|
|
178
|
+
}, { additionalProperties: false });
|
|
179
|
+
export const WorkspaceRecoveredEventPayloadSchema = Type.Object({
|
|
180
|
+
recovery_summary_id: RecoverySummaryIdSchema,
|
|
181
|
+
summary: Type.String(),
|
|
182
|
+
affected_activities: Type.Array(ActivityRefSchema),
|
|
183
|
+
replayed_round_ids: Type.Optional(Type.Array(ClarificationRoundRefSchema)),
|
|
184
|
+
}, { additionalProperties: false });
|
|
185
|
+
//# sourceMappingURL=runtime-events.js.map
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
export declare const SkillNameSchema: import("@sinclair/typebox").TString;
|
|
2
|
+
export declare const SkillProjectionSchema: import("@sinclair/typebox").TObject<{
|
|
3
|
+
name: import("@sinclair/typebox").TString;
|
|
4
|
+
description: import("@sinclair/typebox").TString;
|
|
5
|
+
short_description: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
6
|
+
enabled: import("@sinclair/typebox").TBoolean;
|
|
7
|
+
source: import("@sinclair/typebox").TLiteral<"user">;
|
|
8
|
+
updated_at: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
9
|
+
}>;
|
|
10
|
+
export declare const SkillDetailProjectionSchema: import("@sinclair/typebox").TObject<{
|
|
11
|
+
name: import("@sinclair/typebox").TString;
|
|
12
|
+
description: import("@sinclair/typebox").TString;
|
|
13
|
+
short_description: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
14
|
+
enabled: import("@sinclair/typebox").TBoolean;
|
|
15
|
+
source: import("@sinclair/typebox").TLiteral<"user">;
|
|
16
|
+
updated_at: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
17
|
+
skill_md: import("@sinclair/typebox").TString;
|
|
18
|
+
}>;
|
|
19
|
+
export declare const GetSkillsResponseSchema: import("@sinclair/typebox").TObject<{
|
|
20
|
+
items: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
21
|
+
name: import("@sinclair/typebox").TString;
|
|
22
|
+
description: import("@sinclair/typebox").TString;
|
|
23
|
+
short_description: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
24
|
+
enabled: import("@sinclair/typebox").TBoolean;
|
|
25
|
+
source: import("@sinclair/typebox").TLiteral<"user">;
|
|
26
|
+
updated_at: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
27
|
+
}>>;
|
|
28
|
+
}>;
|
|
29
|
+
export declare const GetSkillParamsSchema: import("@sinclair/typebox").TObject<{
|
|
30
|
+
skill_name: import("@sinclair/typebox").TString;
|
|
31
|
+
}>;
|
|
32
|
+
export declare const GetSkillResponseSchema: import("@sinclair/typebox").TObject<{
|
|
33
|
+
skill: import("@sinclair/typebox").TObject<{
|
|
34
|
+
name: import("@sinclair/typebox").TString;
|
|
35
|
+
description: import("@sinclair/typebox").TString;
|
|
36
|
+
short_description: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
37
|
+
enabled: import("@sinclair/typebox").TBoolean;
|
|
38
|
+
source: import("@sinclair/typebox").TLiteral<"user">;
|
|
39
|
+
updated_at: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
40
|
+
skill_md: import("@sinclair/typebox").TString;
|
|
41
|
+
}>;
|
|
42
|
+
}>;
|
|
43
|
+
export declare const ImportSkillZipPayloadSchema: import("@sinclair/typebox").TObject<{
|
|
44
|
+
readonly upload_id: import("@sinclair/typebox").TString;
|
|
45
|
+
readonly file_name: import("@sinclair/typebox").TString;
|
|
46
|
+
readonly size_bytes: import("@sinclair/typebox").TInteger;
|
|
47
|
+
readonly sha256: import("@sinclair/typebox").TString;
|
|
48
|
+
readonly media_type: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
49
|
+
}>;
|
|
50
|
+
export declare const ImportSkillZipDispositionSchema: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
51
|
+
kind: import("@sinclair/typebox").TLiteral<"created">;
|
|
52
|
+
skill_name: import("@sinclair/typebox").TString;
|
|
53
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
54
|
+
kind: import("@sinclair/typebox").TLiteral<"replaced">;
|
|
55
|
+
skill_name: import("@sinclair/typebox").TString;
|
|
56
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
57
|
+
kind: import("@sinclair/typebox").TLiteral<"interrupted">;
|
|
58
|
+
retry_with_new_command_id: import("@sinclair/typebox").TLiteral<true>;
|
|
59
|
+
}>]>;
|
|
60
|
+
export declare const ImportSkillZipResultSchema: import("@sinclair/typebox").TObject<{
|
|
61
|
+
skill: import("@sinclair/typebox").TObject<{
|
|
62
|
+
name: import("@sinclair/typebox").TString;
|
|
63
|
+
description: import("@sinclair/typebox").TString;
|
|
64
|
+
short_description: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
65
|
+
enabled: import("@sinclair/typebox").TBoolean;
|
|
66
|
+
source: import("@sinclair/typebox").TLiteral<"user">;
|
|
67
|
+
updated_at: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
68
|
+
skill_md: import("@sinclair/typebox").TString;
|
|
69
|
+
}>;
|
|
70
|
+
}>;
|
|
71
|
+
export declare const ImportSkillZipBodySchema: import("@sinclair/typebox").TSchema;
|
|
72
|
+
export declare const ImportSkillZipResponseSchema: import("@sinclair/typebox").TSchema;
|
|
73
|
+
export declare const DeleteSkillPayloadSchema: import("@sinclair/typebox").TObject<{
|
|
74
|
+
skill_name: import("@sinclair/typebox").TString;
|
|
75
|
+
}>;
|
|
76
|
+
export declare const DeleteSkillDispositionSchema: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TObject<{
|
|
77
|
+
kind: import("@sinclair/typebox").TLiteral<"deleted">;
|
|
78
|
+
skill_name: import("@sinclair/typebox").TString;
|
|
79
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
80
|
+
kind: import("@sinclair/typebox").TLiteral<"not_found">;
|
|
81
|
+
skill_name: import("@sinclair/typebox").TString;
|
|
82
|
+
}>, import("@sinclair/typebox").TObject<{
|
|
83
|
+
kind: import("@sinclair/typebox").TLiteral<"interrupted">;
|
|
84
|
+
retry_with_new_command_id: import("@sinclair/typebox").TLiteral<true>;
|
|
85
|
+
}>]>;
|
|
86
|
+
export declare const DeleteSkillBodySchema: import("@sinclair/typebox").TSchema;
|
|
87
|
+
export declare const DeleteSkillResponseSchema: import("@sinclair/typebox").TSchema;
|
|
88
|
+
//# sourceMappingURL=skills.d.ts.map
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { Type } from "@sinclair/typebox";
|
|
2
|
+
import { IsoDateTimeStringSchema } from "../domain/index.js";
|
|
3
|
+
import { InterruptedCommandDispositionSchema, NonEmptyStringSchema, commandEnvelopeSchema, commandResponseSchema, commandResponseWithResultSchema, } from "./primitives.js";
|
|
4
|
+
import { SkillZipStagedUploadReferenceProperties } from "./uploads.js";
|
|
5
|
+
export const SkillNameSchema = Type.String({
|
|
6
|
+
minLength: 1,
|
|
7
|
+
maxLength: 96,
|
|
8
|
+
pattern: "^[a-z0-9_-]+$",
|
|
9
|
+
});
|
|
10
|
+
export const SkillProjectionSchema = Type.Object({
|
|
11
|
+
name: SkillNameSchema,
|
|
12
|
+
description: NonEmptyStringSchema,
|
|
13
|
+
short_description: Type.Optional(NonEmptyStringSchema),
|
|
14
|
+
enabled: Type.Boolean(),
|
|
15
|
+
source: Type.Literal("user"),
|
|
16
|
+
updated_at: Type.Optional(IsoDateTimeStringSchema),
|
|
17
|
+
}, { additionalProperties: false });
|
|
18
|
+
export const SkillDetailProjectionSchema = Type.Object({
|
|
19
|
+
name: SkillNameSchema,
|
|
20
|
+
description: NonEmptyStringSchema,
|
|
21
|
+
short_description: Type.Optional(NonEmptyStringSchema),
|
|
22
|
+
enabled: Type.Boolean(),
|
|
23
|
+
source: Type.Literal("user"),
|
|
24
|
+
updated_at: Type.Optional(IsoDateTimeStringSchema),
|
|
25
|
+
skill_md: Type.String({ minLength: 1 }),
|
|
26
|
+
}, { additionalProperties: false });
|
|
27
|
+
export const GetSkillsResponseSchema = Type.Object({
|
|
28
|
+
items: Type.Array(SkillProjectionSchema),
|
|
29
|
+
}, { additionalProperties: false });
|
|
30
|
+
export const GetSkillParamsSchema = Type.Object({
|
|
31
|
+
skill_name: SkillNameSchema,
|
|
32
|
+
}, { additionalProperties: false });
|
|
33
|
+
export const GetSkillResponseSchema = Type.Object({
|
|
34
|
+
skill: SkillDetailProjectionSchema,
|
|
35
|
+
}, { additionalProperties: false });
|
|
36
|
+
export const ImportSkillZipPayloadSchema = Type.Object(SkillZipStagedUploadReferenceProperties, {
|
|
37
|
+
additionalProperties: false,
|
|
38
|
+
});
|
|
39
|
+
export const ImportSkillZipDispositionSchema = Type.Union([
|
|
40
|
+
Type.Object({
|
|
41
|
+
kind: Type.Literal("created"),
|
|
42
|
+
skill_name: SkillNameSchema,
|
|
43
|
+
}, { additionalProperties: false }),
|
|
44
|
+
Type.Object({
|
|
45
|
+
kind: Type.Literal("replaced"),
|
|
46
|
+
skill_name: SkillNameSchema,
|
|
47
|
+
}, { additionalProperties: false }),
|
|
48
|
+
InterruptedCommandDispositionSchema,
|
|
49
|
+
]);
|
|
50
|
+
export const ImportSkillZipResultSchema = Type.Object({
|
|
51
|
+
skill: SkillDetailProjectionSchema,
|
|
52
|
+
}, { additionalProperties: false });
|
|
53
|
+
export const ImportSkillZipBodySchema = commandEnvelopeSchema(ImportSkillZipPayloadSchema);
|
|
54
|
+
export const ImportSkillZipResponseSchema = commandResponseWithResultSchema(ImportSkillZipDispositionSchema, ImportSkillZipResultSchema);
|
|
55
|
+
export const DeleteSkillPayloadSchema = Type.Object({
|
|
56
|
+
skill_name: SkillNameSchema,
|
|
57
|
+
}, { additionalProperties: false });
|
|
58
|
+
export const DeleteSkillDispositionSchema = Type.Union([
|
|
59
|
+
Type.Object({
|
|
60
|
+
kind: Type.Literal("deleted"),
|
|
61
|
+
skill_name: SkillNameSchema,
|
|
62
|
+
}, { additionalProperties: false }),
|
|
63
|
+
Type.Object({
|
|
64
|
+
kind: Type.Literal("not_found"),
|
|
65
|
+
skill_name: SkillNameSchema,
|
|
66
|
+
}, { additionalProperties: false }),
|
|
67
|
+
InterruptedCommandDispositionSchema,
|
|
68
|
+
]);
|
|
69
|
+
export const DeleteSkillBodySchema = commandEnvelopeSchema(DeleteSkillPayloadSchema);
|
|
70
|
+
export const DeleteSkillResponseSchema = commandResponseSchema(DeleteSkillDispositionSchema);
|
|
71
|
+
//# sourceMappingURL=skills.js.map
|
|
@@ -0,0 +1,253 @@
|
|
|
1
|
+
import type { Static } from "@sinclair/typebox";
|
|
2
|
+
import type { IdempotencyKeySchema, IsoDateTimeStringSchema } from "../domain/index.js";
|
|
3
|
+
import type { ApiErrorCodeSchema, ApiErrorResponseSchema, CommandDispositionBaseSchema, CursorPageRequestSchema, InterruptedCommandDispositionSchema, QueryInvalidationHintSchema, RelayInvalidationHintSchema, RelaySseEventTypeSchema, SseReplayWindowPolicySchema, WorkspaceSseEventTypeSchema } from "./primitives.js";
|
|
4
|
+
import type { ProviderConfigInvalidReasonCodeSchema, ProviderConfigProjectionSchema, ProviderUnavailableReasonCodeSchema } from "./provider-config.js";
|
|
5
|
+
import type { ProviderUsageBreakdownProjectionSchema, ProviderUsageCategorySchema, ProviderUsageModelSummaryProjectionSchema, ProviderUsageProjectionSchema, ProviderUsageSourceSummaryProjectionSchema } from "./provider-usage.js";
|
|
6
|
+
import type { ProjectTimelineItemKindSchema, ProjectTimelineItemSchema, ProjectTimelineItemStatusSchema, ProjectTimelineResponseSchema } from "./project-timeline.js";
|
|
7
|
+
import type { PresignedUploadPutSchema, RelayUploadProjectionSchema, RelayUploadPurposeSchema, Sha256DigestSchema, StagedUploadReferenceSchema, StartRelayUploadDispositionSchema, StartRelayUploadPayloadSchema, StartRelayUploadResultSchema } from "./uploads.js";
|
|
8
|
+
import type { MarkReadDispositionSchema, MarkReadPayloadSchema, MarkReadResultSchema, ReadStateScopeProjectionSchema, ReadStateScopeSchema, ReadStateSummaryProjectionSchema } from "./read-state.js";
|
|
9
|
+
import type { GetMessagesRequestSchema, MessageCreatedEventPayloadSchema, MessageProjectionSchema, MessageReferenceFileRefSchema, ReferenceFileCategorySchema, SendMainChatMessageCreatedDispositionSchema, SendMainChatMessageDispositionSchema, SendMainChatMessagePayloadSchema, SendMainChatMessageResultSchema, WorklistFeedbackItemSchema, WorklistFeedbackRefSchema } from "./messages.js";
|
|
10
|
+
import type { CheckSkipReasonCodeSchema, ExternalSideEffectSummaryProjectionSchema, GetRecoverySummariesRequestSchema, GetRecoverySummaryResponseSchema, RecoverySummaryProjectionSchema, RunResultProjectionSchema, ScratchpadProjectionSchema, TaskContractProjectionSchema, TaskDetailProjectionSchema, TaskDetailResultProjectionSchema, TaskModuleProjectionSchema, TaskProjectionSchema, TaskStatusSchema, WorklistProjectionSchema } from "./work-items.js";
|
|
11
|
+
import type { ActiveApprovalProjectionSchema, ApprovalCommandProjectionSchema, ApprovalDecisionKindSchema, ApprovalDecisionOptionProjectionSchema, ApprovalFileChangeProjectionSchema, ApprovalPermissionsProjectionSchema, ApprovalRequestKindSchema, ApprovalRequestProjectionSchema, ApprovalResolutionOutcomeSchema, ApprovalResolutionProjectionSchema, DecideApprovalDispositionSchema, DecideApprovalPayloadSchema, DecideApprovalResultSchema } from "./approvals.js";
|
|
12
|
+
import type { ActiveClarificationProjectionSchema, ClarificationChangedEventPayloadSchema, ClarificationOwnerProjectionSchema, ClarificationRequestPayloadSchema, ClarificationRoundProjectionSchema, ClarificationRoundSummaryProjectionSchema, ClarificationSuccessorRefSchema, ClarificationThreadProjectionSchema, ContextRefSchema, GetClarificationRoundMessagesRequestSchema, GetClarificationRoundResponseSchema, GetClarificationThreadResponseSchema, HumanInteractionPayloadSchema, HumanRequestPayloadSchema, SendClarificationRoundMessageDispositionSchema, SendClarificationRoundMessagePayloadSchema, SendClarificationRoundMessageResultSchema, SubmitClarificationRoundDispositionSchema, SubmitClarificationRoundPayloadSchema, SubmitClarificationRoundResultSchema } from "./clarifications.js";
|
|
13
|
+
import type { GetProjectDocRequestSchema, GetProjectDocResponseSchema, GetProjectDocsResponseSchema, GetReferenceFilesRequestSchema, GetReferenceFilesResponseSchema, GetViewerAssetRequestSchema, GetViewerFileRequestSchema, GetViewerFileResponseSchema, GetViewerTreeRequestSchema, GetViewerTreeResponseSchema, ProjectDocKeySchema, ProjectDocParamsSchema, ProjectDocSummaryProjectionSchema, ReferenceDirectoryProjectionSchema, ReferenceFileProjectionSchema, ReferenceSummaryProjectionSchema, ReferenceTextReadBlockedReasonSchema, RefreshReferenceSummariesDispositionSchema, RefreshReferenceSummariesPayloadSchema, RefreshReferenceSummariesResultSchema, UploadReferenceFileDispositionSchema, UploadReferenceFilePayloadSchema, UploadReferenceFileResultSchema, ViewerAssetVariantSchema, ViewerFileContentProjectionSchema, ViewerFileProjectionSchema, ViewerPathSchema, ViewerRepoSnapshotSchema, ViewerTreeEntryProjectionSchema, ViewerTreeTextReadBlockedReasonSchema, ViewerUnreadableReasonSchema } from "./viewer-reference.js";
|
|
14
|
+
import type { ArtifactKindSchema, ArtifactManifestPathSchema, ArtifactManifestSchema, ArtifactPreviewCommandPayloadSchema, ArtifactPreviewCommandResultSchema, ArtifactPreviewProjectionSchema, ArtifactPreviewStatusSchema, ArtifactProjectionSchema, ArtifactServerManifestSchema, ArtifactStaticManifestSchema, ArtifactSummaryProjectionSchema, GetArtifactsResponseSchema, HeartbeatArtifactPreviewDispositionSchema, StartArtifactPreviewDispositionSchema, StopArtifactPreviewDispositionSchema } from "./artifacts.js";
|
|
15
|
+
import type { DeleteSkillDispositionSchema, DeleteSkillPayloadSchema, GetSkillParamsSchema, GetSkillResponseSchema, GetSkillsResponseSchema, ImportSkillZipDispositionSchema, ImportSkillZipPayloadSchema, ImportSkillZipResultSchema, SkillDetailProjectionSchema, SkillNameSchema, SkillProjectionSchema } from "./skills.js";
|
|
16
|
+
import type { ActivityEventProjectionSchema, ActivityEventSsePayloadSchema, ApprovalChangedEventPayloadSchema, ActivityProjectionSchema, ConnectionReadyEventPayloadSchema, ExecutionActivitySummarySchema, ExecutionStatusChangedEventPayloadSchema, ExecutionStatusKindSchema, ExecutionStatusProjectionSchema, ProcedureLaneSchema, ProviderConfigChangedEventPayloadSchema, QueryInvalidateEventPayloadSchema, ScratchpadUpdatedEventPayloadSchema, TaskDetailUpdatedEventPayloadSchema, TaskUpdatedEventPayloadSchema, WorklistChangedEventPayloadSchema, WorkspaceRecoveredEventPayloadSchema } from "./runtime-events.js";
|
|
17
|
+
import type { ContextSyncDispositionSchema, ContextSyncPayloadSchema, ContextSyncResultSchema, InitializeProjectDocsDispositionSchema, InitializeProjectDocsPayloadSchema, InitializeProjectDocsResultSchema, RefreshScratchpadDispositionSchema, RefreshScratchpadResultSchema, RunSchedulerNowDispositionSchema, RunSchedulerNowPayloadSchema, SubmitWorklistDispositionSchema, SubmitWorklistPayloadSchema, SubmitWorklistResultSchema, UpdateProjectDisplayNameDispositionSchema, UpdateProjectDisplayNamePayloadSchema, UpdateProjectDisplayNameResultSchema } from "./workspace-commands.js";
|
|
18
|
+
export type CursorPageRequest = Static<typeof CursorPageRequestSchema>;
|
|
19
|
+
export type CursorPage<TItem> = {
|
|
20
|
+
items: TItem[];
|
|
21
|
+
page: {
|
|
22
|
+
next_cursor?: string;
|
|
23
|
+
has_more: boolean;
|
|
24
|
+
limit: number;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
export type TimelineWindow<TItem> = {
|
|
28
|
+
items: TItem[];
|
|
29
|
+
window: {
|
|
30
|
+
older_cursor?: string;
|
|
31
|
+
newer_cursor?: string;
|
|
32
|
+
has_older: boolean;
|
|
33
|
+
has_newer: boolean;
|
|
34
|
+
limit: number;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
export type CommandEnvelope<TPayload> = {
|
|
38
|
+
command_id: Static<typeof IdempotencyKeySchema>;
|
|
39
|
+
issued_at: Static<typeof IsoDateTimeStringSchema>;
|
|
40
|
+
payload: TPayload;
|
|
41
|
+
};
|
|
42
|
+
export type CommandResponse<TDisposition, TResult = undefined> = {
|
|
43
|
+
command_id: Static<typeof IdempotencyKeySchema>;
|
|
44
|
+
disposition: TDisposition;
|
|
45
|
+
result?: TResult;
|
|
46
|
+
invalidates?: QueryInvalidationHint[];
|
|
47
|
+
};
|
|
48
|
+
export type QueryInvalidationHint = Static<typeof QueryInvalidationHintSchema>;
|
|
49
|
+
export type RelayInvalidationHint = Static<typeof RelayInvalidationHintSchema>;
|
|
50
|
+
export type CommandDispositionBase = Static<typeof CommandDispositionBaseSchema>;
|
|
51
|
+
export type ApiErrorCode = Static<typeof ApiErrorCodeSchema>;
|
|
52
|
+
export type ApiErrorResponse = Static<typeof ApiErrorResponseSchema>;
|
|
53
|
+
export type WorkspaceSseEventType = Static<typeof WorkspaceSseEventTypeSchema>;
|
|
54
|
+
export type RelaySseEventType = Static<typeof RelaySseEventTypeSchema>;
|
|
55
|
+
export type SseReplayWindowPolicy = Static<typeof SseReplayWindowPolicySchema>;
|
|
56
|
+
export type ProviderConfigInvalidReasonCode = Static<typeof ProviderConfigInvalidReasonCodeSchema>;
|
|
57
|
+
export type ProviderUnavailableReasonCode = Static<typeof ProviderUnavailableReasonCodeSchema>;
|
|
58
|
+
export type ProviderConfigProjection = Static<typeof ProviderConfigProjectionSchema>;
|
|
59
|
+
export type ProviderUsageBreakdownProjection = Static<typeof ProviderUsageBreakdownProjectionSchema>;
|
|
60
|
+
export type ProviderUsageCategory = Static<typeof ProviderUsageCategorySchema>;
|
|
61
|
+
export type ProviderUsageSourceSummaryProjection = Static<typeof ProviderUsageSourceSummaryProjectionSchema>;
|
|
62
|
+
export type ProviderUsageModelSummaryProjection = Static<typeof ProviderUsageModelSummaryProjectionSchema>;
|
|
63
|
+
export type ProviderUsageProjection = Static<typeof ProviderUsageProjectionSchema>;
|
|
64
|
+
export type ProjectTimelineItemKind = Static<typeof ProjectTimelineItemKindSchema>;
|
|
65
|
+
export type ProjectTimelineItemStatus = Static<typeof ProjectTimelineItemStatusSchema>;
|
|
66
|
+
export type ProjectTimelineItem = Static<typeof ProjectTimelineItemSchema>;
|
|
67
|
+
export type ProjectTimelineResponse = Static<typeof ProjectTimelineResponseSchema>;
|
|
68
|
+
export type ApprovalRequestKind = Static<typeof ApprovalRequestKindSchema>;
|
|
69
|
+
export type ApprovalDecisionKind = Static<typeof ApprovalDecisionKindSchema>;
|
|
70
|
+
export type ApprovalDecisionOptionProjection = Static<typeof ApprovalDecisionOptionProjectionSchema>;
|
|
71
|
+
export type ApprovalCommandProjection = Static<typeof ApprovalCommandProjectionSchema>;
|
|
72
|
+
export type ApprovalFileChangeProjection = Static<typeof ApprovalFileChangeProjectionSchema>;
|
|
73
|
+
export type ApprovalPermissionsProjection = Static<typeof ApprovalPermissionsProjectionSchema>;
|
|
74
|
+
export type ApprovalRequestProjection = Static<typeof ApprovalRequestProjectionSchema>;
|
|
75
|
+
export type ApprovalResolutionOutcome = Static<typeof ApprovalResolutionOutcomeSchema>;
|
|
76
|
+
export type ApprovalResolutionProjection = Static<typeof ApprovalResolutionProjectionSchema>;
|
|
77
|
+
export type ActiveApprovalProjection = Static<typeof ActiveApprovalProjectionSchema>;
|
|
78
|
+
export type DecideApprovalPayload = Static<typeof DecideApprovalPayloadSchema>;
|
|
79
|
+
export type DecideApprovalDisposition = Static<typeof DecideApprovalDispositionSchema>;
|
|
80
|
+
export type DecideApprovalResult = Static<typeof DecideApprovalResultSchema>;
|
|
81
|
+
export type DecideApprovalResponse = CommandResponse<DecideApprovalDisposition, DecideApprovalResult>;
|
|
82
|
+
export type RelayUploadPurpose = Static<typeof RelayUploadPurposeSchema>;
|
|
83
|
+
export type Sha256Digest = Static<typeof Sha256DigestSchema>;
|
|
84
|
+
export type StagedUploadReference = Static<typeof StagedUploadReferenceSchema>;
|
|
85
|
+
export type RelayUploadProjection = Static<typeof RelayUploadProjectionSchema>;
|
|
86
|
+
export type PresignedUploadPut = Static<typeof PresignedUploadPutSchema>;
|
|
87
|
+
export type StartRelayUploadPayload = Static<typeof StartRelayUploadPayloadSchema>;
|
|
88
|
+
export type StartRelayUploadDisposition = Static<typeof StartRelayUploadDispositionSchema>;
|
|
89
|
+
export type StartRelayUploadResult = Static<typeof StartRelayUploadResultSchema>;
|
|
90
|
+
export type StartRelayUploadResponse = CommandResponse<StartRelayUploadDisposition, StartRelayUploadResult>;
|
|
91
|
+
export type ReadStateScope = Static<typeof ReadStateScopeSchema>;
|
|
92
|
+
export type ReadStateScopeProjection = Static<typeof ReadStateScopeProjectionSchema>;
|
|
93
|
+
export type ReadStateSummaryProjection = Static<typeof ReadStateSummaryProjectionSchema>;
|
|
94
|
+
export type MarkReadPayload = Static<typeof MarkReadPayloadSchema>;
|
|
95
|
+
export type MarkReadDisposition = Static<typeof MarkReadDispositionSchema>;
|
|
96
|
+
export type MarkReadResult = Static<typeof MarkReadResultSchema>;
|
|
97
|
+
export type MarkReadResponse = CommandResponse<MarkReadDisposition, MarkReadResult>;
|
|
98
|
+
export type ReferenceFileCategory = Static<typeof ReferenceFileCategorySchema>;
|
|
99
|
+
export type MessageReferenceFileRef = Static<typeof MessageReferenceFileRefSchema>;
|
|
100
|
+
export type WorklistFeedbackItem = Static<typeof WorklistFeedbackItemSchema>;
|
|
101
|
+
export type WorklistFeedbackRef = Static<typeof WorklistFeedbackRefSchema>;
|
|
102
|
+
export type MessageProjection = Static<typeof MessageProjectionSchema>;
|
|
103
|
+
export type MessageWindow = TimelineWindow<MessageProjection>;
|
|
104
|
+
export type SendMainChatMessagePayload = Static<typeof SendMainChatMessagePayloadSchema>;
|
|
105
|
+
export type ApiInterruptedCommandDisposition = Static<typeof InterruptedCommandDispositionSchema>;
|
|
106
|
+
export type SendMainChatMessageCreatedDisposition = Static<typeof SendMainChatMessageCreatedDispositionSchema>;
|
|
107
|
+
export type SendMainChatMessageDisposition = Static<typeof SendMainChatMessageDispositionSchema>;
|
|
108
|
+
export type SendMainChatMessageResult = Static<typeof SendMainChatMessageResultSchema>;
|
|
109
|
+
export type GetMessagesRequest = Static<typeof GetMessagesRequestSchema>;
|
|
110
|
+
export type SendMainChatMessageResponse = CommandResponse<SendMainChatMessageDisposition, SendMainChatMessageResult>;
|
|
111
|
+
export type MessageCreatedEventPayload = Static<typeof MessageCreatedEventPayloadSchema>;
|
|
112
|
+
export type ScratchpadProjection = Static<typeof ScratchpadProjectionSchema>;
|
|
113
|
+
export type TaskStatus = Static<typeof TaskStatusSchema>;
|
|
114
|
+
export type TaskModuleProjection = Static<typeof TaskModuleProjectionSchema>;
|
|
115
|
+
export type TaskProjection = Static<typeof TaskProjectionSchema>;
|
|
116
|
+
export type WorklistProjection = Static<typeof WorklistProjectionSchema>;
|
|
117
|
+
export type TaskContractProjection = Static<typeof TaskContractProjectionSchema>;
|
|
118
|
+
export type CheckSkipReasonCode = Static<typeof CheckSkipReasonCodeSchema>;
|
|
119
|
+
export type ExternalSideEffectSummaryProjection = Static<typeof ExternalSideEffectSummaryProjectionSchema>;
|
|
120
|
+
export type TaskDetailResultProjection = Static<typeof TaskDetailResultProjectionSchema>;
|
|
121
|
+
export type TaskDetailProjection = Static<typeof TaskDetailProjectionSchema>;
|
|
122
|
+
export type RunResultProjection = Static<typeof RunResultProjectionSchema>;
|
|
123
|
+
export type GetTaskRunResultsResponse = CursorPage<RunResultProjection>;
|
|
124
|
+
export type RecoverySummaryProjection = Static<typeof RecoverySummaryProjectionSchema>;
|
|
125
|
+
export type GetRecoverySummariesRequest = Static<typeof GetRecoverySummariesRequestSchema>;
|
|
126
|
+
export type GetRecoverySummariesResponse = CursorPage<RecoverySummaryProjection>;
|
|
127
|
+
export type GetRecoverySummaryResponse = Static<typeof GetRecoverySummaryResponseSchema>;
|
|
128
|
+
export type ExecutionStatusKind = Static<typeof ExecutionStatusKindSchema>;
|
|
129
|
+
export type ProcedureLane = Static<typeof ProcedureLaneSchema>;
|
|
130
|
+
export type ExecutionActivitySummary = Static<typeof ExecutionActivitySummarySchema>;
|
|
131
|
+
export type ExecutionStatusProjection = Static<typeof ExecutionStatusProjectionSchema>;
|
|
132
|
+
export type ActivityProjection = Static<typeof ActivityProjectionSchema>;
|
|
133
|
+
export type ActivityEventProjection = Static<typeof ActivityEventProjectionSchema>;
|
|
134
|
+
export type ConnectionReadyEventPayload = Static<typeof ConnectionReadyEventPayloadSchema>;
|
|
135
|
+
export type QueryInvalidateEventPayload = Static<typeof QueryInvalidateEventPayloadSchema>;
|
|
136
|
+
export type ExecutionStatusChangedEventPayload = Static<typeof ExecutionStatusChangedEventPayloadSchema>;
|
|
137
|
+
export type ApprovalChangedEventPayload = Static<typeof ApprovalChangedEventPayloadSchema>;
|
|
138
|
+
export type ActivityEventSsePayload = Static<typeof ActivityEventSsePayloadSchema>;
|
|
139
|
+
export type WorklistChangedEventPayload = Static<typeof WorklistChangedEventPayloadSchema>;
|
|
140
|
+
export type TaskUpdatedEventPayload = Static<typeof TaskUpdatedEventPayloadSchema>;
|
|
141
|
+
export type TaskDetailUpdatedEventPayload = Static<typeof TaskDetailUpdatedEventPayloadSchema>;
|
|
142
|
+
export type ScratchpadUpdatedEventPayload = Static<typeof ScratchpadUpdatedEventPayloadSchema>;
|
|
143
|
+
export type ProviderConfigChangedEventPayload = Static<typeof ProviderConfigChangedEventPayloadSchema>;
|
|
144
|
+
export type WorkspaceRecoveredEventPayload = Static<typeof WorkspaceRecoveredEventPayloadSchema>;
|
|
145
|
+
export type ViewerPath = Static<typeof ViewerPathSchema>;
|
|
146
|
+
export type ViewerRepoSnapshot = Static<typeof ViewerRepoSnapshotSchema>;
|
|
147
|
+
export type ProjectDocKey = Static<typeof ProjectDocKeySchema>;
|
|
148
|
+
export type ViewerUnreadableReason = Static<typeof ViewerUnreadableReasonSchema>;
|
|
149
|
+
export type ProjectDocSummaryProjection = Static<typeof ProjectDocSummaryProjectionSchema>;
|
|
150
|
+
export type ViewerTreeTextReadBlockedReason = Static<typeof ViewerTreeTextReadBlockedReasonSchema>;
|
|
151
|
+
export type ViewerTreeEntryProjection = Static<typeof ViewerTreeEntryProjectionSchema>;
|
|
152
|
+
export type ViewerFileContentProjection = Static<typeof ViewerFileContentProjectionSchema>;
|
|
153
|
+
export type ViewerFileProjection = Static<typeof ViewerFileProjectionSchema>;
|
|
154
|
+
export type GetProjectDocsResponse = Static<typeof GetProjectDocsResponseSchema>;
|
|
155
|
+
export type ProjectDocParams = Static<typeof ProjectDocParamsSchema>;
|
|
156
|
+
export type GetProjectDocRequest = Static<typeof GetProjectDocRequestSchema>;
|
|
157
|
+
export type GetProjectDocResponse = Static<typeof GetProjectDocResponseSchema>;
|
|
158
|
+
export type GetViewerTreeRequest = Static<typeof GetViewerTreeRequestSchema>;
|
|
159
|
+
export type GetViewerTreeResponse = Static<typeof GetViewerTreeResponseSchema>;
|
|
160
|
+
export type GetViewerFileRequest = Static<typeof GetViewerFileRequestSchema>;
|
|
161
|
+
export type ViewerAssetVariant = Static<typeof ViewerAssetVariantSchema>;
|
|
162
|
+
export type GetViewerAssetRequest = Static<typeof GetViewerAssetRequestSchema>;
|
|
163
|
+
export type GetViewerFileResponse = Static<typeof GetViewerFileResponseSchema>;
|
|
164
|
+
export type ReferenceDirectoryProjection = Static<typeof ReferenceDirectoryProjectionSchema>;
|
|
165
|
+
export type ReferenceTextReadBlockedReason = Static<typeof ReferenceTextReadBlockedReasonSchema>;
|
|
166
|
+
export type ReferenceSummaryProjection = Static<typeof ReferenceSummaryProjectionSchema>;
|
|
167
|
+
export type ReferenceFileProjection = Static<typeof ReferenceFileProjectionSchema>;
|
|
168
|
+
export type GetReferenceFilesRequest = Static<typeof GetReferenceFilesRequestSchema>;
|
|
169
|
+
export type GetReferenceFilesResponse = Static<typeof GetReferenceFilesResponseSchema>;
|
|
170
|
+
export type UploadReferenceFilePayload = Static<typeof UploadReferenceFilePayloadSchema>;
|
|
171
|
+
export type UploadReferenceFileDisposition = Static<typeof UploadReferenceFileDispositionSchema>;
|
|
172
|
+
export type UploadReferenceFileResult = Static<typeof UploadReferenceFileResultSchema>;
|
|
173
|
+
export type UploadReferenceFileResponse = CommandResponse<UploadReferenceFileDisposition, UploadReferenceFileResult>;
|
|
174
|
+
export type RefreshReferenceSummariesPayload = Static<typeof RefreshReferenceSummariesPayloadSchema>;
|
|
175
|
+
export type RefreshReferenceSummariesDisposition = Static<typeof RefreshReferenceSummariesDispositionSchema>;
|
|
176
|
+
export type RefreshReferenceSummariesResult = Static<typeof RefreshReferenceSummariesResultSchema>;
|
|
177
|
+
export type RefreshReferenceSummariesResponse = CommandResponse<RefreshReferenceSummariesDisposition, RefreshReferenceSummariesResult>;
|
|
178
|
+
export type SkillName = Static<typeof SkillNameSchema>;
|
|
179
|
+
export type SkillProjection = Static<typeof SkillProjectionSchema>;
|
|
180
|
+
export type SkillDetailProjection = Static<typeof SkillDetailProjectionSchema>;
|
|
181
|
+
export type GetSkillsResponse = Static<typeof GetSkillsResponseSchema>;
|
|
182
|
+
export type GetSkillParams = Static<typeof GetSkillParamsSchema>;
|
|
183
|
+
export type GetSkillResponse = Static<typeof GetSkillResponseSchema>;
|
|
184
|
+
export type ImportSkillZipPayload = Static<typeof ImportSkillZipPayloadSchema>;
|
|
185
|
+
export type ImportSkillZipDisposition = Static<typeof ImportSkillZipDispositionSchema>;
|
|
186
|
+
export type ImportSkillZipResult = Static<typeof ImportSkillZipResultSchema>;
|
|
187
|
+
export type ImportSkillZipResponse = CommandResponse<ImportSkillZipDisposition, ImportSkillZipResult>;
|
|
188
|
+
export type DeleteSkillPayload = Static<typeof DeleteSkillPayloadSchema>;
|
|
189
|
+
export type DeleteSkillDisposition = Static<typeof DeleteSkillDispositionSchema>;
|
|
190
|
+
export type DeleteSkillResponse = CommandResponse<DeleteSkillDisposition>;
|
|
191
|
+
export type ArtifactKind = Static<typeof ArtifactKindSchema>;
|
|
192
|
+
export type ArtifactManifestPath = Static<typeof ArtifactManifestPathSchema>;
|
|
193
|
+
export type ArtifactStaticManifest = Static<typeof ArtifactStaticManifestSchema>;
|
|
194
|
+
export type ArtifactServerManifest = Static<typeof ArtifactServerManifestSchema>;
|
|
195
|
+
export type ArtifactManifest = Static<typeof ArtifactManifestSchema>;
|
|
196
|
+
export type ArtifactPreviewStatus = Static<typeof ArtifactPreviewStatusSchema>;
|
|
197
|
+
export type ArtifactSummaryProjection = Static<typeof ArtifactSummaryProjectionSchema>;
|
|
198
|
+
export type ArtifactPreviewProjection = Static<typeof ArtifactPreviewProjectionSchema>;
|
|
199
|
+
export type ArtifactProjection = Static<typeof ArtifactProjectionSchema>;
|
|
200
|
+
export type GetArtifactsResponse = Static<typeof GetArtifactsResponseSchema>;
|
|
201
|
+
export type ArtifactPreviewCommandPayload = Static<typeof ArtifactPreviewCommandPayloadSchema>;
|
|
202
|
+
export type StartArtifactPreviewDisposition = Static<typeof StartArtifactPreviewDispositionSchema>;
|
|
203
|
+
export type HeartbeatArtifactPreviewDisposition = Static<typeof HeartbeatArtifactPreviewDispositionSchema>;
|
|
204
|
+
export type StopArtifactPreviewDisposition = Static<typeof StopArtifactPreviewDispositionSchema>;
|
|
205
|
+
export type ArtifactPreviewCommandResult = Static<typeof ArtifactPreviewCommandResultSchema>;
|
|
206
|
+
export type StartArtifactPreviewResponse = CommandResponse<StartArtifactPreviewDisposition, ArtifactPreviewCommandResult>;
|
|
207
|
+
export type HeartbeatArtifactPreviewResponse = CommandResponse<HeartbeatArtifactPreviewDisposition, ArtifactPreviewCommandResult>;
|
|
208
|
+
export type StopArtifactPreviewResponse = CommandResponse<StopArtifactPreviewDisposition, ArtifactPreviewCommandResult>;
|
|
209
|
+
export type RunSchedulerNowPayload = Static<typeof RunSchedulerNowPayloadSchema>;
|
|
210
|
+
export type RunSchedulerNowDisposition = Static<typeof RunSchedulerNowDispositionSchema>;
|
|
211
|
+
export type RunSchedulerNowResponse = CommandResponse<RunSchedulerNowDisposition>;
|
|
212
|
+
export type UpdateProjectDisplayNamePayload = Static<typeof UpdateProjectDisplayNamePayloadSchema>;
|
|
213
|
+
export type UpdateProjectDisplayNameDisposition = Static<typeof UpdateProjectDisplayNameDispositionSchema>;
|
|
214
|
+
export type UpdateProjectDisplayNameResult = Static<typeof UpdateProjectDisplayNameResultSchema>;
|
|
215
|
+
export type UpdateProjectDisplayNameResponse = CommandResponse<UpdateProjectDisplayNameDisposition, UpdateProjectDisplayNameResult>;
|
|
216
|
+
export type InitializeProjectDocsPayload = Static<typeof InitializeProjectDocsPayloadSchema>;
|
|
217
|
+
export type InitializeProjectDocsDisposition = Static<typeof InitializeProjectDocsDispositionSchema>;
|
|
218
|
+
export type InitializeProjectDocsResult = Static<typeof InitializeProjectDocsResultSchema>;
|
|
219
|
+
export type InitializeProjectDocsResponse = CommandResponse<InitializeProjectDocsDisposition, InitializeProjectDocsResult>;
|
|
220
|
+
export type ContextSyncPayload = Static<typeof ContextSyncPayloadSchema>;
|
|
221
|
+
export type ContextSyncDisposition = Static<typeof ContextSyncDispositionSchema>;
|
|
222
|
+
export type ContextSyncResult = Static<typeof ContextSyncResultSchema>;
|
|
223
|
+
export type ContextSyncResponse = CommandResponse<ContextSyncDisposition, ContextSyncResult>;
|
|
224
|
+
export type ContextRef = Static<typeof ContextRefSchema>;
|
|
225
|
+
export type HumanInteractionPayload = Static<typeof HumanInteractionPayloadSchema>;
|
|
226
|
+
export type HumanRequestPayload = Static<typeof HumanRequestPayloadSchema>;
|
|
227
|
+
export type ClarificationRequestPayload = Static<typeof ClarificationRequestPayloadSchema>;
|
|
228
|
+
export type RefreshScratchpadDisposition = Static<typeof RefreshScratchpadDispositionSchema>;
|
|
229
|
+
export type RefreshScratchpadResult = Static<typeof RefreshScratchpadResultSchema>;
|
|
230
|
+
export type SubmitWorklistPayload = Static<typeof SubmitWorklistPayloadSchema>;
|
|
231
|
+
export type SubmitWorklistDisposition = Static<typeof SubmitWorklistDispositionSchema>;
|
|
232
|
+
export type SubmitWorklistResult = Static<typeof SubmitWorklistResultSchema>;
|
|
233
|
+
export type SubmitWorklistResponse = CommandResponse<SubmitWorklistDisposition, SubmitWorklistResult>;
|
|
234
|
+
export type ClarificationOwnerProjection = Static<typeof ClarificationOwnerProjectionSchema>;
|
|
235
|
+
export type ClarificationThreadProjection = Static<typeof ClarificationThreadProjectionSchema>;
|
|
236
|
+
export type ClarificationSuccessorRef = Static<typeof ClarificationSuccessorRefSchema>;
|
|
237
|
+
export type ClarificationRoundProjection = Static<typeof ClarificationRoundProjectionSchema>;
|
|
238
|
+
export type ActiveClarificationProjection = Static<typeof ActiveClarificationProjectionSchema>;
|
|
239
|
+
export type ClarificationRoundSummaryProjection = Static<typeof ClarificationRoundSummaryProjectionSchema>;
|
|
240
|
+
export type GetClarificationThreadResponse = Static<typeof GetClarificationThreadResponseSchema>;
|
|
241
|
+
export type GetClarificationRoundResponse = Static<typeof GetClarificationRoundResponseSchema>;
|
|
242
|
+
export type GetClarificationRoundMessagesRequest = Static<typeof GetClarificationRoundMessagesRequestSchema>;
|
|
243
|
+
export type GetClarificationRoundMessagesResponse = MessageWindow;
|
|
244
|
+
export type SendClarificationRoundMessagePayload = Static<typeof SendClarificationRoundMessagePayloadSchema>;
|
|
245
|
+
export type SendClarificationRoundMessageDisposition = Static<typeof SendClarificationRoundMessageDispositionSchema>;
|
|
246
|
+
export type SendClarificationRoundMessageResult = Static<typeof SendClarificationRoundMessageResultSchema>;
|
|
247
|
+
export type SendClarificationRoundMessageResponse = CommandResponse<SendClarificationRoundMessageDisposition, SendClarificationRoundMessageResult>;
|
|
248
|
+
export type SubmitClarificationRoundPayload = Static<typeof SubmitClarificationRoundPayloadSchema>;
|
|
249
|
+
export type SubmitClarificationRoundDisposition = Static<typeof SubmitClarificationRoundDispositionSchema>;
|
|
250
|
+
export type SubmitClarificationRoundResult = Static<typeof SubmitClarificationRoundResultSchema>;
|
|
251
|
+
export type SubmitClarificationRoundResponse = CommandResponse<SubmitClarificationRoundDisposition, SubmitClarificationRoundResult>;
|
|
252
|
+
export type ClarificationChangedEventPayload = Static<typeof ClarificationChangedEventPayloadSchema>;
|
|
253
|
+
//# sourceMappingURL=types.d.ts.map
|