@bingjiang0611/rotom 0.1.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +61 -0
- package/THIRD_PARTY_NOTICES.md +94 -0
- package/bin/pi-agent +355 -0
- package/bin/rotom +24 -0
- package/extensions/browser/browser-relay.ts +440 -0
- package/extensions/browser/chrome-extension/coordinate-click.js +48 -0
- package/extensions/browser/chrome-extension/full-read.js +113 -0
- package/extensions/browser/chrome-extension/interaction-observation.js +5 -0
- package/extensions/browser/chrome-extension/interaction-scroll-target.js +54 -0
- package/extensions/browser/chrome-extension/interaction-target-state.js +88 -0
- package/extensions/browser/chrome-extension/manifest.json +23 -0
- package/extensions/browser/chrome-extension/operation-chrome.js +18 -0
- package/extensions/browser/chrome-extension/operation-guard.js +12 -0
- package/extensions/browser/chrome-extension/page-alerts.js +89 -0
- package/extensions/browser/chrome-extension/relay-deadline.js +55 -0
- package/extensions/browser/chrome-extension/rendered-text.js +42 -0
- package/extensions/browser/chrome-extension/scoped-ax-ref.js +14 -0
- package/extensions/browser/chrome-extension/service-worker.js +1244 -0
- package/extensions/browser/chrome-extension/shared-tab-group.js +18 -0
- package/extensions/browser/chrome-extension/tab-list-status.js +58 -0
- package/extensions/browser/chrome-extension/window-open-correlation.js +15 -0
- package/extensions/browser/index.ts +505 -0
- package/extensions/browser/install-chrome-relay.mjs +216 -0
- package/extensions/browser/native-host.mjs +192 -0
- package/extensions/browser/relay-protocol.mjs +19 -0
- package/extensions/browser/relay-setup-probe.mjs +38 -0
- package/extensions/coding-policy/index.ts +38 -0
- package/extensions/coding-policy/pi-runtime-drift.ts +75 -0
- package/extensions/coding-policy/repair-hints.ts +252 -0
- package/extensions/observability/dashboard.mjs +788 -0
- package/extensions/observability/index.ts +677 -0
- package/extensions/third-party/ask-continuation.ts +78 -0
- package/extensions/third-party/computer-use-recovery.ts +339 -0
- package/extensions/third-party/deferred-tools.ts +197 -0
- package/extensions/third-party/index.ts +84 -0
- package/extensions/third-party/node_modules/.package-lock.json +175 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/LICENSE +21 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/README.md +92 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/assets/reference/img.jpg +0 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/architecture.md +158 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/configuration.md +92 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/development.md +123 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/linux.md +65 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/troubleshooting.md +156 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/usage.md +140 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/windows-bridge.md +65 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/extensions/computer-use.ts +203 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/Cargo.lock +1204 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/Cargo.toml +18 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/atspi.rs +640 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/error.rs +65 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/lib.rs +11 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/main.rs +1074 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/protocol.rs +49 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/state.rs +293 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/wayland.rs +89 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/x11.rs +909 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/tests/protocol_tests.rs +73 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/macos/bridge.swift +3611 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/Cargo.lock +396 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/Cargo.toml +30 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/capture.rs +518 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/error.rs +81 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/input.rs +501 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/lib.rs +16 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/main.rs +1683 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/protocol.rs +53 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/refs.rs +237 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/state.rs +55 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/uia.rs +1252 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/window.rs +718 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/tests/protocol_tests.rs +252 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/tests/refs_tests.rs +86 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/tests/state_tests.rs +33 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/package.json +84 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/linux/arm64/linux-bridge +0 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/linux/x64/linux-bridge +0 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/macos/arm64/bridge +0 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/macos/universal/pi-computer-use.app/Contents/Info.plist +13 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/macos/universal/pi-computer-use.app/Contents/MacOS/bridge +0 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/macos/universal/pi-computer-use.app/Contents/_CodeSignature/CodeResources +115 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/macos/x64/bridge +0 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/scripts/build-native.mjs +277 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/scripts/setup-helper.mjs +617 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/actions.ts +130 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/bridge.ts +2423 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/cdp.ts +658 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/config.ts +113 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/contract.ts +104 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/note.ts +195 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/outline.ts +651 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/output.ts +134 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/permissions.ts +111 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/architecture.ts +23 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/coerce.ts +16 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/index.ts +59 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/linux/backend.ts +186 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/linux/helper.ts +238 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/backend.ts +131 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/browser.ts +110 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/helper-path.d.mts +9 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/helper-path.mjs +34 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/helper.ts +291 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/permissions.ts +146 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/types.ts +222 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/windows/backend.ts +142 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/windows/helper.ts +140 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/runtime.ts +129 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/state.ts +146 -0
- package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/view.ts +147 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/LICENSE +21 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/README.md +94 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/ask-user-question.ts +336 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/config.ts +75 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/docs/configuration.md +120 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/docs/hosts.md +93 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/docs/keyboard.md +103 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/docs/localization.md +83 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/docs/tool-schema.md +121 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/events.ts +55 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/index.ts +54 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/de.json +31 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/en.json +31 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/es.json +31 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/fr.json +31 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/pt-BR.json +31 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/pt.json +31 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/ru.json +31 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/uk.json +31 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/zh.json +33 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/package.json +100 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/reconcile.ts +47 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/rpc-fallback.ts +166 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/build-questionnaire.ts +323 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/external-editor.ts +62 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/i18n-bridge.ts +51 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/key-router.ts +310 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/questionnaire-session.ts +250 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/row-intent.ts +143 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/selectors/contract.ts +24 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/selectors/derivations.ts +40 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/selectors/focus.ts +17 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/selectors/projections.ts +99 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/state-reducer.ts +331 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/state.ts +57 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/tool/format-answer.ts +29 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/tool/response-envelope.ts +47 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/tool/types.ts +145 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/tool/validate-questionnaire.ts +56 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/component-binding.ts +45 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/inline-input.ts +66 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/multi-select-view.ts +177 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/option-list-view.ts +68 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/preview/markdown-content-cache.ts +77 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/preview/preview-block-renderer.ts +109 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/preview/preview-box-renderer.ts +86 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/preview/preview-layout-decider.ts +207 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/preview/preview-pane.ts +233 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/submit-picker.ts +65 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/tab-bar.ts +57 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/wrapping-select.ts +288 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/dialog-builder.ts +224 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/props-adapter.ts +117 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/stateful-view.ts +24 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/tab-components.ts +16 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/tab-content-strategy.ts +249 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-config/CHANGELOG.md +118 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-config/README.md +70 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-config/config.ts +309 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-config/index.ts +13 -0
- package/extensions/third-party/node_modules/@juicesharp/rpiv-config/package.json +39 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/LICENSE +21 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/README.md +361 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/package.json +56 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/accounting.ts +106 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/command-registration.ts +129 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/command.ts +151 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/commands.ts +482 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/errors.ts +176 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/goal.ts +52 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/index.ts +1 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/lifecycle.ts +575 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/markers.ts +25 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/menu.ts +685 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/persistence.ts +283 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/prompts.ts +115 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/run-protocol.ts +380 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/runtime.ts +1493 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/safety.ts +78 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/settings-ui.ts +515 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/settings.ts +201 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/tool-policy.ts +180 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/tools.ts +416 -0
- package/extensions/third-party/node_modules/@narumitw/pi-goal/src/wait.ts +75 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/LICENSE +21 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/README.md +739 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/browse.d.ts +5 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/browse.js +356 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/contracts.d.ts +77 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/contracts.js +10 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/document-formatting.d.ts +13 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/document-formatting.js +181 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/document-sanitization.d.ts +1 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/document-sanitization.js +19 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/dynamic-border.d.ts +8 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/dynamic-border.js +11 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/index.d.ts +11 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/index.js +618 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/input.d.ts +8 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/input.js +94 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/mermaid.d.ts +8 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/mermaid.js +106 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/multi-select.d.ts +2 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/multi-select.js +233 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/rendering.d.ts +13 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/rendering.js +50 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/review.d.ts +9 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/review.js +203 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/selection-controller.d.ts +17 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/selection-controller.js +38 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/syntax-highlighting.d.ts +4 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/syntax-highlighting.js +227 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/task-loader.d.ts +19 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/task-loader.js +55 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/confirmation.d.ts +30 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/confirmation.js +118 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/custom-interaction.d.ts +40 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/custom-interaction.js +174 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/index.d.ts +11 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/index.js +10 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/interaction-hints.d.ts +14 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/interaction-hints.js +33 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/interaction.d.ts +40 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/interaction.js +169 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/live-choice.d.ts +63 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/live-choice.js +408 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/model.d.ts +4 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/model.js +113 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/navigator.d.ts +10 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/navigator.js +58 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/runtime.d.ts +27 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/runtime.js +479 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/task.d.ts +29 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/task.js +158 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/terminal-text.d.ts +6 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/terminal-text.js +104 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/index.d.ts +3 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/index.js +2 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/rpc-harness.d.ts +2 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/rpc-harness.js +134 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/tui-harness.d.ts +2 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/tui-harness.js +314 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/types.d.ts +72 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/types.js +1 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/text.d.ts +2 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/text.js +9 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/types.d.ts +192 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/types.js +1 -0
- package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/package.json +67 -0
- package/extensions/third-party/node_modules/acorn/CHANGELOG.md +998 -0
- package/extensions/third-party/node_modules/acorn/LICENSE +21 -0
- package/extensions/third-party/node_modules/acorn/README.md +309 -0
- package/extensions/third-party/node_modules/acorn/bin/acorn +4 -0
- package/extensions/third-party/node_modules/acorn/dist/acorn.d.mts +897 -0
- package/extensions/third-party/node_modules/acorn/dist/acorn.d.ts +897 -0
- package/extensions/third-party/node_modules/acorn/dist/acorn.js +6342 -0
- package/extensions/third-party/node_modules/acorn/dist/acorn.mjs +6313 -0
- package/extensions/third-party/node_modules/acorn/dist/bin.js +90 -0
- package/extensions/third-party/node_modules/acorn/package.json +50 -0
- package/extensions/third-party/node_modules/grok-mermaid/CHANGELOG.md +46 -0
- package/extensions/third-party/node_modules/grok-mermaid/LICENSE +205 -0
- package/extensions/third-party/node_modules/grok-mermaid/README.md +191 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/ansi.d.ts +16 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/ansi.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/ansi.js +23 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/ansi.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/canvas.d.ts +87 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/canvas.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/canvas.js +366 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/canvas.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/graph.d.ts +74 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/graph.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/graph.js +91 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/graph.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/index.d.ts +32 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/index.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/index.js +100 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/index.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/labels.d.ts +62 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/labels.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/labels.js +324 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/labels.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/layout-seq.d.ts +12 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/layout-seq.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/layout-seq.js +194 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/layout-seq.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/layout.d.ts +87 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/layout.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/layout.js +881 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/layout.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/parse.d.ts +83 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/parse.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/parse.js +1151 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/parse.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/source-box.d.ts +18 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/source-box.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/source-box.js +78 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/source-box.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/types.d.ts +42 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/types.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/types.js +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/types.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/width-data.d.ts +2 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/width-data.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/width-data.js +994 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/width-data.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/width.d.ts +18 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/width.d.ts.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/width.js +76 -0
- package/extensions/third-party/node_modules/grok-mermaid/dist/width.js.map +1 -0
- package/extensions/third-party/node_modules/grok-mermaid/package.json +49 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/ansi.ts +34 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/canvas.ts +373 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/graph.ts +142 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/index.ts +104 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/labels.ts +326 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/layout-seq.ts +203 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/layout.ts +1015 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/parse.ts +1189 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/source-box.ts +89 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/types.ts +43 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/width-data.ts +993 -0
- package/extensions/third-party/node_modules/grok-mermaid/src/width.ts +74 -0
- package/extensions/third-party/node_modules/highlight.js/CHANGES.md +3787 -0
- package/extensions/third-party/node_modules/highlight.js/LICENSE +29 -0
- package/extensions/third-party/node_modules/highlight.js/README.md +521 -0
- package/extensions/third-party/node_modules/highlight.js/SECURITY.md +19 -0
- package/extensions/third-party/node_modules/highlight.js/SUPPORTED_LANGUAGES.md +310 -0
- package/extensions/third-party/node_modules/highlight.js/VERSION_10_UPGRADE.md +58 -0
- package/extensions/third-party/node_modules/highlight.js/VERSION_11_UPGRADE.md +203 -0
- package/extensions/third-party/node_modules/highlight.js/es/common.d.ts +3 -0
- package/extensions/third-party/node_modules/highlight.js/es/common.js +4 -0
- package/extensions/third-party/node_modules/highlight.js/es/core.d.ts +3 -0
- package/extensions/third-party/node_modules/highlight.js/es/core.js +4 -0
- package/extensions/third-party/node_modules/highlight.js/es/index.js +4 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/1c.js +544 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/1c.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/abnf.js +83 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/abnf.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/accesslog.js +92 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/accesslog.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/actionscript.js +153 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/actionscript.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ada.js +266 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ada.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/angelscript.js +178 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/angelscript.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/apache.js +105 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/apache.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/applescript.js +149 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/applescript.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/arcade.js +428 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/arcade.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/arduino.js +1040 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/arduino.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/armasm.js +124 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/armasm.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/asciidoc.js +261 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/asciidoc.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/aspectj.js +231 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/aspectj.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/autohotkey.js +75 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/autohotkey.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/autoit.js +178 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/autoit.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/avrasm.js +78 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/avrasm.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/awk.js +68 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/awk.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/axapta.js +188 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/axapta.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/bash.js +409 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/bash.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/basic.js +236 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/basic.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/bnf.js +39 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/bnf.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/brainfuck.js +54 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/brainfuck.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/c.js +411 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/c.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/cal.js +160 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/cal.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/capnproto.js +99 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/capnproto.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ceylon.js +140 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ceylon.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/clean.js +67 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/clean.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/clojure-repl.js +27 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/clojure-repl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/clojure.js +184 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/clojure.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/cmake.js +68 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/cmake.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/coffeescript.js +368 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/coffeescript.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/coq.js +445 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/coq.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/cos.js +140 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/cos.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/cpp.js +637 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/cpp.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/crmsh.js +100 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/crmsh.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/crystal.js +329 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/crystal.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/csharp.js +418 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/csharp.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/csp.js +65 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/csp.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/css.js +960 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/css.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/d.js +272 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/d.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dart.js +293 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dart.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/delphi.js +246 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/delphi.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/diff.js +65 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/diff.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/django.js +75 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/django.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dns.js +133 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dns.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dockerfile.js +44 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dockerfile.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dos.js +165 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dos.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dsconfig.js +66 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dsconfig.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dts.js +157 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dts.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dust.js +47 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/dust.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ebnf.js +54 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ebnf.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/elixir.js +286 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/elixir.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/elm.js +143 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/elm.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/erb.js +29 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/erb.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/erlang-repl.js +54 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/erlang-repl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/erlang.js +235 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/erlang.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/excel.js +580 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/excel.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/fix.js +39 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/fix.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/flix.js +79 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/flix.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/fortran.js +574 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/fortran.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/freedesktop.js +113 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/freedesktop.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/fsharp.js +639 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/fsharp.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gams.js +181 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gams.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gauss.js +306 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gauss.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gcode.js +189 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gcode.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gherkin.js +120 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gherkin.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/glsl.js +128 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/glsl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gml.js +3130 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gml.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/go.js +160 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/go.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/golo.js +81 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/golo.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gradle.js +190 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/gradle.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/graphql.js +78 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/graphql.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/groovy.js +225 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/groovy.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/haml.js +113 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/haml.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/handlebars.js +258 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/handlebars.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/haskell.js +217 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/haskell.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/haxe.js +167 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/haxe.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/hsp.js +59 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/hsp.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/http.js +97 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/http.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/hy.js +137 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/hy.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/inform7.js +70 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/inform7.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ini.js +121 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ini.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/irpf90.js +107 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/irpf90.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/isbl.js +3205 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/isbl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/java.js +314 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/java.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/javascript.js +772 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/javascript.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/jboss-cli.js +63 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/jboss-cli.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/json.js +63 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/json.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/julia-repl.js +51 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/julia-repl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/julia.js +442 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/julia.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/kotlin.js +288 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/kotlin.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/lasso.js +171 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/lasso.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/latex.js +278 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/latex.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ldif.js +31 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ldif.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/leaf.js +98 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/leaf.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/less.js +1061 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/less.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/lisp.js +139 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/lisp.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/livecodeserver.js +173 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/livecodeserver.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/livescript.js +380 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/livescript.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/llvm.js +136 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/llvm.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/lsl.js +76 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/lsl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/lua.js +81 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/lua.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/makefile.js +89 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/makefile.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/markdown.js +250 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/markdown.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mathematica.js +7359 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mathematica.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/matlab.js +107 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/matlab.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/maxima.js +414 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/maxima.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mel.js +235 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mel.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mercury.js +108 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mercury.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mipsasm.js +104 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mipsasm.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mizar.js +27 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mizar.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mojolicious.js +36 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/mojolicious.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/monkey.js +184 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/monkey.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/moonscript.js +141 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/moonscript.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/n1ql.js +365 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/n1ql.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/nestedtext.js +83 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/nestedtext.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/nginx.js +153 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/nginx.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/nim.js +187 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/nim.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/nix.js +372 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/nix.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/node-repl.js +33 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/node-repl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/nsis.js +591 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/nsis.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/objectivec.js +253 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/objectivec.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ocaml.js +83 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ocaml.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/openscad.js +77 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/openscad.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/oxygene.js +87 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/oxygene.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/parser3.js +55 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/parser3.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/perl.js +504 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/perl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/pf.js +60 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/pf.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/pgsql.js +525 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/pgsql.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/php-template.js +57 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/php-template.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/php.js +635 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/php.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/plaintext.js +19 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/plaintext.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/pony.js +90 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/pony.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/powershell.js +317 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/powershell.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/processing.js +434 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/processing.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/profile.js +43 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/profile.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/prolog.js +97 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/prolog.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/properties.js +68 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/properties.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/protobuf.js +79 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/protobuf.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/puppet.js +146 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/puppet.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/purebasic.js +100 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/purebasic.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/python-repl.js +32 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/python-repl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/python.js +441 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/python.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/q.js +38 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/q.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/qml.js +189 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/qml.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/r.js +257 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/r.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/reasonml.js +142 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/reasonml.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/rib.js +37 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/rib.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/roboconf.js +82 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/roboconf.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/routeros.js +164 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/routeros.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/rsl.js +149 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/rsl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ruby.js +449 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ruby.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ruleslanguage.js +76 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/ruleslanguage.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/rust.js +340 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/rust.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/sas.js +557 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/sas.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/scala.js +214 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/scala.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/scheme.js +196 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/scheme.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/scilab.js +73 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/scilab.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/scss.js +950 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/scss.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/shell.js +33 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/shell.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/smali.js +126 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/smali.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/smalltalk.js +69 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/smalltalk.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/sml.js +75 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/sml.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/sqf.js +2828 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/sqf.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/sql.js +693 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/sql.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/stan.js +521 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/stan.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/stata.js +53 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/stata.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/step21.js +67 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/step21.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/stylus.js +1010 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/stylus.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/subunit.js +44 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/subunit.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/swift.js +984 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/swift.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/taggerscript.js +59 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/taggerscript.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/tap.js +47 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/tap.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/tcl.js +191 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/tcl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/thrift.js +77 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/thrift.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/tp.js +172 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/tp.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/twig.js +260 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/twig.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/typescript.js +916 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/typescript.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vala.js +61 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vala.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vbnet.js +157 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vbnet.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vbscript-html.js +24 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vbscript-html.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vbscript.js +220 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vbscript.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/verilog.js +550 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/verilog.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vhdl.js +216 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vhdl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vim.js +129 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/vim.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/wasm.js +139 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/wasm.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/wren.js +302 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/wren.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/x86asm.js +153 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/x86asm.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/xl.js +205 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/xl.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/xml.js +234 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/xml.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/xquery.js +360 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/xquery.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/yaml.js +213 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/yaml.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/zephir.js +129 -0
- package/extensions/third-party/node_modules/highlight.js/es/languages/zephir.js.js +11 -0
- package/extensions/third-party/node_modules/highlight.js/es/package.json +1 -0
- package/extensions/third-party/node_modules/highlight.js/es/utils/regex.js +158 -0
- package/extensions/third-party/node_modules/highlight.js/lib/common.d.ts +3 -0
- package/extensions/third-party/node_modules/highlight.js/lib/common.js +42 -0
- package/extensions/third-party/node_modules/highlight.js/lib/core.d.ts +3 -0
- package/extensions/third-party/node_modules/highlight.js/lib/core.js +2603 -0
- package/extensions/third-party/node_modules/highlight.js/lib/index.js +199 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/1c.js +544 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/1c.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/abnf.js +83 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/abnf.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/accesslog.js +92 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/accesslog.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/actionscript.js +153 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/actionscript.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ada.js +266 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ada.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/angelscript.js +178 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/angelscript.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/apache.js +105 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/apache.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/applescript.js +149 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/applescript.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/arcade.js +428 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/arcade.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/arduino.js +1040 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/arduino.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/armasm.js +124 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/armasm.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/asciidoc.js +261 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/asciidoc.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/aspectj.js +231 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/aspectj.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/autohotkey.js +75 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/autohotkey.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/autoit.js +178 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/autoit.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/avrasm.js +78 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/avrasm.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/awk.js +68 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/awk.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/axapta.js +188 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/axapta.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/bash.js +409 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/bash.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/basic.js +236 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/basic.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/bnf.js +39 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/bnf.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/brainfuck.js +54 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/brainfuck.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/c.js +411 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/c.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/cal.js +160 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/cal.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/capnproto.js +99 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/capnproto.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ceylon.js +140 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ceylon.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/clean.js +67 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/clean.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/clojure-repl.js +27 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/clojure-repl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/clojure.js +184 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/clojure.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/cmake.js +68 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/cmake.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/coffeescript.js +368 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/coffeescript.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/coq.js +445 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/coq.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/cos.js +140 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/cos.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/cpp.js +637 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/cpp.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/crmsh.js +100 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/crmsh.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/crystal.js +329 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/crystal.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/csharp.js +418 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/csharp.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/csp.js +65 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/csp.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/css.js +960 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/css.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/d.js +272 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/d.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dart.js +293 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dart.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/delphi.js +246 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/delphi.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/diff.js +65 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/diff.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/django.js +75 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/django.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dns.js +133 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dns.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dockerfile.js +44 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dockerfile.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dos.js +165 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dos.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dsconfig.js +66 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dsconfig.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dts.js +157 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dts.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dust.js +47 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/dust.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ebnf.js +54 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ebnf.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/elixir.js +286 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/elixir.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/elm.js +143 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/elm.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/erb.js +29 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/erb.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/erlang-repl.js +54 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/erlang-repl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/erlang.js +235 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/erlang.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/excel.js +580 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/excel.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/fix.js +39 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/fix.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/flix.js +79 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/flix.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/fortran.js +574 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/fortran.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/freedesktop.js +113 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/freedesktop.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/fsharp.js +639 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/fsharp.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gams.js +181 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gams.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gauss.js +306 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gauss.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gcode.js +189 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gcode.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gherkin.js +120 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gherkin.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/glsl.js +128 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/glsl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gml.js +3130 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gml.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/go.js +160 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/go.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/golo.js +81 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/golo.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gradle.js +190 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/gradle.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/graphql.js +78 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/graphql.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/groovy.js +225 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/groovy.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/haml.js +113 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/haml.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/handlebars.js +258 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/handlebars.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/haskell.js +217 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/haskell.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/haxe.js +167 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/haxe.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/hsp.js +59 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/hsp.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/http.js +97 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/http.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/hy.js +137 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/hy.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/inform7.js +70 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/inform7.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ini.js +121 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ini.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/irpf90.js +107 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/irpf90.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/isbl.js +3205 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/isbl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/java.js +314 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/java.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/javascript.js +772 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/javascript.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/jboss-cli.js +63 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/jboss-cli.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/json.js +63 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/json.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/julia-repl.js +51 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/julia-repl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/julia.js +442 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/julia.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/kotlin.js +288 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/kotlin.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/lasso.js +171 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/lasso.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/latex.js +278 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/latex.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ldif.js +31 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ldif.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/leaf.js +98 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/leaf.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/less.js +1061 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/less.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/lisp.js +139 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/lisp.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/livecodeserver.js +173 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/livecodeserver.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/livescript.js +380 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/livescript.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/llvm.js +136 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/llvm.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/lsl.js +76 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/lsl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/lua.js +81 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/lua.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/makefile.js +89 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/makefile.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/markdown.js +250 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/markdown.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mathematica.js +7359 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mathematica.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/matlab.js +107 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/matlab.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/maxima.js +414 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/maxima.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mel.js +235 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mel.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mercury.js +108 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mercury.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mipsasm.js +104 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mipsasm.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mizar.js +27 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mizar.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mojolicious.js +36 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/mojolicious.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/monkey.js +184 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/monkey.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/moonscript.js +141 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/moonscript.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/n1ql.js +365 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/n1ql.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/nestedtext.js +83 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/nestedtext.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/nginx.js +153 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/nginx.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/nim.js +187 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/nim.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/nix.js +372 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/nix.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/node-repl.js +33 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/node-repl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/nsis.js +591 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/nsis.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/objectivec.js +253 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/objectivec.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ocaml.js +83 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ocaml.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/openscad.js +77 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/openscad.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/oxygene.js +87 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/oxygene.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/parser3.js +55 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/parser3.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/perl.js +504 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/perl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/pf.js +60 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/pf.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/pgsql.js +525 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/pgsql.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/php-template.js +57 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/php-template.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/php.js +635 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/php.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/plaintext.js +19 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/plaintext.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/pony.js +90 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/pony.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/powershell.js +317 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/powershell.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/processing.js +434 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/processing.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/profile.js +43 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/profile.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/prolog.js +97 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/prolog.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/properties.js +68 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/properties.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/protobuf.js +79 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/protobuf.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/puppet.js +146 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/puppet.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/purebasic.js +100 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/purebasic.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/python-repl.js +32 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/python-repl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/python.js +441 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/python.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/q.js +38 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/q.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/qml.js +189 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/qml.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/r.js +257 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/r.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/reasonml.js +142 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/reasonml.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/rib.js +37 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/rib.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/roboconf.js +82 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/roboconf.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/routeros.js +164 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/routeros.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/rsl.js +149 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/rsl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ruby.js +449 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ruby.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ruleslanguage.js +76 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/ruleslanguage.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/rust.js +340 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/rust.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/sas.js +557 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/sas.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/scala.js +214 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/scala.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/scheme.js +196 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/scheme.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/scilab.js +73 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/scilab.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/scss.js +950 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/scss.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/shell.js +33 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/shell.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/smali.js +126 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/smali.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/smalltalk.js +69 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/smalltalk.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/sml.js +75 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/sml.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/sqf.js +2828 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/sqf.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/sql.js +693 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/sql.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/stan.js +521 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/stan.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/stata.js +53 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/stata.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/step21.js +67 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/step21.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/stylus.js +1010 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/stylus.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/subunit.js +44 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/subunit.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/swift.js +984 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/swift.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/taggerscript.js +59 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/taggerscript.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/tap.js +47 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/tap.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/tcl.js +191 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/tcl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/thrift.js +77 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/thrift.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/tp.js +172 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/tp.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/twig.js +260 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/twig.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/typescript.js +916 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/typescript.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vala.js +61 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vala.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vbnet.js +157 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vbnet.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vbscript-html.js +24 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vbscript-html.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vbscript.js +220 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vbscript.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/verilog.js +550 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/verilog.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vhdl.js +216 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vhdl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vim.js +129 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/vim.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/wasm.js +139 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/wasm.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/wren.js +302 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/wren.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/x86asm.js +153 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/x86asm.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/xl.js +205 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/xl.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/xml.js +234 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/xml.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/xquery.js +360 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/xquery.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/yaml.js +213 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/yaml.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/zephir.js +129 -0
- package/extensions/third-party/node_modules/highlight.js/lib/languages/zephir.js.js +10 -0
- package/extensions/third-party/node_modules/highlight.js/package.json +119 -0
- package/extensions/third-party/node_modules/highlight.js/scss/1c-light.scss +107 -0
- package/extensions/third-party/node_modules/highlight.js/scss/a11y-dark.scss +94 -0
- package/extensions/third-party/node_modules/highlight.js/scss/a11y-light.scss +94 -0
- package/extensions/third-party/node_modules/highlight.js/scss/agate.scss +127 -0
- package/extensions/third-party/node_modules/highlight.js/scss/an-old-hope.scss +75 -0
- package/extensions/third-party/node_modules/highlight.js/scss/androidstudio.scss +60 -0
- package/extensions/third-party/node_modules/highlight.js/scss/arduino-light.scss +78 -0
- package/extensions/third-party/node_modules/highlight.js/scss/arta.scss +66 -0
- package/extensions/third-party/node_modules/highlight.js/scss/ascetic.scss +45 -0
- package/extensions/third-party/node_modules/highlight.js/scss/atom-one-dark-reasonable.scss +105 -0
- package/extensions/third-party/node_modules/highlight.js/scss/atom-one-dark.scss +90 -0
- package/extensions/third-party/node_modules/highlight.js/scss/atom-one-light.scss +90 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/3024.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/apathy.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/apprentice.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/ashes.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-cave-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-cave.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-dune-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-dune.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-estuary-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-estuary.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-forest-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-forest.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-heath-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-heath.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-lakeside-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-lakeside.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-plateau-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-plateau.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-savanna-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-savanna.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-seaside-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-seaside.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-sulphurpool-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-sulphurpool.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/atlas.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/bespin.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-bathory.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-burzum.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-dark-funeral.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-gorgoroth.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-immortal.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-khold.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-marduk.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-mayhem.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-nile.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-venom.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/brewer.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/bright.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/brogrammer.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/brush-trees-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/brush-trees.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/chalk.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/circus.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/classic-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/classic-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/codeschool.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/colors.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/cupcake.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/cupertino.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/danqing.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/darcula.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/dark-violet.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/darkmoss.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/darktooth.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/decaf.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/default-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/default-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/dirtysea.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/dracula.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/edge-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/edge-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/eighties.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/embers.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/equilibrium-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/equilibrium-gray-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/equilibrium-gray-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/equilibrium-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/espresso.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/eva-dim.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/eva.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/flat.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/framer.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/fruit-soda.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/gigavolt.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/github.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/google-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/google-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/grayscale-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/grayscale-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/green-screen.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-dark-hard.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-dark-medium.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-dark-pale.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-dark-soft.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-light-hard.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-light-medium.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-light-soft.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/hardcore.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/harmonic16-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/harmonic16-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/heetch-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/heetch-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/helios.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/hopscotch.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/horizon-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/horizon-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/humanoid-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/humanoid-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/ia-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/ia-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/icy-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/ir-black.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/isotope.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/kimber.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/london-tube.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/macintosh.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/marrakesh.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/materia.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/material-darker.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/material-lighter.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/material-palenight.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/material-vivid.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/material.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/mellow-purple.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/mexico-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/mocha.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/monokai.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/nebula.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/nord.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/nova.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/ocean.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/oceanicnext.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/one-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/onedark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/outrun-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/papercolor-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/papercolor-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/paraiso.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/pasque.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/phd.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/pico.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/pop.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/porple.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/qualia.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/railscasts.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/rebecca.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/ros-pine-dawn.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/ros-pine-moon.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/ros-pine.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/sagelight.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/sandcastle.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/seti-ui.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/shapeshifter.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/silk-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/silk-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/snazzy.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/solar-flare-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/solar-flare.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/solarized-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/solarized-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/spacemacs.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/summercamp.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/summerfruit-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/summerfruit-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/synth-midnight-terminal-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/synth-midnight-terminal-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/tango.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/tender.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/tomorrow-night.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/tomorrow.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/twilight.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/unikitty-dark.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/unikitty-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/vulcan.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-10-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-10.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-95-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-95.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-high-contrast-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-high-contrast.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-nt-light.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-nt.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/woodland.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/xcode-dusk.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/base16/zenburn.scss +163 -0
- package/extensions/third-party/node_modules/highlight.js/scss/brown-paper.scss +63 -0
- package/extensions/third-party/node_modules/highlight.js/scss/codepen-embed.scss +57 -0
- package/extensions/third-party/node_modules/highlight.js/scss/color-brewer.scss +66 -0
- package/extensions/third-party/node_modules/highlight.js/scss/cybertopia-cherry.scss +104 -0
- package/extensions/third-party/node_modules/highlight.js/scss/cybertopia-dimmer.scss +104 -0
- package/extensions/third-party/node_modules/highlight.js/scss/cybertopia-icecap.scss +104 -0
- package/extensions/third-party/node_modules/highlight.js/scss/cybertopia-saturated.scss +104 -0
- package/extensions/third-party/node_modules/highlight.js/scss/dark.scss +62 -0
- package/extensions/third-party/node_modules/highlight.js/scss/default.scss +117 -0
- package/extensions/third-party/node_modules/highlight.js/scss/devibeans.scss +90 -0
- package/extensions/third-party/node_modules/highlight.js/scss/docco.scss +83 -0
- package/extensions/third-party/node_modules/highlight.js/scss/equinox.scss +71 -0
- package/extensions/third-party/node_modules/highlight.js/scss/far.scss +67 -0
- package/extensions/third-party/node_modules/highlight.js/scss/felipec.scss +94 -0
- package/extensions/third-party/node_modules/highlight.js/scss/foundation.scss +80 -0
- package/extensions/third-party/node_modules/highlight.js/scss/github-dark-dimmed.scss +117 -0
- package/extensions/third-party/node_modules/highlight.js/scss/github-dark.scss +118 -0
- package/extensions/third-party/node_modules/highlight.js/scss/github.scss +118 -0
- package/extensions/third-party/node_modules/highlight.js/scss/gml.scss +72 -0
- package/extensions/third-party/node_modules/highlight.js/scss/googlecode.scss +79 -0
- package/extensions/third-party/node_modules/highlight.js/scss/gradient-dark.scss +90 -0
- package/extensions/third-party/node_modules/highlight.js/scss/gradient-light.scss +90 -0
- package/extensions/third-party/node_modules/highlight.js/scss/grayscale.scss +89 -0
- package/extensions/third-party/node_modules/highlight.js/scss/hybrid.scss +88 -0
- package/extensions/third-party/node_modules/highlight.js/scss/idea.scss +86 -0
- package/extensions/third-party/node_modules/highlight.js/scss/intellij-light.scss +107 -0
- package/extensions/third-party/node_modules/highlight.js/scss/ir-black.scss +66 -0
- package/extensions/third-party/node_modules/highlight.js/scss/isbl-editor-dark.scss +94 -0
- package/extensions/third-party/node_modules/highlight.js/scss/isbl-editor-light.scss +93 -0
- package/extensions/third-party/node_modules/highlight.js/scss/kimbie-dark.scss +69 -0
- package/extensions/third-party/node_modules/highlight.js/scss/kimbie-light.scss +69 -0
- package/extensions/third-party/node_modules/highlight.js/scss/lightfair.scss +81 -0
- package/extensions/third-party/node_modules/highlight.js/scss/lioshi.scss +76 -0
- package/extensions/third-party/node_modules/highlight.js/scss/magula.scss +66 -0
- package/extensions/third-party/node_modules/highlight.js/scss/mono-blue.scss +56 -0
- package/extensions/third-party/node_modules/highlight.js/scss/monokai-sublime.scss +76 -0
- package/extensions/third-party/node_modules/highlight.js/scss/monokai.scss +70 -0
- package/extensions/third-party/node_modules/highlight.js/scss/night-owl.scss +174 -0
- package/extensions/third-party/node_modules/highlight.js/scss/nnfx-dark.scss +104 -0
- package/extensions/third-party/node_modules/highlight.js/scss/nnfx-light.scss +104 -0
- package/extensions/third-party/node_modules/highlight.js/scss/nord.scss +275 -0
- package/extensions/third-party/node_modules/highlight.js/scss/obsidian.scss +79 -0
- package/extensions/third-party/node_modules/highlight.js/scss/panda-syntax-dark.scss +92 -0
- package/extensions/third-party/node_modules/highlight.js/scss/panda-syntax-light.scss +89 -0
- package/extensions/third-party/node_modules/highlight.js/scss/paraiso-dark.scss +67 -0
- package/extensions/third-party/node_modules/highlight.js/scss/paraiso-light.scss +67 -0
- package/extensions/third-party/node_modules/highlight.js/scss/pojoaque.scss +76 -0
- package/extensions/third-party/node_modules/highlight.js/scss/purebasic.scss +103 -0
- package/extensions/third-party/node_modules/highlight.js/scss/qtcreator-dark.scss +76 -0
- package/extensions/third-party/node_modules/highlight.js/scss/qtcreator-light.scss +74 -0
- package/extensions/third-party/node_modules/highlight.js/scss/rainbow.scss +77 -0
- package/extensions/third-party/node_modules/highlight.js/scss/rose-pine-dawn.scss +107 -0
- package/extensions/third-party/node_modules/highlight.js/scss/rose-pine-moon.scss +109 -0
- package/extensions/third-party/node_modules/highlight.js/scss/rose-pine.scss +109 -0
- package/extensions/third-party/node_modules/highlight.js/scss/routeros.scss +86 -0
- package/extensions/third-party/node_modules/highlight.js/scss/school-book.scss +62 -0
- package/extensions/third-party/node_modules/highlight.js/scss/shades-of-purple.scss +84 -0
- package/extensions/third-party/node_modules/highlight.js/scss/srcery.scss +89 -0
- package/extensions/third-party/node_modules/highlight.js/scss/stackoverflow-dark.scss +117 -0
- package/extensions/third-party/node_modules/highlight.js/scss/stackoverflow-light.scss +117 -0
- package/extensions/third-party/node_modules/highlight.js/scss/sunburst.scss +89 -0
- package/extensions/third-party/node_modules/highlight.js/scss/tokyo-night-dark.scss +114 -0
- package/extensions/third-party/node_modules/highlight.js/scss/tokyo-night-light.scss +114 -0
- package/extensions/third-party/node_modules/highlight.js/scss/tomorrow-night-blue.scss +69 -0
- package/extensions/third-party/node_modules/highlight.js/scss/tomorrow-night-bright.scss +68 -0
- package/extensions/third-party/node_modules/highlight.js/scss/vs-dark.scss +61 -0
- package/extensions/third-party/node_modules/highlight.js/scss/vs.scss +63 -0
- package/extensions/third-party/node_modules/highlight.js/scss/vs2015.scss +100 -0
- package/extensions/third-party/node_modules/highlight.js/scss/xcode.scss +90 -0
- package/extensions/third-party/node_modules/highlight.js/scss/xt256.scss +79 -0
- package/extensions/third-party/node_modules/highlight.js/styles/1c-light.css +107 -0
- package/extensions/third-party/node_modules/highlight.js/styles/1c-light.min.css +9 -0
- package/extensions/third-party/node_modules/highlight.js/styles/a11y-dark.css +94 -0
- package/extensions/third-party/node_modules/highlight.js/styles/a11y-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/a11y-light.css +94 -0
- package/extensions/third-party/node_modules/highlight.js/styles/a11y-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/agate.css +127 -0
- package/extensions/third-party/node_modules/highlight.js/styles/agate.min.css +20 -0
- package/extensions/third-party/node_modules/highlight.js/styles/an-old-hope.css +75 -0
- package/extensions/third-party/node_modules/highlight.js/styles/an-old-hope.min.css +9 -0
- package/extensions/third-party/node_modules/highlight.js/styles/androidstudio.css +60 -0
- package/extensions/third-party/node_modules/highlight.js/styles/androidstudio.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/arduino-light.css +78 -0
- package/extensions/third-party/node_modules/highlight.js/styles/arduino-light.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/arta.css +66 -0
- package/extensions/third-party/node_modules/highlight.js/styles/arta.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/ascetic.css +45 -0
- package/extensions/third-party/node_modules/highlight.js/styles/ascetic.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/atom-one-dark-reasonable.css +105 -0
- package/extensions/third-party/node_modules/highlight.js/styles/atom-one-dark-reasonable.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/atom-one-dark.css +90 -0
- package/extensions/third-party/node_modules/highlight.js/styles/atom-one-dark.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/atom-one-light.css +90 -0
- package/extensions/third-party/node_modules/highlight.js/styles/atom-one-light.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/3024.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/3024.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/apathy.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/apathy.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/apprentice.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/apprentice.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ashes.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ashes.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-cave-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-cave-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-cave.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-cave.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-dune-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-dune-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-dune.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-dune.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-estuary-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-estuary-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-estuary.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-estuary.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-forest-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-forest-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-forest.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-forest.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-heath-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-heath-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-heath.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-heath.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-lakeside-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-lakeside-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-lakeside.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-lakeside.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-plateau-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-plateau-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-plateau.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-plateau.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-savanna-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-savanna-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-savanna.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-savanna.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-seaside-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-seaside-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-seaside.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-seaside.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-sulphurpool-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-sulphurpool-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-sulphurpool.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-sulphurpool.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atlas.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/atlas.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/bespin.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/bespin.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-bathory.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-bathory.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-burzum.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-burzum.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-dark-funeral.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-dark-funeral.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-gorgoroth.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-gorgoroth.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-immortal.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-immortal.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-khold.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-khold.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-marduk.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-marduk.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-mayhem.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-mayhem.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-nile.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-nile.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-venom.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-venom.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/brewer.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/brewer.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/bright.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/bright.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/brogrammer.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/brogrammer.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/brush-trees-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/brush-trees-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/brush-trees.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/brush-trees.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/chalk.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/chalk.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/circus.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/circus.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/classic-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/classic-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/classic-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/classic-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/codeschool.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/codeschool.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/colors.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/colors.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/cupcake.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/cupcake.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/cupertino.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/cupertino.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/danqing.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/danqing.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/darcula.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/darcula.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/dark-violet.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/dark-violet.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/darkmoss.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/darkmoss.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/darktooth.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/darktooth.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/decaf.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/decaf.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/default-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/default-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/default-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/default-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/dirtysea.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/dirtysea.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/dracula.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/dracula.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/edge-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/edge-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/edge-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/edge-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/eighties.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/eighties.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/embers.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/embers.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-gray-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-gray-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-gray-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-gray-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/espresso.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/espresso.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/eva-dim.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/eva-dim.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/eva.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/eva.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/flat.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/flat.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/framer.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/framer.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/fruit-soda.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/fruit-soda.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gigavolt.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gigavolt.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/github.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/github.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/google-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/google-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/google-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/google-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/grayscale-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/grayscale-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/grayscale-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/grayscale-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/green-screen.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/green-screen.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-hard.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-hard.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-medium.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-medium.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-pale.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-pale.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-soft.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-soft.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-hard.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-hard.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-medium.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-medium.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-soft.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-soft.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/hardcore.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/hardcore.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/harmonic16-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/harmonic16-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/harmonic16-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/harmonic16-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/heetch-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/heetch-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/heetch-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/heetch-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/helios.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/helios.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/hopscotch.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/hopscotch.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/horizon-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/horizon-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/horizon-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/horizon-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/humanoid-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/humanoid-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/humanoid-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/humanoid-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ia-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ia-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ia-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ia-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/icy-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/icy-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ir-black.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ir-black.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/isotope.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/isotope.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/kimber.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/kimber.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/london-tube.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/london-tube.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/macintosh.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/macintosh.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/marrakesh.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/marrakesh.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/materia.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/materia.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/material-darker.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/material-darker.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/material-lighter.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/material-lighter.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/material-palenight.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/material-palenight.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/material-vivid.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/material-vivid.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/material.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/material.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/mellow-purple.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/mellow-purple.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/mexico-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/mexico-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/mocha.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/mocha.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/monokai.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/monokai.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/nebula.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/nebula.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/nord.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/nord.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/nova.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/nova.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ocean.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ocean.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/oceanicnext.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/oceanicnext.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/one-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/one-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/onedark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/onedark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/outrun-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/outrun-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/papercolor-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/papercolor-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/papercolor-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/papercolor-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/paraiso.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/paraiso.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/pasque.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/pasque.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/phd.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/phd.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/pico.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/pico.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/pop.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/pop.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/porple.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/porple.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/qualia.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/qualia.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/railscasts.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/railscasts.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/rebecca.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/rebecca.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine-dawn.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine-dawn.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine-moon.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine-moon.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/sagelight.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/sagelight.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/sandcastle.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/sandcastle.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/seti-ui.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/seti-ui.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/shapeshifter.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/shapeshifter.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/silk-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/silk-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/silk-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/silk-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/snazzy.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/snazzy.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/solar-flare-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/solar-flare-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/solar-flare.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/solar-flare.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/solarized-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/solarized-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/solarized-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/solarized-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/spacemacs.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/spacemacs.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/summercamp.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/summercamp.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/summerfruit-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/summerfruit-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/summerfruit-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/summerfruit-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/synth-midnight-terminal-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/synth-midnight-terminal-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/synth-midnight-terminal-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/synth-midnight-terminal-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/tango.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/tango.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/tender.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/tender.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/tomorrow-night.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/tomorrow-night.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/tomorrow.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/tomorrow.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/twilight.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/twilight.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/unikitty-dark.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/unikitty-dark.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/unikitty-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/unikitty-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/vulcan.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/vulcan.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-10-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-10-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-10.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-10.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-95-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-95-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-95.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-95.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-high-contrast-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-high-contrast-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-high-contrast.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-high-contrast.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-nt-light.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-nt-light.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-nt.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-nt.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/woodland.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/woodland.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/xcode-dusk.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/xcode-dusk.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/zenburn.css +163 -0
- package/extensions/third-party/node_modules/highlight.js/styles/base16/zenburn.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/brown-paper.css +63 -0
- package/extensions/third-party/node_modules/highlight.js/styles/brown-paper.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/brown-papersq.png +0 -0
- package/extensions/third-party/node_modules/highlight.js/styles/codepen-embed.css +57 -0
- package/extensions/third-party/node_modules/highlight.js/styles/codepen-embed.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/color-brewer.css +66 -0
- package/extensions/third-party/node_modules/highlight.js/styles/color-brewer.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-cherry.css +104 -0
- package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-cherry.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-dimmer.css +104 -0
- package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-dimmer.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-icecap.css +104 -0
- package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-icecap.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-saturated.css +104 -0
- package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-saturated.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/dark.css +62 -0
- package/extensions/third-party/node_modules/highlight.js/styles/dark.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/default.css +117 -0
- package/extensions/third-party/node_modules/highlight.js/styles/default.min.css +9 -0
- package/extensions/third-party/node_modules/highlight.js/styles/devibeans.css +90 -0
- package/extensions/third-party/node_modules/highlight.js/styles/devibeans.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/docco.css +83 -0
- package/extensions/third-party/node_modules/highlight.js/styles/docco.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/equinox.css +71 -0
- package/extensions/third-party/node_modules/highlight.js/styles/equinox.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/far.css +67 -0
- package/extensions/third-party/node_modules/highlight.js/styles/far.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/felipec.css +94 -0
- package/extensions/third-party/node_modules/highlight.js/styles/felipec.min.css +7 -0
- package/extensions/third-party/node_modules/highlight.js/styles/foundation.css +80 -0
- package/extensions/third-party/node_modules/highlight.js/styles/foundation.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/github-dark-dimmed.css +117 -0
- package/extensions/third-party/node_modules/highlight.js/styles/github-dark-dimmed.min.css +9 -0
- package/extensions/third-party/node_modules/highlight.js/styles/github-dark.css +118 -0
- package/extensions/third-party/node_modules/highlight.js/styles/github-dark.min.css +10 -0
- package/extensions/third-party/node_modules/highlight.js/styles/github.css +118 -0
- package/extensions/third-party/node_modules/highlight.js/styles/github.min.css +10 -0
- package/extensions/third-party/node_modules/highlight.js/styles/gml.css +72 -0
- package/extensions/third-party/node_modules/highlight.js/styles/gml.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/googlecode.css +79 -0
- package/extensions/third-party/node_modules/highlight.js/styles/googlecode.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/gradient-dark.css +90 -0
- package/extensions/third-party/node_modules/highlight.js/styles/gradient-dark.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/gradient-light.css +90 -0
- package/extensions/third-party/node_modules/highlight.js/styles/gradient-light.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/grayscale.css +89 -0
- package/extensions/third-party/node_modules/highlight.js/styles/grayscale.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/hybrid.css +88 -0
- package/extensions/third-party/node_modules/highlight.js/styles/hybrid.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/idea.css +86 -0
- package/extensions/third-party/node_modules/highlight.js/styles/idea.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/intellij-light.css +107 -0
- package/extensions/third-party/node_modules/highlight.js/styles/intellij-light.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/ir-black.css +66 -0
- package/extensions/third-party/node_modules/highlight.js/styles/ir-black.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/isbl-editor-dark.css +94 -0
- package/extensions/third-party/node_modules/highlight.js/styles/isbl-editor-dark.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/isbl-editor-light.css +93 -0
- package/extensions/third-party/node_modules/highlight.js/styles/isbl-editor-light.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/kimbie-dark.css +69 -0
- package/extensions/third-party/node_modules/highlight.js/styles/kimbie-dark.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/kimbie-light.css +69 -0
- package/extensions/third-party/node_modules/highlight.js/styles/kimbie-light.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/lightfair.css +81 -0
- package/extensions/third-party/node_modules/highlight.js/styles/lightfair.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/lioshi.css +76 -0
- package/extensions/third-party/node_modules/highlight.js/styles/lioshi.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/magula.css +66 -0
- package/extensions/third-party/node_modules/highlight.js/styles/magula.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/mono-blue.css +56 -0
- package/extensions/third-party/node_modules/highlight.js/styles/mono-blue.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/monokai-sublime.css +76 -0
- package/extensions/third-party/node_modules/highlight.js/styles/monokai-sublime.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/monokai.css +70 -0
- package/extensions/third-party/node_modules/highlight.js/styles/monokai.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/night-owl.css +174 -0
- package/extensions/third-party/node_modules/highlight.js/styles/night-owl.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/nnfx-dark.css +104 -0
- package/extensions/third-party/node_modules/highlight.js/styles/nnfx-dark.min.css +10 -0
- package/extensions/third-party/node_modules/highlight.js/styles/nnfx-light.css +104 -0
- package/extensions/third-party/node_modules/highlight.js/styles/nnfx-light.min.css +10 -0
- package/extensions/third-party/node_modules/highlight.js/styles/nord.css +275 -0
- package/extensions/third-party/node_modules/highlight.js/styles/nord.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/obsidian.css +79 -0
- package/extensions/third-party/node_modules/highlight.js/styles/obsidian.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/panda-syntax-dark.css +92 -0
- package/extensions/third-party/node_modules/highlight.js/styles/panda-syntax-dark.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/panda-syntax-light.css +89 -0
- package/extensions/third-party/node_modules/highlight.js/styles/panda-syntax-light.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/paraiso-dark.css +67 -0
- package/extensions/third-party/node_modules/highlight.js/styles/paraiso-dark.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/paraiso-light.css +67 -0
- package/extensions/third-party/node_modules/highlight.js/styles/paraiso-light.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/pojoaque.css +76 -0
- package/extensions/third-party/node_modules/highlight.js/styles/pojoaque.jpg +0 -0
- package/extensions/third-party/node_modules/highlight.js/styles/pojoaque.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/purebasic.css +103 -0
- package/extensions/third-party/node_modules/highlight.js/styles/purebasic.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/qtcreator-dark.css +76 -0
- package/extensions/third-party/node_modules/highlight.js/styles/qtcreator-dark.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/qtcreator-light.css +74 -0
- package/extensions/third-party/node_modules/highlight.js/styles/qtcreator-light.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/rainbow.css +77 -0
- package/extensions/third-party/node_modules/highlight.js/styles/rainbow.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/rose-pine-dawn.css +107 -0
- package/extensions/third-party/node_modules/highlight.js/styles/rose-pine-dawn.min.css +4 -0
- package/extensions/third-party/node_modules/highlight.js/styles/rose-pine-moon.css +109 -0
- package/extensions/third-party/node_modules/highlight.js/styles/rose-pine-moon.min.css +4 -0
- package/extensions/third-party/node_modules/highlight.js/styles/rose-pine.css +109 -0
- package/extensions/third-party/node_modules/highlight.js/styles/rose-pine.min.css +4 -0
- package/extensions/third-party/node_modules/highlight.js/styles/routeros.css +86 -0
- package/extensions/third-party/node_modules/highlight.js/styles/routeros.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/school-book.css +62 -0
- package/extensions/third-party/node_modules/highlight.js/styles/school-book.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/shades-of-purple.css +84 -0
- package/extensions/third-party/node_modules/highlight.js/styles/shades-of-purple.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/srcery.css +89 -0
- package/extensions/third-party/node_modules/highlight.js/styles/srcery.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/stackoverflow-dark.css +117 -0
- package/extensions/third-party/node_modules/highlight.js/styles/stackoverflow-dark.min.css +13 -0
- package/extensions/third-party/node_modules/highlight.js/styles/stackoverflow-light.css +117 -0
- package/extensions/third-party/node_modules/highlight.js/styles/stackoverflow-light.min.css +13 -0
- package/extensions/third-party/node_modules/highlight.js/styles/sunburst.css +89 -0
- package/extensions/third-party/node_modules/highlight.js/styles/sunburst.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/tokyo-night-dark.css +114 -0
- package/extensions/third-party/node_modules/highlight.js/styles/tokyo-night-dark.min.css +8 -0
- package/extensions/third-party/node_modules/highlight.js/styles/tokyo-night-light.css +114 -0
- package/extensions/third-party/node_modules/highlight.js/styles/tokyo-night-light.min.css +8 -0
- package/extensions/third-party/node_modules/highlight.js/styles/tomorrow-night-blue.css +69 -0
- package/extensions/third-party/node_modules/highlight.js/styles/tomorrow-night-blue.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/tomorrow-night-bright.css +68 -0
- package/extensions/third-party/node_modules/highlight.js/styles/tomorrow-night-bright.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/vs-dark.css +61 -0
- package/extensions/third-party/node_modules/highlight.js/styles/vs-dark.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/vs.css +63 -0
- package/extensions/third-party/node_modules/highlight.js/styles/vs.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/vs2015.css +100 -0
- package/extensions/third-party/node_modules/highlight.js/styles/vs2015.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/xcode.css +90 -0
- package/extensions/third-party/node_modules/highlight.js/styles/xcode.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/styles/xt256.css +79 -0
- package/extensions/third-party/node_modules/highlight.js/styles/xt256.min.css +1 -0
- package/extensions/third-party/node_modules/highlight.js/types/index.d.ts +274 -0
- package/extensions/third-party/node_modules/jiti/LICENSE +21 -0
- package/extensions/third-party/node_modules/jiti/README.md +258 -0
- package/extensions/third-party/node_modules/jiti/dist/babel.cjs +257 -0
- package/extensions/third-party/node_modules/jiti/dist/jiti.cjs +1 -0
- package/extensions/third-party/node_modules/jiti/lib/jiti-cli.mjs +34 -0
- package/extensions/third-party/node_modules/jiti/lib/jiti-hooks.mjs +124 -0
- package/extensions/third-party/node_modules/jiti/lib/jiti-native.mjs +121 -0
- package/extensions/third-party/node_modules/jiti/lib/jiti-register.d.mts +1 -0
- package/extensions/third-party/node_modules/jiti/lib/jiti-register.mjs +4 -0
- package/extensions/third-party/node_modules/jiti/lib/jiti-static.mjs +23 -0
- package/extensions/third-party/node_modules/jiti/lib/jiti.cjs +30 -0
- package/extensions/third-party/node_modules/jiti/lib/jiti.d.cts +8 -0
- package/extensions/third-party/node_modules/jiti/lib/jiti.d.mts +8 -0
- package/extensions/third-party/node_modules/jiti/lib/jiti.mjs +29 -0
- package/extensions/third-party/node_modules/jiti/lib/types.d.ts +420 -0
- package/extensions/third-party/node_modules/jiti/package.json +146 -0
- package/extensions/third-party/node_modules/pi-subagents/CHANGELOG.md +1905 -0
- package/extensions/third-party/node_modules/pi-subagents/LICENSE +21 -0
- package/extensions/third-party/node_modules/pi-subagents/README.md +122 -0
- package/extensions/third-party/node_modules/pi-subagents/agents/delegate.md +14 -0
- package/extensions/third-party/node_modules/pi-subagents/agents/oracle.md +78 -0
- package/extensions/third-party/node_modules/pi-subagents/agents/researcher.md +52 -0
- package/extensions/third-party/node_modules/pi-subagents/agents/reviewer.md +79 -0
- package/extensions/third-party/node_modules/pi-subagents/agents/scout.md +50 -0
- package/extensions/third-party/node_modules/pi-subagents/agents/worker.md +59 -0
- package/extensions/third-party/node_modules/pi-subagents/async-retention-discovery-worker.mjs +180 -0
- package/extensions/third-party/node_modules/pi-subagents/docs/agents.md +383 -0
- package/extensions/third-party/node_modules/pi-subagents/docs/configuration.md +457 -0
- package/extensions/third-party/node_modules/pi-subagents/docs/extension-api.md +385 -0
- package/extensions/third-party/node_modules/pi-subagents/docs/missions.md +121 -0
- package/extensions/third-party/node_modules/pi-subagents/docs/models.md +194 -0
- package/extensions/third-party/node_modules/pi-subagents/docs/observability.md +250 -0
- package/extensions/third-party/node_modules/pi-subagents/docs/tool-reference.md +359 -0
- package/extensions/third-party/node_modules/pi-subagents/docs/watchdog.md +176 -0
- package/extensions/third-party/node_modules/pi-subagents/docs/workflows.md +331 -0
- package/extensions/third-party/node_modules/pi-subagents/index.ts +1 -0
- package/extensions/third-party/node_modules/pi-subagents/inspector-runner.mjs +11 -0
- package/extensions/third-party/node_modules/pi-subagents/install.mjs +93 -0
- package/extensions/third-party/node_modules/pi-subagents/package.json +106 -0
- package/extensions/third-party/node_modules/pi-subagents/prompts/gather-context-and-clarify.md +13 -0
- package/extensions/third-party/node_modules/pi-subagents/prompts/parallel-cleanup.md +59 -0
- package/extensions/third-party/node_modules/pi-subagents/prompts/parallel-research.md +50 -0
- package/extensions/third-party/node_modules/pi-subagents/prompts/parallel-review.md +54 -0
- package/extensions/third-party/node_modules/pi-subagents/prompts/review-loop.md +43 -0
- package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/SKILL.md +45 -0
- package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/references/constraints-and-recipes.md +258 -0
- package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/references/execution-controls.md +443 -0
- package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/references/management-authoring-rpc.md +161 -0
- package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/references/multi-lane-orchestration.md +39 -0
- package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/references/prompting-and-roles.md +260 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-management.ts +1029 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-memory.ts +254 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-refinements.ts +624 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-scope.ts +6 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-selection.ts +25 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-serializer.ts +165 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/agents.ts +2055 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/chain-serializer.ts +280 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/frontmatter.ts +153 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/identity.ts +30 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/proactive-skills.ts +194 -0
- package/extensions/third-party/node_modules/pi-subagents/src/agents/skills.ts +754 -0
- package/extensions/third-party/node_modules/pi-subagents/src/api/background-work.ts +197 -0
- package/extensions/third-party/node_modules/pi-subagents/src/api/capability-ceiling.ts +17 -0
- package/extensions/third-party/node_modules/pi-subagents/src/api/control-channel.ts +4 -0
- package/extensions/third-party/node_modules/pi-subagents/src/api/delegation.ts +119 -0
- package/extensions/third-party/node_modules/pi-subagents/src/api/external-job-provider.ts +186 -0
- package/extensions/third-party/node_modules/pi-subagents/src/api/external-runs.ts +219 -0
- package/extensions/third-party/node_modules/pi-subagents/src/api/intercom-bridge.ts +3 -0
- package/extensions/third-party/node_modules/pi-subagents/src/api/pi-args.ts +5 -0
- package/extensions/third-party/node_modules/pi-subagents/src/api/preflight.ts +437 -0
- package/extensions/third-party/node_modules/pi-subagents/src/api/project-panes.ts +30 -0
- package/extensions/third-party/node_modules/pi-subagents/src/api/shared-types.ts +21 -0
- package/extensions/third-party/node_modules/pi-subagents/src/extension/config.ts +162 -0
- package/extensions/third-party/node_modules/pi-subagents/src/extension/control-notices.ts +58 -0
- package/extensions/third-party/node_modules/pi-subagents/src/extension/doctor.ts +267 -0
- package/extensions/third-party/node_modules/pi-subagents/src/extension/fanout-child.ts +202 -0
- package/extensions/third-party/node_modules/pi-subagents/src/extension/index.ts +1006 -0
- package/extensions/third-party/node_modules/pi-subagents/src/extension/public-execution.ts +133 -0
- package/extensions/third-party/node_modules/pi-subagents/src/extension/rpc.ts +652 -0
- package/extensions/third-party/node_modules/pi-subagents/src/extension/schemas.ts +379 -0
- package/extensions/third-party/node_modules/pi-subagents/src/extension/steering-notices.ts +35 -0
- package/extensions/third-party/node_modules/pi-subagents/src/extension/subagent-guide.ts +39 -0
- package/extensions/third-party/node_modules/pi-subagents/src/extension/tool-description.ts +197 -0
- package/extensions/third-party/node_modules/pi-subagents/src/inspectors/herdr/actions.ts +234 -0
- package/extensions/third-party/node_modules/pi-subagents/src/inspectors/herdr/client.ts +130 -0
- package/extensions/third-party/node_modules/pi-subagents/src/inspectors/herdr/inspector-runner.ts +155 -0
- package/extensions/third-party/node_modules/pi-subagents/src/inspectors/herdr/project-panes.ts +546 -0
- package/extensions/third-party/node_modules/pi-subagents/src/inspectors/herdr/shell-command.ts +16 -0
- package/extensions/third-party/node_modules/pi-subagents/src/integrations/herdr-status.ts +330 -0
- package/extensions/third-party/node_modules/pi-subagents/src/intercom/intercom-bridge.ts +191 -0
- package/extensions/third-party/node_modules/pi-subagents/src/intercom/native-supervisor-channel.ts +812 -0
- package/extensions/third-party/node_modules/pi-subagents/src/intercom/result-intercom.ts +421 -0
- package/extensions/third-party/node_modules/pi-subagents/src/missions/actions.ts +433 -0
- package/extensions/third-party/node_modules/pi-subagents/src/missions/goal-driver.ts +164 -0
- package/extensions/third-party/node_modules/pi-subagents/src/missions/lifecycle.ts +367 -0
- package/extensions/third-party/node_modules/pi-subagents/src/missions/store.ts +584 -0
- package/extensions/third-party/node_modules/pi-subagents/src/missions/types.ts +190 -0
- package/extensions/third-party/node_modules/pi-subagents/src/missions/workflow-state.ts +260 -0
- package/extensions/third-party/node_modules/pi-subagents/src/policy/authority.ts +46 -0
- package/extensions/third-party/node_modules/pi-subagents/src/profiles/profiles.ts +663 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/active-async-capacity.ts +431 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/active-run-index.ts +139 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-execution.ts +1739 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-job-tracker.ts +692 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-resume.ts +601 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-retention.ts +886 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-status-snapshot.ts +277 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-status.ts +577 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/auto-drain.ts +67 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/chain-append.ts +316 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/chain-root-attachment.ts +199 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/completion-batcher.ts +168 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/completion-dedupe.ts +58 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/completion-replay.ts +287 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/control-channel.ts +679 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/fleet-view.ts +604 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/index-segment.ts +59 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/inspect-rpc.ts +443 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/notify.ts +358 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/owned-process-tree.ts +104 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/parallel-groups.ts +45 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/process-terminal.ts +294 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/result-files.ts +505 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/result-watcher.ts +760 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/resume-guidance.ts +56 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/retained-children.ts +135 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/run-id-query.ts +7 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/run-id-resolver.ts +175 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/run-status.ts +632 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/scheduled-runs.ts +823 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/stale-run-reconciler.ts +416 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/steering.ts +249 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/subagent-runner.ts +5179 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/subagent-wait.ts +702 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/terminal-run-index.ts +129 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/top-level-async.ts +14 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/wait-completions.ts +166 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/wait-config.ts +36 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/wait-subscriptions.ts +464 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/background/wait-tool.ts +36 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/async-dismiss-action.ts +86 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/async-steering-action.ts +262 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/async-stop-action.ts +65 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/execution.ts +2196 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/foreground-control.ts +144 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/foreground-history.ts +137 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/prompt-audit.ts +172 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/subagent-executor.ts +5736 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/workflow-detach-reconcile.ts +194 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/workflow-foreground-steering.ts +188 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/acceptance.ts +1374 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/agent-contract.ts +38 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/capability-ceiling.ts +209 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/chain-outputs.ts +116 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/child-protocol.ts +401 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/completion-guard.ts +201 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/context-mode.ts +44 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/dynamic-fanout.ts +297 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/external-cli-runner.ts +134 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/external-job-bridge.ts +444 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/external-job-runner.ts +286 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/llm-intent-arbiter.ts +302 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/long-running-guard.ts +220 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/mcp-direct-tool-allowlist.ts +420 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/model-fallback.ts +432 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/model-scope.ts +138 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/nested-events.ts +1080 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/nested-path.ts +52 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/nested-render.ts +123 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/orca-progress-tabs.ts +437 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/owner-lifeline.ts +104 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/parallel-handoff.ts +280 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/parallel-utils.ts +250 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/permissions.ts +99 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/pi-args.ts +856 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/pi-spawn.ts +163 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/process-signal.ts +19 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/run-fanout-budget.ts +280 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/run-history.ts +181 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/runtime-acknowledged-extensions.ts +71 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/session-lease.ts +293 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/single-output.ts +237 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/spawn-budget.ts +128 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/startup-transport.ts +158 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/structured-output.ts +182 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/subagent-control.ts +269 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/subagent-prompt-runtime.ts +685 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/subagent-startup-retry.ts +116 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/task-intent.ts +197 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/tool-availability.ts +83 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/tool-budget.ts +80 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/tool-timeout.ts +93 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/turn-budget.ts +98 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/usage-budget.ts +65 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/workflow-graph.ts +209 -0
- package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/worktree.ts +784 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/accessible-dir.ts +47 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/agent-stream-options.ts +5 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/artifacts.ts +281 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/atomic-json.ts +81 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/capacity-resilient-json.ts +102 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/child-transcript.ts +264 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/completion-owner.ts +14 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/display-text.ts +150 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/file-coalescer.ts +49 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/file-system-retry.ts +95 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/fork-context.ts +268 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/formatters.ts +131 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/jsonl-writer.ts +81 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/launch-contract.ts +124 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/model-info.ts +81 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/node-executable.ts +21 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/post-exit-stdio-guard.ts +85 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/prompt-resources.ts +11 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/session-identity.ts +10 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/session-tokens.ts +44 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/settings.ts +490 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/status-format.ts +55 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/types.ts +2307 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/utf8.ts +11 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/utils.ts +633 -0
- package/extensions/third-party/node_modules/pi-subagents/src/shared/watch-strategy.ts +10 -0
- package/extensions/third-party/node_modules/pi-subagents/src/slash/delegation-adapters.ts +434 -0
- package/extensions/third-party/node_modules/pi-subagents/src/slash/delegation-json.ts +108 -0
- package/extensions/third-party/node_modules/pi-subagents/src/slash/delegation-request.ts +166 -0
- package/extensions/third-party/node_modules/pi-subagents/src/slash/prompt-template-bridge.ts +383 -0
- package/extensions/third-party/node_modules/pi-subagents/src/slash/prompt-workflows.ts +287 -0
- package/extensions/third-party/node_modules/pi-subagents/src/slash/selector.ts +147 -0
- package/extensions/third-party/node_modules/pi-subagents/src/slash/slash-bridge.ts +193 -0
- package/extensions/third-party/node_modules/pi-subagents/src/slash/slash-commands.ts +1049 -0
- package/extensions/third-party/node_modules/pi-subagents/src/slash/slash-live-state.ts +299 -0
- package/extensions/third-party/node_modules/pi-subagents/src/slash/subagents-admin.ts +432 -0
- package/extensions/third-party/node_modules/pi-subagents/src/tui/fleet-status.ts +691 -0
- package/extensions/third-party/node_modules/pi-subagents/src/tui/fleet-transcript.ts +530 -0
- package/extensions/third-party/node_modules/pi-subagents/src/tui/fleet.ts +1362 -0
- package/extensions/third-party/node_modules/pi-subagents/src/tui/render-helpers.ts +80 -0
- package/extensions/third-party/node_modules/pi-subagents/src/tui/render.ts +2224 -0
- package/extensions/third-party/node_modules/pi-subagents/src/types/pi-runtime-compat.d.ts +8 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/change-signature.ts +221 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/child-status.ts +205 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/emission-guard.ts +123 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/lsp-diagnostics.ts +538 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/model-selection.ts +167 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/permission-arbiter.ts +146 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/register-child.ts +117 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/register-main.ts +440 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/render.ts +54 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/review.ts +303 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/runtime.ts +868 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/scope.ts +62 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/settings.ts +568 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/tool-actions.ts +155 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/turn-delta.ts +161 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/types.ts +198 -0
- package/extensions/third-party/node_modules/pi-subagents/src/watchdog/warning-format.ts +73 -0
- package/extensions/third-party/node_modules/pi-subagents/src/workflows/chat-progress.ts +148 -0
- package/extensions/third-party/node_modules/pi-subagents/src/workflows/scripted-workflow.ts +1069 -0
- package/extensions/third-party/node_modules/typebox/build/compile/code.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/compile/code.mjs +65 -0
- package/extensions/third-party/node_modules/typebox/build/compile/compile.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/compile/compile.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/compile/index.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/compile/index.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/compile/validator.d.mts +43 -0
- package/extensions/third-party/node_modules/typebox/build/compile/validator.mjs +121 -0
- package/extensions/third-party/node_modules/typebox/build/error/errors.d.mts +214 -0
- package/extensions/third-party/node_modules/typebox/build/error/errors.mjs +18 -0
- package/extensions/third-party/node_modules/typebox/build/error/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/error/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/format/_idna.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/format/_idna.mjs +216 -0
- package/extensions/third-party/node_modules/typebox/build/format/_puny.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/format/_puny.mjs +74 -0
- package/extensions/third-party/node_modules/typebox/build/format/_registry.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/format/_registry.mjs +96 -0
- package/extensions/third-party/node_modules/typebox/build/format/date.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/format/date.mjs +19 -0
- package/extensions/third-party/node_modules/typebox/build/format/date_time.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/format/date_time.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/format/duration.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/format/duration.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/format/email.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/format/email.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/format/format.d.mts +22 -0
- package/extensions/third-party/node_modules/typebox/build/format/format.mjs +22 -0
- package/extensions/third-party/node_modules/typebox/build/format/hostname.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/format/hostname.mjs +18 -0
- package/extensions/third-party/node_modules/typebox/build/format/idn_email.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/format/idn_email.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/format/idn_hostname.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/format/idn_hostname.mjs +19 -0
- package/extensions/third-party/node_modules/typebox/build/format/index.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/format/index.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/format/ipv4.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/format/ipv4.mjs +38 -0
- package/extensions/third-party/node_modules/typebox/build/format/ipv6.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/format/ipv6.mjs +67 -0
- package/extensions/third-party/node_modules/typebox/build/format/iri.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/format/iri.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/format/iri_reference.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/format/iri_reference.mjs +60 -0
- package/extensions/third-party/node_modules/typebox/build/format/json_pointer.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/format/json_pointer.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/format/json_pointer_uri_fragment.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/format/json_pointer_uri_fragment.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/format/regex.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/format/regex.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/format/relative_json_pointer.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/format/relative_json_pointer.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/format/time.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/format/time.mjs +27 -0
- package/extensions/third-party/node_modules/typebox/build/format/uri.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/format/uri.mjs +135 -0
- package/extensions/third-party/node_modules/typebox/build/format/uri_reference.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/format/uri_reference.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/format/uri_template.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/format/uri_template.mjs +10 -0
- package/extensions/third-party/node_modules/typebox/build/format/url.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/format/url.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/format/uuid.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/format/uuid.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/guard/emit.d.mts +58 -0
- package/extensions/third-party/node_modules/typebox/build/guard/emit.mjs +194 -0
- package/extensions/third-party/node_modules/typebox/build/guard/globals.d.mts +35 -0
- package/extensions/third-party/node_modules/typebox/build/guard/globals.mjs +90 -0
- package/extensions/third-party/node_modules/typebox/build/guard/guard.d.mts +69 -0
- package/extensions/third-party/node_modules/typebox/build/guard/guard.mjs +217 -0
- package/extensions/third-party/node_modules/typebox/build/guard/index.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/guard/index.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/guard/native.d.mts +20 -0
- package/extensions/third-party/node_modules/typebox/build/guard/native.mjs +60 -0
- package/extensions/third-party/node_modules/typebox/build/guard/string.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/guard/string.mjs +164 -0
- package/extensions/third-party/node_modules/typebox/build/index.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/index.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/build.d.mts +39 -0
- package/extensions/third-party/node_modules/typebox/build/schema/build.mjs +118 -0
- package/extensions/third-party/node_modules/typebox/build/schema/check.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/check.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/compile.d.mts +22 -0
- package/extensions/third-party/node_modules/typebox/build/schema/compile.mjs +46 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_context.d.mts +35 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_context.mjs +129 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_exact_optional.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_exact_optional.mjs +20 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_externals.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_externals.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_functions.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_functions.mjs +47 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_guard.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_guard.mjs +26 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_reducer.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_reducer.mjs +45 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_refine.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_refine.mjs +29 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_stack.d.mts +18 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_stack.mjs +107 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_unique.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/_unique.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/additionalItems.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/additionalItems.mjs +50 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/additionalProperties.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/additionalProperties.mjs +110 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/allOf.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/allOf.mjs +47 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/anyOf.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/anyOf.mjs +52 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/boolean.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/boolean.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/const.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/const.mjs +30 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/contains.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/contains.mjs +42 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/dependencies.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/dependencies.mjs +45 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/dependentRequired.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/dependentRequired.mjs +40 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/dependentSchemas.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/dependentSchemas.mjs +38 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/dynamicRef.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/dynamicRef.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/enum.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/enum.mjs +33 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/exclusiveMaximum.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/exclusiveMaximum.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/exclusiveMinimum.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/exclusiveMinimum.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/format.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/format.mjs +26 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/if.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/if.mjs +47 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/index.d.mts +49 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/index.mjs +55 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/items.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/items.mjs +68 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/maxContains.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/maxContains.mjs +42 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/maxItems.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/maxItems.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/maxLength.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/maxLength.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/maxProperties.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/maxProperties.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/maximum.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/maximum.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/minContains.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/minContains.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/minItems.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/minItems.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/minLength.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/minLength.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/minProperties.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/minProperties.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/minimum.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/minimum.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/multipleOf.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/multipleOf.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/not.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/not.mjs +37 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/oneOf.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/oneOf.mjs +58 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/pattern.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/pattern.mjs +28 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/patternProperties.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/patternProperties.mjs +44 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/prefixItems.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/prefixItems.mjs +35 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/properties.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/properties.mjs +75 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/propertyNames.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/propertyNames.mjs +39 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/recursiveRef.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/recursiveRef.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/ref.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/ref.mjs +58 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/required.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/required.mjs +32 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/schema.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/schema.mjs +352 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/type.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/type.mjs +74 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/unevaluatedItems.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/unevaluatedItems.mjs +51 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/unevaluatedProperties.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/unevaluatedProperties.mjs +51 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/uniqueItems.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/engine/uniqueItems.mjs +51 -0
- package/extensions/third-party/node_modules/typebox/build/schema/errors.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/errors.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/schema/index.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/index.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/parse.d.mts +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/parse.mjs +27 -0
- package/extensions/third-party/node_modules/typebox/build/schema/pointer/index.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/pointer/index.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/pointer/pointer.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/schema/pointer/pointer.mjs +106 -0
- package/extensions/third-party/node_modules/typebox/build/schema/pointer/pointer_get.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/pointer/pointer_get.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/resolve/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/schema/resolve/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/schema/resolve/ref.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/resolve/ref.mjs +146 -0
- package/extensions/third-party/node_modules/typebox/build/schema/resolve/resolve.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/schema/resolve/resolve.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/schema/schema.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/schema/schema.mjs +10 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/_canonical.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/_canonical.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/_comparer.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/_comparer.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/_elements.d.mts +18 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/_elements.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/additionalProperties.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/additionalProperties.mjs +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/allOf.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/allOf.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/anyOf.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/anyOf.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/const.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/const.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/enum.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/enum.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/if.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/if.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/items.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/items.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/oneOf.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/oneOf.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/patternProperties.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/patternProperties.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/prefixItems.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/prefixItems.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/properties.d.mts +32 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/properties.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/ref.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/ref.mjs +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/required.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/required.mjs +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/schema.d.mts +56 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/schema.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/static.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/static.mjs +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/type.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/type.mjs +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/unevaluatedProperties.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/schema/static/unevaluatedProperties.mjs +3 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/_guard.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/_guard.mjs +16 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/_refine.d.mts +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/_refine.mjs +18 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/additionalItems.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/additionalItems.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/additionalProperties.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/additionalProperties.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/allOf.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/allOf.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/anchor.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/anchor.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/anyOf.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/anyOf.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/const.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/const.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/contains.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/contains.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/contentEncoding.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/contentEncoding.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/contentMediaType.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/contentMediaType.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/default.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/default.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/defs.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/defs.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/dependencies.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/dependencies.mjs +16 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/dependentRequired.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/dependentRequired.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/dependentSchemas.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/dependentSchemas.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/dynamicAnchor.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/dynamicAnchor.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/dynamicRef.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/dynamicRef.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/else.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/else.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/enum.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/enum.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/exclusiveMaximum.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/exclusiveMaximum.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/exclusiveMinimum.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/exclusiveMinimum.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/format.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/format.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/id.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/id.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/if.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/if.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/index.d.mts +54 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/index.mjs +60 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/items.d.mts +19 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/items.mjs +26 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/maxContains.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/maxContains.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/maxItems.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/maxItems.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/maxLength.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/maxLength.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/maxProperties.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/maxProperties.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/maximum.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/maximum.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/minContains.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/minContains.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/minItems.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/minItems.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/minLength.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/minLength.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/minProperties.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/minProperties.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/minimum.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/minimum.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/multipleOf.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/multipleOf.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/not.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/not.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/oneOf.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/oneOf.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/pattern.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/pattern.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/patternProperties.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/patternProperties.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/prefixItems.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/prefixItems.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/properties.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/properties.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/propertyNames.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/propertyNames.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/recursiveAnchor.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/recursiveAnchor.mjs +19 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/recursiveRef.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/recursiveRef.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/ref.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/ref.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/required.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/required.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/schema.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/schema.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/then.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/then.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/type.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/type.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/unevaluatedItems.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/unevaluatedItems.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/unevaluatedProperties.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/unevaluatedProperties.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/uniqueItems.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/schema/types/uniqueItems.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/system/arguments/arguments.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/system/arguments/arguments.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/system/arguments/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/arguments/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/environment/environment.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/environment/environment.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/environment/evaluate.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/system/environment/evaluate.mjs +37 -0
- package/extensions/third-party/node_modules/typebox/build/system/environment/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/environment/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/hashing/hash.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/system/hashing/hash.mjs +232 -0
- package/extensions/third-party/node_modules/typebox/build/system/hashing/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/hashing/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/index.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/system/index.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/_config.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/_config.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/_locale.d.mts +40 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/_locale.mjs +40 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ar_001.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ar_001.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/bn_BD.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/bn_BD.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/cs_CZ.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/cs_CZ.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/de_DE.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/de_DE.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/el_GR.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/el_GR.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/en_US.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/en_US.mjs +40 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/es_419.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/es_419.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/es_AR.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/es_AR.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/es_ES.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/es_ES.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/es_MX.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/es_MX.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/fa_IR.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/fa_IR.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/fil_PH.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/fil_PH.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/fr_CA.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/fr_CA.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/fr_FR.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/fr_FR.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ha_NG.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ha_NG.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/hi_IN.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/hi_IN.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/hu_HU.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/hu_HU.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/id_ID.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/id_ID.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/it_IT.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/it_IT.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ja_JP.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ja_JP.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ko_KR.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ko_KR.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ms_MY.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ms_MY.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/nl_NL.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/nl_NL.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/pl_PL.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/pl_PL.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/pt_BR.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/pt_BR.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/pt_PT.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/pt_PT.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ro_RO.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ro_RO.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ru_RU.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ru_RU.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/sv_SE.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/sv_SE.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/sw_TZ.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/sw_TZ.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/th_TH.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/th_TH.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/tr_TR.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/tr_TR.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/uk_UA.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/uk_UA.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ur_PK.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/ur_PK.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/vi_VN.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/vi_VN.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/yo_NG.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/yo_NG.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/zh_Hans.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/zh_Hans.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/zh_Hant.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/locale/zh_Hant.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/assign.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/assign.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/clone.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/clone.mjs +63 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/create.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/create.mjs +30 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/discard.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/discard.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/memory.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/memory.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/metrics.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/metrics.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/update.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/system/memory/update.mjs +32 -0
- package/extensions/third-party/node_modules/typebox/build/system/settings/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/settings/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/settings/settings.d.mts +56 -0
- package/extensions/third-party/node_modules/typebox/build/system/settings/settings.mjs +32 -0
- package/extensions/third-party/node_modules/typebox/build/system/system.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/system/system.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/system/unreachable/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/unreachable/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/system/unreachable/unreachable.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/system/unreachable/unreachable.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/_optional.d.mts +19 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/_optional.mjs +40 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/_readonly.d.mts +19 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/_readonly.mjs +40 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/awaited.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/awaited.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/capitalize.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/capitalize.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/conditional.d.mts +13 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/conditional.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/constructor_parameters.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/constructor_parameters.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/evaluate.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/evaluate.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/exclude.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/exclude.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/extract.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/extract.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/index.d.mts +27 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/index.mjs +27 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/indexed.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/indexed.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/instance_type.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/instance_type.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/interface.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/interface.mjs +22 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/keyof.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/keyof.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/lowercase.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/lowercase.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/mapped.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/mapped.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/module.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/module.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/non_nullable.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/non_nullable.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/omit.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/omit.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/options.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/options.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/parameters.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/parameters.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/partial.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/partial.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/pick.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/pick.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/readonly_object.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/readonly_object.mjs +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/required.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/required.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/return_type.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/return_type.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/uncapitalize.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/uncapitalize.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/uppercase.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/action/uppercase.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/awaited/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/awaited/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/awaited/instantiate.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/awaited/instantiate.mjs +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/call/distribute_arguments.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/call/distribute_arguments.mjs +53 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/call/instantiate.d.mts +23 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/call/instantiate.mjs +48 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/call/resolve_arguments.d.mts +13 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/call/resolve_arguments.mjs +33 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/call/resolve_target.d.mts +25 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/call/resolve_target.mjs +27 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/conditional/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/conditional/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/conditional/instantiate.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/conditional/instantiate.mjs +23 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/constructor_parameters/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/constructor_parameters/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/constructor_parameters/instantiate.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/constructor_parameters/instantiate.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/candidates.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/candidates.mjs +19 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/check.d.mts +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/check.mjs +51 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/dependencies.d.mts +25 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/dependencies.mjs +53 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/extends.d.mts +31 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/extends.mjs +53 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/index.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/index.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/instantiate.d.mts +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/instantiate.mjs +30 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/target.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/target.mjs +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/enum/enum_to_union.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/enum/enum_to_union.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/enum/index.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/enum/index.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/enum/typescript_enum_to_enum_values.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/enum/typescript_enum_to_enum_values.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/broaden.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/broaden.mjs +47 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/compare.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/compare.mjs +22 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/composite.d.mts +30 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/composite.mjs +63 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/distribute.d.mts +27 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/distribute.mjs +45 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/evaluate.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/evaluate.mjs +27 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/flatten.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/flatten.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/index.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/index.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/instantiate.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/instantiate.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/narrow.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/narrow.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/instantiate.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/instantiate.mjs +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/operation.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/operation.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/extract/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/extract/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/extract/instantiate.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/extract/instantiate.mjs +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/extract/operation.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/extract/operation.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/index.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/index.mjs +3 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/keys.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/keys.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/keys_to_indexer.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/keys_to_indexer.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/union.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/union.mjs +3 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/index.d.mts +31 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/index.mjs +37 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_cyclic.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_cyclic.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_enum.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_enum.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_intersect.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_intersect.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_literal.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_literal.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_template_literal.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_template_literal.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_type.d.mts +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_type.mjs +22 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_union.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_union.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/to_indexable.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/to_indexable.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/to_indexable_keys.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/to_indexable_keys.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/array_indexer.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/array_indexer.mjs +18 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_array.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_array.mjs +35 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_object.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_object.mjs +40 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_tuple.d.mts +13 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_tuple.mjs +35 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_type.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_type.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/instantiate.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/instantiate.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/instance_type/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/instance_type/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/instance_type/instantiate.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/instance_type/instantiate.mjs +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/instantiate.d.mts +165 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/instantiate.mjs +159 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/interface/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/interface/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/interface/instantiate.d.mts +18 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/interface/instantiate.mjs +23 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_literal.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_literal.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_template_literal.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_template_literal.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_type.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_type.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_union.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_union.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/instantiate.d.mts +38 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/instantiate.mjs +52 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/mapping.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/mapping.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_any.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_any.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_array.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_array.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_object.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_object.mjs +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_record.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_record.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_tuple.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_tuple.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_type.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_type.mjs +23 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/instantiate.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/instantiate.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/instantiate.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/instantiate.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/mapped_operation.d.mts +22 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/mapped_operation.mjs +42 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/mapped_variants.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/mapped_variants.mjs +34 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/module/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/module/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/module/instantiate.d.mts +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/module/instantiate.mjs +34 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/non_nullable/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/non_nullable/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/non_nullable/instantiate.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/non_nullable/instantiate.mjs +22 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/collapse.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/collapse.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_cyclic.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_cyclic.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_intersect.d.mts +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_intersect.mjs +22 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_object.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_object.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_tuple.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_tuple.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_type.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_type.mjs +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_union.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_union.mjs +19 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/object/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/omit/from_type.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/omit/from_type.mjs +18 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/omit/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/omit/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/omit/instantiate.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/omit/instantiate.mjs +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/options/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/options/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/options/instantiate.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/options/instantiate.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/parameters/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/parameters/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/parameters/instantiate.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/parameters/instantiate.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_cyclic.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_cyclic.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_intersect.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_intersect.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_object.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_object.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_type.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_type.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_union.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_union.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/instantiate.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/partial/instantiate.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/index.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/index.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/pattern.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/pattern.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/template.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/template.mjs +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/pick/from_type.d.mts +13 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/pick/from_type.mjs +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/pick/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/pick/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/pick/instantiate.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/pick/instantiate.mjs +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_array.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_array.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_cyclic.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_cyclic.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_intersect.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_intersect.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_object.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_object.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_tuple.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_tuple.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_type.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_type.mjs +22 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_union.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_union.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/instantiate.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/instantiate.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key.d.mts +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key.mjs +40 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_any.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_any.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_boolean.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_boolean.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_enum.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_enum.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_integer.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_integer.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_intersect.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_intersect.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_literal.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_literal.mjs +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_number.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_number.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_string.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_string.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_template_literal.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_template_literal.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_union.d.mts +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_union.mjs +39 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/instantiate.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/instantiate.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/record_create.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/record/record_create.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/ref/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/ref/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/ref/instantiate.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/ref/instantiate.mjs +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_cyclic.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_cyclic.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_intersect.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_intersect.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_object.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_object.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_type.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_type.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_union.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_union.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/instantiate.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/required/instantiate.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/rest/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/rest/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/rest/spread.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/rest/spread.mjs +19 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/return_type/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/return_type/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/return_type/instantiate.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/return_type/instantiate.mjs +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/create.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/create.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/decode.d.mts +30 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/decode.mjs +81 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/encode.d.mts +33 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/encode.mjs +81 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/index.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/index.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/instantiate.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/instantiate.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/is_finite.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/is_finite.mjs +26 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/is_pattern.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/is_pattern.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/static.d.mts +18 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/static.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/this/expand_this.d.mts +19 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/this/expand_this.mjs +32 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/tuple/to_object.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/engine/tuple/to_object.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/any.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/any.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/array.d.mts +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/array.mjs +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/async_iterator.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/async_iterator.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/bigint.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/bigint.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/boolean.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/boolean.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/constructor.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/constructor.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/enum.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/enum.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/extends.d.mts +13 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/extends.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/extends_left.d.mts +55 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/extends_left.mjs +83 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/extends_right.d.mts +25 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/extends_right.mjs +44 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/function.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/function.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/index.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/index.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/inference.d.mts +34 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/inference.mjs +62 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/integer.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/integer.mjs +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/intersect.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/intersect.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/iterator.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/iterator.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/literal.d.mts +18 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/literal.mjs +44 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/never.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/never.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/null.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/null.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/number.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/number.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/object.d.mts +25 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/object.mjs +87 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/parameters.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/parameters.mjs +28 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/promise.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/promise.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/result.d.mts +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/result.mjs +36 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/return_type.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/return_type.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/string.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/string.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/symbol.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/symbol.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/template_literal.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/template_literal.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/tuple.d.mts +25 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/tuple.mjs +60 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/undefined.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/undefined.mjs +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/union.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/union.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/unknown.d.mts +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/unknown.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/void.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/extends/void.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/index.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/index.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/mapping.d.mts +365 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/mapping.mjs +532 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/parser.d.mts +260 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/parser.mjs +135 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/script.d.mts +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/script.mjs +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/bigint.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/bigint.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/const.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/const.mjs +18 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/ident.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/ident.mjs +26 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/index.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/index.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/integer.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/integer.mjs +19 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/char.d.mts +75 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/char.mjs +26 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/guard.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/guard.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/many.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/many.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/match.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/match.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/optional.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/optional.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/take.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/take.mjs +30 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/trim.d.mts +19 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/trim.mjs +34 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/number.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/number.mjs +19 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/rest.d.mts +4 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/rest.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/span.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/span.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/string.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/string.mjs +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/unsigned_integer.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/unsigned_integer.mjs +26 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/unsigned_number.d.mts +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/unsigned_number.mjs +38 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/until.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/until.mjs +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/until_1.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/type/script/token/until_1.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/_codec.d.mts +30 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/_codec.mjs +61 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/_immutable.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/_immutable.mjs +26 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/_optional.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/_optional.mjs +27 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/_readonly.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/_readonly.mjs +26 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/_refine.d.mts +26 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/_refine.mjs +37 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/any.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/any.mjs +18 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/array.d.mts +18 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/array.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/async_iterator.d.mts +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/async_iterator.mjs +28 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/base.d.mts +50 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/base.mjs +84 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/bigint.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/bigint.mjs +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/boolean.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/boolean.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/call.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/call.mjs +22 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/constructor.d.mts +18 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/constructor.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/cyclic.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/cyclic.mjs +29 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/deferred.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/deferred.mjs +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/enum.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/enum.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/function.d.mts +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/function.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/generic.d.mts +13 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/generic.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/identifier.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/identifier.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/index.d.mts +48 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/index.mjs +54 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/infer.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/infer.mjs +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/integer.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/integer.mjs +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/intersect.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/intersect.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/iterator.d.mts +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/iterator.mjs +28 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/literal.d.mts +31 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/literal.mjs +62 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/never.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/never.mjs +22 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/null.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/null.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/number.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/number.mjs +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/object.d.mts +18 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/object.mjs +28 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/parameter.d.mts +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/parameter.mjs +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/promise.d.mts +21 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/promise.mjs +29 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/properties.d.mts +43 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/properties.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/record.d.mts +46 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/record.mjs +60 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/ref.d.mts +19 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/ref.mjs +18 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/rest.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/rest.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/schema.d.mts +176 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/schema.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/static.d.mts +48 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/static.mjs +3 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/string.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/string.mjs +22 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/symbol.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/symbol.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/template_literal.d.mts +28 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/template_literal.mjs +37 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/this.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/this.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/tuple.d.mts +38 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/tuple.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/undefined.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/undefined.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/union.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/union.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/unknown.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/unknown.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/unsafe.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/unsafe.mjs +20 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/void.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/type/types/void.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/typebox.d.mts +73 -0
- package/extensions/third-party/node_modules/typebox/build/typebox.mjs +89 -0
- package/extensions/third-party/node_modules/typebox/build/value/assert/assert.d.mts +14 -0
- package/extensions/third-party/node_modules/typebox/build/value/assert/assert.mjs +28 -0
- package/extensions/third-party/node_modules/typebox/build/value/assert/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/assert/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/check/check.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/value/check/check.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/value/check/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/check/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/additional.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/additional.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/clean.d.mts +15 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/clean.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_array.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_array.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_base.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_base.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_cyclic.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_cyclic.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_intersect.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_intersect.mjs +26 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_object.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_object.mjs +31 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_record.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_record.mjs +32 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_ref.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_ref.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_tuple.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_tuple.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_type.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_type.mjs +23 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_union.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/from_union.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/clean/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/clone/clone.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/value/clone/clone.mjs +83 -0
- package/extensions/third-party/node_modules/typebox/build/value/clone/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/clone/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/callback.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/callback.mjs +25 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/decode.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/decode.mjs +50 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/encode.d.mts +12 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/encode.mjs +50 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_array.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_array.mjs +38 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_cyclic.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_cyclic.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_intersect.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_intersect.mjs +58 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_object.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_object.mjs +45 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_record.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_record.mjs +44 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_ref.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_ref.mjs +31 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_tuple.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_tuple.mjs +35 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_type.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_type.mjs +22 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_union.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/from_union.mjs +40 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/has.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/has.mjs +93 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/index.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/value/codec/index.mjs +3 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/convert.d.mts +13 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/convert.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_additional.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_additional.mjs +18 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_array.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_array.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_base.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_base.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_bigint.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_bigint.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_boolean.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_boolean.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_cyclic.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_cyclic.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_enum.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_enum.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_integer.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_integer.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_intersect.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_intersect.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_literal.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_literal.mjs +44 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_null.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_null.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_number.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_number.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_object.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_object.mjs +28 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_record.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_record.mjs +23 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_ref.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_ref.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_string.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_string.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_template_literal.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_template_literal.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_tuple.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_tuple.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_type.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_type.mjs +45 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_undefined.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_undefined.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_union.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_union.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_void.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/from_void.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_array.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_array.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_bigint.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_bigint.mjs +45 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_boolean.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_boolean.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_null.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_null.mjs +44 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_number.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_number.mjs +44 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_result.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_result.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_string.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_string.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_undefined.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_undefined.mjs +44 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/create.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/create.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/error.d.mts +5 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/error.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_array.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_array.mjs +10 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_async_iterator.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_async_iterator.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_base.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_base.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_bigint.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_bigint.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_boolean.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_boolean.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_constructor.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_constructor.mjs +10 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_cyclic.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_cyclic.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_default.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_default.mjs +10 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_enum.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_enum.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_function.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_function.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_integer.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_integer.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_intersect.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_intersect.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_iterator.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_iterator.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_literal.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_literal.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_never.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_never.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_null.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_null.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_number.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_number.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_object.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_object.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_promise.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_promise.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_record.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_record.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_ref.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_ref.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_string.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_string.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_symbol.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_symbol.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_template_literal.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_template_literal.mjs +11 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_tuple.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_tuple.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_type.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_type.mjs +69 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_undefined.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_undefined.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_union.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_union.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_void.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/from_void.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/index.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/create/index.mjs +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/default.d.mts +13 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/default.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_array.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_array.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_base.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_base.mjs +5 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_cyclic.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_cyclic.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_default.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_default.mjs +13 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_intersect.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_intersect.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_object.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_object.mjs +32 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_record.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_record.mjs +26 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_ref.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_ref.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_tuple.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_tuple.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_type.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_type.mjs +27 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_union.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/from_union.mjs +14 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/default/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/delta/diff.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/value/delta/diff.mjs +135 -0
- package/extensions/third-party/node_modules/typebox/build/value/delta/edit.d.mts +24 -0
- package/extensions/third-party/node_modules/typebox/build/value/delta/edit.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/value/delta/index.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/value/delta/index.mjs +3 -0
- package/extensions/third-party/node_modules/typebox/build/value/delta/patch.d.mts +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/delta/patch.mjs +42 -0
- package/extensions/third-party/node_modules/typebox/build/value/equal/equal.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/equal/equal.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/equal/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/equal/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/errors/errors.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/value/errors/errors.mjs +17 -0
- package/extensions/third-party/node_modules/typebox/build/value/errors/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/errors/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/hash/hash.d.mts +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/hash/hash.mjs +10 -0
- package/extensions/third-party/node_modules/typebox/build/value/hash/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/hash/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/index.d.mts +21 -0
- package/extensions/third-party/node_modules/typebox/build/value/index.mjs +30 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/error.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/error.mjs +6 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/from_array.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/from_array.mjs +16 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/from_object.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/from_object.mjs +40 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/from_unknown.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/from_unknown.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/from_value.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/from_value.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/mutate.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/value/mutate/mutate.mjs +41 -0
- package/extensions/third-party/node_modules/typebox/build/value/parse/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/parse/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/parse/parse.d.mts +11 -0
- package/extensions/third-party/node_modules/typebox/build/value/parse/parse.mjs +47 -0
- package/extensions/third-party/node_modules/typebox/build/value/pipeline/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/pipeline/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/pipeline/pipeline.d.mts +10 -0
- package/extensions/third-party/node_modules/typebox/build/value/pipeline/pipeline.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/value/pointer/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/pointer/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/error.d.mts +7 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/error.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_array.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_array.mjs +39 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_base.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_base.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_enum.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_enum.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_intersect.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_intersect.mjs +8 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_object.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_object.mjs +33 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_record.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_record.mjs +33 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_ref.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_ref.mjs +9 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_template_literal.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_template_literal.mjs +7 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_tuple.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_tuple.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_type.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_type.mjs +86 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_union.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_union.mjs +24 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_unknown.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/from_unknown.mjs +12 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/index.d.mts +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/index.mjs +1 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/repair.d.mts +17 -0
- package/extensions/third-party/node_modules/typebox/build/value/repair/repair.mjs +20 -0
- package/extensions/third-party/node_modules/typebox/build/value/shared/index.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/value/shared/index.mjs +4 -0
- package/extensions/third-party/node_modules/typebox/build/value/shared/optional_undefined.d.mts +2 -0
- package/extensions/third-party/node_modules/typebox/build/value/shared/optional_undefined.mjs +15 -0
- package/extensions/third-party/node_modules/typebox/build/value/shared/union_priority_sort.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/value/shared/union_priority_sort.mjs +36 -0
- package/extensions/third-party/node_modules/typebox/build/value/shared/union_score_select.d.mts +3 -0
- package/extensions/third-party/node_modules/typebox/build/value/shared/union_score_select.mjs +51 -0
- package/extensions/third-party/node_modules/typebox/build/value/value.d.mts +16 -0
- package/extensions/third-party/node_modules/typebox/build/value/value.mjs +16 -0
- package/extensions/third-party/node_modules/typebox/license +23 -0
- package/extensions/third-party/node_modules/typebox/package.json +87 -0
- package/extensions/third-party/node_modules/typebox/readme.md +356 -0
- package/extensions/third-party/node_modules/yaml/LICENSE +13 -0
- package/extensions/third-party/node_modules/yaml/README.md +172 -0
- package/extensions/third-party/node_modules/yaml/bin.mjs +11 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/compose-collection.js +88 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/compose-doc.js +43 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/compose-node.js +109 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/compose-scalar.js +86 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/composer.js +217 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-block-map.js +115 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +198 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +49 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-end.js +37 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +207 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +223 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-props.js +146 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/util-contains-newline.js +34 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +26 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +15 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/compose/util-map-includes.js +13 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/doc/Document.js +335 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/doc/anchors.js +71 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/doc/applyReviver.js +55 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/doc/createNode.js +88 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/doc/directives.js +176 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/errors.js +57 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/index.js +17 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/log.js +11 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/nodes/Alias.js +114 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/nodes/Collection.js +147 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/nodes/Node.js +38 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/nodes/Pair.js +36 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/nodes/Scalar.js +24 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/nodes/YAMLMap.js +144 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +113 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +63 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/nodes/identity.js +36 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/nodes/toJS.js +37 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/parse/cst-scalar.js +214 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/parse/cst-stringify.js +61 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/parse/cst-visit.js +97 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/parse/cst.js +98 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/parse/lexer.js +717 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/parse/line-counter.js +39 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/parse/parser.js +967 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/public-api.js +102 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/Schema.js +37 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/common/map.js +17 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/common/null.js +15 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/common/seq.js +17 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/common/string.js +14 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/core/bool.js +19 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/core/float.js +43 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/core/int.js +38 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/core/schema.js +23 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/json/schema.js +62 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/tags.js +96 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +58 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +26 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +46 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +71 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.js +64 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +74 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +78 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +39 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +93 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +146 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringify.js +129 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +153 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyComment.js +20 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +85 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +24 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyPair.js +150 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyString.js +336 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/util.js +11 -0
- package/extensions/third-party/node_modules/yaml/browser/dist/visit.js +233 -0
- package/extensions/third-party/node_modules/yaml/browser/index.js +5 -0
- package/extensions/third-party/node_modules/yaml/browser/package.json +3 -0
- package/extensions/third-party/node_modules/yaml/dist/cli.d.ts +8 -0
- package/extensions/third-party/node_modules/yaml/dist/cli.mjs +201 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/compose-collection.d.ts +11 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/compose-collection.js +90 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/compose-doc.d.ts +7 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/compose-doc.js +45 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/compose-node.d.ts +29 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/compose-node.js +112 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/compose-scalar.d.ts +5 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/compose-scalar.js +88 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/composer.d.ts +63 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/composer.js +222 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-map.d.ts +6 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-map.js +117 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +11 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-scalar.js +200 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +6 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-seq.js +51 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-end.d.ts +6 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-end.js +39 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +7 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-flow-collection.js +209 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +10 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-flow-scalar.js +225 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-props.d.ts +23 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/resolve-props.js +148 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/util-contains-newline.d.ts +2 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +2 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/util-empty-scalar-position.js +28 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +3 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/util-map-includes.d.ts +4 -0
- package/extensions/third-party/node_modules/yaml/dist/compose/util-map-includes.js +15 -0
- package/extensions/third-party/node_modules/yaml/dist/doc/Document.d.ts +141 -0
- package/extensions/third-party/node_modules/yaml/dist/doc/Document.js +337 -0
- package/extensions/third-party/node_modules/yaml/dist/doc/anchors.d.ts +24 -0
- package/extensions/third-party/node_modules/yaml/dist/doc/anchors.js +76 -0
- package/extensions/third-party/node_modules/yaml/dist/doc/applyReviver.d.ts +9 -0
- package/extensions/third-party/node_modules/yaml/dist/doc/applyReviver.js +57 -0
- package/extensions/third-party/node_modules/yaml/dist/doc/createNode.d.ts +17 -0
- package/extensions/third-party/node_modules/yaml/dist/doc/createNode.js +90 -0
- package/extensions/third-party/node_modules/yaml/dist/doc/directives.d.ts +49 -0
- package/extensions/third-party/node_modules/yaml/dist/doc/directives.js +178 -0
- package/extensions/third-party/node_modules/yaml/dist/errors.d.ts +21 -0
- package/extensions/third-party/node_modules/yaml/dist/errors.js +62 -0
- package/extensions/third-party/node_modules/yaml/dist/index.d.ts +25 -0
- package/extensions/third-party/node_modules/yaml/dist/index.js +50 -0
- package/extensions/third-party/node_modules/yaml/dist/log.d.ts +3 -0
- package/extensions/third-party/node_modules/yaml/dist/log.js +19 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/Alias.d.ts +29 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/Alias.js +116 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/Collection.d.ts +73 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/Collection.js +151 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/Node.d.ts +53 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/Node.js +40 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/Pair.d.ts +22 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/Pair.js +39 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/Scalar.d.ts +43 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/Scalar.js +27 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/YAMLMap.d.ts +53 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +60 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +4 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/addPairToJSMap.js +65 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/identity.d.ts +23 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/identity.js +53 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/toJS.d.ts +29 -0
- package/extensions/third-party/node_modules/yaml/dist/nodes/toJS.js +39 -0
- package/extensions/third-party/node_modules/yaml/dist/options.d.ts +350 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/cst-scalar.d.ts +64 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/cst-stringify.d.ts +8 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/cst-visit.d.ts +39 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/cst-visit.js +99 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/cst.d.ts +109 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/cst.js +112 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/lexer.d.ts +87 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/lexer.js +719 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/line-counter.d.ts +22 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/line-counter.js +41 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/parser.d.ts +84 -0
- package/extensions/third-party/node_modules/yaml/dist/parse/parser.js +972 -0
- package/extensions/third-party/node_modules/yaml/dist/public-api.d.ts +44 -0
- package/extensions/third-party/node_modules/yaml/dist/public-api.js +107 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/Schema.d.ts +17 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/Schema.js +39 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/common/map.d.ts +2 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/common/map.js +19 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/common/null.d.ts +4 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/common/null.js +17 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/common/seq.d.ts +2 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/common/seq.js +19 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/common/string.d.ts +2 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/common/string.js +16 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/core/bool.d.ts +4 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/core/bool.js +21 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/core/float.d.ts +4 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/core/float.js +47 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/core/int.d.ts +4 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/core/int.js +42 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/core/schema.d.ts +1 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/core/schema.js +25 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/json/schema.d.ts +2 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/json/schema.js +64 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/json-schema.d.ts +69 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/tags.d.ts +48 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/tags.js +99 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/types.d.ts +92 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +2 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/binary.js +70 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +7 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +4 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +5 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/merge.d.ts +9 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/merge.js +68 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +22 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +10 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +1 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/schema.js +41 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +28 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
- package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +34 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/foldFlowLines.js +151 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringify.d.ts +21 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringify.js +132 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +17 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyCollection.js +155 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyComment.d.ts +10 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +4 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +2 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyNumber.js +26 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyPair.d.ts +3 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyString.d.ts +9 -0
- package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyString.js +338 -0
- package/extensions/third-party/node_modules/yaml/dist/test-events.d.ts +4 -0
- package/extensions/third-party/node_modules/yaml/dist/test-events.js +134 -0
- package/extensions/third-party/node_modules/yaml/dist/util.d.ts +16 -0
- package/extensions/third-party/node_modules/yaml/dist/util.js +28 -0
- package/extensions/third-party/node_modules/yaml/dist/visit.d.ts +102 -0
- package/extensions/third-party/node_modules/yaml/dist/visit.js +236 -0
- package/extensions/third-party/node_modules/yaml/package.json +97 -0
- package/extensions/third-party/node_modules/yaml/util.js +2 -0
- package/extensions/third-party/package-lock.json +184 -0
- package/extensions/third-party/package.json +11 -0
- package/extensions/third-party/subagent-policy.ts +165 -0
- package/extensions/third-party/vendor/README.md +16 -0
- package/extensions/third-party/vendor/pi-subagents-0.52.1-dev-agent-followthrough.2.tgz +0 -0
- package/npm-shrinkwrap.json +2259 -0
- package/package.json +73 -0
- package/runtime/process-tree.ts +143 -0
- package/runtime/product-config.mjs +21 -0
- package/runtime/resolve-installed-pi.mjs +77 -0
- package/runtime/verify-pi-runtime.mjs +257 -0
- package/skills/pi-subagents/SKILL.md +44 -0
|
@@ -0,0 +1,2423 @@
|
|
|
1
|
+
import { spawn, type ChildProcess } from "node:child_process";
|
|
2
|
+
import { randomUUID } from "node:crypto";
|
|
3
|
+
import { constants as fsConstants } from "node:fs";
|
|
4
|
+
import { access } from "node:fs/promises";
|
|
5
|
+
import net from "node:net";
|
|
6
|
+
import os from "node:os";
|
|
7
|
+
import path from "node:path";
|
|
8
|
+
import type { AgentToolResult, AgentToolUpdateCallback, ExtensionContext } from "@earendil-works/pi-coding-agent";
|
|
9
|
+
import { canRetryInForeground, outcomeAfterCheck, outcomeAfterObservedValues, prepareAction, type ActionState, type PreparedAction } from "./actions.ts";
|
|
10
|
+
import { cdpClickForContext, cdpDragForContext, cdpEvaluateForContext, cdpKeypressForContext, cdpMouseForContext, cdpNavigateContext, cdpScrollForContext, cdpSnapshotForContext, cdpTabForWindow, cdpTypeFocusedForContext, cdpTypeForContext, disconnectCdp, listCdpPageContexts, type CdpConsoleEntry, type CdpPageSnapshot } from "./cdp.ts";
|
|
11
|
+
import { getComputerUseConfig, isBrowserUseEnabled, isHeadlessMode, loadComputerUseConfig } from "./config.ts";
|
|
12
|
+
import { noteAfterAct, noteFromLook, noteRegionKeyForRef, renderNote, type WindowNote } from "./note.ts";
|
|
13
|
+
import { foldToBudget, graftScopedOutline, nodeByRef, outlineNodeLabel, outlineNodePath, rankedTextMatch, restoreOutline, searchOutline, searchOutlineRanked, serializeOutline, serializeOutlineNodeShallow, serializeOutlineSearchMatch, type LookResponse, type Outline, type OutlineChange, type OutlineNode, type OutlineSearchMatch, type SerializedOutline, type SerializedOutlineNode, type SerializedOutlineSearchMatch } from "./outline.ts";
|
|
14
|
+
import { applyOutputEnvelope, boundToolError, clearStoredOutputs, readStoredOutput, UI_TEXT_PAGE_CHARS } from "./output.ts";
|
|
15
|
+
import { AGENT_TOOL_NAMES, type ActParams, type EvaluateBrowserParams, type ExpandUiParams, type ImageMode, type InspectUiParams, type LaunchBrowserParams, type FindParams, type NavigateBrowserParams, type ObserveParams, type ObserveTargetParams, type ReadTextParams, type RootSelector, type SearchUiParams, type UiAction, type WaitForParams } from "./contract.ts";
|
|
16
|
+
import { toFiniteNumber } from "./platform/coerce.ts";
|
|
17
|
+
import { currentPlatformBackend } from "./platform/index.ts";
|
|
18
|
+
import type { FramePoints, HelperActPerformed, HelperActResult, NativeInputDelivery, PlatformActRequest, PlatformApp as HelperApp, PlatformDiagnostics, PlatformFrontmostResult as FrontmostResult, PlatformRoot as HelperWindow } from "./platform/types.ts";
|
|
19
|
+
import type { PermissionStatus } from "./permissions.ts";
|
|
20
|
+
import { ResourceScheduler } from "./runtime.ts";
|
|
21
|
+
import { SavedStates, type CurrentCapture, type CurrentTarget, type OperationState } from "./state.ts";
|
|
22
|
+
import { changesBetween, renderChanges, stabilizeRefs } from "./view.ts";
|
|
23
|
+
export type { ActParams, EvaluateBrowserParams, ExpandUiParams, ImageMode, InspectUiParams, LaunchBrowserParams, FindParams, MouseButtonName, NavigateBrowserParams, ObserveParams, ObserveTargetParams, ReadTextParams, RootSelector, SearchUiParams, StateTargetParams, UiAction, WaitForParams } from "./contract.ts";
|
|
24
|
+
|
|
25
|
+
interface ActivationFlags {
|
|
26
|
+
activated: boolean;
|
|
27
|
+
unminimized: boolean;
|
|
28
|
+
raised: boolean;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
type ExecutionVariant = "stealth" | "default";
|
|
32
|
+
type ActionDelivery = "ax" | NativeInputDelivery;
|
|
33
|
+
type DeliveryPolicy = "ax_only" | "background" | "default" | "foreground";
|
|
34
|
+
type ActOutcome = "worked" | "didnt" | "unknown";
|
|
35
|
+
|
|
36
|
+
interface ExecutionTrace {
|
|
37
|
+
strategy:
|
|
38
|
+
| "look"
|
|
39
|
+
| "act"
|
|
40
|
+
| "wait"
|
|
41
|
+
| "browser_open_location"
|
|
42
|
+
| "cdp_navigate";
|
|
43
|
+
runtimeMode?: ExecutionVariant;
|
|
44
|
+
variant?: ExecutionVariant;
|
|
45
|
+
stealthCompatible?: boolean;
|
|
46
|
+
delivery?: ActionDelivery;
|
|
47
|
+
deliveryPolicy?: DeliveryPolicy;
|
|
48
|
+
outcome?: ActOutcome;
|
|
49
|
+
performed?: HelperActPerformed;
|
|
50
|
+
evidence?: Record<string, unknown>;
|
|
51
|
+
error?: HelperActResult["error"];
|
|
52
|
+
rootDelta?: HelperActResult["rootDelta"];
|
|
53
|
+
steps?: ExecutionTrace[];
|
|
54
|
+
actionCount?: number;
|
|
55
|
+
stoppedAt?: number;
|
|
56
|
+
backgroundFirst?: boolean;
|
|
57
|
+
escalatedToForeground?: boolean;
|
|
58
|
+
escalationReason?: string;
|
|
59
|
+
backgroundAttempt?: { outcome: "foreground_required" | "didnt"; reason: string };
|
|
60
|
+
verification?: {
|
|
61
|
+
status: "verified" | "preexisting" | "failed";
|
|
62
|
+
text?: string;
|
|
63
|
+
role?: string;
|
|
64
|
+
value?: string;
|
|
65
|
+
gone?: boolean;
|
|
66
|
+
timeoutMs: number;
|
|
67
|
+
};
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
interface ComputerUseDetails {
|
|
71
|
+
tool: string;
|
|
72
|
+
target: {
|
|
73
|
+
app: string;
|
|
74
|
+
bundleId?: string;
|
|
75
|
+
pid: number;
|
|
76
|
+
windowTitle: string;
|
|
77
|
+
windowId: number;
|
|
78
|
+
windowRef?: string;
|
|
79
|
+
nativeWindowRef?: string;
|
|
80
|
+
};
|
|
81
|
+
capture: {
|
|
82
|
+
stateId: string;
|
|
83
|
+
width: number;
|
|
84
|
+
height: number;
|
|
85
|
+
scaleFactor: number;
|
|
86
|
+
timestamp: number;
|
|
87
|
+
coordinateSpace: "window-relative-screenshot-pixels";
|
|
88
|
+
};
|
|
89
|
+
lookId?: string;
|
|
90
|
+
view: "full" | "diff";
|
|
91
|
+
baseStateId?: string;
|
|
92
|
+
changes?: OutlineChange[];
|
|
93
|
+
viewReason?: "root_replaced" | "change_budget_exceeded" | "identity_confidence_low";
|
|
94
|
+
renderedOutline?: string;
|
|
95
|
+
outline?: SerializedOutline;
|
|
96
|
+
note?: WindowNote;
|
|
97
|
+
activation: ActivationFlags;
|
|
98
|
+
execution: ExecutionTrace;
|
|
99
|
+
config?: {
|
|
100
|
+
browser_use: boolean;
|
|
101
|
+
headless: boolean;
|
|
102
|
+
};
|
|
103
|
+
helper?: PlatformDiagnostics;
|
|
104
|
+
status?: "ok";
|
|
105
|
+
axDiagnostics?: {
|
|
106
|
+
reason?: string;
|
|
107
|
+
message?: string;
|
|
108
|
+
debug?: unknown;
|
|
109
|
+
};
|
|
110
|
+
/** Recent browser console messages/exceptions; only present when CDP is active. */
|
|
111
|
+
console?: CdpConsoleEntry[];
|
|
112
|
+
imageReason?:
|
|
113
|
+
| "fallback_recovery"
|
|
114
|
+
| "browser_ax_window_unavailable"
|
|
115
|
+
| "no_ax_targets"
|
|
116
|
+
| "sparse_ax_targets"
|
|
117
|
+
| "weak_ax_targets"
|
|
118
|
+
| "unlabeled_ax_targets"
|
|
119
|
+
| "duplicated_ax_labels"
|
|
120
|
+
| "browser_wait_verification";
|
|
121
|
+
}
|
|
122
|
+
interface TerminalDesktopActionDetails {
|
|
123
|
+
tool: "act_ui";
|
|
124
|
+
status: "target_closed" | "post_action_observation_failed";
|
|
125
|
+
baseStateId: string;
|
|
126
|
+
target: {
|
|
127
|
+
app: string;
|
|
128
|
+
bundleId?: string;
|
|
129
|
+
pid: number;
|
|
130
|
+
windowTitle: string;
|
|
131
|
+
windowId: number;
|
|
132
|
+
windowRef?: string;
|
|
133
|
+
nativeWindowRef?: string;
|
|
134
|
+
};
|
|
135
|
+
execution: ExecutionTrace;
|
|
136
|
+
error: { code: string; message: string };
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
interface ListWindowsDetails {
|
|
141
|
+
tool: "find_roots";
|
|
142
|
+
query: FindParams;
|
|
143
|
+
totalMatches?: number;
|
|
144
|
+
returned?: number;
|
|
145
|
+
hasMore?: boolean;
|
|
146
|
+
windows: Array<{
|
|
147
|
+
app: string;
|
|
148
|
+
bundleId?: string;
|
|
149
|
+
pid: number;
|
|
150
|
+
kind: string;
|
|
151
|
+
windowTitle: string;
|
|
152
|
+
windowId?: number;
|
|
153
|
+
windowRef: string;
|
|
154
|
+
nativeWindowRef?: string;
|
|
155
|
+
framePoints: FramePoints;
|
|
156
|
+
scaleFactor: number;
|
|
157
|
+
isMinimized: boolean;
|
|
158
|
+
isOnscreen: boolean;
|
|
159
|
+
isMain: boolean;
|
|
160
|
+
isFocused: boolean;
|
|
161
|
+
isModal: boolean;
|
|
162
|
+
sheetCount?: number;
|
|
163
|
+
role?: string;
|
|
164
|
+
subrole?: string;
|
|
165
|
+
pairing?: { confidence: "exact" | "high" | "low"; score: number };
|
|
166
|
+
zOrder: number;
|
|
167
|
+
browserUseAllowed: boolean;
|
|
168
|
+
score: number;
|
|
169
|
+
url?: string;
|
|
170
|
+
}>;
|
|
171
|
+
config: {
|
|
172
|
+
browser_use: boolean;
|
|
173
|
+
headless: boolean;
|
|
174
|
+
};
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
interface BrowserObservationDetails {
|
|
178
|
+
tool: string;
|
|
179
|
+
kind: "browser_page";
|
|
180
|
+
stateId: string;
|
|
181
|
+
baseStateId?: string;
|
|
182
|
+
view: "full" | "diff";
|
|
183
|
+
changes?: OutlineChange[];
|
|
184
|
+
root: { ref: string; kind: "browser_page"; title: string; url: string };
|
|
185
|
+
outline: SerializedOutline;
|
|
186
|
+
renderedOutline: string;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
interface EvaluateBrowserDetails {
|
|
190
|
+
tool: "evaluate_browser";
|
|
191
|
+
baseStateId: string;
|
|
192
|
+
stateId: string;
|
|
193
|
+
view: "full" | "diff";
|
|
194
|
+
changes?: OutlineChange[];
|
|
195
|
+
outline: SerializedOutline;
|
|
196
|
+
renderedOutline: string;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
interface ReadTextDetails {
|
|
200
|
+
tool: "read_text";
|
|
201
|
+
ref?: string;
|
|
202
|
+
offset: number;
|
|
203
|
+
limit: number;
|
|
204
|
+
totalChars?: number;
|
|
205
|
+
totalBytes?: number;
|
|
206
|
+
hasMore: boolean;
|
|
207
|
+
complete?: boolean;
|
|
208
|
+
text: string;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
interface WaitForDetails {
|
|
212
|
+
tool: "wait_for";
|
|
213
|
+
stateId: string;
|
|
214
|
+
baseStateId?: string;
|
|
215
|
+
view: "full" | "diff";
|
|
216
|
+
changes?: OutlineChange[];
|
|
217
|
+
found: boolean;
|
|
218
|
+
gone?: boolean;
|
|
219
|
+
timedOut?: boolean;
|
|
220
|
+
target?: SerializedOutlineSearchMatch;
|
|
221
|
+
nodeCount?: number;
|
|
222
|
+
text?: string;
|
|
223
|
+
role?: string;
|
|
224
|
+
value?: string;
|
|
225
|
+
scopeRef?: string;
|
|
226
|
+
outline: SerializedOutline;
|
|
227
|
+
renderedOutline: string;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
interface OutlineToolDetails {
|
|
231
|
+
tool: "search_ui" | "expand_ui" | "inspect_ui";
|
|
232
|
+
stateId?: string;
|
|
233
|
+
lookId?: string;
|
|
234
|
+
outline?: SerializedOutline;
|
|
235
|
+
renderedOutline?: string;
|
|
236
|
+
totalMatches?: number;
|
|
237
|
+
returned?: number;
|
|
238
|
+
hasMore?: boolean;
|
|
239
|
+
matches?: SerializedOutlineSearchMatch[];
|
|
240
|
+
target?: SerializedOutlineNode;
|
|
241
|
+
note?: WindowNote;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
interface ResolvedTarget extends CurrentTarget {
|
|
245
|
+
framePoints: FramePoints;
|
|
246
|
+
scaleFactor: number;
|
|
247
|
+
isMinimized: boolean;
|
|
248
|
+
isOnscreen: boolean;
|
|
249
|
+
isMain: boolean;
|
|
250
|
+
isFocused: boolean;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
interface WindowRefRecord {
|
|
254
|
+
ref: string;
|
|
255
|
+
appName: string;
|
|
256
|
+
bundleId?: string;
|
|
257
|
+
pid: number;
|
|
258
|
+
windowTitle: string;
|
|
259
|
+
windowId?: number;
|
|
260
|
+
nativeWindowRef?: string;
|
|
261
|
+
framePoints: FramePoints;
|
|
262
|
+
scaleFactor: number;
|
|
263
|
+
isMinimized: boolean;
|
|
264
|
+
isOnscreen: boolean;
|
|
265
|
+
isMain: boolean;
|
|
266
|
+
isFocused: boolean;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
interface RuntimeState {
|
|
270
|
+
windowRefs: Map<string, WindowRefRecord>;
|
|
271
|
+
windowRefByIdentity: Map<string, string>;
|
|
272
|
+
browserRootByContext: Map<string, string>;
|
|
273
|
+
browserContextByRoot: Map<string, string>;
|
|
274
|
+
nextRootRefIndex: number;
|
|
275
|
+
managedBrowser?: ChildProcess;
|
|
276
|
+
managedBrowserCdpPort?: string;
|
|
277
|
+
previousCdpPort?: string;
|
|
278
|
+
permissionStatus?: PermissionStatus;
|
|
279
|
+
helperDiagnostics?: PlatformDiagnostics;
|
|
280
|
+
lastPermissionCheckAt: number;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
const MISSING_TARGET_ERROR = "No current controlled window. Call observe_ui first to choose a target window.";
|
|
285
|
+
const CURRENT_TARGET_GONE_ERROR =
|
|
286
|
+
"The current controlled window is no longer available. Call observe_ui to choose a new target window.";
|
|
287
|
+
|
|
288
|
+
const COMMAND_TIMEOUT_MS = 15_000;
|
|
289
|
+
const LOOK_TIMEOUT_MS = 33_000;
|
|
290
|
+
|
|
291
|
+
const ACTION_SETTLE_MS = 280;
|
|
292
|
+
|
|
293
|
+
const BROWSER_CONTEXT_PREFIX = "browser:";
|
|
294
|
+
const MANAGED_BROWSER_READY_TIMEOUT_MS = 15_000;
|
|
295
|
+
const AUTO_IMAGE_MAX_DIMENSION = 900;
|
|
296
|
+
const EXPLICIT_IMAGE_MAX_DIMENSION = 1_600;
|
|
297
|
+
const BROWSER_TRANSACTION_ACTIONS = new Set<UiAction["action"]>(["press", "click", "setText", "typeText", "keypress", "scroll", "drag", "moveMouse"]);
|
|
298
|
+
|
|
299
|
+
const runtimeState: RuntimeState = {
|
|
300
|
+
lastPermissionCheckAt: 0,
|
|
301
|
+
windowRefs: new Map(),
|
|
302
|
+
windowRefByIdentity: new Map(),
|
|
303
|
+
browserRootByContext: new Map(),
|
|
304
|
+
browserContextByRoot: new Map(),
|
|
305
|
+
nextRootRefIndex: 1,
|
|
306
|
+
};
|
|
307
|
+
|
|
308
|
+
const savedStates = new SavedStates();
|
|
309
|
+
let resourceScheduler = new ResourceScheduler();
|
|
310
|
+
|
|
311
|
+
function operationState(): OperationState {
|
|
312
|
+
return savedStates.current();
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
function desktopResourceKey(target: Pick<CurrentTarget, "pid">): string {
|
|
316
|
+
return `desktop-pid:${target.pid}`;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
function persistOperation(state: OperationState): void {
|
|
320
|
+
if (!state.currentTarget || !state.currentCapture || !state.currentLook || !state.currentOutline) return;
|
|
321
|
+
const resourceKey = state.resourceKey ?? desktopResourceKey(state.currentTarget);
|
|
322
|
+
const epoch = state.epoch ?? resourceScheduler.epoch(resourceKey);
|
|
323
|
+
savedStates.saveDesktop(state, resourceKey, epoch);
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
/** Release handles and state owned by the current Pi session. */
|
|
327
|
+
export async function shutdownComputerUseSession(): Promise<void> {
|
|
328
|
+
await resourceScheduler.close();
|
|
329
|
+
resourceScheduler = new ResourceScheduler();
|
|
330
|
+
disconnectCdp();
|
|
331
|
+
|
|
332
|
+
const managedBrowser = runtimeState.managedBrowser;
|
|
333
|
+
runtimeState.managedBrowser = undefined;
|
|
334
|
+
if (managedBrowser) {
|
|
335
|
+
managedBrowser.kill("SIGTERM");
|
|
336
|
+
managedBrowser.unref();
|
|
337
|
+
}
|
|
338
|
+
if (runtimeState.managedBrowserCdpPort && process.env.PI_COMPUTER_USE_CDP_PORT === runtimeState.managedBrowserCdpPort) {
|
|
339
|
+
if (runtimeState.previousCdpPort === undefined) delete process.env.PI_COMPUTER_USE_CDP_PORT;
|
|
340
|
+
else process.env.PI_COMPUTER_USE_CDP_PORT = runtimeState.previousCdpPort;
|
|
341
|
+
}
|
|
342
|
+
runtimeState.managedBrowserCdpPort = undefined;
|
|
343
|
+
runtimeState.previousCdpPort = undefined;
|
|
344
|
+
|
|
345
|
+
savedStates.clear();
|
|
346
|
+
clearStoredOutputs();
|
|
347
|
+
runtimeState.windowRefs.clear();
|
|
348
|
+
runtimeState.windowRefByIdentity.clear();
|
|
349
|
+
runtimeState.browserRootByContext.clear();
|
|
350
|
+
runtimeState.browserContextByRoot.clear();
|
|
351
|
+
runtimeState.nextRootRefIndex = 1;
|
|
352
|
+
runtimeState.permissionStatus = undefined;
|
|
353
|
+
runtimeState.helperDiagnostics = undefined;
|
|
354
|
+
runtimeState.lastPermissionCheckAt = 0;
|
|
355
|
+
await currentPlatformBackend.shutdown?.();
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
function currentRuntimeMode(): ExecutionVariant {
|
|
359
|
+
return isHeadlessMode() ? "stealth" : "default";
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
function currentDeliveryPolicy(): DeliveryPolicy {
|
|
363
|
+
if (isHeadlessMode()) return "background";
|
|
364
|
+
const value = (process.env.PI_COMPUTER_USE_DELIVERY_POLICY ?? process.env.PI_COMPUTER_USE_EVENT_DELIVERY ?? "default").toLowerCase();
|
|
365
|
+
return value === "background" || value === "pid" ? "background" : value === "foreground" || value === "hid" ? "foreground" : value === "ax_only" || value === "ax-only" ? "ax_only" : "default";
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
function nativeInputDelivery(policy = currentDeliveryPolicy()): NativeInputDelivery {
|
|
369
|
+
return policy === "foreground" ? "hid" : "pid";
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
function executionTrace(
|
|
373
|
+
strategy: ExecutionTrace["strategy"],
|
|
374
|
+
variant: ExecutionVariant,
|
|
375
|
+
metadata: Omit<ExecutionTrace, "strategy" | "runtimeMode" | "variant" | "stealthCompatible"> = {},
|
|
376
|
+
): ExecutionTrace {
|
|
377
|
+
return {
|
|
378
|
+
strategy,
|
|
379
|
+
runtimeMode: currentRuntimeMode(),
|
|
380
|
+
variant,
|
|
381
|
+
stealthCompatible: variant === "stealth",
|
|
382
|
+
...metadata,
|
|
383
|
+
};
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
function settleMsForExecution(execution: ExecutionTrace): number {
|
|
387
|
+
// Any deltaSource means the helper already awaited UI quiescence; the
|
|
388
|
+
// bridge must not double-pay with its own settle sleep.
|
|
389
|
+
if (execution.performed?.deltaSource) return 0;
|
|
390
|
+
if (execution.variant === "stealth") {
|
|
391
|
+
switch (execution.strategy) {
|
|
392
|
+
case "browser_open_location":
|
|
393
|
+
return 120;
|
|
394
|
+
default:
|
|
395
|
+
return 120;
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
return ACTION_SETTLE_MS;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
function throwIfAborted(signal?: AbortSignal): void {
|
|
402
|
+
if (signal?.aborted) {
|
|
403
|
+
throw new Error("Operation aborted.");
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
async function sleep(ms: number, signal?: AbortSignal): Promise<void> {
|
|
408
|
+
if (ms <= 0) return;
|
|
409
|
+
throwIfAborted(signal);
|
|
410
|
+
|
|
411
|
+
await new Promise<void>((resolve, reject) => {
|
|
412
|
+
const timer = setTimeout(() => {
|
|
413
|
+
cleanup();
|
|
414
|
+
resolve();
|
|
415
|
+
}, ms);
|
|
416
|
+
|
|
417
|
+
const onAbort = () => {
|
|
418
|
+
cleanup();
|
|
419
|
+
reject(new Error("Operation aborted."));
|
|
420
|
+
};
|
|
421
|
+
|
|
422
|
+
const cleanup = () => {
|
|
423
|
+
clearTimeout(timer);
|
|
424
|
+
signal?.removeEventListener("abort", onAbort);
|
|
425
|
+
};
|
|
426
|
+
|
|
427
|
+
signal?.addEventListener("abort", onAbort, { once: true });
|
|
428
|
+
});
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
async function withWindowWriteLock<T>(target: ResolvedTarget | CurrentTarget, work: () => Promise<T>): Promise<T> {
|
|
432
|
+
const state = operationState();
|
|
433
|
+
const key = desktopResourceKey(target);
|
|
434
|
+
const baseEpoch = state.epoch ?? resourceScheduler.epoch(key);
|
|
435
|
+
const result = await resourceScheduler.write(key, baseEpoch, async (nextEpoch) => {
|
|
436
|
+
state.resourceKey = key;
|
|
437
|
+
state.epoch = nextEpoch;
|
|
438
|
+
return await work();
|
|
439
|
+
});
|
|
440
|
+
return result.value;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
function trimOrUndefined(value: string | undefined): string | undefined {
|
|
445
|
+
if (typeof value !== "string") return undefined;
|
|
446
|
+
const trimmed = value.trim();
|
|
447
|
+
return trimmed.length > 0 ? trimmed : undefined;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
function normalizeText(value: string | undefined): string {
|
|
451
|
+
return (value ?? "").trim().toLowerCase();
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
function toBoolean(value: unknown): boolean {
|
|
455
|
+
return value === true;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
function outlineNodeCenter(node: OutlineNode): { x: number; y: number } {
|
|
459
|
+
if (!node.rect) {
|
|
460
|
+
throw new Error(`Outline ref '${node.ref}' has no full-look coordinates after scoped expansion. Re-observe for coordinates.`);
|
|
461
|
+
}
|
|
462
|
+
return { x: node.rect.x + node.rect.w / 2, y: node.rect.y + node.rect.h / 2 };
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
function validateStateId(stateId?: string): CurrentCapture {
|
|
466
|
+
const state = operationState();
|
|
467
|
+
if (!state.currentCapture) {
|
|
468
|
+
throw new Error("No observation state is available. Call observe_ui first.");
|
|
469
|
+
}
|
|
470
|
+
const supplied = stateId;
|
|
471
|
+
if (supplied && state.currentCapture.stateId !== supplied) {
|
|
472
|
+
throw new Error(
|
|
473
|
+
`Stale state '${supplied}'. The active operation state is '${state.currentCapture.stateId}'. Observe the root again and retry.`,
|
|
474
|
+
);
|
|
475
|
+
}
|
|
476
|
+
const stateTarget = state.currentStateTarget;
|
|
477
|
+
if (stateTarget && state.currentTarget && (stateTarget.pid !== state.currentTarget.pid || stateTarget.windowId !== state.currentTarget.windowId)) {
|
|
478
|
+
throw new Error("The latest state belongs to a different window. Call observe_ui for the target window and retry.");
|
|
479
|
+
}
|
|
480
|
+
return state.currentCapture;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
function formatOutlineNodeLabel(node: OutlineNode): string {
|
|
484
|
+
const label = outlineNodeLabel(node) || "(unlabeled)";
|
|
485
|
+
const identifier = node.identifier ? ` id=${JSON.stringify(node.identifier)}` : "";
|
|
486
|
+
const capabilities = [
|
|
487
|
+
node.canSetValue ? "setValue" : undefined,
|
|
488
|
+
node.canPress ? "press" : undefined,
|
|
489
|
+
node.canFocus ? "focus" : undefined,
|
|
490
|
+
node.canScroll ? "scroll" : undefined,
|
|
491
|
+
node.canIncrement || node.canDecrement ? "adjust" : undefined,
|
|
492
|
+
node.pictureOnly ? "pictureOnly" : undefined,
|
|
493
|
+
].filter((item): item is string => Boolean(item));
|
|
494
|
+
return `${node.ref} ${node.role}${node.subrole ? `/${node.subrole}` : ""}${identifier} ${JSON.stringify(label)}${capabilities.length ? ` [${capabilities.join(",")}]` : ""}`;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
function outlineNodeByRef(ref: string): OutlineNode {
|
|
498
|
+
const state = operationState();
|
|
499
|
+
const outline = state.currentOutline;
|
|
500
|
+
const node = outline ? nodeByRef(outline, ref) : undefined;
|
|
501
|
+
if (!node) {
|
|
502
|
+
const windowHint = state.currentTarget?.windowRef ? `({ root: "${state.currentTarget.windowRef}" })` : "";
|
|
503
|
+
throw new Error(`Outline ref '${ref}' is stale or not available for the latest state. Call observe_ui${windowHint} again and choose a current @e ref.`);
|
|
504
|
+
}
|
|
505
|
+
return node;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
function wireRefForNode(node: OutlineNode): string {
|
|
509
|
+
if (node.pictureOnly || !node.wireRef) {
|
|
510
|
+
throw new Error(`Outline ref '${node.ref}' is pictureOnly and has no semantic element. It can be clicked by coordinates, but semantic-only actions are not available.`);
|
|
511
|
+
}
|
|
512
|
+
return node.wireRef;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
function imageFallbackReason(
|
|
516
|
+
tool: string,
|
|
517
|
+
result: CaptureResult,
|
|
518
|
+
imageMode: ImageMode = "auto",
|
|
519
|
+
): { reason: NonNullable<ComputerUseDetails["imageReason"]>; message: string } | undefined {
|
|
520
|
+
if (imageMode === "never") return undefined;
|
|
521
|
+
if (imageMode === "always") return { reason: "fallback_recovery", message: "An image was requested explicitly for visual verification." };
|
|
522
|
+
const outline = result.outline;
|
|
523
|
+
const labeled = outline.nodes.filter((node) => outlineNodeLabel(node)).length;
|
|
524
|
+
if (outline.nodes.length < 3) {
|
|
525
|
+
return { reason: "sparse_ax_targets", message: "Only a few outline nodes were found, so the look image is attached for context." }
|
|
526
|
+
}
|
|
527
|
+
if (labeled * 3 < outline.nodes.length) {
|
|
528
|
+
return { reason: "unlabeled_ax_targets", message: "Most outline nodes are unlabeled, so the look image is attached for context." }
|
|
529
|
+
}
|
|
530
|
+
if (tool === "wait" && currentPlatformBackend.isBrowserApp(result.target.appName, result.target.bundleId)) {
|
|
531
|
+
return { reason: "browser_wait_verification", message: "Browser content may have changed visually during wait, so an image is attached for fallback." }
|
|
532
|
+
}
|
|
533
|
+
return undefined
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
function currentTargetOrThrow(): CurrentTarget {
|
|
537
|
+
const target = operationState().currentTarget;
|
|
538
|
+
if (!target) {
|
|
539
|
+
throw new Error(MISSING_TARGET_ERROR);
|
|
540
|
+
}
|
|
541
|
+
return target;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
function emptyActivation(): ActivationFlags {
|
|
545
|
+
return { activated: false, unminimized: false, raised: false };
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
async function ensureReady(ctx: ExtensionContext, signal?: AbortSignal): Promise<void> {
|
|
549
|
+
loadComputerUseConfig(ctx.cwd);
|
|
550
|
+
|
|
551
|
+
throwIfAborted(signal);
|
|
552
|
+
const ready = await currentPlatformBackend.ensureReady(
|
|
553
|
+
ctx,
|
|
554
|
+
{
|
|
555
|
+
permissionStatus: runtimeState.permissionStatus,
|
|
556
|
+
lastPermissionCheckAt: runtimeState.lastPermissionCheckAt,
|
|
557
|
+
helperDiagnostics: runtimeState.helperDiagnostics,
|
|
558
|
+
},
|
|
559
|
+
signal,
|
|
560
|
+
);
|
|
561
|
+
runtimeState.permissionStatus = ready.permissionStatus;
|
|
562
|
+
runtimeState.lastPermissionCheckAt = ready.lastPermissionCheckAt;
|
|
563
|
+
runtimeState.helperDiagnostics = ready.helperDiagnostics;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
export async function ensureComputerUseSetup(ctx: ExtensionContext, signal?: AbortSignal): Promise<void> {
|
|
567
|
+
await ensureReady(ctx, signal);
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
async function listApps(signal?: AbortSignal): Promise<HelperApp[]> {
|
|
571
|
+
return await currentPlatformBackend.listApps(signal);
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
async function listWindows(pid: number, signal?: AbortSignal): Promise<HelperWindow[]> {
|
|
575
|
+
return await currentPlatformBackend.listRoots({ pid }, signal);
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
function appMatchesWindowQuery(app: HelperApp, query: FindParams): boolean {
|
|
579
|
+
const appQuery = trimOrUndefined(query.app);
|
|
580
|
+
const bundleQuery = trimOrUndefined(query.bundleId);
|
|
581
|
+
const pidQuery = Number.isFinite(query.pid) ? Math.trunc(query.pid!) : undefined;
|
|
582
|
+
|
|
583
|
+
if (pidQuery !== undefined && app.pid !== pidQuery) return false;
|
|
584
|
+
if (bundleQuery && normalizeText(app.bundleId ?? "") !== normalizeText(bundleQuery)) return false;
|
|
585
|
+
if (appQuery && normalizeText(app.appName) !== normalizeText(appQuery)) return false;
|
|
586
|
+
return true;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
function platformRootSheetCount(window: Pick<HelperWindow, "metadata">): number | undefined {
|
|
590
|
+
const value = window.metadata?.sheetCount;
|
|
591
|
+
return typeof value === "number" && Number.isFinite(value) ? Math.max(0, Math.trunc(value)) : undefined;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
function platformRootPairing(window: Pick<HelperWindow, "metadata">): { confidence: "exact" | "high" | "low"; score: number } | undefined {
|
|
595
|
+
const value = window.metadata?.pairing;
|
|
596
|
+
if (!value || typeof value !== "object") return undefined;
|
|
597
|
+
const pairing = value as { confidence?: unknown; score?: unknown };
|
|
598
|
+
if (pairing.confidence !== "exact" && pairing.confidence !== "high" && pairing.confidence !== "low") return undefined;
|
|
599
|
+
return { confidence: pairing.confidence, score: typeof pairing.score === "number" && Number.isFinite(pairing.score) ? pairing.score : Number.NEGATIVE_INFINITY };
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
function formatWindowLine(window: ListWindowsDetails["windows"][number]): string {
|
|
603
|
+
if (window.kind === "browser_page") return `- ${window.windowRef} browser_page ${JSON.stringify(window.windowTitle)}${window.url ? ` — ${window.url}` : ""}`;
|
|
604
|
+
const flags = [
|
|
605
|
+
window.isFocused ? "focused" : undefined,
|
|
606
|
+
window.isMain ? "main" : undefined,
|
|
607
|
+
window.isModal ? "modal" : undefined,
|
|
608
|
+
window.sheetCount ? `sheets=${window.sheetCount}` : undefined,
|
|
609
|
+
window.isOnscreen ? "onscreen" : undefined,
|
|
610
|
+
window.isMinimized ? "minimized" : undefined,
|
|
611
|
+
window.browserUseAllowed ? undefined : "browser_use_disabled",
|
|
612
|
+
]
|
|
613
|
+
.filter(Boolean)
|
|
614
|
+
.join(", ");
|
|
615
|
+
const frame = `${Math.round(window.framePoints.x)},${Math.round(window.framePoints.y)} ${Math.round(window.framePoints.w)}x${Math.round(window.framePoints.h)}`;
|
|
616
|
+
const id = window.windowId ? `windowId ${window.windowId}` : window.nativeWindowRef ? `nativeRootRef ${window.nativeWindowRef}` : "unstable root id";
|
|
617
|
+
const pairing = window.pairing ? `, pairing ${window.pairing.confidence}/${Math.round(window.pairing.score)}` : "";
|
|
618
|
+
return `- ${window.windowRef} ${window.kind} ${window.app} pid ${window.pid} — ${window.windowTitle || "(untitled)"} (z ${window.zOrder}, ${id}, frame ${frame}${pairing}${flags ? `, ${flags}` : ""})`;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
async function getFrontmost(signal?: AbortSignal): Promise<FrontmostResult> {
|
|
622
|
+
return await currentPlatformBackend.getFrontmost(signal);
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
function assertBrowserUseAllowed(target: { appName: string; bundleId?: string }): void {
|
|
626
|
+
if (!isBrowserUseEnabled() && currentPlatformBackend.isBrowserApp(target.appName, target.bundleId)) {
|
|
627
|
+
throw new Error(
|
|
628
|
+
`Browser use is disabled by pi-computer-use config, so '${target.appName}' cannot be controlled. Enable browser_use in ~/.pi/agent/extensions/pi-computer-use.json or .pi/computer-use.json to allow browser windows.`,
|
|
629
|
+
);
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
function windowRecordIdentity(record: Pick<WindowRefRecord, "pid" | "windowId" | "nativeWindowRef" | "windowTitle" | "framePoints">): string {
|
|
634
|
+
if (record.windowId && record.windowId > 0) {
|
|
635
|
+
return `pid:${record.pid}|id:${record.windowId}`;
|
|
636
|
+
}
|
|
637
|
+
if (record.nativeWindowRef) {
|
|
638
|
+
return `pid:${record.pid}|ref:${record.nativeWindowRef}`;
|
|
639
|
+
}
|
|
640
|
+
const { x, y, w, h } = record.framePoints;
|
|
641
|
+
return `pid:${record.pid}|title:${normalizeText(record.windowTitle)}|frame:${Math.round(x)},${Math.round(y)},${Math.round(w)},${Math.round(h)}`;
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
function storeWindowRef(record: Omit<WindowRefRecord, "ref">): WindowRefRecord {
|
|
645
|
+
const identity = windowRecordIdentity(record);
|
|
646
|
+
const existingRef = runtimeState.windowRefByIdentity.get(identity);
|
|
647
|
+
if (existingRef) {
|
|
648
|
+
const existing = runtimeState.windowRefs.get(existingRef);
|
|
649
|
+
if (existing) {
|
|
650
|
+
const updated = { ...record, ref: existingRef };
|
|
651
|
+
runtimeState.windowRefs.set(existingRef, updated);
|
|
652
|
+
return updated;
|
|
653
|
+
}
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
const ref = `@r${runtimeState.nextRootRefIndex++}`;
|
|
657
|
+
const stored = { ...record, ref };
|
|
658
|
+
runtimeState.windowRefByIdentity.set(identity, ref);
|
|
659
|
+
runtimeState.windowRefs.set(ref, stored);
|
|
660
|
+
return stored;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
function storeBrowserRootRef(contextId: string): string {
|
|
664
|
+
const existing = runtimeState.browserRootByContext.get(contextId);
|
|
665
|
+
if (existing) return existing;
|
|
666
|
+
const ref = `@r${runtimeState.nextRootRefIndex++}`;
|
|
667
|
+
runtimeState.browserRootByContext.set(contextId, ref);
|
|
668
|
+
runtimeState.browserContextByRoot.set(ref, contextId);
|
|
669
|
+
return ref;
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
function storeWindowRefForTarget(target: ResolvedTarget): string {
|
|
673
|
+
return storeWindowRef({
|
|
674
|
+
appName: target.appName,
|
|
675
|
+
bundleId: target.bundleId,
|
|
676
|
+
pid: target.pid,
|
|
677
|
+
windowTitle: target.windowTitle,
|
|
678
|
+
windowId: target.windowId > 0 ? target.windowId : undefined,
|
|
679
|
+
framePoints: target.framePoints,
|
|
680
|
+
scaleFactor: target.scaleFactor,
|
|
681
|
+
isMinimized: target.isMinimized,
|
|
682
|
+
isOnscreen: target.isOnscreen,
|
|
683
|
+
isMain: target.isMain,
|
|
684
|
+
isFocused: target.isFocused,
|
|
685
|
+
}).ref;
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
function storeWindowRefForAppWindow(app: HelperApp, window: HelperWindow): WindowRefRecord {
|
|
689
|
+
return storeWindowRef({
|
|
690
|
+
appName: app.appName,
|
|
691
|
+
bundleId: app.bundleId,
|
|
692
|
+
pid: app.pid,
|
|
693
|
+
windowTitle: window.title || "(untitled)",
|
|
694
|
+
windowId: window.windowId,
|
|
695
|
+
nativeWindowRef: window.windowRef,
|
|
696
|
+
framePoints: window.framePoints,
|
|
697
|
+
scaleFactor: window.scaleFactor,
|
|
698
|
+
isMinimized: window.isMinimized,
|
|
699
|
+
isOnscreen: window.isOnscreen,
|
|
700
|
+
isMain: window.isMain,
|
|
701
|
+
isFocused: window.isFocused,
|
|
702
|
+
});
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
function choosePreferredWindow(windows: HelperWindow[], appName: string): HelperWindow {
|
|
706
|
+
if (!windows.length) {
|
|
707
|
+
throw new Error(`No controllable root was found in app '${appName}'.`);
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
const scored = [...windows].sort((a, b) => scoreWindow(b) - scoreWindow(a));
|
|
711
|
+
return scored[0];
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
function scoreWindow(window: HelperWindow): number {
|
|
715
|
+
let score = 0;
|
|
716
|
+
if (window.isModal) score += 180;
|
|
717
|
+
if (window.isFocused) score += 100;
|
|
718
|
+
if (window.isMain) score += 80;
|
|
719
|
+
if (!window.isMinimized) score += 40;
|
|
720
|
+
if (window.isOnscreen) score += 20;
|
|
721
|
+
if (window.windowId && window.windowId > 0) score += 10;
|
|
722
|
+
if (window.title.trim().length > 0) score += 2;
|
|
723
|
+
return score;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
function summarizeWindowCandidate(window: HelperWindow): string {
|
|
727
|
+
const flags = [
|
|
728
|
+
window.isFocused ? "focused" : undefined,
|
|
729
|
+
window.isMain ? "main" : undefined,
|
|
730
|
+
window.isOnscreen ? "onscreen" : undefined,
|
|
731
|
+
window.isMinimized ? "minimized" : undefined,
|
|
732
|
+
]
|
|
733
|
+
.filter(Boolean)
|
|
734
|
+
.join(",");
|
|
735
|
+
return `${window.title || "(untitled)"} [score=${scoreWindow(window)}${flags ? `, ${flags}` : ""}]`;
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
function summarizeWindowCandidates(windows: HelperWindow[], limit = 6): string {
|
|
739
|
+
return [...windows]
|
|
740
|
+
.sort((a, b) => scoreWindow(b) - scoreWindow(a))
|
|
741
|
+
.slice(0, limit)
|
|
742
|
+
.map(summarizeWindowCandidate)
|
|
743
|
+
.join("; ");
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
function chooseRankedWindowOrUndefined(windows: HelperWindow[]): HelperWindow | undefined {
|
|
747
|
+
if (windows.length === 0) return undefined;
|
|
748
|
+
const ranked = [...windows].sort((a, b) => scoreWindow(b) - scoreWindow(a));
|
|
749
|
+
if (ranked.length === 1) return ranked[0];
|
|
750
|
+
const topScore = scoreWindow(ranked[0]);
|
|
751
|
+
const nextScore = scoreWindow(ranked[1]);
|
|
752
|
+
return topScore >= nextScore + 25 ? ranked[0] : undefined;
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
function toResolvedTarget(app: HelperApp, window: HelperWindow): ResolvedTarget {
|
|
756
|
+
const baseTarget = {
|
|
757
|
+
appName: app.appName,
|
|
758
|
+
bundleId: app.bundleId,
|
|
759
|
+
pid: app.pid,
|
|
760
|
+
windowTitle: window.title || "(untitled)",
|
|
761
|
+
windowId: typeof window.windowId === "number" ? window.windowId : 0,
|
|
762
|
+
nativeWindowRef: window.windowRef,
|
|
763
|
+
framePoints: window.framePoints,
|
|
764
|
+
scaleFactor: window.scaleFactor,
|
|
765
|
+
isMinimized: window.isMinimized,
|
|
766
|
+
isOnscreen: window.isOnscreen,
|
|
767
|
+
isMain: window.isMain,
|
|
768
|
+
isFocused: window.isFocused,
|
|
769
|
+
};
|
|
770
|
+
return { ...baseTarget, windowRef: storeWindowRefForAppWindow(app, window).ref };
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
function nativeWindowRequest(target: Pick<CurrentTarget, "pid" | "windowId" | "nativeWindowRef">): { pid: number; windowId: number; windowRef?: string } {
|
|
774
|
+
return { pid: target.pid, windowId: target.windowId, windowRef: target.nativeWindowRef };
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
function setCurrentTarget(target: ResolvedTarget): void {
|
|
778
|
+
assertBrowserUseAllowed(target);
|
|
779
|
+
const windowRef = target.windowRef ?? storeWindowRefForTarget(target);
|
|
780
|
+
operationState().currentTarget = {
|
|
781
|
+
appName: target.appName,
|
|
782
|
+
bundleId: target.bundleId,
|
|
783
|
+
pid: target.pid,
|
|
784
|
+
windowTitle: target.windowTitle,
|
|
785
|
+
windowId: target.windowId,
|
|
786
|
+
windowRef,
|
|
787
|
+
nativeWindowRef: target.nativeWindowRef,
|
|
788
|
+
};
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
function normalizeWindowSelector(selector: RootSelector | undefined): string | undefined {
|
|
792
|
+
if (typeof selector === "number" && Number.isFinite(selector)) return String(Math.trunc(selector));
|
|
793
|
+
if (typeof selector === "string") return trimOrUndefined(selector);
|
|
794
|
+
return undefined;
|
|
795
|
+
}
|
|
796
|
+
|
|
797
|
+
async function resolveTargetByWindowSelector(selector: RootSelector, signal?: AbortSignal): Promise<ResolvedTarget> {
|
|
798
|
+
const normalized = normalizeWindowSelector(selector);
|
|
799
|
+
if (!normalized) {
|
|
800
|
+
throw new Error("root target must be a non-empty @r ref or numeric windowId.");
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
const current = operationState().currentTarget;
|
|
804
|
+
if (current?.windowRef === normalized) {
|
|
805
|
+
return await resolveCurrentTarget(signal);
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
const fromRef = runtimeState.windowRefs.get(normalized);
|
|
809
|
+
if (fromRef) {
|
|
810
|
+
const app: HelperApp = { appName: fromRef.appName, bundleId: fromRef.bundleId, pid: fromRef.pid };
|
|
811
|
+
const windows = await listWindows(fromRef.pid, signal);
|
|
812
|
+
const match =
|
|
813
|
+
(fromRef.windowId ? windows.find((window) => window.windowId === fromRef.windowId) : undefined) ??
|
|
814
|
+
(fromRef.nativeWindowRef ? windows.find((window) => window.windowRef === fromRef.nativeWindowRef) : undefined) ??
|
|
815
|
+
windows.find((window) => normalizeText(window.title || "(untitled)") === normalizeText(fromRef.windowTitle));
|
|
816
|
+
if (!match) {
|
|
817
|
+
throw new Error(`Root ref '${normalized}' is stale. Call find_roots again and choose a current window.`);
|
|
818
|
+
}
|
|
819
|
+
const resolved = toResolvedTarget(app, match);
|
|
820
|
+
setCurrentTarget(resolved);
|
|
821
|
+
return resolved;
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
const numericWindowId = Number(normalized);
|
|
825
|
+
if (Number.isInteger(numericWindowId) && numericWindowId > 0) {
|
|
826
|
+
const apps = await listApps(signal);
|
|
827
|
+
for (const app of apps) {
|
|
828
|
+
const windows = await listWindows(app.pid, signal);
|
|
829
|
+
const match = windows.find((window) => window.windowId === numericWindowId);
|
|
830
|
+
if (match) {
|
|
831
|
+
assertBrowserUseAllowed(app);
|
|
832
|
+
const resolved = toResolvedTarget(app, match);
|
|
833
|
+
setCurrentTarget(resolved);
|
|
834
|
+
return resolved;
|
|
835
|
+
}
|
|
836
|
+
}
|
|
837
|
+
throw new Error(`Window id '${numericWindowId}' was not found. Call find_roots again and choose a current window.`);
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
if (normalized.startsWith("@r")) {
|
|
841
|
+
throw new Error(`Root ref '${normalized}' is not available in this session. Call find_roots first.`);
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
const config = getComputerUseConfig();
|
|
845
|
+
const candidates = await collectWindowDetails(await listApps(signal), config, signal);
|
|
846
|
+
const query = normalizeText(normalized);
|
|
847
|
+
const exact = candidates.filter((candidate) => normalizeText(candidate.app) === query || normalizeText(candidate.windowTitle) === query);
|
|
848
|
+
const fuzzy = exact.length > 0 ? exact : candidates.filter((candidate) => `${normalizeText(candidate.app)} ${normalizeText(candidate.windowTitle)}`.includes(query));
|
|
849
|
+
const match = fuzzy.sort((a, b) => Number(b.isFocused) - Number(a.isFocused) || a.zOrder - b.zOrder)[0];
|
|
850
|
+
if (!match) throw new Error(`Root query '${normalized}' did not match any current root. Call find_roots to inspect roots.`);
|
|
851
|
+
const app: HelperApp = { appName: match.app, bundleId: match.bundleId, pid: match.pid };
|
|
852
|
+
const roots = await listWindows(match.pid, signal);
|
|
853
|
+
const helperRoot = roots.find((root) => root.rootRef === match.nativeWindowRef || root.windowRef === match.nativeWindowRef || root.windowId === match.windowId) ?? roots[0];
|
|
854
|
+
const resolved = toResolvedTarget(app, helperRoot);
|
|
855
|
+
setCurrentTarget(resolved);
|
|
856
|
+
return resolved;
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
function shouldPreferForegroundModalWindow(current: HelperWindow, candidate: HelperWindow): boolean {
|
|
860
|
+
if (candidate.windowId === current.windowId && candidate.windowRef === current.windowRef) return false;
|
|
861
|
+
if (!candidate.isOnscreen || candidate.isMinimized) return false;
|
|
862
|
+
if (candidate.isModal) return scoreWindow(candidate) >= scoreWindow(current);
|
|
863
|
+
return false;
|
|
864
|
+
}
|
|
865
|
+
|
|
866
|
+
async function resolveCurrentTarget(signal?: AbortSignal): Promise<ResolvedTarget> {
|
|
867
|
+
const current = currentTargetOrThrow();
|
|
868
|
+
const windows = await listWindows(current.pid, signal);
|
|
869
|
+
if (!windows.length) {
|
|
870
|
+
throw new Error(CURRENT_TARGET_GONE_ERROR);
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
const hadStableWindowId = current.windowId > 0;
|
|
874
|
+
const titleQuery = normalizeText(current.windowTitle);
|
|
875
|
+
let match = current.nativeWindowRef ? windows.find((window) => window.windowRef === current.nativeWindowRef || window.rootRef === current.nativeWindowRef) : undefined;
|
|
876
|
+
match ??= hadStableWindowId ? windows.find((window) => window.windowId !== undefined && window.windowId === current.windowId) : undefined;
|
|
877
|
+
if (!match) {
|
|
878
|
+
const exactTitleMatches = titleQuery && titleQuery !== "(untitled)" ? windows.filter((window) => normalizeText(window.title) === titleQuery) : [];
|
|
879
|
+
if (exactTitleMatches.length === 1) {
|
|
880
|
+
match = exactTitleMatches[0];
|
|
881
|
+
} else if (exactTitleMatches.length > 1) {
|
|
882
|
+
match = chooseRankedWindowOrUndefined(exactTitleMatches);
|
|
883
|
+
if (!match) {
|
|
884
|
+
throw new Error(
|
|
885
|
+
`${CURRENT_TARGET_GONE_ERROR} Multiple windows now match '${current.windowTitle}': ${summarizeWindowCandidates(exactTitleMatches)}.`,
|
|
886
|
+
);
|
|
887
|
+
}
|
|
888
|
+
}
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
if (!match && !hadStableWindowId) {
|
|
892
|
+
match = chooseRankedWindowOrUndefined(windows);
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
if (!match) {
|
|
896
|
+
throw new Error(CURRENT_TARGET_GONE_ERROR);
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
const modal = windows
|
|
900
|
+
.filter((window) => shouldPreferForegroundModalWindow(match!, window))
|
|
901
|
+
.sort((a, b) => scoreWindow(b) - scoreWindow(a))[0];
|
|
902
|
+
if (modal) match = modal;
|
|
903
|
+
|
|
904
|
+
const app: HelperApp = {
|
|
905
|
+
appName: current.appName,
|
|
906
|
+
bundleId: current.bundleId,
|
|
907
|
+
pid: current.pid,
|
|
908
|
+
};
|
|
909
|
+
|
|
910
|
+
const resolved = toResolvedTarget(app, match);
|
|
911
|
+
setCurrentTarget(resolved);
|
|
912
|
+
return resolved;
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
async function resolveFrontmostTarget(signal?: AbortSignal): Promise<ResolvedTarget> {
|
|
916
|
+
const frontmost = await getFrontmost(signal);
|
|
917
|
+
const apps = await listApps(signal);
|
|
918
|
+
const app = apps.find((candidate) => candidate.pid === frontmost.pid) ?? {
|
|
919
|
+
appName: frontmost.appName,
|
|
920
|
+
bundleId: frontmost.bundleId,
|
|
921
|
+
pid: frontmost.pid,
|
|
922
|
+
};
|
|
923
|
+
|
|
924
|
+
const windows = await listWindows(frontmost.pid, signal);
|
|
925
|
+
if (!windows.length) {
|
|
926
|
+
throw new Error("No frontmost controllable root was found. Open an app window and call observe_ui again.");
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
if (currentPlatformBackend.isBrowserApp(app.appName, app.bundleId)) {
|
|
930
|
+
assertBrowserUseAllowed(app);
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
let selected = windows.find((window) => window.windowId !== undefined && window.windowId === frontmost.windowId);
|
|
934
|
+
if (!selected && frontmost.windowTitle) {
|
|
935
|
+
selected = windows.find((window) => normalizeText(window.title) === normalizeText(frontmost.windowTitle));
|
|
936
|
+
}
|
|
937
|
+
selected ??= choosePreferredWindow(windows, app.appName);
|
|
938
|
+
|
|
939
|
+
const resolved = toResolvedTarget(app, selected);
|
|
940
|
+
setCurrentTarget(resolved);
|
|
941
|
+
return resolved;
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
function matchesObserveSelection(target: ResolvedTarget, selection: ObserveTargetParams): boolean {
|
|
945
|
+
const root = normalizeWindowSelector(selection.root);
|
|
946
|
+
return !root || target.windowRef === root;
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
async function resolveTargetForObserve(signal?: AbortSignal): Promise<ResolvedTarget> {
|
|
950
|
+
return operationState().currentTarget ? await resolveCurrentTarget(signal) : await resolveFrontmostTarget(signal);
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
async function ensureTargetWindowId(target: ResolvedTarget, signal?: AbortSignal): Promise<ResolvedTarget> {
|
|
954
|
+
if (target.windowId > 0 || target.nativeWindowRef) {
|
|
955
|
+
return target;
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
const refreshed = await resolveCurrentTarget(signal);
|
|
959
|
+
if (refreshed.windowId <= 0 && !refreshed.nativeWindowRef) {
|
|
960
|
+
throw new Error(CURRENT_TARGET_GONE_ERROR);
|
|
961
|
+
}
|
|
962
|
+
return refreshed;
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
interface CaptureResult {
|
|
966
|
+
target: ResolvedTarget;
|
|
967
|
+
capture: CurrentCapture;
|
|
968
|
+
look: LookResponse;
|
|
969
|
+
outline: Outline;
|
|
970
|
+
activation: ActivationFlags;
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
function captureForLook(look: LookResponse): CurrentCapture {
|
|
974
|
+
return {
|
|
975
|
+
stateId: randomUUID(),
|
|
976
|
+
width: look.image?.width ?? 0,
|
|
977
|
+
height: look.image?.height ?? 0,
|
|
978
|
+
scaleFactor: look.window.scaleFactor,
|
|
979
|
+
timestamp: Date.now(),
|
|
980
|
+
};
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
async function performLook(target: ResolvedTarget, options: { readText: "auto" | "always" | "never"; baseLookId?: string; scopeRef?: string; maxDimension?: number; includeImage?: boolean }, signal?: AbortSignal): Promise<LookResponse> {
|
|
984
|
+
if ((!Number.isFinite(target.windowId) || target.windowId <= 0) && !target.nativeWindowRef) throw new Error(`Current platform requires a stable root id to observe '${target.windowTitle}'. Call find_roots and select a root with a stable id.`);
|
|
985
|
+
return await currentPlatformBackend.observe({
|
|
986
|
+
target: nativeWindowRequest(target),
|
|
987
|
+
baseLookId: options.baseLookId,
|
|
988
|
+
readText: options.readText,
|
|
989
|
+
scopeRef: options.scopeRef,
|
|
990
|
+
maxDimension: options.maxDimension,
|
|
991
|
+
includeImage: options.includeImage,
|
|
992
|
+
}, { signal, timeoutMs: LOOK_TIMEOUT_MS });
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
function noteWindowForTarget(target: ResolvedTarget | CurrentTarget, look?: LookResponse) {
|
|
996
|
+
return {
|
|
997
|
+
windowRef: target.windowRef,
|
|
998
|
+
title: target.windowTitle,
|
|
999
|
+
pairing: look?.window.metadata?.pairing && typeof look.window.metadata.pairing === "object" ? (look.window.metadata.pairing as { confidence?: "exact" | "high" | "low" }).confidence : undefined,
|
|
1000
|
+
pairingScore: look?.window.metadata?.pairing && typeof look.window.metadata.pairing === "object" ? (look.window.metadata.pairing as { score?: number }).score : undefined,
|
|
1001
|
+
};
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
async function captureCurrentTarget(signal?: AbortSignal, readText: "auto" | "always" | "never" = "auto", maxDimension = AUTO_IMAGE_MAX_DIMENSION, targetOverride?: ResolvedTarget, includeImage = true): Promise<CaptureResult> {
|
|
1005
|
+
const state = operationState();
|
|
1006
|
+
const baseOutline = state.currentOutline;
|
|
1007
|
+
const baseTarget = state.currentTarget;
|
|
1008
|
+
let target = targetOverride ?? await resolveCurrentTarget(signal);
|
|
1009
|
+
target = await ensureTargetWindowId(target, signal);
|
|
1010
|
+
const look = await performLook(target, { maxDimension, readText, includeImage }, signal);
|
|
1011
|
+
const outline = stabilizeRefs(baseTarget && sameRootIdentity(baseTarget, target) ? baseOutline : undefined, look.parsedOutline!);
|
|
1012
|
+
look.parsedOutline = outline;
|
|
1013
|
+
look.outline = outline.root;
|
|
1014
|
+
const capture = captureForLook(look);
|
|
1015
|
+
|
|
1016
|
+
setCurrentTarget(target);
|
|
1017
|
+
state.currentCapture = capture;
|
|
1018
|
+
state.currentStateTarget = { pid: target.pid, windowId: target.windowId, windowRef: target.windowRef };
|
|
1019
|
+
state.currentLook = look;
|
|
1020
|
+
state.currentOutline = outline;
|
|
1021
|
+
state.currentNote = noteFromLook(state.currentNote, outline, noteWindowForTarget(target, look));
|
|
1022
|
+
state.resourceKey = desktopResourceKey(target);
|
|
1023
|
+
state.epoch ??= resourceScheduler.epoch(state.resourceKey);
|
|
1024
|
+
|
|
1025
|
+
return {
|
|
1026
|
+
target,
|
|
1027
|
+
capture,
|
|
1028
|
+
look,
|
|
1029
|
+
outline,
|
|
1030
|
+
activation: emptyActivation(),
|
|
1031
|
+
};
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
async function buildToolResult(
|
|
1035
|
+
tool: string,
|
|
1036
|
+
summary: string,
|
|
1037
|
+
result: CaptureResult,
|
|
1038
|
+
execution: ExecutionTrace,
|
|
1039
|
+
_signal?: AbortSignal,
|
|
1040
|
+
imageMode: ImageMode = operationState().currentImageMode ?? "auto",
|
|
1041
|
+
base?: { stateId: string; outline: Outline },
|
|
1042
|
+
): Promise<AgentToolResult<ComputerUseDetails>> {
|
|
1043
|
+
const state = operationState();
|
|
1044
|
+
const fallbackReason = imageFallbackReason(tool, result, imageMode);
|
|
1045
|
+
const transition = base ? changesBetween(base.outline, result.outline) : undefined;
|
|
1046
|
+
const useDiff = Boolean(transition && !transition.useFullView);
|
|
1047
|
+
const folded = foldToBudget(result.outline);
|
|
1048
|
+
const renderedNote = renderNote(state.currentNote);
|
|
1049
|
+
|
|
1050
|
+
const details: ComputerUseDetails = {
|
|
1051
|
+
tool,
|
|
1052
|
+
target: {
|
|
1053
|
+
app: result.target.appName,
|
|
1054
|
+
bundleId: result.target.bundleId,
|
|
1055
|
+
pid: result.target.pid,
|
|
1056
|
+
windowTitle: result.target.windowTitle,
|
|
1057
|
+
windowId: result.target.windowId,
|
|
1058
|
+
windowRef: result.target.windowRef ?? state.currentTarget?.windowRef,
|
|
1059
|
+
nativeWindowRef: result.target.nativeWindowRef ?? state.currentTarget?.nativeWindowRef,
|
|
1060
|
+
},
|
|
1061
|
+
capture: {
|
|
1062
|
+
stateId: result.capture.stateId,
|
|
1063
|
+
width: result.capture.width,
|
|
1064
|
+
height: result.capture.height,
|
|
1065
|
+
scaleFactor: result.capture.scaleFactor,
|
|
1066
|
+
timestamp: result.capture.timestamp,
|
|
1067
|
+
coordinateSpace: "window-relative-screenshot-pixels",
|
|
1068
|
+
},
|
|
1069
|
+
lookId: result.look.lookId,
|
|
1070
|
+
view: useDiff ? "diff" : "full",
|
|
1071
|
+
baseStateId: transition ? base?.stateId : undefined,
|
|
1072
|
+
changes: useDiff ? transition?.changes : undefined,
|
|
1073
|
+
viewReason: transition?.useFullView ? transition.reason : undefined,
|
|
1074
|
+
renderedOutline: folded.text,
|
|
1075
|
+
outline: serializeOutline(result.outline),
|
|
1076
|
+
note: state.currentNote,
|
|
1077
|
+
activation: result.activation,
|
|
1078
|
+
execution,
|
|
1079
|
+
status: "ok",
|
|
1080
|
+
config: getComputerUseConfig(),
|
|
1081
|
+
helper: runtimeState.helperDiagnostics,
|
|
1082
|
+
imageReason: fallbackReason?.reason,
|
|
1083
|
+
};
|
|
1084
|
+
|
|
1085
|
+
// Console piggyback: when a CDP connection is active for this browser
|
|
1086
|
+
// window, surface console output collected since the last tool result.
|
|
1087
|
+
let consoleText = "";
|
|
1088
|
+
if (currentPlatformBackend.isChromeFamilyApp(result.target.appName, result.target.bundleId)) {
|
|
1089
|
+
const tab = await cdpTabForWindow(result.target.windowTitle, result.target.framePoints);
|
|
1090
|
+
const entries = tab?.drainConsole() ?? [];
|
|
1091
|
+
if (entries.length > 0) {
|
|
1092
|
+
details.console = entries;
|
|
1093
|
+
consoleText = `\n\nBrowser console since the last action:\n${entries.map((entry) => `[${entry.level}] ${entry.text}`).join("\n")}`;
|
|
1094
|
+
}
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
const noteText = renderedNote ? `\n\n${renderedNote}` : "";
|
|
1098
|
+
// The model must echo capture.stateId into follow-up tools. Exposing only the
|
|
1099
|
+
// helper-internal lookId here makes a plausible but invalid stateId easy to use.
|
|
1100
|
+
const renderedChanges = useDiff ? renderChanges(transition!.changes) : "";
|
|
1101
|
+
const outlineText = useDiff
|
|
1102
|
+
? `\n\nChanges (${transition!.changedNodeCount}, ${base!.stateId} → ${result.capture.stateId}):\n${renderedChanges || "(no element changes)"}\nUse stateId ${result.capture.stateId} for subsequent actions and queries.`
|
|
1103
|
+
: `\n\nOutline (${folded.nodeCount} nodes, stateId ${result.capture.stateId}${transition?.reason ? `, full view: ${transition.reason}` : ""}${folded.truncated ? ", folded output truncated" : ""}):\n${folded.text}`;
|
|
1104
|
+
const fallbackText = fallbackReason ? `\n\n${fallbackReason.message}` : "";
|
|
1105
|
+
const deltaText = rootDeltaLines(execution).join("\n");
|
|
1106
|
+
const content: AgentToolResult<ComputerUseDetails>["content"] = [{ type: "text", text: `${summary}${deltaText ? `\n${deltaText}` : ""}${consoleText}${noteText}${outlineText}${fallbackText}` }];
|
|
1107
|
+
if (fallbackReason && result.look.image?.jpegBase64) {
|
|
1108
|
+
content.push({ type: "image", data: result.look.image.jpegBase64, mimeType: result.look.image.mimeType ?? "image/jpeg" });
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
return { content, details };
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
type NativePreparedAction = Exclude<PreparedAction, { action: "wait" }>;
|
|
1115
|
+
|
|
1116
|
+
function currentLookOrThrow(): LookResponse {
|
|
1117
|
+
const state = operationState();
|
|
1118
|
+
if (!state.currentLook || !state.currentCapture) {
|
|
1119
|
+
throw new Error("No current look. Call observe_ui first, then act using refs or coordinates from that look.");
|
|
1120
|
+
}
|
|
1121
|
+
return state.currentLook;
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
function ensurePointIsInLookImage(x: number, y: number, look: LookResponse, errorPrefix = "Coordinates"): void {
|
|
1125
|
+
if (!look.image?.jpegBase64) {
|
|
1126
|
+
throw new Error(`${errorPrefix} require an image-bearing root. This look is outline-only; use an @e ref with a semantic action or observe an image-bearing root.`);
|
|
1127
|
+
}
|
|
1128
|
+
if (!Number.isFinite(x) || !Number.isFinite(y)) {
|
|
1129
|
+
throw new Error(`${errorPrefix} must be finite numbers.`);
|
|
1130
|
+
}
|
|
1131
|
+
if (x < 0 || y < 0 || x >= look.image.width || y >= look.image.height) {
|
|
1132
|
+
throw new Error(`${errorPrefix} (${Math.round(x)},${Math.round(y)}) are outside the latest look image bounds (${look.image.width}x${look.image.height}). Call observe_ui again and retry.`);
|
|
1133
|
+
}
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
function modelRefForRootDelta(delta: NonNullable<HelperActResult["rootDelta"]>[number]): string | undefined {
|
|
1137
|
+
if (!delta.ref) return undefined;
|
|
1138
|
+
if (delta.ref.startsWith("@r")) return delta.ref;
|
|
1139
|
+
for (const record of runtimeState.windowRefs.values()) {
|
|
1140
|
+
if (record.nativeWindowRef === delta.ref || record.ref === delta.ref) return record.ref;
|
|
1141
|
+
}
|
|
1142
|
+
const ref = `@r${runtimeState.nextRootRefIndex++}`;
|
|
1143
|
+
const current = operationState().currentTarget;
|
|
1144
|
+
const record: WindowRefRecord = {
|
|
1145
|
+
ref,
|
|
1146
|
+
appName: current?.pid === delta.pid ? current.appName : "Unknown App",
|
|
1147
|
+
bundleId: current?.pid === delta.pid ? current.bundleId : undefined,
|
|
1148
|
+
pid: delta.pid,
|
|
1149
|
+
windowTitle: delta.title ?? "(untitled)",
|
|
1150
|
+
nativeWindowRef: delta.ref,
|
|
1151
|
+
framePoints: { x: 0, y: 0, w: 1, h: 1 },
|
|
1152
|
+
scaleFactor: 1,
|
|
1153
|
+
isMinimized: false,
|
|
1154
|
+
isOnscreen: true,
|
|
1155
|
+
isMain: false,
|
|
1156
|
+
isFocused: delta.change === "focused",
|
|
1157
|
+
};
|
|
1158
|
+
runtimeState.windowRefs.set(ref, record);
|
|
1159
|
+
runtimeState.windowRefByIdentity.set(windowRecordIdentity(record), ref);
|
|
1160
|
+
return ref;
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
function executionTraceFromAct(result: HelperActResult, policy = currentDeliveryPolicy()): ExecutionTrace {
|
|
1164
|
+
const rootDelta = result.rootDelta?.map((delta) => ({ ...delta, ref: modelRefForRootDelta(delta) }));
|
|
1165
|
+
return executionTrace("act", result.performed?.delivery === "ax" ? "stealth" : "default", {
|
|
1166
|
+
outcome: result.outcome,
|
|
1167
|
+
performed: result.performed,
|
|
1168
|
+
evidence: result.evidence,
|
|
1169
|
+
error: result.error,
|
|
1170
|
+
stoppedAt: result.stoppedAt,
|
|
1171
|
+
rootDelta,
|
|
1172
|
+
delivery: result.performed?.delivery,
|
|
1173
|
+
deliveryPolicy: policy,
|
|
1174
|
+
});
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
async function helperAct(
|
|
1178
|
+
target: ResolvedTarget,
|
|
1179
|
+
action: NativePreparedAction,
|
|
1180
|
+
headless: boolean,
|
|
1181
|
+
signal?: AbortSignal,
|
|
1182
|
+
): Promise<ExecutionTrace> {
|
|
1183
|
+
const checked = (candidate: HelperActResult): HelperActResult => {
|
|
1184
|
+
if (!candidate || !["worked", "didnt", "unknown"].includes(candidate.outcome)) {
|
|
1185
|
+
throw new Error("Helper act returned an invalid result without an outcome.");
|
|
1186
|
+
}
|
|
1187
|
+
return candidate;
|
|
1188
|
+
};
|
|
1189
|
+
const textTimeout = "text" in action.params ? action.params.text.length * 25 + 4_000 : COMMAND_TIMEOUT_MS;
|
|
1190
|
+
const timeoutMs = Math.max(COMMAND_TIMEOUT_MS, textTimeout);
|
|
1191
|
+
if ((action.usesCurrentFocus || action.needsForeground) && !headless) {
|
|
1192
|
+
const foreground = checked(await currentPlatformBackend.act(helperActRequest(target, action, "foreground"), { signal, timeoutMs }));
|
|
1193
|
+
const trace = executionTraceFromAct(foreground, "foreground");
|
|
1194
|
+
trace.backgroundFirst = false;
|
|
1195
|
+
return trace;
|
|
1196
|
+
}
|
|
1197
|
+
try {
|
|
1198
|
+
const initialPolicy = headless ? "ax_only" : "background";
|
|
1199
|
+
const result = checked(await currentPlatformBackend.act(helperActRequest(target, action, initialPolicy), { signal, timeoutMs }));
|
|
1200
|
+
if (canRetryInForeground(action, result.outcome, headless)) {
|
|
1201
|
+
const foreground = checked(await currentPlatformBackend.act(helperActRequest(target, action, "foreground"), { signal, timeoutMs }));
|
|
1202
|
+
const trace = executionTraceFromAct(foreground, "foreground");
|
|
1203
|
+
trace.backgroundFirst = true;
|
|
1204
|
+
trace.escalatedToForeground = true;
|
|
1205
|
+
trace.escalationReason = "side_effect_free_didnt";
|
|
1206
|
+
trace.backgroundAttempt = { outcome: "didnt", reason: "Background input produced no observable value change; a foreground retry was safe." };
|
|
1207
|
+
return trace;
|
|
1208
|
+
}
|
|
1209
|
+
const trace = executionTraceFromAct(result, "background");
|
|
1210
|
+
trace.backgroundFirst = true;
|
|
1211
|
+
return trace;
|
|
1212
|
+
} catch (error) {
|
|
1213
|
+
const code = (error as Error & { code?: string })?.code;
|
|
1214
|
+
if (code !== "foreground_required" || headless) throw error;
|
|
1215
|
+
const foreground = checked(await currentPlatformBackend.act(helperActRequest(target, action, "foreground"), { signal, timeoutMs }));
|
|
1216
|
+
const trace = executionTraceFromAct(foreground, "foreground");
|
|
1217
|
+
trace.backgroundFirst = true;
|
|
1218
|
+
trace.escalatedToForeground = true;
|
|
1219
|
+
trace.escalationReason = code;
|
|
1220
|
+
trace.backgroundAttempt = { outcome: "foreground_required", reason: error instanceof Error ? error.message : String(error) };
|
|
1221
|
+
return trace;
|
|
1222
|
+
}
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1225
|
+
function helperActRequest(target: ResolvedTarget, action: NativePreparedAction, policy = currentDeliveryPolicy()): PlatformActRequest {
|
|
1226
|
+
const look = currentLookOrThrow();
|
|
1227
|
+
const delivery = nativeInputDelivery(policy);
|
|
1228
|
+
const base = { lookId: look.lookId, pid: target.pid, target: action.target, policy };
|
|
1229
|
+
return (() => {
|
|
1230
|
+
switch (action.action) {
|
|
1231
|
+
case "press":
|
|
1232
|
+
case "click": return { ...base, action: action.action, params: { ...action.params, delivery } };
|
|
1233
|
+
case "setText": return { ...base, action: action.action, params: { text: action.params.text, delivery } };
|
|
1234
|
+
case "typeText": return { ...base, action: action.action, params: { text: action.params.text, delivery } };
|
|
1235
|
+
case "keypress": return { ...base, action: action.action, params: { keys: action.params.keys, delivery } };
|
|
1236
|
+
case "scroll": return { ...base, action: action.action, params: { scrollX: action.params.scrollX, scrollY: action.params.scrollY, delivery } };
|
|
1237
|
+
case "drag": return { ...base, action: action.action, params: { path: action.params.path, delivery } };
|
|
1238
|
+
case "moveMouse": return { ...base, action: action.action, params: { delivery } };
|
|
1239
|
+
}
|
|
1240
|
+
})();
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1243
|
+
function rootDeltaLines(execution: ExecutionTrace): string[] {
|
|
1244
|
+
return (execution.rootDelta ?? []).map((delta) => {
|
|
1245
|
+
const quotedTitle = delta.title ? ` ${JSON.stringify(delta.title)}` : "";
|
|
1246
|
+
const ref = delta.ref ? ` (${delta.ref.startsWith("@") ? delta.ref : `@${delta.ref}`})` : "";
|
|
1247
|
+
const sheetCount = typeof delta.metadata?.sheetCount === "number" && Number.isFinite(delta.metadata.sheetCount) ? Math.max(0, Math.trunc(delta.metadata.sheetCount)) : undefined;
|
|
1248
|
+
const flags = [delta.isModal ? "modal" : undefined, sheetCount ? `sheets=${sheetCount}` : undefined].filter(Boolean).join(", ");
|
|
1249
|
+
const suffix = `${quotedTitle}${flags ? ` (${flags})` : ""}${ref}`;
|
|
1250
|
+
if (delta.change === "appeared") return `New root: ${delta.kind}${suffix}`;
|
|
1251
|
+
if (delta.change === "closed") return `Root closed: ${delta.kind}${suffix}`;
|
|
1252
|
+
return `Root focused: ${delta.kind}${suffix}`;
|
|
1253
|
+
});
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1256
|
+
function windowDetails(app: HelperApp, window: HelperWindow, config: ReturnType<typeof getComputerUseConfig>): ListWindowsDetails["windows"][number] {
|
|
1257
|
+
const storedRef = storeWindowRefForAppWindow(app, window);
|
|
1258
|
+
return {
|
|
1259
|
+
app: app.appName,
|
|
1260
|
+
bundleId: app.bundleId,
|
|
1261
|
+
pid: app.pid,
|
|
1262
|
+
kind: window.kind,
|
|
1263
|
+
windowTitle: window.title || "(untitled)",
|
|
1264
|
+
windowId: window.windowId,
|
|
1265
|
+
windowRef: storedRef.ref,
|
|
1266
|
+
nativeWindowRef: window.windowRef,
|
|
1267
|
+
framePoints: window.framePoints,
|
|
1268
|
+
scaleFactor: window.scaleFactor,
|
|
1269
|
+
isMinimized: window.isMinimized,
|
|
1270
|
+
isOnscreen: window.isOnscreen,
|
|
1271
|
+
isMain: window.isMain,
|
|
1272
|
+
isFocused: window.isFocused,
|
|
1273
|
+
isModal: window.isModal,
|
|
1274
|
+
sheetCount: platformRootSheetCount(window),
|
|
1275
|
+
role: window.role,
|
|
1276
|
+
subrole: window.subrole,
|
|
1277
|
+
pairing: platformRootPairing(window),
|
|
1278
|
+
zOrder: window.zOrder,
|
|
1279
|
+
browserUseAllowed: config.browser_use || !currentPlatformBackend.isBrowserApp(app.appName, app.bundleId),
|
|
1280
|
+
score: scoreWindow(window),
|
|
1281
|
+
};
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1284
|
+
function sortWindowDetails(windows: ListWindowsDetails["windows"]): ListWindowsDetails["windows"] {
|
|
1285
|
+
return windows.sort((a, b) => b.score - a.score || a.app.localeCompare(b.app) || a.windowTitle.localeCompare(b.windowTitle));
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
// Side effect: stores stable @r refs for discovered windows in runtimeState.
|
|
1289
|
+
async function collectWindowDetails(apps: HelperApp[], config: ReturnType<typeof getComputerUseConfig>, signal?: AbortSignal): Promise<ListWindowsDetails["windows"]> {
|
|
1290
|
+
const perApp = await Promise.all(apps.map(async (app) => ({ app, windows: await listWindows(app.pid, signal) })));
|
|
1291
|
+
return sortWindowDetails(perApp.flatMap(({ app, windows }) => windows.map((window) => windowDetails(app, window, config))));
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1294
|
+
function collectBroadWindowDetails(roots: HelperWindow[], config: ReturnType<typeof getComputerUseConfig>): ListWindowsDetails["windows"] {
|
|
1295
|
+
const windows: ListWindowsDetails["windows"] = [];
|
|
1296
|
+
for (const window of roots) {
|
|
1297
|
+
if (!window.pid) continue;
|
|
1298
|
+
windows.push(windowDetails({ appName: window.appName ?? "Unknown App", bundleId: window.bundleId, pid: window.pid }, window, config));
|
|
1299
|
+
}
|
|
1300
|
+
return sortWindowDetails(windows);
|
|
1301
|
+
}
|
|
1302
|
+
|
|
1303
|
+
async function windowDetailsForFind(query: FindParams, config: ReturnType<typeof getComputerUseConfig>, signal?: AbortSignal): Promise<ListWindowsDetails["windows"]> {
|
|
1304
|
+
if (!query.app && !query.bundleId && !Number.isFinite(query.pid)) {
|
|
1305
|
+
return collectBroadWindowDetails(await currentPlatformBackend.listRoots({}, signal), config);
|
|
1306
|
+
}
|
|
1307
|
+
const apps = (await listApps(signal)).filter((app) => appMatchesWindowQuery(app, query));
|
|
1308
|
+
return await collectWindowDetails(apps, config, signal);
|
|
1309
|
+
}
|
|
1310
|
+
|
|
1311
|
+
async function performListWindows(params: FindParams, signal?: AbortSignal): Promise<AgentToolResult<ListWindowsDetails>> {
|
|
1312
|
+
const rawParams = params ?? {};
|
|
1313
|
+
const query: FindParams = {
|
|
1314
|
+
text: trimOrUndefined(rawParams.text),
|
|
1315
|
+
app: trimOrUndefined(rawParams.app),
|
|
1316
|
+
bundleId: trimOrUndefined(rawParams.bundleId),
|
|
1317
|
+
pid: Number.isFinite(rawParams.pid) ? Math.trunc(rawParams.pid!) : undefined,
|
|
1318
|
+
kind: rawParams.kind,
|
|
1319
|
+
};
|
|
1320
|
+
const config = getComputerUseConfig();
|
|
1321
|
+
const desktopForest = await windowDetailsForFind(query, config, signal);
|
|
1322
|
+
const includeBrowserPages = !query.pid && !query.bundleId && (!query.app || normalizeText(query.app) === "browser") && config.browser_use;
|
|
1323
|
+
const browserForest: ListWindowsDetails["windows"] = !includeBrowserPages ? [] : (await listCdpPageContexts().catch(() => []))
|
|
1324
|
+
.map((page) => ({
|
|
1325
|
+
app: "Browser",
|
|
1326
|
+
pid: 0,
|
|
1327
|
+
kind: "browser_page",
|
|
1328
|
+
windowTitle: page.title || page.url,
|
|
1329
|
+
windowRef: storeBrowserRootRef(page.contextId),
|
|
1330
|
+
framePoints: { x: 0, y: 0, w: 1, h: 1 },
|
|
1331
|
+
scaleFactor: 1,
|
|
1332
|
+
isMinimized: false,
|
|
1333
|
+
isOnscreen: true,
|
|
1334
|
+
isMain: false,
|
|
1335
|
+
isFocused: false,
|
|
1336
|
+
isModal: false,
|
|
1337
|
+
zOrder: Number.MAX_SAFE_INTEGER,
|
|
1338
|
+
browserUseAllowed: true,
|
|
1339
|
+
score: 0,
|
|
1340
|
+
url: page.url,
|
|
1341
|
+
}));
|
|
1342
|
+
const allRoots = [...desktopForest, ...browserForest];
|
|
1343
|
+
const forest = allRoots.filter((root) => !query.kind || root.kind === query.kind);
|
|
1344
|
+
const ranked = forest.map((root, order) => ({ root, order, match: query.text ? rankedTextMatch([root.app, root.windowTitle], query.text) : { reason: "filter" as const, score: 1 } }))
|
|
1345
|
+
.filter((entry) => entry.match)
|
|
1346
|
+
.sort((a, b) => b.match!.score - a.match!.score || Number(b.root.isFocused) - Number(a.root.isFocused) || a.root.zOrder - b.root.zOrder || a.order - b.order);
|
|
1347
|
+
const totalMatches = ranked.length;
|
|
1348
|
+
const windows = ranked.slice(0, 12).map((entry) => entry.root);
|
|
1349
|
+
const details: ListWindowsDetails = { tool: "find_roots", query, windows, totalMatches, returned: windows.length, hasMore: totalMatches > windows.length, config };
|
|
1350
|
+
const lines = windows.map(formatWindowLine);
|
|
1351
|
+
const text = lines.length
|
|
1352
|
+
? `Found ${totalMatches} matching root${totalMatches === 1 ? "" : "s"}; returned ${windows.length}${totalMatches > windows.length ? ". Refine the filters for additional roots" : ""}. Use @r refs with observe_ui({ root: "@rN" }).\n${lines.join("\n")}`
|
|
1353
|
+
: query.text || query.app || query.bundleId || query.pid || query.kind
|
|
1354
|
+
? "No roots matched the supplied filters."
|
|
1355
|
+
: "No roots are currently visible to pi-computer-use.";
|
|
1356
|
+
return { content: [{ type: "text", text }], details };
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1359
|
+
function normalizeImageMode(value: unknown): ImageMode {
|
|
1360
|
+
return value === "always" || value === "never" ? value : "auto";
|
|
1361
|
+
}
|
|
1362
|
+
|
|
1363
|
+
function isBrowserContextId(contextId: string | undefined): contextId is string {
|
|
1364
|
+
return Boolean(contextId?.startsWith(BROWSER_CONTEXT_PREFIX));
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1367
|
+
function browserSnapshotTarget(snapshotId: string | undefined, ref: string | undefined): { contextId: string; backendNodeId?: number } | undefined {
|
|
1368
|
+
if (!snapshotId || !ref) return undefined;
|
|
1369
|
+
const record = savedStates.get(snapshotId);
|
|
1370
|
+
const snapshot = record?.value.kind === "browser" ? record.value.snapshot : undefined;
|
|
1371
|
+
const target = snapshot?.targets.find((candidate) => candidate.ref === ref);
|
|
1372
|
+
if (!snapshot || !target) return undefined;
|
|
1373
|
+
return { contextId: snapshot.contextId, backendNodeId: target.backendNodeId };
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
function browserContextForOperation(): string | undefined {
|
|
1377
|
+
const contextId = operationState().contextId;
|
|
1378
|
+
return isBrowserContextId(contextId) ? contextId : undefined;
|
|
1379
|
+
}
|
|
1380
|
+
|
|
1381
|
+
async function withBrowserWrite<T>(contextId: string, work: () => Promise<T>): Promise<T> {
|
|
1382
|
+
const state = operationState();
|
|
1383
|
+
const targetId = contextId.slice(BROWSER_CONTEXT_PREFIX.length);
|
|
1384
|
+
const resourceKey = `cdp:${targetId}`;
|
|
1385
|
+
const baseEpoch = state.epoch ?? resourceScheduler.epoch(resourceKey);
|
|
1386
|
+
const result = await resourceScheduler.write(resourceKey, baseEpoch, async (nextEpoch) => {
|
|
1387
|
+
state.resourceKey = resourceKey;
|
|
1388
|
+
state.epoch = nextEpoch;
|
|
1389
|
+
return await work();
|
|
1390
|
+
});
|
|
1391
|
+
return result.value;
|
|
1392
|
+
}
|
|
1393
|
+
|
|
1394
|
+
function browserObservationResult(browser: CdpPageSnapshot, resourceKey: string, epoch: number, tool: string, base?: { stateId: string; outline: SerializedOutline }): AgentToolResult<BrowserObservationDetails> {
|
|
1395
|
+
savedStates.set({ stateId: browser.snapshotId, resourceKey, epoch, value: { kind: "browser", snapshot: browser, outline: browser.outline } });
|
|
1396
|
+
const currentOutline = restoreOutline(browser.outline);
|
|
1397
|
+
const transition = base ? changesBetween(restoreOutline(base.outline), currentOutline) : undefined;
|
|
1398
|
+
const useDiff = Boolean(transition && !transition.useFullView);
|
|
1399
|
+
const folded = foldToBudget(currentOutline);
|
|
1400
|
+
const root = { ref: storeBrowserRootRef(browser.contextId), kind: "browser_page" as const, title: browser.title, url: browser.url };
|
|
1401
|
+
const details: BrowserObservationDetails = { tool, kind: "browser_page", stateId: browser.snapshotId, baseStateId: base?.stateId, view: useDiff ? "diff" : "full", changes: useDiff ? transition?.changes : undefined, root, outline: browser.outline, renderedOutline: folded.text };
|
|
1402
|
+
const viewText = useDiff
|
|
1403
|
+
? `Changes (${transition!.changedNodeCount}, ${base!.stateId} → ${browser.snapshotId}):\n${renderChanges(transition!.changes) || "(no element changes)"}\nUse stateId ${browser.snapshotId} for subsequent actions and queries.`
|
|
1404
|
+
: folded.text;
|
|
1405
|
+
return { content: [{ type: "text", text: `${tool} completed for ${root.ref} ${JSON.stringify(browser.title)}. State ${browser.snapshotId}.\n${viewText}` }], details };
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
async function refreshBrowserSnapshot(contextId: string, tool: string, base?: { stateId: string; outline: SerializedOutline }): Promise<AgentToolResult<BrowserObservationDetails>> {
|
|
1409
|
+
const browser = await cdpSnapshotForContext(contextId);
|
|
1410
|
+
if (!browser) throw new Error(`Browser root '${contextId}' is no longer available. Call find_roots and observe_ui again.`);
|
|
1411
|
+
const state = operationState();
|
|
1412
|
+
const resourceKey = state.resourceKey ?? `cdp:${browser.targetId}`;
|
|
1413
|
+
return browserObservationResult(browser, resourceKey, state.epoch ?? resourceScheduler.epoch(resourceKey), tool, base);
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1416
|
+
function sliceText(value: string, offsetValue: unknown, _limitValue?: unknown): Pick<ReadTextDetails, "offset" | "limit" | "totalChars" | "hasMore" | "text"> {
|
|
1417
|
+
const offset = Math.max(0, Math.trunc(toFiniteNumber(offsetValue, 0)));
|
|
1418
|
+
const limit = UI_TEXT_PAGE_CHARS;
|
|
1419
|
+
const characters = Array.from(value);
|
|
1420
|
+
const end = Math.min(characters.length, offset + limit);
|
|
1421
|
+
return {
|
|
1422
|
+
offset,
|
|
1423
|
+
limit,
|
|
1424
|
+
totalChars: characters.length,
|
|
1425
|
+
hasMore: end < characters.length,
|
|
1426
|
+
text: offset >= characters.length ? "" : characters.slice(offset, end).join(""),
|
|
1427
|
+
};
|
|
1428
|
+
}
|
|
1429
|
+
|
|
1430
|
+
async function performReadText(params: ReadTextParams, signal?: AbortSignal): Promise<AgentToolResult<ReadTextDetails>> {
|
|
1431
|
+
const ref = trimOrUndefined(params.ref);
|
|
1432
|
+
if (ref?.startsWith("@o")) {
|
|
1433
|
+
const page = readStoredOutput(ref, params.offset);
|
|
1434
|
+
if (!page) throw new Error(`Output ref '${ref}' is unavailable or was evicted. Rerun the focused query.`);
|
|
1435
|
+
const details: ReadTextDetails = { tool: "read_text", ref, ...page };
|
|
1436
|
+
const suffix = page.hasMore
|
|
1437
|
+
? `\n\ncontinue: read_text({ ref: "${ref}", offset: ${page.offset + page.limit} })`
|
|
1438
|
+
: page.complete ? "" : "\n\ncontinuation storage limit reached; rerun a more focused query for the remainder";
|
|
1439
|
+
return { content: [{ type: "text", text: `${page.text || "(empty output page)"}${suffix}` }], details };
|
|
1440
|
+
}
|
|
1441
|
+
const contextId = operationState().contextId;
|
|
1442
|
+
if (isBrowserContextId(contextId)) {
|
|
1443
|
+
const snapshot = operationState().browserSnapshot;
|
|
1444
|
+
if (!snapshot || snapshot.contextId !== contextId) throw new Error(`Browser state '${params.stateId}' is unavailable. Observe the browser root again.`);
|
|
1445
|
+
if (!ref) throw new Error("read_text requires an @e ref for browser contexts; use the outline root ref for whole-page text.");
|
|
1446
|
+
const outline = restoreOutline(snapshot.outline);
|
|
1447
|
+
const node = nodeByRef(outline, ref);
|
|
1448
|
+
if (!node) throw new Error(`Browser text ref '${ref}' is unavailable in this state.`);
|
|
1449
|
+
const collect = (current: OutlineNode): string[] => [outlineNodeLabel(current), ...current.text.map((item) => item.string), ...current.children.flatMap(collect)].filter(Boolean);
|
|
1450
|
+
const value = node === outline.root ? snapshot.text : [...new Set(collect(node))].join("\n");
|
|
1451
|
+
const sliced = sliceText(value, params.offset);
|
|
1452
|
+
const details: ReadTextDetails = { tool: "read_text", ref, ...sliced };
|
|
1453
|
+
return { content: [{ type: "text", text: sliced.text || "(empty text slice)" }], details };
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1456
|
+
validateStateId(params.stateId);
|
|
1457
|
+
if (!ref) throw new Error("read_text requires ref for desktop contexts. Call observe_ui/inspect_ui and use a text-bearing outline ref.");
|
|
1458
|
+
const node = outlineNodeByRef(ref);
|
|
1459
|
+
const state = operationState();
|
|
1460
|
+
if (!state.resourceKey || state.epoch === undefined) throw new Error("The observation has no live resource identity. Observe again.");
|
|
1461
|
+
const raw = (await resourceScheduler.readAt(state.resourceKey, state.epoch, async () => await currentPlatformBackend.readText({
|
|
1462
|
+
lookId: state.currentOutline!.lookId,
|
|
1463
|
+
elementRef: wireRefForNode(node),
|
|
1464
|
+
offset: Math.max(0, Math.trunc(toFiniteNumber(params.offset, 0))),
|
|
1465
|
+
limit: UI_TEXT_PAGE_CHARS,
|
|
1466
|
+
}, { signal, timeoutMs: COMMAND_TIMEOUT_MS }))).value;
|
|
1467
|
+
const text = raw.text;
|
|
1468
|
+
const details: ReadTextDetails = {
|
|
1469
|
+
tool: "read_text",
|
|
1470
|
+
ref,
|
|
1471
|
+
offset: raw.offset,
|
|
1472
|
+
limit: raw.limit,
|
|
1473
|
+
totalChars: raw.totalChars,
|
|
1474
|
+
hasMore: raw.hasMore,
|
|
1475
|
+
text,
|
|
1476
|
+
};
|
|
1477
|
+
return { content: [{ type: "text", text: text || "(empty text slice)" }], details };
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
function normalizeWaitTimeoutMs(value: unknown): number {
|
|
1481
|
+
return Math.max(100, Math.min(60_000, Math.trunc(toFiniteNumber(value, 10_000))));
|
|
1482
|
+
}
|
|
1483
|
+
|
|
1484
|
+
function conditionScopeRef(params: WaitForParams | NonNullable<ActParams["expect"]>): string | undefined {
|
|
1485
|
+
const ref = trimOrUndefined(params.ref);
|
|
1486
|
+
const scopeRef = trimOrUndefined(params.scopeRef);
|
|
1487
|
+
if (ref && scopeRef) throw new Error("A UI condition accepts ref or scopeRef, not both.");
|
|
1488
|
+
return ref ?? scopeRef;
|
|
1489
|
+
}
|
|
1490
|
+
|
|
1491
|
+
function validateCondition(params: WaitForParams | NonNullable<ActParams["expect"]>): { text?: string; role?: string; value?: string; scopeRef?: string; scopeExact: boolean; gone: boolean; timeoutMs: number } {
|
|
1492
|
+
const text = trimOrUndefined(params.text);
|
|
1493
|
+
const role = trimOrUndefined(params.role);
|
|
1494
|
+
const value = trimOrUndefined(params.value);
|
|
1495
|
+
const scopeRef = conditionScopeRef(params);
|
|
1496
|
+
if (!text && !role && !value) throw new Error("A UI condition requires text, role, or value.");
|
|
1497
|
+
if (role && !text && !value && !scopeRef) throw new Error("A role-only UI condition requires ref or scopeRef.");
|
|
1498
|
+
if (value && !params.ref) throw new Error("A value UI condition requires an exact ref.");
|
|
1499
|
+
return { text, role, value, scopeRef, scopeExact: Boolean(params.ref), gone: params.until === "absent", timeoutMs: normalizeWaitTimeoutMs(params.timeoutMs) };
|
|
1500
|
+
}
|
|
1501
|
+
|
|
1502
|
+
function nodeWithinScope(node: OutlineNode, scopeRef: string | undefined, scopeExact: boolean): boolean {
|
|
1503
|
+
if (!scopeRef) return true;
|
|
1504
|
+
if (scopeExact) return node.ref === scopeRef;
|
|
1505
|
+
let current: OutlineNode | undefined = node;
|
|
1506
|
+
while (current) {
|
|
1507
|
+
if (current.ref === scopeRef) return true;
|
|
1508
|
+
current = current.parent;
|
|
1509
|
+
}
|
|
1510
|
+
return false;
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
function normalizedRole(value: string): string {
|
|
1514
|
+
return value.toLowerCase().replace(/^ax/, "").replace(/[ _-]+/g, "");
|
|
1515
|
+
}
|
|
1516
|
+
|
|
1517
|
+
function platformRole(outline: Outline, role: string | undefined): string | undefined {
|
|
1518
|
+
if (!role) return undefined;
|
|
1519
|
+
return outline.nodes.find((node) => normalizedRole(node.role) === normalizedRole(role))?.role ?? role;
|
|
1520
|
+
}
|
|
1521
|
+
|
|
1522
|
+
function outlineConditionPresent(outline: Outline, condition: ReturnType<typeof validateCondition>): boolean {
|
|
1523
|
+
return searchOutline(outline, condition.text, undefined, undefined, outline.nodes.length)
|
|
1524
|
+
.some((match) => (!condition.role || normalizedRole(match.node.role) === normalizedRole(condition.role)) && nodeWithinScope(match.node, condition.scopeRef, condition.scopeExact) && (!condition.value || normalizeText(match.node.value) === normalizeText(condition.value)));
|
|
1525
|
+
}
|
|
1526
|
+
|
|
1527
|
+
function conditionScopeNode(outline: Outline, condition: ReturnType<typeof validateCondition>): OutlineNode | undefined {
|
|
1528
|
+
const scopeNode = condition.scopeRef ? nodeByRef(outline, condition.scopeRef) : undefined;
|
|
1529
|
+
if (condition.scopeRef && !scopeNode) throw new Error(`Condition scope ref '${condition.scopeRef}' is unavailable in this state.`);
|
|
1530
|
+
return scopeNode;
|
|
1531
|
+
}
|
|
1532
|
+
|
|
1533
|
+
async function performWaitFor(params: WaitForParams, signal?: AbortSignal): Promise<AgentToolResult<WaitForDetails>> {
|
|
1534
|
+
const contextId = operationState().contextId;
|
|
1535
|
+
const condition = validateCondition(params);
|
|
1536
|
+
const { text, role, value, scopeRef, scopeExact, gone, timeoutMs } = condition;
|
|
1537
|
+
|
|
1538
|
+
if (isBrowserContextId(contextId)) {
|
|
1539
|
+
const state = operationState();
|
|
1540
|
+
if (!state.resourceKey) throw new Error("The browser observation has no live resource identity. Observe again.");
|
|
1541
|
+
const baseSnapshot = state.browserSnapshot;
|
|
1542
|
+
if (!baseSnapshot) throw new Error("Browser wait requires a complete base observation.");
|
|
1543
|
+
conditionScopeNode(restoreOutline(baseSnapshot.outline), condition);
|
|
1544
|
+
const deadline = Date.now() + timeoutMs;
|
|
1545
|
+
let lastSnapshot: CdpPageSnapshot | undefined;
|
|
1546
|
+
let lastEpoch = state.epoch ?? resourceScheduler.epoch(state.resourceKey);
|
|
1547
|
+
const finish = (found: boolean, timedOut?: boolean): AgentToolResult<WaitForDetails> => {
|
|
1548
|
+
if (!lastSnapshot) throw new Error("Browser wait completed without an observation.");
|
|
1549
|
+
savedStates.set({ stateId: lastSnapshot.snapshotId, resourceKey: state.resourceKey!, epoch: lastEpoch, value: { kind: "browser", snapshot: lastSnapshot, outline: lastSnapshot.outline } });
|
|
1550
|
+
const successorOutline = restoreOutline(lastSnapshot.outline);
|
|
1551
|
+
const transition = changesBetween(restoreOutline(baseSnapshot.outline), successorOutline);
|
|
1552
|
+
const useDiff = !transition.useFullView;
|
|
1553
|
+
const renderedOutline = foldToBudget(successorOutline).text;
|
|
1554
|
+
const details: WaitForDetails = { tool: "wait_for", stateId: lastSnapshot.snapshotId, baseStateId: baseSnapshot.snapshotId, view: useDiff ? "diff" : "full", changes: useDiff ? transition.changes : undefined, found, gone: found && gone || undefined, timedOut, nodeCount: lastSnapshot.targets.length, text, role, value, scopeRef, outline: lastSnapshot.outline, renderedOutline };
|
|
1555
|
+
const message = found ? (gone ? "Condition disappeared." : "Condition appeared.") : `Timed out after ${timeoutMs}ms waiting for condition.`;
|
|
1556
|
+
const viewText = useDiff ? `${renderChanges(transition.changes) || "(no element changes)"}\nUse stateId ${lastSnapshot.snapshotId} for subsequent actions and queries.` : renderedOutline;
|
|
1557
|
+
return { content: [{ type: "text", text: `${message}\n${viewText}` }], details };
|
|
1558
|
+
};
|
|
1559
|
+
do {
|
|
1560
|
+
const scheduled = await resourceScheduler.read(state.resourceKey, async () => await cdpSnapshotForContext(contextId));
|
|
1561
|
+
lastSnapshot = scheduled.value;
|
|
1562
|
+
lastEpoch = scheduled.epoch;
|
|
1563
|
+
if (!lastSnapshot) throw new Error(`Browser root '${contextId}' is no longer available. Call find_roots and observe_ui again.`);
|
|
1564
|
+
const present = outlineConditionPresent(restoreOutline(lastSnapshot.outline), condition);
|
|
1565
|
+
if (present !== gone) return finish(true);
|
|
1566
|
+
await sleep(200, signal);
|
|
1567
|
+
} while (Date.now() < deadline);
|
|
1568
|
+
return finish(false, true);
|
|
1569
|
+
}
|
|
1570
|
+
|
|
1571
|
+
const state = operationState();
|
|
1572
|
+
const baseView = { stateId: state.currentCapture!.stateId, outline: state.currentOutline! };
|
|
1573
|
+
let target = await resolveCurrentTarget(signal);
|
|
1574
|
+
target = await ensureTargetWindowId(target, signal);
|
|
1575
|
+
const scopeNode = conditionScopeNode(state.currentOutline!, condition);
|
|
1576
|
+
const raw = await currentPlatformBackend.waitFor({
|
|
1577
|
+
...nativeWindowRequest(target),
|
|
1578
|
+
lookId: state.currentOutline!.lookId,
|
|
1579
|
+
text,
|
|
1580
|
+
role: platformRole(state.currentOutline!, role),
|
|
1581
|
+
value,
|
|
1582
|
+
scopeRef: scopeNode ? wireRefForNode(scopeNode) : undefined,
|
|
1583
|
+
scopeExact,
|
|
1584
|
+
gone,
|
|
1585
|
+
timeoutMs,
|
|
1586
|
+
}, { signal, timeoutMs: timeoutMs + 2_000 });
|
|
1587
|
+
if (!state.resourceKey || state.epoch === undefined) throw new Error("The observation has no live resource identity. Observe again.");
|
|
1588
|
+
const refreshed = (await resourceScheduler.readAt(state.resourceKey, state.epoch, async () => await captureCurrentTarget(signal, "auto"))).value;
|
|
1589
|
+
const transition = changesBetween(baseView.outline, refreshed.outline);
|
|
1590
|
+
const useDiff = !transition.useFullView;
|
|
1591
|
+
const matches = searchOutline(refreshed.outline, text, role, undefined, 1);
|
|
1592
|
+
const foundTarget = matches[0];
|
|
1593
|
+
const details: WaitForDetails = {
|
|
1594
|
+
tool: "wait_for",
|
|
1595
|
+
stateId: refreshed.capture.stateId,
|
|
1596
|
+
baseStateId: baseView.stateId,
|
|
1597
|
+
view: useDiff ? "diff" : "full",
|
|
1598
|
+
changes: useDiff ? transition.changes : undefined,
|
|
1599
|
+
found: raw.found,
|
|
1600
|
+
gone: raw.gone || undefined,
|
|
1601
|
+
timedOut: raw.timedOut || undefined,
|
|
1602
|
+
target: foundTarget ? serializeOutlineSearchMatch(foundTarget) : undefined,
|
|
1603
|
+
nodeCount: Number.isFinite(raw.nodeCount) ? Number(raw.nodeCount) : refreshed.outline.nodes.length,
|
|
1604
|
+
text,
|
|
1605
|
+
role,
|
|
1606
|
+
value,
|
|
1607
|
+
scopeRef,
|
|
1608
|
+
outline: serializeOutline(refreshed.outline),
|
|
1609
|
+
renderedOutline: foldToBudget(refreshed.outline).text,
|
|
1610
|
+
};
|
|
1611
|
+
const message = details.found ? (details.gone ? "Condition disappeared." : "Condition appeared.") : `Timed out after ${timeoutMs}ms waiting for condition.`;
|
|
1612
|
+
const viewText = useDiff ? `${renderChanges(transition.changes) || "(no element changes)"}\nUse stateId ${refreshed.capture.stateId} for subsequent actions and queries.` : details.renderedOutline;
|
|
1613
|
+
return { content: [{ type: "text", text: `${message}\n${viewText}` }], details };
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
function sameRootIdentity(a: CurrentTarget, b: CurrentTarget): boolean {
|
|
1617
|
+
if (a.pid !== b.pid) return false;
|
|
1618
|
+
if (a.windowId > 0 && b.windowId > 0) return a.windowId === b.windowId;
|
|
1619
|
+
if (a.nativeWindowRef && b.nativeWindowRef) return a.nativeWindowRef === b.nativeWindowRef;
|
|
1620
|
+
return normalizeText(a.windowTitle) === normalizeText(b.windowTitle);
|
|
1621
|
+
}
|
|
1622
|
+
|
|
1623
|
+
/** Side effects: captures/updates current target, capture state, look, and parsed outline. */
|
|
1624
|
+
async function performObserve(params: ObserveParams, signal?: AbortSignal): Promise<AgentToolResult<ComputerUseDetails | BrowserObservationDetails>> {
|
|
1625
|
+
const requestedRoot = typeof params.root === "string" ? params.root : undefined;
|
|
1626
|
+
if (requestedRoot && !/^@r\d+$/.test(requestedRoot)) throw new Error("observe_ui.root must be an exact @r ref issued by find_roots.");
|
|
1627
|
+
const browserContextId = requestedRoot ? runtimeState.browserContextByRoot.get(requestedRoot) : undefined;
|
|
1628
|
+
if (isBrowserContextId(browserContextId)) {
|
|
1629
|
+
const targetId = browserContextId.slice(BROWSER_CONTEXT_PREFIX.length);
|
|
1630
|
+
const resourceKey = `cdp:${targetId}`;
|
|
1631
|
+
const scheduled = await resourceScheduler.read(resourceKey, async () => await cdpSnapshotForContext(browserContextId));
|
|
1632
|
+
const browser = scheduled.value;
|
|
1633
|
+
if (!browser) throw new Error(`Browser context '${browserContextId}' is no longer available. Call find_roots again.`);
|
|
1634
|
+
return browserObservationResult(browser, resourceKey, scheduled.epoch, "observe_ui");
|
|
1635
|
+
}
|
|
1636
|
+
const state = operationState();
|
|
1637
|
+
const mode = params.mode ?? "fused";
|
|
1638
|
+
const image = mode === "semantic" ? "never" : mode === "visual" ? "always" : "auto";
|
|
1639
|
+
const defaultReadText = mode === "semantic" ? "never" : mode === "visual" ? "always" : "auto";
|
|
1640
|
+
const readText = params.readText ?? defaultReadText;
|
|
1641
|
+
state.currentImageMode = normalizeImageMode(image);
|
|
1642
|
+
const selection: ObserveTargetParams = { root: normalizeWindowSelector(params.root) };
|
|
1643
|
+
const requestedTarget = selection.root
|
|
1644
|
+
? await resolveTargetByWindowSelector(params.root!, signal)
|
|
1645
|
+
: await resolveTargetForObserve(signal);
|
|
1646
|
+
const imageMode = normalizeImageMode(image);
|
|
1647
|
+
const resourceKey = desktopResourceKey(requestedTarget);
|
|
1648
|
+
const scheduled = await resourceScheduler.read(resourceKey, async (epoch) => {
|
|
1649
|
+
state.resourceKey = resourceKey;
|
|
1650
|
+
state.epoch = epoch;
|
|
1651
|
+
return await captureCurrentTarget(signal, readText, imageMode === "always" ? EXPLICIT_IMAGE_MAX_DIMENSION : AUTO_IMAGE_MAX_DIMENSION, requestedTarget, imageMode !== "never");
|
|
1652
|
+
});
|
|
1653
|
+
const captureResult = scheduled.value;
|
|
1654
|
+
// Model @r refs are re-minted on re-resolution, so ref string equality
|
|
1655
|
+
// alone false-positives as drift for the same root; compare stable
|
|
1656
|
+
// identity against the resolved request too.
|
|
1657
|
+
if (!matchesObserveSelection(captureResult.target, selection) && !sameRootIdentity(captureResult.target, requestedTarget)) {
|
|
1658
|
+
throw new Error(
|
|
1659
|
+
`Observation target drifted from the requested selection. Requested ${requestedTarget.appName} — ${requestedTarget.windowTitle}, captured ${captureResult.target.appName} — ${captureResult.target.windowTitle}. Call observe_ui again or specify a more exact window title.`,
|
|
1660
|
+
);
|
|
1661
|
+
}
|
|
1662
|
+
const summary = `Observed ${mode} ${captureResult.target.windowRef ? `${captureResult.target.windowRef} ` : ""}${captureResult.target.appName} — ${captureResult.target.windowTitle}. Returned the latest outline state.`;
|
|
1663
|
+
return await buildToolResult("observe_ui", summary, captureResult, executionTrace("look", "stealth"), signal, imageMode);
|
|
1664
|
+
}
|
|
1665
|
+
|
|
1666
|
+
function currentOutlineOrThrow(stateId?: string): Outline {
|
|
1667
|
+
validateStateId(stateId);
|
|
1668
|
+
const outline = operationState().currentOutline;
|
|
1669
|
+
if (!outline) throw new Error("No observation outline is available. Call observe_ui first.");
|
|
1670
|
+
return outline;
|
|
1671
|
+
}
|
|
1672
|
+
|
|
1673
|
+
function matchIsNonActionableStatic(match: OutlineSearchMatch): boolean {
|
|
1674
|
+
const node = match.node;
|
|
1675
|
+
return !node.canPress && !node.canFocus && !node.canSetValue && node.actions.length === 0 && !node.pictureOnly;
|
|
1676
|
+
}
|
|
1677
|
+
|
|
1678
|
+
function shouldEscalateSearchOCR(matches: OutlineSearchMatch[], _text?: string): boolean {
|
|
1679
|
+
return matches.length === 0 || matches.every(matchIsNonActionableStatic);
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
/** Pure outline query unless a window selector is supplied, in which case current target selection may change. */
|
|
1683
|
+
async function performSearchUi(params: SearchUiParams, signal?: AbortSignal): Promise<AgentToolResult<OutlineToolDetails>> {
|
|
1684
|
+
const state = operationState();
|
|
1685
|
+
let outline = currentOutlineOrThrow(params.stateId);
|
|
1686
|
+
const text = trimOrUndefined(params.text);
|
|
1687
|
+
const role = trimOrUndefined(params.role);
|
|
1688
|
+
const capability = trimOrUndefined(params.capability);
|
|
1689
|
+
if (!text && !role && !capability) throw new Error("search_ui requires text, role, or capability. Use observe_ui for a bounded overview.");
|
|
1690
|
+
const limit = 12;
|
|
1691
|
+
let ranked = searchOutlineRanked(outline, text, role, capability, limit);
|
|
1692
|
+
let matches = ranked.matches;
|
|
1693
|
+
let escalatedOCR = false;
|
|
1694
|
+
const look = state.currentLook;
|
|
1695
|
+
if (shouldEscalateSearchOCR(matches, text) && look && look.readText?.requested !== "never" && !look.readText?.executed && state.lastSearchOcrEscalatedLookId !== look.lookId) {
|
|
1696
|
+
state.lastSearchOcrEscalatedLookId = look.lookId;
|
|
1697
|
+
const currentTarget = await ensureTargetWindowId(await resolveCurrentTarget(signal), signal);
|
|
1698
|
+
// captureCurrentTarget adopts the new look/outline/capture into
|
|
1699
|
+
// runtimeState, so refs in these matches stay actable. Keep the image
|
|
1700
|
+
// payload: OCR-only matches are clicked by coordinate, and coordinate
|
|
1701
|
+
// acts require the current look to be image-bearing.
|
|
1702
|
+
if (!state.resourceKey || state.epoch === undefined) throw new Error("The observation has no live resource identity. Observe again.");
|
|
1703
|
+
const captureResult = (await resourceScheduler.readAt(state.resourceKey, state.epoch, async () => await captureCurrentTarget(signal, "always", AUTO_IMAGE_MAX_DIMENSION, currentTarget))).value;
|
|
1704
|
+
outline = captureResult.outline;
|
|
1705
|
+
ranked = searchOutlineRanked(outline, text, role, capability, limit);
|
|
1706
|
+
matches = ranked.matches;
|
|
1707
|
+
escalatedOCR = true;
|
|
1708
|
+
}
|
|
1709
|
+
const detailMatches = matches.map(serializeOutlineSearchMatch);
|
|
1710
|
+
const details: OutlineToolDetails = { tool: "search_ui", stateId: state.currentCapture?.stateId, lookId: outline.lookId, matches: detailMatches, totalMatches: ranked.totalMatches, returned: matches.length, hasMore: ranked.totalMatches > matches.length, note: state.currentNote };
|
|
1711
|
+
const lines = matches.map((match) => `${match.ref} ${match.role || "Unknown"} ${JSON.stringify(match.label || "(unlabeled)")} [${match.matchReason}${match.matchReason === "fuzzy" ? ` ${match.score?.toFixed(2)}` : ""}]\n path: ${match.path}`);
|
|
1712
|
+
const noteHeader = renderNote(state.currentNote);
|
|
1713
|
+
const noteText = noteHeader ? `${noteHeader}\n\n` : "";
|
|
1714
|
+
const escalationText = escalatedOCR ? " OCR text was escalated for this search after the cached outline had no matches." : "";
|
|
1715
|
+
const moreText = ranked.totalMatches > matches.length ? ` Refine the query to inspect ${ranked.totalMatches - matches.length} additional matches.` : "";
|
|
1716
|
+
return { content: [{ type: "text", text: `${noteText}Found ${ranked.totalMatches} outline match${ranked.totalMatches === 1 ? "" : "es"}; returned ${matches.length}.${moreText}${escalationText}\n${lines.join("\n")}` }], details };
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1719
|
+
/** Reads cached outline; truncated refs trigger a scoped look. */
|
|
1720
|
+
async function performExpandUi(params: ExpandUiParams, signal?: AbortSignal): Promise<AgentToolResult<OutlineToolDetails>> {
|
|
1721
|
+
const state = operationState();
|
|
1722
|
+
let outline = currentOutlineOrThrow(params.stateId);
|
|
1723
|
+
const ref = trimOrUndefined(params.ref);
|
|
1724
|
+
if (!ref) throw new Error("expand_ui.ref is required.");
|
|
1725
|
+
const initialTarget = nodeByRef(outline, ref);
|
|
1726
|
+
if (!initialTarget) throw new Error(`Outline ref '${ref}' is not available in the current outline.`);
|
|
1727
|
+
let target: OutlineNode = initialTarget;
|
|
1728
|
+
const depth = Math.max(1, Math.min(8, Math.trunc(toFiniteNumber(params.depth, 3))));
|
|
1729
|
+
const regionKey = noteRegionKeyForRef(outline, ref);
|
|
1730
|
+
const regionChanged = Boolean(regionKey && state.currentNote?.regions.some((region) => region.key === regionKey && region.status === "changed"));
|
|
1731
|
+
if (target.truncated || regionChanged) {
|
|
1732
|
+
const currentTarget = await ensureTargetWindowId(await resolveCurrentTarget(signal), signal);
|
|
1733
|
+
const targetWireRef = wireRefForNode(target);
|
|
1734
|
+
if (!state.resourceKey || state.epoch === undefined) throw new Error("The observation has no live resource identity. Observe again.");
|
|
1735
|
+
const scoped = (await resourceScheduler.readAt(state.resourceKey, state.epoch, async () => await performLook(currentTarget, {
|
|
1736
|
+
readText: "auto",
|
|
1737
|
+
baseLookId: outline.lookId,
|
|
1738
|
+
scopeRef: targetWireRef,
|
|
1739
|
+
maxDimension: 1,
|
|
1740
|
+
includeImage: false,
|
|
1741
|
+
}, signal))).value;
|
|
1742
|
+
target = graftScopedOutline(outline, target.ref, scoped.parsedOutline!);
|
|
1743
|
+
outline.lookId = scoped.lookId;
|
|
1744
|
+
state.currentOutline = outline;
|
|
1745
|
+
state.currentLook = { ...scoped, image: state.currentLook?.image, outline: outline.root, parsedOutline: outline };
|
|
1746
|
+
persistOperation(state);
|
|
1747
|
+
}
|
|
1748
|
+
const folded = foldToBudget(outline, { maxDepth: depth, maxNodes: 150 }, [target.ref]);
|
|
1749
|
+
const details: OutlineToolDetails = { tool: "expand_ui", stateId: state.currentCapture?.stateId, lookId: outline.lookId, target: serializeOutlineNodeShallow(target), renderedOutline: folded.text, note: state.currentNote };
|
|
1750
|
+
return { content: [{ type: "text", text: `${formatOutlineNodeLabel(target)}\npath: ${outlineNodePath(target)}\n\n${folded.text}` }], details };
|
|
1751
|
+
}
|
|
1752
|
+
|
|
1753
|
+
/** Pure cached-outline inspection. */
|
|
1754
|
+
async function performInspectUi(params: InspectUiParams): Promise<AgentToolResult<OutlineToolDetails>> {
|
|
1755
|
+
const state = operationState();
|
|
1756
|
+
const outline = currentOutlineOrThrow(params.stateId);
|
|
1757
|
+
const ref = trimOrUndefined(params.ref);
|
|
1758
|
+
if (!ref) throw new Error("inspect_ui.ref is required.");
|
|
1759
|
+
const target = nodeByRef(outline, ref);
|
|
1760
|
+
if (!target) throw new Error(`Outline ref '${ref}' is not available in the current outline.`);
|
|
1761
|
+
const details: OutlineToolDetails = { tool: "inspect_ui", stateId: state.currentCapture?.stateId, lookId: outline.lookId, target: serializeOutlineNodeShallow(target), note: state.currentNote };
|
|
1762
|
+
const fields = [
|
|
1763
|
+
formatOutlineNodeLabel(target),
|
|
1764
|
+
`path: ${outlineNodePath(target)}`,
|
|
1765
|
+
`rect: ${JSON.stringify(target.rect)}`,
|
|
1766
|
+
`actions: ${target.actions.join(",") || "none"}`,
|
|
1767
|
+
`capabilities: ${[
|
|
1768
|
+
target.canPress ? "press" : undefined,
|
|
1769
|
+
target.canFocus ? "focus" : undefined,
|
|
1770
|
+
target.canSetValue ? "setValue" : undefined,
|
|
1771
|
+
target.canScroll ? "scroll" : undefined,
|
|
1772
|
+
target.canIncrement ? "increment" : undefined,
|
|
1773
|
+
target.canDecrement ? "decrement" : undefined,
|
|
1774
|
+
target.isTextInput ? "textInput" : undefined,
|
|
1775
|
+
].filter(Boolean).join(",") || "none"}`,
|
|
1776
|
+
`annotations: ${[
|
|
1777
|
+
target.offscreen ? "offscreen" : undefined,
|
|
1778
|
+
target.pictureOnly ? "pictureOnly" : undefined,
|
|
1779
|
+
target.truncated ? "truncated" : undefined,
|
|
1780
|
+
target.scrollExtent ? `scrollable ${target.scrollExtent.seen}/${target.scrollExtent.total}` : undefined,
|
|
1781
|
+
].filter(Boolean).join(",") || "none"}`,
|
|
1782
|
+
];
|
|
1783
|
+
return { content: [{ type: "text", text: fields.join("\n") }], details };
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
function prepareUiAction(action: UiAction, state: ActionState, look: LookResponse, headless: boolean): PreparedAction {
|
|
1787
|
+
return prepareAction(action, state, {
|
|
1788
|
+
headless,
|
|
1789
|
+
image: look.image,
|
|
1790
|
+
node: outlineNodeByRef,
|
|
1791
|
+
center: outlineNodeCenter,
|
|
1792
|
+
validatePoint: (x, y, label) => ensurePointIsInLookImage(x, y, look, label),
|
|
1793
|
+
});
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1796
|
+
async function dispatchUiAction(action: UiAction, target: ResolvedTarget, look: LookResponse, headless: boolean, state: ActionState, signal?: AbortSignal): Promise<ExecutionTrace> {
|
|
1797
|
+
const prepared = prepareUiAction(action, state, look, headless);
|
|
1798
|
+
if (prepared.action === "wait") {
|
|
1799
|
+
await sleep(prepared.params.ms, signal);
|
|
1800
|
+
return executionTrace("wait", "stealth", { outcome: "worked" });
|
|
1801
|
+
}
|
|
1802
|
+
const trace = await helperAct(target, prepared, headless, signal);
|
|
1803
|
+
if (!headless && (prepared.establishesFocus || (prepared.action === "click" && "x" in prepared.target))) {
|
|
1804
|
+
state.currentFocus = true;
|
|
1805
|
+
}
|
|
1806
|
+
return trace;
|
|
1807
|
+
}
|
|
1808
|
+
|
|
1809
|
+
async function dispatchUiTransaction(actions: UiAction[], target: ResolvedTarget, look: LookResponse, headless: boolean, signal?: AbortSignal): Promise<ExecutionTrace> {
|
|
1810
|
+
// Strict-headless batches have one immutable delivery class. When foreground
|
|
1811
|
+
// fallback is permitted, decide independently per action so a completed
|
|
1812
|
+
// background prefix is never replayed as part of a foreground batch.
|
|
1813
|
+
if (headless && currentPlatformBackend.actBatch) {
|
|
1814
|
+
const actionState: ActionState = { currentFocus: false };
|
|
1815
|
+
const requests = actions.map((action) => helperActRequest(target, prepareUiAction(action, actionState, look, true) as NativePreparedAction, "ax_only"));
|
|
1816
|
+
const textLength = actions.reduce((sum, action) => sum + (action.text?.length ?? 0), 0);
|
|
1817
|
+
const result = await currentPlatformBackend.actBatch(requests, { signal, timeoutMs: Math.max(COMMAND_TIMEOUT_MS, textLength * 25 + 6_000) });
|
|
1818
|
+
if (!result.steps || result.steps.length === 0) throw new Error("Native action transaction returned no checked steps.");
|
|
1819
|
+
const execution = aggregateExecutions(result.steps.map((step) => executionTraceFromAct(step, "ax_only")));
|
|
1820
|
+
const batchTrace = executionTraceFromAct(result, "ax_only");
|
|
1821
|
+
execution.outcome = result.outcome;
|
|
1822
|
+
execution.performed = result.performed;
|
|
1823
|
+
execution.rootDelta = batchTrace.rootDelta;
|
|
1824
|
+
execution.stoppedAt = result.stoppedAt;
|
|
1825
|
+
return execution;
|
|
1826
|
+
}
|
|
1827
|
+
const steps: ExecutionTrace[] = [];
|
|
1828
|
+
const actionState: ActionState = { currentFocus: false };
|
|
1829
|
+
for (const action of actions) {
|
|
1830
|
+
const step = await dispatchUiAction(action, target, look, headless, actionState, signal);
|
|
1831
|
+
steps.push(step);
|
|
1832
|
+
if (step.outcome === "didnt") break;
|
|
1833
|
+
}
|
|
1834
|
+
return aggregateExecutions(steps);
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1837
|
+
function aggregateExecutions(steps: ExecutionTrace[]): ExecutionTrace {
|
|
1838
|
+
const outcomes = steps.map((step) => step.outcome);
|
|
1839
|
+
const outcome: ActOutcome = outcomes.includes("didnt") ? "didnt" : outcomes.includes("unknown") ? "unknown" : "worked";
|
|
1840
|
+
const fallback = steps.find((step) => step.escalatedToForeground);
|
|
1841
|
+
return executionTrace("act", steps.every((step) => step.variant === "stealth") ? "stealth" : "default", {
|
|
1842
|
+
outcome,
|
|
1843
|
+
steps,
|
|
1844
|
+
actionCount: steps.length,
|
|
1845
|
+
rootDelta: steps.flatMap((step) => step.rootDelta ?? []),
|
|
1846
|
+
backgroundFirst: true,
|
|
1847
|
+
escalatedToForeground: Boolean(fallback),
|
|
1848
|
+
escalationReason: fallback?.escalationReason,
|
|
1849
|
+
backgroundAttempt: fallback?.backgroundAttempt,
|
|
1850
|
+
});
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1853
|
+
function exactPlatformRootMatchesTarget(root: HelperWindow, target: ResolvedTarget): boolean {
|
|
1854
|
+
if (root.pid !== target.pid) return false;
|
|
1855
|
+
const nativeRefMatches = Boolean(target.nativeWindowRef && (root.rootRef === target.nativeWindowRef || root.windowRef === target.nativeWindowRef));
|
|
1856
|
+
const windowIdMatches = target.windowId > 0 && root.windowId === target.windowId;
|
|
1857
|
+
return nativeRefMatches || windowIdMatches;
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
function clearDesktopOperationState(state: OperationState): void {
|
|
1861
|
+
state.currentTarget = undefined;
|
|
1862
|
+
state.currentCapture = undefined;
|
|
1863
|
+
state.currentStateTarget = undefined;
|
|
1864
|
+
state.currentLook = undefined;
|
|
1865
|
+
state.currentOutline = undefined;
|
|
1866
|
+
state.currentNote = undefined;
|
|
1867
|
+
}
|
|
1868
|
+
|
|
1869
|
+
async function terminalDesktopActionResult(
|
|
1870
|
+
target: ResolvedTarget,
|
|
1871
|
+
baseStateId: string,
|
|
1872
|
+
execution: ExecutionTrace,
|
|
1873
|
+
error: unknown,
|
|
1874
|
+
condition?: ReturnType<typeof validateCondition>,
|
|
1875
|
+
): Promise<AgentToolResult<TerminalDesktopActionDetails>> {
|
|
1876
|
+
let exactRootAvailable: boolean | undefined;
|
|
1877
|
+
try {
|
|
1878
|
+
for (let attempt = 0; attempt < 3; attempt += 1) {
|
|
1879
|
+
const roots = await currentPlatformBackend.listRoots({ pid: target.pid });
|
|
1880
|
+
exactRootAvailable = roots.some((root) => exactPlatformRootMatchesTarget(root, target));
|
|
1881
|
+
if (exactRootAvailable) break;
|
|
1882
|
+
if (attempt < 2) await sleep(75);
|
|
1883
|
+
}
|
|
1884
|
+
} catch {
|
|
1885
|
+
// A failed identity probe cannot prove that the root closed.
|
|
1886
|
+
}
|
|
1887
|
+
const targetClosed = exactRootAvailable === false;
|
|
1888
|
+
if (targetClosed && !(execution.rootDelta ?? []).some((delta) => delta.change === "closed" && delta.pid === target.pid && (delta.ref === target.windowRef || delta.ref === target.nativeWindowRef))) {
|
|
1889
|
+
execution.rootDelta = [
|
|
1890
|
+
...(execution.rootDelta ?? []),
|
|
1891
|
+
{
|
|
1892
|
+
change: "closed",
|
|
1893
|
+
kind: "window",
|
|
1894
|
+
ref: target.windowRef,
|
|
1895
|
+
title: target.windowTitle,
|
|
1896
|
+
pid: target.pid,
|
|
1897
|
+
metadata: { source: "post_action_identity_probe" },
|
|
1898
|
+
},
|
|
1899
|
+
];
|
|
1900
|
+
}
|
|
1901
|
+
if (targetClosed && condition) {
|
|
1902
|
+
const verificationStatus = condition.gone ? "verified" : "failed";
|
|
1903
|
+
execution.verification = {
|
|
1904
|
+
status: verificationStatus,
|
|
1905
|
+
text: condition.text,
|
|
1906
|
+
role: condition.role,
|
|
1907
|
+
value: condition.value,
|
|
1908
|
+
gone: condition.gone || undefined,
|
|
1909
|
+
timeoutMs: condition.timeoutMs,
|
|
1910
|
+
};
|
|
1911
|
+
execution.outcome = outcomeAfterCheck(execution.outcome ?? "unknown", verificationStatus);
|
|
1912
|
+
if (verificationStatus === "failed") {
|
|
1913
|
+
execution.error = {
|
|
1914
|
+
code: "postcondition_failed",
|
|
1915
|
+
message: "The source root closed before the requested presence or value postcondition could be verified.",
|
|
1916
|
+
};
|
|
1917
|
+
}
|
|
1918
|
+
}
|
|
1919
|
+
const status = targetClosed ? "target_closed" : "post_action_observation_failed";
|
|
1920
|
+
const code = targetClosed ? "target_closed" : "post_action_observation_failed";
|
|
1921
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
1922
|
+
clearDesktopOperationState(operationState());
|
|
1923
|
+
const details: TerminalDesktopActionDetails = {
|
|
1924
|
+
tool: "act_ui",
|
|
1925
|
+
status,
|
|
1926
|
+
baseStateId,
|
|
1927
|
+
target: {
|
|
1928
|
+
app: target.appName,
|
|
1929
|
+
bundleId: target.bundleId,
|
|
1930
|
+
pid: target.pid,
|
|
1931
|
+
windowTitle: target.windowTitle,
|
|
1932
|
+
windowId: target.windowId,
|
|
1933
|
+
windowRef: target.windowRef,
|
|
1934
|
+
nativeWindowRef: target.nativeWindowRef,
|
|
1935
|
+
},
|
|
1936
|
+
execution,
|
|
1937
|
+
error: { code, message },
|
|
1938
|
+
};
|
|
1939
|
+
const result = targetClosed
|
|
1940
|
+
? `The action was delivered, and its source root ${target.appName} — ${target.windowTitle} closed before a successor observation could be captured.`
|
|
1941
|
+
: `The action was delivered, but its source root ${target.appName} — ${target.windowTitle} could not be observed afterward: ${message}`;
|
|
1942
|
+
return {
|
|
1943
|
+
content: [{ type: "text", text: `${result}\nNo successor state was created. Call find_roots, then observe_ui to continue.` }],
|
|
1944
|
+
details,
|
|
1945
|
+
};
|
|
1946
|
+
}
|
|
1947
|
+
|
|
1948
|
+
async function performDesktopTransaction(params: ActParams, actions: UiAction[], signal?: AbortSignal): Promise<AgentToolResult<ComputerUseDetails | TerminalDesktopActionDetails>> {
|
|
1949
|
+
const state = operationState();
|
|
1950
|
+
state.currentImageMode = "auto";
|
|
1951
|
+
validateStateId(params.stateId);
|
|
1952
|
+
const look = currentLookOrThrow();
|
|
1953
|
+
const baseView = { stateId: state.currentCapture!.stateId, outline: state.currentOutline! };
|
|
1954
|
+
const condition = params.expect ? validateCondition(params.expect) : undefined;
|
|
1955
|
+
const scopeNode = condition ? conditionScopeNode(look.parsedOutline!, condition) : undefined;
|
|
1956
|
+
const target = await ensureTargetWindowId(await resolveCurrentTarget(signal), signal);
|
|
1957
|
+
const noteBefore = state.currentNote;
|
|
1958
|
+
return await withWindowWriteLock(target, async () => {
|
|
1959
|
+
const headless = getComputerUseConfig().headless;
|
|
1960
|
+
const execution = await dispatchUiTransaction(actions, target, look, headless, signal);
|
|
1961
|
+
const executedActions = actions.slice(0, execution.actionCount ?? actions.length);
|
|
1962
|
+
try {
|
|
1963
|
+
if (condition) {
|
|
1964
|
+
const { text: expectedText, role: expectedRole, value: expectedValue, scopeExact, gone, timeoutMs } = condition;
|
|
1965
|
+
const beforePresent = outlineConditionPresent(look.parsedOutline!, condition);
|
|
1966
|
+
const desiredWasPreexisting = beforePresent !== gone;
|
|
1967
|
+
const verification = await currentPlatformBackend.waitFor({
|
|
1968
|
+
...nativeWindowRequest(target),
|
|
1969
|
+
lookId: look.parsedOutline!.lookId,
|
|
1970
|
+
text: expectedText,
|
|
1971
|
+
role: platformRole(look.parsedOutline!, expectedRole),
|
|
1972
|
+
value: expectedValue,
|
|
1973
|
+
scopeRef: scopeNode ? wireRefForNode(scopeNode) : undefined,
|
|
1974
|
+
scopeExact,
|
|
1975
|
+
gone,
|
|
1976
|
+
timeoutMs,
|
|
1977
|
+
}, { signal, timeoutMs: timeoutMs + 2_000 });
|
|
1978
|
+
execution.verification = {
|
|
1979
|
+
status: verification.found ? (desiredWasPreexisting ? "preexisting" : "verified") : "failed",
|
|
1980
|
+
text: expectedText,
|
|
1981
|
+
role: expectedRole,
|
|
1982
|
+
value: expectedValue,
|
|
1983
|
+
gone: gone || undefined,
|
|
1984
|
+
timeoutMs,
|
|
1985
|
+
};
|
|
1986
|
+
execution.outcome = outcomeAfterCheck(execution.outcome ?? "unknown", execution.verification.status);
|
|
1987
|
+
if (!verification.found) {
|
|
1988
|
+
execution.error = {
|
|
1989
|
+
code: "postcondition_failed",
|
|
1990
|
+
message: `The action was delivered but its postcondition was not satisfied within ${timeoutMs}ms.`,
|
|
1991
|
+
};
|
|
1992
|
+
}
|
|
1993
|
+
} else {
|
|
1994
|
+
await sleep(settleMsForExecution(execution), signal);
|
|
1995
|
+
}
|
|
1996
|
+
const capture = await captureCurrentTarget(signal, "auto", AUTO_IMAGE_MAX_DIMENSION, target);
|
|
1997
|
+
execution.outcome = outcomeAfterObservedValues(execution.outcome ?? "unknown", executedActions, (ref) => nodeByRef(capture.outline, ref)?.value);
|
|
1998
|
+
for (const action of executedActions) {
|
|
1999
|
+
state.currentNote = noteAfterAct(state.currentNote ?? noteBefore, action.ref, capture.outline, { window: noteWindowForTarget(capture.target, capture.look), rootDelta: execution.rootDelta });
|
|
2000
|
+
}
|
|
2001
|
+
return await buildToolResult("act_ui", `Executed ${executedActions.length} checked UI action${executedActions.length === 1 ? "" : "s"} in ${target.appName} — ${target.windowTitle}. Returned state ${capture.capture.stateId}.`, capture, execution, signal, state.currentImageMode, baseView);
|
|
2002
|
+
} catch (error) {
|
|
2003
|
+
if (signal?.aborted) {
|
|
2004
|
+
clearDesktopOperationState(state);
|
|
2005
|
+
throw error;
|
|
2006
|
+
}
|
|
2007
|
+
return await terminalDesktopActionResult(target, baseView.stateId, execution, error, condition);
|
|
2008
|
+
}
|
|
2009
|
+
});
|
|
2010
|
+
}
|
|
2011
|
+
|
|
2012
|
+
async function performBrowserTransaction(params: ActParams, actions: UiAction[], signal?: AbortSignal): Promise<AgentToolResult<BrowserObservationDetails>> {
|
|
2013
|
+
const contextId = browserContextForOperation();
|
|
2014
|
+
if (!contextId) throw new Error("Browser transaction requires a browser observation state.");
|
|
2015
|
+
const baseSnapshot = operationState().browserSnapshot;
|
|
2016
|
+
if (!baseSnapshot) throw new Error("Browser transaction requires a complete base observation.");
|
|
2017
|
+
const baseView = { stateId: baseSnapshot.snapshotId, outline: baseSnapshot.outline };
|
|
2018
|
+
const condition = params.expect ? validateCondition(params.expect) : undefined;
|
|
2019
|
+
if (condition) conditionScopeNode(restoreOutline(baseSnapshot.outline), condition);
|
|
2020
|
+
const prepared = actions.map((action) => {
|
|
2021
|
+
if (!BROWSER_TRANSACTION_ACTIONS.has(action.action)) throw new Error(`Browser transactions do not support '${action.action}'.`);
|
|
2022
|
+
if (action.action === "click" && action.ref && action.button && action.button !== "left") throw new Error("Browser ref clicks support only the left button; use coordinate clicks for right or middle buttons.");
|
|
2023
|
+
const target = browserSnapshotTarget(params.stateId, trimOrUndefined(action.ref));
|
|
2024
|
+
if ((action.action === "press" || action.action === "setText" || (action.action === "click" && action.ref) || (action.action === "typeText" && action.ref)) && !Number.isFinite(target?.backendNodeId)) {
|
|
2025
|
+
throw new Error(`Browser ${action.action} requires an actionable @e ref owned by ${params.stateId}.`);
|
|
2026
|
+
}
|
|
2027
|
+
if (action.ref && (!target || target.contextId !== contextId)) throw new Error(`Browser ${action.action} ref must be owned by ${params.stateId}.`);
|
|
2028
|
+
return { action, target };
|
|
2029
|
+
});
|
|
2030
|
+
return await withBrowserWrite(contextId, async () => {
|
|
2031
|
+
for (const { action, target } of prepared) {
|
|
2032
|
+
let worked = false;
|
|
2033
|
+
if (action.action === "press" || (action.action === "click" && action.ref)) {
|
|
2034
|
+
worked = true;
|
|
2035
|
+
for (let count = 0; count < (action.clickCount ?? 1); count += 1) worked = await cdpClickForContext(contextId, target!.backendNodeId!) && worked;
|
|
2036
|
+
} else if (action.action === "click") {
|
|
2037
|
+
worked = await cdpMouseForContext(contextId, action.x!, action.y!, "mousePressed", action.button ?? "left", action.clickCount ?? 1)
|
|
2038
|
+
&& await cdpMouseForContext(contextId, action.x!, action.y!, "mouseReleased", action.button ?? "left", action.clickCount ?? 1);
|
|
2039
|
+
} else if (action.action === "setText") worked = await cdpTypeForContext(contextId, target!.backendNodeId!, action.text ?? "", true);
|
|
2040
|
+
else if (action.action === "typeText") worked = target?.backendNodeId
|
|
2041
|
+
? await cdpTypeForContext(contextId, target.backendNodeId, action.text ?? "", false)
|
|
2042
|
+
: await cdpTypeFocusedForContext(contextId, action.text ?? "");
|
|
2043
|
+
else if (action.action === "keypress") worked = await cdpKeypressForContext(contextId, action.keys ?? []);
|
|
2044
|
+
else if (action.action === "scroll") worked = await cdpScrollForContext(contextId, toFiniteNumber(action.scrollX, 0), toFiniteNumber(action.scrollY, 0), target?.backendNodeId);
|
|
2045
|
+
else if (action.action === "drag") worked = await cdpDragForContext(contextId, normalizeActionPath(action.path));
|
|
2046
|
+
else if (action.action === "moveMouse") worked = await cdpMouseForContext(contextId, action.x!, action.y!, "mouseMoved");
|
|
2047
|
+
if (!worked) throw new Error("The browser root became unavailable during the action transaction. Observe it again.");
|
|
2048
|
+
}
|
|
2049
|
+
if (condition) {
|
|
2050
|
+
const deadline = Date.now() + condition.timeoutMs;
|
|
2051
|
+
let satisfied = false;
|
|
2052
|
+
do {
|
|
2053
|
+
const snapshot = await cdpSnapshotForContext(contextId);
|
|
2054
|
+
if (!snapshot) throw new Error(`Browser root '${contextId}' is no longer available. Observe it again.`);
|
|
2055
|
+
const present = outlineConditionPresent(restoreOutline(snapshot.outline), condition);
|
|
2056
|
+
satisfied = present !== condition.gone;
|
|
2057
|
+
if (!satisfied) await sleep(100, signal);
|
|
2058
|
+
} while (!satisfied && Date.now() < deadline);
|
|
2059
|
+
if (!satisfied) throw new Error(`The browser action was delivered but its postcondition was not satisfied within ${condition.timeoutMs}ms.`);
|
|
2060
|
+
}
|
|
2061
|
+
return await refreshBrowserSnapshot(contextId, "act_ui", baseView);
|
|
2062
|
+
});
|
|
2063
|
+
}
|
|
2064
|
+
|
|
2065
|
+
function normalizeActionPath(path: UiAction["path"]): Array<{ x: number; y: number }> {
|
|
2066
|
+
return (path ?? []).map((point) => Array.isArray(point) ? { x: toFiniteNumber(point[0], 0), y: toFiniteNumber(point[1], 0) } : { x: toFiniteNumber(point.x, 0), y: toFiniteNumber(point.y, 0) });
|
|
2067
|
+
}
|
|
2068
|
+
|
|
2069
|
+
function validateActionTarget(action: UiAction): void {
|
|
2070
|
+
const hasRef = Boolean(trimOrUndefined(action.ref));
|
|
2071
|
+
const hasX = Number.isFinite(action.x);
|
|
2072
|
+
const hasY = Number.isFinite(action.y);
|
|
2073
|
+
if (hasX !== hasY) throw new Error(`${action.action} coordinates require both x and y.`);
|
|
2074
|
+
const hasPoint = hasX && hasY;
|
|
2075
|
+
if ((action.action === "click" || action.action === "moveMouse") && hasRef === hasPoint) {
|
|
2076
|
+
throw new Error(`${action.action} requires exactly one target: ref or x/y coordinates.`);
|
|
2077
|
+
}
|
|
2078
|
+
if (action.action === "press" && !hasRef) throw new Error("press requires an actionable ref.");
|
|
2079
|
+
if (action.action === "scroll" && toFiniteNumber(action.scrollX, 0) === 0 && toFiniteNumber(action.scrollY, 0) === 0) throw new Error("scroll requires a non-zero scrollX or scrollY delta.");
|
|
2080
|
+
if (action.clickCount !== undefined && (!Number.isInteger(action.clickCount) || action.clickCount < 1 || action.clickCount > 3)) throw new Error("clickCount must be an integer from 1 to 3.");
|
|
2081
|
+
}
|
|
2082
|
+
|
|
2083
|
+
async function performAct(params: ActParams, signal?: AbortSignal): Promise<AgentToolResult<ComputerUseDetails | TerminalDesktopActionDetails | BrowserObservationDetails>> {
|
|
2084
|
+
const actions = Array.isArray(params.actions) ? params.actions : [];
|
|
2085
|
+
if (actions.length === 0) throw new Error("act_ui.actions must contain at least one action.");
|
|
2086
|
+
if (actions.length > 20) throw new Error("act_ui supports at most 20 actions per transaction.");
|
|
2087
|
+
for (const action of actions) validateActionTarget(action);
|
|
2088
|
+
if (operationState().contextId) return await performBrowserTransaction(params, actions, signal);
|
|
2089
|
+
return await performDesktopTransaction(params, actions, signal);
|
|
2090
|
+
}
|
|
2091
|
+
|
|
2092
|
+
function managedBrowserExecutableCandidates(browser: "helium" | "chrome"): string[] {
|
|
2093
|
+
const overrideName = browser === "helium" ? "PI_COMPUTER_USE_HELIUM_EXECUTABLE" : "PI_COMPUTER_USE_CHROME_EXECUTABLE";
|
|
2094
|
+
const override = trimOrUndefined(process.env[overrideName]);
|
|
2095
|
+
if (override) return [path.resolve(override)];
|
|
2096
|
+
|
|
2097
|
+
const platformCandidates = process.platform === "darwin"
|
|
2098
|
+
? browser === "helium"
|
|
2099
|
+
? [
|
|
2100
|
+
"/Applications/Helium.app/Contents/MacOS/Helium",
|
|
2101
|
+
path.join(os.homedir(), "Applications", "Helium.app", "Contents", "MacOS", "Helium"),
|
|
2102
|
+
]
|
|
2103
|
+
: [
|
|
2104
|
+
"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome",
|
|
2105
|
+
path.join(os.homedir(), "Applications", "Google Chrome.app", "Contents", "MacOS", "Google Chrome"),
|
|
2106
|
+
]
|
|
2107
|
+
: process.platform === "win32"
|
|
2108
|
+
? browser === "helium"
|
|
2109
|
+
? [
|
|
2110
|
+
process.env.LOCALAPPDATA && path.join(process.env.LOCALAPPDATA, "Helium", "Application", "helium.exe"),
|
|
2111
|
+
process.env.PROGRAMFILES && path.join(process.env.PROGRAMFILES, "Helium", "Application", "helium.exe"),
|
|
2112
|
+
]
|
|
2113
|
+
: [
|
|
2114
|
+
process.env.LOCALAPPDATA && path.join(process.env.LOCALAPPDATA, "Google", "Chrome", "Application", "chrome.exe"),
|
|
2115
|
+
process.env.PROGRAMFILES && path.join(process.env.PROGRAMFILES, "Google", "Chrome", "Application", "chrome.exe"),
|
|
2116
|
+
process.env["PROGRAMFILES(X86)"] && path.join(process.env["PROGRAMFILES(X86)"], "Google", "Chrome", "Application", "chrome.exe"),
|
|
2117
|
+
]
|
|
2118
|
+
: browser === "helium"
|
|
2119
|
+
? [
|
|
2120
|
+
"/usr/bin/helium",
|
|
2121
|
+
"/usr/bin/helium-browser",
|
|
2122
|
+
"/opt/helium/chrome",
|
|
2123
|
+
path.join(os.homedir(), ".local", "helium", "chrome"),
|
|
2124
|
+
]
|
|
2125
|
+
: [
|
|
2126
|
+
"/usr/bin/google-chrome",
|
|
2127
|
+
"/usr/bin/google-chrome-stable",
|
|
2128
|
+
"/usr/bin/chromium",
|
|
2129
|
+
"/usr/bin/chromium-browser",
|
|
2130
|
+
"/snap/bin/chromium",
|
|
2131
|
+
];
|
|
2132
|
+
const pathNames = browser === "helium"
|
|
2133
|
+
? process.platform === "win32" ? ["helium.exe"] : ["helium", "helium-browser"]
|
|
2134
|
+
: process.platform === "win32" ? ["chrome.exe"] : ["google-chrome", "google-chrome-stable", "chromium", "chromium-browser"];
|
|
2135
|
+
const pathCandidates = (process.env.PATH ?? "")
|
|
2136
|
+
.split(path.delimiter)
|
|
2137
|
+
.filter(Boolean)
|
|
2138
|
+
.flatMap((directory) => pathNames.map((name) => path.join(directory, name)));
|
|
2139
|
+
return [...new Set([...platformCandidates.filter((candidate): candidate is string => Boolean(candidate)), ...pathCandidates])];
|
|
2140
|
+
}
|
|
2141
|
+
|
|
2142
|
+
async function managedBrowserExecutable(browser: "helium" | "chrome"): Promise<string> {
|
|
2143
|
+
const candidates = managedBrowserExecutableCandidates(browser);
|
|
2144
|
+
for (const candidate of candidates) {
|
|
2145
|
+
try {
|
|
2146
|
+
await access(candidate, fsConstants.X_OK);
|
|
2147
|
+
return candidate;
|
|
2148
|
+
} catch {
|
|
2149
|
+
// Try the next platform-appropriate installation location.
|
|
2150
|
+
}
|
|
2151
|
+
}
|
|
2152
|
+
const overrideName = browser === "helium" ? "PI_COMPUTER_USE_HELIUM_EXECUTABLE" : "PI_COMPUTER_USE_CHROME_EXECUTABLE";
|
|
2153
|
+
if (trimOrUndefined(process.env[overrideName])) {
|
|
2154
|
+
throw new Error(`${browser} executable from ${overrideName} was not found or is not executable: ${candidates[0]}.`);
|
|
2155
|
+
}
|
|
2156
|
+
throw new Error(`${browser} executable was not found. Set ${overrideName} to its absolute path.`);
|
|
2157
|
+
}
|
|
2158
|
+
|
|
2159
|
+
function freeTcpPort(): Promise<number> {
|
|
2160
|
+
return new Promise((resolve, reject) => {
|
|
2161
|
+
const server = net.createServer();
|
|
2162
|
+
server.on("error", reject);
|
|
2163
|
+
server.listen(0, "127.0.0.1", () => {
|
|
2164
|
+
const address = server.address();
|
|
2165
|
+
const port = typeof address === "object" && address ? address.port : 0;
|
|
2166
|
+
server.close(() => port > 0 ? resolve(port) : reject(new Error("Could not allocate a local CDP port.")));
|
|
2167
|
+
});
|
|
2168
|
+
});
|
|
2169
|
+
}
|
|
2170
|
+
|
|
2171
|
+
async function waitForCdpPort(port: number, signal?: AbortSignal): Promise<void> {
|
|
2172
|
+
const deadline = Date.now() + MANAGED_BROWSER_READY_TIMEOUT_MS;
|
|
2173
|
+
while (Date.now() < deadline) {
|
|
2174
|
+
if (signal?.aborted) throw new Error("Browser launch was aborted.");
|
|
2175
|
+
try {
|
|
2176
|
+
const response = await fetch(`http://127.0.0.1:${port}/json/version`, { signal: AbortSignal.timeout(500) });
|
|
2177
|
+
if (response.ok) return;
|
|
2178
|
+
} catch {
|
|
2179
|
+
// Browser is still starting.
|
|
2180
|
+
}
|
|
2181
|
+
await sleep(200, signal);
|
|
2182
|
+
}
|
|
2183
|
+
throw new Error(`Managed browser did not expose CDP on port ${port} within ${MANAGED_BROWSER_READY_TIMEOUT_MS}ms.`);
|
|
2184
|
+
}
|
|
2185
|
+
|
|
2186
|
+
// Side effects: starts a Pi-managed browser process, replaces any previous managed browser,
|
|
2187
|
+
// and sets PI_COMPUTER_USE_CDP_PORT for subsequent CDP context discovery.
|
|
2188
|
+
async function performLaunchBrowser(params: LaunchBrowserParams, signal?: AbortSignal): Promise<AgentToolResult<BrowserObservationDetails>> {
|
|
2189
|
+
const browser = getComputerUseConfig().managed_browser;
|
|
2190
|
+
const executable = await managedBrowserExecutable(browser);
|
|
2191
|
+
const port = await freeTcpPort();
|
|
2192
|
+
const requestedUrl = trimOrUndefined(params.url);
|
|
2193
|
+
if (requestedUrl && !/^https?:\/\//i.test(requestedUrl)) throw new Error("launch_browser.url must be an absolute HTTP(S) URL.");
|
|
2194
|
+
const url = requestedUrl ?? "about:blank";
|
|
2195
|
+
const profileDir = path.join(os.tmpdir(), `pi-${browser}-cdp-${port}`);
|
|
2196
|
+
disconnectCdp();
|
|
2197
|
+
runtimeState.managedBrowser?.kill("SIGTERM");
|
|
2198
|
+
const args = [
|
|
2199
|
+
`--remote-debugging-port=${port}`,
|
|
2200
|
+
`--user-data-dir=${profileDir}`,
|
|
2201
|
+
"--no-first-run",
|
|
2202
|
+
"--no-default-browser-check",
|
|
2203
|
+
url,
|
|
2204
|
+
];
|
|
2205
|
+
if (runtimeState.previousCdpPort === undefined && runtimeState.managedBrowserCdpPort === undefined) {
|
|
2206
|
+
runtimeState.previousCdpPort = process.env.PI_COMPUTER_USE_CDP_PORT;
|
|
2207
|
+
}
|
|
2208
|
+
const managedBrowser = spawn(executable, args, { stdio: "ignore", detached: false });
|
|
2209
|
+
managedBrowser.unref();
|
|
2210
|
+
runtimeState.managedBrowser = managedBrowser;
|
|
2211
|
+
runtimeState.managedBrowserCdpPort = String(port);
|
|
2212
|
+
process.env.PI_COMPUTER_USE_CDP_PORT = String(port);
|
|
2213
|
+
try {
|
|
2214
|
+
await waitForCdpPort(port, signal);
|
|
2215
|
+
} catch (error) {
|
|
2216
|
+
if (runtimeState.managedBrowser === managedBrowser) {
|
|
2217
|
+
runtimeState.managedBrowser = undefined;
|
|
2218
|
+
managedBrowser.kill("SIGTERM");
|
|
2219
|
+
if (runtimeState.previousCdpPort === undefined) delete process.env.PI_COMPUTER_USE_CDP_PORT;
|
|
2220
|
+
else process.env.PI_COMPUTER_USE_CDP_PORT = runtimeState.previousCdpPort;
|
|
2221
|
+
runtimeState.managedBrowserCdpPort = undefined;
|
|
2222
|
+
runtimeState.previousCdpPort = undefined;
|
|
2223
|
+
}
|
|
2224
|
+
throw error;
|
|
2225
|
+
}
|
|
2226
|
+
const page = (await listCdpPageContexts())[0];
|
|
2227
|
+
if (!page) throw new Error("Managed browser launched without a CDP page context.");
|
|
2228
|
+
const resourceKey = `cdp:${page.targetId}`;
|
|
2229
|
+
const scheduled = await resourceScheduler.read(resourceKey, async () => await cdpSnapshotForContext(page.contextId));
|
|
2230
|
+
if (!scheduled.value) throw new Error("Managed browser page could not be observed after launch.");
|
|
2231
|
+
return browserObservationResult(scheduled.value, resourceKey, scheduled.epoch, "launch_browser");
|
|
2232
|
+
}
|
|
2233
|
+
|
|
2234
|
+
async function performNavigateBrowser(params: NavigateBrowserParams): Promise<AgentToolResult<BrowserObservationDetails>> {
|
|
2235
|
+
const contextId = browserContextForOperation();
|
|
2236
|
+
const url = trimOrUndefined(params.url);
|
|
2237
|
+
if (!contextId) throw new Error("navigate_browser.stateId must belong to a CDP browser-page observation. Native browser windows use act_ui.");
|
|
2238
|
+
if (!url || !/^https?:\/\//i.test(url)) throw new Error("navigate_browser.url must be an absolute HTTP(S) URL.");
|
|
2239
|
+
const baseSnapshot = operationState().browserSnapshot;
|
|
2240
|
+
if (!baseSnapshot) throw new Error("Browser navigation requires a complete base observation.");
|
|
2241
|
+
return await withBrowserWrite(contextId, async () => {
|
|
2242
|
+
const ok = await cdpNavigateContext(contextId, url);
|
|
2243
|
+
if (!ok) throw new Error(`Browser context '${contextId}' is no longer available. Observe it again.`);
|
|
2244
|
+
return await refreshBrowserSnapshot(contextId, "navigate_browser", { stateId: baseSnapshot.snapshotId, outline: baseSnapshot.outline });
|
|
2245
|
+
});
|
|
2246
|
+
}
|
|
2247
|
+
|
|
2248
|
+
async function performEvaluateBrowser(params: EvaluateBrowserParams): Promise<AgentToolResult<EvaluateBrowserDetails>> {
|
|
2249
|
+
const contextId = browserContextForOperation();
|
|
2250
|
+
const expression = typeof params.expression === "string" ? params.expression : "";
|
|
2251
|
+
if (!contextId) throw new Error("evaluate_browser.stateId must belong to a browser observation.");
|
|
2252
|
+
if (!expression.trim()) throw new Error("evaluate_browser.expression must be non-empty JavaScript.");
|
|
2253
|
+
const baseSnapshot = operationState().browserSnapshot;
|
|
2254
|
+
if (!baseSnapshot) throw new Error("Browser evaluation requires a complete base observation.");
|
|
2255
|
+
return await withBrowserWrite(contextId, async () => {
|
|
2256
|
+
const result = await cdpEvaluateForContext(contextId, expression);
|
|
2257
|
+
if (!result) throw new Error(`Browser context '${contextId}' is no longer available. Observe it again.`);
|
|
2258
|
+
const successor = await refreshBrowserSnapshot(contextId, "evaluate_browser", { stateId: baseSnapshot.snapshotId, outline: baseSnapshot.outline });
|
|
2259
|
+
const details: EvaluateBrowserDetails = {
|
|
2260
|
+
tool: "evaluate_browser",
|
|
2261
|
+
baseStateId: baseSnapshot.snapshotId,
|
|
2262
|
+
stateId: successor.details.stateId,
|
|
2263
|
+
view: successor.details.view,
|
|
2264
|
+
changes: successor.details.changes,
|
|
2265
|
+
outline: successor.details.outline,
|
|
2266
|
+
renderedOutline: successor.details.renderedOutline,
|
|
2267
|
+
};
|
|
2268
|
+
return { content: [...successor.content, { type: "text", text: `Evaluation value: ${JSON.stringify(result.value)}` }], details };
|
|
2269
|
+
});
|
|
2270
|
+
}
|
|
2271
|
+
|
|
2272
|
+
async function executeTool<P, T>(ctx: ExtensionContext, params: P, signal: AbortSignal | undefined, run: () => Promise<T>): Promise<T> {
|
|
2273
|
+
const outputRef = trimOrUndefined((params as { ref?: string } | undefined)?.ref)?.startsWith("@o") === true;
|
|
2274
|
+
const requestedStateId = outputRef ? undefined : trimOrUndefined((params as { stateId?: string } | undefined)?.stateId);
|
|
2275
|
+
const stateRecord = requestedStateId ? savedStates.get(requestedStateId) : undefined;
|
|
2276
|
+
if (requestedStateId && !stateRecord) {
|
|
2277
|
+
throw new Error(`State '${requestedStateId}' is unavailable or was evicted. Observe the root again.`);
|
|
2278
|
+
}
|
|
2279
|
+
const operation = savedStates.hydrate(stateRecord);
|
|
2280
|
+
return await savedStates.operations.run(operation, async () => {
|
|
2281
|
+
await resourceScheduler.read("session-lifecycle", async () => await ensureReady(ctx, signal));
|
|
2282
|
+
throwIfAborted(signal);
|
|
2283
|
+
const result = await run();
|
|
2284
|
+
persistOperation(operation);
|
|
2285
|
+
return result;
|
|
2286
|
+
});
|
|
2287
|
+
}
|
|
2288
|
+
|
|
2289
|
+
function makeToolExecutor<P, D>(tool: string, perform: (params: P, signal?: AbortSignal) => Promise<AgentToolResult<D>>) {
|
|
2290
|
+
return async (
|
|
2291
|
+
_toolCallId: string,
|
|
2292
|
+
params: P,
|
|
2293
|
+
signal: AbortSignal | undefined,
|
|
2294
|
+
_onUpdate: AgentToolUpdateCallback<D> | undefined,
|
|
2295
|
+
ctx: ExtensionContext,
|
|
2296
|
+
): Promise<AgentToolResult<D>> => {
|
|
2297
|
+
try {
|
|
2298
|
+
return applyOutputEnvelope(tool, await executeTool(ctx, params, signal, () => perform(params, signal)));
|
|
2299
|
+
} catch (error) {
|
|
2300
|
+
throw boundToolError(tool, error);
|
|
2301
|
+
}
|
|
2302
|
+
};
|
|
2303
|
+
}
|
|
2304
|
+
|
|
2305
|
+
export const executeFind = makeToolExecutor("find_roots", performListWindows);
|
|
2306
|
+
export const executeReadText = makeToolExecutor("read_text", performReadText);
|
|
2307
|
+
export const executeWaitFor = makeToolExecutor("wait_for", performWaitFor);
|
|
2308
|
+
export const executeObserve = makeToolExecutor("observe_ui", performObserve);
|
|
2309
|
+
export const executeSearchUi = makeToolExecutor("search_ui", performSearchUi);
|
|
2310
|
+
export const executeExpandUi = makeToolExecutor("expand_ui", performExpandUi);
|
|
2311
|
+
export const executeInspectUi = makeToolExecutor("inspect_ui", performInspectUi);
|
|
2312
|
+
export const executeAct = makeToolExecutor<ActParams, ComputerUseDetails | TerminalDesktopActionDetails | BrowserObservationDetails>("act_ui", performAct);
|
|
2313
|
+
export const executeNavigateBrowser = makeToolExecutor("navigate_browser", performNavigateBrowser);
|
|
2314
|
+
export const executeEvaluateBrowser = makeToolExecutor("evaluate_browser", performEvaluateBrowser);
|
|
2315
|
+
export const executeLaunchBrowser = makeToolExecutor("launch_browser", performLaunchBrowser);
|
|
2316
|
+
|
|
2317
|
+
export function reconstructStateFromBranch(ctx: ExtensionContext): void {
|
|
2318
|
+
savedStates.clear();
|
|
2319
|
+
clearStoredOutputs();
|
|
2320
|
+
runtimeState.windowRefs.clear();
|
|
2321
|
+
runtimeState.windowRefByIdentity.clear();
|
|
2322
|
+
runtimeState.nextRootRefIndex = 1;
|
|
2323
|
+
|
|
2324
|
+
const restoredResources = new Set<string>();
|
|
2325
|
+
for (const entry of [...ctx.sessionManager.getBranch()].reverse()) {
|
|
2326
|
+
if ((entry as any)?.type !== "message") continue;
|
|
2327
|
+
const message = (entry as any).message;
|
|
2328
|
+
if (!message || message.role !== "toolResult") continue;
|
|
2329
|
+
if (!AGENT_TOOL_NAMES.has(message.toolName)) continue;
|
|
2330
|
+
|
|
2331
|
+
const rawDetails = message.details as any;
|
|
2332
|
+
if (rawDetails?.tool === "find_roots" && Array.isArray(rawDetails.windows)) {
|
|
2333
|
+
for (const window of rawDetails.windows) {
|
|
2334
|
+
if (typeof window?.windowRef !== "string" || !Number.isFinite(window?.pid)) continue;
|
|
2335
|
+
const record: WindowRefRecord = {
|
|
2336
|
+
ref: window.windowRef,
|
|
2337
|
+
appName: typeof window.app === "string" ? window.app : "Unknown App",
|
|
2338
|
+
bundleId: typeof window.bundleId === "string" ? window.bundleId : undefined,
|
|
2339
|
+
pid: Math.trunc(window.pid),
|
|
2340
|
+
windowTitle: typeof window.windowTitle === "string" ? window.windowTitle : "(untitled)",
|
|
2341
|
+
windowId: Number.isFinite(window.windowId) ? Math.trunc(window.windowId) : undefined,
|
|
2342
|
+
nativeWindowRef: typeof window.nativeWindowRef === "string" ? window.nativeWindowRef : undefined,
|
|
2343
|
+
framePoints: {
|
|
2344
|
+
x: toFiniteNumber(window.framePoints?.x, 0),
|
|
2345
|
+
y: toFiniteNumber(window.framePoints?.y, 0),
|
|
2346
|
+
w: Math.max(1, toFiniteNumber(window.framePoints?.w, 1)),
|
|
2347
|
+
h: Math.max(1, toFiniteNumber(window.framePoints?.h, 1)),
|
|
2348
|
+
},
|
|
2349
|
+
scaleFactor: Math.max(1, toFiniteNumber(window.scaleFactor, 1)),
|
|
2350
|
+
isMinimized: toBoolean(window.isMinimized),
|
|
2351
|
+
isOnscreen: toBoolean(window.isOnscreen),
|
|
2352
|
+
isMain: toBoolean(window.isMain),
|
|
2353
|
+
isFocused: toBoolean(window.isFocused),
|
|
2354
|
+
};
|
|
2355
|
+
runtimeState.windowRefs.set(record.ref, record);
|
|
2356
|
+
runtimeState.windowRefByIdentity.set(windowRecordIdentity(record), record.ref);
|
|
2357
|
+
const match = /^@r(\d+)$/.exec(record.ref);
|
|
2358
|
+
if (match) runtimeState.nextRootRefIndex = Math.max(runtimeState.nextRootRefIndex, Number(match[1]) + 1);
|
|
2359
|
+
}
|
|
2360
|
+
continue;
|
|
2361
|
+
}
|
|
2362
|
+
|
|
2363
|
+
const details = rawDetails as Partial<ComputerUseDetails> | undefined;
|
|
2364
|
+
if (!details?.target || !details?.capture) continue;
|
|
2365
|
+
|
|
2366
|
+
const app = typeof details.target.app === "string" ? details.target.app : undefined;
|
|
2367
|
+
|
|
2368
|
+
if (!app) continue;
|
|
2369
|
+
if (!Number.isFinite(details.target.pid) || !Number.isFinite(details.target.windowId)) continue;
|
|
2370
|
+
if (typeof details.capture.stateId !== "string") continue;
|
|
2371
|
+
|
|
2372
|
+
const target: CurrentTarget = {
|
|
2373
|
+
appName: app,
|
|
2374
|
+
bundleId: details.target.bundleId,
|
|
2375
|
+
pid: Math.trunc(details.target.pid),
|
|
2376
|
+
windowTitle: details.target.windowTitle ?? "(untitled)",
|
|
2377
|
+
windowId: Math.trunc(details.target.windowId),
|
|
2378
|
+
windowRef: typeof details.target.windowRef === "string" ? details.target.windowRef : undefined,
|
|
2379
|
+
nativeWindowRef: typeof (details.target as any).nativeWindowRef === "string" ? (details.target as any).nativeWindowRef : undefined,
|
|
2380
|
+
};
|
|
2381
|
+
|
|
2382
|
+
const resourceKey = desktopResourceKey(target);
|
|
2383
|
+
if (restoredResources.has(resourceKey)) continue;
|
|
2384
|
+
const capture: CurrentCapture = {
|
|
2385
|
+
stateId: details.capture.stateId,
|
|
2386
|
+
width: Math.max(1, Math.trunc(toFiniteNumber(details.capture.width, 1))),
|
|
2387
|
+
height: Math.max(1, Math.trunc(toFiniteNumber(details.capture.height, 1))),
|
|
2388
|
+
scaleFactor: Math.max(1, toFiniteNumber(details.capture.scaleFactor, 1)),
|
|
2389
|
+
timestamp: Number.isFinite(details.capture.timestamp) ? details.capture.timestamp : Date.now(),
|
|
2390
|
+
};
|
|
2391
|
+
if (details.outline?.root && typeof details.outline.lookId === "string") {
|
|
2392
|
+
const epoch = 0;
|
|
2393
|
+
resourceScheduler.restoreEpoch(resourceKey, epoch);
|
|
2394
|
+
savedStates.set({
|
|
2395
|
+
stateId: capture.stateId,
|
|
2396
|
+
resourceKey,
|
|
2397
|
+
epoch,
|
|
2398
|
+
value: {
|
|
2399
|
+
kind: "desktop",
|
|
2400
|
+
target,
|
|
2401
|
+
capture,
|
|
2402
|
+
outline: details.outline,
|
|
2403
|
+
look: {
|
|
2404
|
+
lookId: details.outline.lookId,
|
|
2405
|
+
capturedAt: details.capture.timestamp / 1000,
|
|
2406
|
+
window: {
|
|
2407
|
+
windowId: Math.trunc(details.target.windowId),
|
|
2408
|
+
framePoints: { x: 0, y: 0, w: details.capture.width, h: details.capture.height },
|
|
2409
|
+
scaleFactor: details.capture.scaleFactor,
|
|
2410
|
+
isModal: false,
|
|
2411
|
+
role: "",
|
|
2412
|
+
subrole: "",
|
|
2413
|
+
},
|
|
2414
|
+
image: { jpegBase64: "", width: details.capture.width, height: details.capture.height },
|
|
2415
|
+
timings: {},
|
|
2416
|
+
},
|
|
2417
|
+
note: details.note,
|
|
2418
|
+
},
|
|
2419
|
+
});
|
|
2420
|
+
restoredResources.add(resourceKey);
|
|
2421
|
+
}
|
|
2422
|
+
}
|
|
2423
|
+
}
|