@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,788 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
import { createHash, randomBytes, timingSafeEqual } from "node:crypto";
|
|
4
|
+
import { constants } from "node:fs";
|
|
5
|
+
import { lstat, opendir, open, realpath, stat } from "node:fs/promises";
|
|
6
|
+
import { createServer } from "node:http";
|
|
7
|
+
import { homedir } from "node:os";
|
|
8
|
+
import { basename, dirname, isAbsolute, relative, resolve, sep } from "node:path";
|
|
9
|
+
import { pathToFileURL } from "node:url";
|
|
10
|
+
|
|
11
|
+
const TRACE_SCHEMA = "pi-agent-local-trace/v1";
|
|
12
|
+
const MAX_SCAN_ENTRIES = 50_000;
|
|
13
|
+
const MAX_TRACE_FILES = 500;
|
|
14
|
+
const MAX_TRACE_BYTES = 8 * 1024 * 1024;
|
|
15
|
+
const MAX_SUMMARY_TRACE_BYTES = 512 * 1024;
|
|
16
|
+
const MAX_TOTAL_SUMMARY_BYTES = 64 * 1024 * 1024;
|
|
17
|
+
const MAX_TRACE_RECORDS = 5_000;
|
|
18
|
+
const MAX_API_RECORDS = 2_000;
|
|
19
|
+
const MAX_JSON_LINE_BYTES = 64 * 1024;
|
|
20
|
+
const MAX_API_CONCURRENCY = 4;
|
|
21
|
+
const MAX_SUMMARY_SNAPSHOTS = 8;
|
|
22
|
+
const SUMMARY_CACHE_TTL_MS = 2_000;
|
|
23
|
+
const SHUTDOWN_TIMEOUT_MS = 1_000;
|
|
24
|
+
|
|
25
|
+
function jsonResponse(response, status, value) {
|
|
26
|
+
const body = `${JSON.stringify(value)}\n`;
|
|
27
|
+
response.writeHead(status, {
|
|
28
|
+
"content-type": "application/json; charset=utf-8",
|
|
29
|
+
"content-length": Buffer.byteLength(body),
|
|
30
|
+
"cache-control": "no-store",
|
|
31
|
+
"x-content-type-options": "nosniff",
|
|
32
|
+
"referrer-policy": "no-referrer",
|
|
33
|
+
});
|
|
34
|
+
response.end(body);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
function textResponse(response, status, body, headers = {}) {
|
|
38
|
+
response.writeHead(status, {
|
|
39
|
+
"content-type": "text/plain; charset=utf-8",
|
|
40
|
+
"content-length": Buffer.byteLength(body),
|
|
41
|
+
"cache-control": "no-store",
|
|
42
|
+
"x-content-type-options": "nosniff",
|
|
43
|
+
"referrer-policy": "no-referrer",
|
|
44
|
+
...headers,
|
|
45
|
+
});
|
|
46
|
+
response.end(body);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
function safeAttributeValue(value) {
|
|
50
|
+
if (typeof value === "number" && Number.isFinite(value)) return value;
|
|
51
|
+
if (typeof value === "boolean") return value;
|
|
52
|
+
if (typeof value === "string") return value.slice(0, 512);
|
|
53
|
+
if (Array.isArray(value) && value.length <= 100) {
|
|
54
|
+
const items = value.map(safeAttributeValue);
|
|
55
|
+
if (items.every((item) => item !== undefined && !Array.isArray(item))) return items;
|
|
56
|
+
}
|
|
57
|
+
return undefined;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
function sanitizeTraceRecord(value) {
|
|
61
|
+
if (!value || typeof value !== "object" || Array.isArray(value) || value.schema !== TRACE_SCHEMA) return undefined;
|
|
62
|
+
if (value.kind !== "span_start" && value.kind !== "span_end") return undefined;
|
|
63
|
+
if (typeof value.traceId !== "string" || !/^[0-9a-f]{32}$/u.test(value.traceId)) return undefined;
|
|
64
|
+
if (typeof value.spanId !== "string" || !/^[0-9a-f]{16}$/u.test(value.spanId)) return undefined;
|
|
65
|
+
if (typeof value.name !== "string" || value.name.length < 1 || value.name.length > 128) return undefined;
|
|
66
|
+
const timestamp = typeof value.timestamp === "string" && Number.isFinite(Date.parse(value.timestamp))
|
|
67
|
+
? value.timestamp
|
|
68
|
+
: undefined;
|
|
69
|
+
if (!timestamp) return undefined;
|
|
70
|
+
const attributes = {};
|
|
71
|
+
if (value.attributes && typeof value.attributes === "object" && !Array.isArray(value.attributes)) {
|
|
72
|
+
for (const [key, item] of Object.entries(value.attributes).slice(0, 100)) {
|
|
73
|
+
if (key.length < 1 || key.length > 128) continue;
|
|
74
|
+
const sanitized = safeAttributeValue(item);
|
|
75
|
+
if (sanitized !== undefined) attributes[key] = sanitized;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
return {
|
|
79
|
+
schema: TRACE_SCHEMA,
|
|
80
|
+
kind: value.kind,
|
|
81
|
+
timestamp,
|
|
82
|
+
traceId: value.traceId,
|
|
83
|
+
spanId: value.spanId,
|
|
84
|
+
...(typeof value.parentSpanId === "string" && /^[0-9a-f]{16}$/u.test(value.parentSpanId) ? { parentSpanId: value.parentSpanId } : {}),
|
|
85
|
+
name: value.name,
|
|
86
|
+
...(value.kind === "span_end" && ["ok", "error", "aborted", "unknown"].includes(value.status) ? { status: value.status } : {}),
|
|
87
|
+
...(value.kind === "span_end" && typeof value.durationMs === "number" && Number.isFinite(value.durationMs) && value.durationMs >= 0 ? { durationMs: value.durationMs } : {}),
|
|
88
|
+
...(Object.keys(attributes).length ? { attributes } : {}),
|
|
89
|
+
};
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
function containedBy(root, candidate) {
|
|
93
|
+
const fromRoot = relative(root, candidate);
|
|
94
|
+
return fromRoot === "" || (!isAbsolute(fromRoot) && fromRoot !== ".." && !fromRoot.startsWith(`..${sep}`));
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
async function canonicalTraceRoot(root) {
|
|
98
|
+
const absolute = resolve(root);
|
|
99
|
+
let metadata;
|
|
100
|
+
try { metadata = await lstat(absolute); }
|
|
101
|
+
catch (error) {
|
|
102
|
+
if (error?.code === "ENOENT") return { root: absolute, missing: true };
|
|
103
|
+
throw error;
|
|
104
|
+
}
|
|
105
|
+
if (metadata.isSymbolicLink() || !metadata.isDirectory()) throw new Error("trace root must be a real directory");
|
|
106
|
+
return { root: await realpath(absolute), missing: false };
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
async function collectTracePaths(root) {
|
|
110
|
+
const paths = [];
|
|
111
|
+
const stack = [root];
|
|
112
|
+
const visitedDirectories = new Set();
|
|
113
|
+
let visited = 0;
|
|
114
|
+
while (stack.length && paths.length < MAX_TRACE_FILES && visited < MAX_SCAN_ENTRIES) {
|
|
115
|
+
const directory = stack.pop();
|
|
116
|
+
if (visitedDirectories.has(directory)) continue;
|
|
117
|
+
visitedDirectories.add(directory);
|
|
118
|
+
let handle;
|
|
119
|
+
try { handle = await opendir(directory); }
|
|
120
|
+
catch { continue; }
|
|
121
|
+
for await (const entry of handle) {
|
|
122
|
+
visited += 1;
|
|
123
|
+
if (visited > MAX_SCAN_ENTRIES) break;
|
|
124
|
+
const lexicalPath = resolve(directory, entry.name);
|
|
125
|
+
let metadata;
|
|
126
|
+
try { metadata = await lstat(lexicalPath); }
|
|
127
|
+
catch { continue; }
|
|
128
|
+
if (metadata.isSymbolicLink()) continue;
|
|
129
|
+
let canonicalPath;
|
|
130
|
+
try { canonicalPath = await realpath(lexicalPath); }
|
|
131
|
+
catch { continue; }
|
|
132
|
+
if (!containedBy(root, canonicalPath)) continue;
|
|
133
|
+
if (metadata.isDirectory()) stack.push(canonicalPath);
|
|
134
|
+
else if (metadata.isFile() && entry.name.endsWith(".trace.jsonl") && basename(dirname(canonicalPath)) === "observability") paths.push(canonicalPath);
|
|
135
|
+
if (paths.length >= MAX_TRACE_FILES) break;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
return { paths, scanLimited: stack.length > 0 || visited >= MAX_SCAN_ENTRIES || paths.length >= MAX_TRACE_FILES };
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
async function assertNoSymlinkComponents(root, path) {
|
|
142
|
+
const fromRoot = relative(root, path);
|
|
143
|
+
if (!containedBy(root, path) || !fromRoot) throw new Error("trace path is outside the trace root");
|
|
144
|
+
let current = root;
|
|
145
|
+
for (const component of fromRoot.split(sep)) {
|
|
146
|
+
current = resolve(current, component);
|
|
147
|
+
const metadata = await lstat(current);
|
|
148
|
+
if (metadata.isSymbolicLink()) throw new Error("trace path contains a symlink");
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
async function readExactly(handle, length, position) {
|
|
153
|
+
const buffer = Buffer.alloc(length);
|
|
154
|
+
let offset = 0;
|
|
155
|
+
while (offset < length) {
|
|
156
|
+
const { bytesRead } = await handle.read(buffer, offset, length - offset, position + offset);
|
|
157
|
+
if (bytesRead === 0) break;
|
|
158
|
+
offset += bytesRead;
|
|
159
|
+
}
|
|
160
|
+
return buffer.subarray(0, offset);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
export async function readTraceTail(root, path, maximumBytes = MAX_TRACE_BYTES, maximumRecords = MAX_TRACE_RECORDS, maximumFileSize, endingOffset) {
|
|
164
|
+
await assertNoSymlinkComponents(root, path);
|
|
165
|
+
const canonicalPath = await realpath(path);
|
|
166
|
+
if (!containedBy(root, canonicalPath)) throw new Error("trace path escaped the trace root");
|
|
167
|
+
const expected = await stat(canonicalPath);
|
|
168
|
+
if (!expected.isFile()) throw new Error("trace is not a regular file");
|
|
169
|
+
const flags = constants.O_RDONLY | (constants.O_NOFOLLOW ?? 0);
|
|
170
|
+
const handle = await open(path, flags);
|
|
171
|
+
let metadata;
|
|
172
|
+
let buffer;
|
|
173
|
+
let requestedBytes;
|
|
174
|
+
let bytesRead;
|
|
175
|
+
let offset;
|
|
176
|
+
let pageEndOffset;
|
|
177
|
+
let visibleSize;
|
|
178
|
+
let startsAtRecordBoundary = true;
|
|
179
|
+
try {
|
|
180
|
+
metadata = await handle.stat();
|
|
181
|
+
if (!metadata.isFile() || metadata.dev !== expected.dev || metadata.ino !== expected.ino) throw new Error("trace changed during safe open");
|
|
182
|
+
visibleSize = Number.isSafeInteger(maximumFileSize) && maximumFileSize >= 0
|
|
183
|
+
? Math.min(metadata.size, maximumFileSize)
|
|
184
|
+
: metadata.size;
|
|
185
|
+
pageEndOffset = endingOffset === undefined ? visibleSize : endingOffset;
|
|
186
|
+
if (!Number.isSafeInteger(pageEndOffset) || pageEndOffset < 0 || pageEndOffset > visibleSize) throw new Error("trace page cursor is outside the snapshot");
|
|
187
|
+
requestedBytes = Math.min(pageEndOffset, maximumBytes);
|
|
188
|
+
offset = Math.max(0, pageEndOffset - requestedBytes);
|
|
189
|
+
buffer = await readExactly(handle, requestedBytes, offset);
|
|
190
|
+
bytesRead = buffer.byteLength;
|
|
191
|
+
if (offset > 0) {
|
|
192
|
+
const previous = await readExactly(handle, 1, offset - 1);
|
|
193
|
+
startsAtRecordBoundary = previous[0] === 0x0a;
|
|
194
|
+
}
|
|
195
|
+
} finally { await handle.close(); }
|
|
196
|
+
let contentOffset = offset;
|
|
197
|
+
if (offset > 0 && !startsAtRecordBoundary) {
|
|
198
|
+
const newline = buffer.indexOf(0x0a);
|
|
199
|
+
if (newline >= 0) {
|
|
200
|
+
contentOffset += newline + 1;
|
|
201
|
+
buffer = buffer.subarray(newline + 1);
|
|
202
|
+
} else {
|
|
203
|
+
contentOffset = pageEndOffset;
|
|
204
|
+
buffer = Buffer.alloc(0);
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
const allLines = [];
|
|
208
|
+
let lineStart = 0;
|
|
209
|
+
for (let index = 0; index <= buffer.length; index += 1) {
|
|
210
|
+
if (index !== buffer.length && buffer[index] !== 0x0a) continue;
|
|
211
|
+
if (index > lineStart) allLines.push({ startOffset: contentOffset + lineStart, bytes: buffer.subarray(lineStart, index) });
|
|
212
|
+
lineStart = index + 1;
|
|
213
|
+
}
|
|
214
|
+
const recordsLimited = allLines.length > maximumRecords;
|
|
215
|
+
const lines = allLines.slice(-maximumRecords);
|
|
216
|
+
const startOffset = lines[0]?.startOffset ?? offset;
|
|
217
|
+
const records = [];
|
|
218
|
+
let parseErrors = 0;
|
|
219
|
+
for (const line of lines) {
|
|
220
|
+
if (line.bytes.byteLength > MAX_JSON_LINE_BYTES) { parseErrors += 1; continue; }
|
|
221
|
+
try {
|
|
222
|
+
const record = sanitizeTraceRecord(JSON.parse(line.bytes.toString("utf8")));
|
|
223
|
+
if (record) records.push(record);
|
|
224
|
+
else parseErrors += 1;
|
|
225
|
+
} catch { parseErrors += 1; }
|
|
226
|
+
}
|
|
227
|
+
return {
|
|
228
|
+
records,
|
|
229
|
+
parseErrors,
|
|
230
|
+
partial: startOffset > 0 || recordsLimited || bytesRead < requestedBytes,
|
|
231
|
+
sizeBytes: visibleSize,
|
|
232
|
+
modifiedAt: metadata.mtime.toISOString(),
|
|
233
|
+
bytesRead,
|
|
234
|
+
startOffset,
|
|
235
|
+
endOffset: pageEndOffset,
|
|
236
|
+
};
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
function traceIdForPath(root, path) {
|
|
240
|
+
return createHash("sha256").update(relative(root, path)).digest("hex").slice(0, 24);
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
function encodeTraceCursor(offset) {
|
|
244
|
+
return Buffer.from(String(offset), "utf8").toString("base64url");
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
function decodeTraceCursor(value, maximum) {
|
|
248
|
+
if (typeof value !== "string" || !/^[A-Za-z0-9_-]{1,32}$/u.test(value)) return undefined;
|
|
249
|
+
let decoded;
|
|
250
|
+
try { decoded = Buffer.from(value, "base64url").toString("utf8"); }
|
|
251
|
+
catch { return undefined; }
|
|
252
|
+
if (!/^(?:0|[1-9][0-9]*)$/u.test(decoded)) return undefined;
|
|
253
|
+
const offset = Number(decoded);
|
|
254
|
+
return Number.isSafeInteger(offset) && offset > 0 && offset <= maximum ? offset : undefined;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
function tracePageMetadata(loaded, snapshotSize) {
|
|
258
|
+
const hasEarlier = loaded.startOffset > 0;
|
|
259
|
+
const hasNewer = loaded.endOffset < snapshotSize;
|
|
260
|
+
return {
|
|
261
|
+
startOffset: loaded.startOffset,
|
|
262
|
+
endOffset: loaded.endOffset,
|
|
263
|
+
hasEarlier,
|
|
264
|
+
hasNewer,
|
|
265
|
+
lifecycleComplete: !hasEarlier && !hasNewer,
|
|
266
|
+
...(hasEarlier ? { nextCursor: encodeTraceCursor(loaded.startOffset) } : {}),
|
|
267
|
+
};
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
function sessionPathForTrace(path) {
|
|
271
|
+
return resolve(dirname(dirname(path)), basename(path).replace(/\.trace\.jsonl$/u, ".jsonl"));
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
async function traceHasSessionFile(root, path) {
|
|
275
|
+
const sessionPath = sessionPathForTrace(path);
|
|
276
|
+
if (!containedBy(root, sessionPath)) return false;
|
|
277
|
+
try {
|
|
278
|
+
const metadata = await lstat(sessionPath);
|
|
279
|
+
return metadata.isFile() && !metadata.isSymbolicLink();
|
|
280
|
+
} catch { return false; }
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
function outcomeChains(candidates, spanById) {
|
|
284
|
+
const candidateIds = new Set(candidates.map((record) => record.spanId));
|
|
285
|
+
const propagatedSpanIds = new Set();
|
|
286
|
+
const incidentIds = new Set();
|
|
287
|
+
for (const candidate of candidates) {
|
|
288
|
+
let incidentId = candidate.spanId;
|
|
289
|
+
let parentSpanId = candidate.parentSpanId;
|
|
290
|
+
let guard = 0;
|
|
291
|
+
while (parentSpanId && guard < 64) {
|
|
292
|
+
if (candidateIds.has(parentSpanId)) {
|
|
293
|
+
propagatedSpanIds.add(parentSpanId);
|
|
294
|
+
incidentId = parentSpanId;
|
|
295
|
+
}
|
|
296
|
+
parentSpanId = spanById.get(parentSpanId)?.parentSpanId;
|
|
297
|
+
guard += 1;
|
|
298
|
+
}
|
|
299
|
+
incidentIds.add(incidentId);
|
|
300
|
+
}
|
|
301
|
+
return {
|
|
302
|
+
propagatedSpanIds,
|
|
303
|
+
rootSpans: candidates.filter((record) => !propagatedSpanIds.has(record.spanId)),
|
|
304
|
+
incidentCount: incidentIds.size,
|
|
305
|
+
propagatedIncidentCount: [...incidentIds].filter((spanId) => propagatedSpanIds.has(spanId)).length,
|
|
306
|
+
};
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
export const STALE_OPEN_SPAN_MS = 5 * 60 * 1000;
|
|
310
|
+
|
|
311
|
+
export function formatDashboardMoney(input) {
|
|
312
|
+
const value = Number.isFinite(Number(input)) ? Number(input) : 0;
|
|
313
|
+
const digits = value !== 0 && Math.abs(value) < 1 ? 4 : 2;
|
|
314
|
+
return `$${new Intl.NumberFormat("en-US", { minimumFractionDigits: digits, maximumFractionDigits: digits }).format(value)}`;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
export function formatDashboardCompact(input) {
|
|
318
|
+
const value = Number.isFinite(Number(input)) ? Number(input) : 0;
|
|
319
|
+
const absolute = Math.abs(value);
|
|
320
|
+
const format = (scaled) => new Intl.NumberFormat("zh-CN", { maximumFractionDigits: 1 }).format(scaled);
|
|
321
|
+
if (absolute >= 999_500_000_000) return `${format(value / 1_000_000_000_000)}T`;
|
|
322
|
+
if (absolute >= 999_500_000) return `${format(value / 1_000_000_000)}B`;
|
|
323
|
+
if (absolute >= 999_500) return `${format(value / 1_000_000)}M`;
|
|
324
|
+
if (absolute >= 999.5) return `${format(value / 1_000)}K`;
|
|
325
|
+
return new Intl.NumberFormat("zh-CN", { maximumFractionDigits: 0 }).format(value);
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
export function formatDashboardDuration(input) {
|
|
329
|
+
const value = Math.max(0, Number.isFinite(Number(input)) ? Number(input) : 0);
|
|
330
|
+
const format = (number) => new Intl.NumberFormat("zh-CN", { maximumFractionDigits: 0 }).format(number);
|
|
331
|
+
if (value < 1_000) return `${format(value)} ms`;
|
|
332
|
+
const seconds = Math.round(value / 1_000);
|
|
333
|
+
if (seconds < 60) return `${format(seconds)} s`;
|
|
334
|
+
const days = Math.floor(seconds / 86_400);
|
|
335
|
+
const hours = Math.floor((seconds % 86_400) / 3_600);
|
|
336
|
+
const minutes = Math.floor((seconds % 3_600) / 60);
|
|
337
|
+
const remainder = seconds % 60;
|
|
338
|
+
const parts = [];
|
|
339
|
+
if (days) parts.push(`${days}d`);
|
|
340
|
+
if (hours) parts.push(`${hours}h`);
|
|
341
|
+
if (minutes) parts.push(`${minutes}m`);
|
|
342
|
+
if (remainder && !days) parts.push(`${remainder}s`);
|
|
343
|
+
return parts.slice(0, 2).join(" ");
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
export function summarizeTrace(root, path, loaded, now = Date.now()) {
|
|
347
|
+
const starts = loaded.records.filter((record) => record.kind === "span_start");
|
|
348
|
+
const ends = loaded.records.filter((record) => record.kind === "span_end");
|
|
349
|
+
const spanById = new Map();
|
|
350
|
+
for (const record of loaded.records) spanById.set(record.spanId, { ...spanById.get(record.spanId), ...record });
|
|
351
|
+
const latestActivityBySpanId = new Map();
|
|
352
|
+
for (const record of loaded.records) {
|
|
353
|
+
const activityAt = Date.parse(record.timestamp);
|
|
354
|
+
if (!Number.isFinite(activityAt)) continue;
|
|
355
|
+
let spanId = record.spanId;
|
|
356
|
+
let guard = 0;
|
|
357
|
+
while (spanId && guard < 64) {
|
|
358
|
+
latestActivityBySpanId.set(spanId, Math.max(latestActivityBySpanId.get(spanId) ?? -Infinity, activityAt));
|
|
359
|
+
spanId = spanById.get(spanId)?.parentSpanId;
|
|
360
|
+
guard += 1;
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
const endedSpanIds = new Set(ends.map((record) => record.spanId));
|
|
364
|
+
const openSpans = starts.filter((record) => !endedSpanIds.has(record.spanId));
|
|
365
|
+
const runtimeOpenSpans = openSpans.filter((record) => record.name === "pi.session.runtime");
|
|
366
|
+
const activeOpenSpans = openSpans.filter((record) => record.name !== "pi.session.runtime");
|
|
367
|
+
const staleCandidates = activeOpenSpans.filter((record) => {
|
|
368
|
+
const latestActivityAt = latestActivityBySpanId.get(record.spanId) ?? Date.parse(record.timestamp);
|
|
369
|
+
return Number.isFinite(latestActivityAt) && now - latestActivityAt >= STALE_OPEN_SPAN_MS;
|
|
370
|
+
});
|
|
371
|
+
const staleOutcome = outcomeChains(staleCandidates, spanById);
|
|
372
|
+
const propagatedStaleSpanIds = staleOutcome.propagatedSpanIds;
|
|
373
|
+
const staleOpenSpans = staleOutcome.rootSpans;
|
|
374
|
+
const providers = ends.filter((record) => record.name === "pi.ai.request");
|
|
375
|
+
const operations = ends.filter((record) => record.name === "pi.agent.operation");
|
|
376
|
+
const openOperationCount = activeOpenSpans.filter((record) => record.name === "pi.agent.operation").length;
|
|
377
|
+
const tools = ends.filter((record) => record.name === "pi.tool.execute");
|
|
378
|
+
const compactions = ends.filter((record) => record.name === "pi.session.compaction");
|
|
379
|
+
const startupSpans = ends.filter((record) => record.name === "pi.ai.startup");
|
|
380
|
+
const prefillSpans = ends.filter((record) => record.name === "pi.ai.prefill");
|
|
381
|
+
const reasoningSpans = ends.filter((record) => record.name === "pi.ai.reasoning");
|
|
382
|
+
const generationSpans = ends.filter((record) => record.name === "pi.ai.generation");
|
|
383
|
+
const errorSpans = ends.filter((record) => record.status === "error");
|
|
384
|
+
const errorOutcome = outcomeChains(errorSpans, spanById);
|
|
385
|
+
const propagatedErrorSpanIds = errorOutcome.propagatedSpanIds;
|
|
386
|
+
const rootErrorSpans = errorOutcome.rootSpans;
|
|
387
|
+
const latestProviderSuccessAt = Math.max(-Infinity, ...providers
|
|
388
|
+
.filter((record) => record.status === "ok")
|
|
389
|
+
.map((record) => Date.parse(record.timestamp))
|
|
390
|
+
.filter(Number.isFinite));
|
|
391
|
+
const recoveredErrorSpans = rootErrorSpans.filter((record) => latestProviderSuccessAt > Date.parse(record.timestamp));
|
|
392
|
+
const unresolvedErrorCount = rootErrorSpans.length - recoveredErrorSpans.length;
|
|
393
|
+
const abortedSpans = ends.filter((record) => record.status === "aborted");
|
|
394
|
+
const abortedOutcome = outcomeChains(abortedSpans, spanById);
|
|
395
|
+
const abortedCount = abortedOutcome.incidentCount;
|
|
396
|
+
const unknownCount = ends.filter((record) => record.status === "unknown").length;
|
|
397
|
+
const timestamps = loaded.records.map((record) => Date.parse(record.timestamp)).filter(Number.isFinite);
|
|
398
|
+
const observedWindowDurationMs = timestamps.length > 1 ? Math.max(...timestamps) - Math.min(...timestamps) : 0;
|
|
399
|
+
const operationDurationMs = operations.length > 0 ? operations.reduce((sum, record) => sum + (record.durationMs ?? 0), 0) : null;
|
|
400
|
+
const wallTimeMode = openOperationCount > 0 || operations.length === 0 ? (observedWindowDurationMs > 0 ? "observed-window" : "unavailable") : "operation-sum";
|
|
401
|
+
const wallTimeMs = wallTimeMode === "observed-window" ? observedWindowDurationMs : wallTimeMode === "operation-sum" ? operationDurationMs : null;
|
|
402
|
+
const numberAttribute = (record, name) => typeof record.attributes?.[name] === "number" ? record.attributes[name] : 0;
|
|
403
|
+
const optionalNumberAttribute = (record, name) => typeof record?.attributes?.[name] === "number" ? record.attributes[name] : null;
|
|
404
|
+
const usageTotal = (name) => providers.reduce((sum, record) => sum + numberAttribute(record, name), 0);
|
|
405
|
+
const durationTotal = (records) => records.reduce((sum, record) => sum + (record.durationMs ?? 0), 0);
|
|
406
|
+
const optionalDurationTotal = (records) => records.length > 0 ? durationTotal(records) : null;
|
|
407
|
+
const inputTokens = usageTotal("pi.usage.input_tokens");
|
|
408
|
+
const outputTokens = usageTotal("pi.usage.output_tokens");
|
|
409
|
+
const reasoningTokens = providers.some((record) => optionalNumberAttribute(record, "pi.usage.reasoning_tokens") !== null)
|
|
410
|
+
? usageTotal("pi.usage.reasoning_tokens")
|
|
411
|
+
: null;
|
|
412
|
+
const startupDurationMs = optionalDurationTotal(startupSpans);
|
|
413
|
+
const prefillDurationMs = optionalDurationTotal(prefillSpans);
|
|
414
|
+
const reasoningDurationMs = optionalDurationTotal(reasoningSpans);
|
|
415
|
+
const generationDurationMs = optionalDurationTotal(generationSpans);
|
|
416
|
+
const firstContentProviders = providers.filter((record) => optionalNumberAttribute(record, "pi.ai.stream.time_to_first_content_ms") !== null);
|
|
417
|
+
const firstContentDurationMs = firstContentProviders.length > 0
|
|
418
|
+
? firstContentProviders.reduce((sum, record) => sum + numberAttribute(record, "pi.ai.stream.time_to_first_content_ms"), 0)
|
|
419
|
+
: null;
|
|
420
|
+
const generatedDurationMs = (reasoningDurationMs ?? 0) + (generationDurationMs ?? 0);
|
|
421
|
+
const latestContextProvider = [...providers].reverse().find((record) => optionalNumberAttribute(record, "pi.context.window_tokens") !== null);
|
|
422
|
+
const contextTokens = optionalNumberAttribute(latestContextProvider, "pi.context.tokens");
|
|
423
|
+
const contextWindowTokens = optionalNumberAttribute(latestContextProvider, "pi.context.window_tokens");
|
|
424
|
+
const contextPercent = optionalNumberAttribute(latestContextProvider, "pi.context.percent");
|
|
425
|
+
return {
|
|
426
|
+
id: traceIdForPath(root, path),
|
|
427
|
+
path: relative(root, path),
|
|
428
|
+
modifiedAt: loaded.modifiedAt,
|
|
429
|
+
sizeBytes: loaded.sizeBytes,
|
|
430
|
+
partial: loaded.partial,
|
|
431
|
+
orphan: loaded.orphan === true,
|
|
432
|
+
parseErrors: loaded.parseErrors,
|
|
433
|
+
recordsLoaded: loaded.records.length,
|
|
434
|
+
windowBytes: loaded.bytesRead,
|
|
435
|
+
spanCount: new Set([...starts, ...ends].map((record) => record.spanId)).size,
|
|
436
|
+
errorCount: errorSpans.length,
|
|
437
|
+
rootErrorCount: rootErrorSpans.length,
|
|
438
|
+
recoveredErrorCount: recoveredErrorSpans.length,
|
|
439
|
+
unresolvedErrorCount,
|
|
440
|
+
propagatedErrorCount: errorOutcome.propagatedIncidentCount,
|
|
441
|
+
propagatedErrorSpanCount: propagatedErrorSpanIds.size,
|
|
442
|
+
abortedCount,
|
|
443
|
+
abortedSpanCount: abortedSpans.length,
|
|
444
|
+
propagatedAbortedSpanCount: abortedOutcome.propagatedSpanIds.size,
|
|
445
|
+
unknownCount,
|
|
446
|
+
openCount: activeOpenSpans.length,
|
|
447
|
+
runtimeOpenCount: runtimeOpenSpans.length,
|
|
448
|
+
staleOpenCount: staleOpenSpans.length,
|
|
449
|
+
propagatedStaleOpenCount: propagatedStaleSpanIds.size,
|
|
450
|
+
anomalyCount: unresolvedErrorCount + unknownCount + staleOpenSpans.length,
|
|
451
|
+
providerCount: providers.length,
|
|
452
|
+
toolCount: tools.length,
|
|
453
|
+
toolDurationMs: durationTotal(tools),
|
|
454
|
+
toolResultEstimatedTokens: tools.some((record) => optionalNumberAttribute(record, "pi.tool.result_estimated_tokens") !== null)
|
|
455
|
+
? tools.reduce((sum, record) => sum + numberAttribute(record, "pi.tool.result_estimated_tokens"), 0)
|
|
456
|
+
: null,
|
|
457
|
+
operationCount: operations.length,
|
|
458
|
+
averageOperationDurationMs: operations.length > 0 ? operationDurationMs / operations.length : null,
|
|
459
|
+
compactionCount: compactions.length,
|
|
460
|
+
compactionDurationMs: durationTotal(compactions),
|
|
461
|
+
openOperationCount,
|
|
462
|
+
observedWindowDurationMs,
|
|
463
|
+
wallTimeMode,
|
|
464
|
+
wallTimeMs,
|
|
465
|
+
inputTokens,
|
|
466
|
+
outputTokens,
|
|
467
|
+
reasoningTokens,
|
|
468
|
+
cacheReadTokens: usageTotal("pi.usage.cache_read_tokens"),
|
|
469
|
+
cacheWriteTokens: usageTotal("pi.usage.cache_write_tokens"),
|
|
470
|
+
totalTokens: usageTotal("pi.usage.total_tokens"),
|
|
471
|
+
estimatedCostUsd: usageTotal("pi.usage.cost"),
|
|
472
|
+
contextTokens,
|
|
473
|
+
contextWindowTokens,
|
|
474
|
+
contextPercent,
|
|
475
|
+
startupDurationMs,
|
|
476
|
+
prefillDurationMs,
|
|
477
|
+
reasoningDurationMs,
|
|
478
|
+
generationDurationMs,
|
|
479
|
+
firstContentDurationMs,
|
|
480
|
+
promptTokensPerSecond: firstContentDurationMs !== null && firstContentDurationMs > 0 ? inputTokens * 1_000 / firstContentDurationMs : null,
|
|
481
|
+
generationTokensPerSecond: generatedDurationMs > 0 ? outputTokens * 1_000 / generatedDurationMs : null,
|
|
482
|
+
operationDurationMs,
|
|
483
|
+
};
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
export function summarizeFleet(traces, scanLimited = false) {
|
|
487
|
+
const list = Array.isArray(traces) ? traces : [];
|
|
488
|
+
const sessionTraces = list.filter((trace) => trace?.orphan !== true);
|
|
489
|
+
const total = (name) => sessionTraces.reduce((sum, trace) => sum + (Number(trace?.[name]) || 0), 0);
|
|
490
|
+
const errorCount = total("errorCount");
|
|
491
|
+
const rootErrorCount = total("rootErrorCount");
|
|
492
|
+
const recoveredErrorCount = total("recoveredErrorCount");
|
|
493
|
+
const unresolvedErrorCount = total("unresolvedErrorCount");
|
|
494
|
+
const propagatedErrorCount = total("propagatedErrorCount");
|
|
495
|
+
const propagatedErrorSpanCount = total("propagatedErrorSpanCount");
|
|
496
|
+
const unknownCount = total("unknownCount");
|
|
497
|
+
const staleCount = total("staleOpenCount");
|
|
498
|
+
const abortedCount = total("abortedCount");
|
|
499
|
+
const abortedSpanCount = total("abortedSpanCount");
|
|
500
|
+
const partialCount = sessionTraces.reduce((sum, trace) => sum + (trace?.partial ? 1 : 0), 0);
|
|
501
|
+
const rejectedCount = total("parseErrors");
|
|
502
|
+
const orphanCount = list.length - sessionTraces.length;
|
|
503
|
+
const aggregateLimited = Boolean(scanLimited || partialCount || rejectedCount);
|
|
504
|
+
let healthLevel = "nominal";
|
|
505
|
+
let healthHeadline = "NOMINAL";
|
|
506
|
+
if (unresolvedErrorCount) { healthLevel = "bad"; healthHeadline = `${unresolvedErrorCount} UNRESOLVED`; }
|
|
507
|
+
else if (unknownCount) { healthLevel = "warn"; healthHeadline = `${unknownCount} UNKNOWN`; }
|
|
508
|
+
else if (staleCount) { healthLevel = "warn"; healthHeadline = `${staleCount} STALE`; }
|
|
509
|
+
else if (abortedCount) { healthLevel = "warn"; healthHeadline = `${abortedCount} ABORTED`; }
|
|
510
|
+
else if (recoveredErrorCount) { healthLevel = "warn"; healthHeadline = `${recoveredErrorCount} RECOVERED`; }
|
|
511
|
+
let coverageLevel = "nominal";
|
|
512
|
+
let coverageHeadline = "COMPLETE";
|
|
513
|
+
if (rejectedCount) { coverageLevel = "warn"; coverageHeadline = `${rejectedCount} REJECTED`; }
|
|
514
|
+
else if (scanLimited) { coverageLevel = "warn"; coverageHeadline = "SCAN LIMITED"; }
|
|
515
|
+
else if (partialCount) { coverageLevel = "warn"; coverageHeadline = `${partialCount} BOUNDED`; }
|
|
516
|
+
return {
|
|
517
|
+
scanLimited: Boolean(scanLimited),
|
|
518
|
+
aggregateLimited,
|
|
519
|
+
healthLevel,
|
|
520
|
+
healthHeadline,
|
|
521
|
+
coverageLevel,
|
|
522
|
+
coverageHeadline,
|
|
523
|
+
traceCount: list.length,
|
|
524
|
+
sessionTraceCount: sessionTraces.length,
|
|
525
|
+
orphanCount,
|
|
526
|
+
errorCount,
|
|
527
|
+
rootErrorCount,
|
|
528
|
+
recoveredErrorCount,
|
|
529
|
+
unresolvedErrorCount,
|
|
530
|
+
propagatedErrorCount,
|
|
531
|
+
propagatedErrorSpanCount,
|
|
532
|
+
unknownCount,
|
|
533
|
+
staleCount,
|
|
534
|
+
abortedCount,
|
|
535
|
+
abortedSpanCount,
|
|
536
|
+
partialCount,
|
|
537
|
+
rejectedCount,
|
|
538
|
+
providerCount: total("providerCount"),
|
|
539
|
+
inputTokens: total("inputTokens"),
|
|
540
|
+
outputTokens: total("outputTokens"),
|
|
541
|
+
reasoningTokens: total("reasoningTokens"),
|
|
542
|
+
toolResultEstimatedTokens: total("toolResultEstimatedTokens"),
|
|
543
|
+
cacheReadTokens: total("cacheReadTokens"),
|
|
544
|
+
cacheWriteTokens: total("cacheWriteTokens"),
|
|
545
|
+
totalTokens: total("totalTokens"),
|
|
546
|
+
estimatedCostUsd: total("estimatedCostUsd"),
|
|
547
|
+
};
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
export async function scanTraceFiles(root) {
|
|
551
|
+
const canonical = await canonicalTraceRoot(root);
|
|
552
|
+
if (canonical.missing) return { root: canonical.root, traces: [], scanLimited: false, bytesRead: 0 };
|
|
553
|
+
const absoluteRoot = canonical.root;
|
|
554
|
+
const collected = await collectTracePaths(absoluteRoot);
|
|
555
|
+
const traces = [];
|
|
556
|
+
let bytesRead = 0;
|
|
557
|
+
let budgetLimited = false;
|
|
558
|
+
for (const path of collected.paths) {
|
|
559
|
+
const remaining = MAX_TOTAL_SUMMARY_BYTES - bytesRead;
|
|
560
|
+
if (remaining <= 0) { budgetLimited = true; break; }
|
|
561
|
+
try {
|
|
562
|
+
const loaded = await readTraceTail(absoluteRoot, path, Math.min(MAX_SUMMARY_TRACE_BYTES, remaining), MAX_API_RECORDS);
|
|
563
|
+
loaded.orphan = !(await traceHasSessionFile(absoluteRoot, path));
|
|
564
|
+
bytesRead += loaded.bytesRead;
|
|
565
|
+
traces.push({ summary: summarizeTrace(absoluteRoot, path, loaded), path });
|
|
566
|
+
} catch { /* changing or unreadable trace: omit this refresh */ }
|
|
567
|
+
}
|
|
568
|
+
traces.sort((left, right) => right.summary.modifiedAt.localeCompare(left.summary.modifiedAt));
|
|
569
|
+
return { root: absoluteRoot, traces, scanLimited: collected.scanLimited || budgetLimited, bytesRead };
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
function authorized(request, token) {
|
|
573
|
+
const value = request.headers.authorization;
|
|
574
|
+
if (typeof value !== "string" || !value.startsWith("Bearer ")) return false;
|
|
575
|
+
const provided = Buffer.from(value.slice("Bearer ".length));
|
|
576
|
+
const expected = Buffer.from(token);
|
|
577
|
+
return provided.length === expected.length && timingSafeEqual(provided, expected);
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
function dashboardHtml(nonce) {
|
|
581
|
+
return `<!doctype html>
|
|
582
|
+
<html lang="zh-CN">
|
|
583
|
+
<head>
|
|
584
|
+
<meta charset="utf-8">
|
|
585
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
586
|
+
<title>Pi Agent Trace Dashboard</title>
|
|
587
|
+
<style nonce="${nonce}">
|
|
588
|
+
:root{color-scheme:dark;--ink:#090c0d;--surface:#0e1213;--raised:#14191a;--hover:#192021;--line:#273031;--line-soft:#1b2223;--text:#e7edeb;--muted:#85918e;--faint:#56615e;--signal:#c8f06a;--cyan:#65d9ed;--amber:#f4b95f;--red:#f06a72;--purple:#aa91f7;--mono:ui-monospace,"SFMono-Regular",Menlo,Consolas,monospace;--sans:-apple-system,"SF Pro Text","PingFang SC","Noto Sans SC",sans-serif;--display:-apple-system,"SF Pro Display","PingFang SC",sans-serif}*{box-sizing:border-box}html,body{height:100%}body{margin:0;background:var(--ink);color:var(--text);font:13px/1.55 var(--sans);letter-spacing:.005em;overflow:hidden}body:before{content:"";position:fixed;inset:0;pointer-events:none;opacity:.16;background-image:linear-gradient(var(--line-soft) 1px,transparent 1px),linear-gradient(90deg,var(--line-soft) 1px,transparent 1px);background-size:48px 48px;mask-image:linear-gradient(to bottom,black,transparent 70%)}button,input,select{font:inherit;color:inherit}button{cursor:pointer}.app-shell{height:100%;display:grid;grid-template-rows:64px 72px minmax(0,1fr) 30px;position:relative}.topbar{display:flex;align-items:center;gap:18px;padding:0 22px;border-bottom:1px solid var(--line);background:rgba(9,12,13,.94);backdrop-filter:blur(18px);z-index:4}.brand{display:flex;align-items:center;gap:11px;min-width:260px}.brand-mark{width:28px;height:28px;display:grid;place-items:center;border:1px solid var(--signal);color:var(--signal);font:700 11px var(--mono);box-shadow:inset 0 0 0 3px var(--ink)}.brand-copy{display:grid;line-height:1.05}.brand-copy strong{font:650 14px var(--display);letter-spacing:.08em}.brand-copy span{color:var(--muted);font:10px var(--mono);letter-spacing:.16em;margin-top:5px}.top-context{display:flex;align-items:center;gap:8px;color:var(--muted);font:11px var(--mono);min-width:0}.local-dot{width:6px;height:6px;background:var(--signal);box-shadow:0 0 12px rgba(200,240,106,.7)}.top-actions{margin-left:auto;display:flex;align-items:center;gap:8px}.key-hint{color:var(--faint);font:10px var(--mono);border:1px solid var(--line);padding:2px 5px}.refresh-button{display:flex;align-items:center;gap:8px;border:1px solid var(--line);background:var(--raised);padding:8px 12px;border-radius:3px}.refresh-button:hover,.refresh-button:focus-visible{border-color:var(--signal);outline:none}.refresh-icon{font:16px var(--mono);transition:transform .3s}.is-loading .refresh-icon{animation:spin .8s linear infinite}.signal-strip{display:grid;grid-template-columns:minmax(300px,1.35fr) repeat(4,minmax(150px,1fr));padding:0 22px;background:var(--surface);border-bottom:1px solid var(--line);overflow-x:auto}.signal-cell{display:flex;align-items:center;gap:12px;padding:9px 18px;border-left:1px solid var(--line-soft);min-width:0}.signal-cell:first-child{border-left:0;padding-left:0}.signal-cell .value{min-width:0;font:600 22px/1 var(--mono);letter-spacing:-.04em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.signal-cell .copy{display:grid;gap:3px;min-width:0}.signal-cell .label{color:var(--muted);font:10px/1.2 var(--mono);letter-spacing:.13em;text-transform:uppercase}.signal-cell .sub{color:var(--faint);font:11px/1.25 var(--sans)}.signal-cell.health .value{font:650 13px/1 var(--display);letter-spacing:.04em}.health-state{display:flex;align-items:center;gap:10px;min-height:18px;min-width:0}.health-state.bad .value{color:var(--red)}.health-state.warn .value{color:var(--amber)}.health-orb{width:10px;height:10px;flex:0 0 auto;border:2px solid var(--signal);box-shadow:0 0 16px rgba(200,240,106,.35)}.health-orb.warn{border-color:var(--amber);box-shadow:0 0 16px rgba(244,185,95,.32)}.health-orb.bad{border-color:var(--red);box-shadow:0 0 16px rgba(240,106,114,.35)}.health-breakdown{display:flex;align-items:center;gap:4px;min-width:0;overflow:hidden}.health-chip{padding:1px 5px;border:1px solid var(--line-soft);font:9px/1.35 var(--mono);white-space:nowrap}.health-chip.bad{color:var(--red);border-color:rgba(240,106,114,.28)}.health-chip.warn{color:var(--amber);border-color:rgba(244,185,95,.25)}.health-chip.info{color:var(--cyan);border-color:rgba(101,217,237,.25)}.workspace{display:grid;grid-template-columns:clamp(320px,22vw,420px) minmax(0,1fr);min-height:0}.session-panel{display:grid;grid-template-rows:auto auto minmax(0,1fr);border-right:1px solid var(--line);background:rgba(14,18,19,.96);min-width:0;min-height:0;overflow:hidden}.panel-heading{display:flex;align-items:flex-end;justify-content:space-between;padding:18px 16px 12px}.panel-heading h2{margin:0;font:620 12px var(--display);letter-spacing:.11em;text-transform:uppercase}.panel-controls{display:flex;align-items:center;gap:8px}.panel-heading span{color:var(--faint);font:10px var(--mono)}.orphan-toggle{border:1px solid var(--line-soft);background:var(--ink);padding:3px 6px;border-radius:2px;color:var(--muted);font:9px var(--mono)}.orphan-toggle[aria-pressed="true"]{color:var(--cyan);border-color:rgba(101,217,237,.35)}.orphan-toggle:disabled{cursor:default;opacity:.45}.orphan-toggle:focus-visible{outline:1px solid var(--cyan);outline-offset:-1px}.search-wrap{position:relative;margin:0 12px 10px}.search-wrap:before{content:"/";position:absolute;left:10px;top:8px;color:var(--faint);font:12px var(--mono)}.search-input,.span-search,.family-select{width:100%;border:1px solid var(--line-soft);background:var(--ink);border-radius:2px;padding:8px 10px;color:var(--text);outline:none}.search-input{padding-left:25px}.search-input:focus,.span-search:focus,.family-select:focus{border-color:var(--cyan)}.trace-list{min-height:0;overflow-x:hidden;overflow-y:auto;overscroll-behavior:contain;scrollbar-gutter:stable;padding:0 8px 14px;scrollbar-width:thin;scrollbar-color:var(--line) transparent}.trace-list::-webkit-scrollbar{width:8px}.trace-list::-webkit-scrollbar-track{background:transparent}.trace-list::-webkit-scrollbar-thumb{background:var(--line);border:2px solid var(--surface);border-radius:8px}.trace-list::-webkit-scrollbar-thumb:hover{background:var(--muted)}.trace-item{position:relative;width:100%;display:grid;grid-template-columns:3px minmax(0,1fr);gap:10px;text-align:left;border:0;background:transparent;padding:9px 7px;border-radius:2px}.trace-item:before{content:"";background:var(--line);width:3px}.trace-item:hover{background:var(--hover)}.trace-item:focus-visible{outline:1px solid var(--cyan);outline-offset:-1px}.trace-item.active{background:#172022}.trace-item.active:before{background:var(--signal);box-shadow:0 0 10px rgba(200,240,106,.3)}.trace-main{min-width:0}.trace-name{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font:550 12px var(--mono)}.trace-meta{display:flex;align-items:center;gap:4px 9px;flex-wrap:wrap;margin-top:6px;color:var(--faint);font:10px var(--mono)}.trace-meta span{white-space:nowrap}.trace-meta .anomaly{color:var(--red)}.trace-meta .recovered{color:var(--amber)}.trace-meta .coverage{color:var(--cyan)}.trace-meta .orphan{color:var(--muted);border:1px solid var(--line-soft);padding:0 3px}.trace-stage{min-width:0;min-height:0;overflow:auto;background:rgba(9,12,13,.84)}.empty-state{height:100%;display:grid;place-items:center;color:var(--muted);text-align:center}.empty-state strong{display:block;color:var(--text);font:600 15px var(--display);margin-bottom:5px}.empty-glyph{width:46px;height:46px;margin:0 auto 14px;border:1px solid var(--line);display:grid;place-items:center;color:var(--signal);font:15px var(--mono)}.trace-view{min-height:100%;display:grid;grid-template-rows:auto auto minmax(360px,1fr)}.trace-hero{padding:20px 24px 16px;border-bottom:1px solid var(--line-soft);background:linear-gradient(110deg,rgba(20,25,26,.95),rgba(9,12,13,.78))}.trace-kicker{color:var(--signal);font:10px var(--mono);letter-spacing:.16em;text-transform:uppercase}.trace-title{display:flex;align-items:flex-start;gap:14px;margin-top:8px;min-width:0}.trace-title h1{min-width:0;margin:0;font:620 clamp(16px,1.6vw,23px)/1.25 var(--display);letter-spacing:-.018em;overflow-wrap:anywhere}.trace-status{flex:0 0 auto;margin-top:3px;padding:4px 7px;border:1px solid var(--line);color:var(--muted);font:10px var(--mono);text-transform:uppercase}.trace-status.bad{border-color:rgba(240,106,114,.5);color:var(--red)}.trace-status.warn{border-color:rgba(244,185,95,.45);color:var(--amber)}.trace-caption{display:grid;grid-template-columns:minmax(160px,1fr) auto auto auto auto;align-items:center;gap:8px 18px;margin-top:11px;color:var(--muted);font:11px var(--mono)}.trace-caption span{display:flex;gap:6px;white-space:nowrap}.trace-caption .trace-path{min-width:0;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.trace-metrics{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:1px;background:var(--line-soft);border-bottom:1px solid var(--line)}.trace-metric{min-width:0;padding:12px 16px;background:rgba(9,12,13,.96)}.trace-metric .m-label{display:block;color:var(--faint);font:9px var(--mono);text-transform:uppercase;letter-spacing:.12em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.trace-metric .m-value{display:block;margin-top:5px;font:560 clamp(14px,1.2vw,17px)/1.2 var(--mono);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.trace-metric.active .m-value{color:var(--cyan)}.trace-metric.warning .m-value{color:var(--amber)}.trace-metric.danger .m-value{color:var(--red)}.trace-body{display:grid;grid-template-columns:minmax(560px,1fr) clamp(300px,22vw,380px);min-height:0}.timeline-pane{min-width:0;border-right:1px solid var(--line);display:grid;grid-template-rows:auto auto minmax(0,1fr)}.toolbar{display:grid;grid-template-columns:minmax(180px,1fr) 128px auto auto;gap:8px;padding:12px 14px;border-bottom:1px solid var(--line-soft);background:var(--surface)}.family-select{appearance:none}.status-tabs,.page-nav{display:flex;gap:2px}.status-tab,.page-button{border:1px solid var(--line-soft);background:var(--ink);padding:7px 9px;color:var(--muted);border-radius:2px}.status-tab.active{color:var(--signal);border-color:rgba(200,240,106,.45);background:rgba(200,240,106,.06)}.page-button:disabled{cursor:not-allowed;color:var(--faint);opacity:.45}.page-index{display:grid;place-items:center;min-width:58px;padding:0 7px;color:var(--cyan);font:10px var(--mono);white-space:nowrap}.status-tab:focus-visible,.page-button:focus-visible,.span-row:focus-visible{outline:1px solid var(--cyan);outline-offset:-1px}.timeline-scale{display:grid;grid-template-columns:minmax(220px,300px) minmax(220px,1fr) 82px;padding:7px 14px;border-bottom:1px solid var(--line-soft);color:var(--faint);font:9px var(--mono);letter-spacing:.08em;text-transform:uppercase}.scale-track{display:flex;justify-content:space-between;padding:0 5px}.span-list{overflow:auto}.span-row{width:100%;display:grid;grid-template-columns:minmax(220px,300px) minmax(220px,1fr) 82px;align-items:center;min-height:38px;padding:0 14px;border:0;border-bottom:1px solid var(--line-soft);background:transparent;color:inherit;text-align:left;font:inherit;cursor:pointer;transition:background .14s}.span-row:hover{background:var(--hover)}.span-row.selected{background:#172022;box-shadow:inset 2px 0 var(--signal)}.span-identity{display:flex;align-items:center;gap:8px;min-width:0;padding-left:calc(var(--depth,0)*12px)}.span-dot{width:6px;height:6px;background:var(--cyan);flex:0 0 auto}.span-dot.tool{background:var(--purple)}.span-dot.agent{background:var(--signal)}.span-dot.session{background:var(--amber)}.span-dot.startup{background:var(--muted)}.span-dot.prefill{background:#32a9e8}.span-dot.reasoning{background:#2fcf9f}.span-dot.generation{background:#66df83}.span-dot.bad{background:var(--red);box-shadow:0 0 8px rgba(240,106,114,.35)}.span-dot.recovered,.span-dot.warn{background:var(--amber);box-shadow:0 0 8px rgba(244,185,95,.28)}.span-name{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font:11px var(--mono)}.span-track{position:relative;height:18px;background-image:linear-gradient(90deg,var(--line-soft) 1px,transparent 1px);background-size:25% 100%;border-left:1px solid var(--line-soft);border-right:1px solid var(--line-soft)}.span-bar{position:absolute;top:6px;height:6px;min-width:2px;background:var(--cyan);left:var(--start);width:var(--width)}.span-bar.tool{background:var(--purple)}.span-bar.agent{background:var(--signal)}.span-bar.session{background:var(--amber)}.span-bar.startup{background:var(--muted)}.span-bar.prefill{background:#32a9e8}.span-bar.reasoning{background:#2fcf9f}.span-bar.generation{background:#66df83}.span-bar.bad{background:var(--red)}.span-bar.recovered,.span-bar.warn{background:var(--amber)}.span-duration{text-align:right;color:var(--muted);font:10px var(--mono)}.inspector{overflow:auto;background:var(--surface)}.inspector-head{padding:17px;border-bottom:1px solid var(--line)}.inspector-label{color:var(--faint);font:9px var(--mono);letter-spacing:.14em;text-transform:uppercase}.inspector-name{margin-top:7px;font:600 13px var(--mono);overflow-wrap:anywhere}.inspector-grid{display:grid;grid-template-columns:82px 1fr;gap:8px 10px;padding:14px 17px;border-bottom:1px solid var(--line-soft);font:11px var(--mono)}.inspector-grid dt{color:var(--faint)}.inspector-grid dd{margin:0;color:var(--text);overflow-wrap:anywhere}.inspector-grid .bad{color:var(--red)}.inspector-grid .warn{color:var(--amber)}.attribute-list{padding:13px 17px}.attribute-row{display:grid;grid-template-columns:minmax(90px,.8fr) minmax(0,1.2fr);gap:10px;padding:8px 0;border-bottom:1px solid var(--line-soft);font:10px var(--mono)}.attribute-key{color:var(--muted);overflow-wrap:anywhere}.attribute-value{color:var(--text);text-align:right;overflow-wrap:anywhere}.app-footer{display:flex;align-items:center;gap:14px;padding:0 22px;border-top:1px solid var(--line);background:var(--surface);color:var(--faint);font:9px var(--mono);letter-spacing:.04em}.app-footer .root-path{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.app-footer .security{margin-left:auto;color:var(--muted)}.skeleton{background:linear-gradient(90deg,var(--raised),var(--hover),var(--raised));background-size:200% 100%;animation:shimmer 1.3s infinite}.fade-in{animation:reveal .24s ease-out both}@keyframes spin{to{transform:rotate(360deg)}}@keyframes shimmer{to{background-position:-200% 0}}@keyframes reveal{from{opacity:0;transform:translateY(3px)}to{opacity:1;transform:none}}@media(prefers-reduced-motion:reduce){*,*:before,*:after{animation:none!important;transition:none!important}}@media(max-width:1120px){.trace-body{grid-template-columns:1fr}.inspector{border-top:1px solid var(--line);max-height:300px}.timeline-pane{border-right:0}.trace-metrics{grid-template-columns:repeat(3,minmax(0,1fr))}}@media(max-width:960px) and (min-width:761px){.app-shell{grid-template-rows:64px auto minmax(0,1fr) 30px}.signal-strip{grid-template-columns:minmax(260px,1.25fr) repeat(2,minmax(150px,1fr));overflow:visible}.signal-cell{border-bottom:1px solid var(--line-soft)}.signal-cell.health{grid-row:span 2}}@media(max-width:760px){body{overflow:auto}.app-shell{height:auto;min-height:100%;grid-template-rows:60px auto auto 30px}.top-context,.key-hint{display:none}.signal-strip{grid-template-columns:repeat(2,minmax(0,1fr));padding:0 14px;overflow:visible}.signal-cell{border-bottom:1px solid var(--line-soft)}.signal-cell:nth-child(even){border-left:0}.signal-cell:first-child{padding-left:18px}.signal-cell.health{grid-column:1/-1;grid-row:auto}.workspace{grid-template-columns:1fr}.session-panel{border-right:0;border-bottom:1px solid var(--line);max-height:330px}.trace-stage{min-width:0;overflow:hidden}.trace-view,.trace-body{min-width:0}.trace-body{grid-template-columns:minmax(0,1fr)}.timeline-pane{min-width:0;overflow-x:auto}.toolbar{grid-template-columns:1fr;position:sticky;left:0}.timeline-scale,.span-row{min-width:640px}.trace-hero{padding:18px 16px}.trace-caption{grid-template-columns:repeat(2,minmax(0,1fr));gap:7px 12px}.trace-caption .trace-path{grid-column:1/-1}.trace-metrics{grid-template-columns:repeat(2,minmax(0,1fr))}.app-footer{padding:0 14px}.security{display:none}}
|
|
589
|
+
/* V3 session telemetry shell — keeps the detailed span inspector as a switchable view. */
|
|
590
|
+
body{background:#090a0a;font-family:var(--mono);letter-spacing:0}body:before{display:none}.app-shell{grid-template-rows:58px 78px minmax(0,1fr) 28px;background:#101112}.topbar{padding:0 20px;background:#101112;border-color:#424744}.brand{min-width:auto}.brand-mark{border-color:#f1f2ef;color:#f1f2ef;box-shadow:none}.brand-copy strong{font-family:var(--mono);font-size:13px}.brand-copy span{font-family:var(--mono);font-size:9px}.top-context{margin-left:12px}.local-dot{border:2px solid #2fd39d;background:transparent;border-radius:50%;box-shadow:0 0 12px rgba(47,211,157,.35)}.top-actions{gap:12px}.view-switch{display:flex;padding:3px;border:1px solid #424744;background:#0d0e0f}.view-button{border:0;background:transparent;color:#a1a6a4;padding:7px 13px;font:10px var(--mono);letter-spacing:.05em}.view-button.active{background:#ecefed;color:#111;font-weight:700}.view-button:focus-visible{outline:1px solid #2eb4ed;outline-offset:-1px}.refresh-button{border-color:#424744;background:transparent;border-radius:0;font:10px var(--mono)}.key-hint{display:none}.signal-strip{grid-template-columns:1.25fr repeat(4,1fr);padding:0 20px;background:#0c0e0e;border-color:#424744;overflow:hidden}.signal-cell{padding:11px 18px;border-color:#2a2e2c}.signal-cell .label{font:9px var(--mono)}.signal-cell .value{font:550 20px/1 var(--mono)}.signal-cell .sub{font:9px var(--mono)}.signal-cell.health .value{font:600 12px var(--mono)}.health-orb{border-radius:50%}.workspace{grid-template-columns:292px minmax(0,1fr)}.session-panel{background:#0e1010;border-color:#424744}.panel-heading{padding:20px 15px 12px}.panel-heading h2{font:600 11px var(--mono)}.search-input{border-radius:0;background:#0a0b0b}.trace-item{border-radius:0;padding:10px 8px}.trace-item.active{background:#191c1b}.trace-item.active:before{background:#55d97b;box-shadow:0 0 9px rgba(85,217,123,.28)}.trace-stage{background:#101112}.trace-view{display:block;min-height:100%}.trace-hero{min-height:103px;display:block;position:relative;padding:18px 128px 18px 27px;background:#101112;border-color:#424744}.trace-title{margin-top:7px}.trace-title h1{font:550 23px/1.15 var(--mono)}.trace-kicker{color:#a1a6a4}.trace-caption{font:10px var(--mono)}.trace-status{border-radius:0}.context-gauge{position:absolute;right:27px;top:50%;transform:translateY(-50%);display:flex;align-items:center;gap:10px}.context-ring{--context:0;width:43px;height:43px;position:relative;display:grid;place-items:center;border-radius:50%;background:conic-gradient(#2eb4ed calc(var(--context)*1%),#263034 0)}.context-ring:after{content:"";position:absolute;inset:5px;border-radius:50%;background:#101112}.context-ring span{position:relative;z-index:1;font:9px var(--mono)}.context-gauge-copy{display:grid}.context-gauge-copy strong{font:16px var(--mono)}.context-gauge-copy span{color:#646a68;font:9px var(--mono);letter-spacing:.08em}.session-stats{border-bottom:1px solid #424744}.stats-section{border-bottom:1px solid #424744}.stats-heading{height:52px;display:flex;align-items:center;gap:10px;padding:0 27px}.stats-heading h2{margin:0;font:500 13px var(--mono)}.stats-heading .count{margin-left:auto;color:#a1a6a4}.stats-page-nav{display:flex;align-items:center;gap:4px;margin-left:8px}.stats-page-nav button{border:1px solid #2a2e2c;background:#0d0e0f;padding:4px 7px;color:#a1a6a4;font:9px var(--mono)}.stats-page-nav button:disabled{opacity:.35}.stats-page-nav span{color:#2eb4ed;font:9px var(--mono)}.stats-chevron{color:#a1a6a4;font-size:16px}.stats-content{padding:0 27px 22px}.stats-speed{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:26px;padding:3px 0 18px}.stats-speed-item{display:flex;align-items:baseline;justify-content:space-between;padding-bottom:7px;border-bottom:1px solid #2a2e2c}.stats-speed-item span{color:#a1a6a4}.stats-speed-item strong{font:500 16px var(--mono)}.stats-columns,.token-columns{display:grid;grid-template-columns:1fr 1fr;gap:42px}.token-columns{margin-top:20px}.stat-group h3{margin:0 0 8px;color:#a1a6a4;font:500 10px var(--mono);letter-spacing:.09em}.stat-grid{display:grid;grid-template-columns:1fr auto;gap:7px 18px}.stat-label{display:flex;align-items:center;gap:9px;color:#a1a6a4}.stat-dot{width:8px;height:8px;flex:none;border:2px solid currentColor;border-radius:50%}.stat-dot.fill{border:0;background:currentColor}.stat-value{text-align:right}.tone-gray{color:#aeb8c5}.tone-cyan{color:#2eb4ed}.tone-reasoning{color:#2fd39d}.tone-generation{color:#55d97b}.tone-tool{color:#ff9f1c}.tone-compaction{color:#8c4ee8}.activity-content{padding:2px 27px 28px}.activity-caption{display:flex;gap:12px;margin-bottom:18px;color:#a1a6a4}.activity-caption .primary{margin-right:auto;color:#f1f2ef}.activity-grid{display:grid;grid-template-columns:190px minmax(360px,1fr) 72px;align-items:center;row-gap:7px}.activity-label{text-align:right;padding-right:14px;color:#a1a6a4;white-space:nowrap}.activity-label.major{color:#f1f2ef}.activity-track{height:18px;position:relative;border-bottom:1px solid #202322;background-image:linear-gradient(90deg,#2a2e2c 1px,transparent 1px);background-size:25% 100%;overflow:hidden}.activity-track.all{height:31px;border:0;border-radius:15px;background:#18211f}.activity-segment{position:absolute;top:5px;bottom:4px;left:var(--start);width:var(--width);min-width:2px;background:var(--segment)}.activity-track.all .activity-segment{top:0;bottom:0}.activity-value{text-align:right;color:#a1a6a4}.activity-axis{grid-column:2;display:flex;justify-content:space-between;padding-top:4px;color:#646a68;font:9px var(--mono)}.trace-detail{display:block}.trace-metrics{grid-template-columns:repeat(6,minmax(0,1fr))}.trace-metric{background:#0d0f0f}.toolbar{background:#131516}.status-tab,.page-button,.span-search,.family-select{border-radius:0}.app-footer{background:#0e1010;border-color:#424744}.span-dot.tool,.span-bar.tool{background:#ff9f1c}.span-dot.agent,.span-bar.agent{background:#55d97b}.span-dot.session,.span-bar.session{background:#8c4ee8}
|
|
591
|
+
@media(max-width:1120px){.app-shell{grid-template-rows:58px 112px minmax(0,1fr) 28px}.signal-strip{grid-template-columns:1.2fr repeat(2,1fr);overflow:hidden}.stats-speed{grid-template-columns:repeat(2,1fr)}.activity-grid{grid-template-columns:150px minmax(300px,1fr) 60px}}
|
|
592
|
+
@media(max-width:760px){body{overflow:auto}.app-shell{display:block;min-height:100%}.topbar{height:60px;padding-inline:12px}.top-context{display:none}.view-button{padding:7px 8px}.signal-strip{grid-template-columns:repeat(2,1fr);padding:0 12px}.signal-cell.health{grid-column:1/-1}.workspace{grid-template-columns:1fr}.trace-hero{padding:18px 16px}.stats-columns,.token-columns{grid-template-columns:1fr}.activity-content{overflow:auto}.activity-grid{min-width:540px;grid-template-columns:120px minmax(300px,1fr) 56px}}
|
|
593
|
+
</style>
|
|
594
|
+
</head>
|
|
595
|
+
<body>
|
|
596
|
+
<div class="app-shell">
|
|
597
|
+
<header class="topbar"><div class="brand"><div class="brand-mark">PI</div><div class="brand-copy"><strong>PI TRACE</strong><span>LONG-HORIZON OBSERVABILITY</span></div></div><div class="top-context"><i class="local-dot"></i><span id="state">正在连接本地记录…</span></div><div class="top-actions"><nav class="view-switch" aria-label="会话视图"><button class="view-button active" id="view-stats" type="button" aria-pressed="true">SESSION STATS</button><button class="view-button" id="view-trace" type="button" aria-pressed="false">EXECUTION TRACE</button></nav><span class="key-hint">R</span><button class="refresh-button" id="refresh" type="button"><span class="refresh-icon">↻</span><span>刷新数据</span></button></div></header>
|
|
598
|
+
<section class="signal-strip" id="signals"></section>
|
|
599
|
+
<section class="workspace"><aside class="session-panel"><div class="panel-heading"><h2>Session archive</h2><div class="panel-controls"><span id="trace-count">0 SESSIONS</span><button class="orphan-toggle" id="orphan-toggle" type="button" aria-pressed="false">EMPTY 0</button></div></div><div class="search-wrap"><input class="search-input" id="filter" type="search" aria-label="过滤会话路径" placeholder="过滤会话路径" autocomplete="off"></div><div class="trace-list" id="traces" tabindex="0" aria-label="Session archive list"></div></aside><main class="trace-stage" id="detail"><div class="empty-state"><div><div class="empty-glyph">//</div><strong>等待 trace 数据</strong><span>选择左侧会话以检查执行链路</span></div></div></main></section>
|
|
600
|
+
<footer class="app-footer"><span>PI-AGENT / OBSERVABILITY</span><span class="root-path" id="root-path">DATA ROOT —</span><span class="security">LOOPBACK · READ ONLY · TOKEN AUTH</span></footer>
|
|
601
|
+
</div>
|
|
602
|
+
<script nonce="${nonce}">
|
|
603
|
+
(function(){
|
|
604
|
+
'use strict';
|
|
605
|
+
var token=new URLSearchParams(location.hash.slice(1)).get('token')||'';
|
|
606
|
+
var traces=[],fleet=null,traceSnapshot='',selectedTrace='',currentDetail=null,selectedSpan='',spanQuery='',statusFilter='all',familyFilter='all',showOrphans=false,sessionView='stats';
|
|
607
|
+
function e(tag,cls,text){var n=document.createElement(tag);if(cls)n.className=cls;if(text!==undefined)n.textContent=String(text);return n}
|
|
608
|
+
function fmt(n,digits){return new Intl.NumberFormat('zh-CN',{maximumFractionDigits:digits===undefined?1:digits}).format(n||0)}
|
|
609
|
+
var money=${formatDashboardMoney.toString()};
|
|
610
|
+
function size(n){if(n<1024)return n+' B';if(n<1048576)return (n/1024).toFixed(1)+' KiB';return (n/1048576).toFixed(1)+' MiB'}
|
|
611
|
+
var compact=${formatDashboardCompact.toString()};
|
|
612
|
+
var duration=${formatDashboardDuration.toString()};
|
|
613
|
+
function compactMoney(n){var value=Number(n||0);return Math.abs(value)>=1000?'$'+compact(value):money(value)}
|
|
614
|
+
function percent(n,total){return total>0?fmt(n/total*100,1)+'%':'0%'}
|
|
615
|
+
function optionalPercent(n){return Number.isFinite(n)?fmt(n,1)+'%':'N/A'}
|
|
616
|
+
function rate(n){return Number.isFinite(n)?fmt(n,1)+'/s':'N/A'}
|
|
617
|
+
function optionalDuration(n){return Number.isFinite(n)?duration(n):'N/A'}
|
|
618
|
+
function optionalCompact(n){return Number.isFinite(n)?compact(n):'N/A'}
|
|
619
|
+
function usageParts(value){var parts=['uncached '+compact(value.inputTokens),'cache '+compact(value.cacheReadTokens),'output '+compact(value.outputTokens)];if(value.cacheWriteTokens)parts.push('cache write '+compact(value.cacheWriteTokens));return parts.join(' · ')}
|
|
620
|
+
function elapsed(iso){var seconds=Math.max(0,(Date.now()-Date.parse(iso))/1000);if(seconds<60)return Math.floor(seconds)+'s ago';if(seconds<3600)return Math.floor(seconds/60)+'m ago';if(seconds<86400)return Math.floor(seconds/3600)+'h ago';return Math.floor(seconds/86400)+'d ago'}
|
|
621
|
+
function basename(path){var bits=path.split('/');return bits[bits.length-1]||path}
|
|
622
|
+
function traceDisplayName(path){var name=basename(path),parts=name.split('_'),stamp=parts[0]||'',id=(parts[1]||'').replace('.trace.jsonl',''),match=stamp.match(/^([0-9]{4}-[0-9]{2}-[0-9]{2})T([0-9]{2})-([0-9]{2})-([0-9]{2})/);if(!match||!id)return name;return match[1]+' '+match[2]+':'+match[3]+':'+match[4]+' · '+id.slice(0,8)+'…'+id.slice(-4)}
|
|
623
|
+
function wallTimeLabel(summary){return summary.wallTimeMode==='operation-sum'?'Operation time':summary.wallTimeMode==='observed-window'?'Observed window':'Wall time'}
|
|
624
|
+
function wallTimeValue(summary){if(summary.wallTimeMode==='operation-sum')return(summary.partial?'≈ ':'')+duration(summary.wallTimeMs);if(summary.wallTimeMode==='observed-window')return'≈ '+duration(summary.wallTimeMs);return'N/A'}
|
|
625
|
+
function family(name){if(name.indexOf('pi.ai.')===0)return'model';if(name.indexOf('pi.tool.')===0)return'tool';if(name.indexOf('pi.agent.')===0)return'agent';return'session'}
|
|
626
|
+
function familyLabel(value){return{model:'MODEL',tool:'TOOL',agent:'AGENT',session:'SESSION'}[value]||'SPAN'}
|
|
627
|
+
function displaySpanName(span){var toolName=span.attributes&&span.attributes['pi.tool.name'];return span.name==='pi.tool.execute'&&typeof toolName==='string'?span.name+' · '+toolName:span.name}
|
|
628
|
+
function statusName(value){return{ok:'OK',error:'ERROR',aborted:'ABORTED',unknown:'UNKNOWN',running:'RUNNING',stale:'STALE',incomplete:'PAGE BOUNDARY'}[value]||String(value).toUpperCase()}
|
|
629
|
+
function traceStatus(summary){if(summary.orphan)return'ORPHAN';if(summary.unresolvedErrorCount)return summary.unresolvedErrorCount+' UNRESOLVED';if(summary.unknownCount)return summary.unknownCount+' UNKNOWN';if(summary.staleOpenCount)return summary.staleOpenCount+' STALE';if(summary.abortedCount)return summary.abortedCount+' ABORTED';if(summary.recoveredErrorCount)return summary.recoveredErrorCount+' RECOVERED';if(summary.openCount)return summary.openCount+' ACTIVE';if(summary.runtimeOpenCount)return'IDLE';return'NOMINAL'}
|
|
630
|
+
async function api(path){var response=await fetch(path,{headers:{authorization:'Bearer '+token},cache:'no-store'});if(!response.ok)throw new Error('HTTP '+response.status);return response.json()}
|
|
631
|
+
function renderSignals(){var root=document.getElementById('signals'),f=fleet;if(!f){root.replaceChildren();return}var statusParts=[{text:fmt(f.unresolvedErrorCount,0)+' unresolved',show:f.unresolvedErrorCount,tone:'bad'},{text:fmt(f.unknownCount,0)+' unknown',show:f.unknownCount,tone:'warn'},{text:fmt(f.staleCount,0)+' stale',show:f.staleCount,tone:'warn'},{text:fmt(f.abortedCount,0)+' aborted',show:f.abortedCount,tone:'warn'},{text:fmt(f.recoveredErrorCount,0)+' recovered',show:f.recoveredErrorCount,tone:'warn'},{text:fmt(f.propagatedErrorCount,0)+' propagated incidents',show:f.propagatedErrorCount,tone:'info'},{text:f.coverageHeadline.toLowerCase(),show:f.coverageHeadline!=='COMPLETE',tone:f.coverageLevel==='warn'?'warn':'info'},{text:fmt(f.orphanCount,0)+' empty filtered',show:f.orphanCount,tone:'info'}],fileParts=[fmt(f.sessionTraceCount,0)+' sessions'];if(f.orphanCount)fileParts.push(fmt(f.orphanCount,0)+' empty filtered');if(f.coverageHeadline!=='COMPLETE')fileParts.push(f.coverageHeadline.toLowerCase());var values=[{health:true,label:'Fleet health',value:f.healthHeadline},{label:'Trace files',value:fmt(f.traceCount,0),sub:fileParts.join(' · ')},{label:'Model calls',value:fmt(f.providerCount,0),sub:f.aggregateLimited?'bounded · loaded trace windows':'complete trace requests'},{label:'Observed tokens',value:compact(f.totalTokens),sub:(f.aggregateLimited?'bounded · ':'')+usageParts(f),title:fmt(f.totalTokens,0)+' tokens observed in loaded trace windows'},{label:'Estimated cost',value:compactMoney(f.estimatedCostUsd),sub:f.aggregateLimited?'bounded · loaded trace windows':'complete trace total',title:Number(f.estimatedCostUsd||0).toFixed(4)+' USD observed'}];root.replaceChildren();values.forEach(function(item){var cell=e('div','signal-cell'+(item.health?' health':'')),copy=e('div','copy');if(item.title)cell.title=item.title;copy.append(e('span','label',item.label));if(item.health){var state=e('span','health-state '+f.healthLevel),breakdown=e('span','sub health-breakdown'),visible=statusParts.filter(function(part){return part.show});state.append(e('i','health-orb'+(f.healthLevel==='nominal'?'':' '+f.healthLevel)),e('strong','value',item.value));if(visible.length)visible.forEach(function(part){breakdown.append(e('span','health-chip '+part.tone,part.text))});else breakdown.textContent='no unresolved execution issues';copy.append(state,breakdown)}else copy.append(e('strong','value',item.value),e('span','sub',item.sub));cell.append(copy);root.append(cell)})}
|
|
632
|
+
function traceListOutcome(trace){if(trace.unresolvedErrorCount||trace.unknownCount||trace.staleOpenCount)return{tone:trace.unresolvedErrorCount?'anomaly':'recovered',text:trace.unresolvedErrorCount+' unresolved · '+trace.unknownCount+' unknown · '+trace.staleOpenCount+' stale'};if(trace.abortedCount)return{tone:'recovered',text:trace.abortedCount+' aborted'+(trace.openCount?' · '+trace.openCount+' active':'')};if(trace.recoveredErrorCount)return{tone:'recovered',text:trace.recoveredErrorCount+' recovered'+(trace.openCount?' · '+trace.openCount+' active':'')};if(trace.openCount)return{tone:'',text:trace.openCount+' active'};return null}
|
|
633
|
+
function traceMatchesArchiveFilter(trace,query,includeOrphans){return(includeOrphans||!trace.orphan)&&trace.path.toLowerCase().includes(query)}
|
|
634
|
+
function renderTraceList(){var query=document.getElementById('filter').value.toLowerCase(),root=document.getElementById('traces'),toggle=document.getElementById('orphan-toggle'),visible=traces.filter(function(x){return traceMatchesArchiveFilter(x,query,showOrphans)});document.getElementById('trace-count').textContent=visible.length+' SESSIONS';toggle.textContent='EMPTY '+fmt(fleet&&fleet.orphanCount,0);toggle.disabled=!(fleet&&fleet.orphanCount);toggle.setAttribute('aria-pressed',showOrphans?'true':'false');root.replaceChildren();if(!visible.length){root.append(e('div','empty-state',showOrphans?'没有匹配的 trace':'没有匹配的会话'));return}visible.forEach(function(trace){var button=e('button','trace-item'+(trace.id===selectedTrace?' active':'')),main=e('span','trace-main'),name=e('span','trace-name',traceDisplayName(trace.path)),meta=e('span','trace-meta');button.type='button';button.title=trace.path+'\\n'+fmt(trace.totalTokens,0)+' observed tokens · '+usageParts(trace);button.setAttribute('aria-current',trace.id===selectedTrace?'true':'false');meta.append(e('span','',elapsed(trace.modifiedAt)),e('span','',compact(trace.totalTokens)+' tok'),e('span','',compact(trace.cacheReadTokens)+' cache'),e('span','',compactMoney(trace.estimatedCostUsd)));if(trace.orphan)meta.append(e('span','orphan','orphan'));var outcome=traceListOutcome(trace);if(outcome)meta.append(e('span',outcome.tone,outcome.text));else meta.append(e('span','',size(trace.sizeBytes)));if(trace.propagatedErrorCount)meta.append(e('span','coverage',trace.propagatedErrorCount+' propagated incident'+(trace.propagatedErrorCount===1?'':'s')));if(trace.partial)meta.append(e('span','coverage','bounded recent tail'));if(trace.parseErrors)meta.append(e('span','coverage',trace.parseErrors+' rejected'));main.append(name,meta);button.append(main);button.onclick=function(){selectedTrace=trace.id;selectedSpan='';renderTraceList();loadDetail(trace.id)};root.append(button)})}
|
|
635
|
+
function pairSpans(records,lifecycleComplete){lifecycleComplete=lifecycleComplete!==false;var byId=new Map();records.forEach(function(record){var item=byId.get(record.spanId)||{spanId:record.spanId,traceId:record.traceId,parentSpanId:record.parentSpanId,name:record.name,attributes:{}};if(record.kind==='span_start'){item.start=Date.parse(record.timestamp);item.startedAt=record.timestamp;item.name=record.name;item.parentSpanId=record.parentSpanId;Object.assign(item.attributes,record.attributes||{})}else{item.end=Date.parse(record.timestamp);item.endedAt=record.timestamp;item.durationMs=record.durationMs;item.status=record.status||'unknown';Object.assign(item.attributes,record.attributes||{})}byId.set(record.spanId,item)});var now=Date.now(),pageTimes=records.map(function(record){return Date.parse(record.timestamp)}).filter(Number.isFinite),pageBoundaryEnd=pageTimes.length?Math.max.apply(null,pageTimes):now,items=Array.from(byId.values());items.forEach(function(item){if(!item.start&&item.end&&item.durationMs!==undefined)item.start=item.end-item.durationMs;if(!item.end&&item.start){item.open=true;item.end=lifecycleComplete?now:pageBoundaryEnd;item.durationMs=Math.max(0,item.end-item.start)}if(!item.status&&!item.open)item.status='unknown';item.family=family(item.name)});var lookup=new Map(items.map(function(item){return[item.spanId,item]})),latestActivity=new Map();items.forEach(function(item){var activity=item.open?item.start:Math.max(item.start||-Infinity,item.end||-Infinity),spanId=item.spanId,guard=0;while(spanId&&guard<64){latestActivity.set(spanId,Math.max(latestActivity.get(spanId)||-Infinity,activity));spanId=lookup.get(spanId)&&lookup.get(spanId).parentSpanId;guard+=1}});items.forEach(function(item){if(item.open)item.status=lifecycleComplete?(item.name==='pi.session.runtime'?'running':now-(latestActivity.get(item.spanId)||item.start)>=${STALE_OPEN_SPAN_MS}?'stale':'running'):'incomplete'});var errors=items.filter(function(item){return item.status==='error'}),errorIds=new Set(errors.map(function(item){return item.spanId})),stale=items.filter(function(item){return item.status==='stale'}),staleIds=new Set(stale.map(function(item){return item.spanId}));if(lifecycleComplete){errors.forEach(function(item){var parent=item.parentSpanId,guard=0;while(parent&&guard<64){if(errorIds.has(parent))lookup.get(parent).propagatedError=true;parent=lookup.get(parent)&&lookup.get(parent).parentSpanId;guard+=1}});stale.forEach(function(item){var parent=item.parentSpanId,guard=0;while(parent&&guard<64){if(staleIds.has(parent))lookup.get(parent).propagatedStale=true;parent=lookup.get(parent)&&lookup.get(parent).parentSpanId;guard+=1}})}var latestProviderSuccess=lifecycleComplete?Math.max.apply(null,items.filter(function(item){return item.name==='pi.ai.request'&&item.status==='ok'}).map(function(item){return item.end}).concat([-Infinity])):-Infinity;items.forEach(function(item){var depth=0,parent=item.parentSpanId,guard=0;while(parent&&lookup.has(parent)&&guard<8){depth+=1;parent=lookup.get(parent).parentSpanId;guard+=1}item.depth=depth;if(lifecycleComplete)item.recovered=item.status==='error'&&!item.propagatedError&&latestProviderSuccess>item.end});return items.filter(function(item){return Number.isFinite(item.start)&&Number.isFinite(item.end)}).sort(function(a,b){return a.start-b.start})}
|
|
636
|
+
function metric(label,value,tone,title){var node=e('div','trace-metric'+(tone?' '+tone:''));if(title)node.title=title;node.append(e('span','m-label',label),e('strong','m-value',value));return node}
|
|
637
|
+
function renderInspector(span,lifecycleComplete){var root=e('aside','inspector');if(!span){root.append(e('div','empty-state','选择一个 span 查看属性'));return root}var head=e('div','inspector-head');head.append(e('span','inspector-label',familyLabel(span.family)+' / SPAN DETAIL'),e('div','inspector-name',displaySpanName(span)));root.append(head);var visibleStatus=span.recovered?'RECOVERED':statusName(span.status),classification=!lifecycleComplete&&span.status==='error'?'PAGE-LOCAL ERROR':span.propagatedError?'PROPAGATED ERROR':span.status==='error'?'ROOT ERROR':span.propagatedStale?'PROPAGATED STALE':span.status==='incomplete'?'CROSSES PAGE BOUNDARY':'DIRECT',grid=e('dl','inspector-grid'),pairs=[['Status',visibleStatus],['Class',classification],['Duration',fmt(span.durationMs)+' ms'],['Started',new Date(span.start).toLocaleTimeString()],['Span ID',span.spanId],['Parent',span.parentSpanId||'root']];pairs.forEach(function(pair){var tone=pair[0]==='Status'?(span.recovered?'warn':span.status==='error'?'bad':(span.status==='unknown'||span.status==='stale')?'warn':''):'';grid.append(e('dt','',pair[0]),e('dd',tone,pair[1]))});root.append(grid);var attrs=e('div','attribute-list'),entries=Object.entries(span.attributes||{});attrs.append(e('div','inspector-label',entries.length+' ATTRIBUTES'));if(!entries.length)attrs.append(e('div','attribute-row','No attributes'));entries.forEach(function(pair){var value=typeof pair[1]==='string'?pair[1]:JSON.stringify(pair[1]);var row=e('div','attribute-row');row.append(e('span','attribute-key',pair[0]),e('span','attribute-value',value));attrs.append(row)});root.append(attrs);return root}
|
|
638
|
+
function spanTone(span){if(span.recovered)return' recovered';if(span.status==='error')return' bad';if(span.status==='unknown'||span.status==='stale')return' warn';return{'pi.ai.startup':' startup','pi.ai.prefill':' prefill','pi.ai.reasoning':' reasoning','pi.ai.generation':' generation'}[span.name]||''}
|
|
639
|
+
function statsHeading(title,count){var head=e('div','stats-heading');head.append(e('span','stats-chevron','⌄'),e('h2','',title),e('span','count',count));return head}
|
|
640
|
+
function statsPager(page,pageNumber){var nav=e('div','stats-page-nav'),newer=e('button','','NEWER'),label=e('span','','PAGE '+pageNumber),older=e('button','','OLDER');newer.type='button';older.type='button';newer.disabled=currentDetail.historyIndex===0;older.disabled=!page.hasEarlier;newer.onclick=function(){loadHistoryPage(-1)};older.onclick=function(){loadHistoryPage(1)};nav.append(newer,label,older);return nav}
|
|
641
|
+
function statsGrid(title,items){var group=e('section','stat-group'),grid=e('div','stat-grid');group.append(e('h3','',title));items.forEach(function(item){var label=e('div','stat-label'),dot=e('i','stat-dot '+item.tone+(item.fill?' fill':''));label.append(dot,e('span','',item.label));grid.append(label,e('div','stat-value',item.value))});group.append(grid);return group}
|
|
642
|
+
function activityColor(span){return{'pi.ai.startup':'#aeb8c5','pi.ai.prefill':'#2eb4ed','pi.ai.reasoning':'#2fd39d','pi.ai.generation':'#55d97b','pi.session.compaction':'#8c4ee8','pi.tool.execute':'#ff9f1c'}[span.name]||'#65d9ed'}
|
|
643
|
+
function activityLane(grid,label,items,value,major,min,range){var name=e('div','activity-label'+(major?' major':''),label),track=e('div','activity-track'+(major?' all':'')),shown=items.slice(-600);shown.forEach(function(span){var segment=e('i','activity-segment'),start=Math.max(0,(span.start-min)/range*100),width=Math.max(.25,(span.end-span.start)/range*100);segment.style.setProperty('--start',start+'%');segment.style.setProperty('--width',Math.min(width,100-start)+'%');segment.style.setProperty('--segment',activityColor(span));track.append(segment)});grid.append(name,track,e('div','activity-value',value))}
|
|
644
|
+
function renderSessionStats(summary,spans,page,pageBounded,pageNumber){var root=e('div','session-stats'),stats=e('section','stats-section'),content=e('div','stats-content'),speed=e('div','stats-speed'),scope=pageBounded?'PAGED HISTORY':'COMPLETE',heading=statsHeading('Stats',scope);heading.append(statsPager(page,pageNumber));stats.append(heading);[['tg/s',rate(summary.generationTokensPerSecond)],['pp/s',rate(summary.promptTokensPerSecond)],['laps',fmt(summary.operationCount,0)],['avg/lap',summary.averageOperationDurationMs===null?'N/A':duration(summary.averageOperationDurationMs)]].forEach(function(pair){var item=e('div','stats-speed-item');item.append(e('span','',pair[0]),e('strong','',pair[1]));speed.append(item)});content.append(speed);var times=e('div','stats-columns');times.append(statsGrid('TIME / PRIMARY',[{label:'wall clock',value:wallTimeValue(summary),tone:'tone-gray',fill:true},{label:'prefill · observed',value:optionalDuration(summary.prefillDurationMs),tone:'tone-cyan',fill:true},{label:'generation stream',value:optionalDuration(summary.generationDurationMs),tone:'tone-generation',fill:true},{label:'tools',value:duration(summary.toolDurationMs),tone:'tone-tool',fill:true}]),statsGrid('TIME / DETAIL',[{label:'startup · observed',value:optionalDuration(summary.startupDurationMs),tone:'tone-gray',fill:true},{label:'first content',value:optionalDuration(summary.firstContentDurationMs),tone:'tone-cyan'},{label:'reasoning stream',value:optionalDuration(summary.reasoningDurationMs),tone:'tone-reasoning'},{label:'compaction',value:duration(summary.compactionDurationMs),tone:'tone-compaction',fill:true}]));content.append(times);var tokens=e('div','token-columns');tokens.append(statsGrid('TOKENS / TOTAL',[{label:'total',value:compact(summary.totalTokens),tone:'tone-gray',fill:true},{label:'prompt, computed',value:compact(summary.inputTokens),tone:'tone-cyan',fill:true},{label:'completion',value:compact(summary.outputTokens),tone:'tone-generation',fill:true}]),statsGrid('TOKENS / BREAKDOWN',[{label:'prompt, cached',value:compact(summary.cacheReadTokens),tone:'tone-gray',fill:true},{label:'tool results',value:summary.toolResultEstimatedTokens===null?'N/A':compact(summary.toolResultEstimatedTokens)+' est.',tone:'tone-tool',fill:true},{label:'reasoning',value:optionalCompact(summary.reasoningTokens),tone:'tone-reasoning'}]));content.append(tokens);stats.append(content);root.append(stats);var activity=e('section','stats-section'),activityContent=e('div','activity-content'),caption=e('div','activity-caption'),grid=e('div','activity-grid'),timesSeen=spans.flatMap(function(span){return[span.start,span.end]}).filter(Number.isFinite),min=timesSeen.length?Math.min.apply(null,timesSeen):Date.now(),max=timesSeen.length?Math.max.apply(null,timesSeen):min+1,range=Math.max(1,max-min),phaseNames=new Set(['pi.ai.startup','pi.ai.prefill','pi.ai.reasoning','pi.ai.generation']),leafActivity=spans.filter(function(span){return phaseNames.has(span.name)||span.name==='pi.tool.execute'||span.name==='pi.session.compaction'}),providers=spans.filter(function(span){return span.name==='pi.ai.request'}),startup=spans.filter(function(span){return span.name==='pi.ai.startup'}),prefill=spans.filter(function(span){return span.name==='pi.ai.prefill'}),reasoning=spans.filter(function(span){return span.name==='pi.ai.reasoning'}),generation=spans.filter(function(span){return span.name==='pi.ai.generation'}),tools=spans.filter(function(span){return span.name==='pi.tool.execute'}),compactions=spans.filter(function(span){return span.name==='pi.session.compaction'});activity.append(statsHeading('Activity',fmt(leafActivity.length,0)));caption.append(e('span','primary','activity'),e('span','',new Date(min).toLocaleTimeString()+' → '+new Date(max).toLocaleTimeString()),e('span','','·'),e('span','',duration(max-min)),e('span','','·'),e('span','',fmt(leafActivity.length,0)+' observed'));activityContent.append(caption);activityLane(grid,'All activity',leafActivity,fmt(leafActivity.length,0),true,min,range);activityLane(grid,'assistant',[],fmt(providers.length,0),false,min,range);activityLane(grid,'startup',startup,optionalDuration(summary.startupDurationMs),false,min,range);activityLane(grid,'prefill',prefill,optionalDuration(summary.prefillDurationMs),false,min,range);activityLane(grid,'reasoning',reasoning,optionalDuration(summary.reasoningDurationMs),false,min,range);activityLane(grid,'generation',generation,optionalDuration(summary.generationDurationMs),false,min,range);activityLane(grid,'tooling',[],fmt(tools.length,0),false,min,range);var byTool=new Map();tools.forEach(function(span){var name=typeof span.attributes['pi.tool.name']==='string'?span.attributes['pi.tool.name']:'unknown',list=byTool.get(name)||[];list.push(span);byTool.set(name,list)});[...byTool.entries()].sort(function(a,b){return b[1].length-a[1].length||a[0].localeCompare(b[0])}).slice(0,5).forEach(function(entry){activityLane(grid,entry[0],entry[1],fmt(entry[1].length,0),false,min,range)});activityLane(grid,'compaction',compactions,fmt(compactions.length,0),false,min,range);var axis=e('div','activity-axis');axis.append(e('span','','0'),e('span','','25%'),e('span','','50%'),e('span','','75%'),e('span','',duration(max-min)));grid.append(e('div','',''),axis,e('div','',''));activityContent.append(grid);activity.append(activityContent);root.append(activity);return root}
|
|
645
|
+
function renderDetail(focusControl){var stage=document.getElementById('detail');if(!currentDetail){stage.replaceChildren(e('div','empty-state','未加载 trace'));return}var summary=currentDetail.summary,page=currentDetail.page,pageNumber=currentDetail.historyIndex+1,pageBounded=!page.lifecycleComplete,spans=pairSpans(currentDetail.records,!pageBounded),view=e('div','trace-view fade-in'),hero=e('section','trace-hero'),kicker=e('span','trace-kicker','Session telemetry / '+(pageBounded?'PAGED HISTORY · PAGE '+pageNumber:'COMPLETE HISTORY')),title=e('div','trace-title'),heading=e('h1','','Session overview'),badgeTone=pageBounded?'':summary.unresolvedErrorCount?' bad':summary.unknownCount||summary.staleOpenCount||summary.abortedCount||summary.recoveredErrorCount?' warn':'',badge=e('span','trace-status'+badgeTone,pageBounded?'PAGE '+pageNumber:traceStatus(summary)),caption=e('div','trace-caption'),pathNode=e('span','trace-path',summary.path);heading.title=basename(summary.path);pathNode.title=summary.path;title.append(heading,badge);caption.append(pathNode,e('span','',elapsed(summary.modifiedAt)),e('span','',size(summary.windowBytes)+' loaded / '+size(summary.sizeBytes)),e('span','',summary.parseErrors?summary.parseErrors+' rejected records':'clean parse'),e('span','',pageBounded?'metrics cover this page only':'complete trace usage')); var gauge=e('div','context-gauge'),ring=e('div','context-ring'),ringValue=e('span','',optionalPercent(summary.contextPercent)),gaugeCopy=e('div','context-gauge-copy');ring.style.setProperty('--context',Number.isFinite(summary.contextPercent)?Math.max(0,Math.min(100,summary.contextPercent)):0);ring.append(ringValue);gaugeCopy.append(e('strong','',optionalPercent(summary.contextPercent)),e('span','','CONTEXT USED'));gauge.append(ring,gaugeCopy);hero.append(kicker,title,caption,gauge);view.append(hero);if(sessionView==='stats'){view.append(renderSessionStats(summary,spans,page,pageBounded,pageNumber));stage.replaceChildren(view);return}var metrics=e('section','trace-metrics'),usageTitle=pageBounded?'observed on history page '+pageNumber:'observed in complete trace',lifecycleTitle='lifecycle classification is unavailable across page boundaries';metrics.append(metric('Spans',fmt(summary.spanCount,0),'',fmt(summary.spanCount,0)+' unique spans'),metric('Active',pageBounded?'N/A':fmt(summary.openCount,0),pageBounded?'':summary.openCount?'active':'',pageBounded?lifecycleTitle:summary.runtimeOpenCount?'session runtime remains open but is excluded':'no active work spans'),metric('Stale',pageBounded?'N/A':fmt(summary.staleOpenCount,0),pageBounded?'':summary.staleOpenCount?'warning':'',pageBounded?lifecycleTitle:fmt(summary.propagatedStaleOpenCount,0)+' propagated stale parents excluded'),metric('Unresolved',pageBounded?'N/A':fmt(summary.unresolvedErrorCount,0),pageBounded?'':summary.unresolvedErrorCount?'danger':'',pageBounded?lifecycleTitle:''),metric('Recovered',pageBounded?'N/A':fmt(summary.recoveredErrorCount,0),pageBounded?'':summary.recoveredErrorCount?'warning':'',pageBounded?lifecycleTitle:''),metric(pageBounded?'Raw errors':'Propagated incidents',pageBounded?fmt(summary.errorCount,0):fmt(summary.propagatedErrorCount,0),pageBounded&&summary.errorCount?'danger':'',pageBounded?'error span ends observed on this page':fmt(summary.propagatedErrorSpanCount,0)+' propagated parent spans grouped into '+fmt(summary.propagatedErrorCount,0)+' root-cause incidents'),metric(pageBounded?'Raw aborted':'Aborted incidents',pageBounded?fmt(summary.abortedSpanCount,0):fmt(summary.abortedCount,0),(pageBounded?summary.abortedSpanCount:summary.abortedCount)?'warning':'',pageBounded?'aborted span ends observed on this page':fmt(summary.abortedSpanCount,0)+' aborted spans grouped into '+fmt(summary.abortedCount,0)+' root-cause incidents'),metric('Unknown',fmt(summary.unknownCount,0),summary.unknownCount?'warning':''),metric('Operations',fmt(summary.operationCount,0)),metric('Avg operation',summary.averageOperationDurationMs===null?'N/A':duration(summary.averageOperationDurationMs),'',summary.averageOperationDurationMs===null?'unavailable':'mean completed operation duration'),metric(pageBounded?'Page model calls':'Model calls',fmt(summary.providerCount,0),'',usageTitle),metric('Tools',fmt(summary.toolCount,0)),metric('Compactions',fmt(summary.compactionCount,0),'',duration(summary.compactionDurationMs)+' client-observed time'),metric(pageBounded?'Page tokens':'Observed tokens',compact(summary.totalTokens),'',fmt(summary.totalTokens,0)+' tokens '+usageTitle),metric('Uncached input',compact(summary.inputTokens),'',fmt(summary.inputTokens,0)+' tokens '+usageTitle),metric('Cache read',compact(summary.cacheReadTokens),'',fmt(summary.cacheReadTokens,0)+' tokens '+usageTitle),metric('Output',compact(summary.outputTokens),'',fmt(summary.outputTokens,0)+' tokens '+usageTitle),metric('Reasoning tokens',optionalCompact(summary.reasoningTokens),'',summary.reasoningTokens===null?'provider did not report a reasoning breakdown':fmt(summary.reasoningTokens,0)+' provider-reported subset of output'),metric('Tool result est.',optionalCompact(summary.toolResultEstimatedTokens),'',summary.toolResultEstimatedTokens===null?'unavailable in legacy trace':fmt(summary.toolResultEstimatedTokens,0)+' estimated tokens; content is not retained'),metric('Cache share',percent(summary.cacheReadTokens,summary.totalTokens),'',usageTitle),metric(pageBounded?'Page context':'Latest context',optionalPercent(summary.contextPercent),'',summary.contextTokens===null?'unavailable':fmt(summary.contextTokens,0)+' / '+fmt(summary.contextWindowTokens,0)+' estimated context tokens'),metric('Observed startup',optionalDuration(summary.startupDurationMs),'','request dispatch to response headers; client-observed'),metric('Observed prefill',optionalDuration(summary.prefillDurationMs),'','response headers to first generated content; not provider compute time'),metric('Reasoning stream',optionalDuration(summary.reasoningDurationMs),'','client-observed reasoning stream spans'),metric('Generation stream',optionalDuration(summary.generationDurationMs),'','client-observed text and tool-call stream spans'),metric('PP/s observed',rate(summary.promptTokensPerSecond),'','reported uncached input divided by end-to-end first-content latency'),metric('TG/s observed',rate(summary.generationTokensPerSecond),'','reported output divided by observed reasoning plus generation stream time'),metric(pageBounded?'Page cost':'Cost',compactMoney(summary.estimatedCostUsd),'',Number(summary.estimatedCostUsd||0).toFixed(4)+' USD '+usageTitle),metric(wallTimeLabel(summary),wallTimeValue(summary),'',summary.wallTimeMs===null?'unavailable':fmt(summary.wallTimeMs,0)+' ms · '+summary.wallTimeMode));view.append(metrics);var body=e('section','trace-body'),timeline=e('div','timeline-pane'),toolbar=e('div','toolbar'),search=e('input','span-search'),select=e('select','family-select'),tabs=e('div','status-tabs'),pageNav=e('div','page-nav');search.type='search';search.placeholder='Filter span name';search.setAttribute('aria-label','Filter span name');search.value=spanQuery;search.oninput=function(){spanQuery=search.value.toLowerCase();renderDetail('span-search')};[['all','All spans'],['model','Model'],['tool','Tools'],['agent','Agent'],['session','Session']].forEach(function(option){var node=e('option','',option[1]);node.value=option[0];if(option[0]===familyFilter)node.selected=true;select.append(node)});select.setAttribute('aria-label','Span family');select.onchange=function(){familyFilter=select.value;renderDetail()};[['all','ALL'],['anomaly','ANOMALY']].forEach(function(option){var button=e('button','status-tab'+(statusFilter===option[0]?' active':''),option[1]);button.type='button';button.setAttribute('aria-pressed',statusFilter===option[0]?'true':'false');button.onclick=function(){statusFilter=option[0];renderDetail()};tabs.append(button)});var newer=e('button','page-button','NEWER'),pageLabel=e('span','page-index','PAGE '+pageNumber),older=e('button','page-button','OLDER');newer.type='button';older.type='button';newer.disabled=currentDetail.historyIndex===0;older.disabled=!page.hasEarlier;newer.onclick=function(){loadHistoryPage(-1)};older.onclick=function(){loadHistoryPage(1)};pageNav.append(newer,pageLabel,older);toolbar.append(search,select,tabs,pageNav);timeline.append(toolbar);var scale=e('div','timeline-scale'),track=e('div','scale-track');track.append(e('span','','0%'),e('span','','25'),e('span','','50'),e('span','','75'),e('span','','100%'));scale.append(e('span','','Span / hierarchy'),track,e('span','','Duration'));timeline.append(scale);var list=e('div','span-list'),filtered=spans.filter(function(span){return(!spanQuery||displaySpanName(span).toLowerCase().includes(spanQuery))&&(familyFilter==='all'||span.family===familyFilter)&&(statusFilter==='all'||span.status==='error'||span.status==='unknown'||span.status==='stale')});var nextSelected=filtered.find(function(span){return span.spanId===selectedSpan})||filtered[0]||spans[0];if(nextSelected)selectedSpan=nextSelected.spanId;var min=Math.min.apply(null,spans.map(function(x){return x.start}).concat([Date.now()])),max=Math.max.apply(null,spans.map(function(x){return x.end}).concat([min+1])),range=Math.max(1,max-min);if(!filtered.length)list.append(e('div','empty-state','没有匹配的 span'));filtered.forEach(function(span){var row=e('button','span-row'+(selectedSpan===span.spanId?' selected':'')),identity=e('div','span-identity'),dot=e('i','span-dot '+span.family+spanTone(span)),name=e('span','span-name',displaySpanName(span)),track=e('div','span-track'),bar=e('i','span-bar '+span.family+spanTone(span)),duration=e('span','span-duration',fmt(span.durationMs)+' ms');row.type='button';row.setAttribute('aria-pressed',selectedSpan===span.spanId?'true':'false');row.style.setProperty('--depth',Math.min(span.depth,5));bar.style.setProperty('--start',Math.max(0,(span.start-min)/range*100)+'%');bar.style.setProperty('--width',Math.max(.35,(span.end-span.start)/range*100)+'%');track.append(bar);identity.append(dot,name);row.append(identity,track,duration);row.onclick=function(){selectedSpan=span.spanId;renderDetail()};list.append(row)});timeline.append(list);var inspectorSpan=nextSelected;body.append(timeline,renderInspector(inspectorSpan,!pageBounded));view.append(body);stage.replaceChildren(view);if(focusControl){var control=stage.querySelector('.'+focusControl);if(control){control.focus();if(control.setSelectionRange)control.setSelectionRange(control.value.length,control.value.length)}}}
|
|
646
|
+
async function loadDetail(id){var stage=document.getElementById('detail');stage.replaceChildren(e('div','empty-state','读取 span records…'));try{var data=await api('/api/trace?id='+encodeURIComponent(id)+'&snapshot='+encodeURIComponent(traceSnapshot));currentDetail={id:id,summary:data.summary,records:data.records,page:data.page,history:[null],historyIndex:0};renderDetail()}catch(error){stage.replaceChildren(e('div','empty-state','读取失败 / '+error.message))}}
|
|
647
|
+
async function loadHistoryPage(direction){if(!currentDetail)return;var previous=currentDetail,targetIndex=currentDetail.historyIndex+direction,history=currentDetail.history.slice();if(direction>0){var cursor=currentDetail.page.nextCursor;if(!cursor)return;history=history.slice(0,currentDetail.historyIndex+1);history.push(cursor);targetIndex=history.length-1}if(targetIndex<0||targetIndex>=history.length)return;var requestedCursor=history[targetIndex],stage=document.getElementById('detail');stage.replaceChildren(e('div','empty-state','读取历史分页…'));try{var endpoint=requestedCursor?'/api/trace-page?id='+encodeURIComponent(currentDetail.id)+'&snapshot='+encodeURIComponent(traceSnapshot)+'&cursor='+encodeURIComponent(requestedCursor):'/api/trace?id='+encodeURIComponent(currentDetail.id)+'&snapshot='+encodeURIComponent(traceSnapshot),data=await api(endpoint);selectedSpan='';currentDetail={id:currentDetail.id,summary:data.summary,records:data.records,page:data.page,history:history,historyIndex:targetIndex};renderDetail()}catch(error){currentDetail=previous;renderDetail();stage.title='读取分页失败 / '+error.message}}
|
|
648
|
+
async function load(){var state=document.getElementById('state'),button=document.getElementById('refresh');if(!token){state.textContent='URL 缺少访问 token';return}button.classList.add('is-loading');state.textContent='SCANNING LOCAL TRACES';try{var data=await api('/api/traces');traces=data.traces;fleet=data.fleet;traceSnapshot=data.snapshotId;document.getElementById('root-path').textContent='DATA ROOT '+data.root;state.textContent=(data.scanLimited?'SCAN LIMITED':'LOCAL ONLINE')+' · '+traces.length+' TRACES';renderSignals();if(selectedTrace&&!traces.some(function(x){return x.id===selectedTrace&&(!x.orphan||showOrphans)}))selectedTrace='';if(!selectedTrace&&traces[0])selectedTrace=(traces.find(function(trace){return !trace.orphan})||(showOrphans?traces[0]:null)||{}).id||'';renderTraceList();if(selectedTrace)await loadDetail(selectedTrace);else{currentDetail=null;renderDetail()}}catch(error){state.textContent='CONNECTION ERROR · '+error.message}finally{button.classList.remove('is-loading')}}
|
|
649
|
+
function selectSessionView(next){sessionView=next==='trace'?'trace':'stats';var statsButton=document.getElementById('view-stats'),traceButton=document.getElementById('view-trace');statsButton.classList.toggle('active',sessionView==='stats');traceButton.classList.toggle('active',sessionView==='trace');statsButton.setAttribute('aria-pressed',sessionView==='stats'?'true':'false');traceButton.setAttribute('aria-pressed',sessionView==='trace'?'true':'false');renderDetail()}
|
|
650
|
+
document.getElementById('view-stats').onclick=function(){selectSessionView('stats')};document.getElementById('view-trace').onclick=function(){selectSessionView('trace')};document.getElementById('refresh').onclick=load;document.getElementById('filter').oninput=renderTraceList;document.getElementById('orphan-toggle').onclick=function(){showOrphans=!showOrphans;if(!showOrphans&&traces.some(function(trace){return trace.id===selectedTrace&&trace.orphan})){selectedTrace=(traces.find(function(trace){return !trace.orphan})||{}).id||'';selectedSpan='';if(selectedTrace)loadDetail(selectedTrace);else{currentDetail=null;renderDetail()}}renderTraceList()};document.addEventListener('keydown',function(event){if(event.key==='r'&&!event.metaKey&&!event.ctrlKey&&document.activeElement.tagName!=='INPUT'){event.preventDefault();load()}if(event.key==='/'&&document.activeElement.tagName!=='INPUT'){event.preventDefault();document.getElementById('filter').focus()}});load();
|
|
651
|
+
})();
|
|
652
|
+
</script>
|
|
653
|
+
</body>
|
|
654
|
+
</html>`;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
export async function startTraceDashboard(options = {}) {
|
|
658
|
+
const rootState = await canonicalTraceRoot(options.root ?? resolve(homedir(), ".pi/agent/sessions"));
|
|
659
|
+
const root = rootState.root;
|
|
660
|
+
const token = options.token ?? randomBytes(24).toString("base64url");
|
|
661
|
+
const nonce = randomBytes(18).toString("base64url");
|
|
662
|
+
let expectedHosts = new Set();
|
|
663
|
+
let activeApiRequests = 0;
|
|
664
|
+
let inFlightSummaryScan;
|
|
665
|
+
let cachedSummaryScan;
|
|
666
|
+
let summaryCacheExpiresAt = 0;
|
|
667
|
+
const summarySnapshots = new Map();
|
|
668
|
+
const sharedSummaryScan = (force = false) => {
|
|
669
|
+
if (inFlightSummaryScan) return inFlightSummaryScan;
|
|
670
|
+
if (!force && cachedSummaryScan && Date.now() < summaryCacheExpiresAt) return Promise.resolve(cachedSummaryScan);
|
|
671
|
+
inFlightSummaryScan = scanTraceFiles(root).then((result) => {
|
|
672
|
+
const snapshot = { ...result, snapshotId: randomBytes(12).toString("base64url") };
|
|
673
|
+
summarySnapshots.set(snapshot.snapshotId, snapshot);
|
|
674
|
+
while (summarySnapshots.size > MAX_SUMMARY_SNAPSHOTS) summarySnapshots.delete(summarySnapshots.keys().next().value);
|
|
675
|
+
cachedSummaryScan = snapshot;
|
|
676
|
+
summaryCacheExpiresAt = Date.now() + SUMMARY_CACHE_TTL_MS;
|
|
677
|
+
return snapshot;
|
|
678
|
+
}).finally(() => { inFlightSummaryScan = undefined; });
|
|
679
|
+
return inFlightSummaryScan;
|
|
680
|
+
};
|
|
681
|
+
const server = createServer(async (request, response) => {
|
|
682
|
+
try {
|
|
683
|
+
if (!expectedHosts.has(request.headers.host ?? "")) { textResponse(response, 421, "Invalid Host\n"); return; }
|
|
684
|
+
if (request.method !== "GET") { textResponse(response, 405, "Method Not Allowed\n", { allow: "GET" }); return; }
|
|
685
|
+
const url = new URL(request.url ?? "/", "http://127.0.0.1");
|
|
686
|
+
if (url.pathname === "/") {
|
|
687
|
+
const body = dashboardHtml(nonce);
|
|
688
|
+
response.writeHead(200, {
|
|
689
|
+
"content-type": "text/html; charset=utf-8",
|
|
690
|
+
"content-length": Buffer.byteLength(body),
|
|
691
|
+
"cache-control": "no-store",
|
|
692
|
+
"x-content-type-options": "nosniff",
|
|
693
|
+
"referrer-policy": "no-referrer",
|
|
694
|
+
"content-security-policy": `default-src 'none'; script-src 'nonce-${nonce}'; style-src 'nonce-${nonce}'; connect-src 'self'; img-src 'none'; object-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'`,
|
|
695
|
+
});
|
|
696
|
+
response.end(body);
|
|
697
|
+
return;
|
|
698
|
+
}
|
|
699
|
+
if (url.pathname !== "/api/traces" && url.pathname !== "/api/trace" && url.pathname !== "/api/trace-page") { jsonResponse(response, 404, { error: "not_found" }); return; }
|
|
700
|
+
if (!authorized(request, token)) { jsonResponse(response, 401, { error: "unauthorized" }); return; }
|
|
701
|
+
if (activeApiRequests >= MAX_API_CONCURRENCY) { jsonResponse(response, 429, { error: "too_many_requests" }); return; }
|
|
702
|
+
activeApiRequests += 1;
|
|
703
|
+
try {
|
|
704
|
+
if (url.pathname === "/api/traces") {
|
|
705
|
+
const scanned = await sharedSummaryScan(true);
|
|
706
|
+
const summaries = scanned.traces.map(({ summary }) => summary);
|
|
707
|
+
jsonResponse(response, 200, { root: scanned.root, snapshotId: scanned.snapshotId, scanLimited: scanned.scanLimited, fleet: summarizeFleet(summaries, scanned.scanLimited), traces: summaries });
|
|
708
|
+
return;
|
|
709
|
+
}
|
|
710
|
+
const scanned = summarySnapshots.get(url.searchParams.get("snapshot") ?? "");
|
|
711
|
+
if (!scanned) { jsonResponse(response, 409, { error: "snapshot_expired" }); return; }
|
|
712
|
+
const trace = scanned.traces.find(({ summary }) => summary.id === url.searchParams.get("id"));
|
|
713
|
+
if (!trace) { jsonResponse(response, 404, { error: "trace_not_found" }); return; }
|
|
714
|
+
let endingOffset;
|
|
715
|
+
let maximumBytes = trace.summary.windowBytes ?? MAX_SUMMARY_TRACE_BYTES;
|
|
716
|
+
if (url.pathname === "/api/trace-page") {
|
|
717
|
+
endingOffset = decodeTraceCursor(url.searchParams.get("cursor"), trace.summary.sizeBytes);
|
|
718
|
+
if (endingOffset === undefined) { jsonResponse(response, 400, { error: "invalid_cursor" }); return; }
|
|
719
|
+
maximumBytes = MAX_SUMMARY_TRACE_BYTES;
|
|
720
|
+
}
|
|
721
|
+
const loaded = await readTraceTail(scanned.root, trace.path, maximumBytes, MAX_API_RECORDS, trace.summary.sizeBytes, endingOffset);
|
|
722
|
+
const page = tracePageMetadata(loaded, trace.summary.sizeBytes);
|
|
723
|
+
const detail = {
|
|
724
|
+
...loaded,
|
|
725
|
+
partial: page.hasEarlier || page.hasNewer,
|
|
726
|
+
modifiedAt: trace.summary.modifiedAt,
|
|
727
|
+
orphan: trace.summary.orphan,
|
|
728
|
+
};
|
|
729
|
+
jsonResponse(response, 200, { summary: summarizeTrace(scanned.root, trace.path, detail), records: detail.records, page });
|
|
730
|
+
} finally { activeApiRequests -= 1; }
|
|
731
|
+
} catch { jsonResponse(response, 500, { error: "internal_error" }); }
|
|
732
|
+
});
|
|
733
|
+
server.on("clientError", (_error, socket) => socket.destroy());
|
|
734
|
+
await new Promise((accept, reject) => {
|
|
735
|
+
const onError = (error) => reject(error);
|
|
736
|
+
const onListening = () => { server.off("error", onError); accept(); };
|
|
737
|
+
server.once("error", onError);
|
|
738
|
+
server.listen({ host: "127.0.0.1", port: options.port ?? 0 }, onListening);
|
|
739
|
+
});
|
|
740
|
+
if (typeof options.onError === "function") server.on("error", options.onError);
|
|
741
|
+
const address = server.address();
|
|
742
|
+
if (!address || typeof address === "string") throw new Error("trace dashboard did not bind a TCP port");
|
|
743
|
+
expectedHosts = new Set([`127.0.0.1:${address.port}`, `localhost:${address.port}`]);
|
|
744
|
+
const baseUrl = `http://127.0.0.1:${address.port}`;
|
|
745
|
+
return {
|
|
746
|
+
root,
|
|
747
|
+
token,
|
|
748
|
+
baseUrl,
|
|
749
|
+
url: `${baseUrl}/#token=${encodeURIComponent(token)}`,
|
|
750
|
+
async close() {
|
|
751
|
+
if (!server.listening) return;
|
|
752
|
+
await new Promise((resolveClose, rejectClose) => server.close((error) => error ? rejectClose(error) : resolveClose()));
|
|
753
|
+
},
|
|
754
|
+
};
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
async function main() {
|
|
758
|
+
let stopping = false;
|
|
759
|
+
let dashboard;
|
|
760
|
+
async function stop(exitCode = 0) {
|
|
761
|
+
if (stopping) { process.exit(130); return; }
|
|
762
|
+
stopping = true;
|
|
763
|
+
const forced = setTimeout(() => process.exit(1), SHUTDOWN_TIMEOUT_MS);
|
|
764
|
+
forced.unref?.();
|
|
765
|
+
await dashboard?.close().catch(() => {});
|
|
766
|
+
clearTimeout(forced);
|
|
767
|
+
process.exit(exitCode);
|
|
768
|
+
}
|
|
769
|
+
dashboard = await startTraceDashboard({
|
|
770
|
+
onError(error) {
|
|
771
|
+
process.stderr.write(`pi-agent: trace dashboard server error: ${error instanceof Error ? error.message : String(error)}\n`);
|
|
772
|
+
void stop(1);
|
|
773
|
+
},
|
|
774
|
+
});
|
|
775
|
+
process.stdout.write(`Pi Agent trace dashboard: ${dashboard.url}\n`);
|
|
776
|
+
process.stdout.write(`Data: ${dashboard.root}\n`);
|
|
777
|
+
if (process.env.PI_AGENT_TRACE_DASHBOARD_TEST_ONCE === "1") { await dashboard.close(); return; }
|
|
778
|
+
process.stdout.write("Press Ctrl+C to stop.\n");
|
|
779
|
+
process.on("SIGINT", () => { void stop(0); });
|
|
780
|
+
process.on("SIGTERM", () => { void stop(0); });
|
|
781
|
+
await new Promise(() => {});
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
const directEntry = process.argv[1] ? pathToFileURL(resolve(process.argv[1])).href : undefined;
|
|
785
|
+
if (directEntry === import.meta.url) main().catch((error) => {
|
|
786
|
+
process.stderr.write(`pi-agent: trace dashboard failed: ${error instanceof Error ? error.message : String(error)}\n`);
|
|
787
|
+
process.exit(1);
|
|
788
|
+
});
|