@evalops/maestro 0.10.50 → 0.10.53
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 +1 -3
- package/dist/agent/agent-outcome.d.ts +54 -0
- package/dist/agent/agent-outcome.d.ts.map +1 -0
- package/dist/agent/agent-outcome.js +142 -0
- package/dist/agent/agent-outcome.js.map +1 -0
- package/dist/agent/agent-resume.d.ts.map +1 -1
- package/dist/agent/agent-resume.js +3 -3
- package/dist/agent/agent-resume.js.map +1 -1
- package/dist/agent/agent-run-summary.d.ts +37 -0
- package/dist/agent/agent-run-summary.d.ts.map +1 -0
- package/dist/agent/agent-run-summary.js +15 -0
- package/dist/agent/agent-run-summary.js.map +1 -0
- package/dist/agent/agent-work-board.d.ts +82 -0
- package/dist/agent/agent-work-board.d.ts.map +1 -0
- package/dist/agent/agent-work-board.js +312 -0
- package/dist/agent/agent-work-board.js.map +1 -0
- package/dist/agent/agent.d.ts.map +1 -1
- package/dist/agent/agent.js.map +1 -1
- package/dist/agent/auto-compaction.d.ts +7 -2
- package/dist/agent/auto-compaction.d.ts.map +1 -1
- package/dist/agent/auto-compaction.js +23 -10
- package/dist/agent/auto-compaction.js.map +1 -1
- package/dist/agent/compaction.d.ts.map +1 -1
- package/dist/agent/compaction.js +1 -1
- package/dist/agent/compaction.js.map +1 -1
- package/dist/agent/context-handoff.d.ts.map +1 -1
- package/dist/agent/context-handoff.js +2 -1
- package/dist/agent/context-handoff.js.map +1 -1
- package/dist/agent/index.d.ts +8 -1
- package/dist/agent/index.d.ts.map +1 -1
- package/dist/agent/index.js +8 -1
- package/dist/agent/index.js.map +1 -1
- package/dist/agent/mission-artifacts.d.ts +62 -0
- package/dist/agent/mission-artifacts.d.ts.map +1 -0
- package/dist/agent/mission-artifacts.js +438 -0
- package/dist/agent/mission-artifacts.js.map +1 -0
- package/dist/agent/mission-manifest.d.ts +139 -3
- package/dist/agent/mission-manifest.d.ts.map +1 -1
- package/dist/agent/mission-manifest.js +549 -3
- package/dist/agent/mission-manifest.js.map +1 -1
- package/dist/agent/mission-store.d.ts +80 -0
- package/dist/agent/mission-store.d.ts.map +1 -0
- package/dist/agent/mission-store.js +603 -0
- package/dist/agent/mission-store.js.map +1 -0
- package/dist/agent/modes.d.ts +3 -3
- package/dist/agent/modes.d.ts.map +1 -1
- package/dist/agent/modes.js +66 -3
- package/dist/agent/modes.js.map +1 -1
- package/dist/agent/oracle-consultation-policy.d.ts +22 -0
- package/dist/agent/oracle-consultation-policy.d.ts.map +1 -0
- package/dist/agent/oracle-consultation-policy.js +72 -0
- package/dist/agent/oracle-consultation-policy.js.map +1 -0
- package/dist/agent/oracle-policy-experiment.d.ts +27 -0
- package/dist/agent/oracle-policy-experiment.d.ts.map +1 -0
- package/dist/agent/oracle-policy-experiment.js +59 -0
- package/dist/agent/oracle-policy-experiment.js.map +1 -0
- package/dist/agent/oracle-policy-rollout.d.ts +42 -0
- package/dist/agent/oracle-policy-rollout.d.ts.map +1 -0
- package/dist/agent/oracle-policy-rollout.js +80 -0
- package/dist/agent/oracle-policy-rollout.js.map +1 -0
- package/dist/agent/plugin-agent-api.d.ts +13 -0
- package/dist/agent/plugin-agent-api.d.ts.map +1 -0
- package/dist/agent/plugin-agent-api.js +11 -0
- package/dist/agent/plugin-agent-api.js.map +1 -0
- package/dist/agent/plugin-agent-loader.d.ts +17 -0
- package/dist/agent/plugin-agent-loader.d.ts.map +1 -0
- package/dist/agent/plugin-agent-loader.js +81 -0
- package/dist/agent/plugin-agent-loader.js.map +1 -0
- package/dist/agent/plugin-agent-registry.d.ts +62 -0
- package/dist/agent/plugin-agent-registry.d.ts.map +1 -0
- package/dist/agent/plugin-agent-registry.js +109 -0
- package/dist/agent/plugin-agent-registry.js.map +1 -0
- package/dist/agent/profile-loader.d.ts +7 -0
- package/dist/agent/profile-loader.d.ts.map +1 -0
- package/dist/agent/profile-loader.js +115 -0
- package/dist/agent/profile-loader.js.map +1 -0
- package/dist/agent/profiles.d.ts +30 -0
- package/dist/agent/profiles.d.ts.map +1 -0
- package/dist/agent/profiles.js +146 -0
- package/dist/agent/profiles.js.map +1 -0
- package/dist/agent/prompt-cache.d.ts +0 -4
- package/dist/agent/prompt-cache.d.ts.map +1 -1
- package/dist/agent/prompt-cache.js +1 -7
- package/dist/agent/prompt-cache.js.map +1 -1
- package/dist/agent/providers/codex-app-server.d.ts.map +1 -1
- package/dist/agent/providers/codex-app-server.js +1 -3
- package/dist/agent/providers/codex-app-server.js.map +1 -1
- package/dist/agent/providers/google-gemini-cli.js +204 -107
- package/dist/agent/providers/google.js +101 -41
- package/dist/agent/providers/scripted.d.ts.map +1 -1
- package/dist/agent/providers/scripted.js +1 -3
- package/dist/agent/providers/scripted.js.map +1 -1
- package/dist/agent/providers/validation.d.ts.map +1 -1
- package/dist/agent/providers/validation.js +1 -3
- package/dist/agent/providers/validation.js.map +1 -1
- package/dist/agent/providers/vertex.js +204 -107
- package/dist/agent/routing-receipt.d.ts +34 -0
- package/dist/agent/routing-receipt.d.ts.map +1 -0
- package/dist/agent/routing-receipt.js +55 -0
- package/dist/agent/routing-receipt.js.map +1 -0
- package/dist/agent/skill-artifact-metadata.d.ts +14 -0
- package/dist/agent/skill-artifact-metadata.d.ts.map +1 -0
- package/dist/agent/skill-artifact-metadata.js +49 -0
- package/dist/agent/skill-artifact-metadata.js.map +1 -0
- package/dist/agent/snapshot-store.d.ts +32 -0
- package/dist/agent/snapshot-store.d.ts.map +1 -0
- package/dist/agent/snapshot-store.js +195 -0
- package/dist/agent/snapshot-store.js.map +1 -0
- package/dist/agent/specialist-profiles.d.ts +36 -0
- package/dist/agent/specialist-profiles.d.ts.map +1 -0
- package/dist/agent/specialist-profiles.js +159 -0
- package/dist/agent/specialist-profiles.js.map +1 -0
- package/dist/agent/subagent-specs.d.ts +5 -2
- package/dist/agent/subagent-specs.d.ts.map +1 -1
- package/dist/agent/subagent-specs.js +83 -10
- package/dist/agent/subagent-specs.js.map +1 -1
- package/dist/agent/swarm/coverage-gate.d.ts +37 -0
- package/dist/agent/swarm/coverage-gate.d.ts.map +1 -0
- package/dist/agent/swarm/coverage-gate.js +48 -0
- package/dist/agent/swarm/coverage-gate.js.map +1 -0
- package/dist/agent/swarm/executor.d.ts +1 -0
- package/dist/agent/swarm/executor.d.ts.map +1 -1
- package/dist/agent/swarm/executor.js +151 -15
- package/dist/agent/swarm/executor.js.map +1 -1
- package/dist/agent/swarm/orchestrator-prompt.d.ts +25 -0
- package/dist/agent/swarm/orchestrator-prompt.d.ts.map +1 -0
- package/dist/agent/swarm/orchestrator-prompt.js +48 -0
- package/dist/agent/swarm/orchestrator-prompt.js.map +1 -0
- package/dist/agent/swarm/plan-parser.d.ts.map +1 -1
- package/dist/agent/swarm/plan-parser.js +27 -2
- package/dist/agent/swarm/plan-parser.js.map +1 -1
- package/dist/agent/swarm/types.d.ts +17 -0
- package/dist/agent/swarm/types.d.ts.map +1 -1
- package/dist/agent/swarm/types.js.map +1 -1
- package/dist/agent/swarm/validation-directive.d.ts +21 -0
- package/dist/agent/swarm/validation-directive.d.ts.map +1 -0
- package/dist/agent/swarm/validation-directive.js +25 -0
- package/dist/agent/swarm/validation-directive.js.map +1 -0
- package/dist/agent/token-counter.d.ts +40 -0
- package/dist/agent/token-counter.d.ts.map +1 -0
- package/dist/agent/token-counter.js +74 -0
- package/dist/agent/token-counter.js.map +1 -0
- package/dist/agent/transport/events.d.ts +1 -1
- package/dist/agent/transport/events.d.ts.map +1 -1
- package/dist/agent/transport/events.js +1 -1
- package/dist/agent/transport/events.js.map +1 -1
- package/dist/agent/transport/tool-execution-bridge.d.ts.map +1 -1
- package/dist/agent/transport/tool-execution-bridge.js +4 -1
- package/dist/agent/transport/tool-execution-bridge.js.map +1 -1
- package/dist/agent/types.d.ts +4 -2
- package/dist/agent/types.d.ts.map +1 -1
- package/dist/agent/types.js.map +1 -1
- package/dist/api/enterprise-routes.d.ts.map +1 -1
- package/dist/api/enterprise-routes.js +87 -10
- package/dist/api/enterprise-routes.js.map +1 -1
- package/dist/api/org-settings-merge.d.ts +12 -0
- package/dist/api/org-settings-merge.d.ts.map +1 -0
- package/dist/api/org-settings-merge.js +38 -0
- package/dist/api/org-settings-merge.js.map +1 -0
- package/dist/api/user-settings-merge.d.ts +16 -0
- package/dist/api/user-settings-merge.d.ts.map +1 -0
- package/dist/api/user-settings-merge.js +37 -0
- package/dist/api/user-settings-merge.js.map +1 -0
- package/dist/app-server/daemon-lifecycle-api.d.ts.map +1 -1
- package/dist/app-server/daemon-lifecycle-api.js +1 -3
- package/dist/app-server/daemon-lifecycle-api.js.map +1 -1
- package/dist/app-server/external-agent-import-api.d.ts.map +1 -1
- package/dist/app-server/external-agent-import-api.js +1 -3
- package/dist/app-server/external-agent-import-api.js.map +1 -1
- package/dist/app-server/network-governance-api.d.ts.map +1 -1
- package/dist/app-server/network-governance-api.js +1 -3
- package/dist/app-server/network-governance-api.js.map +1 -1
- package/dist/app-server/plugin-bundle-api.d.ts.map +1 -1
- package/dist/app-server/plugin-bundle-api.js +2 -3
- package/dist/app-server/plugin-bundle-api.js.map +1 -1
- package/dist/app-server/policy-control-api.d.ts.map +1 -1
- package/dist/app-server/policy-control-api.js +1 -3
- package/dist/app-server/policy-control-api.js.map +1 -1
- package/dist/app-server/protocol-modes-api.d.ts.map +1 -1
- package/dist/app-server/protocol-modes-api.js +1 -3
- package/dist/app-server/protocol-modes-api.js.map +1 -1
- package/dist/app-server/session-api.d.ts.map +1 -1
- package/dist/app-server/session-api.js +15 -2
- package/dist/app-server/session-api.js.map +1 -1
- package/dist/audit/logger.d.ts +5 -5
- package/dist/cli/args.d.ts +4 -0
- package/dist/cli/args.d.ts.map +1 -1
- package/dist/cli/args.js +33 -1
- package/dist/cli/args.js.map +1 -1
- package/dist/cli/commands/a2a.d.ts.map +1 -1
- package/dist/cli/commands/a2a.js +1 -3
- package/dist/cli/commands/a2a.js.map +1 -1
- package/dist/cli/commands/mission.d.ts +4 -0
- package/dist/cli/commands/mission.d.ts.map +1 -0
- package/dist/cli/commands/mission.js +196 -0
- package/dist/cli/commands/mission.js.map +1 -0
- package/dist/cli/commands/value.d.ts +10 -0
- package/dist/cli/commands/value.d.ts.map +1 -0
- package/dist/cli/commands/value.js +33 -0
- package/dist/cli/commands/value.js.map +1 -0
- package/dist/cli/direct-runtime-command.d.ts +1 -0
- package/dist/cli/direct-runtime-command.d.ts.map +1 -1
- package/dist/cli/direct-runtime-command.js +25 -3
- package/dist/cli/direct-runtime-command.js.map +1 -1
- package/dist/cli/headless-protocol.d.ts.map +1 -1
- package/dist/cli/headless-protocol.js +1 -3
- package/dist/cli/headless-protocol.js.map +1 -1
- package/dist/cli/headless.d.ts +3 -19
- package/dist/cli/headless.d.ts.map +1 -1
- package/dist/cli/headless.js +8 -619
- package/dist/cli/headless.js.map +1 -1
- package/dist/cli/help.d.ts.map +1 -1
- package/dist/cli/help.js +13 -0
- package/dist/cli/help.js.map +1 -1
- package/dist/cli/native-tui-launcher.d.ts +126 -0
- package/dist/cli/native-tui-launcher.d.ts.map +1 -0
- package/dist/cli/native-tui-launcher.js +425 -0
- package/dist/cli/native-tui-launcher.js.map +1 -0
- package/dist/cli/rpc-mode.d.ts +3 -27
- package/dist/cli/rpc-mode.d.ts.map +1 -1
- package/dist/cli/rpc-mode.js +8 -177
- package/dist/cli/rpc-mode.js.map +1 -1
- package/dist/cli/session.d.ts +11 -19
- package/dist/cli/session.d.ts.map +1 -1
- package/dist/cli/session.js +6 -64
- package/dist/cli/session.js.map +1 -1
- package/dist/cli/system-prompt.d.ts.map +1 -1
- package/dist/cli/system-prompt.js +38 -7
- package/dist/cli/system-prompt.js.map +1 -1
- package/dist/cli-command-runtime.d.ts.map +1 -1
- package/dist/cli-command-runtime.js +26 -24
- package/dist/cli-command-runtime.js.map +1 -1
- package/dist/cli-runtime.js +41729 -121859
- package/dist/codex/app-server-client.d.ts.map +1 -1
- package/dist/codex/app-server-client.js +1 -3
- package/dist/codex/app-server-client.js.map +1 -1
- package/dist/codex/compatibility.d.ts.map +1 -1
- package/dist/codex/compatibility.js +1 -3
- package/dist/codex/compatibility.js.map +1 -1
- package/dist/codex/subagent-dispatch-table.d.ts +8 -0
- package/dist/codex/subagent-dispatch-table.d.ts.map +1 -1
- package/dist/codex/subagent-dispatch-table.js +23 -0
- package/dist/codex/subagent-dispatch-table.js.map +1 -1
- package/dist/config/env-vars.d.ts +12 -0
- package/dist/config/env-vars.d.ts.map +1 -1
- package/dist/config/env-vars.js +12 -0
- package/dist/config/env-vars.js.map +1 -1
- package/dist/config/ui-state.d.ts +32 -0
- package/dist/config/ui-state.d.ts.map +1 -0
- package/dist/config/ui-state.js +88 -0
- package/dist/config/ui-state.js.map +1 -0
- package/dist/context/manifest.d.ts.map +1 -1
- package/dist/context/manifest.js +1 -3
- package/dist/context/manifest.js.map +1 -1
- package/dist/context/repo-map.d.ts.map +1 -1
- package/dist/context/repo-map.js +1 -7
- package/dist/context/repo-map.js.map +1 -1
- package/dist/context/token-optimizer.d.ts.map +1 -1
- package/dist/context/token-optimizer.js +1 -8
- package/dist/context/token-optimizer.js.map +1 -1
- package/dist/conversation/render-model.d.ts +0 -36
- package/dist/conversation/render-model.d.ts.map +1 -1
- package/dist/conversation/render-model.js +1 -3
- package/dist/conversation/render-model.js.map +1 -1
- package/dist/customer-value/ambient-learning.d.ts +75 -0
- package/dist/customer-value/ambient-learning.d.ts.map +1 -0
- package/dist/customer-value/ambient-learning.js +472 -0
- package/dist/customer-value/ambient-learning.js.map +1 -0
- package/dist/customer-value/internal-helpers.d.ts +13 -0
- package/dist/customer-value/internal-helpers.d.ts.map +1 -0
- package/dist/customer-value/internal-helpers.js +70 -0
- package/dist/customer-value/internal-helpers.js.map +1 -0
- package/dist/customer-value/report.d.ts +282 -0
- package/dist/customer-value/report.d.ts.map +1 -0
- package/dist/customer-value/report.js +2085 -0
- package/dist/customer-value/report.js.map +1 -0
- package/dist/db/schema.d.ts +7 -3
- package/dist/db/schema.d.ts.map +1 -1
- package/dist/db/schema.js.map +1 -1
- package/dist/evalops/agent-bootstrap.d.ts.map +1 -1
- package/dist/evalops/agent-bootstrap.js +1 -3
- package/dist/evalops/agent-bootstrap.js.map +1 -1
- package/dist/evalops/agent-mcp-metadata.d.ts.map +1 -1
- package/dist/evalops/agent-mcp-metadata.js +1 -3
- package/dist/evalops/agent-mcp-metadata.js.map +1 -1
- package/dist/hooks/notification-hooks.d.ts +1 -1
- package/dist/hooks/notification-hooks.d.ts.map +1 -1
- package/dist/hooks/notification-hooks.js.map +1 -1
- package/dist/hooks/tui-surface.d.ts +35 -0
- package/dist/hooks/tui-surface.d.ts.map +1 -0
- package/dist/hooks/tui-surface.js +11 -0
- package/dist/hooks/tui-surface.js.map +1 -0
- package/dist/hooks/types.d.ts +2 -1
- package/dist/hooks/types.d.ts.map +1 -1
- package/dist/hooks/types.js.map +1 -1
- package/dist/hooks/typescript-loader.d.ts.map +1 -1
- package/dist/hooks/typescript-loader.js.map +1 -1
- package/dist/hooks/ui-context.d.ts.map +1 -1
- package/dist/hooks/ui-context.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/installers/maestro-review-workflow.d.ts +38 -0
- package/dist/installers/maestro-review-workflow.d.ts.map +1 -0
- package/dist/installers/maestro-review-workflow.js +163 -0
- package/dist/installers/maestro-review-workflow.js.map +1 -0
- package/dist/load-env.d.ts.map +1 -1
- package/dist/load-env.js +2 -1
- package/dist/load-env.js.map +1 -1
- package/dist/main.d.ts.map +1 -1
- package/dist/main.js +201 -840
- package/dist/main.js.map +1 -1
- package/dist/mcp/config.d.ts.map +1 -1
- package/dist/mcp/config.js +1 -3
- package/dist/mcp/config.js.map +1 -1
- package/dist/mcp/elicitation.d.ts.map +1 -1
- package/dist/mcp/elicitation.js +1 -3
- package/dist/mcp/elicitation.js.map +1 -1
- package/dist/mcp/official-registry.d.ts.map +1 -1
- package/dist/mcp/official-registry.js +1 -3
- package/dist/mcp/official-registry.js.map +1 -1
- package/dist/mcp/workspace-trust.d.ts.map +1 -1
- package/dist/mcp/workspace-trust.js +1 -3
- package/dist/mcp/workspace-trust.js.map +1 -1
- package/dist/memory/service-client.d.ts.map +1 -1
- package/dist/memory/service-client.js +1 -3
- package/dist/memory/service-client.js.map +1 -1
- package/dist/models/config-loader.d.ts +5 -5
- package/dist/models/config-loader.d.ts.map +1 -1
- package/dist/models/config-loader.js +1 -3
- package/dist/models/config-loader.js.map +1 -1
- package/dist/node_modules/@evalops/contracts/dist/index.d.ts +46 -0
- package/dist/node_modules/@evalops/contracts/dist/index.d.ts.map +1 -1
- package/dist/node_modules/@evalops/contracts/dist/index.js +3 -0
- package/dist/node_modules/@evalops/contracts/dist/index.js.map +1 -1
- package/dist/node_modules/@evalops/contracts/dist/maestro-app-server.d.ts +284 -0
- package/dist/node_modules/@evalops/contracts/dist/maestro-app-server.d.ts.map +1 -1
- package/dist/node_modules/@evalops/contracts/dist/maestro-app-server.js +41 -0
- package/dist/node_modules/@evalops/contracts/dist/maestro-app-server.js.map +1 -1
- package/dist/node_modules/@evalops/contracts/dist/maestro-settings.d.ts +61 -0
- package/dist/node_modules/@evalops/contracts/dist/maestro-settings.d.ts.map +1 -0
- package/dist/node_modules/@evalops/contracts/dist/maestro-settings.js +183 -0
- package/dist/node_modules/@evalops/contracts/dist/maestro-settings.js.map +1 -0
- package/dist/node_modules/@evalops/contracts/dist/schemas.d.ts +986 -0
- package/dist/node_modules/@evalops/contracts/dist/schemas.d.ts.map +1 -1
- package/dist/node_modules/@evalops/contracts/dist/schemas.js +49 -0
- package/dist/node_modules/@evalops/contracts/dist/schemas.js.map +1 -1
- package/dist/node_modules/@evalops/contracts/dist/token-estimation.d.ts +56 -0
- package/dist/node_modules/@evalops/contracts/dist/token-estimation.d.ts.map +1 -0
- package/dist/node_modules/@evalops/contracts/dist/token-estimation.js +86 -0
- package/dist/node_modules/@evalops/contracts/dist/token-estimation.js.map +1 -0
- package/dist/node_modules/@evalops/contracts/package.json +1 -1
- package/dist/oauth/connectors.d.ts.map +1 -1
- package/dist/oauth/connectors.js +1 -3
- package/dist/oauth/connectors.js.map +1 -1
- package/dist/oauth/evalops.d.ts.map +1 -1
- package/dist/oauth/evalops.js +1 -3
- package/dist/oauth/evalops.js.map +1 -1
- package/dist/packages/discovery.d.ts.map +1 -1
- package/dist/packages/discovery.js +1 -0
- package/dist/packages/discovery.js.map +1 -1
- package/dist/packages/inspection.d.ts.map +1 -1
- package/dist/packages/inspection.js +7 -1
- package/dist/packages/inspection.js.map +1 -1
- package/dist/packages/loader.d.ts.map +1 -1
- package/dist/packages/loader.js +8 -1
- package/dist/packages/loader.js.map +1 -1
- package/dist/packages/runtime.d.ts +1 -0
- package/dist/packages/runtime.d.ts.map +1 -1
- package/dist/packages/runtime.js +9 -1
- package/dist/packages/runtime.js.map +1 -1
- package/dist/packages/types.d.ts +6 -0
- package/dist/packages/types.d.ts.map +1 -1
- package/dist/packages/types.js.map +1 -1
- package/dist/platform/a2a-client.d.ts.map +1 -1
- package/dist/platform/a2a-client.js +1 -3
- package/dist/platform/a2a-client.js.map +1 -1
- package/dist/platform/a2a-cockpit.d.ts +1 -0
- package/dist/platform/a2a-cockpit.d.ts.map +1 -1
- package/dist/platform/a2a-cockpit.js +42 -11
- package/dist/platform/a2a-cockpit.js.map +1 -1
- package/dist/platform/a2a-completion-audit.d.ts +1 -1
- package/dist/platform/a2a-completion-audit.d.ts.map +1 -1
- package/dist/platform/a2a-completion-audit.js +7 -11
- package/dist/platform/a2a-completion-audit.js.map +1 -1
- package/dist/platform/a2a-maestro-peer.js +16 -0
- package/dist/platform/a2a-maestro-peer.js.map +1 -1
- package/dist/platform/a2a-peer-pairing.d.ts.map +1 -1
- package/dist/platform/a2a-peer-pairing.js +1 -3
- package/dist/platform/a2a-peer-pairing.js.map +1 -1
- package/dist/platform/a2a-peer-registry.d.ts.map +1 -1
- package/dist/platform/a2a-peer-registry.js +1 -3
- package/dist/platform/a2a-peer-registry.js.map +1 -1
- package/dist/platform/a2a-task-ledger.d.ts +20 -0
- package/dist/platform/a2a-task-ledger.d.ts.map +1 -1
- package/dist/platform/a2a-task-ledger.js +207 -11
- package/dist/platform/a2a-task-ledger.js.map +1 -1
- package/dist/platform/a2a-work-graph.d.ts.map +1 -1
- package/dist/platform/a2a-work-graph.js +1 -3
- package/dist/platform/a2a-work-graph.js.map +1 -1
- package/dist/platform/operating-layer.d.ts.map +1 -1
- package/dist/platform/operating-layer.js +14 -8
- package/dist/platform/operating-layer.js.map +1 -1
- package/dist/platform/tool-execution-client.d.ts.map +1 -1
- package/dist/platform/tool-execution-client.js +19 -2
- package/dist/platform/tool-execution-client.js.map +1 -1
- package/dist/providers/auth.d.ts.map +1 -1
- package/dist/providers/auth.js +1 -3
- package/dist/providers/auth.js.map +1 -1
- package/dist/runtime/agent-runtime.d.ts +22 -6
- package/dist/runtime/agent-runtime.d.ts.map +1 -1
- package/dist/runtime/agent-runtime.js +1 -1
- package/dist/runtime/agent-runtime.js.map +1 -1
- package/dist/runtime/env.d.ts +10 -1
- package/dist/runtime/env.d.ts.map +1 -1
- package/dist/runtime/env.js +64 -1
- package/dist/runtime/env.js.map +1 -1
- package/dist/runtime/prompt-queue.d.ts.map +1 -0
- package/dist/runtime/prompt-queue.js.map +1 -0
- package/dist/safety/policy.d.ts.map +1 -1
- package/dist/safety/policy.js +1 -4
- package/dist/safety/policy.js.map +1 -1
- package/dist/sandbox/docker-sandbox.d.ts.map +1 -1
- package/dist/sandbox/docker-sandbox.js +6 -1
- package/dist/sandbox/docker-sandbox.js.map +1 -1
- package/dist/server/handlers/chat-ws.d.ts +2 -1
- package/dist/server/handlers/chat-ws.d.ts.map +1 -1
- package/dist/server/handlers/chat-ws.js +150 -5
- package/dist/server/handlers/chat-ws.js.map +1 -1
- package/dist/server/handlers/chat.d.ts.map +1 -1
- package/dist/server/handlers/chat.js +78 -5
- package/dist/server/handlers/chat.js.map +1 -1
- package/dist/server/handlers/hosted-runner-drain.d.ts.map +1 -1
- package/dist/server/handlers/hosted-runner-drain.js +1 -3
- package/dist/server/handlers/hosted-runner-drain.js.map +1 -1
- package/dist/server/handlers/package.d.ts.map +1 -1
- package/dist/server/handlers/package.js +1 -0
- package/dist/server/handlers/package.js.map +1 -1
- package/dist/server/handlers/platform-a2a-push.d.ts.map +1 -1
- package/dist/server/handlers/platform-a2a-push.js +53 -2
- package/dist/server/handlers/platform-a2a-push.js.map +1 -1
- package/dist/server/handlers/queue.js +1 -1
- package/dist/server/handlers/queue.js.map +1 -1
- package/dist/server/handlers/runtime-app-server-ws.d.ts.map +1 -1
- package/dist/server/handlers/runtime-app-server-ws.js +1 -3
- package/dist/server/handlers/runtime-app-server-ws.js.map +1 -1
- package/dist/server/handlers/ui.js +1 -1
- package/dist/server/handlers/ui.js.map +1 -1
- package/dist/server/handlers/zen.js +1 -1
- package/dist/server/handlers/zen.js.map +1 -1
- package/dist/server/headless-runtime-service.d.ts +16 -0
- package/dist/server/headless-runtime-service.d.ts.map +1 -1
- package/dist/server/headless-runtime-service.js +232 -206
- package/dist/server/headless-runtime-service.js.map +1 -1
- package/dist/server/hosted-agent-runtime-progress.d.ts.map +1 -1
- package/dist/server/hosted-agent-runtime-progress.js +12 -3
- package/dist/server/hosted-agent-runtime-progress.js.map +1 -1
- package/dist/server/hosted-session-manager.d.ts +3 -0
- package/dist/server/hosted-session-manager.d.ts.map +1 -1
- package/dist/server/hosted-session-manager.js +26 -0
- package/dist/server/hosted-session-manager.js.map +1 -1
- package/dist/server/model-selection.d.ts +1 -0
- package/dist/server/model-selection.d.ts.map +1 -1
- package/dist/server/model-selection.js +4 -0
- package/dist/server/model-selection.js.map +1 -1
- package/dist/server/pending-request-payload.d.ts.map +1 -1
- package/dist/server/pending-request-payload.js +1 -3
- package/dist/server/pending-request-payload.js.map +1 -1
- package/dist/server/route-auth.d.ts.map +1 -1
- package/dist/server/route-auth.js +2 -0
- package/dist/server/route-auth.js.map +1 -1
- package/dist/server/session-serialization.d.ts.map +1 -1
- package/dist/server/session-serialization.js +4 -3
- package/dist/server/session-serialization.js.map +1 -1
- package/dist/server/session-timeline.d.ts.map +1 -1
- package/dist/server/session-timeline.js +1 -1
- package/dist/server/session-timeline.js.map +1 -1
- package/dist/server/sse-session.d.ts +2 -0
- package/dist/server/sse-session.d.ts.map +1 -1
- package/dist/server/sse-session.js +3 -0
- package/dist/server/sse-session.js.map +1 -1
- package/dist/server/stores/ui-store.d.ts +1 -1
- package/dist/server/stores/ui-store.d.ts.map +1 -1
- package/dist/server/stores/ui-store.js.map +1 -1
- package/dist/server/utils/token-estimator.d.ts +2 -2
- package/dist/server/utils/token-estimator.d.ts.map +1 -1
- package/dist/server/utils/token-estimator.js +2 -12
- package/dist/server/utils/token-estimator.js.map +1 -1
- package/dist/server/validation.d.ts +54 -0
- package/dist/server/validation.d.ts.map +1 -1
- package/dist/services/compliance/normalize.d.ts.map +1 -1
- package/dist/services/compliance/normalize.js +1 -3
- package/dist/services/compliance/normalize.js.map +1 -1
- package/dist/services/image-providers/cost.d.ts +70 -0
- package/dist/services/image-providers/cost.d.ts.map +1 -0
- package/dist/services/image-providers/cost.js +164 -0
- package/dist/services/image-providers/cost.js.map +1 -0
- package/dist/services/image-providers/flux.d.ts +40 -0
- package/dist/services/image-providers/flux.d.ts.map +1 -0
- package/dist/services/image-providers/flux.js +99 -0
- package/dist/services/image-providers/flux.js.map +1 -0
- package/dist/services/image-providers/index.d.ts +24 -0
- package/dist/services/image-providers/index.d.ts.map +1 -0
- package/dist/services/image-providers/index.js +27 -0
- package/dist/services/image-providers/index.js.map +1 -0
- package/dist/services/image-providers/masks.d.ts +51 -0
- package/dist/services/image-providers/masks.d.ts.map +1 -0
- package/dist/services/image-providers/masks.js +132 -0
- package/dist/services/image-providers/masks.js.map +1 -0
- package/dist/services/image-providers/openai.d.ts +35 -0
- package/dist/services/image-providers/openai.d.ts.map +1 -0
- package/dist/services/image-providers/openai.js +93 -0
- package/dist/services/image-providers/openai.js.map +1 -0
- package/dist/services/image-providers/types.d.ts +61 -0
- package/dist/services/image-providers/types.d.ts.map +1 -0
- package/dist/services/image-providers/types.js +17 -0
- package/dist/services/image-providers/types.js.map +1 -0
- package/dist/services/intelligent-router/index.d.ts +1 -0
- package/dist/services/intelligent-router/index.d.ts.map +1 -1
- package/dist/services/intelligent-router/index.js +1 -0
- package/dist/services/intelligent-router/index.js.map +1 -1
- package/dist/services/intelligent-router/normalize.d.ts +1 -0
- package/dist/services/intelligent-router/normalize.d.ts.map +1 -1
- package/dist/services/intelligent-router/normalize.js +18 -3
- package/dist/services/intelligent-router/normalize.js.map +1 -1
- package/dist/services/intelligent-router/outcome.d.ts +19 -0
- package/dist/services/intelligent-router/outcome.d.ts.map +1 -0
- package/dist/services/intelligent-router/outcome.js +51 -0
- package/dist/services/intelligent-router/outcome.js.map +1 -0
- package/dist/services/intelligent-router/recorder.d.ts +2 -0
- package/dist/services/intelligent-router/recorder.d.ts.map +1 -1
- package/dist/services/intelligent-router/recorder.js +72 -1
- package/dist/services/intelligent-router/recorder.js.map +1 -1
- package/dist/services/intelligent-router/service.d.ts +1 -0
- package/dist/services/intelligent-router/service.d.ts.map +1 -1
- package/dist/services/intelligent-router/service.js +60 -11
- package/dist/services/intelligent-router/service.js.map +1 -1
- package/dist/services/intelligent-router/types.d.ts +18 -0
- package/dist/services/intelligent-router/types.d.ts.map +1 -1
- package/dist/services/intelligent-router/types.js.map +1 -1
- package/dist/services/revenue-attribution/normalize.d.ts.map +1 -1
- package/dist/services/revenue-attribution/normalize.js +1 -3
- package/dist/services/revenue-attribution/normalize.js.map +1 -1
- package/dist/services/traces/normalize.d.ts.map +1 -1
- package/dist/services/traces/normalize.js +1 -3
- package/dist/services/traces/normalize.js.map +1 -1
- package/dist/services/workspace-config/middleware.d.ts +2 -0
- package/dist/services/workspace-config/middleware.d.ts.map +1 -1
- package/dist/services/workspace-config/middleware.js +25 -28
- package/dist/services/workspace-config/middleware.js.map +1 -1
- package/dist/services/workspace-config/normalize.d.ts.map +1 -1
- package/dist/services/workspace-config/normalize.js +1 -3
- package/dist/services/workspace-config/normalize.js.map +1 -1
- package/dist/session/agent-lineage-projection.d.ts +30 -0
- package/dist/session/agent-lineage-projection.d.ts.map +1 -0
- package/dist/session/agent-lineage-projection.js +109 -0
- package/dist/session/agent-lineage-projection.js.map +1 -0
- package/dist/session/manager.d.ts +3 -0
- package/dist/session/manager.d.ts.map +1 -1
- package/dist/session/manager.js +24 -0
- package/dist/session/manager.js.map +1 -1
- package/dist/session/session-graph-projection.d.ts +11 -0
- package/dist/session/session-graph-projection.d.ts.map +1 -1
- package/dist/session/session-graph-projection.js +28 -0
- package/dist/session/session-graph-projection.js.map +1 -1
- package/dist/session/types.d.ts +2 -0
- package/dist/session/types.d.ts.map +1 -1
- package/dist/session/types.js.map +1 -1
- package/dist/telemetry/agent-workforce-native-event.d.ts.map +1 -1
- package/dist/telemetry/agent-workforce-native-event.js +1 -3
- package/dist/telemetry/agent-workforce-native-event.js.map +1 -1
- package/dist/telemetry/maestro-event-bus.d.ts +1 -1
- package/dist/telemetry/maestro-event-bus.d.ts.map +1 -1
- package/dist/telemetry/maestro-event-bus.js +42 -81
- package/dist/telemetry/maestro-event-bus.js.map +1 -1
- package/dist/telemetry/maestro-platform-replay-fixture.d.ts.map +1 -1
- package/dist/telemetry/maestro-platform-replay-fixture.js +1 -3
- package/dist/telemetry/maestro-platform-replay-fixture.js.map +1 -1
- package/dist/telemetry/maestro-publisher-conformance-fixture.js.map +1 -1
- package/dist/telemetry/oracle-policy.d.ts +6 -0
- package/dist/telemetry/oracle-policy.d.ts.map +1 -0
- package/dist/telemetry/oracle-policy.js +17 -0
- package/dist/telemetry/oracle-policy.js.map +1 -0
- package/dist/telemetry/wide-events.d.ts +1 -1
- package/dist/telemetry/wide-events.d.ts.map +1 -1
- package/dist/telemetry/wide-events.js.map +1 -1
- package/dist/telemetry.d.ts.map +1 -1
- package/dist/telemetry.js +54 -43
- package/dist/telemetry.js.map +1 -1
- package/dist/theme/theme-loader.d.ts.map +1 -1
- package/dist/theme/theme-loader.js +1 -3
- package/dist/theme/theme-loader.js.map +1 -1
- package/dist/theme/theme.d.ts +2 -8
- package/dist/theme/theme.d.ts.map +1 -1
- package/dist/theme/theme.js +7 -0
- package/dist/theme/theme.js.map +1 -1
- package/dist/theme/tui-theme-helpers.d.ts +2 -1
- package/dist/theme/tui-theme-helpers.d.ts.map +1 -1
- package/dist/theme/tui-theme-helpers.js.map +1 -1
- package/dist/theme/tui-theme-types.d.ts +39 -0
- package/dist/theme/tui-theme-types.d.ts.map +1 -0
- package/dist/theme/tui-theme-types.js +10 -0
- package/dist/theme/tui-theme-types.js.map +1 -0
- package/dist/tools/apply-patch.d.ts.map +1 -1
- package/dist/tools/apply-patch.js +76 -8
- package/dist/tools/apply-patch.js.map +1 -1
- package/dist/tools/diff-preview.d.ts.map +1 -1
- package/dist/tools/diff-preview.js +10 -1
- package/dist/tools/diff-preview.js.map +1 -1
- package/dist/tools/edit.d.ts.map +1 -1
- package/dist/tools/edit.js +17 -0
- package/dist/tools/edit.js.map +1 -1
- package/dist/tools/index.d.ts +199 -160
- package/dist/tools/index.d.ts.map +1 -1
- package/dist/tools/index.js +4 -0
- package/dist/tools/index.js.map +1 -1
- package/dist/tools/lazy-registry.d.ts.map +1 -1
- package/dist/tools/lazy-registry.js +1 -0
- package/dist/tools/lazy-registry.js.map +1 -1
- package/dist/tools/oracle.d.ts +9 -0
- package/dist/tools/oracle.d.ts.map +1 -1
- package/dist/tools/oracle.js +26 -24
- package/dist/tools/oracle.js.map +1 -1
- package/dist/tools/painter.d.ts +73 -0
- package/dist/tools/painter.d.ts.map +1 -0
- package/dist/tools/painter.js +283 -0
- package/dist/tools/painter.js.map +1 -0
- package/dist/tools/typebox-tool.d.ts.map +1 -1
- package/dist/tools/typebox-tool.js +1 -1
- package/dist/tools/typebox-tool.js.map +1 -1
- package/dist/tools/write.d.ts.map +1 -1
- package/dist/tools/write.js +9 -0
- package/dist/tools/write.js.map +1 -1
- package/dist/undo/tracker.d.ts +5 -0
- package/dist/undo/tracker.d.ts.map +1 -1
- package/dist/undo/tracker.js +13 -0
- package/dist/undo/tracker.js.map +1 -1
- package/dist/utils/fs.d.ts +1 -1
- package/dist/utils/fs.d.ts.map +1 -1
- package/dist/utils/fs.js +29 -2
- package/dist/utils/fs.js.map +1 -1
- package/dist/utils/git-stash.d.ts.map +1 -1
- package/dist/utils/git-stash.js +15 -8
- package/dist/utils/git-stash.js.map +1 -1
- package/dist/utils/json.d.ts +11 -0
- package/dist/utils/json.d.ts.map +1 -1
- package/dist/utils/json.js +9 -0
- package/dist/utils/json.js.map +1 -1
- package/dist/utils/shell-env.d.ts.map +1 -1
- package/dist/utils/shell-env.js +2 -0
- package/dist/utils/shell-env.js.map +1 -1
- package/dist/utils/terminal-image.d.ts +52 -0
- package/dist/utils/terminal-image.d.ts.map +1 -0
- package/dist/utils/terminal-image.js +95 -0
- package/dist/utils/terminal-image.js.map +1 -0
- package/dist/utils/terminal-text.d.ts +11 -0
- package/dist/utils/terminal-text.d.ts.map +1 -0
- package/dist/utils/terminal-text.js +21 -0
- package/dist/utils/terminal-text.js.map +1 -0
- package/dist/utils/url-extractor-git.d.ts +26 -0
- package/dist/utils/url-extractor-git.d.ts.map +1 -0
- package/dist/utils/url-extractor-git.js +259 -0
- package/dist/utils/url-extractor-git.js.map +1 -0
- package/dist/utils/url-extractor.d.ts.map +1 -1
- package/dist/utils/url-extractor.js +23 -251
- package/dist/utils/url-extractor.js.map +1 -1
- package/dist/version.json +2 -2
- package/dist/web-server.d.ts.map +1 -1
- package/dist/web-server.js +24 -2
- package/dist/web-server.js.map +1 -1
- package/package.json +312 -306
- package/skills/incident-triage/SKILL.md +20 -1
- package/skills/install-code-review/SKILL.md +69 -0
- package/skills/security-review/SKILL.md +68 -0
- package/skills/security-review/reference/rubric.md +85 -0
- package/dist/cli/commands/agents.d.ts +0 -20
- package/dist/cli/commands/agents.d.ts.map +0 -1
- package/dist/cli/commands/agents.js +0 -280
- package/dist/cli/commands/agents.js.map +0 -1
- package/dist/cli/commands/anthropic.d.ts +0 -2
- package/dist/cli/commands/anthropic.d.ts.map +0 -1
- package/dist/cli/commands/anthropic.js +0 -6
- package/dist/cli/commands/anthropic.js.map +0 -1
- package/dist/cli/commands/cost.d.ts +0 -13
- package/dist/cli/commands/cost.d.ts.map +0 -1
- package/dist/cli/commands/cost.js +0 -143
- package/dist/cli/commands/cost.js.map +0 -1
- package/dist/cli/commands/exec-constants.d.ts +0 -3
- package/dist/cli/commands/exec-constants.d.ts.map +0 -1
- package/dist/cli/commands/exec-constants.js +0 -3
- package/dist/cli/commands/exec-constants.js.map +0 -1
- package/dist/cli/commands/exec.d.ts +0 -19
- package/dist/cli/commands/exec.d.ts.map +0 -1
- package/dist/cli/commands/exec.js +0 -207
- package/dist/cli/commands/exec.js.map +0 -1
- package/dist/cli/commands/hooks.d.ts +0 -2
- package/dist/cli/commands/hooks.d.ts.map +0 -1
- package/dist/cli/commands/hooks.js +0 -25
- package/dist/cli/commands/hooks.js.map +0 -1
- package/dist/cli/commands/hosted-runner.d.ts +0 -25
- package/dist/cli/commands/hosted-runner.d.ts.map +0 -1
- package/dist/cli/commands/hosted-runner.js +0 -278
- package/dist/cli/commands/hosted-runner.js.map +0 -1
- package/dist/cli/commands/memory.d.ts +0 -2
- package/dist/cli/commands/memory.d.ts.map +0 -1
- package/dist/cli/commands/memory.js +0 -208
- package/dist/cli/commands/memory.js.map +0 -1
- package/dist/cli/commands/models.d.ts +0 -3
- package/dist/cli/commands/models.d.ts.map +0 -1
- package/dist/cli/commands/models.js +0 -154
- package/dist/cli/commands/models.js.map +0 -1
- package/dist/cli/commands/modes.d.ts +0 -8
- package/dist/cli/commands/modes.d.ts.map +0 -1
- package/dist/cli/commands/modes.js +0 -151
- package/dist/cli/commands/modes.js.map +0 -1
- package/dist/cli/commands/openai.d.ts +0 -2
- package/dist/cli/commands/openai.d.ts.map +0 -1
- package/dist/cli/commands/openai.js +0 -116
- package/dist/cli/commands/openai.js.map +0 -1
- package/dist/cli/commands/session-transfer.d.ts +0 -5
- package/dist/cli/commands/session-transfer.d.ts.map +0 -1
- package/dist/cli/commands/session-transfer.js +0 -43
- package/dist/cli/commands/session-transfer.js.map +0 -1
- package/dist/cli/commands/sessions.d.ts +0 -8
- package/dist/cli/commands/sessions.d.ts.map +0 -1
- package/dist/cli/commands/sessions.js +0 -152
- package/dist/cli/commands/sessions.js.map +0 -1
- package/dist/cli/commands/skill.d.ts +0 -10
- package/dist/cli/commands/skill.d.ts.map +0 -1
- package/dist/cli/commands/skill.js +0 -303
- package/dist/cli/commands/skill.js.map +0 -1
- package/dist/cli/commands/stats.d.ts +0 -7
- package/dist/cli/commands/stats.d.ts.map +0 -1
- package/dist/cli/commands/stats.js +0 -167
- package/dist/cli/commands/stats.js.map +0 -1
- package/dist/cli/commands/status.d.ts +0 -2
- package/dist/cli/commands/status.d.ts.map +0 -1
- package/dist/cli/commands/status.js +0 -11
- package/dist/cli/commands/status.js.map +0 -1
- package/dist/cli/commands/update.d.ts +0 -12
- package/dist/cli/commands/update.d.ts.map +0 -1
- package/dist/cli/commands/update.js +0 -148
- package/dist/cli/commands/update.js.map +0 -1
- package/dist/cli-tui/about-view.d.ts +0 -48
- package/dist/cli-tui/about-view.d.ts.map +0 -1
- package/dist/cli-tui/about-view.js +0 -206
- package/dist/cli-tui/about-view.js.map +0 -1
- package/dist/cli-tui/agent-event-router.d.ts +0 -28
- package/dist/cli-tui/agent-event-router.d.ts.map +0 -1
- package/dist/cli-tui/agent-event-router.js +0 -126
- package/dist/cli-tui/agent-event-router.js.map +0 -1
- package/dist/cli-tui/approval/approval-controller.d.ts +0 -28
- package/dist/cli-tui/approval/approval-controller.d.ts.map +0 -1
- package/dist/cli-tui/approval/approval-controller.js +0 -99
- package/dist/cli-tui/approval/approval-controller.js.map +0 -1
- package/dist/cli-tui/approval/approval-modal.d.ts +0 -26
- package/dist/cli-tui/approval/approval-modal.d.ts.map +0 -1
- package/dist/cli-tui/approval/approval-modal.js +0 -143
- package/dist/cli-tui/approval/approval-modal.js.map +0 -1
- package/dist/cli-tui/assistant-message.d.ts +0 -41
- package/dist/cli-tui/assistant-message.d.ts.map +0 -1
- package/dist/cli-tui/assistant-message.js +0 -236
- package/dist/cli-tui/assistant-message.js.map +0 -1
- package/dist/cli-tui/auth-state.d.ts +0 -7
- package/dist/cli-tui/auth-state.d.ts.map +0 -1
- package/dist/cli-tui/auth-state.js +0 -46
- package/dist/cli-tui/auth-state.js.map +0 -1
- package/dist/cli-tui/background/background-tasks-controller.d.ts +0 -31
- package/dist/cli-tui/background/background-tasks-controller.d.ts.map +0 -1
- package/dist/cli-tui/background/background-tasks-controller.js +0 -84
- package/dist/cli-tui/background/background-tasks-controller.js.map +0 -1
- package/dist/cli-tui/base-view.d.ts +0 -111
- package/dist/cli-tui/base-view.d.ts.map +0 -1
- package/dist/cli-tui/base-view.js +0 -145
- package/dist/cli-tui/base-view.js.map +0 -1
- package/dist/cli-tui/bash/background-launcher.d.ts +0 -14
- package/dist/cli-tui/bash/background-launcher.d.ts.map +0 -1
- package/dist/cli-tui/bash/background-launcher.js +0 -50
- package/dist/cli-tui/bash/background-launcher.js.map +0 -1
- package/dist/cli-tui/bash/bash-autocomplete.d.ts +0 -40
- package/dist/cli-tui/bash/bash-autocomplete.d.ts.map +0 -1
- package/dist/cli-tui/bash/bash-autocomplete.js +0 -347
- package/dist/cli-tui/bash/bash-autocomplete.js.map +0 -1
- package/dist/cli-tui/bash/bash-history.d.ts +0 -21
- package/dist/cli-tui/bash/bash-history.d.ts.map +0 -1
- package/dist/cli-tui/bash/bash-history.js +0 -72
- package/dist/cli-tui/bash/bash-history.js.map +0 -1
- package/dist/cli-tui/bash/bash-syntax.d.ts +0 -5
- package/dist/cli-tui/bash/bash-syntax.d.ts.map +0 -1
- package/dist/cli-tui/bash/bash-syntax.js +0 -176
- package/dist/cli-tui/bash/bash-syntax.js.map +0 -1
- package/dist/cli-tui/bash/index.d.ts +0 -4
- package/dist/cli-tui/bash/index.d.ts.map +0 -1
- package/dist/cli-tui/bash/index.js +0 -4
- package/dist/cli-tui/bash/index.js.map +0 -1
- package/dist/cli-tui/bash-mode-view.d.ts +0 -86
- package/dist/cli-tui/bash-mode-view.d.ts.map +0 -1
- package/dist/cli-tui/bash-mode-view.js +0 -560
- package/dist/cli-tui/bash-mode-view.js.map +0 -1
- package/dist/cli-tui/bash-shell-block.d.ts +0 -50
- package/dist/cli-tui/bash-shell-block.d.ts.map +0 -1
- package/dist/cli-tui/bash-shell-block.js +0 -119
- package/dist/cli-tui/bash-shell-block.js.map +0 -1
- package/dist/cli-tui/changelog-view.d.ts +0 -13
- package/dist/cli-tui/changelog-view.d.ts.map +0 -1
- package/dist/cli-tui/changelog-view.js +0 -34
- package/dist/cli-tui/changelog-view.js.map +0 -1
- package/dist/cli-tui/clean-mode.d.ts +0 -13
- package/dist/cli-tui/clean-mode.d.ts.map +0 -1
- package/dist/cli-tui/clean-mode.js +0 -32
- package/dist/cli-tui/clean-mode.js.map +0 -1
- package/dist/cli-tui/client-tools/client-tool-controller.d.ts +0 -41
- package/dist/cli-tui/client-tools/client-tool-controller.d.ts.map +0 -1
- package/dist/cli-tui/client-tools/client-tool-controller.js +0 -862
- package/dist/cli-tui/client-tools/client-tool-controller.js.map +0 -1
- package/dist/cli-tui/client-tools/local-client-tool-service.d.ts +0 -33
- package/dist/cli-tui/client-tools/local-client-tool-service.d.ts.map +0 -1
- package/dist/cli-tui/client-tools/local-client-tool-service.js +0 -94
- package/dist/cli-tui/client-tools/local-client-tool-service.js.map +0 -1
- package/dist/cli-tui/commands/a2a-handlers.d.ts +0 -7
- package/dist/cli-tui/commands/a2a-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/a2a-handlers.js +0 -215
- package/dist/cli-tui/commands/a2a-handlers.js.map +0 -1
- package/dist/cli-tui/commands/access-command.d.ts +0 -3
- package/dist/cli-tui/commands/access-command.d.ts.map +0 -1
- package/dist/cli-tui/commands/access-command.js +0 -89
- package/dist/cli-tui/commands/access-command.js.map +0 -1
- package/dist/cli-tui/commands/argument-parser.d.ts +0 -12
- package/dist/cli-tui/commands/argument-parser.d.ts.map +0 -1
- package/dist/cli-tui/commands/argument-parser.js +0 -135
- package/dist/cli-tui/commands/argument-parser.js.map +0 -1
- package/dist/cli-tui/commands/audit-command.d.ts +0 -5
- package/dist/cli-tui/commands/audit-command.d.ts.map +0 -1
- package/dist/cli-tui/commands/audit-command.js +0 -35
- package/dist/cli-tui/commands/audit-command.js.map +0 -1
- package/dist/cli-tui/commands/background-handlers.d.ts +0 -14
- package/dist/cli-tui/commands/background-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/background-handlers.js +0 -115
- package/dist/cli-tui/commands/background-handlers.js.map +0 -1
- package/dist/cli-tui/commands/command-catalog.d.ts +0 -29
- package/dist/cli-tui/commands/command-catalog.d.ts.map +0 -1
- package/dist/cli-tui/commands/command-catalog.js +0 -666
- package/dist/cli-tui/commands/command-catalog.js.map +0 -1
- package/dist/cli-tui/commands/command-registry-adapter.d.ts +0 -12
- package/dist/cli-tui/commands/command-registry-adapter.d.ts.map +0 -1
- package/dist/cli-tui/commands/command-registry-adapter.js +0 -129
- package/dist/cli-tui/commands/command-registry-adapter.js.map +0 -1
- package/dist/cli-tui/commands/command-suite-catalog.d.ts +0 -14
- package/dist/cli-tui/commands/command-suite-catalog.d.ts.map +0 -1
- package/dist/cli-tui/commands/command-suite-catalog.js +0 -147
- package/dist/cli-tui/commands/command-suite-catalog.js.map +0 -1
- package/dist/cli-tui/commands/command-suite-handlers.d.ts +0 -111
- package/dist/cli-tui/commands/command-suite-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/command-suite-handlers.js +0 -110
- package/dist/cli-tui/commands/command-suite-handlers.js.map +0 -1
- package/dist/cli-tui/commands/composer-handlers.d.ts +0 -8
- package/dist/cli-tui/commands/composer-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/composer-handlers.js +0 -90
- package/dist/cli-tui/commands/composer-handlers.js.map +0 -1
- package/dist/cli-tui/commands/framework-handlers.d.ts +0 -18
- package/dist/cli-tui/commands/framework-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/framework-handlers.js +0 -57
- package/dist/cli-tui/commands/framework-handlers.js.map +0 -1
- package/dist/cli-tui/commands/guardian-handlers.d.ts +0 -20
- package/dist/cli-tui/commands/guardian-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/guardian-handlers.js +0 -48
- package/dist/cli-tui/commands/guardian-handlers.js.map +0 -1
- package/dist/cli-tui/commands/handlers/mode-handler.d.ts +0 -32
- package/dist/cli-tui/commands/handlers/mode-handler.d.ts.map +0 -1
- package/dist/cli-tui/commands/handlers/mode-handler.js +0 -153
- package/dist/cli-tui/commands/handlers/mode-handler.js.map +0 -1
- package/dist/cli-tui/commands/hotkeys-command.d.ts +0 -8
- package/dist/cli-tui/commands/hotkeys-command.d.ts.map +0 -1
- package/dist/cli-tui/commands/hotkeys-command.js +0 -61
- package/dist/cli-tui/commands/hotkeys-command.js.map +0 -1
- package/dist/cli-tui/commands/limits-command.d.ts +0 -3
- package/dist/cli-tui/commands/limits-command.d.ts.map +0 -1
- package/dist/cli-tui/commands/limits-command.js +0 -88
- package/dist/cli-tui/commands/limits-command.js.map +0 -1
- package/dist/cli-tui/commands/mcp-handlers.d.ts +0 -12
- package/dist/cli-tui/commands/mcp-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/mcp-handlers.js +0 -1306
- package/dist/cli-tui/commands/mcp-handlers.js.map +0 -1
- package/dist/cli-tui/commands/memory-handlers.d.ts +0 -28
- package/dist/cli-tui/commands/memory-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/memory-handlers.js +0 -414
- package/dist/cli-tui/commands/memory-handlers.js.map +0 -1
- package/dist/cli-tui/commands/otel-handlers.d.ts +0 -11
- package/dist/cli-tui/commands/otel-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/otel-handlers.js +0 -20
- package/dist/cli-tui/commands/otel-handlers.js.map +0 -1
- package/dist/cli-tui/commands/package-handlers.d.ts +0 -30
- package/dist/cli-tui/commands/package-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/package-handlers.js +0 -499
- package/dist/cli-tui/commands/package-handlers.js.map +0 -1
- package/dist/cli-tui/commands/pii-command.d.ts +0 -3
- package/dist/cli-tui/commands/pii-command.d.ts.map +0 -1
- package/dist/cli-tui/commands/pii-command.js +0 -54
- package/dist/cli-tui/commands/pii-command.js.map +0 -1
- package/dist/cli-tui/commands/registry.d.ts +0 -3
- package/dist/cli-tui/commands/registry.d.ts.map +0 -1
- package/dist/cli-tui/commands/registry.js +0 -36
- package/dist/cli-tui/commands/registry.js.map +0 -1
- package/dist/cli-tui/commands/safety-handlers.d.ts +0 -36
- package/dist/cli-tui/commands/safety-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/safety-handlers.js +0 -62
- package/dist/cli-tui/commands/safety-handlers.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/auth-commands.d.ts +0 -26
- package/dist/cli-tui/commands/subcommands/auth-commands.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/auth-commands.js +0 -79
- package/dist/cli-tui/commands/subcommands/auth-commands.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/config-commands.d.ts +0 -23
- package/dist/cli-tui/commands/subcommands/config-commands.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/config-commands.js +0 -61
- package/dist/cli-tui/commands/subcommands/config-commands.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/diag-commands.d.ts +0 -46
- package/dist/cli-tui/commands/subcommands/diag-commands.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/diag-commands.js +0 -163
- package/dist/cli-tui/commands/subcommands/diag-commands.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/git-commands.d.ts +0 -18
- package/dist/cli-tui/commands/subcommands/git-commands.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/git-commands.js +0 -50
- package/dist/cli-tui/commands/subcommands/git-commands.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/index.d.ts +0 -18
- package/dist/cli-tui/commands/subcommands/index.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/index.js +0 -18
- package/dist/cli-tui/commands/subcommands/index.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/safety-commands.d.ts +0 -26
- package/dist/cli-tui/commands/subcommands/safety-commands.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/safety-commands.js +0 -149
- package/dist/cli-tui/commands/subcommands/safety-commands.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/session-commands.d.ts +0 -36
- package/dist/cli-tui/commands/subcommands/session-commands.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/session-commands.js +0 -112
- package/dist/cli-tui/commands/subcommands/session-commands.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/tools-commands.d.ts +0 -27
- package/dist/cli-tui/commands/subcommands/tools-commands.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/tools-commands.js +0 -80
- package/dist/cli-tui/commands/subcommands/tools-commands.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/ui-commands.d.ts +0 -30
- package/dist/cli-tui/commands/subcommands/ui-commands.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/ui-commands.js +0 -74
- package/dist/cli-tui/commands/subcommands/ui-commands.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/undo-commands.d.ts +0 -25
- package/dist/cli-tui/commands/subcommands/undo-commands.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/undo-commands.js +0 -74
- package/dist/cli-tui/commands/subcommands/undo-commands.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/usage-commands.d.ts +0 -19
- package/dist/cli-tui/commands/subcommands/usage-commands.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/usage-commands.js +0 -63
- package/dist/cli-tui/commands/subcommands/usage-commands.js.map +0 -1
- package/dist/cli-tui/commands/subcommands/utils.d.ts +0 -127
- package/dist/cli-tui/commands/subcommands/utils.d.ts.map +0 -1
- package/dist/cli-tui/commands/subcommands/utils.js +0 -395
- package/dist/cli-tui/commands/subcommands/utils.js.map +0 -1
- package/dist/cli-tui/commands/types.d.ts +0 -105
- package/dist/cli-tui/commands/types.d.ts.map +0 -1
- package/dist/cli-tui/commands/types.js +0 -2
- package/dist/cli-tui/commands/types.js.map +0 -1
- package/dist/cli-tui/commands/undo-handlers.d.ts +0 -29
- package/dist/cli-tui/commands/undo-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/undo-handlers.js +0 -300
- package/dist/cli-tui/commands/undo-handlers.js.map +0 -1
- package/dist/cli-tui/commands/utility-handlers.d.ts +0 -55
- package/dist/cli-tui/commands/utility-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/utility-handlers.js +0 -137
- package/dist/cli-tui/commands/utility-handlers.js.map +0 -1
- package/dist/cli-tui/commands/workflow-handlers.d.ts +0 -22
- package/dist/cli-tui/commands/workflow-handlers.d.ts.map +0 -1
- package/dist/cli-tui/commands/workflow-handlers.js +0 -227
- package/dist/cli-tui/commands/workflow-handlers.js.map +0 -1
- package/dist/cli-tui/compact-boundary-message.d.ts +0 -9
- package/dist/cli-tui/compact-boundary-message.d.ts.map +0 -1
- package/dist/cli-tui/compact-boundary-message.js +0 -18
- package/dist/cli-tui/compact-boundary-message.js.map +0 -1
- package/dist/cli-tui/compaction-recovery.d.ts +0 -6
- package/dist/cli-tui/compaction-recovery.d.ts.map +0 -1
- package/dist/cli-tui/compaction-recovery.js +0 -13
- package/dist/cli-tui/compaction-recovery.js.map +0 -1
- package/dist/cli-tui/config-view.d.ts +0 -30
- package/dist/cli-tui/config-view.d.ts.map +0 -1
- package/dist/cli-tui/config-view.js +0 -255
- package/dist/cli-tui/config-view.js.map +0 -1
- package/dist/cli-tui/context-view.d.ts +0 -20
- package/dist/cli-tui/context-view.d.ts.map +0 -1
- package/dist/cli-tui/context-view.js +0 -191
- package/dist/cli-tui/context-view.js.map +0 -1
- package/dist/cli-tui/custom-editor.d.ts +0 -25
- package/dist/cli-tui/custom-editor.d.ts.map +0 -1
- package/dist/cli-tui/custom-editor.js +0 -241
- package/dist/cli-tui/custom-editor.js.map +0 -1
- package/dist/cli-tui/editor-view.d.ts +0 -34
- package/dist/cli-tui/editor-view.d.ts.map +0 -1
- package/dist/cli-tui/editor-view.js +0 -102
- package/dist/cli-tui/editor-view.js.map +0 -1
- package/dist/cli-tui/feedback-view.d.ts +0 -35
- package/dist/cli-tui/feedback-view.d.ts.map +0 -1
- package/dist/cli-tui/feedback-view.js +0 -271
- package/dist/cli-tui/feedback-view.js.map +0 -1
- package/dist/cli-tui/footer.d.ts +0 -56
- package/dist/cli-tui/footer.d.ts.map +0 -1
- package/dist/cli-tui/footer.js +0 -228
- package/dist/cli-tui/footer.js.map +0 -1
- package/dist/cli-tui/git/commit-modal.d.ts +0 -14
- package/dist/cli-tui/git/commit-modal.d.ts.map +0 -1
- package/dist/cli-tui/git/commit-modal.js +0 -56
- package/dist/cli-tui/git/commit-modal.js.map +0 -1
- package/dist/cli-tui/git/git-preview-modal.d.ts +0 -40
- package/dist/cli-tui/git/git-preview-modal.d.ts.map +0 -1
- package/dist/cli-tui/git/git-preview-modal.js +0 -123
- package/dist/cli-tui/git/git-preview-modal.js.map +0 -1
- package/dist/cli-tui/git/git-view.d.ts +0 -65
- package/dist/cli-tui/git/git-view.d.ts.map +0 -1
- package/dist/cli-tui/git/git-view.js +0 -529
- package/dist/cli-tui/git/git-view.js.map +0 -1
- package/dist/cli-tui/history/history-config.d.ts +0 -7
- package/dist/cli-tui/history/history-config.d.ts.map +0 -1
- package/dist/cli-tui/history/history-config.js +0 -49
- package/dist/cli-tui/history/history-config.js.map +0 -1
- package/dist/cli-tui/history/prompt-history.d.ts +0 -33
- package/dist/cli-tui/history/prompt-history.d.ts.map +0 -1
- package/dist/cli-tui/history/prompt-history.js +0 -185
- package/dist/cli-tui/history/prompt-history.js.map +0 -1
- package/dist/cli-tui/history/tool-history.d.ts +0 -50
- package/dist/cli-tui/history/tool-history.d.ts.map +0 -1
- package/dist/cli-tui/history/tool-history.js +0 -253
- package/dist/cli-tui/history/tool-history.js.map +0 -1
- package/dist/cli-tui/hook-message.d.ts +0 -13
- package/dist/cli-tui/hook-message.d.ts.map +0 -1
- package/dist/cli-tui/hook-message.js +0 -56
- package/dist/cli-tui/hook-message.js.map +0 -1
- package/dist/cli-tui/hooks/hook-input-modal.d.ts +0 -22
- package/dist/cli-tui/hooks/hook-input-modal.d.ts.map +0 -1
- package/dist/cli-tui/hooks/hook-input-modal.js +0 -63
- package/dist/cli-tui/hooks/hook-input-modal.js.map +0 -1
- package/dist/cli-tui/hotkeys-view.d.ts +0 -13
- package/dist/cli-tui/hotkeys-view.d.ts.map +0 -1
- package/dist/cli-tui/hotkeys-view.js +0 -96
- package/dist/cli-tui/hotkeys-view.js.map +0 -1
- package/dist/cli-tui/import-view.d.ts +0 -28
- package/dist/cli-tui/import-view.d.ts.map +0 -1
- package/dist/cli-tui/import-view.js +0 -184
- package/dist/cli-tui/import-view.js.map +0 -1
- package/dist/cli-tui/info-view.d.ts +0 -18
- package/dist/cli-tui/info-view.d.ts.map +0 -1
- package/dist/cli-tui/info-view.js +0 -107
- package/dist/cli-tui/info-view.js.map +0 -1
- package/dist/cli-tui/instruction-panel.d.ts +0 -11
- package/dist/cli-tui/instruction-panel.d.ts.map +0 -1
- package/dist/cli-tui/instruction-panel.js +0 -86
- package/dist/cli-tui/instruction-panel.js.map +0 -1
- package/dist/cli-tui/interrupt-controller.d.ts +0 -78
- package/dist/cli-tui/interrupt-controller.d.ts.map +0 -1
- package/dist/cli-tui/interrupt-controller.js +0 -104
- package/dist/cli-tui/interrupt-controller.js.map +0 -1
- package/dist/cli-tui/keybindings-config.d.ts +0 -27
- package/dist/cli-tui/keybindings-config.d.ts.map +0 -1
- package/dist/cli-tui/keybindings-config.js +0 -372
- package/dist/cli-tui/keybindings-config.js.map +0 -1
- package/dist/cli-tui/keybindings-watcher.d.ts +0 -8
- package/dist/cli-tui/keybindings-watcher.d.ts.map +0 -1
- package/dist/cli-tui/keybindings-watcher.js +0 -56
- package/dist/cli-tui/keybindings-watcher.js.map +0 -1
- package/dist/cli-tui/keybindings.d.ts +0 -13
- package/dist/cli-tui/keybindings.d.ts.map +0 -1
- package/dist/cli-tui/keybindings.js +0 -223
- package/dist/cli-tui/keybindings.js.map +0 -1
- package/dist/cli-tui/loader/loader-stage-manager.d.ts +0 -43
- package/dist/cli-tui/loader/loader-stage-manager.d.ts.map +0 -1
- package/dist/cli-tui/loader/loader-stage-manager.js +0 -241
- package/dist/cli-tui/loader/loader-stage-manager.js.map +0 -1
- package/dist/cli-tui/loader/loader-stage-telemetry.d.ts +0 -14
- package/dist/cli-tui/loader/loader-stage-telemetry.d.ts.map +0 -1
- package/dist/cli-tui/loader/loader-stage-telemetry.js +0 -34
- package/dist/cli-tui/loader/loader-stage-telemetry.js.map +0 -1
- package/dist/cli-tui/loader/loader-view.d.ts +0 -41
- package/dist/cli-tui/loader/loader-view.d.ts.map +0 -1
- package/dist/cli-tui/loader/loader-view.js +0 -162
- package/dist/cli-tui/loader/loader-view.js.map +0 -1
- package/dist/cli-tui/lsp-view.d.ts +0 -21
- package/dist/cli-tui/lsp-view.d.ts.map +0 -1
- package/dist/cli-tui/lsp-view.js +0 -183
- package/dist/cli-tui/lsp-view.js.map +0 -1
- package/dist/cli-tui/mermaid-renderer.d.ts +0 -2
- package/dist/cli-tui/mermaid-renderer.d.ts.map +0 -1
- package/dist/cli-tui/mermaid-renderer.js +0 -391
- package/dist/cli-tui/mermaid-renderer.js.map +0 -1
- package/dist/cli-tui/message-view.d.ts +0 -27
- package/dist/cli-tui/message-view.d.ts.map +0 -1
- package/dist/cli-tui/message-view.js +0 -169
- package/dist/cli-tui/message-view.js.map +0 -1
- package/dist/cli-tui/modal-manager.d.ts +0 -77
- package/dist/cli-tui/modal-manager.d.ts.map +0 -1
- package/dist/cli-tui/modal-manager.js +0 -131
- package/dist/cli-tui/modal-manager.js.map +0 -1
- package/dist/cli-tui/notification-view.d.ts +0 -16
- package/dist/cli-tui/notification-view.d.ts.map +0 -1
- package/dist/cli-tui/notification-view.js +0 -53
- package/dist/cli-tui/notification-view.js.map +0 -1
- package/dist/cli-tui/oauth/index.d.ts +0 -2
- package/dist/cli-tui/oauth/index.d.ts.map +0 -1
- package/dist/cli-tui/oauth/index.js +0 -2
- package/dist/cli-tui/oauth/index.js.map +0 -1
- package/dist/cli-tui/oauth/oauth-flow-controller.d.ts +0 -65
- package/dist/cli-tui/oauth/oauth-flow-controller.d.ts.map +0 -1
- package/dist/cli-tui/oauth/oauth-flow-controller.js +0 -400
- package/dist/cli-tui/oauth/oauth-flow-controller.js.map +0 -1
- package/dist/cli-tui/ollama-view.d.ts +0 -38
- package/dist/cli-tui/ollama-view.d.ts.map +0 -1
- package/dist/cli-tui/ollama-view.js +0 -395
- package/dist/cli-tui/ollama-view.js.map +0 -1
- package/dist/cli-tui/paste/index.d.ts +0 -2
- package/dist/cli-tui/paste/index.d.ts.map +0 -1
- package/dist/cli-tui/paste/index.js +0 -2
- package/dist/cli-tui/paste/index.js.map +0 -1
- package/dist/cli-tui/paste/paste-handler.d.ts +0 -54
- package/dist/cli-tui/paste/paste-handler.d.ts.map +0 -1
- package/dist/cli-tui/paste/paste-handler.js +0 -128
- package/dist/cli-tui/paste/paste-handler.js.map +0 -1
- package/dist/cli-tui/plan/plan-controller.d.ts +0 -28
- package/dist/cli-tui/plan/plan-controller.d.ts.map +0 -1
- package/dist/cli-tui/plan/plan-controller.js +0 -66
- package/dist/cli-tui/plan/plan-controller.js.map +0 -1
- package/dist/cli-tui/plan-panel-modal.d.ts +0 -28
- package/dist/cli-tui/plan-panel-modal.d.ts.map +0 -1
- package/dist/cli-tui/plan-panel-modal.js +0 -193
- package/dist/cli-tui/plan-panel-modal.js.map +0 -1
- package/dist/cli-tui/plan-view.d.ts +0 -57
- package/dist/cli-tui/plan-view.d.ts.map +0 -1
- package/dist/cli-tui/plan-view.js +0 -404
- package/dist/cli-tui/plan-view.js.map +0 -1
- package/dist/cli-tui/prompt-queue.d.ts.map +0 -1
- package/dist/cli-tui/prompt-queue.js.map +0 -1
- package/dist/cli-tui/queue/follow-up-shortcut.d.ts +0 -6
- package/dist/cli-tui/queue/follow-up-shortcut.d.ts.map +0 -1
- package/dist/cli-tui/queue/follow-up-shortcut.js +0 -12
- package/dist/cli-tui/queue/follow-up-shortcut.js.map +0 -1
- package/dist/cli-tui/queue/index.d.ts +0 -3
- package/dist/cli-tui/queue/index.d.ts.map +0 -1
- package/dist/cli-tui/queue/index.js +0 -3
- package/dist/cli-tui/queue/index.js.map +0 -1
- package/dist/cli-tui/queue/queue-controller.d.ts +0 -109
- package/dist/cli-tui/queue/queue-controller.d.ts.map +0 -1
- package/dist/cli-tui/queue/queue-controller.js +0 -327
- package/dist/cli-tui/queue/queue-controller.js.map +0 -1
- package/dist/cli-tui/queue/queue-panel-controller.d.ts +0 -34
- package/dist/cli-tui/queue/queue-panel-controller.d.ts.map +0 -1
- package/dist/cli-tui/queue/queue-panel-controller.js +0 -163
- package/dist/cli-tui/queue/queue-panel-controller.js.map +0 -1
- package/dist/cli-tui/queue/queued-follow-up-edit-binding.d.ts +0 -7
- package/dist/cli-tui/queue/queued-follow-up-edit-binding.d.ts.map +0 -1
- package/dist/cli-tui/queue/queued-follow-up-edit-binding.js +0 -14
- package/dist/cli-tui/queue/queued-follow-up-edit-binding.js.map +0 -1
- package/dist/cli-tui/queue-panel-modal.d.ts +0 -26
- package/dist/cli-tui/queue-panel-modal.d.ts.map +0 -1
- package/dist/cli-tui/queue-panel-modal.js +0 -159
- package/dist/cli-tui/queue-panel-modal.js.map +0 -1
- package/dist/cli-tui/run/run-command-view.d.ts +0 -17
- package/dist/cli-tui/run/run-command-view.d.ts.map +0 -1
- package/dist/cli-tui/run/run-command-view.js +0 -62
- package/dist/cli-tui/run/run-command-view.js.map +0 -1
- package/dist/cli-tui/run/run-controller.d.ts +0 -24
- package/dist/cli-tui/run/run-controller.d.ts.map +0 -1
- package/dist/cli-tui/run/run-controller.js +0 -38
- package/dist/cli-tui/run/run-controller.js.map +0 -1
- package/dist/cli-tui/run/run-shell-command.d.ts +0 -13
- package/dist/cli-tui/run/run-shell-command.d.ts.map +0 -1
- package/dist/cli-tui/run/run-shell-command.js +0 -51
- package/dist/cli-tui/run/run-shell-command.js.map +0 -1
- package/dist/cli-tui/run/streaming-shell-command.d.ts +0 -19
- package/dist/cli-tui/run/streaming-shell-command.d.ts.map +0 -1
- package/dist/cli-tui/run/streaming-shell-command.js +0 -107
- package/dist/cli-tui/run/streaming-shell-command.js.map +0 -1
- package/dist/cli-tui/search/file-search-view.d.ts +0 -22
- package/dist/cli-tui/search/file-search-view.d.ts.map +0 -1
- package/dist/cli-tui/search/file-search-view.js +0 -68
- package/dist/cli-tui/search/file-search-view.js.map +0 -1
- package/dist/cli-tui/search/file-search.d.ts +0 -13
- package/dist/cli-tui/search/file-search.d.ts.map +0 -1
- package/dist/cli-tui/search/file-search.js +0 -52
- package/dist/cli-tui/search/file-search.js.map +0 -1
- package/dist/cli-tui/security-status.d.ts +0 -83
- package/dist/cli-tui/security-status.d.ts.map +0 -1
- package/dist/cli-tui/security-status.js +0 -214
- package/dist/cli-tui/security-status.js.map +0 -1
- package/dist/cli-tui/selectors/base-selector.d.ts +0 -27
- package/dist/cli-tui/selectors/base-selector.d.ts.map +0 -1
- package/dist/cli-tui/selectors/base-selector.js +0 -47
- package/dist/cli-tui/selectors/base-selector.js.map +0 -1
- package/dist/cli-tui/selectors/branch-summary-modal.d.ts +0 -18
- package/dist/cli-tui/selectors/branch-summary-modal.d.ts.map +0 -1
- package/dist/cli-tui/selectors/branch-summary-modal.js +0 -24
- package/dist/cli-tui/selectors/branch-summary-modal.js.map +0 -1
- package/dist/cli-tui/selectors/model-selector-view.d.ts +0 -22
- package/dist/cli-tui/selectors/model-selector-view.d.ts.map +0 -1
- package/dist/cli-tui/selectors/model-selector-view.js +0 -31
- package/dist/cli-tui/selectors/model-selector-view.js.map +0 -1
- package/dist/cli-tui/selectors/model-selector.d.ts +0 -30
- package/dist/cli-tui/selectors/model-selector.d.ts.map +0 -1
- package/dist/cli-tui/selectors/model-selector.js +0 -218
- package/dist/cli-tui/selectors/model-selector.js.map +0 -1
- package/dist/cli-tui/selectors/oauth-selector-view.d.ts +0 -20
- package/dist/cli-tui/selectors/oauth-selector-view.d.ts.map +0 -1
- package/dist/cli-tui/selectors/oauth-selector-view.js +0 -28
- package/dist/cli-tui/selectors/oauth-selector-view.js.map +0 -1
- package/dist/cli-tui/selectors/oauth-selector.d.ts +0 -19
- package/dist/cli-tui/selectors/oauth-selector.d.ts.map +0 -1
- package/dist/cli-tui/selectors/oauth-selector.js +0 -120
- package/dist/cli-tui/selectors/oauth-selector.js.map +0 -1
- package/dist/cli-tui/selectors/queue-mode-selector-view.d.ts +0 -19
- package/dist/cli-tui/selectors/queue-mode-selector-view.d.ts.map +0 -1
- package/dist/cli-tui/selectors/queue-mode-selector-view.js +0 -29
- package/dist/cli-tui/selectors/queue-mode-selector-view.js.map +0 -1
- package/dist/cli-tui/selectors/queue-mode-selector.d.ts +0 -5
- package/dist/cli-tui/selectors/queue-mode-selector.d.ts.map +0 -1
- package/dist/cli-tui/selectors/queue-mode-selector.js +0 -34
- package/dist/cli-tui/selectors/queue-mode-selector.js.map +0 -1
- package/dist/cli-tui/selectors/report-selector-view.d.ts +0 -17
- package/dist/cli-tui/selectors/report-selector-view.d.ts.map +0 -1
- package/dist/cli-tui/selectors/report-selector-view.js +0 -29
- package/dist/cli-tui/selectors/report-selector-view.js.map +0 -1
- package/dist/cli-tui/selectors/report-selector.d.ts +0 -7
- package/dist/cli-tui/selectors/report-selector.d.ts.map +0 -1
- package/dist/cli-tui/selectors/report-selector.js +0 -31
- package/dist/cli-tui/selectors/report-selector.js.map +0 -1
- package/dist/cli-tui/selectors/theme-selector-view.d.ts +0 -19
- package/dist/cli-tui/selectors/theme-selector-view.d.ts.map +0 -1
- package/dist/cli-tui/selectors/theme-selector-view.js +0 -41
- package/dist/cli-tui/selectors/theme-selector-view.js.map +0 -1
- package/dist/cli-tui/selectors/theme-selector.d.ts +0 -14
- package/dist/cli-tui/selectors/theme-selector.d.ts.map +0 -1
- package/dist/cli-tui/selectors/theme-selector.js +0 -46
- package/dist/cli-tui/selectors/theme-selector.js.map +0 -1
- package/dist/cli-tui/selectors/thinking-selector-view.d.ts +0 -20
- package/dist/cli-tui/selectors/thinking-selector-view.d.ts.map +0 -1
- package/dist/cli-tui/selectors/thinking-selector-view.js +0 -31
- package/dist/cli-tui/selectors/thinking-selector-view.js.map +0 -1
- package/dist/cli-tui/selectors/thinking-selector.d.ts +0 -9
- package/dist/cli-tui/selectors/thinking-selector.d.ts.map +0 -1
- package/dist/cli-tui/selectors/thinking-selector.js +0 -47
- package/dist/cli-tui/selectors/thinking-selector.js.map +0 -1
- package/dist/cli-tui/selectors/tree-selector-view.d.ts +0 -32
- package/dist/cli-tui/selectors/tree-selector-view.d.ts.map +0 -1
- package/dist/cli-tui/selectors/tree-selector-view.js +0 -407
- package/dist/cli-tui/selectors/tree-selector-view.js.map +0 -1
- package/dist/cli-tui/selectors/tree-selector.d.ts +0 -27
- package/dist/cli-tui/selectors/tree-selector.d.ts.map +0 -1
- package/dist/cli-tui/selectors/tree-selector.js +0 -194
- package/dist/cli-tui/selectors/tree-selector.js.map +0 -1
- package/dist/cli-tui/selectors/user-message-selector-view.d.ts +0 -25
- package/dist/cli-tui/selectors/user-message-selector-view.d.ts.map +0 -1
- package/dist/cli-tui/selectors/user-message-selector-view.js +0 -101
- package/dist/cli-tui/selectors/user-message-selector-view.js.map +0 -1
- package/dist/cli-tui/selectors/user-message-selector.d.ts +0 -30
- package/dist/cli-tui/selectors/user-message-selector.d.ts.map +0 -1
- package/dist/cli-tui/selectors/user-message-selector.js +0 -114
- package/dist/cli-tui/selectors/user-message-selector.js.map +0 -1
- package/dist/cli-tui/session/branch-controller.d.ts +0 -65
- package/dist/cli-tui/session/branch-controller.d.ts.map +0 -1
- package/dist/cli-tui/session/branch-controller.js +0 -125
- package/dist/cli-tui/session/branch-controller.js.map +0 -1
- package/dist/cli-tui/session/conversation-compactor.d.ts +0 -64
- package/dist/cli-tui/session/conversation-compactor.d.ts.map +0 -1
- package/dist/cli-tui/session/conversation-compactor.js +0 -77
- package/dist/cli-tui/session/conversation-compactor.js.map +0 -1
- package/dist/cli-tui/session/session-context.d.ts +0 -59
- package/dist/cli-tui/session/session-context.d.ts.map +0 -1
- package/dist/cli-tui/session/session-context.js +0 -79
- package/dist/cli-tui/session/session-context.js.map +0 -1
- package/dist/cli-tui/session/session-data-provider.d.ts +0 -23
- package/dist/cli-tui/session/session-data-provider.d.ts.map +0 -1
- package/dist/cli-tui/session/session-data-provider.js +0 -22
- package/dist/cli-tui/session/session-data-provider.js.map +0 -1
- package/dist/cli-tui/session/session-list.d.ts +0 -18
- package/dist/cli-tui/session/session-list.d.ts.map +0 -1
- package/dist/cli-tui/session/session-list.js +0 -103
- package/dist/cli-tui/session/session-list.js.map +0 -1
- package/dist/cli-tui/session/session-selector.d.ts +0 -12
- package/dist/cli-tui/session/session-selector.d.ts.map +0 -1
- package/dist/cli-tui/session/session-selector.js +0 -37
- package/dist/cli-tui/session/session-selector.js.map +0 -1
- package/dist/cli-tui/session/session-summary-controller.d.ts +0 -24
- package/dist/cli-tui/session/session-summary-controller.d.ts.map +0 -1
- package/dist/cli-tui/session/session-summary-controller.js +0 -96
- package/dist/cli-tui/session/session-summary-controller.js.map +0 -1
- package/dist/cli-tui/session/session-switcher-view.d.ts +0 -20
- package/dist/cli-tui/session/session-switcher-view.d.ts.map +0 -1
- package/dist/cli-tui/session/session-switcher-view.js +0 -43
- package/dist/cli-tui/session/session-switcher-view.js.map +0 -1
- package/dist/cli-tui/session/session-switcher.d.ts +0 -38
- package/dist/cli-tui/session/session-switcher.d.ts.map +0 -1
- package/dist/cli-tui/session/session-switcher.js +0 -204
- package/dist/cli-tui/session/session-switcher.js.map +0 -1
- package/dist/cli-tui/session/session-view.d.ts +0 -46
- package/dist/cli-tui/session/session-view.d.ts.map +0 -1
- package/dist/cli-tui/session/session-view.js +0 -311
- package/dist/cli-tui/session/session-view.js.map +0 -1
- package/dist/cli-tui/slash/index.d.ts +0 -2
- package/dist/cli-tui/slash/index.d.ts.map +0 -1
- package/dist/cli-tui/slash/index.js +0 -2
- package/dist/cli-tui/slash/index.js.map +0 -1
- package/dist/cli-tui/slash/slash-command-matcher.d.ts +0 -55
- package/dist/cli-tui/slash/slash-command-matcher.d.ts.map +0 -1
- package/dist/cli-tui/slash/slash-command-matcher.js +0 -113
- package/dist/cli-tui/slash/slash-command-matcher.js.map +0 -1
- package/dist/cli-tui/smart-autocomplete-provider.d.ts +0 -5
- package/dist/cli-tui/smart-autocomplete-provider.d.ts.map +0 -1
- package/dist/cli-tui/smart-autocomplete-provider.js +0 -44
- package/dist/cli-tui/smart-autocomplete-provider.js.map +0 -1
- package/dist/cli-tui/startup-announcements.d.ts +0 -15
- package/dist/cli-tui/startup-announcements.d.ts.map +0 -1
- package/dist/cli-tui/startup-announcements.js +0 -75
- package/dist/cli-tui/startup-announcements.js.map +0 -1
- package/dist/cli-tui/status/cost-view.d.ts +0 -27
- package/dist/cli-tui/status/cost-view.d.ts.map +0 -1
- package/dist/cli-tui/status/cost-view.js +0 -212
- package/dist/cli-tui/status/cost-view.js.map +0 -1
- package/dist/cli-tui/status/diagnostics-templates.d.ts +0 -34
- package/dist/cli-tui/status/diagnostics-templates.d.ts.map +0 -1
- package/dist/cli-tui/status/diagnostics-templates.js +0 -167
- package/dist/cli-tui/status/diagnostics-templates.js.map +0 -1
- package/dist/cli-tui/status/diagnostics-view.d.ts +0 -48
- package/dist/cli-tui/status/diagnostics-view.d.ts.map +0 -1
- package/dist/cli-tui/status/diagnostics-view.js +0 -249
- package/dist/cli-tui/status/diagnostics-view.js.map +0 -1
- package/dist/cli-tui/status/diagnostics.d.ts +0 -39
- package/dist/cli-tui/status/diagnostics.d.ts.map +0 -1
- package/dist/cli-tui/status/diagnostics.js +0 -286
- package/dist/cli-tui/status/diagnostics.js.map +0 -1
- package/dist/cli-tui/status/health-snapshot.d.ts +0 -17
- package/dist/cli-tui/status/health-snapshot.d.ts.map +0 -1
- package/dist/cli-tui/status/health-snapshot.js +0 -28
- package/dist/cli-tui/status/health-snapshot.js.map +0 -1
- package/dist/cli-tui/status/quota-view.d.ts +0 -37
- package/dist/cli-tui/status/quota-view.d.ts.map +0 -1
- package/dist/cli-tui/status/quota-view.js +0 -309
- package/dist/cli-tui/status/quota-view.js.map +0 -1
- package/dist/cli-tui/status/telemetry-view.d.ts +0 -23
- package/dist/cli-tui/status/telemetry-view.d.ts.map +0 -1
- package/dist/cli-tui/status/telemetry-view.js +0 -77
- package/dist/cli-tui/status/telemetry-view.js.map +0 -1
- package/dist/cli-tui/status/training-view.d.ts +0 -23
- package/dist/cli-tui/status/training-view.d.ts.map +0 -1
- package/dist/cli-tui/status/training-view.js +0 -71
- package/dist/cli-tui/status/training-view.js.map +0 -1
- package/dist/cli-tui/streaming-view.d.ts +0 -43
- package/dist/cli-tui/streaming-view.d.ts.map +0 -1
- package/dist/cli-tui/streaming-view.js +0 -176
- package/dist/cli-tui/streaming-view.js.map +0 -1
- package/dist/cli-tui/terminal/index.d.ts +0 -2
- package/dist/cli-tui/terminal/index.d.ts.map +0 -1
- package/dist/cli-tui/terminal/index.js +0 -2
- package/dist/cli-tui/terminal/index.js.map +0 -1
- package/dist/cli-tui/terminal/terminal-utils.d.ts +0 -44
- package/dist/cli-tui/terminal/terminal-utils.d.ts.map +0 -1
- package/dist/cli-tui/terminal/terminal-utils.js +0 -145
- package/dist/cli-tui/terminal/terminal-utils.js.map +0 -1
- package/dist/cli-tui/tips/tip-scheduler.d.ts +0 -19
- package/dist/cli-tui/tips/tip-scheduler.d.ts.map +0 -1
- package/dist/cli-tui/tips/tip-scheduler.js +0 -135
- package/dist/cli-tui/tips/tip-scheduler.js.map +0 -1
- package/dist/cli-tui/tool-execution.d.ts +0 -76
- package/dist/cli-tui/tool-execution.d.ts.map +0 -1
- package/dist/cli-tui/tool-execution.js +0 -217
- package/dist/cli-tui/tool-execution.js.map +0 -1
- package/dist/cli-tui/tool-output-view.d.ts +0 -22
- package/dist/cli-tui/tool-output-view.d.ts.map +0 -1
- package/dist/cli-tui/tool-output-view.js +0 -71
- package/dist/cli-tui/tool-output-view.js.map +0 -1
- package/dist/cli-tui/tool-renderers/index.d.ts +0 -4
- package/dist/cli-tui/tool-renderers/index.d.ts.map +0 -1
- package/dist/cli-tui/tool-renderers/index.js +0 -19
- package/dist/cli-tui/tool-renderers/index.js.map +0 -1
- package/dist/cli-tui/tool-renderers/render-bash.d.ts +0 -6
- package/dist/cli-tui/tool-renderers/render-bash.d.ts.map +0 -1
- package/dist/cli-tui/tool-renderers/render-bash.js +0 -90
- package/dist/cli-tui/tool-renderers/render-bash.js.map +0 -1
- package/dist/cli-tui/tool-renderers/render-batch.d.ts +0 -12
- package/dist/cli-tui/tool-renderers/render-batch.d.ts.map +0 -1
- package/dist/cli-tui/tool-renderers/render-batch.js +0 -133
- package/dist/cli-tui/tool-renderers/render-batch.js.map +0 -1
- package/dist/cli-tui/tool-renderers/render-edit.d.ts +0 -6
- package/dist/cli-tui/tool-renderers/render-edit.d.ts.map +0 -1
- package/dist/cli-tui/tool-renderers/render-edit.js +0 -125
- package/dist/cli-tui/tool-renderers/render-edit.js.map +0 -1
- package/dist/cli-tui/tool-renderers/render-generic.d.ts +0 -6
- package/dist/cli-tui/tool-renderers/render-generic.d.ts.map +0 -1
- package/dist/cli-tui/tool-renderers/render-generic.js +0 -66
- package/dist/cli-tui/tool-renderers/render-generic.js.map +0 -1
- package/dist/cli-tui/tool-renderers/render-read.d.ts +0 -9
- package/dist/cli-tui/tool-renderers/render-read.d.ts.map +0 -1
- package/dist/cli-tui/tool-renderers/render-read.js +0 -108
- package/dist/cli-tui/tool-renderers/render-read.js.map +0 -1
- package/dist/cli-tui/tool-renderers/render-style.d.ts +0 -21
- package/dist/cli-tui/tool-renderers/render-style.d.ts.map +0 -1
- package/dist/cli-tui/tool-renderers/render-style.js +0 -51
- package/dist/cli-tui/tool-renderers/render-style.js.map +0 -1
- package/dist/cli-tui/tool-renderers/render-write.d.ts +0 -5
- package/dist/cli-tui/tool-renderers/render-write.d.ts.map +0 -1
- package/dist/cli-tui/tool-renderers/render-write.js +0 -60
- package/dist/cli-tui/tool-renderers/render-write.js.map +0 -1
- package/dist/cli-tui/tool-renderers/types.d.ts +0 -20
- package/dist/cli-tui/tool-renderers/types.d.ts.map +0 -1
- package/dist/cli-tui/tool-renderers/types.js +0 -2
- package/dist/cli-tui/tool-renderers/types.js.map +0 -1
- package/dist/cli-tui/tool-retry/tool-retry-controller.d.ts +0 -29
- package/dist/cli-tui/tool-retry/tool-retry-controller.d.ts.map +0 -1
- package/dist/cli-tui/tool-retry/tool-retry-controller.js +0 -110
- package/dist/cli-tui/tool-retry/tool-retry-controller.js.map +0 -1
- package/dist/cli-tui/tool-retry/tool-retry-modal.d.ts +0 -27
- package/dist/cli-tui/tool-retry/tool-retry-modal.d.ts.map +0 -1
- package/dist/cli-tui/tool-retry/tool-retry-modal.js +0 -118
- package/dist/cli-tui/tool-retry/tool-retry-modal.js.map +0 -1
- package/dist/cli-tui/tool-status-view.d.ts +0 -32
- package/dist/cli-tui/tool-status-view.d.ts.map +0 -1
- package/dist/cli-tui/tool-status-view.js +0 -86
- package/dist/cli-tui/tool-status-view.js.map +0 -1
- package/dist/cli-tui/tui-renderer/agent-event-bridge.d.ts +0 -59
- package/dist/cli-tui/tui-renderer/agent-event-bridge.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/agent-event-bridge.js +0 -129
- package/dist/cli-tui/tui-renderer/agent-event-bridge.js.map +0 -1
- package/dist/cli-tui/tui-renderer/approval-setup.d.ts +0 -13
- package/dist/cli-tui/tui-renderer/approval-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/approval-setup.js +0 -5
- package/dist/cli-tui/tui-renderer/approval-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/attachment-controller.d.ts +0 -54
- package/dist/cli-tui/tui-renderer/attachment-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/attachment-controller.js +0 -160
- package/dist/cli-tui/tui-renderer/attachment-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/background-tasks-setup.d.ts +0 -9
- package/dist/cli-tui/tui-renderer/background-tasks-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/background-tasks-setup.js +0 -7
- package/dist/cli-tui/tui-renderer/background-tasks-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/branch-controller.d.ts +0 -41
- package/dist/cli-tui/tui-renderer/branch-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/branch-controller.js +0 -102
- package/dist/cli-tui/tui-renderer/branch-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/clear-controller.d.ts +0 -75
- package/dist/cli-tui/tui-renderer/clear-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/clear-controller.js +0 -75
- package/dist/cli-tui/tui-renderer/clear-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/client-tools-setup.d.ts +0 -14
- package/dist/cli-tui/tui-renderer/client-tools-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/client-tools-setup.js +0 -5
- package/dist/cli-tui/tui-renderer/client-tools-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/command-registry-options.d.ts +0 -111
- package/dist/cli-tui/tui-renderer/command-registry-options.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/command-registry-options.js +0 -163
- package/dist/cli-tui/tui-renderer/command-registry-options.js.map +0 -1
- package/dist/cli-tui/tui-renderer/command-registry.d.ts +0 -16
- package/dist/cli-tui/tui-renderer/command-registry.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/command-registry.js +0 -23
- package/dist/cli-tui/tui-renderer/command-registry.js.map +0 -1
- package/dist/cli-tui/tui-renderer/command-suite-wiring.d.ts +0 -29
- package/dist/cli-tui/tui-renderer/command-suite-wiring.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/command-suite-wiring.js +0 -108
- package/dist/cli-tui/tui-renderer/command-suite-wiring.js.map +0 -1
- package/dist/cli-tui/tui-renderer/compaction-controller.d.ts +0 -100
- package/dist/cli-tui/tui-renderer/compaction-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/compaction-controller.js +0 -160
- package/dist/cli-tui/tui-renderer/compaction-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/custom-commands-controller.d.ts +0 -42
- package/dist/cli-tui/tui-renderer/custom-commands-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/custom-commands-controller.js +0 -106
- package/dist/cli-tui/tui-renderer/custom-commands-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/delegating-command-handlers.d.ts +0 -37
- package/dist/cli-tui/tui-renderer/delegating-command-handlers.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/delegating-command-handlers.js +0 -139
- package/dist/cli-tui/tui-renderer/delegating-command-handlers.js.map +0 -1
- package/dist/cli-tui/tui-renderer/editor-bindings.d.ts +0 -21
- package/dist/cli-tui/tui-renderer/editor-bindings.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/editor-bindings.js +0 -76
- package/dist/cli-tui/tui-renderer/editor-bindings.js.map +0 -1
- package/dist/cli-tui/tui-renderer/footer-hints-controller.d.ts +0 -90
- package/dist/cli-tui/tui-renderer/footer-hints-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/footer-hints-controller.js +0 -152
- package/dist/cli-tui/tui-renderer/footer-hints-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/history-controller.d.ts +0 -35
- package/dist/cli-tui/tui-renderer/history-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/history-controller.js +0 -153
- package/dist/cli-tui/tui-renderer/history-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/hook-ui-controller.d.ts +0 -83
- package/dist/cli-tui/tui-renderer/hook-ui-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/hook-ui-controller.js +0 -309
- package/dist/cli-tui/tui-renderer/hook-ui-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/initial-preferences.d.ts +0 -19
- package/dist/cli-tui/tui-renderer/initial-preferences.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/initial-preferences.js +0 -54
- package/dist/cli-tui/tui-renderer/initial-preferences.js.map +0 -1
- package/dist/cli-tui/tui-renderer/input-controller.d.ts +0 -56
- package/dist/cli-tui/tui-renderer/input-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/input-controller.js +0 -104
- package/dist/cli-tui/tui-renderer/input-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/interrupt-setup.d.ts +0 -19
- package/dist/cli-tui/tui-renderer/interrupt-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/interrupt-setup.js +0 -18
- package/dist/cli-tui/tui-renderer/interrupt-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/loader-setup.d.ts +0 -14
- package/dist/cli-tui/tui-renderer/loader-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/loader-setup.js +0 -13
- package/dist/cli-tui/tui-renderer/loader-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/mcp-events-setup.d.ts +0 -55
- package/dist/cli-tui/tui-renderer/mcp-events-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/mcp-events-setup.js +0 -143
- package/dist/cli-tui/tui-renderer/mcp-events-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/misc-handlers.d.ts +0 -59
- package/dist/cli-tui/tui-renderer/misc-handlers.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/misc-handlers.js +0 -143
- package/dist/cli-tui/tui-renderer/misc-handlers.js.map +0 -1
- package/dist/cli-tui/tui-renderer/oauth-setup.d.ts +0 -14
- package/dist/cli-tui/tui-renderer/oauth-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/oauth-setup.js +0 -26
- package/dist/cli-tui/tui-renderer/oauth-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/plan-setup.d.ts +0 -19
- package/dist/cli-tui/tui-renderer/plan-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/plan-setup.js +0 -23
- package/dist/cli-tui/tui-renderer/plan-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/prompt-template-slash-commands.d.ts +0 -21
- package/dist/cli-tui/tui-renderer/prompt-template-slash-commands.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/prompt-template-slash-commands.js +0 -64
- package/dist/cli-tui/tui-renderer/prompt-template-slash-commands.js.map +0 -1
- package/dist/cli-tui/tui-renderer/queue-setup.d.ts +0 -18
- package/dist/cli-tui/tui-renderer/queue-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/queue-setup.js +0 -42
- package/dist/cli-tui/tui-renderer/queue-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/quick-settings-controller.d.ts +0 -53
- package/dist/cli-tui/tui-renderer/quick-settings-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/quick-settings-controller.js +0 -100
- package/dist/cli-tui/tui-renderer/quick-settings-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/session-setup.d.ts +0 -31
- package/dist/cli-tui/tui-renderer/session-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/session-setup.js +0 -45
- package/dist/cli-tui/tui-renderer/session-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/session-state-controller.d.ts +0 -66
- package/dist/cli-tui/tui-renderer/session-state-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/session-state-controller.js +0 -139
- package/dist/cli-tui/tui-renderer/session-state-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/skills-controller.d.ts +0 -70
- package/dist/cli-tui/tui-renderer/skills-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/skills-controller.js +0 -411
- package/dist/cli-tui/tui-renderer/skills-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/slash-hint-controller.d.ts +0 -90
- package/dist/cli-tui/tui-renderer/slash-hint-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/slash-hint-controller.js +0 -131
- package/dist/cli-tui/tui-renderer/slash-hint-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/tool-retry-setup.d.ts +0 -13
- package/dist/cli-tui/tui-renderer/tool-retry-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/tool-retry-setup.js +0 -5
- package/dist/cli-tui/tui-renderer/tool-retry-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/tooling-views-setup.d.ts +0 -38
- package/dist/cli-tui/tui-renderer/tooling-views-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/tooling-views-setup.js +0 -48
- package/dist/cli-tui/tui-renderer/tooling-views-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/ui-state-controller.d.ts +0 -70
- package/dist/cli-tui/tui-renderer/ui-state-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/ui-state-controller.js +0 -184
- package/dist/cli-tui/tui-renderer/ui-state-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer/ui-state-setup.d.ts +0 -13
- package/dist/cli-tui/tui-renderer/ui-state-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/ui-state-setup.js +0 -11
- package/dist/cli-tui/tui-renderer/ui-state-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/utility-views-setup.d.ts +0 -26
- package/dist/cli-tui/tui-renderer/utility-views-setup.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/utility-views-setup.js +0 -23
- package/dist/cli-tui/tui-renderer/utility-views-setup.js.map +0 -1
- package/dist/cli-tui/tui-renderer/viewport-controller.d.ts +0 -33
- package/dist/cli-tui/tui-renderer/viewport-controller.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer/viewport-controller.js +0 -98
- package/dist/cli-tui/tui-renderer/viewport-controller.js.map +0 -1
- package/dist/cli-tui/tui-renderer.d.ts +0 -268
- package/dist/cli-tui/tui-renderer.d.ts.map +0 -1
- package/dist/cli-tui/tui-renderer.js +0 -2131
- package/dist/cli-tui/tui-renderer.js.map +0 -1
- package/dist/cli-tui/ui-state.d.ts +0 -27
- package/dist/cli-tui/ui-state.d.ts.map +0 -1
- package/dist/cli-tui/ui-state.js +0 -88
- package/dist/cli-tui/ui-state.js.map +0 -1
- package/dist/cli-tui/update-view.d.ts +0 -16
- package/dist/cli-tui/update-view.d.ts.map +0 -1
- package/dist/cli-tui/update-view.js +0 -45
- package/dist/cli-tui/update-view.js.map +0 -1
- package/dist/cli-tui/user-message.d.ts +0 -17
- package/dist/cli-tui/user-message.d.ts.map +0 -1
- package/dist/cli-tui/user-message.js +0 -83
- package/dist/cli-tui/user-message.js.map +0 -1
- package/dist/cli-tui/utils/borders.d.ts +0 -131
- package/dist/cli-tui/utils/borders.d.ts.map +0 -1
- package/dist/cli-tui/utils/borders.js +0 -254
- package/dist/cli-tui/utils/borders.js.map +0 -1
- package/dist/cli-tui/utils/commands/command-palette-view.d.ts +0 -22
- package/dist/cli-tui/utils/commands/command-palette-view.d.ts.map +0 -1
- package/dist/cli-tui/utils/commands/command-palette-view.js +0 -31
- package/dist/cli-tui/utils/commands/command-palette-view.js.map +0 -1
- package/dist/cli-tui/utils/commands/command-palette.d.ts +0 -29
- package/dist/cli-tui/utils/commands/command-palette.d.ts.map +0 -1
- package/dist/cli-tui/utils/commands/command-palette.js +0 -213
- package/dist/cli-tui/utils/commands/command-palette.js.map +0 -1
- package/dist/cli-tui/utils/commands/command-registry-builder.d.ts +0 -8
- package/dist/cli-tui/utils/commands/command-registry-builder.d.ts.map +0 -1
- package/dist/cli-tui/utils/commands/command-registry-builder.js +0 -9
- package/dist/cli-tui/utils/commands/command-registry-builder.js.map +0 -1
- package/dist/cli-tui/utils/commands/review-prompt.d.ts +0 -10
- package/dist/cli-tui/utils/commands/review-prompt.d.ts.map +0 -1
- package/dist/cli-tui/utils/commands/review-prompt.js +0 -90
- package/dist/cli-tui/utils/commands/review-prompt.js.map +0 -1
- package/dist/cli-tui/utils/commands/slash-hint-bar.d.ts +0 -15
- package/dist/cli-tui/utils/commands/slash-hint-bar.d.ts.map +0 -1
- package/dist/cli-tui/utils/commands/slash-hint-bar.js +0 -106
- package/dist/cli-tui/utils/commands/slash-hint-bar.js.map +0 -1
- package/dist/cli-tui/utils/env-detect.d.ts +0 -11
- package/dist/cli-tui/utils/env-detect.d.ts.map +0 -1
- package/dist/cli-tui/utils/env-detect.js +0 -107
- package/dist/cli-tui/utils/env-detect.js.map +0 -1
- package/dist/cli-tui/utils/external-editor.d.ts +0 -7
- package/dist/cli-tui/utils/external-editor.d.ts.map +0 -1
- package/dist/cli-tui/utils/external-editor.js +0 -53
- package/dist/cli-tui/utils/external-editor.js.map +0 -1
- package/dist/cli-tui/utils/footer-utils.d.ts +0 -169
- package/dist/cli-tui/utils/footer-utils.d.ts.map +0 -1
- package/dist/cli-tui/utils/footer-utils.js +0 -716
- package/dist/cli-tui/utils/footer-utils.js.map +0 -1
- package/dist/cli-tui/utils/footer-visual-widgets.d.ts +0 -38
- package/dist/cli-tui/utils/footer-visual-widgets.d.ts.map +0 -1
- package/dist/cli-tui/utils/footer-visual-widgets.js +0 -141
- package/dist/cli-tui/utils/footer-visual-widgets.js.map +0 -1
- package/dist/cli-tui/utils/git-branch-tracker.d.ts +0 -38
- package/dist/cli-tui/utils/git-branch-tracker.d.ts.map +0 -1
- package/dist/cli-tui/utils/git-branch-tracker.js +0 -90
- package/dist/cli-tui/utils/git-branch-tracker.js.map +0 -1
- package/dist/cli-tui/utils/glyphs.d.ts +0 -207
- package/dist/cli-tui/utils/glyphs.d.ts.map +0 -1
- package/dist/cli-tui/utils/glyphs.js +0 -249
- package/dist/cli-tui/utils/glyphs.js.map +0 -1
- package/dist/cli-tui/utils/layout.d.ts +0 -77
- package/dist/cli-tui/utils/layout.d.ts.map +0 -1
- package/dist/cli-tui/utils/layout.js +0 -83
- package/dist/cli-tui/utils/layout.js.map +0 -1
- package/dist/cli-tui/utils/links.d.ts +0 -2
- package/dist/cli-tui/utils/links.d.ts.map +0 -1
- package/dist/cli-tui/utils/links.js +0 -14
- package/dist/cli-tui/utils/links.js.map +0 -1
- package/dist/cli-tui/utils/motion.d.ts +0 -4
- package/dist/cli-tui/utils/motion.d.ts.map +0 -1
- package/dist/cli-tui/utils/motion.js +0 -28
- package/dist/cli-tui/utils/motion.js.map +0 -1
- package/dist/cli-tui/utils/runtime-badges.d.ts +0 -26
- package/dist/cli-tui/utils/runtime-badges.d.ts.map +0 -1
- package/dist/cli-tui/utils/runtime-badges.js +0 -178
- package/dist/cli-tui/utils/runtime-badges.js.map +0 -1
- package/dist/cli-tui/utils/shimmer.d.ts +0 -12
- package/dist/cli-tui/utils/shimmer.d.ts.map +0 -1
- package/dist/cli-tui/utils/shimmer.js +0 -57
- package/dist/cli-tui/utils/shimmer.js.map +0 -1
- package/dist/cli-tui/utils/stage-labels.d.ts +0 -9
- package/dist/cli-tui/utils/stage-labels.d.ts.map +0 -1
- package/dist/cli-tui/utils/stage-labels.js +0 -65
- package/dist/cli-tui/utils/stage-labels.js.map +0 -1
- package/dist/cli-tui/utils/text-formatting.d.ts +0 -13
- package/dist/cli-tui/utils/text-formatting.d.ts.map +0 -1
- package/dist/cli-tui/utils/text-formatting.js +0 -109
- package/dist/cli-tui/utils/text-formatting.js.map +0 -1
- package/dist/cli-tui/utils/text-preview.d.ts +0 -10
- package/dist/cli-tui/utils/text-preview.d.ts.map +0 -1
- package/dist/cli-tui/utils/text-preview.js +0 -26
- package/dist/cli-tui/utils/text-preview.js.map +0 -1
- package/dist/cli-tui/utils/tool-text-utils.d.ts +0 -42
- package/dist/cli-tui/utils/tool-text-utils.d.ts.map +0 -1
- package/dist/cli-tui/utils/tool-text-utils.js +0 -361
- package/dist/cli-tui/utils/tool-text-utils.js.map +0 -1
- package/dist/cli-tui/welcome-animation.d.ts +0 -24
- package/dist/cli-tui/welcome-animation.d.ts.map +0 -1
- package/dist/cli-tui/welcome-animation.js +0 -99
- package/dist/cli-tui/welcome-animation.js.map +0 -1
- package/dist/cli-tui/welcome-colors.d.ts +0 -3
- package/dist/cli-tui/welcome-colors.d.ts.map +0 -1
- package/dist/cli-tui/welcome-colors.js +0 -39
- package/dist/cli-tui/welcome-colors.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/autocomplete.d.ts +0 -304
- package/dist/node_modules/@evalops/tui/dist/autocomplete.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/autocomplete.js +0 -712
- package/dist/node_modules/@evalops/tui/dist/autocomplete.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/editor.d.ts +0 -185
- package/dist/node_modules/@evalops/tui/dist/components/editor.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/editor.js +0 -1460
- package/dist/node_modules/@evalops/tui/dist/components/editor.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/input.d.ts +0 -117
- package/dist/node_modules/@evalops/tui/dist/components/input.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/input.js +0 -391
- package/dist/node_modules/@evalops/tui/dist/components/input.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/layout.d.ts +0 -256
- package/dist/node_modules/@evalops/tui/dist/components/layout.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/layout.js +0 -478
- package/dist/node_modules/@evalops/tui/dist/components/layout.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/loader.d.ts +0 -199
- package/dist/node_modules/@evalops/tui/dist/components/loader.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/loader.js +0 -374
- package/dist/node_modules/@evalops/tui/dist/components/loader.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/markdown.d.ts +0 -65
- package/dist/node_modules/@evalops/tui/dist/components/markdown.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/markdown.js +0 -562
- package/dist/node_modules/@evalops/tui/dist/components/markdown.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/scroll-container.d.ts +0 -262
- package/dist/node_modules/@evalops/tui/dist/components/scroll-container.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/scroll-container.js +0 -575
- package/dist/node_modules/@evalops/tui/dist/components/scroll-container.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/select-list.d.ts +0 -131
- package/dist/node_modules/@evalops/tui/dist/components/select-list.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/select-list.js +0 -257
- package/dist/node_modules/@evalops/tui/dist/components/select-list.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/spacer.d.ts +0 -11
- package/dist/node_modules/@evalops/tui/dist/components/spacer.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/spacer.js +0 -19
- package/dist/node_modules/@evalops/tui/dist/components/spacer.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/status-bar.d.ts +0 -22
- package/dist/node_modules/@evalops/tui/dist/components/status-bar.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/status-bar.js +0 -44
- package/dist/node_modules/@evalops/tui/dist/components/status-bar.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/text.d.ts +0 -26
- package/dist/node_modules/@evalops/tui/dist/components/text.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/text.js +0 -181
- package/dist/node_modules/@evalops/tui/dist/components/text.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/truncated-text.d.ts +0 -15
- package/dist/node_modules/@evalops/tui/dist/components/truncated-text.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/components/truncated-text.js +0 -84
- package/dist/node_modules/@evalops/tui/dist/components/truncated-text.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/index.d.ts +0 -87
- package/dist/node_modules/@evalops/tui/dist/index.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/index.js +0 -85
- package/dist/node_modules/@evalops/tui/dist/index.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/keymap.d.ts +0 -189
- package/dist/node_modules/@evalops/tui/dist/keymap.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/keymap.js +0 -363
- package/dist/node_modules/@evalops/tui/dist/keymap.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/mermaid-renderer.d.ts +0 -25
- package/dist/node_modules/@evalops/tui/dist/mermaid-renderer.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/mermaid-renderer.js +0 -828
- package/dist/node_modules/@evalops/tui/dist/mermaid-renderer.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/style/code-highlighter.d.ts +0 -40
- package/dist/node_modules/@evalops/tui/dist/style/code-highlighter.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/style/code-highlighter.js +0 -474
- package/dist/node_modules/@evalops/tui/dist/style/code-highlighter.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/terminal.d.ts +0 -201
- package/dist/node_modules/@evalops/tui/dist/terminal.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/terminal.js +0 -241
- package/dist/node_modules/@evalops/tui/dist/terminal.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/tui.d.ts +0 -263
- package/dist/node_modules/@evalops/tui/dist/tui.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/tui.js +0 -694
- package/dist/node_modules/@evalops/tui/dist/tui.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/utils/terminal-features.d.ts +0 -14
- package/dist/node_modules/@evalops/tui/dist/utils/terminal-features.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/utils/terminal-features.js +0 -44
- package/dist/node_modules/@evalops/tui/dist/utils/terminal-features.js.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/utils.d.ts +0 -32
- package/dist/node_modules/@evalops/tui/dist/utils.d.ts.map +0 -1
- package/dist/node_modules/@evalops/tui/dist/utils.js +0 -556
- package/dist/node_modules/@evalops/tui/dist/utils.js.map +0 -1
- package/dist/node_modules/@evalops/tui/package.json +0 -58
- package/dist/skills/artifact-metadata.d.ts +0 -16
- package/dist/skills/artifact-metadata.d.ts.map +0 -1
- package/dist/skills/artifact-metadata.js +0 -86
- package/dist/skills/artifact-metadata.js.map +0 -1
- package/dist/skills/composer-diagnostics.d.ts +0 -69
- package/dist/skills/composer-diagnostics.d.ts.map +0 -1
- package/dist/skills/composer-diagnostics.js +0 -78
- package/dist/skills/composer-diagnostics.js.map +0 -1
- package/dist/skills/composer.d.ts +0 -19
- package/dist/skills/composer.d.ts.map +0 -1
- package/dist/skills/composer.js +0 -52
- package/dist/skills/composer.js.map +0 -1
- package/dist/skills/eval-harness.d.ts +0 -38
- package/dist/skills/eval-harness.d.ts.map +0 -1
- package/dist/skills/eval-harness.js +0 -112
- package/dist/skills/eval-harness.js.map +0 -1
- package/dist/skills/index.d.ts +0 -40
- package/dist/skills/index.d.ts.map +0 -1
- package/dist/skills/index.js +0 -40
- package/dist/skills/index.js.map +0 -1
- package/dist/skills/linter.d.ts +0 -36
- package/dist/skills/linter.d.ts.map +0 -1
- package/dist/skills/linter.js +0 -399
- package/dist/skills/linter.js.map +0 -1
- package/dist/skills/loader.d.ts +0 -252
- package/dist/skills/loader.d.ts.map +0 -1
- package/dist/skills/loader.js +0 -957
- package/dist/skills/loader.js.map +0 -1
- package/dist/skills/package-contract.d.ts +0 -45
- package/dist/skills/package-contract.d.ts.map +0 -1
- package/dist/skills/package-contract.js +0 -153
- package/dist/skills/package-contract.js.map +0 -1
- package/dist/skills/runtime-activation.d.ts +0 -68
- package/dist/skills/runtime-activation.d.ts.map +0 -1
- package/dist/skills/runtime-activation.js +0 -228
- package/dist/skills/runtime-activation.js.map +0 -1
- package/dist/skills/scaffold-from-template.d.ts +0 -58
- package/dist/skills/scaffold-from-template.d.ts.map +0 -1
- package/dist/skills/scaffold-from-template.js +0 -72
- package/dist/skills/scaffold-from-template.js.map +0 -1
- package/dist/skills/scaffolder.d.ts +0 -65
- package/dist/skills/scaffolder.d.ts.map +0 -1
- package/dist/skills/scaffolder.js +0 -167
- package/dist/skills/scaffolder.js.map +0 -1
- package/dist/skills/service-client.d.ts +0 -56
- package/dist/skills/service-client.d.ts.map +0 -1
- package/dist/skills/service-client.js +0 -266
- package/dist/skills/service-client.js.map +0 -1
- package/dist/skills/skill-templates.d.ts +0 -70
- package/dist/skills/skill-templates.d.ts.map +0 -1
- package/dist/skills/skill-templates.js +0 -154
- package/dist/skills/skill-templates.js.map +0 -1
- package/dist/skills/tool.d.ts +0 -21
- package/dist/skills/tool.d.ts.map +0 -1
- package/dist/skills/tool.js +0 -334
- package/dist/skills/tool.js.map +0 -1
- package/dist/skills/trust-cache.d.ts +0 -58
- package/dist/skills/trust-cache.d.ts.map +0 -1
- package/dist/skills/trust-cache.js +0 -130
- package/dist/skills/trust-cache.js.map +0 -1
- package/dist/skills/types.d.ts +0 -91
- package/dist/skills/types.d.ts.map +0 -1
- package/dist/skills/types.js +0 -8
- package/dist/skills/types.js.map +0 -1
- /package/dist/{cli-tui → runtime}/prompt-queue.d.ts +0 -0
- /package/dist/{cli-tui → runtime}/prompt-queue.js +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../src/schemas.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,kBAAkB,qOAK7B,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;;EAIpC,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;EAIrC,CAAC;AAEH,eAAO,MAAM,6BAA6B;;;;EAIxC,CAAC;AAEH,eAAO,MAAM,6BAA6B;;;;;;EAMxC,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;IAKrC,CAAC;AAEH,eAAO,MAAM,2BAA2B,+QAMtC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;EAWjC,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;EAUnC,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;;;;EAMlC,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;EAM9B,CAAC;AAEH,eAAO,MAAM,qBAAqB
|
|
1
|
+
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../src/schemas.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqBhC,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
|
|
@@ -40,6 +40,48 @@ export const ComposerThinkingLevelSchema = Type.Union([
|
|
|
40
40
|
Type.Literal("medium"),
|
|
41
41
|
Type.Literal("high"),
|
|
42
42
|
]);
|
|
43
|
+
export const RoutingReceiptSourceSchema = Type.Union([
|
|
44
|
+
Type.Literal("request"),
|
|
45
|
+
Type.Literal("session"),
|
|
46
|
+
Type.Literal("compatibility_default"),
|
|
47
|
+
]);
|
|
48
|
+
export const AgentProfilePinSchema = Type.Object({
|
|
49
|
+
profile: Type.String({ minLength: 1 }),
|
|
50
|
+
updatedAt: Type.String({ minLength: 1 }),
|
|
51
|
+
});
|
|
52
|
+
export const RoutingReceiptOracleSchema = Type.Object({
|
|
53
|
+
policyVersion: Type.String({ minLength: 1 }),
|
|
54
|
+
mode: Type.Union([
|
|
55
|
+
Type.Literal("available"),
|
|
56
|
+
Type.Literal("recommended"),
|
|
57
|
+
Type.Literal("required"),
|
|
58
|
+
]),
|
|
59
|
+
reasons: Type.Array(Type.String()),
|
|
60
|
+
});
|
|
61
|
+
export const RoutingReceiptFallbackSchema = Type.Object({
|
|
62
|
+
reason: Type.String({ minLength: 1 }),
|
|
63
|
+
provider: Type.Optional(Type.String()),
|
|
64
|
+
model: Type.Optional(Type.String()),
|
|
65
|
+
});
|
|
66
|
+
export const RoutingReceiptExperimentSchema = Type.Object({
|
|
67
|
+
experimentId: Type.String({ minLength: 1 }),
|
|
68
|
+
arm: Type.Union([Type.Literal("control"), Type.Literal("treatment")]),
|
|
69
|
+
policyVersion: Type.String({ minLength: 1 }),
|
|
70
|
+
});
|
|
71
|
+
export const RoutingReceiptSchema = Type.Object({
|
|
72
|
+
decisionId: Type.String({ minLength: 1 }),
|
|
73
|
+
requestedProfile: Type.String({ minLength: 1 }),
|
|
74
|
+
source: RoutingReceiptSourceSchema,
|
|
75
|
+
resolvedProfileId: Type.String({ minLength: 1 }),
|
|
76
|
+
resolvedProfileVersion: Type.Number({ minimum: 1 }),
|
|
77
|
+
provider: Type.String({ minLength: 1 }),
|
|
78
|
+
model: Type.String({ minLength: 1 }),
|
|
79
|
+
reasoningEffort: Type.String({ minLength: 1 }),
|
|
80
|
+
createdAt: Type.String({ minLength: 1 }),
|
|
81
|
+
oracle: Type.Optional(RoutingReceiptOracleSchema),
|
|
82
|
+
fallback: Type.Optional(RoutingReceiptFallbackSchema),
|
|
83
|
+
experiment: Type.Optional(RoutingReceiptExperimentSchema),
|
|
84
|
+
});
|
|
43
85
|
export const ComposerToolCallSchema = Type.Object({
|
|
44
86
|
name: Type.String(),
|
|
45
87
|
status: Type.Union([
|
|
@@ -89,10 +131,13 @@ export const ComposerMessageSchema = Type.Object({
|
|
|
89
131
|
usage: Type.Optional(ComposerUsageSchema),
|
|
90
132
|
provider: Type.Optional(Type.String()),
|
|
91
133
|
api: Type.Optional(Type.String()),
|
|
134
|
+
routingReceipt: Type.Optional(RoutingReceiptSchema),
|
|
92
135
|
model: Type.Optional(Type.String()),
|
|
93
136
|
});
|
|
94
137
|
export const ComposerChatRequestSchema = Type.Object({
|
|
95
138
|
model: Type.Optional(Type.String()),
|
|
139
|
+
profile: Type.Optional(Type.String()),
|
|
140
|
+
persistProfile: Type.Optional(Type.Boolean()),
|
|
96
141
|
messages: Type.Array(ComposerMessageSchema),
|
|
97
142
|
thinkingLevel: Type.Optional(ComposerThinkingLevelSchema),
|
|
98
143
|
sessionId: Type.Optional(Type.String()),
|
|
@@ -502,6 +547,10 @@ export const ComposerSessionSchema = Type.Object({
|
|
|
502
547
|
pendingRequests: Type.Optional(Type.Array(ComposerPendingRequestSchema)),
|
|
503
548
|
});
|
|
504
549
|
export const ComposerAgentEventSchema = Type.Union([
|
|
550
|
+
Type.Object({
|
|
551
|
+
type: Type.Literal("routing_receipt"),
|
|
552
|
+
receipt: RoutingReceiptSchema,
|
|
553
|
+
}),
|
|
505
554
|
Type.Object({ type: Type.Literal("agent_start") }),
|
|
506
555
|
Type.Object({
|
|
507
556
|
type: Type.Literal("agent_end"),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../src/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AAEzC,MAAM,CAAC,MAAM,kBAAkB,GAAG,IAAI,CAAC,KAAK,CAAC;IAC5C,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;IACpB,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC;IACzB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;IACtB,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;CACpB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,yBAAyB,GAAG,IAAI,CAAC,MAAM,CAAC;IACpD,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;IAC1B,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;IACnB,aAAa,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;CAC3C,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,0BAA0B,GAAG,IAAI,CAAC,MAAM,CAAC;IACrD,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC;IAC3B,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;IACnB,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE;CACvB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,6BAA6B,GAAG,IAAI,CAAC,MAAM,CAAC;IACxD,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC;IAC9B,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE;IACvB,iBAAiB,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;CAC/C,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,6BAA6B,GAAG,IAAI,CAAC,MAAM,CAAC;IACxD,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC;IAC9B,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;IACnB,SAAS,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC;IACrD,gBAAgB,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;CAC9C,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,0BAA0B,GAAG,IAAI,CAAC,KAAK,CAAC;IACpD,yBAAyB;IACzB,0BAA0B;IAC1B,6BAA6B;IAC7B,6BAA6B;CAC7B,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,2BAA2B,GAAG,IAAI,CAAC,KAAK,CAAC;IACrD,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC;IACnB,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;IACvB,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC;IACnB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;IACtB,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;CACpB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,sBAAsB,GAAG,IAAI,CAAC,MAAM,CAAC;IACjD,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;IACnB,MAAM,EAAE,IAAI,CAAC,KAAK,CAAC;QAClB,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;QACvB,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;QACvB,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC;QACzB,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC;KACrB,CAAC;IACF,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,CAAC;IAC/D,MAAM,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;IACrC,UAAU,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;CACxC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,wBAAwB,GAAG,IAAI,CAAC,MAAM,CAAC;IACnD,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC;IACnE,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE;IACvB,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE;IACvB,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;IACnB,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACrC,cAAc,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;IAC7C,aAAa,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IAC3C,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;CACrC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,uBAAuB,GAAG,IAAI,CAAC,MAAM,CAAC;IAClD,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE;IACpB,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;IACrB,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACvC,UAAU,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACxC,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;CACnC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,mBAAmB,GAAG,IAAI,CAAC,MAAM,CAAC;IAC9C,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE;IACpB,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;IACrB,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACvC,UAAU,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACxC,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,uBAAuB,CAAC;CAC5C,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,qBAAqB,GAAG,IAAI,CAAC,MAAM,CAAC;IAChD,IAAI,EAAE,kBAAkB;IACxB,OAAO,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,CAAC,KAAK,CAAC,0BAA0B,CAAC,CAAC,CAAC;IAC5E,WAAW,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,wBAAwB,CAAC,CAAC;IAChE,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACvC,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACtC,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,sBAAsB,CAAC,CAAC;IACxD,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACtC,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;IACtC,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,mBAAmB,CAAC;IACzC,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACtC,GAAG,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACjC,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;CACnC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,yBAAyB,GAAG,IAAI,CAAC,MAAM,CAAC;IACpD,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACnC,QAAQ,EAAE,IAAI,CAAC,KAAK,CAAC,qBAAqB,CAAC;IAC3C,aAAa,EAAE,IAAI,CAAC,QAAQ,CAAC,2BAA2B,CAAC;IACzD,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACvC,MAAM,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;CACrC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,qCAAqC,GAAG,IAAI,CAAC,MAAM,CAAC;IAChE,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACnC,QAAQ,EAAE,IAAI,CAAC,KAAK,CAAC,qBAAqB,CAAC;IAC3C,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;CACvC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,sCAAsC,GAAG,IAAI,CAAC,MAAM,CAAC;IACjE,UAAU,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC;IACpD,gBAAgB,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IAC9C,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;CACnC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,sBAAsB,GAAG,IAAI,CAAC,MAAM,CAAC;IACjD,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,EAAE,SAAS,EAAE,CAAC,EAAE,CAAC;CACpC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,+BAA+B,GAAG,IAAI,CAAC,MAAM,CAAC;IAC1D,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;IACxC,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;IACpC,MAAM,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;IACrC,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;CACxC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,mBAAmB,GAAG,IAAI,CAAC,MAAM,CAAC;IAC9C,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE;IACjB,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE;IACvB,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;IACnB,GAAG,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACjC,aAAa,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IAC3C,eAAe,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IAC7C,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACvC,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;IACxC,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,uBAAuB,CAAC;IAC5C,YAAY,EAAE,IAAI,CAAC,QAAQ,CAAC,+BAA+B,CAAC;CAC5D,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,+BAA+B,GAAG,IAAI,CAAC,MAAM,CAAC;IAC1D,MAAM,EAAE,IAAI,CAAC,KAAK,CAAC,mBAAmB,CAAC;CACvC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,wBAAwB,GAAG,IAAI,CAAC,MAAM,CAAC;IACnD,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;IACnB,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;CACvC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,qBAAqB,GAAG,IAAI,CAAC,MAAM,CAAC;IAChD,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;IACnB,WAAW,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACzC,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;IACrB,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,wBAAwB,CAAC,CAAC;CACzD,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,iCAAiC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC5D,QAAQ,EAAE,IAAI,CAAC,KAAK,CAAC,qBAAqB,CAAC;CAC3C,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,0BAA0B,GAAG,IAAI,CAAC,MAAM,CAAC;IACrD,SAAS,EAAE,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACpC,OAAO,EAAE,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;CAClC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,gCAAgC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC3D,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,CAAC;IACnD,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,CAAC;CACjD,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,uCAAuC,GAAG,IAAI,CAAC,MAAM,CAAC;IAClE,EAAE,EAAE,IAAI,CAAC,OAAO,EAAE;CAClB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,gCAAgC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC3D,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC;CAClD,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,4BAA4B,GAAG,IAAI,CAAC,MAAM,CAAC;IACvD,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC;IAClD,UAAU,EAAE,IAAI,CAAC,MAAM,EAAE;CACzB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,iCAAiC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC5D,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE;CACvB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,2BAA2B,GAAG,IAAI,CAAC,MAAM,CAAC;IACtD,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;CAChC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,4BAA4B,GAAG,IAAI,CAAC,MAAM,CAAC;IACvD,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE;IACjB,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACnC,aAAa,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IAC3C,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;IACxB,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;IACxB,YAAY,EAAE,IAAI,CAAC,MAAM,EAAE;IAC3B,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;IACvC,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,CAAC;CAC9C,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,mCAAmC,GAAG,IAAI,CAAC,KAAK,CAAC;IAC7D,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC;QAC3B,OAAO,EAAE,qBAAqB;KAC9B,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC;QAChC,YAAY,EAAE,IAAI,CAAC,MAAM,EAAE;QAC3B,OAAO,EAAE,qBAAqB;KAC9B,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC;QAChC,YAAY,EAAE,IAAI,CAAC,MAAM,EAAE;QAC3B,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE;QACpB,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,qBAAqB,CAAC;KAC7C,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC;QAC9B,YAAY,EAAE,IAAI,CAAC,MAAM,EAAE;QAC3B,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;QACtB,OAAO,EAAE,qBAAqB;KAC9B,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC;QACpC,YAAY,EAAE,IAAI,CAAC,MAAM,EAAE;QAC3B,OAAO,EAAE,qBAAqB;KAC9B,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC;QACpC,YAAY,EAAE,IAAI,CAAC,MAAM,EAAE;QAC3B,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE;QACpB,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,qBAAqB,CAAC;KAC7C,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,cAAc,CAAC;QAClC,YAAY,EAAE,IAAI,CAAC,MAAM,EAAE;QAC3B,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;QACtB,OAAO,EAAE,qBAAqB;KAC9B,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC;QACpC,YAAY,EAAE,IAAI,CAAC,MAAM,EAAE;QAC3B,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,qBAAqB,CAAC;QAC7C,UAAU,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;QACxC,YAAY,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;QAC1C,YAAY,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,CAAC;QACvE,qBAAqB,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;KACpD,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC;QACpC,YAAY,EAAE,IAAI,CAAC,MAAM,EAAE;QAC3B,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE;QACpB,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,qBAAqB,CAAC;QAC7C,UAAU,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;QACxC,YAAY,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;QAC1C,YAAY,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,CAAC;QACvE,qBAAqB,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;KACpD,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,cAAc,CAAC;QAClC,YAAY,EAAE,IAAI,CAAC,MAAM,EAAE;QAC3B,QAAQ,EAAE,6BAA6B;QACvC,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,qBAAqB,CAAC;KAC7C,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;QAC1B,MAAM,EAAE,IAAI,CAAC,KAAK,CAAC;YAClB,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;YACpB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;YACtB,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;SACvB,CAAC;QACF,OAAO,EAAE,qBAAqB;KAC9B,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC;QAC3B,MAAM,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,EAAE,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC;QACpE,KAAK,EAAE,qBAAqB;KAC5B,CAAC;CACF,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,uCAAuC,GAAG,IAAI,CAAC,MAAM,CAAC;IAClE,MAAM,EAAE,IAAI,CAAC,KAAK,CAAC;QAClB,IAAI,CAAC,OAAO,CAAC,mBAAmB,CAAC;QACjC,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC;KAC9B,CAAC;IACF,eAAe,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IAC7C,iBAAiB,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;CAC/C,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,mCAAmC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC9D,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE;IACjB,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE;IACvB,WAAW,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACzC,YAAY,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IAC1C,iBAAiB,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IAC/C,IAAI,EAAE,IAAI,CAAC,OAAO,EAAE;IACpB,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;IACrB,WAAW,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACzC,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,uCAAuC,CAAC;CAChE,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,oCAAoC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC/D,QAAQ,EAAE,IAAI,CAAC,OAAO,EAAE;IACxB,MAAM,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACpC,UAAU,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC;IACtE,YAAY,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;CAC1C,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,sCAAsC,GAAG,IAAI,CAAC,MAAM,CAAC;IACjE,UAAU,EAAE,IAAI,CAAC,MAAM,EAAE;IACzB,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE;IACvB,IAAI,EAAE,IAAI,CAAC,OAAO,EAAE;IACpB,IAAI,EAAE,IAAI,CAAC,QAAQ,CAClB,IAAI,CAAC,KAAK,CAAC;QACV,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC;QAC3B,IAAI,CAAC,OAAO,CAAC,iBAAiB,CAAC;QAC/B,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC;KAC1B,CAAC,CACF;IACD,MAAM,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;CACpC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,4BAA4B,GAAG,IAAI,CAAC,MAAM,CAAC;IACvD,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC;QAChB,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC;QACxB,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC;QAC3B,IAAI,CAAC,OAAO,CAAC,iBAAiB,CAAC;QAC/B,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC;QAC1B,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC;KAC1B,CAAC;IACF,MAAM,EAAE,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;IAC/B,UAAU,EAAE,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;IAChC,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACvC,UAAU,EAAE,IAAI,CAAC,MAAM,EAAE;IACzB,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE;IACvB,WAAW,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACzC,YAAY,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IAC1C,iBAAiB,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IAC/C,IAAI,EAAE,IAAI,CAAC,OAAO,EAAE;IACpB,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;IACrB,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;IACxB,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACvC,MAAM,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC;IACrE,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,uCAAuC,CAAC;CAChE,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,sCAAsC,GAAG,IAAI,CAAC,KAAK,CAAC;IAChE,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC;IACxB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;IACtB,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC;IACzB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;IACtB,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC;IACxB,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;IACvB,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;IACvB,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;IACvB,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC;CACzB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,6CAA6C,GAAG,IAAI,CAAC,KAAK,CAAC;IACvE,IAAI,CAAC,OAAO,CAAC,iBAAiB,CAAC;IAC/B,IAAI,CAAC,OAAO,CAAC,qBAAqB,CAAC;IACnC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC;CACzB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,qCAAqC,GAAG,IAAI,CAAC,KAAK,CAAC;IAC/D,yBAAyB;IACzB,0BAA0B;CAC1B,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,yCAAyC,GAAG,IAAI,CAAC,MAAM,CAAC;IACpE,IAAI,EAAE,IAAI,CAAC,QAAQ,CAClB,IAAI,CAAC,KAAK,CAAC;QACV,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC;QACxB,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC;QAC3B,IAAI,CAAC,OAAO,CAAC,iBAAiB,CAAC;QAC/B,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC;QAC1B,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC;KAC1B,CAAC,CACF;IACD,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACvC,QAAQ,EAAE,IAAI,CAAC,QAAQ,CACtB,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,EAAE,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,CAC9D;IACD,MAAM,EAAE,IAAI,CAAC,QAAQ,CACpB,IAAI,CAAC,KAAK,CAAC;QACV,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC;QACrB,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;QACpB,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC;KACrB,CAAC,CACF;IACD,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,qCAAqC,CAAC,CAAC;IACzE,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;IACtC,MAAM,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;CACpC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,0CAA0C,GAAG,IAAI,CAAC,MAAM,CAAC;IACrE,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC;IAC3B,OAAO,EAAE,IAAI,CAAC,MAAM,CAAC;QACpB,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE;QACjB,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC;YAChB,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC;YACxB,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC;YAC3B,IAAI,CAAC,OAAO,CAAC,iBAAiB,CAAC;YAC/B,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC;YAC1B,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC;SAC1B,CAAC;QACF,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;QACvC,UAAU,EAAE,sCAAsC;QAClD,MAAM,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC;QACrE,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,uCAAuC,CAAC;QAChE,iBAAiB,EAAE,IAAI,CAAC,QAAQ,CAC/B,6CAA6C,CAC7C;KACD,CAAC;CACF,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,mCAAmC,GAAG,IAAI,CAAC,KAAK,CAAC;IAC7D,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;IACpB,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC;IACrB,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC;CACrB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,+BAA+B,GAAG,IAAI,CAAC,KAAK,CAAC;IACzD,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC;IACrB,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC;CACxB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,kCAAkC,GAAG,IAAI,CAAC,KAAK,CAAC;IAC5D,IAAI,CAAC,OAAO,CAAC,iBAAiB,CAAC;IAC/B,IAAI,CAAC,OAAO,CAAC,iBAAiB,CAAC;IAC/B,IAAI,CAAC,OAAO,CAAC,cAAc,CAAC;IAC5B,IAAI,CAAC,OAAO,CAAC,mBAAmB,CAAC;IACjC,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC;IAC9B,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC;IAC9B,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC;IAC3B,IAAI,CAAC,OAAO,CAAC,cAAc,CAAC;IAC5B,IAAI,CAAC,OAAO,CAAC,kBAAkB,CAAC;IAChC,IAAI,CAAC,OAAO,CAAC,iBAAiB,CAAC;IAC/B,IAAI,CAAC,OAAO,CAAC,iBAAiB,CAAC;IAC/B,IAAI,CAAC,OAAO,CAAC,cAAc,CAAC;IAC5B,IAAI,CAAC,OAAO,CAAC,mBAAmB,CAAC;IACjC,IAAI,CAAC,OAAO,CAAC,qBAAqB,CAAC;IACnC,IAAI,CAAC,OAAO,CAAC,kBAAkB,CAAC;IAChC,IAAI,CAAC,OAAO,CAAC,oBAAoB,CAAC;IAClC,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC;IAC9B,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC;IAC7B,IAAI,CAAC,OAAO,CAAC,kBAAkB,CAAC;IAChC,IAAI,CAAC,OAAO,CAAC,kBAAkB,CAAC;IAChC,IAAI,CAAC,OAAO,CAAC,kBAAkB,CAAC;IAChC,IAAI,CAAC,OAAO,CAAC,cAAc,CAAC;CAC5B,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,+BAA+B,GAAG,IAAI,CAAC,KAAK,CAAC;IACzD,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;IACvB,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;IACvB,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC;IACzB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;IACtB,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC;IACxB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;IACtB,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;CACpB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,6BAA6B,GAAG,IAAI,CAAC,MAAM,CAAC;IACxD,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE;IACjB,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;IACxB,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;IACxB,IAAI,EAAE,kCAAkC;IACxC,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE;IACpB,UAAU,EAAE,mCAAmC;IAC/C,MAAM,EAAE,+BAA+B;IACvC,MAAM,EAAE,IAAI,CAAC,QAAQ,CAAC,+BAA+B,CAAC;IACtD,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACrC,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,kBAAkB,CAAC;IACvC,UAAU,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACxC,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACtC,gBAAgB,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IAC9C,kBAAkB,EAAE,IAAI,CAAC,QAAQ,CAChC,IAAI,CAAC,KAAK,CAAC;QACV,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC;QACxB,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC;QAC3B,IAAI,CAAC,OAAO,CAAC,iBAAiB,CAAC;QAC/B,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC;QAC1B,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC;KAC1B,CAAC,CACF;IACD,iBAAiB,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IAC/C,eAAe,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IAC7C,UAAU,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACxC,UAAU,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACxC,gBAAgB,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IAC9C,eAAe,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IAC7C,qBAAqB,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACnD,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,uCAAuC,CAAC;IAChE,iBAAiB,EAAE,IAAI,CAAC,QAAQ,CAC/B,6CAA6C,CAC7C;IACD,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,CAAC;CACnE,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,iCAAiC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC5D,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;IACxB,MAAM,EAAE,+BAA+B;IACvC,WAAW,EAAE,IAAI,CAAC,MAAM,EAAE;IAC1B,cAAc,EAAE,IAAI,CAAC,OAAO,EAAE;IAC9B,mBAAmB,EAAE,IAAI,CAAC,MAAM,EAAE;IAClC,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,6BAA6B,CAAC;CAChD,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,8BAA8B,GAAG,IAAI,CAAC,MAAM,CAAC;IACzD,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE;IACjB,UAAU,EAAE,IAAI,CAAC,MAAM,EAAE;IACzB,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE;IACvB,IAAI,EAAE,IAAI,CAAC,OAAO,EAAE;IACpB,YAAY,EAAE,IAAI,CAAC,MAAM,EAAE;IAC3B,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;IACtB,WAAW,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACzC,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;CACrC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,+BAA+B,GAAG,IAAI,CAAC,MAAM,CAAC;IAC1D,MAAM,EAAE,IAAI,CAAC,KAAK,CAAC;QAClB,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC;QACrB,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;QACpB,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC;KACrB,CAAC;IACF,MAAM,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACpC,UAAU,EAAE,IAAI,CAAC,KAAK,CAAC;QACtB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;QACtB,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;QACpB,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;KACvB,CAAC;CACF,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,iCAAiC,GAAG,IAAI,CAAC,KAAK,CAAC;IAC3D,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;IACpB,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;IACvB,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC;CACzB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,qBAAqB,GAAG,IAAI,CAAC,MAAM,CAAC;IAChD,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE;IACjB,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACnC,aAAa,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IAC3C,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;IACxB,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;IACxB,YAAY,EAAE,IAAI,CAAC,MAAM,EAAE;IAC3B,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;IACvC,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,CAAC;IAC9C,YAAY,EAAE,IAAI,CAAC,QAAQ,CAAC,iCAAiC,CAAC;IAC9D,QAAQ,EAAE,IAAI,CAAC,KAAK,CAAC,qBAAqB,CAAC;IAC3C,uBAAuB,EAAE,IAAI,CAAC,QAAQ,CACrC,IAAI,CAAC,KAAK,CAAC,mCAAmC,CAAC,CAC/C;IACD,yBAAyB,EAAE,IAAI,CAAC,QAAQ,CACvC,IAAI,CAAC,KAAK,CAAC,sCAAsC,CAAC,CAClD;IACD,wBAAwB,EAAE,IAAI,CAAC,QAAQ,CACtC,IAAI,CAAC,KAAK,CAAC,8BAA8B,CAAC,CAC1C;IACD,eAAe,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,4BAA4B,CAAC,CAAC;CACxE,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,wBAAwB,GAAG,IAAI,CAAC,KAAK,CAAC;IAClD,IAAI,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,EAAE,CAAC;IAClD,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC;QAC/B,QAAQ,EAAE,IAAI,CAAC,KAAK,CAAC,qBAAqB,CAAC;QAC3C,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;QACtC,eAAe,EAAE,IAAI,CAAC,QAAQ,CAAC,qBAAqB,CAAC;QACrD,UAAU,EAAE,IAAI,CAAC,QAAQ,CACxB,IAAI,CAAC,KAAK,CAAC;YACV,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;YACpB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;YACtB,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;YACvB,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC;YACrB,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;SACvB,CAAC,CACF;KACD,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;QAC5B,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;QACrB,OAAO,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC;KACnD,CAAC;IACF,IAAI,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE,EAAE,CAAC;IACpE,IAAI,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,EAAE,CAAC;IACjD,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC;QAC9B,OAAO,EAAE,qBAAqB;QAC9B,WAAW,EAAE,IAAI,CAAC,KAAK,CAAC,qBAAqB,CAAC;KAC9C,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC;QACnC,OAAO,EAAE,qBAAqB;KAC9B,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC;QACpC,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,qBAAqB,CAAC;QAC7C,qBAAqB,EAAE,mCAAmC;KAC1D,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC;QACjC,OAAO,EAAE,qBAAqB;KAC9B,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,sBAAsB,CAAC;QAC1C,UAAU,EAAE,IAAI,CAAC,MAAM,EAAE;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE;QACvB,WAAW,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;QACzC,YAAY,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;QAC1C,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC;KAChD,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,uBAAuB,CAAC;QAC3C,UAAU,EAAE,IAAI,CAAC,MAAM,EAAE;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE;QACvB,WAAW,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;QACzC,YAAY,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;QAC1C,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC;QAChD,aAAa,EAAE,IAAI,CAAC,OAAO,EAAE;KAC7B,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,oBAAoB,CAAC;QACxC,UAAU,EAAE,IAAI,CAAC,MAAM,EAAE;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE;QACvB,WAAW,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;QACzC,YAAY,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;QAC1C,MAAM,EAAE,IAAI,CAAC,OAAO,EAAE;QACtB,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE;KACvB,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,oBAAoB,CAAC;QACxC,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;QACtB,aAAa,EAAE,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;QACxC,WAAW,EAAE,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;QACtC,SAAS,EAAE,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;QACpC,cAAc,EAAE,IAAI,CAAC,MAAM,EAAE;QAC7B,WAAW,EAAE,IAAI,CAAC,MAAM,EAAE;KAC1B,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,0BAA0B,CAAC;QAC9C,OAAO,EAAE,mCAAmC;KAC5C,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,0BAA0B,CAAC;QAC9C,OAAO,EAAE,mCAAmC;QAC5C,QAAQ,EAAE,oCAAoC;KAC9C,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,qBAAqB,CAAC;QACzC,UAAU,EAAE,IAAI,CAAC,MAAM,EAAE;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE;QACvB,IAAI,EAAE,IAAI,CAAC,OAAO,EAAE;KACpB,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,qBAAqB,CAAC;QACzC,OAAO,EAAE,8BAA8B;KACvC,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,qBAAqB,CAAC;QACzC,OAAO,EAAE,8BAA8B;QACvC,QAAQ,EAAE,+BAA+B;KACzC,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC;QAChC,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;QACtB,mBAAmB,EAAE,IAAI,CAAC,MAAM,EAAE;QAClC,YAAY,EAAE,IAAI,CAAC,MAAM,EAAE;QAC3B,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;QACnC,kBAAkB,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;QAChD,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;KACxB,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,kBAAkB,CAAC;QACtC,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;QACtB,WAAW,EAAE,IAAI,CAAC,MAAM,EAAE;QAC1B,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;QACtB,YAAY,EAAE,IAAI,CAAC,MAAM,EAAE;KAC3B,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC;QACpC,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE;QACvB,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;QACtB,UAAU,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;KACxC,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC;QACpC,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;KACxB,CAAC;IACF,IAAI,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,EAAE,CAAC;IAChD,IAAI,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,EAAE,CAAC;IAC9C,IAAI,CAAC,MAAM,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC;CAC3C,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,iCAAiC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC5D,QAAQ,EAAE,IAAI,CAAC,KAAK,CAAC,4BAA4B,CAAC;CAClD,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,gCAAgC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC3D,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC;IACpC,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;CACxB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,uCAAuC,GAAG,IAAI,CAAC,MAAM,CAAC;IAClE,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC;IAC/D,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE;IACpB,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;CACrB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,wCAAwC,GAAG,IAAI,CAAC,MAAM,CAAC;IACnE,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC;QACjB,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;QACvB,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC;QACzB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;QACtB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;QACtB,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;KACvB,CAAC;IACF,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;IACrB,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;IACrB,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;IACtB,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;IACxB,eAAe,EAAE,IAAI,CAAC,MAAM,EAAE;IAC9B,aAAa,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IAC3C,WAAW,EAAE,IAAI,CAAC,QAAQ,CAAC,uCAAuC,CAAC;CACnE,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,uCAAuC,GAAG,IAAI,CAAC,MAAM,CAAC;IAClE,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE;IACjB,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;IACrB,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;IACtB,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;IACtB,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACtC,MAAM,EAAE,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACjC,WAAW,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACzC,YAAY,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;IAC3C,eAAe,EAAE,IAAI,CAAC,MAAM,EAAE;CAC9B,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,kCAAkC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC7D,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE;IACpB,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;IACtB,UAAU,EAAE,IAAI,CAAC,MAAM,EAAE;IACzB,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;IACrB,OAAO,EAAE,IAAI,CAAC,KAAK,CAAC,uCAAuC,CAAC;IAC5D,SAAS,EAAE,IAAI,CAAC,OAAO,EAAE;IACzB,oBAAoB,EAAE,IAAI,CAAC,OAAO,EAAE;IACpC,eAAe,EAAE,IAAI,CAAC,OAAO,EAAE;IAC/B,OAAO,EAAE,IAAI,CAAC,KAAK,CAAC,wCAAwC,CAAC;IAC7D,gBAAgB,EAAE,IAAI,CAAC,OAAO,EAAE;CAChC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,4BAA4B,GAAG,IAAI,CAAC,KAAK,CAAC;IACtD,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;IACtB,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC;CACnB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,4BAA4B,GAAG,IAAI,CAAC,KAAK,CAAC;IACtD,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;IACtB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;IACtB,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;IACvB,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC;CACrB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,gCAAgC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC3D,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;IACnB,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE;IACvB,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;IACrB,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;IACrB,UAAU,EAAE,IAAI,CAAC,MAAM,EAAE;IACzB,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;IACtC,MAAM,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;CACpC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,+BAA+B,GAAG,IAAI,CAAC,MAAM,CAAC;IAC1D,MAAM,EAAE,4BAA4B;IACpC,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE;IACvB,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;IACxB,UAAU,EAAE,IAAI,CAAC,MAAM,EAAE;IACzB,MAAM,EAAE,4BAA4B;IACpC,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACrC,YAAY,EAAE,IAAI,CAAC,MAAM,EAAE;IAC3B,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,CAAC;IAC/C,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;IACtB,UAAU,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACxC,WAAW,EAAE,IAAI,CAAC,KAAK,CAAC,gCAAgC,CAAC;CACzD,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,2BAA2B,GAAG,IAAI,CAAC,MAAM,CAAC;IACtD,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE;IACvB,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,+BAA+B,CAAC;CACvD,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,oCAAoC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC/D,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE;IACvB,KAAK,EAAE,2BAA2B;CAClC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,iCAAiC,GAC7C,+BAA+B,CAAC;AAEjC,MAAM,CAAC,MAAM,mCAAmC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC9D,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE;CACvB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,oCAAoC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC/D,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE;IACvB,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE;CACvB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,2BAA2B,GAAG,IAAI,CAAC,MAAM,CAAC;IACtD,MAAM,EAAE,IAAI,CAAC,OAAO,EAAE;IACtB,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE;IACvB,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACvC,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACvC,YAAY,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IAC1C,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;IACxB,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;IACxB,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;CAClC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,gCAAgC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC3D,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,2BAA2B,EAAE,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC;IAC7D,OAAO,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC;CACjD,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,8BAA8B,GAAG,IAAI,CAAC,MAAM,CAAC;IACzD,MAAM,EAAE,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC;IAC7B,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IAClC,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;CACvC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,6BAA6B,GAAG,IAAI,CAAC,MAAM,CAAC;IACxD,MAAM,EAAE,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;CAC5B,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,+BAA+B,GAAG,IAAI,CAAC,MAAM,CAAC;IAC1D,MAAM,EAAE,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;IAC9B,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;CACtB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,yBAAyB,GAAG,IAAI,CAAC,KAAK,CAAC;IACnD,8BAA8B;IAC9B,6BAA6B;IAC7B,+BAA+B;CAC/B,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,gCAAgC,GAAG,IAAI,CAAC,KAAK,CAAC;IAC1D,IAAI,CAAC,MAAM,CAAC;QACX,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE;QACvB,KAAK,EAAE,2BAA2B;KAClC,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE;KACvB,CAAC;CACF,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,gCAAgC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC3D,oBAAoB,EAAE,IAAI,CAAC,OAAO,EAAE;IACpC,oBAAoB,EAAE,IAAI,CAAC,OAAO,EAAE;CACpC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,sCAAsC,GAAG,IAAI,CAAC,MAAM,CAAC;IACjE,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;IACtB,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE;IACpB,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;IACrB,eAAe,EAAE,IAAI,CAAC,OAAO,EAAE;CAC/B,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,sCAAsC,GAAG,IAAI,CAAC,MAAM,CAAC;IACjE,QAAQ,EAAE,gCAAgC;IAC1C,QAAQ,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,sCAAsC,EAAE,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC;CAC3E,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,oCAAoC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC/D,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;IACxB,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC;QACjB,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;QACvB,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC;QACzB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;QACtB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;QACtB,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;KACvB,CAAC;IACF,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;IACrB,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;IACtB,aAAa,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IAC3C,WAAW,EAAE,IAAI,CAAC,QAAQ,CAAC,uCAAuC,CAAC;CACnE,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,uCAAuC,GAAG,IAAI,CAAC,MAAM,CAAC;IAClE,OAAO,EAAE,IAAI,CAAC,KAAK,CAAC,oCAAoC,CAAC;IACzD,SAAS,EAAE,IAAI,CAAC,OAAO,EAAE;CACzB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,oCAAoC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC/D,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;IACnB,MAAM,EAAE,IAAI,CAAC,OAAO,EAAE;IACtB,UAAU,EAAE,IAAI,CAAC,OAAO,EAAE;CAC1B,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,qCAAqC,GAAG,IAAI,CAAC,MAAM,CAAC;IAChE,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE;CACvB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,sCAAsC,GAAG,IAAI,CAAC,MAAM,CAAC;IACjE,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE;IACvB,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;CACtB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,0BAA0B,GAAG,IAAI,CAAC,KAAK,CAAC;IACpD,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;IACpB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;IACtB,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;CACpB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,qCAAqC,GAAG,IAAI,CAAC,MAAM,CAAC;IAChE,IAAI,EAAE,0BAA0B;IAChC,cAAc,EAAE,IAAI,CAAC,KAAK,CAAC,0BAA0B,CAAC;CACtD,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,oCAAoC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC/D,IAAI,EAAE,0BAA0B;IAChC,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;CACvC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,qCAAqC,GAAG,IAAI,CAAC,MAAM,CAAC;IAChE,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE;IACvB,IAAI,EAAE,0BAA0B;IAChC,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;CACtB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,4BAA4B,GAAG,IAAI,CAAC,KAAK,CAAC;IACtD,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;IACpB,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC;CACzB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,qCAAqC,GAAG,IAAI,CAAC,MAAM,CAAC;IAChE,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;IACxB,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;IACrB,MAAM,EAAE,IAAI,CAAC,OAAO,EAAE;IACtB,KAAK,EAAE,4BAA4B;CACnC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,gCAAgC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC3D,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE;IACjB,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;CACtB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,mCAAmC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC9D,UAAU,EAAE,IAAI,CAAC,KAAK,CAAC,gCAAgC,CAAC;CACxD,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,oCAAoC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC/D,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;IAClE,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,4BAA4B,CAAC;CAClD,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,qCAAqC,GAAG,IAAI,CAAC,MAAM,CAAC;IAChE,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE;IACvB,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;IACtB,SAAS,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC;IACnD,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACrC,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,4BAA4B,CAAC;CAClD,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,wBAAwB,GAAG,IAAI,CAAC,KAAK,CAAC;IAClD,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;IACtB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;IACtB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;CACtB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,wBAAwB,GAAG,IAAI,CAAC,MAAM,CAAC;IACnD,EAAE,EAAE,IAAI,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,wBAAwB;IAC9B,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;IACnB,MAAM,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC;IAChD,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC;IAC/C,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE;IACvB,UAAU,EAAE,IAAI,CAAC,MAAM,EAAE;IACzB,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;IACxB,YAAY,EAAE,IAAI,CAAC,OAAO,EAAE;IAC5B,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;CACvC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,+BAA+B,GAAG,IAAI,CAAC,KAAK,CAAC;IACzD,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;IACvB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;IACtB,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC;CACxB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,yBAAyB,GAAG,IAAI,CAAC,MAAM,CAAC;IACpD,OAAO,EAAE,IAAI,CAAC,KAAK,CAAC,wBAAwB,CAAC;IAC7C,QAAQ,EAAE,IAAI,CAAC,KAAK,CACnB,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;QACnB,MAAM,EAAE,+BAA+B;KACvC,CAAC,CACF;IACD,SAAS,EAAE,IAAI,CAAC,KAAK,CACpB,IAAI,CAAC,MAAM,CAAC;QACX,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;QACnB,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;KACrB,CAAC,CACF;CACD,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,4BAA4B,GAAG,IAAI,CAAC,MAAM,CAAC;IACvD,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;IACnB,WAAW,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACzC,WAAW,EAAE,IAAI,CAAC,MAAM,EAAE;IAC1B,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;CACxB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,gCAAgC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC3D,YAAY,EAAE,IAAI,CAAC,MAAM,EAAE;IAC3B,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE;IACvB,WAAW,EAAE,IAAI,CAAC,KAAK,CAAC,4BAA4B,CAAC;CACrD,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,8BAA8B,GAAG,IAAI,CAAC,MAAM,CAAC;IACzD,WAAW,EAAE,IAAI,CAAC,MAAM,EAAE;IAC1B,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;IACxB,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;CACxB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,iCAAiC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC5D,OAAO,EAAE,IAAI,CAAC,KAAK,CAAC,8BAA8B,CAAC;CACnD,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,yBAAyB,GAAG,IAAI,CAAC,MAAM,CAAC;IACpD,MAAM,EAAE,IAAI,CAAC,QAAQ,CACpB,IAAI,CAAC,KAAK,CAAC;QACV,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;QACpB,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC;QAC1B,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;KACvB,CAAC,CACF;IACD,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACnC,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;IACtC,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;IACpC,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IAClC,WAAW,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;CACzC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,gCAAgC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC3D,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;IACtB,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IACvC,WAAW,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;CACzC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,iCAAiC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC5D,OAAO,EAAE,IAAI,CAAC,KAAK,CAAC;QACnB,yBAAyB;QACzB,gCAAgC;KAChC,CAAC;CACF,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,wCAAwC,GAAG,IAAI,CAAC,MAAM,CAAC;IACnE,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE;IACvB,UAAU,EAAE,IAAI,CAAC,MAAM,CAAC;QACvB,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;QACnB,WAAW,EAAE,IAAI,CAAC,MAAM,EAAE;QAC1B,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;KACxB,CAAC;CACF,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,wCAAwC,GAAG,IAAI,CAAC,MAAM,CAAC;IACnE,WAAW,EAAE,IAAI,CAAC,KAAK,CAAC,4BAA4B,CAAC;CACrD,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,mCAAmC,GAAG,IAAI,CAAC,KAAK,CAAC;IAC7D,IAAI,CAAC,MAAM,CAAC;QACX,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE;QACvB,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;QACrB,MAAM,EAAE,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;KACjC,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE;QACvB,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;QACtB,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,CAAC;KAC/C,CAAC;IACF,IAAI,CAAC,MAAM,CAAC;QACX,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;KACtB,CAAC;IACF,iCAAiC;IACjC,wCAAwC;IACxC,wCAAwC;CACxC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,mCAAmC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC9D,GAAG,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,EAAE,IAAI,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;IAC1E,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;IACnB,UAAU,EAAE,IAAI,CAAC,OAAO,EAAE;IAC1B,SAAS,EAAE,IAAI,CAAC,OAAO,EAAE;CACzB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,oCAAoC,GAAG,IAAI,CAAC,MAAM,CAAC;IAC/D,UAAU,EAAE,IAAI,CAAC,OAAO,EAAE;IAC1B,SAAS,EAAE,IAAI,CAAC,OAAO,EAAE;IACzB,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;IACxB,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,mCAAmC,CAAC;CACtD,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,4BAA4B,GAAG,IAAI,CAAC,MAAM,CAAC;IACvD,GAAG,EAAE,IAAI,CAAC,MAAM,EAAE;IAClB,GAAG,EAAE,IAAI,CAAC,KAAK,CAAC;QACf,IAAI,CAAC,MAAM,CAAC;YACX,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;YACrB,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC;gBACnB,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE;gBACvB,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE;gBACpB,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;gBACtB,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;gBACxB,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE;aACpB,CAAC;SACF,CAAC;QACF,IAAI,CAAC,IAAI,EAAE;KACX,CAAC;IACF,OAAO,EAAE,IAAI,CAAC,MAAM,CAAC;QACpB,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE;QACvB,QAAQ,EAAE,IAAI,CAAC,OAAO,EAAE;KACxB,CAAC;IACF,UAAU,EAAE,IAAI,CAAC,QAAQ,CAAC,oCAAoC,CAAC;IAC/D,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC;QACnB,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;QACrB,OAAO,EAAE,IAAI,CAAC,MAAM,EAAE;QACtB,wBAAwB,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;KACtD,CAAC;IACF,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC;QACrB,UAAU,EAAE,IAAI,CAAC,OAAO,EAAE;QAC1B,SAAS,EAAE,IAAI,CAAC,OAAO,EAAE;KACzB,CAAC;IACF,eAAe,EAAE,IAAI,CAAC,KAAK,CAAC;QAC3B,kCAAkC;QAClC,IAAI,CAAC,IAAI,EAAE;KACX,CAAC;IACF,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC;QAClB,aAAa,EAAE,IAAI,CAAC,MAAM,EAAE;QAC5B,WAAW,EAAE,IAAI,CAAC,MAAM,CAAC;YACxB,GAAG,EAAE,IAAI,CAAC,MAAM,EAAE;YAClB,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;YACrB,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;SACrB,CAAC;KACF,CAAC;IACF,WAAW,EAAE,IAAI,CAAC,MAAM,EAAE;IAC1B,aAAa,EAAE,IAAI,CAAC,MAAM,EAAE;CAC5B,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,8BAA8B,GAAG,IAAI,CAAC,MAAM,CAAC;IACzD,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE;IACpB,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;IACrB,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;IACxB,UAAU,EAAE,IAAI,CAAC,MAAM,EAAE;IACzB,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE;CACpB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,4BAA4B,GAAG,IAAI,CAAC,MAAM,CAAC;IACvD,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;IACnB,QAAQ,EAAE,IAAI,CAAC,MAAM,EAAE;IACvB,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;IACrB,cAAc,EAAE,8BAA8B;IAC9C,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE;IACpB,YAAY,EAAE,IAAI,CAAC,MAAM,EAAE;CAC3B,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,0BAA0B,GAAG,IAAI,CAAC,MAAM,CAAC;IACrD,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;IACxB,aAAa,EAAE,IAAI,CAAC,MAAM,EAAE;IAC5B,WAAW,EAAE,IAAI,CAAC,MAAM,EAAE;IAC1B,cAAc,EAAE,8BAA8B;IAC9C,mBAAmB,EAAE,8BAA8B;IACnD,oBAAoB,EAAE,8BAA8B;IACpD,iBAAiB,EAAE,IAAI,CAAC,MAAM,EAAE;IAChC,UAAU,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,4BAA4B,CAAC;IACpE,OAAO,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,4BAA4B,CAAC;CACjE,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,2BAA2B,GAAG,IAAI,CAAC,MAAM,CAAC;IACtD,OAAO,EAAE,0BAA0B;IACnC,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE;CACvB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,2BAA2B,GAAG,IAAI,CAAC,KAAK,CAAC;IACrD,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC;IACrB,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;IACvB,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;CACpB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,2BAA2B,GAAG,IAAI,CAAC,KAAK,CAAC;IACrD,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC;IAC1B,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC;IAC1B,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;IACvB,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;IACvB,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC;IAC1B,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC;IACpB,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC;IACvB,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC;IACtB,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC;IACnB,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC;CACxB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,0BAA0B,GAAG,IAAI,CAAC,MAAM,CAAC;IACrD,IAAI,EAAE,IAAI,CAAC,MAAM,EAAE;IACnB,QAAQ,EAAE,2BAA2B;IACrC,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,2BAA2B,CAAC;IACpD,SAAS,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC;IACxC,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,CAAC;CAClE,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,2BAA2B,GAAG,IAAI,CAAC,MAAM,CAAC;IACtD,KAAK,EAAE,IAAI,CAAC,MAAM,EAAE;IACpB,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IAClC,OAAO,EAAE,IAAI,CAAC,QAAQ,CACrB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,CAAC,CACtD;IACD,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,0BAA0B,CAAC;CAClD,CAAC,CAAC","sourcesContent":["import { Type } from \"@sinclair/typebox\";\n\nexport const ComposerRoleSchema = Type.Union([\n\tType.Literal(\"user\"),\n\tType.Literal(\"assistant\"),\n\tType.Literal(\"system\"),\n\tType.Literal(\"tool\"),\n]);\n\nexport const ComposerTextContentSchema = Type.Object({\n\ttype: Type.Literal(\"text\"),\n\ttext: Type.String(),\n\ttextSignature: Type.Optional(Type.String()),\n});\n\nexport const ComposerImageContentSchema = Type.Object({\n\ttype: Type.Literal(\"image\"),\n\tdata: Type.String(),\n\tmimeType: Type.String(),\n});\n\nexport const ComposerThinkingContentSchema = Type.Object({\n\ttype: Type.Literal(\"thinking\"),\n\tthinking: Type.String(),\n\tthinkingSignature: Type.Optional(Type.String()),\n});\n\nexport const ComposerToolCallContentSchema = Type.Object({\n\ttype: Type.Literal(\"toolCall\"),\n\tid: Type.String(),\n\tname: Type.String(),\n\targuments: Type.Record(Type.String(), Type.Unknown()),\n\tthoughtSignature: Type.Optional(Type.String()),\n});\n\nexport const ComposerContentBlockSchema = Type.Union([\n\tComposerTextContentSchema,\n\tComposerImageContentSchema,\n\tComposerThinkingContentSchema,\n\tComposerToolCallContentSchema,\n]);\n\nexport const ComposerThinkingLevelSchema = Type.Union([\n\tType.Literal(\"off\"),\n\tType.Literal(\"minimal\"),\n\tType.Literal(\"low\"),\n\tType.Literal(\"medium\"),\n\tType.Literal(\"high\"),\n]);\n\nexport const ComposerToolCallSchema = Type.Object({\n\tname: Type.String(),\n\tstatus: Type.Union([\n\t\tType.Literal(\"pending\"),\n\t\tType.Literal(\"running\"),\n\t\tType.Literal(\"completed\"),\n\t\tType.Literal(\"error\"),\n\t]),\n\targs: Type.Optional(Type.Record(Type.String(), Type.Unknown())),\n\tresult: Type.Optional(Type.Unknown()),\n\ttoolCallId: Type.Optional(Type.String()),\n});\n\nexport const ComposerAttachmentSchema = Type.Object({\n\tid: Type.String(),\n\ttype: Type.Union([Type.Literal(\"image\"), Type.Literal(\"document\")]),\n\tfileName: Type.String(),\n\tmimeType: Type.String(),\n\tsize: Type.Number(),\n\tcontent: Type.Optional(Type.String()),\n\tcontentOmitted: Type.Optional(Type.Boolean()),\n\textractedText: Type.Optional(Type.String()),\n\tpreview: Type.Optional(Type.String()),\n});\n\nexport const ComposerUsageCostSchema = Type.Object({\n\tinput: Type.Number(),\n\toutput: Type.Number(),\n\tcacheRead: Type.Optional(Type.Number()),\n\tcacheWrite: Type.Optional(Type.Number()),\n\ttotal: Type.Optional(Type.Number()),\n});\n\nexport const ComposerUsageSchema = Type.Object({\n\tinput: Type.Number(),\n\toutput: Type.Number(),\n\tcacheRead: Type.Optional(Type.Number()),\n\tcacheWrite: Type.Optional(Type.Number()),\n\tcost: Type.Optional(ComposerUsageCostSchema),\n});\n\nexport const ComposerMessageSchema = Type.Object({\n\trole: ComposerRoleSchema,\n\tcontent: Type.Union([Type.String(), Type.Array(ComposerContentBlockSchema)]),\n\tattachments: Type.Optional(Type.Array(ComposerAttachmentSchema)),\n\ttimestamp: Type.Optional(Type.String()),\n\tthinking: Type.Optional(Type.String()),\n\ttools: Type.Optional(Type.Array(ComposerToolCallSchema)),\n\ttoolName: Type.Optional(Type.String()),\n\tisError: Type.Optional(Type.Boolean()),\n\tusage: Type.Optional(ComposerUsageSchema),\n\tprovider: Type.Optional(Type.String()),\n\tapi: Type.Optional(Type.String()),\n\tmodel: Type.Optional(Type.String()),\n});\n\nexport const ComposerChatRequestSchema = Type.Object({\n\tmodel: Type.Optional(Type.String()),\n\tmessages: Type.Array(ComposerMessageSchema),\n\tthinkingLevel: Type.Optional(ComposerThinkingLevelSchema),\n\tsessionId: Type.Optional(Type.String()),\n\tstream: Type.Optional(Type.Boolean()),\n});\n\nexport const ComposerPromptSuggestionRequestSchema = Type.Object({\n\tmodel: Type.Optional(Type.String()),\n\tmessages: Type.Array(ComposerMessageSchema),\n\tsessionId: Type.Optional(Type.String()),\n});\n\nexport const ComposerPromptSuggestionResponseSchema = Type.Object({\n\tsuggestion: Type.Union([Type.String(), Type.Null()]),\n\tsuppressedReason: Type.Optional(Type.String()),\n\tmodel: Type.Optional(Type.String()),\n});\n\nexport const ComposerModelSetSchema = Type.Object({\n\tmodel: Type.String({ minLength: 1 }),\n});\n\nexport const ComposerModelCapabilitiesSchema = Type.Object({\n\tstreaming: Type.Optional(Type.Boolean()),\n\ttools: Type.Optional(Type.Boolean()),\n\tvision: Type.Optional(Type.Boolean()),\n\treasoning: Type.Optional(Type.Boolean()),\n});\n\nexport const ComposerModelSchema = Type.Object({\n\tid: Type.String(),\n\tprovider: Type.String(),\n\tname: Type.String(),\n\tapi: Type.Optional(Type.String()),\n\tcontextWindow: Type.Optional(Type.Number()),\n\tmaxOutputTokens: Type.Optional(Type.Number()),\n\tmaxTokens: Type.Optional(Type.Number()),\n\treasoning: Type.Optional(Type.Boolean()),\n\tcost: Type.Optional(ComposerUsageCostSchema),\n\tcapabilities: Type.Optional(ComposerModelCapabilitiesSchema),\n});\n\nexport const ComposerModelListResponseSchema = Type.Object({\n\tmodels: Type.Array(ComposerModelSchema),\n});\n\nexport const ComposerCommandArgSchema = Type.Object({\n\tname: Type.String(),\n\trequired: Type.Optional(Type.Boolean()),\n});\n\nexport const ComposerCommandSchema = Type.Object({\n\tname: Type.String(),\n\tdescription: Type.Optional(Type.String()),\n\tprompt: Type.String(),\n\targs: Type.Optional(Type.Array(ComposerCommandArgSchema)),\n});\n\nexport const ComposerCommandListResponseSchema = Type.Object({\n\tcommands: Type.Array(ComposerCommandSchema),\n});\n\nexport const ComposerCommandPrefsSchema = Type.Object({\n\tfavorites: Type.Array(Type.String()),\n\trecents: Type.Array(Type.String()),\n});\n\nexport const ComposerCommandPrefsUpdateSchema = Type.Object({\n\tfavorites: Type.Optional(Type.Array(Type.String())),\n\trecents: Type.Optional(Type.Array(Type.String())),\n});\n\nexport const ComposerCommandPrefsWriteResponseSchema = Type.Object({\n\tok: Type.Boolean(),\n});\n\nexport const ComposerConfigWriteRequestSchema = Type.Object({\n\tconfig: Type.Record(Type.String(), Type.Unknown()),\n});\n\nexport const ComposerConfigResponseSchema = Type.Object({\n\tconfig: Type.Record(Type.String(), Type.Unknown()),\n\tconfigPath: Type.String(),\n});\n\nexport const ComposerConfigWriteResponseSchema = Type.Object({\n\tsuccess: Type.Boolean(),\n});\n\nexport const ComposerFilesResponseSchema = Type.Object({\n\tfiles: Type.Array(Type.String()),\n});\n\nexport const ComposerSessionSummarySchema = Type.Object({\n\tid: Type.String(),\n\ttitle: Type.Optional(Type.String()),\n\tresumeSummary: Type.Optional(Type.String()),\n\tcreatedAt: Type.String(),\n\tupdatedAt: Type.String(),\n\tmessageCount: Type.Number(),\n\tfavorite: Type.Optional(Type.Boolean()),\n\ttags: Type.Optional(Type.Array(Type.String())),\n});\n\nexport const ComposerAssistantMessageEventSchema = Type.Union([\n\tType.Object({\n\t\ttype: Type.Literal(\"start\"),\n\t\tpartial: ComposerMessageSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"text_start\"),\n\t\tcontentIndex: Type.Number(),\n\t\tpartial: ComposerMessageSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"text_delta\"),\n\t\tcontentIndex: Type.Number(),\n\t\tdelta: Type.String(),\n\t\tpartial: Type.Optional(ComposerMessageSchema),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"text_end\"),\n\t\tcontentIndex: Type.Number(),\n\t\tcontent: Type.String(),\n\t\tpartial: ComposerMessageSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"thinking_start\"),\n\t\tcontentIndex: Type.Number(),\n\t\tpartial: ComposerMessageSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"thinking_delta\"),\n\t\tcontentIndex: Type.Number(),\n\t\tdelta: Type.String(),\n\t\tpartial: Type.Optional(ComposerMessageSchema),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"thinking_end\"),\n\t\tcontentIndex: Type.Number(),\n\t\tcontent: Type.String(),\n\t\tpartial: ComposerMessageSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"toolcall_start\"),\n\t\tcontentIndex: Type.Number(),\n\t\tpartial: Type.Optional(ComposerMessageSchema),\n\t\ttoolCallId: Type.Optional(Type.String()),\n\t\ttoolCallName: Type.Optional(Type.String()),\n\t\ttoolCallArgs: Type.Optional(Type.Record(Type.String(), Type.Unknown())),\n\t\ttoolCallArgsTruncated: Type.Optional(Type.Boolean()),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"toolcall_delta\"),\n\t\tcontentIndex: Type.Number(),\n\t\tdelta: Type.String(),\n\t\tpartial: Type.Optional(ComposerMessageSchema),\n\t\ttoolCallId: Type.Optional(Type.String()),\n\t\ttoolCallName: Type.Optional(Type.String()),\n\t\ttoolCallArgs: Type.Optional(Type.Record(Type.String(), Type.Unknown())),\n\t\ttoolCallArgsTruncated: Type.Optional(Type.Boolean()),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"toolcall_end\"),\n\t\tcontentIndex: Type.Number(),\n\t\ttoolCall: ComposerToolCallContentSchema,\n\t\tpartial: Type.Optional(ComposerMessageSchema),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"done\"),\n\t\treason: Type.Union([\n\t\t\tType.Literal(\"stop\"),\n\t\t\tType.Literal(\"length\"),\n\t\t\tType.Literal(\"toolUse\"),\n\t\t]),\n\t\tmessage: ComposerMessageSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"error\"),\n\t\treason: Type.Union([Type.Literal(\"aborted\"), Type.Literal(\"error\")]),\n\t\terror: ComposerMessageSchema,\n\t}),\n]);\n\nexport const ComposerPendingRequestPlatformRefSchema = Type.Object({\n\tsource: Type.Union([\n\t\tType.Literal(\"approvals_service\"),\n\t\tType.Literal(\"tool_execution\"),\n\t]),\n\ttoolExecutionId: Type.Optional(Type.String()),\n\tapprovalRequestId: Type.Optional(Type.String()),\n});\n\nexport const ComposerActionApprovalRequestSchema = Type.Object({\n\tid: Type.String(),\n\ttoolName: Type.String(),\n\tdisplayName: Type.Optional(Type.String()),\n\tsummaryLabel: Type.Optional(Type.String()),\n\tactionDescription: Type.Optional(Type.String()),\n\targs: Type.Unknown(),\n\treason: Type.String(),\n\tstartedAtMs: Type.Optional(Type.Number()),\n\tplatform: Type.Optional(ComposerPendingRequestPlatformRefSchema),\n});\n\nexport const ComposerActionApprovalDecisionSchema = Type.Object({\n\tapproved: Type.Boolean(),\n\treason: Type.Optional(Type.String()),\n\tresolvedBy: Type.Union([Type.Literal(\"policy\"), Type.Literal(\"user\")]),\n\tresolvedAtMs: Type.Optional(Type.Number()),\n});\n\nexport const ComposerPendingClientToolRequestSchema = Type.Object({\n\ttoolCallId: Type.String(),\n\ttoolName: Type.String(),\n\targs: Type.Unknown(),\n\tkind: Type.Optional(\n\t\tType.Union([\n\t\t\tType.Literal(\"client_tool\"),\n\t\t\tType.Literal(\"mcp_elicitation\"),\n\t\t\tType.Literal(\"user_input\"),\n\t\t]),\n\t),\n\treason: Type.Optional(Type.String()),\n});\n\nexport const ComposerPendingRequestSchema = Type.Object({\n\tid: Type.String(),\n\tkind: Type.Union([\n\t\tType.Literal(\"approval\"),\n\t\tType.Literal(\"client_tool\"),\n\t\tType.Literal(\"mcp_elicitation\"),\n\t\tType.Literal(\"user_input\"),\n\t\tType.Literal(\"tool_retry\"),\n\t]),\n\tstatus: Type.Literal(\"pending\"),\n\tvisibility: Type.Literal(\"user\"),\n\tsessionId: Type.Optional(Type.String()),\n\ttoolCallId: Type.String(),\n\ttoolName: Type.String(),\n\tdisplayName: Type.Optional(Type.String()),\n\tsummaryLabel: Type.Optional(Type.String()),\n\tactionDescription: Type.Optional(Type.String()),\n\targs: Type.Unknown(),\n\treason: Type.String(),\n\tcreatedAt: Type.String(),\n\texpiresAt: Type.Optional(Type.String()),\n\tsource: Type.Union([Type.Literal(\"local\"), Type.Literal(\"platform\")]),\n\tplatform: Type.Optional(ComposerPendingRequestPlatformRefSchema),\n});\n\nexport const ComposerPendingRequestResolutionSchema = Type.Union([\n\tType.Literal(\"approved\"),\n\tType.Literal(\"denied\"),\n\tType.Literal(\"completed\"),\n\tType.Literal(\"failed\"),\n\tType.Literal(\"answered\"),\n\tType.Literal(\"retried\"),\n\tType.Literal(\"skipped\"),\n\tType.Literal(\"aborted\"),\n\tType.Literal(\"cancelled\"),\n]);\n\nexport const ComposerPendingRequestPlatformOperationSchema = Type.Union([\n\tType.Literal(\"ResolveApproval\"),\n\tType.Literal(\"ResumeToolExecution\"),\n\tType.Literal(\"ResumeRun\"),\n]);\n\nexport const ComposerClientToolResultContentSchema = Type.Union([\n\tComposerTextContentSchema,\n\tComposerImageContentSchema,\n]);\n\nexport const ComposerPendingRequestResumeRequestSchema = Type.Object({\n\tkind: Type.Optional(\n\t\tType.Union([\n\t\t\tType.Literal(\"approval\"),\n\t\t\tType.Literal(\"client_tool\"),\n\t\t\tType.Literal(\"mcp_elicitation\"),\n\t\t\tType.Literal(\"user_input\"),\n\t\t\tType.Literal(\"tool_retry\"),\n\t\t]),\n\t),\n\tsessionId: Type.Optional(Type.String()),\n\tdecision: Type.Optional(\n\t\tType.Union([Type.Literal(\"approved\"), Type.Literal(\"denied\")]),\n\t),\n\taction: Type.Optional(\n\t\tType.Union([\n\t\t\tType.Literal(\"retry\"),\n\t\t\tType.Literal(\"skip\"),\n\t\t\tType.Literal(\"abort\"),\n\t\t]),\n\t),\n\tcontent: Type.Optional(Type.Array(ComposerClientToolResultContentSchema)),\n\tisError: Type.Optional(Type.Boolean()),\n\treason: Type.Optional(Type.String()),\n});\n\nexport const ComposerPendingRequestResumeResponseSchema = Type.Object({\n\tsuccess: Type.Literal(true),\n\trequest: Type.Object({\n\t\tid: Type.String(),\n\t\tkind: Type.Union([\n\t\t\tType.Literal(\"approval\"),\n\t\t\tType.Literal(\"client_tool\"),\n\t\t\tType.Literal(\"mcp_elicitation\"),\n\t\t\tType.Literal(\"user_input\"),\n\t\t\tType.Literal(\"tool_retry\"),\n\t\t]),\n\t\tsessionId: Type.Optional(Type.String()),\n\t\tresolution: ComposerPendingRequestResolutionSchema,\n\t\tsource: Type.Union([Type.Literal(\"local\"), Type.Literal(\"platform\")]),\n\t\tplatform: Type.Optional(ComposerPendingRequestPlatformRefSchema),\n\t\tplatformOperation: Type.Optional(\n\t\t\tComposerPendingRequestPlatformOperationSchema,\n\t\t),\n\t}),\n});\n\nexport const ComposerRunTimelineVisibilitySchema = Type.Union([\n\tType.Literal(\"user\"),\n\tType.Literal(\"admin\"),\n\tType.Literal(\"audit\"),\n]);\n\nexport const ComposerRunTimelineSourceSchema = Type.Union([\n\tType.Literal(\"local\"),\n\tType.Literal(\"platform\"),\n]);\n\nexport const ComposerRunTimelineEventTypeSchema = Type.Union([\n\tType.Literal(\"session.started\"),\n\tType.Literal(\"session.updated\"),\n\tType.Literal(\"message.user\"),\n\tType.Literal(\"message.assistant\"),\n\tType.Literal(\"tool.requested\"),\n\tType.Literal(\"tool.completed\"),\n\tType.Literal(\"tool.failed\"),\n\tType.Literal(\"file.changed\"),\n\tType.Literal(\"diagnostic.delta\"),\n\tType.Literal(\"artifact.linked\"),\n\tType.Literal(\"policy.decision\"),\n\tType.Literal(\"wait.pending\"),\n\tType.Literal(\"agent.run.started\"),\n\tType.Literal(\"agent.run.completed\"),\n\tType.Literal(\"agent.run.failed\"),\n\tType.Literal(\"compaction.created\"),\n\tType.Literal(\"branch.created\"),\n\tType.Literal(\"model.changed\"),\n\tType.Literal(\"thinking.changed\"),\n\tType.Literal(\"runtime.recovery\"),\n\tType.Literal(\"runtime.finished\"),\n\tType.Literal(\"custom.event\"),\n]);\n\nexport const ComposerRunTimelineStatusSchema = Type.Union([\n\tType.Literal(\"pending\"),\n\tType.Literal(\"running\"),\n\tType.Literal(\"completed\"),\n\tType.Literal(\"failed\"),\n\tType.Literal(\"approved\"),\n\tType.Literal(\"denied\"),\n\tType.Literal(\"info\"),\n]);\n\nexport const ComposerRunTimelineItemSchema = Type.Object({\n\tid: Type.String(),\n\tsessionId: Type.String(),\n\ttimestamp: Type.String(),\n\ttype: ComposerRunTimelineEventTypeSchema,\n\ttitle: Type.String(),\n\tvisibility: ComposerRunTimelineVisibilitySchema,\n\tsource: ComposerRunTimelineSourceSchema,\n\tstatus: Type.Optional(ComposerRunTimelineStatusSchema),\n\tsummary: Type.Optional(Type.String()),\n\trole: Type.Optional(ComposerRoleSchema),\n\ttoolCallId: Type.Optional(Type.String()),\n\ttoolName: Type.Optional(Type.String()),\n\tpendingRequestId: Type.Optional(Type.String()),\n\tpendingRequestKind: Type.Optional(\n\t\tType.Union([\n\t\t\tType.Literal(\"approval\"),\n\t\t\tType.Literal(\"client_tool\"),\n\t\t\tType.Literal(\"mcp_elicitation\"),\n\t\t\tType.Literal(\"user_input\"),\n\t\t\tType.Literal(\"tool_retry\"),\n\t\t]),\n\t),\n\tapprovalRequestId: Type.Optional(Type.String()),\n\ttoolExecutionId: Type.Optional(Type.String()),\n\tartifactId: Type.Optional(Type.String()),\n\tagentRunId: Type.Optional(Type.String()),\n\tparentAgentRunId: Type.Optional(Type.String()),\n\tchildAgentRunId: Type.Optional(Type.String()),\n\tremoteRunnerSessionId: Type.Optional(Type.String()),\n\tplatform: Type.Optional(ComposerPendingRequestPlatformRefSchema),\n\tplatformOperation: Type.Optional(\n\t\tComposerPendingRequestPlatformOperationSchema,\n\t),\n\tmetadata: Type.Optional(Type.Record(Type.String(), Type.Unknown())),\n});\n\nexport const ComposerRunTimelineResponseSchema = Type.Object({\n\tsessionId: Type.String(),\n\tsource: ComposerRunTimelineSourceSchema,\n\tgeneratedAt: Type.String(),\n\tplatformBacked: Type.Boolean(),\n\tpendingRequestCount: Type.Number(),\n\titems: Type.Array(ComposerRunTimelineItemSchema),\n});\n\nexport const ComposerToolRetryRequestSchema = Type.Object({\n\tid: Type.String(),\n\ttoolCallId: Type.String(),\n\ttoolName: Type.String(),\n\targs: Type.Unknown(),\n\terrorMessage: Type.String(),\n\tattempt: Type.Number(),\n\tmaxAttempts: Type.Optional(Type.Number()),\n\tsummary: Type.Optional(Type.String()),\n});\n\nexport const ComposerToolRetryDecisionSchema = Type.Object({\n\taction: Type.Union([\n\t\tType.Literal(\"retry\"),\n\t\tType.Literal(\"skip\"),\n\t\tType.Literal(\"abort\"),\n\t]),\n\treason: Type.Optional(Type.String()),\n\tresolvedBy: Type.Union([\n\t\tType.Literal(\"policy\"),\n\t\tType.Literal(\"user\"),\n\t\tType.Literal(\"runtime\"),\n\t]),\n});\n\nexport const ComposerSessionMessagesViewSchema = Type.Union([\n\tType.Literal(\"full\"),\n\tType.Literal(\"summary\"),\n\tType.Literal(\"notLoaded\"),\n]);\n\nexport const ComposerSessionSchema = Type.Object({\n\tid: Type.String(),\n\ttitle: Type.Optional(Type.String()),\n\tresumeSummary: Type.Optional(Type.String()),\n\tcreatedAt: Type.String(),\n\tupdatedAt: Type.String(),\n\tmessageCount: Type.Number(),\n\tfavorite: Type.Optional(Type.Boolean()),\n\ttags: Type.Optional(Type.Array(Type.String())),\n\tmessagesView: Type.Optional(ComposerSessionMessagesViewSchema),\n\tmessages: Type.Array(ComposerMessageSchema),\n\tpendingApprovalRequests: Type.Optional(\n\t\tType.Array(ComposerActionApprovalRequestSchema),\n\t),\n\tpendingClientToolRequests: Type.Optional(\n\t\tType.Array(ComposerPendingClientToolRequestSchema),\n\t),\n\tpendingToolRetryRequests: Type.Optional(\n\t\tType.Array(ComposerToolRetryRequestSchema),\n\t),\n\tpendingRequests: Type.Optional(Type.Array(ComposerPendingRequestSchema)),\n});\n\nexport const ComposerAgentEventSchema = Type.Union([\n\tType.Object({ type: Type.Literal(\"agent_start\") }),\n\tType.Object({\n\t\ttype: Type.Literal(\"agent_end\"),\n\t\tmessages: Type.Array(ComposerMessageSchema),\n\t\taborted: Type.Optional(Type.Boolean()),\n\t\tpartialAccepted: Type.Optional(ComposerMessageSchema),\n\t\tstopReason: Type.Optional(\n\t\t\tType.Union([\n\t\t\t\tType.Literal(\"stop\"),\n\t\t\t\tType.Literal(\"length\"),\n\t\t\t\tType.Literal(\"toolUse\"),\n\t\t\t\tType.Literal(\"error\"),\n\t\t\t\tType.Literal(\"aborted\"),\n\t\t\t]),\n\t\t),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"status\"),\n\t\tstatus: Type.String(),\n\t\tdetails: Type.Record(Type.String(), Type.Unknown()),\n\t}),\n\tType.Object({ type: Type.Literal(\"error\"), message: Type.String() }),\n\tType.Object({ type: Type.Literal(\"turn_start\") }),\n\tType.Object({\n\t\ttype: Type.Literal(\"turn_end\"),\n\t\tmessage: ComposerMessageSchema,\n\t\ttoolResults: Type.Array(ComposerMessageSchema),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"message_start\"),\n\t\tmessage: ComposerMessageSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"message_update\"),\n\t\tmessage: Type.Optional(ComposerMessageSchema),\n\t\tassistantMessageEvent: ComposerAssistantMessageEventSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"message_end\"),\n\t\tmessage: ComposerMessageSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"tool_execution_start\"),\n\t\ttoolCallId: Type.String(),\n\t\ttoolName: Type.String(),\n\t\tdisplayName: Type.Optional(Type.String()),\n\t\tsummaryLabel: Type.Optional(Type.String()),\n\t\targs: Type.Record(Type.String(), Type.Unknown()),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"tool_execution_update\"),\n\t\ttoolCallId: Type.String(),\n\t\ttoolName: Type.String(),\n\t\tdisplayName: Type.Optional(Type.String()),\n\t\tsummaryLabel: Type.Optional(Type.String()),\n\t\targs: Type.Record(Type.String(), Type.Unknown()),\n\t\tpartialResult: Type.Unknown(),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"tool_execution_end\"),\n\t\ttoolCallId: Type.String(),\n\t\ttoolName: Type.String(),\n\t\tdisplayName: Type.Optional(Type.String()),\n\t\tsummaryLabel: Type.Optional(Type.String()),\n\t\tresult: Type.Unknown(),\n\t\tisError: Type.Boolean(),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"tool_batch_summary\"),\n\t\tsummary: Type.String(),\n\t\tsummaryLabels: Type.Array(Type.String()),\n\t\ttoolCallIds: Type.Array(Type.String()),\n\t\ttoolNames: Type.Array(Type.String()),\n\t\tcallsSucceeded: Type.Number(),\n\t\tcallsFailed: Type.Number(),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"action_approval_required\"),\n\t\trequest: ComposerActionApprovalRequestSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"action_approval_resolved\"),\n\t\trequest: ComposerActionApprovalRequestSchema,\n\t\tdecision: ComposerActionApprovalDecisionSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"client_tool_request\"),\n\t\ttoolCallId: Type.String(),\n\t\ttoolName: Type.String(),\n\t\targs: Type.Unknown(),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"tool_retry_required\"),\n\t\trequest: ComposerToolRetryRequestSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"tool_retry_resolved\"),\n\t\trequest: ComposerToolRetryRequestSchema,\n\t\tdecision: ComposerToolRetryDecisionSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"compaction\"),\n\t\tsummary: Type.String(),\n\t\tfirstKeptEntryIndex: Type.Number(),\n\t\ttokensBefore: Type.Number(),\n\t\tauto: Type.Optional(Type.Boolean()),\n\t\tcustomInstructions: Type.Optional(Type.String()),\n\t\ttimestamp: Type.String(),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"auto_retry_start\"),\n\t\tattempt: Type.Number(),\n\t\tmaxAttempts: Type.Number(),\n\t\tdelayMs: Type.Number(),\n\t\terrorMessage: Type.String(),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"auto_retry_end\"),\n\t\tsuccess: Type.Boolean(),\n\t\tattempt: Type.Number(),\n\t\tfinalError: Type.Optional(Type.String()),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"session_update\"),\n\t\tsessionId: Type.String(),\n\t}),\n\tType.Object({ type: Type.Literal(\"heartbeat\") }),\n\tType.Object({ type: Type.Literal(\"aborted\") }),\n\tType.Object({ type: Type.Literal(\"done\") }),\n]);\n\nexport const ComposerSessionListResponseSchema = Type.Object({\n\tsessions: Type.Array(ComposerSessionSummarySchema),\n});\n\nexport const ComposerSessionUpdateEventSchema = Type.Object({\n\ttype: Type.Literal(\"session_update\"),\n\tsessionId: Type.String(),\n});\n\nexport const ComposerBackgroundTaskLimitBreachSchema = Type.Object({\n\tkind: Type.Union([Type.Literal(\"memory\"), Type.Literal(\"cpu\")]),\n\tlimit: Type.Number(),\n\tactual: Type.Number(),\n});\n\nexport const ComposerBackgroundTaskHistoryEntrySchema = Type.Object({\n\tevent: Type.Union([\n\t\tType.Literal(\"started\"),\n\t\tType.Literal(\"restarted\"),\n\t\tType.Literal(\"exited\"),\n\t\tType.Literal(\"failed\"),\n\t\tType.Literal(\"stopped\"),\n\t]),\n\ttaskId: Type.String(),\n\tstatus: Type.String(),\n\tcommand: Type.String(),\n\ttimestamp: Type.String(),\n\trestartAttempts: Type.Number(),\n\tfailureReason: Type.Optional(Type.String()),\n\tlimitBreach: Type.Optional(ComposerBackgroundTaskLimitBreachSchema),\n});\n\nexport const ComposerBackgroundTaskHealthEntrySchema = Type.Object({\n\tid: Type.String(),\n\tstatus: Type.String(),\n\tsummary: Type.String(),\n\tcommand: Type.String(),\n\trestarts: Type.Optional(Type.String()),\n\tissues: Type.Array(Type.String()),\n\tlastLogLine: Type.Optional(Type.String()),\n\tlogTruncated: Type.Optional(Type.Boolean()),\n\tdurationSeconds: Type.Number(),\n});\n\nexport const ComposerBackgroundTaskHealthSchema = Type.Object({\n\ttotal: Type.Number(),\n\trunning: Type.Number(),\n\trestarting: Type.Number(),\n\tfailed: Type.Number(),\n\tentries: Type.Array(ComposerBackgroundTaskHealthEntrySchema),\n\ttruncated: Type.Boolean(),\n\tnotificationsEnabled: Type.Boolean(),\n\tdetailsRedacted: Type.Boolean(),\n\thistory: Type.Array(ComposerBackgroundTaskHistoryEntrySchema),\n\thistoryTruncated: Type.Boolean(),\n});\n\nexport const ComposerGuardianTargetSchema = Type.Union([\n\tType.Literal(\"staged\"),\n\tType.Literal(\"all\"),\n]);\n\nexport const ComposerGuardianStatusSchema = Type.Union([\n\tType.Literal(\"passed\"),\n\tType.Literal(\"failed\"),\n\tType.Literal(\"skipped\"),\n\tType.Literal(\"error\"),\n]);\n\nexport const ComposerGuardianToolResultSchema = Type.Object({\n\ttool: Type.String(),\n\texitCode: Type.Number(),\n\tstdout: Type.String(),\n\tstderr: Type.String(),\n\tdurationMs: Type.Number(),\n\tskipped: Type.Optional(Type.Boolean()),\n\treason: Type.Optional(Type.String()),\n});\n\nexport const ComposerGuardianRunResultSchema = Type.Object({\n\tstatus: ComposerGuardianStatusSchema,\n\texitCode: Type.Number(),\n\tstartedAt: Type.Number(),\n\tdurationMs: Type.Number(),\n\ttarget: ComposerGuardianTargetSchema,\n\ttrigger: Type.Optional(Type.String()),\n\tfilesScanned: Type.Number(),\n\tfiles: Type.Optional(Type.Array(Type.String())),\n\tsummary: Type.String(),\n\tskipReason: Type.Optional(Type.String()),\n\ttoolResults: Type.Array(ComposerGuardianToolResultSchema),\n});\n\nexport const ComposerGuardianStateSchema = Type.Object({\n\tenabled: Type.Boolean(),\n\tlastRun: Type.Optional(ComposerGuardianRunResultSchema),\n});\n\nexport const ComposerGuardianStatusResponseSchema = Type.Object({\n\tenabled: Type.Boolean(),\n\tstate: ComposerGuardianStateSchema,\n});\n\nexport const ComposerGuardianRunResponseSchema =\n\tComposerGuardianRunResultSchema;\n\nexport const ComposerGuardianConfigRequestSchema = Type.Object({\n\tenabled: Type.Boolean(),\n});\n\nexport const ComposerGuardianConfigResponseSchema = Type.Object({\n\tsuccess: Type.Boolean(),\n\tenabled: Type.Boolean(),\n});\n\nexport const ComposerPlanModeStateSchema = Type.Object({\n\tactive: Type.Boolean(),\n\tfilePath: Type.String(),\n\tsessionId: Type.Optional(Type.String()),\n\tgitBranch: Type.Optional(Type.String()),\n\tgitCommitSha: Type.Optional(Type.String()),\n\tcreatedAt: Type.String(),\n\tupdatedAt: Type.String(),\n\tname: Type.Optional(Type.String()),\n});\n\nexport const ComposerPlanStatusResponseSchema = Type.Object({\n\tstate: Type.Union([ComposerPlanModeStateSchema, Type.Null()]),\n\tcontent: Type.Union([Type.String(), Type.Null()]),\n});\n\nexport const ComposerPlanEnterRequestSchema = Type.Object({\n\taction: Type.Literal(\"enter\"),\n\tname: Type.Optional(Type.String()),\n\tsessionId: Type.Optional(Type.String()),\n});\n\nexport const ComposerPlanExitRequestSchema = Type.Object({\n\taction: Type.Literal(\"exit\"),\n});\n\nexport const ComposerPlanUpdateRequestSchema = Type.Object({\n\taction: Type.Literal(\"update\"),\n\tcontent: Type.String(),\n});\n\nexport const ComposerPlanRequestSchema = Type.Union([\n\tComposerPlanEnterRequestSchema,\n\tComposerPlanExitRequestSchema,\n\tComposerPlanUpdateRequestSchema,\n]);\n\nexport const ComposerPlanActionResponseSchema = Type.Union([\n\tType.Object({\n\t\tsuccess: Type.Boolean(),\n\t\tstate: ComposerPlanModeStateSchema,\n\t}),\n\tType.Object({\n\t\tsuccess: Type.Boolean(),\n\t}),\n]);\n\nexport const ComposerBackgroundSettingsSchema = Type.Object({\n\tnotificationsEnabled: Type.Boolean(),\n\tstatusDetailsEnabled: Type.Boolean(),\n});\n\nexport const ComposerBackgroundStatusSnapshotSchema = Type.Object({\n\trunning: Type.Number(),\n\ttotal: Type.Number(),\n\tfailed: Type.Number(),\n\tdetailsRedacted: Type.Boolean(),\n});\n\nexport const ComposerBackgroundStatusResponseSchema = Type.Object({\n\tsettings: ComposerBackgroundSettingsSchema,\n\tsnapshot: Type.Union([ComposerBackgroundStatusSnapshotSchema, Type.Null()]),\n});\n\nexport const ComposerBackgroundHistoryEntrySchema = Type.Object({\n\ttimestamp: Type.String(),\n\tevent: Type.Union([\n\t\tType.Literal(\"started\"),\n\t\tType.Literal(\"restarted\"),\n\t\tType.Literal(\"exited\"),\n\t\tType.Literal(\"failed\"),\n\t\tType.Literal(\"stopped\"),\n\t]),\n\ttaskId: Type.String(),\n\tcommand: Type.String(),\n\tfailureReason: Type.Optional(Type.String()),\n\tlimitBreach: Type.Optional(ComposerBackgroundTaskLimitBreachSchema),\n});\n\nexport const ComposerBackgroundHistoryResponseSchema = Type.Object({\n\thistory: Type.Array(ComposerBackgroundHistoryEntrySchema),\n\ttruncated: Type.Boolean(),\n});\n\nexport const ComposerBackgroundPathResponseSchema = Type.Object({\n\tpath: Type.String(),\n\texists: Type.Boolean(),\n\toverridden: Type.Boolean(),\n});\n\nexport const ComposerBackgroundUpdateRequestSchema = Type.Object({\n\tenabled: Type.Boolean(),\n});\n\nexport const ComposerBackgroundUpdateResponseSchema = Type.Object({\n\tsuccess: Type.Boolean(),\n\tmessage: Type.String(),\n});\n\nexport const ComposerApprovalModeSchema = Type.Union([\n\tType.Literal(\"auto\"),\n\tType.Literal(\"prompt\"),\n\tType.Literal(\"fail\"),\n]);\n\nexport const ComposerApprovalsStatusResponseSchema = Type.Object({\n\tmode: ComposerApprovalModeSchema,\n\tavailableModes: Type.Array(ComposerApprovalModeSchema),\n});\n\nexport const ComposerApprovalsUpdateRequestSchema = Type.Object({\n\tmode: ComposerApprovalModeSchema,\n\tsessionId: Type.Optional(Type.String()),\n});\n\nexport const ComposerApprovalsUpdateResponseSchema = Type.Object({\n\tsuccess: Type.Boolean(),\n\tmode: ComposerApprovalModeSchema,\n\tmessage: Type.String(),\n});\n\nexport const ComposerFrameworkScopeSchema = Type.Union([\n\tType.Literal(\"user\"),\n\tType.Literal(\"workspace\"),\n]);\n\nexport const ComposerFrameworkStatusResponseSchema = Type.Object({\n\tframework: Type.String(),\n\tsource: Type.String(),\n\tlocked: Type.Boolean(),\n\tscope: ComposerFrameworkScopeSchema,\n});\n\nexport const ComposerFrameworkListEntrySchema = Type.Object({\n\tid: Type.String(),\n\tsummary: Type.String(),\n});\n\nexport const ComposerFrameworkListResponseSchema = Type.Object({\n\tframeworks: Type.Array(ComposerFrameworkListEntrySchema),\n});\n\nexport const ComposerFrameworkUpdateRequestSchema = Type.Object({\n\tframework: Type.Optional(Type.Union([Type.String(), Type.Null()])),\n\tscope: Type.Optional(ComposerFrameworkScopeSchema),\n});\n\nexport const ComposerFrameworkUpdateResponseSchema = Type.Object({\n\tsuccess: Type.Boolean(),\n\tmessage: Type.String(),\n\tframework: Type.Union([Type.String(), Type.Null()]),\n\tsummary: Type.Optional(Type.String()),\n\tscope: Type.Optional(ComposerFrameworkScopeSchema),\n});\n\nexport const ComposerChangeTypeSchema = Type.Union([\n\tType.Literal(\"create\"),\n\tType.Literal(\"modify\"),\n\tType.Literal(\"delete\"),\n]);\n\nexport const ComposerFileChangeSchema = Type.Object({\n\tid: Type.String(),\n\ttype: ComposerChangeTypeSchema,\n\tpath: Type.String(),\n\tbefore: Type.Union([Type.String(), Type.Null()]),\n\tafter: Type.Union([Type.String(), Type.Null()]),\n\ttoolName: Type.String(),\n\ttoolCallId: Type.String(),\n\ttimestamp: Type.Number(),\n\tisGitTracked: Type.Boolean(),\n\tmessageId: Type.Optional(Type.String()),\n});\n\nexport const ComposerUndoRestoreActionSchema = Type.Union([\n\tType.Literal(\"restore\"),\n\tType.Literal(\"delete\"),\n\tType.Literal(\"recreate\"),\n]);\n\nexport const ComposerUndoPreviewSchema = Type.Object({\n\tchanges: Type.Array(ComposerFileChangeSchema),\n\trestores: Type.Array(\n\t\tType.Object({\n\t\t\tpath: Type.String(),\n\t\t\taction: ComposerUndoRestoreActionSchema,\n\t\t}),\n\t),\n\tconflicts: Type.Array(\n\t\tType.Object({\n\t\t\tpath: Type.String(),\n\t\t\treason: Type.String(),\n\t\t}),\n\t),\n});\n\nexport const ComposerUndoCheckpointSchema = Type.Object({\n\tname: Type.String(),\n\tdescription: Type.Optional(Type.String()),\n\tchangeCount: Type.Number(),\n\ttimestamp: Type.Number(),\n});\n\nexport const ComposerUndoStatusResponseSchema = Type.Object({\n\ttotalChanges: Type.Number(),\n\tcanUndo: Type.Boolean(),\n\tcheckpoints: Type.Array(ComposerUndoCheckpointSchema),\n});\n\nexport const ComposerUndoHistoryEntrySchema = Type.Object({\n\tdescription: Type.String(),\n\tfileCount: Type.Number(),\n\ttimestamp: Type.Number(),\n});\n\nexport const ComposerUndoHistoryResponseSchema = Type.Object({\n\thistory: Type.Array(ComposerUndoHistoryEntrySchema),\n});\n\nexport const ComposerUndoRequestSchema = Type.Object({\n\taction: Type.Optional(\n\t\tType.Union([\n\t\t\tType.Literal(\"undo\"),\n\t\t\tType.Literal(\"checkpoint\"),\n\t\t\tType.Literal(\"restore\"),\n\t\t]),\n\t),\n\tcount: Type.Optional(Type.Number()),\n\tpreview: Type.Optional(Type.Boolean()),\n\tforce: Type.Optional(Type.Boolean()),\n\tname: Type.Optional(Type.String()),\n\tdescription: Type.Optional(Type.String()),\n});\n\nexport const ComposerUndoPreviewMessageSchema = Type.Object({\n\tmessage: Type.String(),\n\tfileCount: Type.Optional(Type.Number()),\n\tdescription: Type.Optional(Type.String()),\n});\n\nexport const ComposerUndoPreviewResponseSchema = Type.Object({\n\tpreview: Type.Union([\n\t\tComposerUndoPreviewSchema,\n\t\tComposerUndoPreviewMessageSchema,\n\t]),\n});\n\nexport const ComposerUndoCheckpointSaveResponseSchema = Type.Object({\n\tsuccess: Type.Boolean(),\n\tcheckpoint: Type.Object({\n\t\tname: Type.String(),\n\t\tchangeCount: Type.Number(),\n\t\ttimestamp: Type.Number(),\n\t}),\n});\n\nexport const ComposerUndoCheckpointListResponseSchema = Type.Object({\n\tcheckpoints: Type.Array(ComposerUndoCheckpointSchema),\n});\n\nexport const ComposerUndoOperationResponseSchema = Type.Union([\n\tType.Object({\n\t\tsuccess: Type.Boolean(),\n\t\tundone: Type.Number(),\n\t\terrors: Type.Array(Type.String()),\n\t}),\n\tType.Object({\n\t\tsuccess: Type.Boolean(),\n\t\tmessage: Type.String(),\n\t\tfiles: Type.Optional(Type.Array(Type.String())),\n\t}),\n\tType.Object({\n\t\tmessage: Type.String(),\n\t}),\n\tComposerUndoPreviewResponseSchema,\n\tComposerUndoCheckpointSaveResponseSchema,\n\tComposerUndoCheckpointListResponseSchema,\n]);\n\nexport const ComposerProjectOnboardingStepSchema = Type.Object({\n\tkey: Type.Union([Type.Literal(\"workspace\"), Type.Literal(\"instructions\")]),\n\ttext: Type.String(),\n\tisComplete: Type.Boolean(),\n\tisEnabled: Type.Boolean(),\n});\n\nexport const ComposerProjectOnboardingStateSchema = Type.Object({\n\tshouldShow: Type.Boolean(),\n\tcompleted: Type.Boolean(),\n\tseenCount: Type.Number(),\n\tsteps: Type.Array(ComposerProjectOnboardingStepSchema),\n});\n\nexport const ComposerStatusResponseSchema = Type.Object({\n\tcwd: Type.String(),\n\tgit: Type.Union([\n\t\tType.Object({\n\t\t\tbranch: Type.String(),\n\t\t\tstatus: Type.Object({\n\t\t\t\tmodified: Type.Number(),\n\t\t\t\tadded: Type.Number(),\n\t\t\t\tdeleted: Type.Number(),\n\t\t\t\tuntracked: Type.Number(),\n\t\t\t\ttotal: Type.Number(),\n\t\t\t}),\n\t\t}),\n\t\tType.Null(),\n\t]),\n\tcontext: Type.Object({\n\t\tagentMd: Type.Boolean(),\n\t\tclaudeMd: Type.Boolean(),\n\t}),\n\tonboarding: Type.Optional(ComposerProjectOnboardingStateSchema),\n\tserver: Type.Object({\n\t\tuptime: Type.Number(),\n\t\tversion: Type.String(),\n\t\tstaticCacheMaxAgeSeconds: Type.Optional(Type.Number()),\n\t}),\n\tdatabase: Type.Object({\n\t\tconfigured: Type.Boolean(),\n\t\tconnected: Type.Boolean(),\n\t}),\n\tbackgroundTasks: Type.Union([\n\t\tComposerBackgroundTaskHealthSchema,\n\t\tType.Null(),\n\t]),\n\thooks: Type.Object({\n\t\tasyncInFlight: Type.Number(),\n\t\tconcurrency: Type.Object({\n\t\t\tmax: Type.Number(),\n\t\t\tactive: Type.Number(),\n\t\t\tqueued: Type.Number(),\n\t\t}),\n\t}),\n\tlastUpdated: Type.Number(),\n\tlastLatencyMs: Type.Number(),\n});\n\nexport const ComposerUsageTokenTotalsSchema = Type.Object({\n\tinput: Type.Number(),\n\toutput: Type.Number(),\n\tcacheRead: Type.Number(),\n\tcacheWrite: Type.Number(),\n\ttotal: Type.Number(),\n});\n\nexport const ComposerUsageBreakdownSchema = Type.Object({\n\tcost: Type.Number(),\n\trequests: Type.Number(),\n\ttokens: Type.Number(),\n\ttokensDetailed: ComposerUsageTokenTotalsSchema,\n\tcalls: Type.Number(),\n\tcachedTokens: Type.Number(),\n});\n\nexport const ComposerUsageSummarySchema = Type.Object({\n\ttotalCost: Type.Number(),\n\ttotalRequests: Type.Number(),\n\ttotalTokens: Type.Number(),\n\ttokensDetailed: ComposerUsageTokenTotalsSchema,\n\ttotalTokensDetailed: ComposerUsageTokenTotalsSchema,\n\ttotalTokensBreakdown: ComposerUsageTokenTotalsSchema,\n\ttotalCachedTokens: Type.Number(),\n\tbyProvider: Type.Record(Type.String(), ComposerUsageBreakdownSchema),\n\tbyModel: Type.Record(Type.String(), ComposerUsageBreakdownSchema),\n});\n\nexport const ComposerUsageResponseSchema = Type.Object({\n\tsummary: ComposerUsageSummarySchema,\n\thasData: Type.Boolean(),\n});\n\nexport const ComposerErrorSeveritySchema = Type.Union([\n\tType.Literal(\"error\"),\n\tType.Literal(\"warning\"),\n\tType.Literal(\"info\"),\n]);\n\nexport const ComposerErrorCategorySchema = Type.Union([\n\tType.Literal(\"validation\"),\n\tType.Literal(\"permission\"),\n\tType.Literal(\"network\"),\n\tType.Literal(\"timeout\"),\n\tType.Literal(\"filesystem\"),\n\tType.Literal(\"tool\"),\n\tType.Literal(\"session\"),\n\tType.Literal(\"config\"),\n\tType.Literal(\"api\"),\n\tType.Literal(\"internal\"),\n]);\n\nexport const ComposerErrorPayloadSchema = Type.Object({\n\tcode: Type.String(),\n\tcategory: ComposerErrorCategorySchema,\n\tseverity: Type.Optional(ComposerErrorSeveritySchema),\n\tretriable: Type.Optional(Type.Boolean()),\n\tcontext: Type.Optional(Type.Record(Type.String(), Type.Unknown())),\n});\n\nexport const ComposerErrorResponseSchema = Type.Object({\n\terror: Type.String(),\n\tcode: Type.Optional(Type.String()),\n\tdetails: Type.Optional(\n\t\tType.Array(Type.Record(Type.String(), Type.Unknown())),\n\t),\n\tmaestro: Type.Optional(ComposerErrorPayloadSchema),\n});\n"]}
|
|
1
|
+
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../src/schemas.ts"],"names":[],"mappings":"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","sourcesContent":["import { Type } from \"@sinclair/typebox\";\n\nexport const ComposerRoleSchema = Type.Union([\n\tType.Literal(\"user\"),\n\tType.Literal(\"assistant\"),\n\tType.Literal(\"system\"),\n\tType.Literal(\"tool\"),\n]);\n\nexport const ComposerTextContentSchema = Type.Object({\n\ttype: Type.Literal(\"text\"),\n\ttext: Type.String(),\n\ttextSignature: Type.Optional(Type.String()),\n});\n\nexport const ComposerImageContentSchema = Type.Object({\n\ttype: Type.Literal(\"image\"),\n\tdata: Type.String(),\n\tmimeType: Type.String(),\n});\n\nexport const ComposerThinkingContentSchema = Type.Object({\n\ttype: Type.Literal(\"thinking\"),\n\tthinking: Type.String(),\n\tthinkingSignature: Type.Optional(Type.String()),\n});\n\nexport const ComposerToolCallContentSchema = Type.Object({\n\ttype: Type.Literal(\"toolCall\"),\n\tid: Type.String(),\n\tname: Type.String(),\n\targuments: Type.Record(Type.String(), Type.Unknown()),\n\tthoughtSignature: Type.Optional(Type.String()),\n});\n\nexport const ComposerContentBlockSchema = Type.Union([\n\tComposerTextContentSchema,\n\tComposerImageContentSchema,\n\tComposerThinkingContentSchema,\n\tComposerToolCallContentSchema,\n]);\n\nexport const ComposerThinkingLevelSchema = Type.Union([\n\tType.Literal(\"off\"),\n\tType.Literal(\"minimal\"),\n\tType.Literal(\"low\"),\n\tType.Literal(\"medium\"),\n\tType.Literal(\"high\"),\n]);\n\nexport const RoutingReceiptSourceSchema = Type.Union([\n\tType.Literal(\"request\"),\n\tType.Literal(\"session\"),\n\tType.Literal(\"compatibility_default\"),\n]);\n\nexport const AgentProfilePinSchema = Type.Object({\n\tprofile: Type.String({ minLength: 1 }),\n\tupdatedAt: Type.String({ minLength: 1 }),\n});\n\nexport const RoutingReceiptOracleSchema = Type.Object({\n\tpolicyVersion: Type.String({ minLength: 1 }),\n\tmode: Type.Union([\n\t\tType.Literal(\"available\"),\n\t\tType.Literal(\"recommended\"),\n\t\tType.Literal(\"required\"),\n\t]),\n\treasons: Type.Array(Type.String()),\n});\n\nexport const RoutingReceiptFallbackSchema = Type.Object({\n\treason: Type.String({ minLength: 1 }),\n\tprovider: Type.Optional(Type.String()),\n\tmodel: Type.Optional(Type.String()),\n});\n\nexport const RoutingReceiptExperimentSchema = Type.Object({\n\texperimentId: Type.String({ minLength: 1 }),\n\tarm: Type.Union([Type.Literal(\"control\"), Type.Literal(\"treatment\")]),\n\tpolicyVersion: Type.String({ minLength: 1 }),\n});\n\nexport const RoutingReceiptSchema = Type.Object({\n\tdecisionId: Type.String({ minLength: 1 }),\n\trequestedProfile: Type.String({ minLength: 1 }),\n\tsource: RoutingReceiptSourceSchema,\n\tresolvedProfileId: Type.String({ minLength: 1 }),\n\tresolvedProfileVersion: Type.Number({ minimum: 1 }),\n\tprovider: Type.String({ minLength: 1 }),\n\tmodel: Type.String({ minLength: 1 }),\n\treasoningEffort: Type.String({ minLength: 1 }),\n\tcreatedAt: Type.String({ minLength: 1 }),\n\toracle: Type.Optional(RoutingReceiptOracleSchema),\n\tfallback: Type.Optional(RoutingReceiptFallbackSchema),\n\texperiment: Type.Optional(RoutingReceiptExperimentSchema),\n});\n\nexport const ComposerToolCallSchema = Type.Object({\n\tname: Type.String(),\n\tstatus: Type.Union([\n\t\tType.Literal(\"pending\"),\n\t\tType.Literal(\"running\"),\n\t\tType.Literal(\"completed\"),\n\t\tType.Literal(\"error\"),\n\t]),\n\targs: Type.Optional(Type.Record(Type.String(), Type.Unknown())),\n\tresult: Type.Optional(Type.Unknown()),\n\ttoolCallId: Type.Optional(Type.String()),\n});\n\nexport const ComposerAttachmentSchema = Type.Object({\n\tid: Type.String(),\n\ttype: Type.Union([Type.Literal(\"image\"), Type.Literal(\"document\")]),\n\tfileName: Type.String(),\n\tmimeType: Type.String(),\n\tsize: Type.Number(),\n\tcontent: Type.Optional(Type.String()),\n\tcontentOmitted: Type.Optional(Type.Boolean()),\n\textractedText: Type.Optional(Type.String()),\n\tpreview: Type.Optional(Type.String()),\n});\n\nexport const ComposerUsageCostSchema = Type.Object({\n\tinput: Type.Number(),\n\toutput: Type.Number(),\n\tcacheRead: Type.Optional(Type.Number()),\n\tcacheWrite: Type.Optional(Type.Number()),\n\ttotal: Type.Optional(Type.Number()),\n});\n\nexport const ComposerUsageSchema = Type.Object({\n\tinput: Type.Number(),\n\toutput: Type.Number(),\n\tcacheRead: Type.Optional(Type.Number()),\n\tcacheWrite: Type.Optional(Type.Number()),\n\tcost: Type.Optional(ComposerUsageCostSchema),\n});\n\nexport const ComposerMessageSchema = Type.Object({\n\trole: ComposerRoleSchema,\n\tcontent: Type.Union([Type.String(), Type.Array(ComposerContentBlockSchema)]),\n\tattachments: Type.Optional(Type.Array(ComposerAttachmentSchema)),\n\ttimestamp: Type.Optional(Type.String()),\n\tthinking: Type.Optional(Type.String()),\n\ttools: Type.Optional(Type.Array(ComposerToolCallSchema)),\n\ttoolName: Type.Optional(Type.String()),\n\tisError: Type.Optional(Type.Boolean()),\n\tusage: Type.Optional(ComposerUsageSchema),\n\tprovider: Type.Optional(Type.String()),\n\tapi: Type.Optional(Type.String()),\n\troutingReceipt: Type.Optional(RoutingReceiptSchema),\n\tmodel: Type.Optional(Type.String()),\n});\n\nexport const ComposerChatRequestSchema = Type.Object({\n\tmodel: Type.Optional(Type.String()),\n\tprofile: Type.Optional(Type.String()),\n\tpersistProfile: Type.Optional(Type.Boolean()),\n\tmessages: Type.Array(ComposerMessageSchema),\n\tthinkingLevel: Type.Optional(ComposerThinkingLevelSchema),\n\tsessionId: Type.Optional(Type.String()),\n\tstream: Type.Optional(Type.Boolean()),\n});\n\nexport const ComposerPromptSuggestionRequestSchema = Type.Object({\n\tmodel: Type.Optional(Type.String()),\n\tmessages: Type.Array(ComposerMessageSchema),\n\tsessionId: Type.Optional(Type.String()),\n});\n\nexport const ComposerPromptSuggestionResponseSchema = Type.Object({\n\tsuggestion: Type.Union([Type.String(), Type.Null()]),\n\tsuppressedReason: Type.Optional(Type.String()),\n\tmodel: Type.Optional(Type.String()),\n});\n\nexport const ComposerModelSetSchema = Type.Object({\n\tmodel: Type.String({ minLength: 1 }),\n});\n\nexport const ComposerModelCapabilitiesSchema = Type.Object({\n\tstreaming: Type.Optional(Type.Boolean()),\n\ttools: Type.Optional(Type.Boolean()),\n\tvision: Type.Optional(Type.Boolean()),\n\treasoning: Type.Optional(Type.Boolean()),\n});\n\nexport const ComposerModelSchema = Type.Object({\n\tid: Type.String(),\n\tprovider: Type.String(),\n\tname: Type.String(),\n\tapi: Type.Optional(Type.String()),\n\tcontextWindow: Type.Optional(Type.Number()),\n\tmaxOutputTokens: Type.Optional(Type.Number()),\n\tmaxTokens: Type.Optional(Type.Number()),\n\treasoning: Type.Optional(Type.Boolean()),\n\tcost: Type.Optional(ComposerUsageCostSchema),\n\tcapabilities: Type.Optional(ComposerModelCapabilitiesSchema),\n});\n\nexport const ComposerModelListResponseSchema = Type.Object({\n\tmodels: Type.Array(ComposerModelSchema),\n});\n\nexport const ComposerCommandArgSchema = Type.Object({\n\tname: Type.String(),\n\trequired: Type.Optional(Type.Boolean()),\n});\n\nexport const ComposerCommandSchema = Type.Object({\n\tname: Type.String(),\n\tdescription: Type.Optional(Type.String()),\n\tprompt: Type.String(),\n\targs: Type.Optional(Type.Array(ComposerCommandArgSchema)),\n});\n\nexport const ComposerCommandListResponseSchema = Type.Object({\n\tcommands: Type.Array(ComposerCommandSchema),\n});\n\nexport const ComposerCommandPrefsSchema = Type.Object({\n\tfavorites: Type.Array(Type.String()),\n\trecents: Type.Array(Type.String()),\n});\n\nexport const ComposerCommandPrefsUpdateSchema = Type.Object({\n\tfavorites: Type.Optional(Type.Array(Type.String())),\n\trecents: Type.Optional(Type.Array(Type.String())),\n});\n\nexport const ComposerCommandPrefsWriteResponseSchema = Type.Object({\n\tok: Type.Boolean(),\n});\n\nexport const ComposerConfigWriteRequestSchema = Type.Object({\n\tconfig: Type.Record(Type.String(), Type.Unknown()),\n});\n\nexport const ComposerConfigResponseSchema = Type.Object({\n\tconfig: Type.Record(Type.String(), Type.Unknown()),\n\tconfigPath: Type.String(),\n});\n\nexport const ComposerConfigWriteResponseSchema = Type.Object({\n\tsuccess: Type.Boolean(),\n});\n\nexport const ComposerFilesResponseSchema = Type.Object({\n\tfiles: Type.Array(Type.String()),\n});\n\nexport const ComposerSessionSummarySchema = Type.Object({\n\tid: Type.String(),\n\ttitle: Type.Optional(Type.String()),\n\tresumeSummary: Type.Optional(Type.String()),\n\tcreatedAt: Type.String(),\n\tupdatedAt: Type.String(),\n\tmessageCount: Type.Number(),\n\tfavorite: Type.Optional(Type.Boolean()),\n\ttags: Type.Optional(Type.Array(Type.String())),\n});\n\nexport const ComposerAssistantMessageEventSchema = Type.Union([\n\tType.Object({\n\t\ttype: Type.Literal(\"start\"),\n\t\tpartial: ComposerMessageSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"text_start\"),\n\t\tcontentIndex: Type.Number(),\n\t\tpartial: ComposerMessageSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"text_delta\"),\n\t\tcontentIndex: Type.Number(),\n\t\tdelta: Type.String(),\n\t\tpartial: Type.Optional(ComposerMessageSchema),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"text_end\"),\n\t\tcontentIndex: Type.Number(),\n\t\tcontent: Type.String(),\n\t\tpartial: ComposerMessageSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"thinking_start\"),\n\t\tcontentIndex: Type.Number(),\n\t\tpartial: ComposerMessageSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"thinking_delta\"),\n\t\tcontentIndex: Type.Number(),\n\t\tdelta: Type.String(),\n\t\tpartial: Type.Optional(ComposerMessageSchema),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"thinking_end\"),\n\t\tcontentIndex: Type.Number(),\n\t\tcontent: Type.String(),\n\t\tpartial: ComposerMessageSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"toolcall_start\"),\n\t\tcontentIndex: Type.Number(),\n\t\tpartial: Type.Optional(ComposerMessageSchema),\n\t\ttoolCallId: Type.Optional(Type.String()),\n\t\ttoolCallName: Type.Optional(Type.String()),\n\t\ttoolCallArgs: Type.Optional(Type.Record(Type.String(), Type.Unknown())),\n\t\ttoolCallArgsTruncated: Type.Optional(Type.Boolean()),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"toolcall_delta\"),\n\t\tcontentIndex: Type.Number(),\n\t\tdelta: Type.String(),\n\t\tpartial: Type.Optional(ComposerMessageSchema),\n\t\ttoolCallId: Type.Optional(Type.String()),\n\t\ttoolCallName: Type.Optional(Type.String()),\n\t\ttoolCallArgs: Type.Optional(Type.Record(Type.String(), Type.Unknown())),\n\t\ttoolCallArgsTruncated: Type.Optional(Type.Boolean()),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"toolcall_end\"),\n\t\tcontentIndex: Type.Number(),\n\t\ttoolCall: ComposerToolCallContentSchema,\n\t\tpartial: Type.Optional(ComposerMessageSchema),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"done\"),\n\t\treason: Type.Union([\n\t\t\tType.Literal(\"stop\"),\n\t\t\tType.Literal(\"length\"),\n\t\t\tType.Literal(\"toolUse\"),\n\t\t]),\n\t\tmessage: ComposerMessageSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"error\"),\n\t\treason: Type.Union([Type.Literal(\"aborted\"), Type.Literal(\"error\")]),\n\t\terror: ComposerMessageSchema,\n\t}),\n]);\n\nexport const ComposerPendingRequestPlatformRefSchema = Type.Object({\n\tsource: Type.Union([\n\t\tType.Literal(\"approvals_service\"),\n\t\tType.Literal(\"tool_execution\"),\n\t]),\n\ttoolExecutionId: Type.Optional(Type.String()),\n\tapprovalRequestId: Type.Optional(Type.String()),\n});\n\nexport const ComposerActionApprovalRequestSchema = Type.Object({\n\tid: Type.String(),\n\ttoolName: Type.String(),\n\tdisplayName: Type.Optional(Type.String()),\n\tsummaryLabel: Type.Optional(Type.String()),\n\tactionDescription: Type.Optional(Type.String()),\n\targs: Type.Unknown(),\n\treason: Type.String(),\n\tstartedAtMs: Type.Optional(Type.Number()),\n\tplatform: Type.Optional(ComposerPendingRequestPlatformRefSchema),\n});\n\nexport const ComposerActionApprovalDecisionSchema = Type.Object({\n\tapproved: Type.Boolean(),\n\treason: Type.Optional(Type.String()),\n\tresolvedBy: Type.Union([Type.Literal(\"policy\"), Type.Literal(\"user\")]),\n\tresolvedAtMs: Type.Optional(Type.Number()),\n});\n\nexport const ComposerPendingClientToolRequestSchema = Type.Object({\n\ttoolCallId: Type.String(),\n\ttoolName: Type.String(),\n\targs: Type.Unknown(),\n\tkind: Type.Optional(\n\t\tType.Union([\n\t\t\tType.Literal(\"client_tool\"),\n\t\t\tType.Literal(\"mcp_elicitation\"),\n\t\t\tType.Literal(\"user_input\"),\n\t\t]),\n\t),\n\treason: Type.Optional(Type.String()),\n});\n\nexport const ComposerPendingRequestSchema = Type.Object({\n\tid: Type.String(),\n\tkind: Type.Union([\n\t\tType.Literal(\"approval\"),\n\t\tType.Literal(\"client_tool\"),\n\t\tType.Literal(\"mcp_elicitation\"),\n\t\tType.Literal(\"user_input\"),\n\t\tType.Literal(\"tool_retry\"),\n\t]),\n\tstatus: Type.Literal(\"pending\"),\n\tvisibility: Type.Literal(\"user\"),\n\tsessionId: Type.Optional(Type.String()),\n\ttoolCallId: Type.String(),\n\ttoolName: Type.String(),\n\tdisplayName: Type.Optional(Type.String()),\n\tsummaryLabel: Type.Optional(Type.String()),\n\tactionDescription: Type.Optional(Type.String()),\n\targs: Type.Unknown(),\n\treason: Type.String(),\n\tcreatedAt: Type.String(),\n\texpiresAt: Type.Optional(Type.String()),\n\tsource: Type.Union([Type.Literal(\"local\"), Type.Literal(\"platform\")]),\n\tplatform: Type.Optional(ComposerPendingRequestPlatformRefSchema),\n});\n\nexport const ComposerPendingRequestResolutionSchema = Type.Union([\n\tType.Literal(\"approved\"),\n\tType.Literal(\"denied\"),\n\tType.Literal(\"completed\"),\n\tType.Literal(\"failed\"),\n\tType.Literal(\"answered\"),\n\tType.Literal(\"retried\"),\n\tType.Literal(\"skipped\"),\n\tType.Literal(\"aborted\"),\n\tType.Literal(\"cancelled\"),\n]);\n\nexport const ComposerPendingRequestPlatformOperationSchema = Type.Union([\n\tType.Literal(\"ResolveApproval\"),\n\tType.Literal(\"ResumeToolExecution\"),\n\tType.Literal(\"ResumeRun\"),\n]);\n\nexport const ComposerClientToolResultContentSchema = Type.Union([\n\tComposerTextContentSchema,\n\tComposerImageContentSchema,\n]);\n\nexport const ComposerPendingRequestResumeRequestSchema = Type.Object({\n\tkind: Type.Optional(\n\t\tType.Union([\n\t\t\tType.Literal(\"approval\"),\n\t\t\tType.Literal(\"client_tool\"),\n\t\t\tType.Literal(\"mcp_elicitation\"),\n\t\t\tType.Literal(\"user_input\"),\n\t\t\tType.Literal(\"tool_retry\"),\n\t\t]),\n\t),\n\tsessionId: Type.Optional(Type.String()),\n\tdecision: Type.Optional(\n\t\tType.Union([Type.Literal(\"approved\"), Type.Literal(\"denied\")]),\n\t),\n\taction: Type.Optional(\n\t\tType.Union([\n\t\t\tType.Literal(\"retry\"),\n\t\t\tType.Literal(\"skip\"),\n\t\t\tType.Literal(\"abort\"),\n\t\t]),\n\t),\n\tcontent: Type.Optional(Type.Array(ComposerClientToolResultContentSchema)),\n\tisError: Type.Optional(Type.Boolean()),\n\treason: Type.Optional(Type.String()),\n});\n\nexport const ComposerPendingRequestResumeResponseSchema = Type.Object({\n\tsuccess: Type.Literal(true),\n\trequest: Type.Object({\n\t\tid: Type.String(),\n\t\tkind: Type.Union([\n\t\t\tType.Literal(\"approval\"),\n\t\t\tType.Literal(\"client_tool\"),\n\t\t\tType.Literal(\"mcp_elicitation\"),\n\t\t\tType.Literal(\"user_input\"),\n\t\t\tType.Literal(\"tool_retry\"),\n\t\t]),\n\t\tsessionId: Type.Optional(Type.String()),\n\t\tresolution: ComposerPendingRequestResolutionSchema,\n\t\tsource: Type.Union([Type.Literal(\"local\"), Type.Literal(\"platform\")]),\n\t\tplatform: Type.Optional(ComposerPendingRequestPlatformRefSchema),\n\t\tplatformOperation: Type.Optional(\n\t\t\tComposerPendingRequestPlatformOperationSchema,\n\t\t),\n\t}),\n});\n\nexport const ComposerRunTimelineVisibilitySchema = Type.Union([\n\tType.Literal(\"user\"),\n\tType.Literal(\"admin\"),\n\tType.Literal(\"audit\"),\n]);\n\nexport const ComposerRunTimelineSourceSchema = Type.Union([\n\tType.Literal(\"local\"),\n\tType.Literal(\"platform\"),\n]);\n\nexport const ComposerRunTimelineEventTypeSchema = Type.Union([\n\tType.Literal(\"session.started\"),\n\tType.Literal(\"session.updated\"),\n\tType.Literal(\"message.user\"),\n\tType.Literal(\"message.assistant\"),\n\tType.Literal(\"tool.requested\"),\n\tType.Literal(\"tool.completed\"),\n\tType.Literal(\"tool.failed\"),\n\tType.Literal(\"file.changed\"),\n\tType.Literal(\"diagnostic.delta\"),\n\tType.Literal(\"artifact.linked\"),\n\tType.Literal(\"policy.decision\"),\n\tType.Literal(\"wait.pending\"),\n\tType.Literal(\"agent.run.started\"),\n\tType.Literal(\"agent.run.completed\"),\n\tType.Literal(\"agent.run.failed\"),\n\tType.Literal(\"compaction.created\"),\n\tType.Literal(\"branch.created\"),\n\tType.Literal(\"model.changed\"),\n\tType.Literal(\"thinking.changed\"),\n\tType.Literal(\"runtime.recovery\"),\n\tType.Literal(\"runtime.finished\"),\n\tType.Literal(\"custom.event\"),\n]);\n\nexport const ComposerRunTimelineStatusSchema = Type.Union([\n\tType.Literal(\"pending\"),\n\tType.Literal(\"running\"),\n\tType.Literal(\"completed\"),\n\tType.Literal(\"failed\"),\n\tType.Literal(\"approved\"),\n\tType.Literal(\"denied\"),\n\tType.Literal(\"info\"),\n]);\n\nexport const ComposerRunTimelineItemSchema = Type.Object({\n\tid: Type.String(),\n\tsessionId: Type.String(),\n\ttimestamp: Type.String(),\n\ttype: ComposerRunTimelineEventTypeSchema,\n\ttitle: Type.String(),\n\tvisibility: ComposerRunTimelineVisibilitySchema,\n\tsource: ComposerRunTimelineSourceSchema,\n\tstatus: Type.Optional(ComposerRunTimelineStatusSchema),\n\tsummary: Type.Optional(Type.String()),\n\trole: Type.Optional(ComposerRoleSchema),\n\ttoolCallId: Type.Optional(Type.String()),\n\ttoolName: Type.Optional(Type.String()),\n\tpendingRequestId: Type.Optional(Type.String()),\n\tpendingRequestKind: Type.Optional(\n\t\tType.Union([\n\t\t\tType.Literal(\"approval\"),\n\t\t\tType.Literal(\"client_tool\"),\n\t\t\tType.Literal(\"mcp_elicitation\"),\n\t\t\tType.Literal(\"user_input\"),\n\t\t\tType.Literal(\"tool_retry\"),\n\t\t]),\n\t),\n\tapprovalRequestId: Type.Optional(Type.String()),\n\ttoolExecutionId: Type.Optional(Type.String()),\n\tartifactId: Type.Optional(Type.String()),\n\tagentRunId: Type.Optional(Type.String()),\n\tparentAgentRunId: Type.Optional(Type.String()),\n\tchildAgentRunId: Type.Optional(Type.String()),\n\tremoteRunnerSessionId: Type.Optional(Type.String()),\n\tplatform: Type.Optional(ComposerPendingRequestPlatformRefSchema),\n\tplatformOperation: Type.Optional(\n\t\tComposerPendingRequestPlatformOperationSchema,\n\t),\n\tmetadata: Type.Optional(Type.Record(Type.String(), Type.Unknown())),\n});\n\nexport const ComposerRunTimelineResponseSchema = Type.Object({\n\tsessionId: Type.String(),\n\tsource: ComposerRunTimelineSourceSchema,\n\tgeneratedAt: Type.String(),\n\tplatformBacked: Type.Boolean(),\n\tpendingRequestCount: Type.Number(),\n\titems: Type.Array(ComposerRunTimelineItemSchema),\n});\n\nexport const ComposerToolRetryRequestSchema = Type.Object({\n\tid: Type.String(),\n\ttoolCallId: Type.String(),\n\ttoolName: Type.String(),\n\targs: Type.Unknown(),\n\terrorMessage: Type.String(),\n\tattempt: Type.Number(),\n\tmaxAttempts: Type.Optional(Type.Number()),\n\tsummary: Type.Optional(Type.String()),\n});\n\nexport const ComposerToolRetryDecisionSchema = Type.Object({\n\taction: Type.Union([\n\t\tType.Literal(\"retry\"),\n\t\tType.Literal(\"skip\"),\n\t\tType.Literal(\"abort\"),\n\t]),\n\treason: Type.Optional(Type.String()),\n\tresolvedBy: Type.Union([\n\t\tType.Literal(\"policy\"),\n\t\tType.Literal(\"user\"),\n\t\tType.Literal(\"runtime\"),\n\t]),\n});\n\nexport const ComposerSessionMessagesViewSchema = Type.Union([\n\tType.Literal(\"full\"),\n\tType.Literal(\"summary\"),\n\tType.Literal(\"notLoaded\"),\n]);\n\nexport const ComposerSessionSchema = Type.Object({\n\tid: Type.String(),\n\ttitle: Type.Optional(Type.String()),\n\tresumeSummary: Type.Optional(Type.String()),\n\tcreatedAt: Type.String(),\n\tupdatedAt: Type.String(),\n\tmessageCount: Type.Number(),\n\tfavorite: Type.Optional(Type.Boolean()),\n\ttags: Type.Optional(Type.Array(Type.String())),\n\tmessagesView: Type.Optional(ComposerSessionMessagesViewSchema),\n\tmessages: Type.Array(ComposerMessageSchema),\n\tpendingApprovalRequests: Type.Optional(\n\t\tType.Array(ComposerActionApprovalRequestSchema),\n\t),\n\tpendingClientToolRequests: Type.Optional(\n\t\tType.Array(ComposerPendingClientToolRequestSchema),\n\t),\n\tpendingToolRetryRequests: Type.Optional(\n\t\tType.Array(ComposerToolRetryRequestSchema),\n\t),\n\tpendingRequests: Type.Optional(Type.Array(ComposerPendingRequestSchema)),\n});\n\nexport const ComposerAgentEventSchema = Type.Union([\n\tType.Object({\n\t\ttype: Type.Literal(\"routing_receipt\"),\n\t\treceipt: RoutingReceiptSchema,\n\t}),\n\tType.Object({ type: Type.Literal(\"agent_start\") }),\n\tType.Object({\n\t\ttype: Type.Literal(\"agent_end\"),\n\t\tmessages: Type.Array(ComposerMessageSchema),\n\t\taborted: Type.Optional(Type.Boolean()),\n\t\tpartialAccepted: Type.Optional(ComposerMessageSchema),\n\t\tstopReason: Type.Optional(\n\t\t\tType.Union([\n\t\t\t\tType.Literal(\"stop\"),\n\t\t\t\tType.Literal(\"length\"),\n\t\t\t\tType.Literal(\"toolUse\"),\n\t\t\t\tType.Literal(\"error\"),\n\t\t\t\tType.Literal(\"aborted\"),\n\t\t\t]),\n\t\t),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"status\"),\n\t\tstatus: Type.String(),\n\t\tdetails: Type.Record(Type.String(), Type.Unknown()),\n\t}),\n\tType.Object({ type: Type.Literal(\"error\"), message: Type.String() }),\n\tType.Object({ type: Type.Literal(\"turn_start\") }),\n\tType.Object({\n\t\ttype: Type.Literal(\"turn_end\"),\n\t\tmessage: ComposerMessageSchema,\n\t\ttoolResults: Type.Array(ComposerMessageSchema),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"message_start\"),\n\t\tmessage: ComposerMessageSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"message_update\"),\n\t\tmessage: Type.Optional(ComposerMessageSchema),\n\t\tassistantMessageEvent: ComposerAssistantMessageEventSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"message_end\"),\n\t\tmessage: ComposerMessageSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"tool_execution_start\"),\n\t\ttoolCallId: Type.String(),\n\t\ttoolName: Type.String(),\n\t\tdisplayName: Type.Optional(Type.String()),\n\t\tsummaryLabel: Type.Optional(Type.String()),\n\t\targs: Type.Record(Type.String(), Type.Unknown()),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"tool_execution_update\"),\n\t\ttoolCallId: Type.String(),\n\t\ttoolName: Type.String(),\n\t\tdisplayName: Type.Optional(Type.String()),\n\t\tsummaryLabel: Type.Optional(Type.String()),\n\t\targs: Type.Record(Type.String(), Type.Unknown()),\n\t\tpartialResult: Type.Unknown(),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"tool_execution_end\"),\n\t\ttoolCallId: Type.String(),\n\t\ttoolName: Type.String(),\n\t\tdisplayName: Type.Optional(Type.String()),\n\t\tsummaryLabel: Type.Optional(Type.String()),\n\t\tresult: Type.Unknown(),\n\t\tisError: Type.Boolean(),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"tool_batch_summary\"),\n\t\tsummary: Type.String(),\n\t\tsummaryLabels: Type.Array(Type.String()),\n\t\ttoolCallIds: Type.Array(Type.String()),\n\t\ttoolNames: Type.Array(Type.String()),\n\t\tcallsSucceeded: Type.Number(),\n\t\tcallsFailed: Type.Number(),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"action_approval_required\"),\n\t\trequest: ComposerActionApprovalRequestSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"action_approval_resolved\"),\n\t\trequest: ComposerActionApprovalRequestSchema,\n\t\tdecision: ComposerActionApprovalDecisionSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"client_tool_request\"),\n\t\ttoolCallId: Type.String(),\n\t\ttoolName: Type.String(),\n\t\targs: Type.Unknown(),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"tool_retry_required\"),\n\t\trequest: ComposerToolRetryRequestSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"tool_retry_resolved\"),\n\t\trequest: ComposerToolRetryRequestSchema,\n\t\tdecision: ComposerToolRetryDecisionSchema,\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"compaction\"),\n\t\tsummary: Type.String(),\n\t\tfirstKeptEntryIndex: Type.Number(),\n\t\ttokensBefore: Type.Number(),\n\t\tauto: Type.Optional(Type.Boolean()),\n\t\tcustomInstructions: Type.Optional(Type.String()),\n\t\ttimestamp: Type.String(),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"auto_retry_start\"),\n\t\tattempt: Type.Number(),\n\t\tmaxAttempts: Type.Number(),\n\t\tdelayMs: Type.Number(),\n\t\terrorMessage: Type.String(),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"auto_retry_end\"),\n\t\tsuccess: Type.Boolean(),\n\t\tattempt: Type.Number(),\n\t\tfinalError: Type.Optional(Type.String()),\n\t}),\n\tType.Object({\n\t\ttype: Type.Literal(\"session_update\"),\n\t\tsessionId: Type.String(),\n\t}),\n\tType.Object({ type: Type.Literal(\"heartbeat\") }),\n\tType.Object({ type: Type.Literal(\"aborted\") }),\n\tType.Object({ type: Type.Literal(\"done\") }),\n]);\n\nexport const ComposerSessionListResponseSchema = Type.Object({\n\tsessions: Type.Array(ComposerSessionSummarySchema),\n});\n\nexport const ComposerSessionUpdateEventSchema = Type.Object({\n\ttype: Type.Literal(\"session_update\"),\n\tsessionId: Type.String(),\n});\n\nexport const ComposerBackgroundTaskLimitBreachSchema = Type.Object({\n\tkind: Type.Union([Type.Literal(\"memory\"), Type.Literal(\"cpu\")]),\n\tlimit: Type.Number(),\n\tactual: Type.Number(),\n});\n\nexport const ComposerBackgroundTaskHistoryEntrySchema = Type.Object({\n\tevent: Type.Union([\n\t\tType.Literal(\"started\"),\n\t\tType.Literal(\"restarted\"),\n\t\tType.Literal(\"exited\"),\n\t\tType.Literal(\"failed\"),\n\t\tType.Literal(\"stopped\"),\n\t]),\n\ttaskId: Type.String(),\n\tstatus: Type.String(),\n\tcommand: Type.String(),\n\ttimestamp: Type.String(),\n\trestartAttempts: Type.Number(),\n\tfailureReason: Type.Optional(Type.String()),\n\tlimitBreach: Type.Optional(ComposerBackgroundTaskLimitBreachSchema),\n});\n\nexport const ComposerBackgroundTaskHealthEntrySchema = Type.Object({\n\tid: Type.String(),\n\tstatus: Type.String(),\n\tsummary: Type.String(),\n\tcommand: Type.String(),\n\trestarts: Type.Optional(Type.String()),\n\tissues: Type.Array(Type.String()),\n\tlastLogLine: Type.Optional(Type.String()),\n\tlogTruncated: Type.Optional(Type.Boolean()),\n\tdurationSeconds: Type.Number(),\n});\n\nexport const ComposerBackgroundTaskHealthSchema = Type.Object({\n\ttotal: Type.Number(),\n\trunning: Type.Number(),\n\trestarting: Type.Number(),\n\tfailed: Type.Number(),\n\tentries: Type.Array(ComposerBackgroundTaskHealthEntrySchema),\n\ttruncated: Type.Boolean(),\n\tnotificationsEnabled: Type.Boolean(),\n\tdetailsRedacted: Type.Boolean(),\n\thistory: Type.Array(ComposerBackgroundTaskHistoryEntrySchema),\n\thistoryTruncated: Type.Boolean(),\n});\n\nexport const ComposerGuardianTargetSchema = Type.Union([\n\tType.Literal(\"staged\"),\n\tType.Literal(\"all\"),\n]);\n\nexport const ComposerGuardianStatusSchema = Type.Union([\n\tType.Literal(\"passed\"),\n\tType.Literal(\"failed\"),\n\tType.Literal(\"skipped\"),\n\tType.Literal(\"error\"),\n]);\n\nexport const ComposerGuardianToolResultSchema = Type.Object({\n\ttool: Type.String(),\n\texitCode: Type.Number(),\n\tstdout: Type.String(),\n\tstderr: Type.String(),\n\tdurationMs: Type.Number(),\n\tskipped: Type.Optional(Type.Boolean()),\n\treason: Type.Optional(Type.String()),\n});\n\nexport const ComposerGuardianRunResultSchema = Type.Object({\n\tstatus: ComposerGuardianStatusSchema,\n\texitCode: Type.Number(),\n\tstartedAt: Type.Number(),\n\tdurationMs: Type.Number(),\n\ttarget: ComposerGuardianTargetSchema,\n\ttrigger: Type.Optional(Type.String()),\n\tfilesScanned: Type.Number(),\n\tfiles: Type.Optional(Type.Array(Type.String())),\n\tsummary: Type.String(),\n\tskipReason: Type.Optional(Type.String()),\n\ttoolResults: Type.Array(ComposerGuardianToolResultSchema),\n});\n\nexport const ComposerGuardianStateSchema = Type.Object({\n\tenabled: Type.Boolean(),\n\tlastRun: Type.Optional(ComposerGuardianRunResultSchema),\n});\n\nexport const ComposerGuardianStatusResponseSchema = Type.Object({\n\tenabled: Type.Boolean(),\n\tstate: ComposerGuardianStateSchema,\n});\n\nexport const ComposerGuardianRunResponseSchema =\n\tComposerGuardianRunResultSchema;\n\nexport const ComposerGuardianConfigRequestSchema = Type.Object({\n\tenabled: Type.Boolean(),\n});\n\nexport const ComposerGuardianConfigResponseSchema = Type.Object({\n\tsuccess: Type.Boolean(),\n\tenabled: Type.Boolean(),\n});\n\nexport const ComposerPlanModeStateSchema = Type.Object({\n\tactive: Type.Boolean(),\n\tfilePath: Type.String(),\n\tsessionId: Type.Optional(Type.String()),\n\tgitBranch: Type.Optional(Type.String()),\n\tgitCommitSha: Type.Optional(Type.String()),\n\tcreatedAt: Type.String(),\n\tupdatedAt: Type.String(),\n\tname: Type.Optional(Type.String()),\n});\n\nexport const ComposerPlanStatusResponseSchema = Type.Object({\n\tstate: Type.Union([ComposerPlanModeStateSchema, Type.Null()]),\n\tcontent: Type.Union([Type.String(), Type.Null()]),\n});\n\nexport const ComposerPlanEnterRequestSchema = Type.Object({\n\taction: Type.Literal(\"enter\"),\n\tname: Type.Optional(Type.String()),\n\tsessionId: Type.Optional(Type.String()),\n});\n\nexport const ComposerPlanExitRequestSchema = Type.Object({\n\taction: Type.Literal(\"exit\"),\n});\n\nexport const ComposerPlanUpdateRequestSchema = Type.Object({\n\taction: Type.Literal(\"update\"),\n\tcontent: Type.String(),\n});\n\nexport const ComposerPlanRequestSchema = Type.Union([\n\tComposerPlanEnterRequestSchema,\n\tComposerPlanExitRequestSchema,\n\tComposerPlanUpdateRequestSchema,\n]);\n\nexport const ComposerPlanActionResponseSchema = Type.Union([\n\tType.Object({\n\t\tsuccess: Type.Boolean(),\n\t\tstate: ComposerPlanModeStateSchema,\n\t}),\n\tType.Object({\n\t\tsuccess: Type.Boolean(),\n\t}),\n]);\n\nexport const ComposerBackgroundSettingsSchema = Type.Object({\n\tnotificationsEnabled: Type.Boolean(),\n\tstatusDetailsEnabled: Type.Boolean(),\n});\n\nexport const ComposerBackgroundStatusSnapshotSchema = Type.Object({\n\trunning: Type.Number(),\n\ttotal: Type.Number(),\n\tfailed: Type.Number(),\n\tdetailsRedacted: Type.Boolean(),\n});\n\nexport const ComposerBackgroundStatusResponseSchema = Type.Object({\n\tsettings: ComposerBackgroundSettingsSchema,\n\tsnapshot: Type.Union([ComposerBackgroundStatusSnapshotSchema, Type.Null()]),\n});\n\nexport const ComposerBackgroundHistoryEntrySchema = Type.Object({\n\ttimestamp: Type.String(),\n\tevent: Type.Union([\n\t\tType.Literal(\"started\"),\n\t\tType.Literal(\"restarted\"),\n\t\tType.Literal(\"exited\"),\n\t\tType.Literal(\"failed\"),\n\t\tType.Literal(\"stopped\"),\n\t]),\n\ttaskId: Type.String(),\n\tcommand: Type.String(),\n\tfailureReason: Type.Optional(Type.String()),\n\tlimitBreach: Type.Optional(ComposerBackgroundTaskLimitBreachSchema),\n});\n\nexport const ComposerBackgroundHistoryResponseSchema = Type.Object({\n\thistory: Type.Array(ComposerBackgroundHistoryEntrySchema),\n\ttruncated: Type.Boolean(),\n});\n\nexport const ComposerBackgroundPathResponseSchema = Type.Object({\n\tpath: Type.String(),\n\texists: Type.Boolean(),\n\toverridden: Type.Boolean(),\n});\n\nexport const ComposerBackgroundUpdateRequestSchema = Type.Object({\n\tenabled: Type.Boolean(),\n});\n\nexport const ComposerBackgroundUpdateResponseSchema = Type.Object({\n\tsuccess: Type.Boolean(),\n\tmessage: Type.String(),\n});\n\nexport const ComposerApprovalModeSchema = Type.Union([\n\tType.Literal(\"auto\"),\n\tType.Literal(\"prompt\"),\n\tType.Literal(\"fail\"),\n]);\n\nexport const ComposerApprovalsStatusResponseSchema = Type.Object({\n\tmode: ComposerApprovalModeSchema,\n\tavailableModes: Type.Array(ComposerApprovalModeSchema),\n});\n\nexport const ComposerApprovalsUpdateRequestSchema = Type.Object({\n\tmode: ComposerApprovalModeSchema,\n\tsessionId: Type.Optional(Type.String()),\n});\n\nexport const ComposerApprovalsUpdateResponseSchema = Type.Object({\n\tsuccess: Type.Boolean(),\n\tmode: ComposerApprovalModeSchema,\n\tmessage: Type.String(),\n});\n\nexport const ComposerFrameworkScopeSchema = Type.Union([\n\tType.Literal(\"user\"),\n\tType.Literal(\"workspace\"),\n]);\n\nexport const ComposerFrameworkStatusResponseSchema = Type.Object({\n\tframework: Type.String(),\n\tsource: Type.String(),\n\tlocked: Type.Boolean(),\n\tscope: ComposerFrameworkScopeSchema,\n});\n\nexport const ComposerFrameworkListEntrySchema = Type.Object({\n\tid: Type.String(),\n\tsummary: Type.String(),\n});\n\nexport const ComposerFrameworkListResponseSchema = Type.Object({\n\tframeworks: Type.Array(ComposerFrameworkListEntrySchema),\n});\n\nexport const ComposerFrameworkUpdateRequestSchema = Type.Object({\n\tframework: Type.Optional(Type.Union([Type.String(), Type.Null()])),\n\tscope: Type.Optional(ComposerFrameworkScopeSchema),\n});\n\nexport const ComposerFrameworkUpdateResponseSchema = Type.Object({\n\tsuccess: Type.Boolean(),\n\tmessage: Type.String(),\n\tframework: Type.Union([Type.String(), Type.Null()]),\n\tsummary: Type.Optional(Type.String()),\n\tscope: Type.Optional(ComposerFrameworkScopeSchema),\n});\n\nexport const ComposerChangeTypeSchema = Type.Union([\n\tType.Literal(\"create\"),\n\tType.Literal(\"modify\"),\n\tType.Literal(\"delete\"),\n]);\n\nexport const ComposerFileChangeSchema = Type.Object({\n\tid: Type.String(),\n\ttype: ComposerChangeTypeSchema,\n\tpath: Type.String(),\n\tbefore: Type.Union([Type.String(), Type.Null()]),\n\tafter: Type.Union([Type.String(), Type.Null()]),\n\ttoolName: Type.String(),\n\ttoolCallId: Type.String(),\n\ttimestamp: Type.Number(),\n\tisGitTracked: Type.Boolean(),\n\tmessageId: Type.Optional(Type.String()),\n});\n\nexport const ComposerUndoRestoreActionSchema = Type.Union([\n\tType.Literal(\"restore\"),\n\tType.Literal(\"delete\"),\n\tType.Literal(\"recreate\"),\n]);\n\nexport const ComposerUndoPreviewSchema = Type.Object({\n\tchanges: Type.Array(ComposerFileChangeSchema),\n\trestores: Type.Array(\n\t\tType.Object({\n\t\t\tpath: Type.String(),\n\t\t\taction: ComposerUndoRestoreActionSchema,\n\t\t}),\n\t),\n\tconflicts: Type.Array(\n\t\tType.Object({\n\t\t\tpath: Type.String(),\n\t\t\treason: Type.String(),\n\t\t}),\n\t),\n});\n\nexport const ComposerUndoCheckpointSchema = Type.Object({\n\tname: Type.String(),\n\tdescription: Type.Optional(Type.String()),\n\tchangeCount: Type.Number(),\n\ttimestamp: Type.Number(),\n});\n\nexport const ComposerUndoStatusResponseSchema = Type.Object({\n\ttotalChanges: Type.Number(),\n\tcanUndo: Type.Boolean(),\n\tcheckpoints: Type.Array(ComposerUndoCheckpointSchema),\n});\n\nexport const ComposerUndoHistoryEntrySchema = Type.Object({\n\tdescription: Type.String(),\n\tfileCount: Type.Number(),\n\ttimestamp: Type.Number(),\n});\n\nexport const ComposerUndoHistoryResponseSchema = Type.Object({\n\thistory: Type.Array(ComposerUndoHistoryEntrySchema),\n});\n\nexport const ComposerUndoRequestSchema = Type.Object({\n\taction: Type.Optional(\n\t\tType.Union([\n\t\t\tType.Literal(\"undo\"),\n\t\t\tType.Literal(\"checkpoint\"),\n\t\t\tType.Literal(\"restore\"),\n\t\t]),\n\t),\n\tcount: Type.Optional(Type.Number()),\n\tpreview: Type.Optional(Type.Boolean()),\n\tforce: Type.Optional(Type.Boolean()),\n\tname: Type.Optional(Type.String()),\n\tdescription: Type.Optional(Type.String()),\n});\n\nexport const ComposerUndoPreviewMessageSchema = Type.Object({\n\tmessage: Type.String(),\n\tfileCount: Type.Optional(Type.Number()),\n\tdescription: Type.Optional(Type.String()),\n});\n\nexport const ComposerUndoPreviewResponseSchema = Type.Object({\n\tpreview: Type.Union([\n\t\tComposerUndoPreviewSchema,\n\t\tComposerUndoPreviewMessageSchema,\n\t]),\n});\n\nexport const ComposerUndoCheckpointSaveResponseSchema = Type.Object({\n\tsuccess: Type.Boolean(),\n\tcheckpoint: Type.Object({\n\t\tname: Type.String(),\n\t\tchangeCount: Type.Number(),\n\t\ttimestamp: Type.Number(),\n\t}),\n});\n\nexport const ComposerUndoCheckpointListResponseSchema = Type.Object({\n\tcheckpoints: Type.Array(ComposerUndoCheckpointSchema),\n});\n\nexport const ComposerUndoOperationResponseSchema = Type.Union([\n\tType.Object({\n\t\tsuccess: Type.Boolean(),\n\t\tundone: Type.Number(),\n\t\terrors: Type.Array(Type.String()),\n\t}),\n\tType.Object({\n\t\tsuccess: Type.Boolean(),\n\t\tmessage: Type.String(),\n\t\tfiles: Type.Optional(Type.Array(Type.String())),\n\t}),\n\tType.Object({\n\t\tmessage: Type.String(),\n\t}),\n\tComposerUndoPreviewResponseSchema,\n\tComposerUndoCheckpointSaveResponseSchema,\n\tComposerUndoCheckpointListResponseSchema,\n]);\n\nexport const ComposerProjectOnboardingStepSchema = Type.Object({\n\tkey: Type.Union([Type.Literal(\"workspace\"), Type.Literal(\"instructions\")]),\n\ttext: Type.String(),\n\tisComplete: Type.Boolean(),\n\tisEnabled: Type.Boolean(),\n});\n\nexport const ComposerProjectOnboardingStateSchema = Type.Object({\n\tshouldShow: Type.Boolean(),\n\tcompleted: Type.Boolean(),\n\tseenCount: Type.Number(),\n\tsteps: Type.Array(ComposerProjectOnboardingStepSchema),\n});\n\nexport const ComposerStatusResponseSchema = Type.Object({\n\tcwd: Type.String(),\n\tgit: Type.Union([\n\t\tType.Object({\n\t\t\tbranch: Type.String(),\n\t\t\tstatus: Type.Object({\n\t\t\t\tmodified: Type.Number(),\n\t\t\t\tadded: Type.Number(),\n\t\t\t\tdeleted: Type.Number(),\n\t\t\t\tuntracked: Type.Number(),\n\t\t\t\ttotal: Type.Number(),\n\t\t\t}),\n\t\t}),\n\t\tType.Null(),\n\t]),\n\tcontext: Type.Object({\n\t\tagentMd: Type.Boolean(),\n\t\tclaudeMd: Type.Boolean(),\n\t}),\n\tonboarding: Type.Optional(ComposerProjectOnboardingStateSchema),\n\tserver: Type.Object({\n\t\tuptime: Type.Number(),\n\t\tversion: Type.String(),\n\t\tstaticCacheMaxAgeSeconds: Type.Optional(Type.Number()),\n\t}),\n\tdatabase: Type.Object({\n\t\tconfigured: Type.Boolean(),\n\t\tconnected: Type.Boolean(),\n\t}),\n\tbackgroundTasks: Type.Union([\n\t\tComposerBackgroundTaskHealthSchema,\n\t\tType.Null(),\n\t]),\n\thooks: Type.Object({\n\t\tasyncInFlight: Type.Number(),\n\t\tconcurrency: Type.Object({\n\t\t\tmax: Type.Number(),\n\t\t\tactive: Type.Number(),\n\t\t\tqueued: Type.Number(),\n\t\t}),\n\t}),\n\tlastUpdated: Type.Number(),\n\tlastLatencyMs: Type.Number(),\n});\n\nexport const ComposerUsageTokenTotalsSchema = Type.Object({\n\tinput: Type.Number(),\n\toutput: Type.Number(),\n\tcacheRead: Type.Number(),\n\tcacheWrite: Type.Number(),\n\ttotal: Type.Number(),\n});\n\nexport const ComposerUsageBreakdownSchema = Type.Object({\n\tcost: Type.Number(),\n\trequests: Type.Number(),\n\ttokens: Type.Number(),\n\ttokensDetailed: ComposerUsageTokenTotalsSchema,\n\tcalls: Type.Number(),\n\tcachedTokens: Type.Number(),\n});\n\nexport const ComposerUsageSummarySchema = Type.Object({\n\ttotalCost: Type.Number(),\n\ttotalRequests: Type.Number(),\n\ttotalTokens: Type.Number(),\n\ttokensDetailed: ComposerUsageTokenTotalsSchema,\n\ttotalTokensDetailed: ComposerUsageTokenTotalsSchema,\n\ttotalTokensBreakdown: ComposerUsageTokenTotalsSchema,\n\ttotalCachedTokens: Type.Number(),\n\tbyProvider: Type.Record(Type.String(), ComposerUsageBreakdownSchema),\n\tbyModel: Type.Record(Type.String(), ComposerUsageBreakdownSchema),\n});\n\nexport const ComposerUsageResponseSchema = Type.Object({\n\tsummary: ComposerUsageSummarySchema,\n\thasData: Type.Boolean(),\n});\n\nexport const ComposerErrorSeveritySchema = Type.Union([\n\tType.Literal(\"error\"),\n\tType.Literal(\"warning\"),\n\tType.Literal(\"info\"),\n]);\n\nexport const ComposerErrorCategorySchema = Type.Union([\n\tType.Literal(\"validation\"),\n\tType.Literal(\"permission\"),\n\tType.Literal(\"network\"),\n\tType.Literal(\"timeout\"),\n\tType.Literal(\"filesystem\"),\n\tType.Literal(\"tool\"),\n\tType.Literal(\"session\"),\n\tType.Literal(\"config\"),\n\tType.Literal(\"api\"),\n\tType.Literal(\"internal\"),\n]);\n\nexport const ComposerErrorPayloadSchema = Type.Object({\n\tcode: Type.String(),\n\tcategory: ComposerErrorCategorySchema,\n\tseverity: Type.Optional(ComposerErrorSeveritySchema),\n\tretriable: Type.Optional(Type.Boolean()),\n\tcontext: Type.Optional(Type.Record(Type.String(), Type.Unknown())),\n});\n\nexport const ComposerErrorResponseSchema = Type.Object({\n\terror: Type.String(),\n\tcode: Type.Optional(Type.String()),\n\tdetails: Type.Optional(\n\t\tType.Array(Type.Record(Type.String(), Type.Unknown())),\n\t),\n\tmaestro: Type.Optional(ComposerErrorPayloadSchema),\n});\n"]}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview Token estimation — single source of truth (TypeScript).
|
|
3
|
+
*
|
|
4
|
+
* Every TS surface that reasons about context-window usage (compaction gates,
|
|
5
|
+
* preflight overflow checks, context optimizers, repo maps, prompt-cache
|
|
6
|
+
* accounting, and every client renderer) MUST import from here instead of
|
|
7
|
+
* re-implementing the bytes/4 heuristic.
|
|
8
|
+
*
|
|
9
|
+
* ## Cross-language parity
|
|
10
|
+
*
|
|
11
|
+
* The constants and formulas mirror the Rust implementation in
|
|
12
|
+
* `packages/tui-rs/src/agent/token_estimation.rs` so that token budgets
|
|
13
|
+
* computed on the native side and the TS side agree. The design follows the
|
|
14
|
+
* same single-source-of-truth discipline as xai-org/grok-build's
|
|
15
|
+
* `xai-token-estimation` crate.
|
|
16
|
+
*
|
|
17
|
+
* @example
|
|
18
|
+
* ```typescript
|
|
19
|
+
* import { estimateTokens, usagePercentage } from "@evalops/contracts";
|
|
20
|
+
*
|
|
21
|
+
* const used = estimateTokens(prompt);
|
|
22
|
+
* const pct = usagePercentage(used, 200_000);
|
|
23
|
+
* ```
|
|
24
|
+
*/
|
|
25
|
+
/** Bytes per token under the rough character-based heuristic. */
|
|
26
|
+
export declare const BYTES_PER_TOKEN = 4;
|
|
27
|
+
/**
|
|
28
|
+
* Per-image approximate token cost when summing low-resolution image patches.
|
|
29
|
+
* Matches the Rust constant and the grok-build default.
|
|
30
|
+
*/
|
|
31
|
+
export declare const IMAGE_TOKEN_ESTIMATE = 765;
|
|
32
|
+
/**
|
|
33
|
+
* Estimate the token count of a string using the shared bytes/4 heuristic.
|
|
34
|
+
*
|
|
35
|
+
* Empty input is `0`; any non-empty input is at least `1` token.
|
|
36
|
+
*/
|
|
37
|
+
export declare function estimateTokens(text: string): number;
|
|
38
|
+
/**
|
|
39
|
+
* Estimate the token count of a value by serializing it to JSON first.
|
|
40
|
+
* Returns `0` if the value cannot be serialized.
|
|
41
|
+
*/
|
|
42
|
+
export declare function estimateTokensFromJson(value: unknown): number;
|
|
43
|
+
/**
|
|
44
|
+
* Inverse of {@link estimateTokens}: convert a token budget into a character
|
|
45
|
+
* budget. Used by callers that size text passages against a model's context
|
|
46
|
+
* window.
|
|
47
|
+
*/
|
|
48
|
+
export declare function estimateChars(tokens: number): number;
|
|
49
|
+
/** Token estimate for `imageCount` images at {@link IMAGE_TOKEN_ESTIMATE} each. */
|
|
50
|
+
export declare function estimateImageTokens(imageCount: number): number;
|
|
51
|
+
/**
|
|
52
|
+
* Usage percentage of a context window, clamped to `[0, 100]`.
|
|
53
|
+
* Returns `0` when capacity is non-positive.
|
|
54
|
+
*/
|
|
55
|
+
export declare function usagePercentage(used: number, capacity: number): number;
|
|
56
|
+
//# sourceMappingURL=token-estimation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"token-estimation.d.ts","sourceRoot":"","sources":["../src/token-estimation.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AAEH,iEAAiE;AACjE,eAAO,MAAM,eAAe,IAAI,CAAC;AAEjC;;;GAGG;AACH,eAAO,MAAM,oBAAoB,MAAM,CAAC;AAExC;;;;GAIG;AACH,wBAAgB,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAKnD;AAED;;;GAGG;AACH,wBAAgB,sBAAsB,CAAC,KAAK,EAAE,OAAO,GAAG,MAAM,CAQ7D;AAED;;;;GAIG;AACH,wBAAgB,aAAa,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAEpD;AAED,mFAAmF;AACnF,wBAAgB,mBAAmB,CAAC,UAAU,EAAE,MAAM,GAAG,MAAM,CAE9D;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,CAYtE"}
|