@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.
Files changed (3789) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +61 -0
  3. package/THIRD_PARTY_NOTICES.md +94 -0
  4. package/bin/pi-agent +355 -0
  5. package/bin/rotom +24 -0
  6. package/extensions/browser/browser-relay.ts +440 -0
  7. package/extensions/browser/chrome-extension/coordinate-click.js +48 -0
  8. package/extensions/browser/chrome-extension/full-read.js +113 -0
  9. package/extensions/browser/chrome-extension/interaction-observation.js +5 -0
  10. package/extensions/browser/chrome-extension/interaction-scroll-target.js +54 -0
  11. package/extensions/browser/chrome-extension/interaction-target-state.js +88 -0
  12. package/extensions/browser/chrome-extension/manifest.json +23 -0
  13. package/extensions/browser/chrome-extension/operation-chrome.js +18 -0
  14. package/extensions/browser/chrome-extension/operation-guard.js +12 -0
  15. package/extensions/browser/chrome-extension/page-alerts.js +89 -0
  16. package/extensions/browser/chrome-extension/relay-deadline.js +55 -0
  17. package/extensions/browser/chrome-extension/rendered-text.js +42 -0
  18. package/extensions/browser/chrome-extension/scoped-ax-ref.js +14 -0
  19. package/extensions/browser/chrome-extension/service-worker.js +1244 -0
  20. package/extensions/browser/chrome-extension/shared-tab-group.js +18 -0
  21. package/extensions/browser/chrome-extension/tab-list-status.js +58 -0
  22. package/extensions/browser/chrome-extension/window-open-correlation.js +15 -0
  23. package/extensions/browser/index.ts +505 -0
  24. package/extensions/browser/install-chrome-relay.mjs +216 -0
  25. package/extensions/browser/native-host.mjs +192 -0
  26. package/extensions/browser/relay-protocol.mjs +19 -0
  27. package/extensions/browser/relay-setup-probe.mjs +38 -0
  28. package/extensions/coding-policy/index.ts +38 -0
  29. package/extensions/coding-policy/pi-runtime-drift.ts +75 -0
  30. package/extensions/coding-policy/repair-hints.ts +252 -0
  31. package/extensions/observability/dashboard.mjs +788 -0
  32. package/extensions/observability/index.ts +677 -0
  33. package/extensions/third-party/ask-continuation.ts +78 -0
  34. package/extensions/third-party/computer-use-recovery.ts +339 -0
  35. package/extensions/third-party/deferred-tools.ts +197 -0
  36. package/extensions/third-party/index.ts +84 -0
  37. package/extensions/third-party/node_modules/.package-lock.json +175 -0
  38. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/LICENSE +21 -0
  39. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/README.md +92 -0
  40. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/assets/reference/img.jpg +0 -0
  41. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/architecture.md +158 -0
  42. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/configuration.md +92 -0
  43. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/development.md +123 -0
  44. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/linux.md +65 -0
  45. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/troubleshooting.md +156 -0
  46. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/usage.md +140 -0
  47. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/docs/windows-bridge.md +65 -0
  48. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/extensions/computer-use.ts +203 -0
  49. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/Cargo.lock +1204 -0
  50. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/Cargo.toml +18 -0
  51. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/atspi.rs +640 -0
  52. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/error.rs +65 -0
  53. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/lib.rs +11 -0
  54. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/main.rs +1074 -0
  55. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/protocol.rs +49 -0
  56. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/state.rs +293 -0
  57. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/wayland.rs +89 -0
  58. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/src/x11.rs +909 -0
  59. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/linux/bridge-rs/tests/protocol_tests.rs +73 -0
  60. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/macos/bridge.swift +3611 -0
  61. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/Cargo.lock +396 -0
  62. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/Cargo.toml +30 -0
  63. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/capture.rs +518 -0
  64. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/error.rs +81 -0
  65. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/input.rs +501 -0
  66. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/lib.rs +16 -0
  67. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/main.rs +1683 -0
  68. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/protocol.rs +53 -0
  69. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/refs.rs +237 -0
  70. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/state.rs +55 -0
  71. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/uia.rs +1252 -0
  72. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/src/window.rs +718 -0
  73. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/tests/protocol_tests.rs +252 -0
  74. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/tests/refs_tests.rs +86 -0
  75. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/native/windows/bridge-rs/tests/state_tests.rs +33 -0
  76. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/package.json +84 -0
  77. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/linux/arm64/linux-bridge +0 -0
  78. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/linux/x64/linux-bridge +0 -0
  79. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/macos/arm64/bridge +0 -0
  80. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/macos/universal/pi-computer-use.app/Contents/Info.plist +13 -0
  81. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/macos/universal/pi-computer-use.app/Contents/MacOS/bridge +0 -0
  82. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/macos/universal/pi-computer-use.app/Contents/_CodeSignature/CodeResources +115 -0
  83. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/prebuilt/macos/x64/bridge +0 -0
  84. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/scripts/build-native.mjs +277 -0
  85. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/scripts/setup-helper.mjs +617 -0
  86. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/actions.ts +130 -0
  87. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/bridge.ts +2423 -0
  88. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/cdp.ts +658 -0
  89. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/config.ts +113 -0
  90. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/contract.ts +104 -0
  91. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/note.ts +195 -0
  92. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/outline.ts +651 -0
  93. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/output.ts +134 -0
  94. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/permissions.ts +111 -0
  95. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/architecture.ts +23 -0
  96. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/coerce.ts +16 -0
  97. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/index.ts +59 -0
  98. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/linux/backend.ts +186 -0
  99. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/linux/helper.ts +238 -0
  100. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/backend.ts +131 -0
  101. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/browser.ts +110 -0
  102. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/helper-path.d.mts +9 -0
  103. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/helper-path.mjs +34 -0
  104. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/helper.ts +291 -0
  105. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/macos/permissions.ts +146 -0
  106. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/types.ts +222 -0
  107. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/windows/backend.ts +142 -0
  108. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/platform/windows/helper.ts +140 -0
  109. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/runtime.ts +129 -0
  110. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/state.ts +146 -0
  111. package/extensions/third-party/node_modules/@injaneity/pi-computer-use/src/view.ts +147 -0
  112. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/LICENSE +21 -0
  113. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/README.md +94 -0
  114. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/ask-user-question.ts +336 -0
  115. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/config.ts +75 -0
  116. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/docs/configuration.md +120 -0
  117. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/docs/hosts.md +93 -0
  118. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/docs/keyboard.md +103 -0
  119. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/docs/localization.md +83 -0
  120. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/docs/tool-schema.md +121 -0
  121. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/events.ts +55 -0
  122. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/index.ts +54 -0
  123. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/de.json +31 -0
  124. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/en.json +31 -0
  125. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/es.json +31 -0
  126. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/fr.json +31 -0
  127. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/pt-BR.json +31 -0
  128. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/pt.json +31 -0
  129. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/ru.json +31 -0
  130. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/uk.json +31 -0
  131. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/locales/zh.json +33 -0
  132. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/package.json +100 -0
  133. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/reconcile.ts +47 -0
  134. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/rpc-fallback.ts +166 -0
  135. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/build-questionnaire.ts +323 -0
  136. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/external-editor.ts +62 -0
  137. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/i18n-bridge.ts +51 -0
  138. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/key-router.ts +310 -0
  139. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/questionnaire-session.ts +250 -0
  140. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/row-intent.ts +143 -0
  141. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/selectors/contract.ts +24 -0
  142. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/selectors/derivations.ts +40 -0
  143. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/selectors/focus.ts +17 -0
  144. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/selectors/projections.ts +99 -0
  145. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/state-reducer.ts +331 -0
  146. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/state/state.ts +57 -0
  147. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/tool/format-answer.ts +29 -0
  148. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/tool/response-envelope.ts +47 -0
  149. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/tool/types.ts +145 -0
  150. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/tool/validate-questionnaire.ts +56 -0
  151. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/component-binding.ts +45 -0
  152. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/inline-input.ts +66 -0
  153. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/multi-select-view.ts +177 -0
  154. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/option-list-view.ts +68 -0
  155. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/preview/markdown-content-cache.ts +77 -0
  156. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/preview/preview-block-renderer.ts +109 -0
  157. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/preview/preview-box-renderer.ts +86 -0
  158. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/preview/preview-layout-decider.ts +207 -0
  159. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/preview/preview-pane.ts +233 -0
  160. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/submit-picker.ts +65 -0
  161. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/tab-bar.ts +57 -0
  162. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/components/wrapping-select.ts +288 -0
  163. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/dialog-builder.ts +224 -0
  164. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/props-adapter.ts +117 -0
  165. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/stateful-view.ts +24 -0
  166. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/tab-components.ts +16 -0
  167. package/extensions/third-party/node_modules/@juicesharp/rpiv-ask-user-question/view/tab-content-strategy.ts +249 -0
  168. package/extensions/third-party/node_modules/@juicesharp/rpiv-config/CHANGELOG.md +118 -0
  169. package/extensions/third-party/node_modules/@juicesharp/rpiv-config/README.md +70 -0
  170. package/extensions/third-party/node_modules/@juicesharp/rpiv-config/config.ts +309 -0
  171. package/extensions/third-party/node_modules/@juicesharp/rpiv-config/index.ts +13 -0
  172. package/extensions/third-party/node_modules/@juicesharp/rpiv-config/package.json +39 -0
  173. package/extensions/third-party/node_modules/@narumitw/pi-goal/LICENSE +21 -0
  174. package/extensions/third-party/node_modules/@narumitw/pi-goal/README.md +361 -0
  175. package/extensions/third-party/node_modules/@narumitw/pi-goal/package.json +56 -0
  176. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/accounting.ts +106 -0
  177. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/command-registration.ts +129 -0
  178. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/command.ts +151 -0
  179. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/commands.ts +482 -0
  180. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/errors.ts +176 -0
  181. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/goal.ts +52 -0
  182. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/index.ts +1 -0
  183. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/lifecycle.ts +575 -0
  184. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/markers.ts +25 -0
  185. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/menu.ts +685 -0
  186. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/persistence.ts +283 -0
  187. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/prompts.ts +115 -0
  188. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/run-protocol.ts +380 -0
  189. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/runtime.ts +1493 -0
  190. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/safety.ts +78 -0
  191. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/settings-ui.ts +515 -0
  192. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/settings.ts +201 -0
  193. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/tool-policy.ts +180 -0
  194. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/tools.ts +416 -0
  195. package/extensions/third-party/node_modules/@narumitw/pi-goal/src/wait.ts +75 -0
  196. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/LICENSE +21 -0
  197. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/README.md +739 -0
  198. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/browse.d.ts +5 -0
  199. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/browse.js +356 -0
  200. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/contracts.d.ts +77 -0
  201. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/contracts.js +10 -0
  202. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/document-formatting.d.ts +13 -0
  203. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/document-formatting.js +181 -0
  204. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/document-sanitization.d.ts +1 -0
  205. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/document-sanitization.js +19 -0
  206. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/dynamic-border.d.ts +8 -0
  207. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/dynamic-border.js +11 -0
  208. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/index.d.ts +11 -0
  209. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/index.js +618 -0
  210. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/input.d.ts +8 -0
  211. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/input.js +94 -0
  212. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/mermaid.d.ts +8 -0
  213. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/mermaid.js +106 -0
  214. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/multi-select.d.ts +2 -0
  215. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/multi-select.js +233 -0
  216. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/rendering.d.ts +13 -0
  217. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/rendering.js +50 -0
  218. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/review.d.ts +9 -0
  219. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/review.js +203 -0
  220. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/selection-controller.d.ts +17 -0
  221. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/selection-controller.js +38 -0
  222. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/syntax-highlighting.d.ts +4 -0
  223. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/syntax-highlighting.js +227 -0
  224. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/task-loader.d.ts +19 -0
  225. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/components/task-loader.js +55 -0
  226. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/confirmation.d.ts +30 -0
  227. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/confirmation.js +118 -0
  228. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/custom-interaction.d.ts +40 -0
  229. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/custom-interaction.js +174 -0
  230. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/index.d.ts +11 -0
  231. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/index.js +10 -0
  232. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/interaction-hints.d.ts +14 -0
  233. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/interaction-hints.js +33 -0
  234. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/interaction.d.ts +40 -0
  235. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/interaction.js +169 -0
  236. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/live-choice.d.ts +63 -0
  237. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/live-choice.js +408 -0
  238. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/model.d.ts +4 -0
  239. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/model.js +113 -0
  240. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/navigator.d.ts +10 -0
  241. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/navigator.js +58 -0
  242. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/runtime.d.ts +27 -0
  243. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/runtime.js +479 -0
  244. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/task.d.ts +29 -0
  245. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/task.js +158 -0
  246. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/terminal-text.d.ts +6 -0
  247. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/terminal-text.js +104 -0
  248. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/index.d.ts +3 -0
  249. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/index.js +2 -0
  250. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/rpc-harness.d.ts +2 -0
  251. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/rpc-harness.js +134 -0
  252. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/tui-harness.d.ts +2 -0
  253. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/tui-harness.js +314 -0
  254. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/types.d.ts +72 -0
  255. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/testing/types.js +1 -0
  256. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/text.d.ts +2 -0
  257. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/text.js +9 -0
  258. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/types.d.ts +192 -0
  259. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/dist/types.js +1 -0
  260. package/extensions/third-party/node_modules/@narumitw/pi-tui-kit/package.json +67 -0
  261. package/extensions/third-party/node_modules/acorn/CHANGELOG.md +998 -0
  262. package/extensions/third-party/node_modules/acorn/LICENSE +21 -0
  263. package/extensions/third-party/node_modules/acorn/README.md +309 -0
  264. package/extensions/third-party/node_modules/acorn/bin/acorn +4 -0
  265. package/extensions/third-party/node_modules/acorn/dist/acorn.d.mts +897 -0
  266. package/extensions/third-party/node_modules/acorn/dist/acorn.d.ts +897 -0
  267. package/extensions/third-party/node_modules/acorn/dist/acorn.js +6342 -0
  268. package/extensions/third-party/node_modules/acorn/dist/acorn.mjs +6313 -0
  269. package/extensions/third-party/node_modules/acorn/dist/bin.js +90 -0
  270. package/extensions/third-party/node_modules/acorn/package.json +50 -0
  271. package/extensions/third-party/node_modules/grok-mermaid/CHANGELOG.md +46 -0
  272. package/extensions/third-party/node_modules/grok-mermaid/LICENSE +205 -0
  273. package/extensions/third-party/node_modules/grok-mermaid/README.md +191 -0
  274. package/extensions/third-party/node_modules/grok-mermaid/dist/ansi.d.ts +16 -0
  275. package/extensions/third-party/node_modules/grok-mermaid/dist/ansi.d.ts.map +1 -0
  276. package/extensions/third-party/node_modules/grok-mermaid/dist/ansi.js +23 -0
  277. package/extensions/third-party/node_modules/grok-mermaid/dist/ansi.js.map +1 -0
  278. package/extensions/third-party/node_modules/grok-mermaid/dist/canvas.d.ts +87 -0
  279. package/extensions/third-party/node_modules/grok-mermaid/dist/canvas.d.ts.map +1 -0
  280. package/extensions/third-party/node_modules/grok-mermaid/dist/canvas.js +366 -0
  281. package/extensions/third-party/node_modules/grok-mermaid/dist/canvas.js.map +1 -0
  282. package/extensions/third-party/node_modules/grok-mermaid/dist/graph.d.ts +74 -0
  283. package/extensions/third-party/node_modules/grok-mermaid/dist/graph.d.ts.map +1 -0
  284. package/extensions/third-party/node_modules/grok-mermaid/dist/graph.js +91 -0
  285. package/extensions/third-party/node_modules/grok-mermaid/dist/graph.js.map +1 -0
  286. package/extensions/third-party/node_modules/grok-mermaid/dist/index.d.ts +32 -0
  287. package/extensions/third-party/node_modules/grok-mermaid/dist/index.d.ts.map +1 -0
  288. package/extensions/third-party/node_modules/grok-mermaid/dist/index.js +100 -0
  289. package/extensions/third-party/node_modules/grok-mermaid/dist/index.js.map +1 -0
  290. package/extensions/third-party/node_modules/grok-mermaid/dist/labels.d.ts +62 -0
  291. package/extensions/third-party/node_modules/grok-mermaid/dist/labels.d.ts.map +1 -0
  292. package/extensions/third-party/node_modules/grok-mermaid/dist/labels.js +324 -0
  293. package/extensions/third-party/node_modules/grok-mermaid/dist/labels.js.map +1 -0
  294. package/extensions/third-party/node_modules/grok-mermaid/dist/layout-seq.d.ts +12 -0
  295. package/extensions/third-party/node_modules/grok-mermaid/dist/layout-seq.d.ts.map +1 -0
  296. package/extensions/third-party/node_modules/grok-mermaid/dist/layout-seq.js +194 -0
  297. package/extensions/third-party/node_modules/grok-mermaid/dist/layout-seq.js.map +1 -0
  298. package/extensions/third-party/node_modules/grok-mermaid/dist/layout.d.ts +87 -0
  299. package/extensions/third-party/node_modules/grok-mermaid/dist/layout.d.ts.map +1 -0
  300. package/extensions/third-party/node_modules/grok-mermaid/dist/layout.js +881 -0
  301. package/extensions/third-party/node_modules/grok-mermaid/dist/layout.js.map +1 -0
  302. package/extensions/third-party/node_modules/grok-mermaid/dist/parse.d.ts +83 -0
  303. package/extensions/third-party/node_modules/grok-mermaid/dist/parse.d.ts.map +1 -0
  304. package/extensions/third-party/node_modules/grok-mermaid/dist/parse.js +1151 -0
  305. package/extensions/third-party/node_modules/grok-mermaid/dist/parse.js.map +1 -0
  306. package/extensions/third-party/node_modules/grok-mermaid/dist/source-box.d.ts +18 -0
  307. package/extensions/third-party/node_modules/grok-mermaid/dist/source-box.d.ts.map +1 -0
  308. package/extensions/third-party/node_modules/grok-mermaid/dist/source-box.js +78 -0
  309. package/extensions/third-party/node_modules/grok-mermaid/dist/source-box.js.map +1 -0
  310. package/extensions/third-party/node_modules/grok-mermaid/dist/types.d.ts +42 -0
  311. package/extensions/third-party/node_modules/grok-mermaid/dist/types.d.ts.map +1 -0
  312. package/extensions/third-party/node_modules/grok-mermaid/dist/types.js +1 -0
  313. package/extensions/third-party/node_modules/grok-mermaid/dist/types.js.map +1 -0
  314. package/extensions/third-party/node_modules/grok-mermaid/dist/width-data.d.ts +2 -0
  315. package/extensions/third-party/node_modules/grok-mermaid/dist/width-data.d.ts.map +1 -0
  316. package/extensions/third-party/node_modules/grok-mermaid/dist/width-data.js +994 -0
  317. package/extensions/third-party/node_modules/grok-mermaid/dist/width-data.js.map +1 -0
  318. package/extensions/third-party/node_modules/grok-mermaid/dist/width.d.ts +18 -0
  319. package/extensions/third-party/node_modules/grok-mermaid/dist/width.d.ts.map +1 -0
  320. package/extensions/third-party/node_modules/grok-mermaid/dist/width.js +76 -0
  321. package/extensions/third-party/node_modules/grok-mermaid/dist/width.js.map +1 -0
  322. package/extensions/third-party/node_modules/grok-mermaid/package.json +49 -0
  323. package/extensions/third-party/node_modules/grok-mermaid/src/ansi.ts +34 -0
  324. package/extensions/third-party/node_modules/grok-mermaid/src/canvas.ts +373 -0
  325. package/extensions/third-party/node_modules/grok-mermaid/src/graph.ts +142 -0
  326. package/extensions/third-party/node_modules/grok-mermaid/src/index.ts +104 -0
  327. package/extensions/third-party/node_modules/grok-mermaid/src/labels.ts +326 -0
  328. package/extensions/third-party/node_modules/grok-mermaid/src/layout-seq.ts +203 -0
  329. package/extensions/third-party/node_modules/grok-mermaid/src/layout.ts +1015 -0
  330. package/extensions/third-party/node_modules/grok-mermaid/src/parse.ts +1189 -0
  331. package/extensions/third-party/node_modules/grok-mermaid/src/source-box.ts +89 -0
  332. package/extensions/third-party/node_modules/grok-mermaid/src/types.ts +43 -0
  333. package/extensions/third-party/node_modules/grok-mermaid/src/width-data.ts +993 -0
  334. package/extensions/third-party/node_modules/grok-mermaid/src/width.ts +74 -0
  335. package/extensions/third-party/node_modules/highlight.js/CHANGES.md +3787 -0
  336. package/extensions/third-party/node_modules/highlight.js/LICENSE +29 -0
  337. package/extensions/third-party/node_modules/highlight.js/README.md +521 -0
  338. package/extensions/third-party/node_modules/highlight.js/SECURITY.md +19 -0
  339. package/extensions/third-party/node_modules/highlight.js/SUPPORTED_LANGUAGES.md +310 -0
  340. package/extensions/third-party/node_modules/highlight.js/VERSION_10_UPGRADE.md +58 -0
  341. package/extensions/third-party/node_modules/highlight.js/VERSION_11_UPGRADE.md +203 -0
  342. package/extensions/third-party/node_modules/highlight.js/es/common.d.ts +3 -0
  343. package/extensions/third-party/node_modules/highlight.js/es/common.js +4 -0
  344. package/extensions/third-party/node_modules/highlight.js/es/core.d.ts +3 -0
  345. package/extensions/third-party/node_modules/highlight.js/es/core.js +4 -0
  346. package/extensions/third-party/node_modules/highlight.js/es/index.js +4 -0
  347. package/extensions/third-party/node_modules/highlight.js/es/languages/1c.js +544 -0
  348. package/extensions/third-party/node_modules/highlight.js/es/languages/1c.js.js +11 -0
  349. package/extensions/third-party/node_modules/highlight.js/es/languages/abnf.js +83 -0
  350. package/extensions/third-party/node_modules/highlight.js/es/languages/abnf.js.js +11 -0
  351. package/extensions/third-party/node_modules/highlight.js/es/languages/accesslog.js +92 -0
  352. package/extensions/third-party/node_modules/highlight.js/es/languages/accesslog.js.js +11 -0
  353. package/extensions/third-party/node_modules/highlight.js/es/languages/actionscript.js +153 -0
  354. package/extensions/third-party/node_modules/highlight.js/es/languages/actionscript.js.js +11 -0
  355. package/extensions/third-party/node_modules/highlight.js/es/languages/ada.js +266 -0
  356. package/extensions/third-party/node_modules/highlight.js/es/languages/ada.js.js +11 -0
  357. package/extensions/third-party/node_modules/highlight.js/es/languages/angelscript.js +178 -0
  358. package/extensions/third-party/node_modules/highlight.js/es/languages/angelscript.js.js +11 -0
  359. package/extensions/third-party/node_modules/highlight.js/es/languages/apache.js +105 -0
  360. package/extensions/third-party/node_modules/highlight.js/es/languages/apache.js.js +11 -0
  361. package/extensions/third-party/node_modules/highlight.js/es/languages/applescript.js +149 -0
  362. package/extensions/third-party/node_modules/highlight.js/es/languages/applescript.js.js +11 -0
  363. package/extensions/third-party/node_modules/highlight.js/es/languages/arcade.js +428 -0
  364. package/extensions/third-party/node_modules/highlight.js/es/languages/arcade.js.js +11 -0
  365. package/extensions/third-party/node_modules/highlight.js/es/languages/arduino.js +1040 -0
  366. package/extensions/third-party/node_modules/highlight.js/es/languages/arduino.js.js +11 -0
  367. package/extensions/third-party/node_modules/highlight.js/es/languages/armasm.js +124 -0
  368. package/extensions/third-party/node_modules/highlight.js/es/languages/armasm.js.js +11 -0
  369. package/extensions/third-party/node_modules/highlight.js/es/languages/asciidoc.js +261 -0
  370. package/extensions/third-party/node_modules/highlight.js/es/languages/asciidoc.js.js +11 -0
  371. package/extensions/third-party/node_modules/highlight.js/es/languages/aspectj.js +231 -0
  372. package/extensions/third-party/node_modules/highlight.js/es/languages/aspectj.js.js +11 -0
  373. package/extensions/third-party/node_modules/highlight.js/es/languages/autohotkey.js +75 -0
  374. package/extensions/third-party/node_modules/highlight.js/es/languages/autohotkey.js.js +11 -0
  375. package/extensions/third-party/node_modules/highlight.js/es/languages/autoit.js +178 -0
  376. package/extensions/third-party/node_modules/highlight.js/es/languages/autoit.js.js +11 -0
  377. package/extensions/third-party/node_modules/highlight.js/es/languages/avrasm.js +78 -0
  378. package/extensions/third-party/node_modules/highlight.js/es/languages/avrasm.js.js +11 -0
  379. package/extensions/third-party/node_modules/highlight.js/es/languages/awk.js +68 -0
  380. package/extensions/third-party/node_modules/highlight.js/es/languages/awk.js.js +11 -0
  381. package/extensions/third-party/node_modules/highlight.js/es/languages/axapta.js +188 -0
  382. package/extensions/third-party/node_modules/highlight.js/es/languages/axapta.js.js +11 -0
  383. package/extensions/third-party/node_modules/highlight.js/es/languages/bash.js +409 -0
  384. package/extensions/third-party/node_modules/highlight.js/es/languages/bash.js.js +11 -0
  385. package/extensions/third-party/node_modules/highlight.js/es/languages/basic.js +236 -0
  386. package/extensions/third-party/node_modules/highlight.js/es/languages/basic.js.js +11 -0
  387. package/extensions/third-party/node_modules/highlight.js/es/languages/bnf.js +39 -0
  388. package/extensions/third-party/node_modules/highlight.js/es/languages/bnf.js.js +11 -0
  389. package/extensions/third-party/node_modules/highlight.js/es/languages/brainfuck.js +54 -0
  390. package/extensions/third-party/node_modules/highlight.js/es/languages/brainfuck.js.js +11 -0
  391. package/extensions/third-party/node_modules/highlight.js/es/languages/c.js +411 -0
  392. package/extensions/third-party/node_modules/highlight.js/es/languages/c.js.js +11 -0
  393. package/extensions/third-party/node_modules/highlight.js/es/languages/cal.js +160 -0
  394. package/extensions/third-party/node_modules/highlight.js/es/languages/cal.js.js +11 -0
  395. package/extensions/third-party/node_modules/highlight.js/es/languages/capnproto.js +99 -0
  396. package/extensions/third-party/node_modules/highlight.js/es/languages/capnproto.js.js +11 -0
  397. package/extensions/third-party/node_modules/highlight.js/es/languages/ceylon.js +140 -0
  398. package/extensions/third-party/node_modules/highlight.js/es/languages/ceylon.js.js +11 -0
  399. package/extensions/third-party/node_modules/highlight.js/es/languages/clean.js +67 -0
  400. package/extensions/third-party/node_modules/highlight.js/es/languages/clean.js.js +11 -0
  401. package/extensions/third-party/node_modules/highlight.js/es/languages/clojure-repl.js +27 -0
  402. package/extensions/third-party/node_modules/highlight.js/es/languages/clojure-repl.js.js +11 -0
  403. package/extensions/third-party/node_modules/highlight.js/es/languages/clojure.js +184 -0
  404. package/extensions/third-party/node_modules/highlight.js/es/languages/clojure.js.js +11 -0
  405. package/extensions/third-party/node_modules/highlight.js/es/languages/cmake.js +68 -0
  406. package/extensions/third-party/node_modules/highlight.js/es/languages/cmake.js.js +11 -0
  407. package/extensions/third-party/node_modules/highlight.js/es/languages/coffeescript.js +368 -0
  408. package/extensions/third-party/node_modules/highlight.js/es/languages/coffeescript.js.js +11 -0
  409. package/extensions/third-party/node_modules/highlight.js/es/languages/coq.js +445 -0
  410. package/extensions/third-party/node_modules/highlight.js/es/languages/coq.js.js +11 -0
  411. package/extensions/third-party/node_modules/highlight.js/es/languages/cos.js +140 -0
  412. package/extensions/third-party/node_modules/highlight.js/es/languages/cos.js.js +11 -0
  413. package/extensions/third-party/node_modules/highlight.js/es/languages/cpp.js +637 -0
  414. package/extensions/third-party/node_modules/highlight.js/es/languages/cpp.js.js +11 -0
  415. package/extensions/third-party/node_modules/highlight.js/es/languages/crmsh.js +100 -0
  416. package/extensions/third-party/node_modules/highlight.js/es/languages/crmsh.js.js +11 -0
  417. package/extensions/third-party/node_modules/highlight.js/es/languages/crystal.js +329 -0
  418. package/extensions/third-party/node_modules/highlight.js/es/languages/crystal.js.js +11 -0
  419. package/extensions/third-party/node_modules/highlight.js/es/languages/csharp.js +418 -0
  420. package/extensions/third-party/node_modules/highlight.js/es/languages/csharp.js.js +11 -0
  421. package/extensions/third-party/node_modules/highlight.js/es/languages/csp.js +65 -0
  422. package/extensions/third-party/node_modules/highlight.js/es/languages/csp.js.js +11 -0
  423. package/extensions/third-party/node_modules/highlight.js/es/languages/css.js +960 -0
  424. package/extensions/third-party/node_modules/highlight.js/es/languages/css.js.js +11 -0
  425. package/extensions/third-party/node_modules/highlight.js/es/languages/d.js +272 -0
  426. package/extensions/third-party/node_modules/highlight.js/es/languages/d.js.js +11 -0
  427. package/extensions/third-party/node_modules/highlight.js/es/languages/dart.js +293 -0
  428. package/extensions/third-party/node_modules/highlight.js/es/languages/dart.js.js +11 -0
  429. package/extensions/third-party/node_modules/highlight.js/es/languages/delphi.js +246 -0
  430. package/extensions/third-party/node_modules/highlight.js/es/languages/delphi.js.js +11 -0
  431. package/extensions/third-party/node_modules/highlight.js/es/languages/diff.js +65 -0
  432. package/extensions/third-party/node_modules/highlight.js/es/languages/diff.js.js +11 -0
  433. package/extensions/third-party/node_modules/highlight.js/es/languages/django.js +75 -0
  434. package/extensions/third-party/node_modules/highlight.js/es/languages/django.js.js +11 -0
  435. package/extensions/third-party/node_modules/highlight.js/es/languages/dns.js +133 -0
  436. package/extensions/third-party/node_modules/highlight.js/es/languages/dns.js.js +11 -0
  437. package/extensions/third-party/node_modules/highlight.js/es/languages/dockerfile.js +44 -0
  438. package/extensions/third-party/node_modules/highlight.js/es/languages/dockerfile.js.js +11 -0
  439. package/extensions/third-party/node_modules/highlight.js/es/languages/dos.js +165 -0
  440. package/extensions/third-party/node_modules/highlight.js/es/languages/dos.js.js +11 -0
  441. package/extensions/third-party/node_modules/highlight.js/es/languages/dsconfig.js +66 -0
  442. package/extensions/third-party/node_modules/highlight.js/es/languages/dsconfig.js.js +11 -0
  443. package/extensions/third-party/node_modules/highlight.js/es/languages/dts.js +157 -0
  444. package/extensions/third-party/node_modules/highlight.js/es/languages/dts.js.js +11 -0
  445. package/extensions/third-party/node_modules/highlight.js/es/languages/dust.js +47 -0
  446. package/extensions/third-party/node_modules/highlight.js/es/languages/dust.js.js +11 -0
  447. package/extensions/third-party/node_modules/highlight.js/es/languages/ebnf.js +54 -0
  448. package/extensions/third-party/node_modules/highlight.js/es/languages/ebnf.js.js +11 -0
  449. package/extensions/third-party/node_modules/highlight.js/es/languages/elixir.js +286 -0
  450. package/extensions/third-party/node_modules/highlight.js/es/languages/elixir.js.js +11 -0
  451. package/extensions/third-party/node_modules/highlight.js/es/languages/elm.js +143 -0
  452. package/extensions/third-party/node_modules/highlight.js/es/languages/elm.js.js +11 -0
  453. package/extensions/third-party/node_modules/highlight.js/es/languages/erb.js +29 -0
  454. package/extensions/third-party/node_modules/highlight.js/es/languages/erb.js.js +11 -0
  455. package/extensions/third-party/node_modules/highlight.js/es/languages/erlang-repl.js +54 -0
  456. package/extensions/third-party/node_modules/highlight.js/es/languages/erlang-repl.js.js +11 -0
  457. package/extensions/third-party/node_modules/highlight.js/es/languages/erlang.js +235 -0
  458. package/extensions/third-party/node_modules/highlight.js/es/languages/erlang.js.js +11 -0
  459. package/extensions/third-party/node_modules/highlight.js/es/languages/excel.js +580 -0
  460. package/extensions/third-party/node_modules/highlight.js/es/languages/excel.js.js +11 -0
  461. package/extensions/third-party/node_modules/highlight.js/es/languages/fix.js +39 -0
  462. package/extensions/third-party/node_modules/highlight.js/es/languages/fix.js.js +11 -0
  463. package/extensions/third-party/node_modules/highlight.js/es/languages/flix.js +79 -0
  464. package/extensions/third-party/node_modules/highlight.js/es/languages/flix.js.js +11 -0
  465. package/extensions/third-party/node_modules/highlight.js/es/languages/fortran.js +574 -0
  466. package/extensions/third-party/node_modules/highlight.js/es/languages/fortran.js.js +11 -0
  467. package/extensions/third-party/node_modules/highlight.js/es/languages/freedesktop.js +113 -0
  468. package/extensions/third-party/node_modules/highlight.js/es/languages/freedesktop.js.js +11 -0
  469. package/extensions/third-party/node_modules/highlight.js/es/languages/fsharp.js +639 -0
  470. package/extensions/third-party/node_modules/highlight.js/es/languages/fsharp.js.js +11 -0
  471. package/extensions/third-party/node_modules/highlight.js/es/languages/gams.js +181 -0
  472. package/extensions/third-party/node_modules/highlight.js/es/languages/gams.js.js +11 -0
  473. package/extensions/third-party/node_modules/highlight.js/es/languages/gauss.js +306 -0
  474. package/extensions/third-party/node_modules/highlight.js/es/languages/gauss.js.js +11 -0
  475. package/extensions/third-party/node_modules/highlight.js/es/languages/gcode.js +189 -0
  476. package/extensions/third-party/node_modules/highlight.js/es/languages/gcode.js.js +11 -0
  477. package/extensions/third-party/node_modules/highlight.js/es/languages/gherkin.js +120 -0
  478. package/extensions/third-party/node_modules/highlight.js/es/languages/gherkin.js.js +11 -0
  479. package/extensions/third-party/node_modules/highlight.js/es/languages/glsl.js +128 -0
  480. package/extensions/third-party/node_modules/highlight.js/es/languages/glsl.js.js +11 -0
  481. package/extensions/third-party/node_modules/highlight.js/es/languages/gml.js +3130 -0
  482. package/extensions/third-party/node_modules/highlight.js/es/languages/gml.js.js +11 -0
  483. package/extensions/third-party/node_modules/highlight.js/es/languages/go.js +160 -0
  484. package/extensions/third-party/node_modules/highlight.js/es/languages/go.js.js +11 -0
  485. package/extensions/third-party/node_modules/highlight.js/es/languages/golo.js +81 -0
  486. package/extensions/third-party/node_modules/highlight.js/es/languages/golo.js.js +11 -0
  487. package/extensions/third-party/node_modules/highlight.js/es/languages/gradle.js +190 -0
  488. package/extensions/third-party/node_modules/highlight.js/es/languages/gradle.js.js +11 -0
  489. package/extensions/third-party/node_modules/highlight.js/es/languages/graphql.js +78 -0
  490. package/extensions/third-party/node_modules/highlight.js/es/languages/graphql.js.js +11 -0
  491. package/extensions/third-party/node_modules/highlight.js/es/languages/groovy.js +225 -0
  492. package/extensions/third-party/node_modules/highlight.js/es/languages/groovy.js.js +11 -0
  493. package/extensions/third-party/node_modules/highlight.js/es/languages/haml.js +113 -0
  494. package/extensions/third-party/node_modules/highlight.js/es/languages/haml.js.js +11 -0
  495. package/extensions/third-party/node_modules/highlight.js/es/languages/handlebars.js +258 -0
  496. package/extensions/third-party/node_modules/highlight.js/es/languages/handlebars.js.js +11 -0
  497. package/extensions/third-party/node_modules/highlight.js/es/languages/haskell.js +217 -0
  498. package/extensions/third-party/node_modules/highlight.js/es/languages/haskell.js.js +11 -0
  499. package/extensions/third-party/node_modules/highlight.js/es/languages/haxe.js +167 -0
  500. package/extensions/third-party/node_modules/highlight.js/es/languages/haxe.js.js +11 -0
  501. package/extensions/third-party/node_modules/highlight.js/es/languages/hsp.js +59 -0
  502. package/extensions/third-party/node_modules/highlight.js/es/languages/hsp.js.js +11 -0
  503. package/extensions/third-party/node_modules/highlight.js/es/languages/http.js +97 -0
  504. package/extensions/third-party/node_modules/highlight.js/es/languages/http.js.js +11 -0
  505. package/extensions/third-party/node_modules/highlight.js/es/languages/hy.js +137 -0
  506. package/extensions/third-party/node_modules/highlight.js/es/languages/hy.js.js +11 -0
  507. package/extensions/third-party/node_modules/highlight.js/es/languages/inform7.js +70 -0
  508. package/extensions/third-party/node_modules/highlight.js/es/languages/inform7.js.js +11 -0
  509. package/extensions/third-party/node_modules/highlight.js/es/languages/ini.js +121 -0
  510. package/extensions/third-party/node_modules/highlight.js/es/languages/ini.js.js +11 -0
  511. package/extensions/third-party/node_modules/highlight.js/es/languages/irpf90.js +107 -0
  512. package/extensions/third-party/node_modules/highlight.js/es/languages/irpf90.js.js +11 -0
  513. package/extensions/third-party/node_modules/highlight.js/es/languages/isbl.js +3205 -0
  514. package/extensions/third-party/node_modules/highlight.js/es/languages/isbl.js.js +11 -0
  515. package/extensions/third-party/node_modules/highlight.js/es/languages/java.js +314 -0
  516. package/extensions/third-party/node_modules/highlight.js/es/languages/java.js.js +11 -0
  517. package/extensions/third-party/node_modules/highlight.js/es/languages/javascript.js +772 -0
  518. package/extensions/third-party/node_modules/highlight.js/es/languages/javascript.js.js +11 -0
  519. package/extensions/third-party/node_modules/highlight.js/es/languages/jboss-cli.js +63 -0
  520. package/extensions/third-party/node_modules/highlight.js/es/languages/jboss-cli.js.js +11 -0
  521. package/extensions/third-party/node_modules/highlight.js/es/languages/json.js +63 -0
  522. package/extensions/third-party/node_modules/highlight.js/es/languages/json.js.js +11 -0
  523. package/extensions/third-party/node_modules/highlight.js/es/languages/julia-repl.js +51 -0
  524. package/extensions/third-party/node_modules/highlight.js/es/languages/julia-repl.js.js +11 -0
  525. package/extensions/third-party/node_modules/highlight.js/es/languages/julia.js +442 -0
  526. package/extensions/third-party/node_modules/highlight.js/es/languages/julia.js.js +11 -0
  527. package/extensions/third-party/node_modules/highlight.js/es/languages/kotlin.js +288 -0
  528. package/extensions/third-party/node_modules/highlight.js/es/languages/kotlin.js.js +11 -0
  529. package/extensions/third-party/node_modules/highlight.js/es/languages/lasso.js +171 -0
  530. package/extensions/third-party/node_modules/highlight.js/es/languages/lasso.js.js +11 -0
  531. package/extensions/third-party/node_modules/highlight.js/es/languages/latex.js +278 -0
  532. package/extensions/third-party/node_modules/highlight.js/es/languages/latex.js.js +11 -0
  533. package/extensions/third-party/node_modules/highlight.js/es/languages/ldif.js +31 -0
  534. package/extensions/third-party/node_modules/highlight.js/es/languages/ldif.js.js +11 -0
  535. package/extensions/third-party/node_modules/highlight.js/es/languages/leaf.js +98 -0
  536. package/extensions/third-party/node_modules/highlight.js/es/languages/leaf.js.js +11 -0
  537. package/extensions/third-party/node_modules/highlight.js/es/languages/less.js +1061 -0
  538. package/extensions/third-party/node_modules/highlight.js/es/languages/less.js.js +11 -0
  539. package/extensions/third-party/node_modules/highlight.js/es/languages/lisp.js +139 -0
  540. package/extensions/third-party/node_modules/highlight.js/es/languages/lisp.js.js +11 -0
  541. package/extensions/third-party/node_modules/highlight.js/es/languages/livecodeserver.js +173 -0
  542. package/extensions/third-party/node_modules/highlight.js/es/languages/livecodeserver.js.js +11 -0
  543. package/extensions/third-party/node_modules/highlight.js/es/languages/livescript.js +380 -0
  544. package/extensions/third-party/node_modules/highlight.js/es/languages/livescript.js.js +11 -0
  545. package/extensions/third-party/node_modules/highlight.js/es/languages/llvm.js +136 -0
  546. package/extensions/third-party/node_modules/highlight.js/es/languages/llvm.js.js +11 -0
  547. package/extensions/third-party/node_modules/highlight.js/es/languages/lsl.js +76 -0
  548. package/extensions/third-party/node_modules/highlight.js/es/languages/lsl.js.js +11 -0
  549. package/extensions/third-party/node_modules/highlight.js/es/languages/lua.js +81 -0
  550. package/extensions/third-party/node_modules/highlight.js/es/languages/lua.js.js +11 -0
  551. package/extensions/third-party/node_modules/highlight.js/es/languages/makefile.js +89 -0
  552. package/extensions/third-party/node_modules/highlight.js/es/languages/makefile.js.js +11 -0
  553. package/extensions/third-party/node_modules/highlight.js/es/languages/markdown.js +250 -0
  554. package/extensions/third-party/node_modules/highlight.js/es/languages/markdown.js.js +11 -0
  555. package/extensions/third-party/node_modules/highlight.js/es/languages/mathematica.js +7359 -0
  556. package/extensions/third-party/node_modules/highlight.js/es/languages/mathematica.js.js +11 -0
  557. package/extensions/third-party/node_modules/highlight.js/es/languages/matlab.js +107 -0
  558. package/extensions/third-party/node_modules/highlight.js/es/languages/matlab.js.js +11 -0
  559. package/extensions/third-party/node_modules/highlight.js/es/languages/maxima.js +414 -0
  560. package/extensions/third-party/node_modules/highlight.js/es/languages/maxima.js.js +11 -0
  561. package/extensions/third-party/node_modules/highlight.js/es/languages/mel.js +235 -0
  562. package/extensions/third-party/node_modules/highlight.js/es/languages/mel.js.js +11 -0
  563. package/extensions/third-party/node_modules/highlight.js/es/languages/mercury.js +108 -0
  564. package/extensions/third-party/node_modules/highlight.js/es/languages/mercury.js.js +11 -0
  565. package/extensions/third-party/node_modules/highlight.js/es/languages/mipsasm.js +104 -0
  566. package/extensions/third-party/node_modules/highlight.js/es/languages/mipsasm.js.js +11 -0
  567. package/extensions/third-party/node_modules/highlight.js/es/languages/mizar.js +27 -0
  568. package/extensions/third-party/node_modules/highlight.js/es/languages/mizar.js.js +11 -0
  569. package/extensions/third-party/node_modules/highlight.js/es/languages/mojolicious.js +36 -0
  570. package/extensions/third-party/node_modules/highlight.js/es/languages/mojolicious.js.js +11 -0
  571. package/extensions/third-party/node_modules/highlight.js/es/languages/monkey.js +184 -0
  572. package/extensions/third-party/node_modules/highlight.js/es/languages/monkey.js.js +11 -0
  573. package/extensions/third-party/node_modules/highlight.js/es/languages/moonscript.js +141 -0
  574. package/extensions/third-party/node_modules/highlight.js/es/languages/moonscript.js.js +11 -0
  575. package/extensions/third-party/node_modules/highlight.js/es/languages/n1ql.js +365 -0
  576. package/extensions/third-party/node_modules/highlight.js/es/languages/n1ql.js.js +11 -0
  577. package/extensions/third-party/node_modules/highlight.js/es/languages/nestedtext.js +83 -0
  578. package/extensions/third-party/node_modules/highlight.js/es/languages/nestedtext.js.js +11 -0
  579. package/extensions/third-party/node_modules/highlight.js/es/languages/nginx.js +153 -0
  580. package/extensions/third-party/node_modules/highlight.js/es/languages/nginx.js.js +11 -0
  581. package/extensions/third-party/node_modules/highlight.js/es/languages/nim.js +187 -0
  582. package/extensions/third-party/node_modules/highlight.js/es/languages/nim.js.js +11 -0
  583. package/extensions/third-party/node_modules/highlight.js/es/languages/nix.js +372 -0
  584. package/extensions/third-party/node_modules/highlight.js/es/languages/nix.js.js +11 -0
  585. package/extensions/third-party/node_modules/highlight.js/es/languages/node-repl.js +33 -0
  586. package/extensions/third-party/node_modules/highlight.js/es/languages/node-repl.js.js +11 -0
  587. package/extensions/third-party/node_modules/highlight.js/es/languages/nsis.js +591 -0
  588. package/extensions/third-party/node_modules/highlight.js/es/languages/nsis.js.js +11 -0
  589. package/extensions/third-party/node_modules/highlight.js/es/languages/objectivec.js +253 -0
  590. package/extensions/third-party/node_modules/highlight.js/es/languages/objectivec.js.js +11 -0
  591. package/extensions/third-party/node_modules/highlight.js/es/languages/ocaml.js +83 -0
  592. package/extensions/third-party/node_modules/highlight.js/es/languages/ocaml.js.js +11 -0
  593. package/extensions/third-party/node_modules/highlight.js/es/languages/openscad.js +77 -0
  594. package/extensions/third-party/node_modules/highlight.js/es/languages/openscad.js.js +11 -0
  595. package/extensions/third-party/node_modules/highlight.js/es/languages/oxygene.js +87 -0
  596. package/extensions/third-party/node_modules/highlight.js/es/languages/oxygene.js.js +11 -0
  597. package/extensions/third-party/node_modules/highlight.js/es/languages/parser3.js +55 -0
  598. package/extensions/third-party/node_modules/highlight.js/es/languages/parser3.js.js +11 -0
  599. package/extensions/third-party/node_modules/highlight.js/es/languages/perl.js +504 -0
  600. package/extensions/third-party/node_modules/highlight.js/es/languages/perl.js.js +11 -0
  601. package/extensions/third-party/node_modules/highlight.js/es/languages/pf.js +60 -0
  602. package/extensions/third-party/node_modules/highlight.js/es/languages/pf.js.js +11 -0
  603. package/extensions/third-party/node_modules/highlight.js/es/languages/pgsql.js +525 -0
  604. package/extensions/third-party/node_modules/highlight.js/es/languages/pgsql.js.js +11 -0
  605. package/extensions/third-party/node_modules/highlight.js/es/languages/php-template.js +57 -0
  606. package/extensions/third-party/node_modules/highlight.js/es/languages/php-template.js.js +11 -0
  607. package/extensions/third-party/node_modules/highlight.js/es/languages/php.js +635 -0
  608. package/extensions/third-party/node_modules/highlight.js/es/languages/php.js.js +11 -0
  609. package/extensions/third-party/node_modules/highlight.js/es/languages/plaintext.js +19 -0
  610. package/extensions/third-party/node_modules/highlight.js/es/languages/plaintext.js.js +11 -0
  611. package/extensions/third-party/node_modules/highlight.js/es/languages/pony.js +90 -0
  612. package/extensions/third-party/node_modules/highlight.js/es/languages/pony.js.js +11 -0
  613. package/extensions/third-party/node_modules/highlight.js/es/languages/powershell.js +317 -0
  614. package/extensions/third-party/node_modules/highlight.js/es/languages/powershell.js.js +11 -0
  615. package/extensions/third-party/node_modules/highlight.js/es/languages/processing.js +434 -0
  616. package/extensions/third-party/node_modules/highlight.js/es/languages/processing.js.js +11 -0
  617. package/extensions/third-party/node_modules/highlight.js/es/languages/profile.js +43 -0
  618. package/extensions/third-party/node_modules/highlight.js/es/languages/profile.js.js +11 -0
  619. package/extensions/third-party/node_modules/highlight.js/es/languages/prolog.js +97 -0
  620. package/extensions/third-party/node_modules/highlight.js/es/languages/prolog.js.js +11 -0
  621. package/extensions/third-party/node_modules/highlight.js/es/languages/properties.js +68 -0
  622. package/extensions/third-party/node_modules/highlight.js/es/languages/properties.js.js +11 -0
  623. package/extensions/third-party/node_modules/highlight.js/es/languages/protobuf.js +79 -0
  624. package/extensions/third-party/node_modules/highlight.js/es/languages/protobuf.js.js +11 -0
  625. package/extensions/third-party/node_modules/highlight.js/es/languages/puppet.js +146 -0
  626. package/extensions/third-party/node_modules/highlight.js/es/languages/puppet.js.js +11 -0
  627. package/extensions/third-party/node_modules/highlight.js/es/languages/purebasic.js +100 -0
  628. package/extensions/third-party/node_modules/highlight.js/es/languages/purebasic.js.js +11 -0
  629. package/extensions/third-party/node_modules/highlight.js/es/languages/python-repl.js +32 -0
  630. package/extensions/third-party/node_modules/highlight.js/es/languages/python-repl.js.js +11 -0
  631. package/extensions/third-party/node_modules/highlight.js/es/languages/python.js +441 -0
  632. package/extensions/third-party/node_modules/highlight.js/es/languages/python.js.js +11 -0
  633. package/extensions/third-party/node_modules/highlight.js/es/languages/q.js +38 -0
  634. package/extensions/third-party/node_modules/highlight.js/es/languages/q.js.js +11 -0
  635. package/extensions/third-party/node_modules/highlight.js/es/languages/qml.js +189 -0
  636. package/extensions/third-party/node_modules/highlight.js/es/languages/qml.js.js +11 -0
  637. package/extensions/third-party/node_modules/highlight.js/es/languages/r.js +257 -0
  638. package/extensions/third-party/node_modules/highlight.js/es/languages/r.js.js +11 -0
  639. package/extensions/third-party/node_modules/highlight.js/es/languages/reasonml.js +142 -0
  640. package/extensions/third-party/node_modules/highlight.js/es/languages/reasonml.js.js +11 -0
  641. package/extensions/third-party/node_modules/highlight.js/es/languages/rib.js +37 -0
  642. package/extensions/third-party/node_modules/highlight.js/es/languages/rib.js.js +11 -0
  643. package/extensions/third-party/node_modules/highlight.js/es/languages/roboconf.js +82 -0
  644. package/extensions/third-party/node_modules/highlight.js/es/languages/roboconf.js.js +11 -0
  645. package/extensions/third-party/node_modules/highlight.js/es/languages/routeros.js +164 -0
  646. package/extensions/third-party/node_modules/highlight.js/es/languages/routeros.js.js +11 -0
  647. package/extensions/third-party/node_modules/highlight.js/es/languages/rsl.js +149 -0
  648. package/extensions/third-party/node_modules/highlight.js/es/languages/rsl.js.js +11 -0
  649. package/extensions/third-party/node_modules/highlight.js/es/languages/ruby.js +449 -0
  650. package/extensions/third-party/node_modules/highlight.js/es/languages/ruby.js.js +11 -0
  651. package/extensions/third-party/node_modules/highlight.js/es/languages/ruleslanguage.js +76 -0
  652. package/extensions/third-party/node_modules/highlight.js/es/languages/ruleslanguage.js.js +11 -0
  653. package/extensions/third-party/node_modules/highlight.js/es/languages/rust.js +340 -0
  654. package/extensions/third-party/node_modules/highlight.js/es/languages/rust.js.js +11 -0
  655. package/extensions/third-party/node_modules/highlight.js/es/languages/sas.js +557 -0
  656. package/extensions/third-party/node_modules/highlight.js/es/languages/sas.js.js +11 -0
  657. package/extensions/third-party/node_modules/highlight.js/es/languages/scala.js +214 -0
  658. package/extensions/third-party/node_modules/highlight.js/es/languages/scala.js.js +11 -0
  659. package/extensions/third-party/node_modules/highlight.js/es/languages/scheme.js +196 -0
  660. package/extensions/third-party/node_modules/highlight.js/es/languages/scheme.js.js +11 -0
  661. package/extensions/third-party/node_modules/highlight.js/es/languages/scilab.js +73 -0
  662. package/extensions/third-party/node_modules/highlight.js/es/languages/scilab.js.js +11 -0
  663. package/extensions/third-party/node_modules/highlight.js/es/languages/scss.js +950 -0
  664. package/extensions/third-party/node_modules/highlight.js/es/languages/scss.js.js +11 -0
  665. package/extensions/third-party/node_modules/highlight.js/es/languages/shell.js +33 -0
  666. package/extensions/third-party/node_modules/highlight.js/es/languages/shell.js.js +11 -0
  667. package/extensions/third-party/node_modules/highlight.js/es/languages/smali.js +126 -0
  668. package/extensions/third-party/node_modules/highlight.js/es/languages/smali.js.js +11 -0
  669. package/extensions/third-party/node_modules/highlight.js/es/languages/smalltalk.js +69 -0
  670. package/extensions/third-party/node_modules/highlight.js/es/languages/smalltalk.js.js +11 -0
  671. package/extensions/third-party/node_modules/highlight.js/es/languages/sml.js +75 -0
  672. package/extensions/third-party/node_modules/highlight.js/es/languages/sml.js.js +11 -0
  673. package/extensions/third-party/node_modules/highlight.js/es/languages/sqf.js +2828 -0
  674. package/extensions/third-party/node_modules/highlight.js/es/languages/sqf.js.js +11 -0
  675. package/extensions/third-party/node_modules/highlight.js/es/languages/sql.js +693 -0
  676. package/extensions/third-party/node_modules/highlight.js/es/languages/sql.js.js +11 -0
  677. package/extensions/third-party/node_modules/highlight.js/es/languages/stan.js +521 -0
  678. package/extensions/third-party/node_modules/highlight.js/es/languages/stan.js.js +11 -0
  679. package/extensions/third-party/node_modules/highlight.js/es/languages/stata.js +53 -0
  680. package/extensions/third-party/node_modules/highlight.js/es/languages/stata.js.js +11 -0
  681. package/extensions/third-party/node_modules/highlight.js/es/languages/step21.js +67 -0
  682. package/extensions/third-party/node_modules/highlight.js/es/languages/step21.js.js +11 -0
  683. package/extensions/third-party/node_modules/highlight.js/es/languages/stylus.js +1010 -0
  684. package/extensions/third-party/node_modules/highlight.js/es/languages/stylus.js.js +11 -0
  685. package/extensions/third-party/node_modules/highlight.js/es/languages/subunit.js +44 -0
  686. package/extensions/third-party/node_modules/highlight.js/es/languages/subunit.js.js +11 -0
  687. package/extensions/third-party/node_modules/highlight.js/es/languages/swift.js +984 -0
  688. package/extensions/third-party/node_modules/highlight.js/es/languages/swift.js.js +11 -0
  689. package/extensions/third-party/node_modules/highlight.js/es/languages/taggerscript.js +59 -0
  690. package/extensions/third-party/node_modules/highlight.js/es/languages/taggerscript.js.js +11 -0
  691. package/extensions/third-party/node_modules/highlight.js/es/languages/tap.js +47 -0
  692. package/extensions/third-party/node_modules/highlight.js/es/languages/tap.js.js +11 -0
  693. package/extensions/third-party/node_modules/highlight.js/es/languages/tcl.js +191 -0
  694. package/extensions/third-party/node_modules/highlight.js/es/languages/tcl.js.js +11 -0
  695. package/extensions/third-party/node_modules/highlight.js/es/languages/thrift.js +77 -0
  696. package/extensions/third-party/node_modules/highlight.js/es/languages/thrift.js.js +11 -0
  697. package/extensions/third-party/node_modules/highlight.js/es/languages/tp.js +172 -0
  698. package/extensions/third-party/node_modules/highlight.js/es/languages/tp.js.js +11 -0
  699. package/extensions/third-party/node_modules/highlight.js/es/languages/twig.js +260 -0
  700. package/extensions/third-party/node_modules/highlight.js/es/languages/twig.js.js +11 -0
  701. package/extensions/third-party/node_modules/highlight.js/es/languages/typescript.js +916 -0
  702. package/extensions/third-party/node_modules/highlight.js/es/languages/typescript.js.js +11 -0
  703. package/extensions/third-party/node_modules/highlight.js/es/languages/vala.js +61 -0
  704. package/extensions/third-party/node_modules/highlight.js/es/languages/vala.js.js +11 -0
  705. package/extensions/third-party/node_modules/highlight.js/es/languages/vbnet.js +157 -0
  706. package/extensions/third-party/node_modules/highlight.js/es/languages/vbnet.js.js +11 -0
  707. package/extensions/third-party/node_modules/highlight.js/es/languages/vbscript-html.js +24 -0
  708. package/extensions/third-party/node_modules/highlight.js/es/languages/vbscript-html.js.js +11 -0
  709. package/extensions/third-party/node_modules/highlight.js/es/languages/vbscript.js +220 -0
  710. package/extensions/third-party/node_modules/highlight.js/es/languages/vbscript.js.js +11 -0
  711. package/extensions/third-party/node_modules/highlight.js/es/languages/verilog.js +550 -0
  712. package/extensions/third-party/node_modules/highlight.js/es/languages/verilog.js.js +11 -0
  713. package/extensions/third-party/node_modules/highlight.js/es/languages/vhdl.js +216 -0
  714. package/extensions/third-party/node_modules/highlight.js/es/languages/vhdl.js.js +11 -0
  715. package/extensions/third-party/node_modules/highlight.js/es/languages/vim.js +129 -0
  716. package/extensions/third-party/node_modules/highlight.js/es/languages/vim.js.js +11 -0
  717. package/extensions/third-party/node_modules/highlight.js/es/languages/wasm.js +139 -0
  718. package/extensions/third-party/node_modules/highlight.js/es/languages/wasm.js.js +11 -0
  719. package/extensions/third-party/node_modules/highlight.js/es/languages/wren.js +302 -0
  720. package/extensions/third-party/node_modules/highlight.js/es/languages/wren.js.js +11 -0
  721. package/extensions/third-party/node_modules/highlight.js/es/languages/x86asm.js +153 -0
  722. package/extensions/third-party/node_modules/highlight.js/es/languages/x86asm.js.js +11 -0
  723. package/extensions/third-party/node_modules/highlight.js/es/languages/xl.js +205 -0
  724. package/extensions/third-party/node_modules/highlight.js/es/languages/xl.js.js +11 -0
  725. package/extensions/third-party/node_modules/highlight.js/es/languages/xml.js +234 -0
  726. package/extensions/third-party/node_modules/highlight.js/es/languages/xml.js.js +11 -0
  727. package/extensions/third-party/node_modules/highlight.js/es/languages/xquery.js +360 -0
  728. package/extensions/third-party/node_modules/highlight.js/es/languages/xquery.js.js +11 -0
  729. package/extensions/third-party/node_modules/highlight.js/es/languages/yaml.js +213 -0
  730. package/extensions/third-party/node_modules/highlight.js/es/languages/yaml.js.js +11 -0
  731. package/extensions/third-party/node_modules/highlight.js/es/languages/zephir.js +129 -0
  732. package/extensions/third-party/node_modules/highlight.js/es/languages/zephir.js.js +11 -0
  733. package/extensions/third-party/node_modules/highlight.js/es/package.json +1 -0
  734. package/extensions/third-party/node_modules/highlight.js/es/utils/regex.js +158 -0
  735. package/extensions/third-party/node_modules/highlight.js/lib/common.d.ts +3 -0
  736. package/extensions/third-party/node_modules/highlight.js/lib/common.js +42 -0
  737. package/extensions/third-party/node_modules/highlight.js/lib/core.d.ts +3 -0
  738. package/extensions/third-party/node_modules/highlight.js/lib/core.js +2603 -0
  739. package/extensions/third-party/node_modules/highlight.js/lib/index.js +199 -0
  740. package/extensions/third-party/node_modules/highlight.js/lib/languages/1c.js +544 -0
  741. package/extensions/third-party/node_modules/highlight.js/lib/languages/1c.js.js +10 -0
  742. package/extensions/third-party/node_modules/highlight.js/lib/languages/abnf.js +83 -0
  743. package/extensions/third-party/node_modules/highlight.js/lib/languages/abnf.js.js +10 -0
  744. package/extensions/third-party/node_modules/highlight.js/lib/languages/accesslog.js +92 -0
  745. package/extensions/third-party/node_modules/highlight.js/lib/languages/accesslog.js.js +10 -0
  746. package/extensions/third-party/node_modules/highlight.js/lib/languages/actionscript.js +153 -0
  747. package/extensions/third-party/node_modules/highlight.js/lib/languages/actionscript.js.js +10 -0
  748. package/extensions/third-party/node_modules/highlight.js/lib/languages/ada.js +266 -0
  749. package/extensions/third-party/node_modules/highlight.js/lib/languages/ada.js.js +10 -0
  750. package/extensions/third-party/node_modules/highlight.js/lib/languages/angelscript.js +178 -0
  751. package/extensions/third-party/node_modules/highlight.js/lib/languages/angelscript.js.js +10 -0
  752. package/extensions/third-party/node_modules/highlight.js/lib/languages/apache.js +105 -0
  753. package/extensions/third-party/node_modules/highlight.js/lib/languages/apache.js.js +10 -0
  754. package/extensions/third-party/node_modules/highlight.js/lib/languages/applescript.js +149 -0
  755. package/extensions/third-party/node_modules/highlight.js/lib/languages/applescript.js.js +10 -0
  756. package/extensions/third-party/node_modules/highlight.js/lib/languages/arcade.js +428 -0
  757. package/extensions/third-party/node_modules/highlight.js/lib/languages/arcade.js.js +10 -0
  758. package/extensions/third-party/node_modules/highlight.js/lib/languages/arduino.js +1040 -0
  759. package/extensions/third-party/node_modules/highlight.js/lib/languages/arduino.js.js +10 -0
  760. package/extensions/third-party/node_modules/highlight.js/lib/languages/armasm.js +124 -0
  761. package/extensions/third-party/node_modules/highlight.js/lib/languages/armasm.js.js +10 -0
  762. package/extensions/third-party/node_modules/highlight.js/lib/languages/asciidoc.js +261 -0
  763. package/extensions/third-party/node_modules/highlight.js/lib/languages/asciidoc.js.js +10 -0
  764. package/extensions/third-party/node_modules/highlight.js/lib/languages/aspectj.js +231 -0
  765. package/extensions/third-party/node_modules/highlight.js/lib/languages/aspectj.js.js +10 -0
  766. package/extensions/third-party/node_modules/highlight.js/lib/languages/autohotkey.js +75 -0
  767. package/extensions/third-party/node_modules/highlight.js/lib/languages/autohotkey.js.js +10 -0
  768. package/extensions/third-party/node_modules/highlight.js/lib/languages/autoit.js +178 -0
  769. package/extensions/third-party/node_modules/highlight.js/lib/languages/autoit.js.js +10 -0
  770. package/extensions/third-party/node_modules/highlight.js/lib/languages/avrasm.js +78 -0
  771. package/extensions/third-party/node_modules/highlight.js/lib/languages/avrasm.js.js +10 -0
  772. package/extensions/third-party/node_modules/highlight.js/lib/languages/awk.js +68 -0
  773. package/extensions/third-party/node_modules/highlight.js/lib/languages/awk.js.js +10 -0
  774. package/extensions/third-party/node_modules/highlight.js/lib/languages/axapta.js +188 -0
  775. package/extensions/third-party/node_modules/highlight.js/lib/languages/axapta.js.js +10 -0
  776. package/extensions/third-party/node_modules/highlight.js/lib/languages/bash.js +409 -0
  777. package/extensions/third-party/node_modules/highlight.js/lib/languages/bash.js.js +10 -0
  778. package/extensions/third-party/node_modules/highlight.js/lib/languages/basic.js +236 -0
  779. package/extensions/third-party/node_modules/highlight.js/lib/languages/basic.js.js +10 -0
  780. package/extensions/third-party/node_modules/highlight.js/lib/languages/bnf.js +39 -0
  781. package/extensions/third-party/node_modules/highlight.js/lib/languages/bnf.js.js +10 -0
  782. package/extensions/third-party/node_modules/highlight.js/lib/languages/brainfuck.js +54 -0
  783. package/extensions/third-party/node_modules/highlight.js/lib/languages/brainfuck.js.js +10 -0
  784. package/extensions/third-party/node_modules/highlight.js/lib/languages/c.js +411 -0
  785. package/extensions/third-party/node_modules/highlight.js/lib/languages/c.js.js +10 -0
  786. package/extensions/third-party/node_modules/highlight.js/lib/languages/cal.js +160 -0
  787. package/extensions/third-party/node_modules/highlight.js/lib/languages/cal.js.js +10 -0
  788. package/extensions/third-party/node_modules/highlight.js/lib/languages/capnproto.js +99 -0
  789. package/extensions/third-party/node_modules/highlight.js/lib/languages/capnproto.js.js +10 -0
  790. package/extensions/third-party/node_modules/highlight.js/lib/languages/ceylon.js +140 -0
  791. package/extensions/third-party/node_modules/highlight.js/lib/languages/ceylon.js.js +10 -0
  792. package/extensions/third-party/node_modules/highlight.js/lib/languages/clean.js +67 -0
  793. package/extensions/third-party/node_modules/highlight.js/lib/languages/clean.js.js +10 -0
  794. package/extensions/third-party/node_modules/highlight.js/lib/languages/clojure-repl.js +27 -0
  795. package/extensions/third-party/node_modules/highlight.js/lib/languages/clojure-repl.js.js +10 -0
  796. package/extensions/third-party/node_modules/highlight.js/lib/languages/clojure.js +184 -0
  797. package/extensions/third-party/node_modules/highlight.js/lib/languages/clojure.js.js +10 -0
  798. package/extensions/third-party/node_modules/highlight.js/lib/languages/cmake.js +68 -0
  799. package/extensions/third-party/node_modules/highlight.js/lib/languages/cmake.js.js +10 -0
  800. package/extensions/third-party/node_modules/highlight.js/lib/languages/coffeescript.js +368 -0
  801. package/extensions/third-party/node_modules/highlight.js/lib/languages/coffeescript.js.js +10 -0
  802. package/extensions/third-party/node_modules/highlight.js/lib/languages/coq.js +445 -0
  803. package/extensions/third-party/node_modules/highlight.js/lib/languages/coq.js.js +10 -0
  804. package/extensions/third-party/node_modules/highlight.js/lib/languages/cos.js +140 -0
  805. package/extensions/third-party/node_modules/highlight.js/lib/languages/cos.js.js +10 -0
  806. package/extensions/third-party/node_modules/highlight.js/lib/languages/cpp.js +637 -0
  807. package/extensions/third-party/node_modules/highlight.js/lib/languages/cpp.js.js +10 -0
  808. package/extensions/third-party/node_modules/highlight.js/lib/languages/crmsh.js +100 -0
  809. package/extensions/third-party/node_modules/highlight.js/lib/languages/crmsh.js.js +10 -0
  810. package/extensions/third-party/node_modules/highlight.js/lib/languages/crystal.js +329 -0
  811. package/extensions/third-party/node_modules/highlight.js/lib/languages/crystal.js.js +10 -0
  812. package/extensions/third-party/node_modules/highlight.js/lib/languages/csharp.js +418 -0
  813. package/extensions/third-party/node_modules/highlight.js/lib/languages/csharp.js.js +10 -0
  814. package/extensions/third-party/node_modules/highlight.js/lib/languages/csp.js +65 -0
  815. package/extensions/third-party/node_modules/highlight.js/lib/languages/csp.js.js +10 -0
  816. package/extensions/third-party/node_modules/highlight.js/lib/languages/css.js +960 -0
  817. package/extensions/third-party/node_modules/highlight.js/lib/languages/css.js.js +10 -0
  818. package/extensions/third-party/node_modules/highlight.js/lib/languages/d.js +272 -0
  819. package/extensions/third-party/node_modules/highlight.js/lib/languages/d.js.js +10 -0
  820. package/extensions/third-party/node_modules/highlight.js/lib/languages/dart.js +293 -0
  821. package/extensions/third-party/node_modules/highlight.js/lib/languages/dart.js.js +10 -0
  822. package/extensions/third-party/node_modules/highlight.js/lib/languages/delphi.js +246 -0
  823. package/extensions/third-party/node_modules/highlight.js/lib/languages/delphi.js.js +10 -0
  824. package/extensions/third-party/node_modules/highlight.js/lib/languages/diff.js +65 -0
  825. package/extensions/third-party/node_modules/highlight.js/lib/languages/diff.js.js +10 -0
  826. package/extensions/third-party/node_modules/highlight.js/lib/languages/django.js +75 -0
  827. package/extensions/third-party/node_modules/highlight.js/lib/languages/django.js.js +10 -0
  828. package/extensions/third-party/node_modules/highlight.js/lib/languages/dns.js +133 -0
  829. package/extensions/third-party/node_modules/highlight.js/lib/languages/dns.js.js +10 -0
  830. package/extensions/third-party/node_modules/highlight.js/lib/languages/dockerfile.js +44 -0
  831. package/extensions/third-party/node_modules/highlight.js/lib/languages/dockerfile.js.js +10 -0
  832. package/extensions/third-party/node_modules/highlight.js/lib/languages/dos.js +165 -0
  833. package/extensions/third-party/node_modules/highlight.js/lib/languages/dos.js.js +10 -0
  834. package/extensions/third-party/node_modules/highlight.js/lib/languages/dsconfig.js +66 -0
  835. package/extensions/third-party/node_modules/highlight.js/lib/languages/dsconfig.js.js +10 -0
  836. package/extensions/third-party/node_modules/highlight.js/lib/languages/dts.js +157 -0
  837. package/extensions/third-party/node_modules/highlight.js/lib/languages/dts.js.js +10 -0
  838. package/extensions/third-party/node_modules/highlight.js/lib/languages/dust.js +47 -0
  839. package/extensions/third-party/node_modules/highlight.js/lib/languages/dust.js.js +10 -0
  840. package/extensions/third-party/node_modules/highlight.js/lib/languages/ebnf.js +54 -0
  841. package/extensions/third-party/node_modules/highlight.js/lib/languages/ebnf.js.js +10 -0
  842. package/extensions/third-party/node_modules/highlight.js/lib/languages/elixir.js +286 -0
  843. package/extensions/third-party/node_modules/highlight.js/lib/languages/elixir.js.js +10 -0
  844. package/extensions/third-party/node_modules/highlight.js/lib/languages/elm.js +143 -0
  845. package/extensions/third-party/node_modules/highlight.js/lib/languages/elm.js.js +10 -0
  846. package/extensions/third-party/node_modules/highlight.js/lib/languages/erb.js +29 -0
  847. package/extensions/third-party/node_modules/highlight.js/lib/languages/erb.js.js +10 -0
  848. package/extensions/third-party/node_modules/highlight.js/lib/languages/erlang-repl.js +54 -0
  849. package/extensions/third-party/node_modules/highlight.js/lib/languages/erlang-repl.js.js +10 -0
  850. package/extensions/third-party/node_modules/highlight.js/lib/languages/erlang.js +235 -0
  851. package/extensions/third-party/node_modules/highlight.js/lib/languages/erlang.js.js +10 -0
  852. package/extensions/third-party/node_modules/highlight.js/lib/languages/excel.js +580 -0
  853. package/extensions/third-party/node_modules/highlight.js/lib/languages/excel.js.js +10 -0
  854. package/extensions/third-party/node_modules/highlight.js/lib/languages/fix.js +39 -0
  855. package/extensions/third-party/node_modules/highlight.js/lib/languages/fix.js.js +10 -0
  856. package/extensions/third-party/node_modules/highlight.js/lib/languages/flix.js +79 -0
  857. package/extensions/third-party/node_modules/highlight.js/lib/languages/flix.js.js +10 -0
  858. package/extensions/third-party/node_modules/highlight.js/lib/languages/fortran.js +574 -0
  859. package/extensions/third-party/node_modules/highlight.js/lib/languages/fortran.js.js +10 -0
  860. package/extensions/third-party/node_modules/highlight.js/lib/languages/freedesktop.js +113 -0
  861. package/extensions/third-party/node_modules/highlight.js/lib/languages/freedesktop.js.js +10 -0
  862. package/extensions/third-party/node_modules/highlight.js/lib/languages/fsharp.js +639 -0
  863. package/extensions/third-party/node_modules/highlight.js/lib/languages/fsharp.js.js +10 -0
  864. package/extensions/third-party/node_modules/highlight.js/lib/languages/gams.js +181 -0
  865. package/extensions/third-party/node_modules/highlight.js/lib/languages/gams.js.js +10 -0
  866. package/extensions/third-party/node_modules/highlight.js/lib/languages/gauss.js +306 -0
  867. package/extensions/third-party/node_modules/highlight.js/lib/languages/gauss.js.js +10 -0
  868. package/extensions/third-party/node_modules/highlight.js/lib/languages/gcode.js +189 -0
  869. package/extensions/third-party/node_modules/highlight.js/lib/languages/gcode.js.js +10 -0
  870. package/extensions/third-party/node_modules/highlight.js/lib/languages/gherkin.js +120 -0
  871. package/extensions/third-party/node_modules/highlight.js/lib/languages/gherkin.js.js +10 -0
  872. package/extensions/third-party/node_modules/highlight.js/lib/languages/glsl.js +128 -0
  873. package/extensions/third-party/node_modules/highlight.js/lib/languages/glsl.js.js +10 -0
  874. package/extensions/third-party/node_modules/highlight.js/lib/languages/gml.js +3130 -0
  875. package/extensions/third-party/node_modules/highlight.js/lib/languages/gml.js.js +10 -0
  876. package/extensions/third-party/node_modules/highlight.js/lib/languages/go.js +160 -0
  877. package/extensions/third-party/node_modules/highlight.js/lib/languages/go.js.js +10 -0
  878. package/extensions/third-party/node_modules/highlight.js/lib/languages/golo.js +81 -0
  879. package/extensions/third-party/node_modules/highlight.js/lib/languages/golo.js.js +10 -0
  880. package/extensions/third-party/node_modules/highlight.js/lib/languages/gradle.js +190 -0
  881. package/extensions/third-party/node_modules/highlight.js/lib/languages/gradle.js.js +10 -0
  882. package/extensions/third-party/node_modules/highlight.js/lib/languages/graphql.js +78 -0
  883. package/extensions/third-party/node_modules/highlight.js/lib/languages/graphql.js.js +10 -0
  884. package/extensions/third-party/node_modules/highlight.js/lib/languages/groovy.js +225 -0
  885. package/extensions/third-party/node_modules/highlight.js/lib/languages/groovy.js.js +10 -0
  886. package/extensions/third-party/node_modules/highlight.js/lib/languages/haml.js +113 -0
  887. package/extensions/third-party/node_modules/highlight.js/lib/languages/haml.js.js +10 -0
  888. package/extensions/third-party/node_modules/highlight.js/lib/languages/handlebars.js +258 -0
  889. package/extensions/third-party/node_modules/highlight.js/lib/languages/handlebars.js.js +10 -0
  890. package/extensions/third-party/node_modules/highlight.js/lib/languages/haskell.js +217 -0
  891. package/extensions/third-party/node_modules/highlight.js/lib/languages/haskell.js.js +10 -0
  892. package/extensions/third-party/node_modules/highlight.js/lib/languages/haxe.js +167 -0
  893. package/extensions/third-party/node_modules/highlight.js/lib/languages/haxe.js.js +10 -0
  894. package/extensions/third-party/node_modules/highlight.js/lib/languages/hsp.js +59 -0
  895. package/extensions/third-party/node_modules/highlight.js/lib/languages/hsp.js.js +10 -0
  896. package/extensions/third-party/node_modules/highlight.js/lib/languages/http.js +97 -0
  897. package/extensions/third-party/node_modules/highlight.js/lib/languages/http.js.js +10 -0
  898. package/extensions/third-party/node_modules/highlight.js/lib/languages/hy.js +137 -0
  899. package/extensions/third-party/node_modules/highlight.js/lib/languages/hy.js.js +10 -0
  900. package/extensions/third-party/node_modules/highlight.js/lib/languages/inform7.js +70 -0
  901. package/extensions/third-party/node_modules/highlight.js/lib/languages/inform7.js.js +10 -0
  902. package/extensions/third-party/node_modules/highlight.js/lib/languages/ini.js +121 -0
  903. package/extensions/third-party/node_modules/highlight.js/lib/languages/ini.js.js +10 -0
  904. package/extensions/third-party/node_modules/highlight.js/lib/languages/irpf90.js +107 -0
  905. package/extensions/third-party/node_modules/highlight.js/lib/languages/irpf90.js.js +10 -0
  906. package/extensions/third-party/node_modules/highlight.js/lib/languages/isbl.js +3205 -0
  907. package/extensions/third-party/node_modules/highlight.js/lib/languages/isbl.js.js +10 -0
  908. package/extensions/third-party/node_modules/highlight.js/lib/languages/java.js +314 -0
  909. package/extensions/third-party/node_modules/highlight.js/lib/languages/java.js.js +10 -0
  910. package/extensions/third-party/node_modules/highlight.js/lib/languages/javascript.js +772 -0
  911. package/extensions/third-party/node_modules/highlight.js/lib/languages/javascript.js.js +10 -0
  912. package/extensions/third-party/node_modules/highlight.js/lib/languages/jboss-cli.js +63 -0
  913. package/extensions/third-party/node_modules/highlight.js/lib/languages/jboss-cli.js.js +10 -0
  914. package/extensions/third-party/node_modules/highlight.js/lib/languages/json.js +63 -0
  915. package/extensions/third-party/node_modules/highlight.js/lib/languages/json.js.js +10 -0
  916. package/extensions/third-party/node_modules/highlight.js/lib/languages/julia-repl.js +51 -0
  917. package/extensions/third-party/node_modules/highlight.js/lib/languages/julia-repl.js.js +10 -0
  918. package/extensions/third-party/node_modules/highlight.js/lib/languages/julia.js +442 -0
  919. package/extensions/third-party/node_modules/highlight.js/lib/languages/julia.js.js +10 -0
  920. package/extensions/third-party/node_modules/highlight.js/lib/languages/kotlin.js +288 -0
  921. package/extensions/third-party/node_modules/highlight.js/lib/languages/kotlin.js.js +10 -0
  922. package/extensions/third-party/node_modules/highlight.js/lib/languages/lasso.js +171 -0
  923. package/extensions/third-party/node_modules/highlight.js/lib/languages/lasso.js.js +10 -0
  924. package/extensions/third-party/node_modules/highlight.js/lib/languages/latex.js +278 -0
  925. package/extensions/third-party/node_modules/highlight.js/lib/languages/latex.js.js +10 -0
  926. package/extensions/third-party/node_modules/highlight.js/lib/languages/ldif.js +31 -0
  927. package/extensions/third-party/node_modules/highlight.js/lib/languages/ldif.js.js +10 -0
  928. package/extensions/third-party/node_modules/highlight.js/lib/languages/leaf.js +98 -0
  929. package/extensions/third-party/node_modules/highlight.js/lib/languages/leaf.js.js +10 -0
  930. package/extensions/third-party/node_modules/highlight.js/lib/languages/less.js +1061 -0
  931. package/extensions/third-party/node_modules/highlight.js/lib/languages/less.js.js +10 -0
  932. package/extensions/third-party/node_modules/highlight.js/lib/languages/lisp.js +139 -0
  933. package/extensions/third-party/node_modules/highlight.js/lib/languages/lisp.js.js +10 -0
  934. package/extensions/third-party/node_modules/highlight.js/lib/languages/livecodeserver.js +173 -0
  935. package/extensions/third-party/node_modules/highlight.js/lib/languages/livecodeserver.js.js +10 -0
  936. package/extensions/third-party/node_modules/highlight.js/lib/languages/livescript.js +380 -0
  937. package/extensions/third-party/node_modules/highlight.js/lib/languages/livescript.js.js +10 -0
  938. package/extensions/third-party/node_modules/highlight.js/lib/languages/llvm.js +136 -0
  939. package/extensions/third-party/node_modules/highlight.js/lib/languages/llvm.js.js +10 -0
  940. package/extensions/third-party/node_modules/highlight.js/lib/languages/lsl.js +76 -0
  941. package/extensions/third-party/node_modules/highlight.js/lib/languages/lsl.js.js +10 -0
  942. package/extensions/third-party/node_modules/highlight.js/lib/languages/lua.js +81 -0
  943. package/extensions/third-party/node_modules/highlight.js/lib/languages/lua.js.js +10 -0
  944. package/extensions/third-party/node_modules/highlight.js/lib/languages/makefile.js +89 -0
  945. package/extensions/third-party/node_modules/highlight.js/lib/languages/makefile.js.js +10 -0
  946. package/extensions/third-party/node_modules/highlight.js/lib/languages/markdown.js +250 -0
  947. package/extensions/third-party/node_modules/highlight.js/lib/languages/markdown.js.js +10 -0
  948. package/extensions/third-party/node_modules/highlight.js/lib/languages/mathematica.js +7359 -0
  949. package/extensions/third-party/node_modules/highlight.js/lib/languages/mathematica.js.js +10 -0
  950. package/extensions/third-party/node_modules/highlight.js/lib/languages/matlab.js +107 -0
  951. package/extensions/third-party/node_modules/highlight.js/lib/languages/matlab.js.js +10 -0
  952. package/extensions/third-party/node_modules/highlight.js/lib/languages/maxima.js +414 -0
  953. package/extensions/third-party/node_modules/highlight.js/lib/languages/maxima.js.js +10 -0
  954. package/extensions/third-party/node_modules/highlight.js/lib/languages/mel.js +235 -0
  955. package/extensions/third-party/node_modules/highlight.js/lib/languages/mel.js.js +10 -0
  956. package/extensions/third-party/node_modules/highlight.js/lib/languages/mercury.js +108 -0
  957. package/extensions/third-party/node_modules/highlight.js/lib/languages/mercury.js.js +10 -0
  958. package/extensions/third-party/node_modules/highlight.js/lib/languages/mipsasm.js +104 -0
  959. package/extensions/third-party/node_modules/highlight.js/lib/languages/mipsasm.js.js +10 -0
  960. package/extensions/third-party/node_modules/highlight.js/lib/languages/mizar.js +27 -0
  961. package/extensions/third-party/node_modules/highlight.js/lib/languages/mizar.js.js +10 -0
  962. package/extensions/third-party/node_modules/highlight.js/lib/languages/mojolicious.js +36 -0
  963. package/extensions/third-party/node_modules/highlight.js/lib/languages/mojolicious.js.js +10 -0
  964. package/extensions/third-party/node_modules/highlight.js/lib/languages/monkey.js +184 -0
  965. package/extensions/third-party/node_modules/highlight.js/lib/languages/monkey.js.js +10 -0
  966. package/extensions/third-party/node_modules/highlight.js/lib/languages/moonscript.js +141 -0
  967. package/extensions/third-party/node_modules/highlight.js/lib/languages/moonscript.js.js +10 -0
  968. package/extensions/third-party/node_modules/highlight.js/lib/languages/n1ql.js +365 -0
  969. package/extensions/third-party/node_modules/highlight.js/lib/languages/n1ql.js.js +10 -0
  970. package/extensions/third-party/node_modules/highlight.js/lib/languages/nestedtext.js +83 -0
  971. package/extensions/third-party/node_modules/highlight.js/lib/languages/nestedtext.js.js +10 -0
  972. package/extensions/third-party/node_modules/highlight.js/lib/languages/nginx.js +153 -0
  973. package/extensions/third-party/node_modules/highlight.js/lib/languages/nginx.js.js +10 -0
  974. package/extensions/third-party/node_modules/highlight.js/lib/languages/nim.js +187 -0
  975. package/extensions/third-party/node_modules/highlight.js/lib/languages/nim.js.js +10 -0
  976. package/extensions/third-party/node_modules/highlight.js/lib/languages/nix.js +372 -0
  977. package/extensions/third-party/node_modules/highlight.js/lib/languages/nix.js.js +10 -0
  978. package/extensions/third-party/node_modules/highlight.js/lib/languages/node-repl.js +33 -0
  979. package/extensions/third-party/node_modules/highlight.js/lib/languages/node-repl.js.js +10 -0
  980. package/extensions/third-party/node_modules/highlight.js/lib/languages/nsis.js +591 -0
  981. package/extensions/third-party/node_modules/highlight.js/lib/languages/nsis.js.js +10 -0
  982. package/extensions/third-party/node_modules/highlight.js/lib/languages/objectivec.js +253 -0
  983. package/extensions/third-party/node_modules/highlight.js/lib/languages/objectivec.js.js +10 -0
  984. package/extensions/third-party/node_modules/highlight.js/lib/languages/ocaml.js +83 -0
  985. package/extensions/third-party/node_modules/highlight.js/lib/languages/ocaml.js.js +10 -0
  986. package/extensions/third-party/node_modules/highlight.js/lib/languages/openscad.js +77 -0
  987. package/extensions/third-party/node_modules/highlight.js/lib/languages/openscad.js.js +10 -0
  988. package/extensions/third-party/node_modules/highlight.js/lib/languages/oxygene.js +87 -0
  989. package/extensions/third-party/node_modules/highlight.js/lib/languages/oxygene.js.js +10 -0
  990. package/extensions/third-party/node_modules/highlight.js/lib/languages/parser3.js +55 -0
  991. package/extensions/third-party/node_modules/highlight.js/lib/languages/parser3.js.js +10 -0
  992. package/extensions/third-party/node_modules/highlight.js/lib/languages/perl.js +504 -0
  993. package/extensions/third-party/node_modules/highlight.js/lib/languages/perl.js.js +10 -0
  994. package/extensions/third-party/node_modules/highlight.js/lib/languages/pf.js +60 -0
  995. package/extensions/third-party/node_modules/highlight.js/lib/languages/pf.js.js +10 -0
  996. package/extensions/third-party/node_modules/highlight.js/lib/languages/pgsql.js +525 -0
  997. package/extensions/third-party/node_modules/highlight.js/lib/languages/pgsql.js.js +10 -0
  998. package/extensions/third-party/node_modules/highlight.js/lib/languages/php-template.js +57 -0
  999. package/extensions/third-party/node_modules/highlight.js/lib/languages/php-template.js.js +10 -0
  1000. package/extensions/third-party/node_modules/highlight.js/lib/languages/php.js +635 -0
  1001. package/extensions/third-party/node_modules/highlight.js/lib/languages/php.js.js +10 -0
  1002. package/extensions/third-party/node_modules/highlight.js/lib/languages/plaintext.js +19 -0
  1003. package/extensions/third-party/node_modules/highlight.js/lib/languages/plaintext.js.js +10 -0
  1004. package/extensions/third-party/node_modules/highlight.js/lib/languages/pony.js +90 -0
  1005. package/extensions/third-party/node_modules/highlight.js/lib/languages/pony.js.js +10 -0
  1006. package/extensions/third-party/node_modules/highlight.js/lib/languages/powershell.js +317 -0
  1007. package/extensions/third-party/node_modules/highlight.js/lib/languages/powershell.js.js +10 -0
  1008. package/extensions/third-party/node_modules/highlight.js/lib/languages/processing.js +434 -0
  1009. package/extensions/third-party/node_modules/highlight.js/lib/languages/processing.js.js +10 -0
  1010. package/extensions/third-party/node_modules/highlight.js/lib/languages/profile.js +43 -0
  1011. package/extensions/third-party/node_modules/highlight.js/lib/languages/profile.js.js +10 -0
  1012. package/extensions/third-party/node_modules/highlight.js/lib/languages/prolog.js +97 -0
  1013. package/extensions/third-party/node_modules/highlight.js/lib/languages/prolog.js.js +10 -0
  1014. package/extensions/third-party/node_modules/highlight.js/lib/languages/properties.js +68 -0
  1015. package/extensions/third-party/node_modules/highlight.js/lib/languages/properties.js.js +10 -0
  1016. package/extensions/third-party/node_modules/highlight.js/lib/languages/protobuf.js +79 -0
  1017. package/extensions/third-party/node_modules/highlight.js/lib/languages/protobuf.js.js +10 -0
  1018. package/extensions/third-party/node_modules/highlight.js/lib/languages/puppet.js +146 -0
  1019. package/extensions/third-party/node_modules/highlight.js/lib/languages/puppet.js.js +10 -0
  1020. package/extensions/third-party/node_modules/highlight.js/lib/languages/purebasic.js +100 -0
  1021. package/extensions/third-party/node_modules/highlight.js/lib/languages/purebasic.js.js +10 -0
  1022. package/extensions/third-party/node_modules/highlight.js/lib/languages/python-repl.js +32 -0
  1023. package/extensions/third-party/node_modules/highlight.js/lib/languages/python-repl.js.js +10 -0
  1024. package/extensions/third-party/node_modules/highlight.js/lib/languages/python.js +441 -0
  1025. package/extensions/third-party/node_modules/highlight.js/lib/languages/python.js.js +10 -0
  1026. package/extensions/third-party/node_modules/highlight.js/lib/languages/q.js +38 -0
  1027. package/extensions/third-party/node_modules/highlight.js/lib/languages/q.js.js +10 -0
  1028. package/extensions/third-party/node_modules/highlight.js/lib/languages/qml.js +189 -0
  1029. package/extensions/third-party/node_modules/highlight.js/lib/languages/qml.js.js +10 -0
  1030. package/extensions/third-party/node_modules/highlight.js/lib/languages/r.js +257 -0
  1031. package/extensions/third-party/node_modules/highlight.js/lib/languages/r.js.js +10 -0
  1032. package/extensions/third-party/node_modules/highlight.js/lib/languages/reasonml.js +142 -0
  1033. package/extensions/third-party/node_modules/highlight.js/lib/languages/reasonml.js.js +10 -0
  1034. package/extensions/third-party/node_modules/highlight.js/lib/languages/rib.js +37 -0
  1035. package/extensions/third-party/node_modules/highlight.js/lib/languages/rib.js.js +10 -0
  1036. package/extensions/third-party/node_modules/highlight.js/lib/languages/roboconf.js +82 -0
  1037. package/extensions/third-party/node_modules/highlight.js/lib/languages/roboconf.js.js +10 -0
  1038. package/extensions/third-party/node_modules/highlight.js/lib/languages/routeros.js +164 -0
  1039. package/extensions/third-party/node_modules/highlight.js/lib/languages/routeros.js.js +10 -0
  1040. package/extensions/third-party/node_modules/highlight.js/lib/languages/rsl.js +149 -0
  1041. package/extensions/third-party/node_modules/highlight.js/lib/languages/rsl.js.js +10 -0
  1042. package/extensions/third-party/node_modules/highlight.js/lib/languages/ruby.js +449 -0
  1043. package/extensions/third-party/node_modules/highlight.js/lib/languages/ruby.js.js +10 -0
  1044. package/extensions/third-party/node_modules/highlight.js/lib/languages/ruleslanguage.js +76 -0
  1045. package/extensions/third-party/node_modules/highlight.js/lib/languages/ruleslanguage.js.js +10 -0
  1046. package/extensions/third-party/node_modules/highlight.js/lib/languages/rust.js +340 -0
  1047. package/extensions/third-party/node_modules/highlight.js/lib/languages/rust.js.js +10 -0
  1048. package/extensions/third-party/node_modules/highlight.js/lib/languages/sas.js +557 -0
  1049. package/extensions/third-party/node_modules/highlight.js/lib/languages/sas.js.js +10 -0
  1050. package/extensions/third-party/node_modules/highlight.js/lib/languages/scala.js +214 -0
  1051. package/extensions/third-party/node_modules/highlight.js/lib/languages/scala.js.js +10 -0
  1052. package/extensions/third-party/node_modules/highlight.js/lib/languages/scheme.js +196 -0
  1053. package/extensions/third-party/node_modules/highlight.js/lib/languages/scheme.js.js +10 -0
  1054. package/extensions/third-party/node_modules/highlight.js/lib/languages/scilab.js +73 -0
  1055. package/extensions/third-party/node_modules/highlight.js/lib/languages/scilab.js.js +10 -0
  1056. package/extensions/third-party/node_modules/highlight.js/lib/languages/scss.js +950 -0
  1057. package/extensions/third-party/node_modules/highlight.js/lib/languages/scss.js.js +10 -0
  1058. package/extensions/third-party/node_modules/highlight.js/lib/languages/shell.js +33 -0
  1059. package/extensions/third-party/node_modules/highlight.js/lib/languages/shell.js.js +10 -0
  1060. package/extensions/third-party/node_modules/highlight.js/lib/languages/smali.js +126 -0
  1061. package/extensions/third-party/node_modules/highlight.js/lib/languages/smali.js.js +10 -0
  1062. package/extensions/third-party/node_modules/highlight.js/lib/languages/smalltalk.js +69 -0
  1063. package/extensions/third-party/node_modules/highlight.js/lib/languages/smalltalk.js.js +10 -0
  1064. package/extensions/third-party/node_modules/highlight.js/lib/languages/sml.js +75 -0
  1065. package/extensions/third-party/node_modules/highlight.js/lib/languages/sml.js.js +10 -0
  1066. package/extensions/third-party/node_modules/highlight.js/lib/languages/sqf.js +2828 -0
  1067. package/extensions/third-party/node_modules/highlight.js/lib/languages/sqf.js.js +10 -0
  1068. package/extensions/third-party/node_modules/highlight.js/lib/languages/sql.js +693 -0
  1069. package/extensions/third-party/node_modules/highlight.js/lib/languages/sql.js.js +10 -0
  1070. package/extensions/third-party/node_modules/highlight.js/lib/languages/stan.js +521 -0
  1071. package/extensions/third-party/node_modules/highlight.js/lib/languages/stan.js.js +10 -0
  1072. package/extensions/third-party/node_modules/highlight.js/lib/languages/stata.js +53 -0
  1073. package/extensions/third-party/node_modules/highlight.js/lib/languages/stata.js.js +10 -0
  1074. package/extensions/third-party/node_modules/highlight.js/lib/languages/step21.js +67 -0
  1075. package/extensions/third-party/node_modules/highlight.js/lib/languages/step21.js.js +10 -0
  1076. package/extensions/third-party/node_modules/highlight.js/lib/languages/stylus.js +1010 -0
  1077. package/extensions/third-party/node_modules/highlight.js/lib/languages/stylus.js.js +10 -0
  1078. package/extensions/third-party/node_modules/highlight.js/lib/languages/subunit.js +44 -0
  1079. package/extensions/third-party/node_modules/highlight.js/lib/languages/subunit.js.js +10 -0
  1080. package/extensions/third-party/node_modules/highlight.js/lib/languages/swift.js +984 -0
  1081. package/extensions/third-party/node_modules/highlight.js/lib/languages/swift.js.js +10 -0
  1082. package/extensions/third-party/node_modules/highlight.js/lib/languages/taggerscript.js +59 -0
  1083. package/extensions/third-party/node_modules/highlight.js/lib/languages/taggerscript.js.js +10 -0
  1084. package/extensions/third-party/node_modules/highlight.js/lib/languages/tap.js +47 -0
  1085. package/extensions/third-party/node_modules/highlight.js/lib/languages/tap.js.js +10 -0
  1086. package/extensions/third-party/node_modules/highlight.js/lib/languages/tcl.js +191 -0
  1087. package/extensions/third-party/node_modules/highlight.js/lib/languages/tcl.js.js +10 -0
  1088. package/extensions/third-party/node_modules/highlight.js/lib/languages/thrift.js +77 -0
  1089. package/extensions/third-party/node_modules/highlight.js/lib/languages/thrift.js.js +10 -0
  1090. package/extensions/third-party/node_modules/highlight.js/lib/languages/tp.js +172 -0
  1091. package/extensions/third-party/node_modules/highlight.js/lib/languages/tp.js.js +10 -0
  1092. package/extensions/third-party/node_modules/highlight.js/lib/languages/twig.js +260 -0
  1093. package/extensions/third-party/node_modules/highlight.js/lib/languages/twig.js.js +10 -0
  1094. package/extensions/third-party/node_modules/highlight.js/lib/languages/typescript.js +916 -0
  1095. package/extensions/third-party/node_modules/highlight.js/lib/languages/typescript.js.js +10 -0
  1096. package/extensions/third-party/node_modules/highlight.js/lib/languages/vala.js +61 -0
  1097. package/extensions/third-party/node_modules/highlight.js/lib/languages/vala.js.js +10 -0
  1098. package/extensions/third-party/node_modules/highlight.js/lib/languages/vbnet.js +157 -0
  1099. package/extensions/third-party/node_modules/highlight.js/lib/languages/vbnet.js.js +10 -0
  1100. package/extensions/third-party/node_modules/highlight.js/lib/languages/vbscript-html.js +24 -0
  1101. package/extensions/third-party/node_modules/highlight.js/lib/languages/vbscript-html.js.js +10 -0
  1102. package/extensions/third-party/node_modules/highlight.js/lib/languages/vbscript.js +220 -0
  1103. package/extensions/third-party/node_modules/highlight.js/lib/languages/vbscript.js.js +10 -0
  1104. package/extensions/third-party/node_modules/highlight.js/lib/languages/verilog.js +550 -0
  1105. package/extensions/third-party/node_modules/highlight.js/lib/languages/verilog.js.js +10 -0
  1106. package/extensions/third-party/node_modules/highlight.js/lib/languages/vhdl.js +216 -0
  1107. package/extensions/third-party/node_modules/highlight.js/lib/languages/vhdl.js.js +10 -0
  1108. package/extensions/third-party/node_modules/highlight.js/lib/languages/vim.js +129 -0
  1109. package/extensions/third-party/node_modules/highlight.js/lib/languages/vim.js.js +10 -0
  1110. package/extensions/third-party/node_modules/highlight.js/lib/languages/wasm.js +139 -0
  1111. package/extensions/third-party/node_modules/highlight.js/lib/languages/wasm.js.js +10 -0
  1112. package/extensions/third-party/node_modules/highlight.js/lib/languages/wren.js +302 -0
  1113. package/extensions/third-party/node_modules/highlight.js/lib/languages/wren.js.js +10 -0
  1114. package/extensions/third-party/node_modules/highlight.js/lib/languages/x86asm.js +153 -0
  1115. package/extensions/third-party/node_modules/highlight.js/lib/languages/x86asm.js.js +10 -0
  1116. package/extensions/third-party/node_modules/highlight.js/lib/languages/xl.js +205 -0
  1117. package/extensions/third-party/node_modules/highlight.js/lib/languages/xl.js.js +10 -0
  1118. package/extensions/third-party/node_modules/highlight.js/lib/languages/xml.js +234 -0
  1119. package/extensions/third-party/node_modules/highlight.js/lib/languages/xml.js.js +10 -0
  1120. package/extensions/third-party/node_modules/highlight.js/lib/languages/xquery.js +360 -0
  1121. package/extensions/third-party/node_modules/highlight.js/lib/languages/xquery.js.js +10 -0
  1122. package/extensions/third-party/node_modules/highlight.js/lib/languages/yaml.js +213 -0
  1123. package/extensions/third-party/node_modules/highlight.js/lib/languages/yaml.js.js +10 -0
  1124. package/extensions/third-party/node_modules/highlight.js/lib/languages/zephir.js +129 -0
  1125. package/extensions/third-party/node_modules/highlight.js/lib/languages/zephir.js.js +10 -0
  1126. package/extensions/third-party/node_modules/highlight.js/package.json +119 -0
  1127. package/extensions/third-party/node_modules/highlight.js/scss/1c-light.scss +107 -0
  1128. package/extensions/third-party/node_modules/highlight.js/scss/a11y-dark.scss +94 -0
  1129. package/extensions/third-party/node_modules/highlight.js/scss/a11y-light.scss +94 -0
  1130. package/extensions/third-party/node_modules/highlight.js/scss/agate.scss +127 -0
  1131. package/extensions/third-party/node_modules/highlight.js/scss/an-old-hope.scss +75 -0
  1132. package/extensions/third-party/node_modules/highlight.js/scss/androidstudio.scss +60 -0
  1133. package/extensions/third-party/node_modules/highlight.js/scss/arduino-light.scss +78 -0
  1134. package/extensions/third-party/node_modules/highlight.js/scss/arta.scss +66 -0
  1135. package/extensions/third-party/node_modules/highlight.js/scss/ascetic.scss +45 -0
  1136. package/extensions/third-party/node_modules/highlight.js/scss/atom-one-dark-reasonable.scss +105 -0
  1137. package/extensions/third-party/node_modules/highlight.js/scss/atom-one-dark.scss +90 -0
  1138. package/extensions/third-party/node_modules/highlight.js/scss/atom-one-light.scss +90 -0
  1139. package/extensions/third-party/node_modules/highlight.js/scss/base16/3024.scss +163 -0
  1140. package/extensions/third-party/node_modules/highlight.js/scss/base16/apathy.scss +163 -0
  1141. package/extensions/third-party/node_modules/highlight.js/scss/base16/apprentice.scss +163 -0
  1142. package/extensions/third-party/node_modules/highlight.js/scss/base16/ashes.scss +163 -0
  1143. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-cave-light.scss +163 -0
  1144. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-cave.scss +163 -0
  1145. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-dune-light.scss +163 -0
  1146. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-dune.scss +163 -0
  1147. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-estuary-light.scss +163 -0
  1148. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-estuary.scss +163 -0
  1149. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-forest-light.scss +163 -0
  1150. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-forest.scss +163 -0
  1151. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-heath-light.scss +163 -0
  1152. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-heath.scss +163 -0
  1153. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-lakeside-light.scss +163 -0
  1154. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-lakeside.scss +163 -0
  1155. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-plateau-light.scss +163 -0
  1156. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-plateau.scss +163 -0
  1157. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-savanna-light.scss +163 -0
  1158. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-savanna.scss +163 -0
  1159. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-seaside-light.scss +163 -0
  1160. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-seaside.scss +163 -0
  1161. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-sulphurpool-light.scss +163 -0
  1162. package/extensions/third-party/node_modules/highlight.js/scss/base16/atelier-sulphurpool.scss +163 -0
  1163. package/extensions/third-party/node_modules/highlight.js/scss/base16/atlas.scss +163 -0
  1164. package/extensions/third-party/node_modules/highlight.js/scss/base16/bespin.scss +163 -0
  1165. package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-bathory.scss +163 -0
  1166. package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-burzum.scss +163 -0
  1167. package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-dark-funeral.scss +163 -0
  1168. package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-gorgoroth.scss +163 -0
  1169. package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-immortal.scss +163 -0
  1170. package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-khold.scss +163 -0
  1171. package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-marduk.scss +163 -0
  1172. package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-mayhem.scss +163 -0
  1173. package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-nile.scss +163 -0
  1174. package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal-venom.scss +163 -0
  1175. package/extensions/third-party/node_modules/highlight.js/scss/base16/black-metal.scss +163 -0
  1176. package/extensions/third-party/node_modules/highlight.js/scss/base16/brewer.scss +163 -0
  1177. package/extensions/third-party/node_modules/highlight.js/scss/base16/bright.scss +163 -0
  1178. package/extensions/third-party/node_modules/highlight.js/scss/base16/brogrammer.scss +163 -0
  1179. package/extensions/third-party/node_modules/highlight.js/scss/base16/brush-trees-dark.scss +163 -0
  1180. package/extensions/third-party/node_modules/highlight.js/scss/base16/brush-trees.scss +163 -0
  1181. package/extensions/third-party/node_modules/highlight.js/scss/base16/chalk.scss +163 -0
  1182. package/extensions/third-party/node_modules/highlight.js/scss/base16/circus.scss +163 -0
  1183. package/extensions/third-party/node_modules/highlight.js/scss/base16/classic-dark.scss +163 -0
  1184. package/extensions/third-party/node_modules/highlight.js/scss/base16/classic-light.scss +163 -0
  1185. package/extensions/third-party/node_modules/highlight.js/scss/base16/codeschool.scss +163 -0
  1186. package/extensions/third-party/node_modules/highlight.js/scss/base16/colors.scss +163 -0
  1187. package/extensions/third-party/node_modules/highlight.js/scss/base16/cupcake.scss +163 -0
  1188. package/extensions/third-party/node_modules/highlight.js/scss/base16/cupertino.scss +163 -0
  1189. package/extensions/third-party/node_modules/highlight.js/scss/base16/danqing.scss +163 -0
  1190. package/extensions/third-party/node_modules/highlight.js/scss/base16/darcula.scss +163 -0
  1191. package/extensions/third-party/node_modules/highlight.js/scss/base16/dark-violet.scss +163 -0
  1192. package/extensions/third-party/node_modules/highlight.js/scss/base16/darkmoss.scss +163 -0
  1193. package/extensions/third-party/node_modules/highlight.js/scss/base16/darktooth.scss +163 -0
  1194. package/extensions/third-party/node_modules/highlight.js/scss/base16/decaf.scss +163 -0
  1195. package/extensions/third-party/node_modules/highlight.js/scss/base16/default-dark.scss +163 -0
  1196. package/extensions/third-party/node_modules/highlight.js/scss/base16/default-light.scss +163 -0
  1197. package/extensions/third-party/node_modules/highlight.js/scss/base16/dirtysea.scss +163 -0
  1198. package/extensions/third-party/node_modules/highlight.js/scss/base16/dracula.scss +163 -0
  1199. package/extensions/third-party/node_modules/highlight.js/scss/base16/edge-dark.scss +163 -0
  1200. package/extensions/third-party/node_modules/highlight.js/scss/base16/edge-light.scss +163 -0
  1201. package/extensions/third-party/node_modules/highlight.js/scss/base16/eighties.scss +163 -0
  1202. package/extensions/third-party/node_modules/highlight.js/scss/base16/embers.scss +163 -0
  1203. package/extensions/third-party/node_modules/highlight.js/scss/base16/equilibrium-dark.scss +163 -0
  1204. package/extensions/third-party/node_modules/highlight.js/scss/base16/equilibrium-gray-dark.scss +163 -0
  1205. package/extensions/third-party/node_modules/highlight.js/scss/base16/equilibrium-gray-light.scss +163 -0
  1206. package/extensions/third-party/node_modules/highlight.js/scss/base16/equilibrium-light.scss +163 -0
  1207. package/extensions/third-party/node_modules/highlight.js/scss/base16/espresso.scss +163 -0
  1208. package/extensions/third-party/node_modules/highlight.js/scss/base16/eva-dim.scss +163 -0
  1209. package/extensions/third-party/node_modules/highlight.js/scss/base16/eva.scss +163 -0
  1210. package/extensions/third-party/node_modules/highlight.js/scss/base16/flat.scss +163 -0
  1211. package/extensions/third-party/node_modules/highlight.js/scss/base16/framer.scss +163 -0
  1212. package/extensions/third-party/node_modules/highlight.js/scss/base16/fruit-soda.scss +163 -0
  1213. package/extensions/third-party/node_modules/highlight.js/scss/base16/gigavolt.scss +163 -0
  1214. package/extensions/third-party/node_modules/highlight.js/scss/base16/github.scss +163 -0
  1215. package/extensions/third-party/node_modules/highlight.js/scss/base16/google-dark.scss +163 -0
  1216. package/extensions/third-party/node_modules/highlight.js/scss/base16/google-light.scss +163 -0
  1217. package/extensions/third-party/node_modules/highlight.js/scss/base16/grayscale-dark.scss +163 -0
  1218. package/extensions/third-party/node_modules/highlight.js/scss/base16/grayscale-light.scss +163 -0
  1219. package/extensions/third-party/node_modules/highlight.js/scss/base16/green-screen.scss +163 -0
  1220. package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-dark-hard.scss +163 -0
  1221. package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-dark-medium.scss +163 -0
  1222. package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-dark-pale.scss +163 -0
  1223. package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-dark-soft.scss +163 -0
  1224. package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-light-hard.scss +163 -0
  1225. package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-light-medium.scss +163 -0
  1226. package/extensions/third-party/node_modules/highlight.js/scss/base16/gruvbox-light-soft.scss +163 -0
  1227. package/extensions/third-party/node_modules/highlight.js/scss/base16/hardcore.scss +163 -0
  1228. package/extensions/third-party/node_modules/highlight.js/scss/base16/harmonic16-dark.scss +163 -0
  1229. package/extensions/third-party/node_modules/highlight.js/scss/base16/harmonic16-light.scss +163 -0
  1230. package/extensions/third-party/node_modules/highlight.js/scss/base16/heetch-dark.scss +163 -0
  1231. package/extensions/third-party/node_modules/highlight.js/scss/base16/heetch-light.scss +163 -0
  1232. package/extensions/third-party/node_modules/highlight.js/scss/base16/helios.scss +163 -0
  1233. package/extensions/third-party/node_modules/highlight.js/scss/base16/hopscotch.scss +163 -0
  1234. package/extensions/third-party/node_modules/highlight.js/scss/base16/horizon-dark.scss +163 -0
  1235. package/extensions/third-party/node_modules/highlight.js/scss/base16/horizon-light.scss +163 -0
  1236. package/extensions/third-party/node_modules/highlight.js/scss/base16/humanoid-dark.scss +163 -0
  1237. package/extensions/third-party/node_modules/highlight.js/scss/base16/humanoid-light.scss +163 -0
  1238. package/extensions/third-party/node_modules/highlight.js/scss/base16/ia-dark.scss +163 -0
  1239. package/extensions/third-party/node_modules/highlight.js/scss/base16/ia-light.scss +163 -0
  1240. package/extensions/third-party/node_modules/highlight.js/scss/base16/icy-dark.scss +163 -0
  1241. package/extensions/third-party/node_modules/highlight.js/scss/base16/ir-black.scss +163 -0
  1242. package/extensions/third-party/node_modules/highlight.js/scss/base16/isotope.scss +163 -0
  1243. package/extensions/third-party/node_modules/highlight.js/scss/base16/kimber.scss +163 -0
  1244. package/extensions/third-party/node_modules/highlight.js/scss/base16/london-tube.scss +163 -0
  1245. package/extensions/third-party/node_modules/highlight.js/scss/base16/macintosh.scss +163 -0
  1246. package/extensions/third-party/node_modules/highlight.js/scss/base16/marrakesh.scss +163 -0
  1247. package/extensions/third-party/node_modules/highlight.js/scss/base16/materia.scss +163 -0
  1248. package/extensions/third-party/node_modules/highlight.js/scss/base16/material-darker.scss +163 -0
  1249. package/extensions/third-party/node_modules/highlight.js/scss/base16/material-lighter.scss +163 -0
  1250. package/extensions/third-party/node_modules/highlight.js/scss/base16/material-palenight.scss +163 -0
  1251. package/extensions/third-party/node_modules/highlight.js/scss/base16/material-vivid.scss +163 -0
  1252. package/extensions/third-party/node_modules/highlight.js/scss/base16/material.scss +163 -0
  1253. package/extensions/third-party/node_modules/highlight.js/scss/base16/mellow-purple.scss +163 -0
  1254. package/extensions/third-party/node_modules/highlight.js/scss/base16/mexico-light.scss +163 -0
  1255. package/extensions/third-party/node_modules/highlight.js/scss/base16/mocha.scss +163 -0
  1256. package/extensions/third-party/node_modules/highlight.js/scss/base16/monokai.scss +163 -0
  1257. package/extensions/third-party/node_modules/highlight.js/scss/base16/nebula.scss +163 -0
  1258. package/extensions/third-party/node_modules/highlight.js/scss/base16/nord.scss +163 -0
  1259. package/extensions/third-party/node_modules/highlight.js/scss/base16/nova.scss +163 -0
  1260. package/extensions/third-party/node_modules/highlight.js/scss/base16/ocean.scss +163 -0
  1261. package/extensions/third-party/node_modules/highlight.js/scss/base16/oceanicnext.scss +163 -0
  1262. package/extensions/third-party/node_modules/highlight.js/scss/base16/one-light.scss +163 -0
  1263. package/extensions/third-party/node_modules/highlight.js/scss/base16/onedark.scss +163 -0
  1264. package/extensions/third-party/node_modules/highlight.js/scss/base16/outrun-dark.scss +163 -0
  1265. package/extensions/third-party/node_modules/highlight.js/scss/base16/papercolor-dark.scss +163 -0
  1266. package/extensions/third-party/node_modules/highlight.js/scss/base16/papercolor-light.scss +163 -0
  1267. package/extensions/third-party/node_modules/highlight.js/scss/base16/paraiso.scss +163 -0
  1268. package/extensions/third-party/node_modules/highlight.js/scss/base16/pasque.scss +163 -0
  1269. package/extensions/third-party/node_modules/highlight.js/scss/base16/phd.scss +163 -0
  1270. package/extensions/third-party/node_modules/highlight.js/scss/base16/pico.scss +163 -0
  1271. package/extensions/third-party/node_modules/highlight.js/scss/base16/pop.scss +163 -0
  1272. package/extensions/third-party/node_modules/highlight.js/scss/base16/porple.scss +163 -0
  1273. package/extensions/third-party/node_modules/highlight.js/scss/base16/qualia.scss +163 -0
  1274. package/extensions/third-party/node_modules/highlight.js/scss/base16/railscasts.scss +163 -0
  1275. package/extensions/third-party/node_modules/highlight.js/scss/base16/rebecca.scss +163 -0
  1276. package/extensions/third-party/node_modules/highlight.js/scss/base16/ros-pine-dawn.scss +163 -0
  1277. package/extensions/third-party/node_modules/highlight.js/scss/base16/ros-pine-moon.scss +163 -0
  1278. package/extensions/third-party/node_modules/highlight.js/scss/base16/ros-pine.scss +163 -0
  1279. package/extensions/third-party/node_modules/highlight.js/scss/base16/sagelight.scss +163 -0
  1280. package/extensions/third-party/node_modules/highlight.js/scss/base16/sandcastle.scss +163 -0
  1281. package/extensions/third-party/node_modules/highlight.js/scss/base16/seti-ui.scss +163 -0
  1282. package/extensions/third-party/node_modules/highlight.js/scss/base16/shapeshifter.scss +163 -0
  1283. package/extensions/third-party/node_modules/highlight.js/scss/base16/silk-dark.scss +163 -0
  1284. package/extensions/third-party/node_modules/highlight.js/scss/base16/silk-light.scss +163 -0
  1285. package/extensions/third-party/node_modules/highlight.js/scss/base16/snazzy.scss +163 -0
  1286. package/extensions/third-party/node_modules/highlight.js/scss/base16/solar-flare-light.scss +163 -0
  1287. package/extensions/third-party/node_modules/highlight.js/scss/base16/solar-flare.scss +163 -0
  1288. package/extensions/third-party/node_modules/highlight.js/scss/base16/solarized-dark.scss +163 -0
  1289. package/extensions/third-party/node_modules/highlight.js/scss/base16/solarized-light.scss +163 -0
  1290. package/extensions/third-party/node_modules/highlight.js/scss/base16/spacemacs.scss +163 -0
  1291. package/extensions/third-party/node_modules/highlight.js/scss/base16/summercamp.scss +163 -0
  1292. package/extensions/third-party/node_modules/highlight.js/scss/base16/summerfruit-dark.scss +163 -0
  1293. package/extensions/third-party/node_modules/highlight.js/scss/base16/summerfruit-light.scss +163 -0
  1294. package/extensions/third-party/node_modules/highlight.js/scss/base16/synth-midnight-terminal-dark.scss +163 -0
  1295. package/extensions/third-party/node_modules/highlight.js/scss/base16/synth-midnight-terminal-light.scss +163 -0
  1296. package/extensions/third-party/node_modules/highlight.js/scss/base16/tango.scss +163 -0
  1297. package/extensions/third-party/node_modules/highlight.js/scss/base16/tender.scss +163 -0
  1298. package/extensions/third-party/node_modules/highlight.js/scss/base16/tomorrow-night.scss +163 -0
  1299. package/extensions/third-party/node_modules/highlight.js/scss/base16/tomorrow.scss +163 -0
  1300. package/extensions/third-party/node_modules/highlight.js/scss/base16/twilight.scss +163 -0
  1301. package/extensions/third-party/node_modules/highlight.js/scss/base16/unikitty-dark.scss +163 -0
  1302. package/extensions/third-party/node_modules/highlight.js/scss/base16/unikitty-light.scss +163 -0
  1303. package/extensions/third-party/node_modules/highlight.js/scss/base16/vulcan.scss +163 -0
  1304. package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-10-light.scss +163 -0
  1305. package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-10.scss +163 -0
  1306. package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-95-light.scss +163 -0
  1307. package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-95.scss +163 -0
  1308. package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-high-contrast-light.scss +163 -0
  1309. package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-high-contrast.scss +163 -0
  1310. package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-nt-light.scss +163 -0
  1311. package/extensions/third-party/node_modules/highlight.js/scss/base16/windows-nt.scss +163 -0
  1312. package/extensions/third-party/node_modules/highlight.js/scss/base16/woodland.scss +163 -0
  1313. package/extensions/third-party/node_modules/highlight.js/scss/base16/xcode-dusk.scss +163 -0
  1314. package/extensions/third-party/node_modules/highlight.js/scss/base16/zenburn.scss +163 -0
  1315. package/extensions/third-party/node_modules/highlight.js/scss/brown-paper.scss +63 -0
  1316. package/extensions/third-party/node_modules/highlight.js/scss/codepen-embed.scss +57 -0
  1317. package/extensions/third-party/node_modules/highlight.js/scss/color-brewer.scss +66 -0
  1318. package/extensions/third-party/node_modules/highlight.js/scss/cybertopia-cherry.scss +104 -0
  1319. package/extensions/third-party/node_modules/highlight.js/scss/cybertopia-dimmer.scss +104 -0
  1320. package/extensions/third-party/node_modules/highlight.js/scss/cybertopia-icecap.scss +104 -0
  1321. package/extensions/third-party/node_modules/highlight.js/scss/cybertopia-saturated.scss +104 -0
  1322. package/extensions/third-party/node_modules/highlight.js/scss/dark.scss +62 -0
  1323. package/extensions/third-party/node_modules/highlight.js/scss/default.scss +117 -0
  1324. package/extensions/third-party/node_modules/highlight.js/scss/devibeans.scss +90 -0
  1325. package/extensions/third-party/node_modules/highlight.js/scss/docco.scss +83 -0
  1326. package/extensions/third-party/node_modules/highlight.js/scss/equinox.scss +71 -0
  1327. package/extensions/third-party/node_modules/highlight.js/scss/far.scss +67 -0
  1328. package/extensions/third-party/node_modules/highlight.js/scss/felipec.scss +94 -0
  1329. package/extensions/third-party/node_modules/highlight.js/scss/foundation.scss +80 -0
  1330. package/extensions/third-party/node_modules/highlight.js/scss/github-dark-dimmed.scss +117 -0
  1331. package/extensions/third-party/node_modules/highlight.js/scss/github-dark.scss +118 -0
  1332. package/extensions/third-party/node_modules/highlight.js/scss/github.scss +118 -0
  1333. package/extensions/third-party/node_modules/highlight.js/scss/gml.scss +72 -0
  1334. package/extensions/third-party/node_modules/highlight.js/scss/googlecode.scss +79 -0
  1335. package/extensions/third-party/node_modules/highlight.js/scss/gradient-dark.scss +90 -0
  1336. package/extensions/third-party/node_modules/highlight.js/scss/gradient-light.scss +90 -0
  1337. package/extensions/third-party/node_modules/highlight.js/scss/grayscale.scss +89 -0
  1338. package/extensions/third-party/node_modules/highlight.js/scss/hybrid.scss +88 -0
  1339. package/extensions/third-party/node_modules/highlight.js/scss/idea.scss +86 -0
  1340. package/extensions/third-party/node_modules/highlight.js/scss/intellij-light.scss +107 -0
  1341. package/extensions/third-party/node_modules/highlight.js/scss/ir-black.scss +66 -0
  1342. package/extensions/third-party/node_modules/highlight.js/scss/isbl-editor-dark.scss +94 -0
  1343. package/extensions/third-party/node_modules/highlight.js/scss/isbl-editor-light.scss +93 -0
  1344. package/extensions/third-party/node_modules/highlight.js/scss/kimbie-dark.scss +69 -0
  1345. package/extensions/third-party/node_modules/highlight.js/scss/kimbie-light.scss +69 -0
  1346. package/extensions/third-party/node_modules/highlight.js/scss/lightfair.scss +81 -0
  1347. package/extensions/third-party/node_modules/highlight.js/scss/lioshi.scss +76 -0
  1348. package/extensions/third-party/node_modules/highlight.js/scss/magula.scss +66 -0
  1349. package/extensions/third-party/node_modules/highlight.js/scss/mono-blue.scss +56 -0
  1350. package/extensions/third-party/node_modules/highlight.js/scss/monokai-sublime.scss +76 -0
  1351. package/extensions/third-party/node_modules/highlight.js/scss/monokai.scss +70 -0
  1352. package/extensions/third-party/node_modules/highlight.js/scss/night-owl.scss +174 -0
  1353. package/extensions/third-party/node_modules/highlight.js/scss/nnfx-dark.scss +104 -0
  1354. package/extensions/third-party/node_modules/highlight.js/scss/nnfx-light.scss +104 -0
  1355. package/extensions/third-party/node_modules/highlight.js/scss/nord.scss +275 -0
  1356. package/extensions/third-party/node_modules/highlight.js/scss/obsidian.scss +79 -0
  1357. package/extensions/third-party/node_modules/highlight.js/scss/panda-syntax-dark.scss +92 -0
  1358. package/extensions/third-party/node_modules/highlight.js/scss/panda-syntax-light.scss +89 -0
  1359. package/extensions/third-party/node_modules/highlight.js/scss/paraiso-dark.scss +67 -0
  1360. package/extensions/third-party/node_modules/highlight.js/scss/paraiso-light.scss +67 -0
  1361. package/extensions/third-party/node_modules/highlight.js/scss/pojoaque.scss +76 -0
  1362. package/extensions/third-party/node_modules/highlight.js/scss/purebasic.scss +103 -0
  1363. package/extensions/third-party/node_modules/highlight.js/scss/qtcreator-dark.scss +76 -0
  1364. package/extensions/third-party/node_modules/highlight.js/scss/qtcreator-light.scss +74 -0
  1365. package/extensions/third-party/node_modules/highlight.js/scss/rainbow.scss +77 -0
  1366. package/extensions/third-party/node_modules/highlight.js/scss/rose-pine-dawn.scss +107 -0
  1367. package/extensions/third-party/node_modules/highlight.js/scss/rose-pine-moon.scss +109 -0
  1368. package/extensions/third-party/node_modules/highlight.js/scss/rose-pine.scss +109 -0
  1369. package/extensions/third-party/node_modules/highlight.js/scss/routeros.scss +86 -0
  1370. package/extensions/third-party/node_modules/highlight.js/scss/school-book.scss +62 -0
  1371. package/extensions/third-party/node_modules/highlight.js/scss/shades-of-purple.scss +84 -0
  1372. package/extensions/third-party/node_modules/highlight.js/scss/srcery.scss +89 -0
  1373. package/extensions/third-party/node_modules/highlight.js/scss/stackoverflow-dark.scss +117 -0
  1374. package/extensions/third-party/node_modules/highlight.js/scss/stackoverflow-light.scss +117 -0
  1375. package/extensions/third-party/node_modules/highlight.js/scss/sunburst.scss +89 -0
  1376. package/extensions/third-party/node_modules/highlight.js/scss/tokyo-night-dark.scss +114 -0
  1377. package/extensions/third-party/node_modules/highlight.js/scss/tokyo-night-light.scss +114 -0
  1378. package/extensions/third-party/node_modules/highlight.js/scss/tomorrow-night-blue.scss +69 -0
  1379. package/extensions/third-party/node_modules/highlight.js/scss/tomorrow-night-bright.scss +68 -0
  1380. package/extensions/third-party/node_modules/highlight.js/scss/vs-dark.scss +61 -0
  1381. package/extensions/third-party/node_modules/highlight.js/scss/vs.scss +63 -0
  1382. package/extensions/third-party/node_modules/highlight.js/scss/vs2015.scss +100 -0
  1383. package/extensions/third-party/node_modules/highlight.js/scss/xcode.scss +90 -0
  1384. package/extensions/third-party/node_modules/highlight.js/scss/xt256.scss +79 -0
  1385. package/extensions/third-party/node_modules/highlight.js/styles/1c-light.css +107 -0
  1386. package/extensions/third-party/node_modules/highlight.js/styles/1c-light.min.css +9 -0
  1387. package/extensions/third-party/node_modules/highlight.js/styles/a11y-dark.css +94 -0
  1388. package/extensions/third-party/node_modules/highlight.js/styles/a11y-dark.min.css +7 -0
  1389. package/extensions/third-party/node_modules/highlight.js/styles/a11y-light.css +94 -0
  1390. package/extensions/third-party/node_modules/highlight.js/styles/a11y-light.min.css +7 -0
  1391. package/extensions/third-party/node_modules/highlight.js/styles/agate.css +127 -0
  1392. package/extensions/third-party/node_modules/highlight.js/styles/agate.min.css +20 -0
  1393. package/extensions/third-party/node_modules/highlight.js/styles/an-old-hope.css +75 -0
  1394. package/extensions/third-party/node_modules/highlight.js/styles/an-old-hope.min.css +9 -0
  1395. package/extensions/third-party/node_modules/highlight.js/styles/androidstudio.css +60 -0
  1396. package/extensions/third-party/node_modules/highlight.js/styles/androidstudio.min.css +1 -0
  1397. package/extensions/third-party/node_modules/highlight.js/styles/arduino-light.css +78 -0
  1398. package/extensions/third-party/node_modules/highlight.js/styles/arduino-light.min.css +1 -0
  1399. package/extensions/third-party/node_modules/highlight.js/styles/arta.css +66 -0
  1400. package/extensions/third-party/node_modules/highlight.js/styles/arta.min.css +1 -0
  1401. package/extensions/third-party/node_modules/highlight.js/styles/ascetic.css +45 -0
  1402. package/extensions/third-party/node_modules/highlight.js/styles/ascetic.min.css +1 -0
  1403. package/extensions/third-party/node_modules/highlight.js/styles/atom-one-dark-reasonable.css +105 -0
  1404. package/extensions/third-party/node_modules/highlight.js/styles/atom-one-dark-reasonable.min.css +1 -0
  1405. package/extensions/third-party/node_modules/highlight.js/styles/atom-one-dark.css +90 -0
  1406. package/extensions/third-party/node_modules/highlight.js/styles/atom-one-dark.min.css +1 -0
  1407. package/extensions/third-party/node_modules/highlight.js/styles/atom-one-light.css +90 -0
  1408. package/extensions/third-party/node_modules/highlight.js/styles/atom-one-light.min.css +1 -0
  1409. package/extensions/third-party/node_modules/highlight.js/styles/base16/3024.css +163 -0
  1410. package/extensions/third-party/node_modules/highlight.js/styles/base16/3024.min.css +7 -0
  1411. package/extensions/third-party/node_modules/highlight.js/styles/base16/apathy.css +163 -0
  1412. package/extensions/third-party/node_modules/highlight.js/styles/base16/apathy.min.css +7 -0
  1413. package/extensions/third-party/node_modules/highlight.js/styles/base16/apprentice.css +163 -0
  1414. package/extensions/third-party/node_modules/highlight.js/styles/base16/apprentice.min.css +7 -0
  1415. package/extensions/third-party/node_modules/highlight.js/styles/base16/ashes.css +163 -0
  1416. package/extensions/third-party/node_modules/highlight.js/styles/base16/ashes.min.css +7 -0
  1417. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-cave-light.css +163 -0
  1418. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-cave-light.min.css +7 -0
  1419. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-cave.css +163 -0
  1420. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-cave.min.css +7 -0
  1421. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-dune-light.css +163 -0
  1422. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-dune-light.min.css +7 -0
  1423. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-dune.css +163 -0
  1424. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-dune.min.css +7 -0
  1425. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-estuary-light.css +163 -0
  1426. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-estuary-light.min.css +7 -0
  1427. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-estuary.css +163 -0
  1428. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-estuary.min.css +7 -0
  1429. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-forest-light.css +163 -0
  1430. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-forest-light.min.css +7 -0
  1431. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-forest.css +163 -0
  1432. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-forest.min.css +7 -0
  1433. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-heath-light.css +163 -0
  1434. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-heath-light.min.css +7 -0
  1435. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-heath.css +163 -0
  1436. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-heath.min.css +7 -0
  1437. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-lakeside-light.css +163 -0
  1438. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-lakeside-light.min.css +7 -0
  1439. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-lakeside.css +163 -0
  1440. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-lakeside.min.css +7 -0
  1441. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-plateau-light.css +163 -0
  1442. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-plateau-light.min.css +7 -0
  1443. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-plateau.css +163 -0
  1444. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-plateau.min.css +7 -0
  1445. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-savanna-light.css +163 -0
  1446. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-savanna-light.min.css +7 -0
  1447. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-savanna.css +163 -0
  1448. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-savanna.min.css +7 -0
  1449. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-seaside-light.css +163 -0
  1450. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-seaside-light.min.css +7 -0
  1451. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-seaside.css +163 -0
  1452. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-seaside.min.css +7 -0
  1453. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-sulphurpool-light.css +163 -0
  1454. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-sulphurpool-light.min.css +7 -0
  1455. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-sulphurpool.css +163 -0
  1456. package/extensions/third-party/node_modules/highlight.js/styles/base16/atelier-sulphurpool.min.css +7 -0
  1457. package/extensions/third-party/node_modules/highlight.js/styles/base16/atlas.css +163 -0
  1458. package/extensions/third-party/node_modules/highlight.js/styles/base16/atlas.min.css +7 -0
  1459. package/extensions/third-party/node_modules/highlight.js/styles/base16/bespin.css +163 -0
  1460. package/extensions/third-party/node_modules/highlight.js/styles/base16/bespin.min.css +7 -0
  1461. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-bathory.css +163 -0
  1462. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-bathory.min.css +7 -0
  1463. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-burzum.css +163 -0
  1464. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-burzum.min.css +7 -0
  1465. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-dark-funeral.css +163 -0
  1466. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-dark-funeral.min.css +7 -0
  1467. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-gorgoroth.css +163 -0
  1468. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-gorgoroth.min.css +7 -0
  1469. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-immortal.css +163 -0
  1470. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-immortal.min.css +7 -0
  1471. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-khold.css +163 -0
  1472. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-khold.min.css +7 -0
  1473. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-marduk.css +163 -0
  1474. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-marduk.min.css +7 -0
  1475. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-mayhem.css +163 -0
  1476. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-mayhem.min.css +7 -0
  1477. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-nile.css +163 -0
  1478. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-nile.min.css +7 -0
  1479. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-venom.css +163 -0
  1480. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal-venom.min.css +7 -0
  1481. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal.css +163 -0
  1482. package/extensions/third-party/node_modules/highlight.js/styles/base16/black-metal.min.css +7 -0
  1483. package/extensions/third-party/node_modules/highlight.js/styles/base16/brewer.css +163 -0
  1484. package/extensions/third-party/node_modules/highlight.js/styles/base16/brewer.min.css +7 -0
  1485. package/extensions/third-party/node_modules/highlight.js/styles/base16/bright.css +163 -0
  1486. package/extensions/third-party/node_modules/highlight.js/styles/base16/bright.min.css +7 -0
  1487. package/extensions/third-party/node_modules/highlight.js/styles/base16/brogrammer.css +163 -0
  1488. package/extensions/third-party/node_modules/highlight.js/styles/base16/brogrammer.min.css +7 -0
  1489. package/extensions/third-party/node_modules/highlight.js/styles/base16/brush-trees-dark.css +163 -0
  1490. package/extensions/third-party/node_modules/highlight.js/styles/base16/brush-trees-dark.min.css +7 -0
  1491. package/extensions/third-party/node_modules/highlight.js/styles/base16/brush-trees.css +163 -0
  1492. package/extensions/third-party/node_modules/highlight.js/styles/base16/brush-trees.min.css +7 -0
  1493. package/extensions/third-party/node_modules/highlight.js/styles/base16/chalk.css +163 -0
  1494. package/extensions/third-party/node_modules/highlight.js/styles/base16/chalk.min.css +7 -0
  1495. package/extensions/third-party/node_modules/highlight.js/styles/base16/circus.css +163 -0
  1496. package/extensions/third-party/node_modules/highlight.js/styles/base16/circus.min.css +7 -0
  1497. package/extensions/third-party/node_modules/highlight.js/styles/base16/classic-dark.css +163 -0
  1498. package/extensions/third-party/node_modules/highlight.js/styles/base16/classic-dark.min.css +7 -0
  1499. package/extensions/third-party/node_modules/highlight.js/styles/base16/classic-light.css +163 -0
  1500. package/extensions/third-party/node_modules/highlight.js/styles/base16/classic-light.min.css +7 -0
  1501. package/extensions/third-party/node_modules/highlight.js/styles/base16/codeschool.css +163 -0
  1502. package/extensions/third-party/node_modules/highlight.js/styles/base16/codeschool.min.css +7 -0
  1503. package/extensions/third-party/node_modules/highlight.js/styles/base16/colors.css +163 -0
  1504. package/extensions/third-party/node_modules/highlight.js/styles/base16/colors.min.css +7 -0
  1505. package/extensions/third-party/node_modules/highlight.js/styles/base16/cupcake.css +163 -0
  1506. package/extensions/third-party/node_modules/highlight.js/styles/base16/cupcake.min.css +7 -0
  1507. package/extensions/third-party/node_modules/highlight.js/styles/base16/cupertino.css +163 -0
  1508. package/extensions/third-party/node_modules/highlight.js/styles/base16/cupertino.min.css +7 -0
  1509. package/extensions/third-party/node_modules/highlight.js/styles/base16/danqing.css +163 -0
  1510. package/extensions/third-party/node_modules/highlight.js/styles/base16/danqing.min.css +7 -0
  1511. package/extensions/third-party/node_modules/highlight.js/styles/base16/darcula.css +163 -0
  1512. package/extensions/third-party/node_modules/highlight.js/styles/base16/darcula.min.css +7 -0
  1513. package/extensions/third-party/node_modules/highlight.js/styles/base16/dark-violet.css +163 -0
  1514. package/extensions/third-party/node_modules/highlight.js/styles/base16/dark-violet.min.css +7 -0
  1515. package/extensions/third-party/node_modules/highlight.js/styles/base16/darkmoss.css +163 -0
  1516. package/extensions/third-party/node_modules/highlight.js/styles/base16/darkmoss.min.css +7 -0
  1517. package/extensions/third-party/node_modules/highlight.js/styles/base16/darktooth.css +163 -0
  1518. package/extensions/third-party/node_modules/highlight.js/styles/base16/darktooth.min.css +7 -0
  1519. package/extensions/third-party/node_modules/highlight.js/styles/base16/decaf.css +163 -0
  1520. package/extensions/third-party/node_modules/highlight.js/styles/base16/decaf.min.css +7 -0
  1521. package/extensions/third-party/node_modules/highlight.js/styles/base16/default-dark.css +163 -0
  1522. package/extensions/third-party/node_modules/highlight.js/styles/base16/default-dark.min.css +7 -0
  1523. package/extensions/third-party/node_modules/highlight.js/styles/base16/default-light.css +163 -0
  1524. package/extensions/third-party/node_modules/highlight.js/styles/base16/default-light.min.css +7 -0
  1525. package/extensions/third-party/node_modules/highlight.js/styles/base16/dirtysea.css +163 -0
  1526. package/extensions/third-party/node_modules/highlight.js/styles/base16/dirtysea.min.css +7 -0
  1527. package/extensions/third-party/node_modules/highlight.js/styles/base16/dracula.css +163 -0
  1528. package/extensions/third-party/node_modules/highlight.js/styles/base16/dracula.min.css +7 -0
  1529. package/extensions/third-party/node_modules/highlight.js/styles/base16/edge-dark.css +163 -0
  1530. package/extensions/third-party/node_modules/highlight.js/styles/base16/edge-dark.min.css +7 -0
  1531. package/extensions/third-party/node_modules/highlight.js/styles/base16/edge-light.css +163 -0
  1532. package/extensions/third-party/node_modules/highlight.js/styles/base16/edge-light.min.css +7 -0
  1533. package/extensions/third-party/node_modules/highlight.js/styles/base16/eighties.css +163 -0
  1534. package/extensions/third-party/node_modules/highlight.js/styles/base16/eighties.min.css +7 -0
  1535. package/extensions/third-party/node_modules/highlight.js/styles/base16/embers.css +163 -0
  1536. package/extensions/third-party/node_modules/highlight.js/styles/base16/embers.min.css +7 -0
  1537. package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-dark.css +163 -0
  1538. package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-dark.min.css +7 -0
  1539. package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-gray-dark.css +163 -0
  1540. package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-gray-dark.min.css +7 -0
  1541. package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-gray-light.css +163 -0
  1542. package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-gray-light.min.css +7 -0
  1543. package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-light.css +163 -0
  1544. package/extensions/third-party/node_modules/highlight.js/styles/base16/equilibrium-light.min.css +7 -0
  1545. package/extensions/third-party/node_modules/highlight.js/styles/base16/espresso.css +163 -0
  1546. package/extensions/third-party/node_modules/highlight.js/styles/base16/espresso.min.css +7 -0
  1547. package/extensions/third-party/node_modules/highlight.js/styles/base16/eva-dim.css +163 -0
  1548. package/extensions/third-party/node_modules/highlight.js/styles/base16/eva-dim.min.css +7 -0
  1549. package/extensions/third-party/node_modules/highlight.js/styles/base16/eva.css +163 -0
  1550. package/extensions/third-party/node_modules/highlight.js/styles/base16/eva.min.css +7 -0
  1551. package/extensions/third-party/node_modules/highlight.js/styles/base16/flat.css +163 -0
  1552. package/extensions/third-party/node_modules/highlight.js/styles/base16/flat.min.css +7 -0
  1553. package/extensions/third-party/node_modules/highlight.js/styles/base16/framer.css +163 -0
  1554. package/extensions/third-party/node_modules/highlight.js/styles/base16/framer.min.css +7 -0
  1555. package/extensions/third-party/node_modules/highlight.js/styles/base16/fruit-soda.css +163 -0
  1556. package/extensions/third-party/node_modules/highlight.js/styles/base16/fruit-soda.min.css +7 -0
  1557. package/extensions/third-party/node_modules/highlight.js/styles/base16/gigavolt.css +163 -0
  1558. package/extensions/third-party/node_modules/highlight.js/styles/base16/gigavolt.min.css +7 -0
  1559. package/extensions/third-party/node_modules/highlight.js/styles/base16/github.css +163 -0
  1560. package/extensions/third-party/node_modules/highlight.js/styles/base16/github.min.css +7 -0
  1561. package/extensions/third-party/node_modules/highlight.js/styles/base16/google-dark.css +163 -0
  1562. package/extensions/third-party/node_modules/highlight.js/styles/base16/google-dark.min.css +7 -0
  1563. package/extensions/third-party/node_modules/highlight.js/styles/base16/google-light.css +163 -0
  1564. package/extensions/third-party/node_modules/highlight.js/styles/base16/google-light.min.css +7 -0
  1565. package/extensions/third-party/node_modules/highlight.js/styles/base16/grayscale-dark.css +163 -0
  1566. package/extensions/third-party/node_modules/highlight.js/styles/base16/grayscale-dark.min.css +7 -0
  1567. package/extensions/third-party/node_modules/highlight.js/styles/base16/grayscale-light.css +163 -0
  1568. package/extensions/third-party/node_modules/highlight.js/styles/base16/grayscale-light.min.css +7 -0
  1569. package/extensions/third-party/node_modules/highlight.js/styles/base16/green-screen.css +163 -0
  1570. package/extensions/third-party/node_modules/highlight.js/styles/base16/green-screen.min.css +7 -0
  1571. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-hard.css +163 -0
  1572. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-hard.min.css +7 -0
  1573. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-medium.css +163 -0
  1574. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-medium.min.css +7 -0
  1575. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-pale.css +163 -0
  1576. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-pale.min.css +7 -0
  1577. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-soft.css +163 -0
  1578. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-dark-soft.min.css +7 -0
  1579. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-hard.css +163 -0
  1580. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-hard.min.css +7 -0
  1581. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-medium.css +163 -0
  1582. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-medium.min.css +7 -0
  1583. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-soft.css +163 -0
  1584. package/extensions/third-party/node_modules/highlight.js/styles/base16/gruvbox-light-soft.min.css +7 -0
  1585. package/extensions/third-party/node_modules/highlight.js/styles/base16/hardcore.css +163 -0
  1586. package/extensions/third-party/node_modules/highlight.js/styles/base16/hardcore.min.css +7 -0
  1587. package/extensions/third-party/node_modules/highlight.js/styles/base16/harmonic16-dark.css +163 -0
  1588. package/extensions/third-party/node_modules/highlight.js/styles/base16/harmonic16-dark.min.css +7 -0
  1589. package/extensions/third-party/node_modules/highlight.js/styles/base16/harmonic16-light.css +163 -0
  1590. package/extensions/third-party/node_modules/highlight.js/styles/base16/harmonic16-light.min.css +7 -0
  1591. package/extensions/third-party/node_modules/highlight.js/styles/base16/heetch-dark.css +163 -0
  1592. package/extensions/third-party/node_modules/highlight.js/styles/base16/heetch-dark.min.css +7 -0
  1593. package/extensions/third-party/node_modules/highlight.js/styles/base16/heetch-light.css +163 -0
  1594. package/extensions/third-party/node_modules/highlight.js/styles/base16/heetch-light.min.css +7 -0
  1595. package/extensions/third-party/node_modules/highlight.js/styles/base16/helios.css +163 -0
  1596. package/extensions/third-party/node_modules/highlight.js/styles/base16/helios.min.css +7 -0
  1597. package/extensions/third-party/node_modules/highlight.js/styles/base16/hopscotch.css +163 -0
  1598. package/extensions/third-party/node_modules/highlight.js/styles/base16/hopscotch.min.css +7 -0
  1599. package/extensions/third-party/node_modules/highlight.js/styles/base16/horizon-dark.css +163 -0
  1600. package/extensions/third-party/node_modules/highlight.js/styles/base16/horizon-dark.min.css +7 -0
  1601. package/extensions/third-party/node_modules/highlight.js/styles/base16/horizon-light.css +163 -0
  1602. package/extensions/third-party/node_modules/highlight.js/styles/base16/horizon-light.min.css +7 -0
  1603. package/extensions/third-party/node_modules/highlight.js/styles/base16/humanoid-dark.css +163 -0
  1604. package/extensions/third-party/node_modules/highlight.js/styles/base16/humanoid-dark.min.css +7 -0
  1605. package/extensions/third-party/node_modules/highlight.js/styles/base16/humanoid-light.css +163 -0
  1606. package/extensions/third-party/node_modules/highlight.js/styles/base16/humanoid-light.min.css +7 -0
  1607. package/extensions/third-party/node_modules/highlight.js/styles/base16/ia-dark.css +163 -0
  1608. package/extensions/third-party/node_modules/highlight.js/styles/base16/ia-dark.min.css +7 -0
  1609. package/extensions/third-party/node_modules/highlight.js/styles/base16/ia-light.css +163 -0
  1610. package/extensions/third-party/node_modules/highlight.js/styles/base16/ia-light.min.css +7 -0
  1611. package/extensions/third-party/node_modules/highlight.js/styles/base16/icy-dark.css +163 -0
  1612. package/extensions/third-party/node_modules/highlight.js/styles/base16/icy-dark.min.css +7 -0
  1613. package/extensions/third-party/node_modules/highlight.js/styles/base16/ir-black.css +163 -0
  1614. package/extensions/third-party/node_modules/highlight.js/styles/base16/ir-black.min.css +7 -0
  1615. package/extensions/third-party/node_modules/highlight.js/styles/base16/isotope.css +163 -0
  1616. package/extensions/third-party/node_modules/highlight.js/styles/base16/isotope.min.css +7 -0
  1617. package/extensions/third-party/node_modules/highlight.js/styles/base16/kimber.css +163 -0
  1618. package/extensions/third-party/node_modules/highlight.js/styles/base16/kimber.min.css +7 -0
  1619. package/extensions/third-party/node_modules/highlight.js/styles/base16/london-tube.css +163 -0
  1620. package/extensions/third-party/node_modules/highlight.js/styles/base16/london-tube.min.css +7 -0
  1621. package/extensions/third-party/node_modules/highlight.js/styles/base16/macintosh.css +163 -0
  1622. package/extensions/third-party/node_modules/highlight.js/styles/base16/macintosh.min.css +7 -0
  1623. package/extensions/third-party/node_modules/highlight.js/styles/base16/marrakesh.css +163 -0
  1624. package/extensions/third-party/node_modules/highlight.js/styles/base16/marrakesh.min.css +7 -0
  1625. package/extensions/third-party/node_modules/highlight.js/styles/base16/materia.css +163 -0
  1626. package/extensions/third-party/node_modules/highlight.js/styles/base16/materia.min.css +7 -0
  1627. package/extensions/third-party/node_modules/highlight.js/styles/base16/material-darker.css +163 -0
  1628. package/extensions/third-party/node_modules/highlight.js/styles/base16/material-darker.min.css +7 -0
  1629. package/extensions/third-party/node_modules/highlight.js/styles/base16/material-lighter.css +163 -0
  1630. package/extensions/third-party/node_modules/highlight.js/styles/base16/material-lighter.min.css +7 -0
  1631. package/extensions/third-party/node_modules/highlight.js/styles/base16/material-palenight.css +163 -0
  1632. package/extensions/third-party/node_modules/highlight.js/styles/base16/material-palenight.min.css +7 -0
  1633. package/extensions/third-party/node_modules/highlight.js/styles/base16/material-vivid.css +163 -0
  1634. package/extensions/third-party/node_modules/highlight.js/styles/base16/material-vivid.min.css +7 -0
  1635. package/extensions/third-party/node_modules/highlight.js/styles/base16/material.css +163 -0
  1636. package/extensions/third-party/node_modules/highlight.js/styles/base16/material.min.css +7 -0
  1637. package/extensions/third-party/node_modules/highlight.js/styles/base16/mellow-purple.css +163 -0
  1638. package/extensions/third-party/node_modules/highlight.js/styles/base16/mellow-purple.min.css +7 -0
  1639. package/extensions/third-party/node_modules/highlight.js/styles/base16/mexico-light.css +163 -0
  1640. package/extensions/third-party/node_modules/highlight.js/styles/base16/mexico-light.min.css +7 -0
  1641. package/extensions/third-party/node_modules/highlight.js/styles/base16/mocha.css +163 -0
  1642. package/extensions/third-party/node_modules/highlight.js/styles/base16/mocha.min.css +7 -0
  1643. package/extensions/third-party/node_modules/highlight.js/styles/base16/monokai.css +163 -0
  1644. package/extensions/third-party/node_modules/highlight.js/styles/base16/monokai.min.css +7 -0
  1645. package/extensions/third-party/node_modules/highlight.js/styles/base16/nebula.css +163 -0
  1646. package/extensions/third-party/node_modules/highlight.js/styles/base16/nebula.min.css +7 -0
  1647. package/extensions/third-party/node_modules/highlight.js/styles/base16/nord.css +163 -0
  1648. package/extensions/third-party/node_modules/highlight.js/styles/base16/nord.min.css +7 -0
  1649. package/extensions/third-party/node_modules/highlight.js/styles/base16/nova.css +163 -0
  1650. package/extensions/third-party/node_modules/highlight.js/styles/base16/nova.min.css +7 -0
  1651. package/extensions/third-party/node_modules/highlight.js/styles/base16/ocean.css +163 -0
  1652. package/extensions/third-party/node_modules/highlight.js/styles/base16/ocean.min.css +7 -0
  1653. package/extensions/third-party/node_modules/highlight.js/styles/base16/oceanicnext.css +163 -0
  1654. package/extensions/third-party/node_modules/highlight.js/styles/base16/oceanicnext.min.css +7 -0
  1655. package/extensions/third-party/node_modules/highlight.js/styles/base16/one-light.css +163 -0
  1656. package/extensions/third-party/node_modules/highlight.js/styles/base16/one-light.min.css +7 -0
  1657. package/extensions/third-party/node_modules/highlight.js/styles/base16/onedark.css +163 -0
  1658. package/extensions/third-party/node_modules/highlight.js/styles/base16/onedark.min.css +7 -0
  1659. package/extensions/third-party/node_modules/highlight.js/styles/base16/outrun-dark.css +163 -0
  1660. package/extensions/third-party/node_modules/highlight.js/styles/base16/outrun-dark.min.css +7 -0
  1661. package/extensions/third-party/node_modules/highlight.js/styles/base16/papercolor-dark.css +163 -0
  1662. package/extensions/third-party/node_modules/highlight.js/styles/base16/papercolor-dark.min.css +7 -0
  1663. package/extensions/third-party/node_modules/highlight.js/styles/base16/papercolor-light.css +163 -0
  1664. package/extensions/third-party/node_modules/highlight.js/styles/base16/papercolor-light.min.css +7 -0
  1665. package/extensions/third-party/node_modules/highlight.js/styles/base16/paraiso.css +163 -0
  1666. package/extensions/third-party/node_modules/highlight.js/styles/base16/paraiso.min.css +7 -0
  1667. package/extensions/third-party/node_modules/highlight.js/styles/base16/pasque.css +163 -0
  1668. package/extensions/third-party/node_modules/highlight.js/styles/base16/pasque.min.css +7 -0
  1669. package/extensions/third-party/node_modules/highlight.js/styles/base16/phd.css +163 -0
  1670. package/extensions/third-party/node_modules/highlight.js/styles/base16/phd.min.css +7 -0
  1671. package/extensions/third-party/node_modules/highlight.js/styles/base16/pico.css +163 -0
  1672. package/extensions/third-party/node_modules/highlight.js/styles/base16/pico.min.css +7 -0
  1673. package/extensions/third-party/node_modules/highlight.js/styles/base16/pop.css +163 -0
  1674. package/extensions/third-party/node_modules/highlight.js/styles/base16/pop.min.css +7 -0
  1675. package/extensions/third-party/node_modules/highlight.js/styles/base16/porple.css +163 -0
  1676. package/extensions/third-party/node_modules/highlight.js/styles/base16/porple.min.css +7 -0
  1677. package/extensions/third-party/node_modules/highlight.js/styles/base16/qualia.css +163 -0
  1678. package/extensions/third-party/node_modules/highlight.js/styles/base16/qualia.min.css +7 -0
  1679. package/extensions/third-party/node_modules/highlight.js/styles/base16/railscasts.css +163 -0
  1680. package/extensions/third-party/node_modules/highlight.js/styles/base16/railscasts.min.css +7 -0
  1681. package/extensions/third-party/node_modules/highlight.js/styles/base16/rebecca.css +163 -0
  1682. package/extensions/third-party/node_modules/highlight.js/styles/base16/rebecca.min.css +7 -0
  1683. package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine-dawn.css +163 -0
  1684. package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine-dawn.min.css +7 -0
  1685. package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine-moon.css +163 -0
  1686. package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine-moon.min.css +7 -0
  1687. package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine.css +163 -0
  1688. package/extensions/third-party/node_modules/highlight.js/styles/base16/ros-pine.min.css +7 -0
  1689. package/extensions/third-party/node_modules/highlight.js/styles/base16/sagelight.css +163 -0
  1690. package/extensions/third-party/node_modules/highlight.js/styles/base16/sagelight.min.css +7 -0
  1691. package/extensions/third-party/node_modules/highlight.js/styles/base16/sandcastle.css +163 -0
  1692. package/extensions/third-party/node_modules/highlight.js/styles/base16/sandcastle.min.css +7 -0
  1693. package/extensions/third-party/node_modules/highlight.js/styles/base16/seti-ui.css +163 -0
  1694. package/extensions/third-party/node_modules/highlight.js/styles/base16/seti-ui.min.css +7 -0
  1695. package/extensions/third-party/node_modules/highlight.js/styles/base16/shapeshifter.css +163 -0
  1696. package/extensions/third-party/node_modules/highlight.js/styles/base16/shapeshifter.min.css +7 -0
  1697. package/extensions/third-party/node_modules/highlight.js/styles/base16/silk-dark.css +163 -0
  1698. package/extensions/third-party/node_modules/highlight.js/styles/base16/silk-dark.min.css +7 -0
  1699. package/extensions/third-party/node_modules/highlight.js/styles/base16/silk-light.css +163 -0
  1700. package/extensions/third-party/node_modules/highlight.js/styles/base16/silk-light.min.css +7 -0
  1701. package/extensions/third-party/node_modules/highlight.js/styles/base16/snazzy.css +163 -0
  1702. package/extensions/third-party/node_modules/highlight.js/styles/base16/snazzy.min.css +7 -0
  1703. package/extensions/third-party/node_modules/highlight.js/styles/base16/solar-flare-light.css +163 -0
  1704. package/extensions/third-party/node_modules/highlight.js/styles/base16/solar-flare-light.min.css +7 -0
  1705. package/extensions/third-party/node_modules/highlight.js/styles/base16/solar-flare.css +163 -0
  1706. package/extensions/third-party/node_modules/highlight.js/styles/base16/solar-flare.min.css +7 -0
  1707. package/extensions/third-party/node_modules/highlight.js/styles/base16/solarized-dark.css +163 -0
  1708. package/extensions/third-party/node_modules/highlight.js/styles/base16/solarized-dark.min.css +7 -0
  1709. package/extensions/third-party/node_modules/highlight.js/styles/base16/solarized-light.css +163 -0
  1710. package/extensions/third-party/node_modules/highlight.js/styles/base16/solarized-light.min.css +7 -0
  1711. package/extensions/third-party/node_modules/highlight.js/styles/base16/spacemacs.css +163 -0
  1712. package/extensions/third-party/node_modules/highlight.js/styles/base16/spacemacs.min.css +7 -0
  1713. package/extensions/third-party/node_modules/highlight.js/styles/base16/summercamp.css +163 -0
  1714. package/extensions/third-party/node_modules/highlight.js/styles/base16/summercamp.min.css +7 -0
  1715. package/extensions/third-party/node_modules/highlight.js/styles/base16/summerfruit-dark.css +163 -0
  1716. package/extensions/third-party/node_modules/highlight.js/styles/base16/summerfruit-dark.min.css +7 -0
  1717. package/extensions/third-party/node_modules/highlight.js/styles/base16/summerfruit-light.css +163 -0
  1718. package/extensions/third-party/node_modules/highlight.js/styles/base16/summerfruit-light.min.css +7 -0
  1719. package/extensions/third-party/node_modules/highlight.js/styles/base16/synth-midnight-terminal-dark.css +163 -0
  1720. package/extensions/third-party/node_modules/highlight.js/styles/base16/synth-midnight-terminal-dark.min.css +7 -0
  1721. package/extensions/third-party/node_modules/highlight.js/styles/base16/synth-midnight-terminal-light.css +163 -0
  1722. package/extensions/third-party/node_modules/highlight.js/styles/base16/synth-midnight-terminal-light.min.css +7 -0
  1723. package/extensions/third-party/node_modules/highlight.js/styles/base16/tango.css +163 -0
  1724. package/extensions/third-party/node_modules/highlight.js/styles/base16/tango.min.css +7 -0
  1725. package/extensions/third-party/node_modules/highlight.js/styles/base16/tender.css +163 -0
  1726. package/extensions/third-party/node_modules/highlight.js/styles/base16/tender.min.css +7 -0
  1727. package/extensions/third-party/node_modules/highlight.js/styles/base16/tomorrow-night.css +163 -0
  1728. package/extensions/third-party/node_modules/highlight.js/styles/base16/tomorrow-night.min.css +7 -0
  1729. package/extensions/third-party/node_modules/highlight.js/styles/base16/tomorrow.css +163 -0
  1730. package/extensions/third-party/node_modules/highlight.js/styles/base16/tomorrow.min.css +7 -0
  1731. package/extensions/third-party/node_modules/highlight.js/styles/base16/twilight.css +163 -0
  1732. package/extensions/third-party/node_modules/highlight.js/styles/base16/twilight.min.css +7 -0
  1733. package/extensions/third-party/node_modules/highlight.js/styles/base16/unikitty-dark.css +163 -0
  1734. package/extensions/third-party/node_modules/highlight.js/styles/base16/unikitty-dark.min.css +7 -0
  1735. package/extensions/third-party/node_modules/highlight.js/styles/base16/unikitty-light.css +163 -0
  1736. package/extensions/third-party/node_modules/highlight.js/styles/base16/unikitty-light.min.css +7 -0
  1737. package/extensions/third-party/node_modules/highlight.js/styles/base16/vulcan.css +163 -0
  1738. package/extensions/third-party/node_modules/highlight.js/styles/base16/vulcan.min.css +7 -0
  1739. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-10-light.css +163 -0
  1740. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-10-light.min.css +7 -0
  1741. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-10.css +163 -0
  1742. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-10.min.css +7 -0
  1743. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-95-light.css +163 -0
  1744. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-95-light.min.css +7 -0
  1745. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-95.css +163 -0
  1746. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-95.min.css +7 -0
  1747. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-high-contrast-light.css +163 -0
  1748. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-high-contrast-light.min.css +7 -0
  1749. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-high-contrast.css +163 -0
  1750. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-high-contrast.min.css +7 -0
  1751. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-nt-light.css +163 -0
  1752. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-nt-light.min.css +7 -0
  1753. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-nt.css +163 -0
  1754. package/extensions/third-party/node_modules/highlight.js/styles/base16/windows-nt.min.css +7 -0
  1755. package/extensions/third-party/node_modules/highlight.js/styles/base16/woodland.css +163 -0
  1756. package/extensions/third-party/node_modules/highlight.js/styles/base16/woodland.min.css +7 -0
  1757. package/extensions/third-party/node_modules/highlight.js/styles/base16/xcode-dusk.css +163 -0
  1758. package/extensions/third-party/node_modules/highlight.js/styles/base16/xcode-dusk.min.css +7 -0
  1759. package/extensions/third-party/node_modules/highlight.js/styles/base16/zenburn.css +163 -0
  1760. package/extensions/third-party/node_modules/highlight.js/styles/base16/zenburn.min.css +7 -0
  1761. package/extensions/third-party/node_modules/highlight.js/styles/brown-paper.css +63 -0
  1762. package/extensions/third-party/node_modules/highlight.js/styles/brown-paper.min.css +1 -0
  1763. package/extensions/third-party/node_modules/highlight.js/styles/brown-papersq.png +0 -0
  1764. package/extensions/third-party/node_modules/highlight.js/styles/codepen-embed.css +57 -0
  1765. package/extensions/third-party/node_modules/highlight.js/styles/codepen-embed.min.css +1 -0
  1766. package/extensions/third-party/node_modules/highlight.js/styles/color-brewer.css +66 -0
  1767. package/extensions/third-party/node_modules/highlight.js/styles/color-brewer.min.css +1 -0
  1768. package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-cherry.css +104 -0
  1769. package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-cherry.min.css +1 -0
  1770. package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-dimmer.css +104 -0
  1771. package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-dimmer.min.css +1 -0
  1772. package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-icecap.css +104 -0
  1773. package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-icecap.min.css +1 -0
  1774. package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-saturated.css +104 -0
  1775. package/extensions/third-party/node_modules/highlight.js/styles/cybertopia-saturated.min.css +1 -0
  1776. package/extensions/third-party/node_modules/highlight.js/styles/dark.css +62 -0
  1777. package/extensions/third-party/node_modules/highlight.js/styles/dark.min.css +1 -0
  1778. package/extensions/third-party/node_modules/highlight.js/styles/default.css +117 -0
  1779. package/extensions/third-party/node_modules/highlight.js/styles/default.min.css +9 -0
  1780. package/extensions/third-party/node_modules/highlight.js/styles/devibeans.css +90 -0
  1781. package/extensions/third-party/node_modules/highlight.js/styles/devibeans.min.css +7 -0
  1782. package/extensions/third-party/node_modules/highlight.js/styles/docco.css +83 -0
  1783. package/extensions/third-party/node_modules/highlight.js/styles/docco.min.css +1 -0
  1784. package/extensions/third-party/node_modules/highlight.js/styles/equinox.css +71 -0
  1785. package/extensions/third-party/node_modules/highlight.js/styles/equinox.min.css +1 -0
  1786. package/extensions/third-party/node_modules/highlight.js/styles/far.css +67 -0
  1787. package/extensions/third-party/node_modules/highlight.js/styles/far.min.css +1 -0
  1788. package/extensions/third-party/node_modules/highlight.js/styles/felipec.css +94 -0
  1789. package/extensions/third-party/node_modules/highlight.js/styles/felipec.min.css +7 -0
  1790. package/extensions/third-party/node_modules/highlight.js/styles/foundation.css +80 -0
  1791. package/extensions/third-party/node_modules/highlight.js/styles/foundation.min.css +1 -0
  1792. package/extensions/third-party/node_modules/highlight.js/styles/github-dark-dimmed.css +117 -0
  1793. package/extensions/third-party/node_modules/highlight.js/styles/github-dark-dimmed.min.css +9 -0
  1794. package/extensions/third-party/node_modules/highlight.js/styles/github-dark.css +118 -0
  1795. package/extensions/third-party/node_modules/highlight.js/styles/github-dark.min.css +10 -0
  1796. package/extensions/third-party/node_modules/highlight.js/styles/github.css +118 -0
  1797. package/extensions/third-party/node_modules/highlight.js/styles/github.min.css +10 -0
  1798. package/extensions/third-party/node_modules/highlight.js/styles/gml.css +72 -0
  1799. package/extensions/third-party/node_modules/highlight.js/styles/gml.min.css +1 -0
  1800. package/extensions/third-party/node_modules/highlight.js/styles/googlecode.css +79 -0
  1801. package/extensions/third-party/node_modules/highlight.js/styles/googlecode.min.css +1 -0
  1802. package/extensions/third-party/node_modules/highlight.js/styles/gradient-dark.css +90 -0
  1803. package/extensions/third-party/node_modules/highlight.js/styles/gradient-dark.min.css +1 -0
  1804. package/extensions/third-party/node_modules/highlight.js/styles/gradient-light.css +90 -0
  1805. package/extensions/third-party/node_modules/highlight.js/styles/gradient-light.min.css +1 -0
  1806. package/extensions/third-party/node_modules/highlight.js/styles/grayscale.css +89 -0
  1807. package/extensions/third-party/node_modules/highlight.js/styles/grayscale.min.css +1 -0
  1808. package/extensions/third-party/node_modules/highlight.js/styles/hybrid.css +88 -0
  1809. package/extensions/third-party/node_modules/highlight.js/styles/hybrid.min.css +1 -0
  1810. package/extensions/third-party/node_modules/highlight.js/styles/idea.css +86 -0
  1811. package/extensions/third-party/node_modules/highlight.js/styles/idea.min.css +1 -0
  1812. package/extensions/third-party/node_modules/highlight.js/styles/intellij-light.css +107 -0
  1813. package/extensions/third-party/node_modules/highlight.js/styles/intellij-light.min.css +1 -0
  1814. package/extensions/third-party/node_modules/highlight.js/styles/ir-black.css +66 -0
  1815. package/extensions/third-party/node_modules/highlight.js/styles/ir-black.min.css +1 -0
  1816. package/extensions/third-party/node_modules/highlight.js/styles/isbl-editor-dark.css +94 -0
  1817. package/extensions/third-party/node_modules/highlight.js/styles/isbl-editor-dark.min.css +1 -0
  1818. package/extensions/third-party/node_modules/highlight.js/styles/isbl-editor-light.css +93 -0
  1819. package/extensions/third-party/node_modules/highlight.js/styles/isbl-editor-light.min.css +1 -0
  1820. package/extensions/third-party/node_modules/highlight.js/styles/kimbie-dark.css +69 -0
  1821. package/extensions/third-party/node_modules/highlight.js/styles/kimbie-dark.min.css +1 -0
  1822. package/extensions/third-party/node_modules/highlight.js/styles/kimbie-light.css +69 -0
  1823. package/extensions/third-party/node_modules/highlight.js/styles/kimbie-light.min.css +1 -0
  1824. package/extensions/third-party/node_modules/highlight.js/styles/lightfair.css +81 -0
  1825. package/extensions/third-party/node_modules/highlight.js/styles/lightfair.min.css +1 -0
  1826. package/extensions/third-party/node_modules/highlight.js/styles/lioshi.css +76 -0
  1827. package/extensions/third-party/node_modules/highlight.js/styles/lioshi.min.css +1 -0
  1828. package/extensions/third-party/node_modules/highlight.js/styles/magula.css +66 -0
  1829. package/extensions/third-party/node_modules/highlight.js/styles/magula.min.css +1 -0
  1830. package/extensions/third-party/node_modules/highlight.js/styles/mono-blue.css +56 -0
  1831. package/extensions/third-party/node_modules/highlight.js/styles/mono-blue.min.css +1 -0
  1832. package/extensions/third-party/node_modules/highlight.js/styles/monokai-sublime.css +76 -0
  1833. package/extensions/third-party/node_modules/highlight.js/styles/monokai-sublime.min.css +1 -0
  1834. package/extensions/third-party/node_modules/highlight.js/styles/monokai.css +70 -0
  1835. package/extensions/third-party/node_modules/highlight.js/styles/monokai.min.css +1 -0
  1836. package/extensions/third-party/node_modules/highlight.js/styles/night-owl.css +174 -0
  1837. package/extensions/third-party/node_modules/highlight.js/styles/night-owl.min.css +1 -0
  1838. package/extensions/third-party/node_modules/highlight.js/styles/nnfx-dark.css +104 -0
  1839. package/extensions/third-party/node_modules/highlight.js/styles/nnfx-dark.min.css +10 -0
  1840. package/extensions/third-party/node_modules/highlight.js/styles/nnfx-light.css +104 -0
  1841. package/extensions/third-party/node_modules/highlight.js/styles/nnfx-light.min.css +10 -0
  1842. package/extensions/third-party/node_modules/highlight.js/styles/nord.css +275 -0
  1843. package/extensions/third-party/node_modules/highlight.js/styles/nord.min.css +1 -0
  1844. package/extensions/third-party/node_modules/highlight.js/styles/obsidian.css +79 -0
  1845. package/extensions/third-party/node_modules/highlight.js/styles/obsidian.min.css +1 -0
  1846. package/extensions/third-party/node_modules/highlight.js/styles/panda-syntax-dark.css +92 -0
  1847. package/extensions/third-party/node_modules/highlight.js/styles/panda-syntax-dark.min.css +1 -0
  1848. package/extensions/third-party/node_modules/highlight.js/styles/panda-syntax-light.css +89 -0
  1849. package/extensions/third-party/node_modules/highlight.js/styles/panda-syntax-light.min.css +1 -0
  1850. package/extensions/third-party/node_modules/highlight.js/styles/paraiso-dark.css +67 -0
  1851. package/extensions/third-party/node_modules/highlight.js/styles/paraiso-dark.min.css +1 -0
  1852. package/extensions/third-party/node_modules/highlight.js/styles/paraiso-light.css +67 -0
  1853. package/extensions/third-party/node_modules/highlight.js/styles/paraiso-light.min.css +1 -0
  1854. package/extensions/third-party/node_modules/highlight.js/styles/pojoaque.css +76 -0
  1855. package/extensions/third-party/node_modules/highlight.js/styles/pojoaque.jpg +0 -0
  1856. package/extensions/third-party/node_modules/highlight.js/styles/pojoaque.min.css +1 -0
  1857. package/extensions/third-party/node_modules/highlight.js/styles/purebasic.css +103 -0
  1858. package/extensions/third-party/node_modules/highlight.js/styles/purebasic.min.css +1 -0
  1859. package/extensions/third-party/node_modules/highlight.js/styles/qtcreator-dark.css +76 -0
  1860. package/extensions/third-party/node_modules/highlight.js/styles/qtcreator-dark.min.css +1 -0
  1861. package/extensions/third-party/node_modules/highlight.js/styles/qtcreator-light.css +74 -0
  1862. package/extensions/third-party/node_modules/highlight.js/styles/qtcreator-light.min.css +1 -0
  1863. package/extensions/third-party/node_modules/highlight.js/styles/rainbow.css +77 -0
  1864. package/extensions/third-party/node_modules/highlight.js/styles/rainbow.min.css +1 -0
  1865. package/extensions/third-party/node_modules/highlight.js/styles/rose-pine-dawn.css +107 -0
  1866. package/extensions/third-party/node_modules/highlight.js/styles/rose-pine-dawn.min.css +4 -0
  1867. package/extensions/third-party/node_modules/highlight.js/styles/rose-pine-moon.css +109 -0
  1868. package/extensions/third-party/node_modules/highlight.js/styles/rose-pine-moon.min.css +4 -0
  1869. package/extensions/third-party/node_modules/highlight.js/styles/rose-pine.css +109 -0
  1870. package/extensions/third-party/node_modules/highlight.js/styles/rose-pine.min.css +4 -0
  1871. package/extensions/third-party/node_modules/highlight.js/styles/routeros.css +86 -0
  1872. package/extensions/third-party/node_modules/highlight.js/styles/routeros.min.css +1 -0
  1873. package/extensions/third-party/node_modules/highlight.js/styles/school-book.css +62 -0
  1874. package/extensions/third-party/node_modules/highlight.js/styles/school-book.min.css +1 -0
  1875. package/extensions/third-party/node_modules/highlight.js/styles/shades-of-purple.css +84 -0
  1876. package/extensions/third-party/node_modules/highlight.js/styles/shades-of-purple.min.css +1 -0
  1877. package/extensions/third-party/node_modules/highlight.js/styles/srcery.css +89 -0
  1878. package/extensions/third-party/node_modules/highlight.js/styles/srcery.min.css +1 -0
  1879. package/extensions/third-party/node_modules/highlight.js/styles/stackoverflow-dark.css +117 -0
  1880. package/extensions/third-party/node_modules/highlight.js/styles/stackoverflow-dark.min.css +13 -0
  1881. package/extensions/third-party/node_modules/highlight.js/styles/stackoverflow-light.css +117 -0
  1882. package/extensions/third-party/node_modules/highlight.js/styles/stackoverflow-light.min.css +13 -0
  1883. package/extensions/third-party/node_modules/highlight.js/styles/sunburst.css +89 -0
  1884. package/extensions/third-party/node_modules/highlight.js/styles/sunburst.min.css +1 -0
  1885. package/extensions/third-party/node_modules/highlight.js/styles/tokyo-night-dark.css +114 -0
  1886. package/extensions/third-party/node_modules/highlight.js/styles/tokyo-night-dark.min.css +8 -0
  1887. package/extensions/third-party/node_modules/highlight.js/styles/tokyo-night-light.css +114 -0
  1888. package/extensions/third-party/node_modules/highlight.js/styles/tokyo-night-light.min.css +8 -0
  1889. package/extensions/third-party/node_modules/highlight.js/styles/tomorrow-night-blue.css +69 -0
  1890. package/extensions/third-party/node_modules/highlight.js/styles/tomorrow-night-blue.min.css +1 -0
  1891. package/extensions/third-party/node_modules/highlight.js/styles/tomorrow-night-bright.css +68 -0
  1892. package/extensions/third-party/node_modules/highlight.js/styles/tomorrow-night-bright.min.css +1 -0
  1893. package/extensions/third-party/node_modules/highlight.js/styles/vs-dark.css +61 -0
  1894. package/extensions/third-party/node_modules/highlight.js/styles/vs-dark.min.css +1 -0
  1895. package/extensions/third-party/node_modules/highlight.js/styles/vs.css +63 -0
  1896. package/extensions/third-party/node_modules/highlight.js/styles/vs.min.css +1 -0
  1897. package/extensions/third-party/node_modules/highlight.js/styles/vs2015.css +100 -0
  1898. package/extensions/third-party/node_modules/highlight.js/styles/vs2015.min.css +1 -0
  1899. package/extensions/third-party/node_modules/highlight.js/styles/xcode.css +90 -0
  1900. package/extensions/third-party/node_modules/highlight.js/styles/xcode.min.css +1 -0
  1901. package/extensions/third-party/node_modules/highlight.js/styles/xt256.css +79 -0
  1902. package/extensions/third-party/node_modules/highlight.js/styles/xt256.min.css +1 -0
  1903. package/extensions/third-party/node_modules/highlight.js/types/index.d.ts +274 -0
  1904. package/extensions/third-party/node_modules/jiti/LICENSE +21 -0
  1905. package/extensions/third-party/node_modules/jiti/README.md +258 -0
  1906. package/extensions/third-party/node_modules/jiti/dist/babel.cjs +257 -0
  1907. package/extensions/third-party/node_modules/jiti/dist/jiti.cjs +1 -0
  1908. package/extensions/third-party/node_modules/jiti/lib/jiti-cli.mjs +34 -0
  1909. package/extensions/third-party/node_modules/jiti/lib/jiti-hooks.mjs +124 -0
  1910. package/extensions/third-party/node_modules/jiti/lib/jiti-native.mjs +121 -0
  1911. package/extensions/third-party/node_modules/jiti/lib/jiti-register.d.mts +1 -0
  1912. package/extensions/third-party/node_modules/jiti/lib/jiti-register.mjs +4 -0
  1913. package/extensions/third-party/node_modules/jiti/lib/jiti-static.mjs +23 -0
  1914. package/extensions/third-party/node_modules/jiti/lib/jiti.cjs +30 -0
  1915. package/extensions/third-party/node_modules/jiti/lib/jiti.d.cts +8 -0
  1916. package/extensions/third-party/node_modules/jiti/lib/jiti.d.mts +8 -0
  1917. package/extensions/third-party/node_modules/jiti/lib/jiti.mjs +29 -0
  1918. package/extensions/third-party/node_modules/jiti/lib/types.d.ts +420 -0
  1919. package/extensions/third-party/node_modules/jiti/package.json +146 -0
  1920. package/extensions/third-party/node_modules/pi-subagents/CHANGELOG.md +1905 -0
  1921. package/extensions/third-party/node_modules/pi-subagents/LICENSE +21 -0
  1922. package/extensions/third-party/node_modules/pi-subagents/README.md +122 -0
  1923. package/extensions/third-party/node_modules/pi-subagents/agents/delegate.md +14 -0
  1924. package/extensions/third-party/node_modules/pi-subagents/agents/oracle.md +78 -0
  1925. package/extensions/third-party/node_modules/pi-subagents/agents/researcher.md +52 -0
  1926. package/extensions/third-party/node_modules/pi-subagents/agents/reviewer.md +79 -0
  1927. package/extensions/third-party/node_modules/pi-subagents/agents/scout.md +50 -0
  1928. package/extensions/third-party/node_modules/pi-subagents/agents/worker.md +59 -0
  1929. package/extensions/third-party/node_modules/pi-subagents/async-retention-discovery-worker.mjs +180 -0
  1930. package/extensions/third-party/node_modules/pi-subagents/docs/agents.md +383 -0
  1931. package/extensions/third-party/node_modules/pi-subagents/docs/configuration.md +457 -0
  1932. package/extensions/third-party/node_modules/pi-subagents/docs/extension-api.md +385 -0
  1933. package/extensions/third-party/node_modules/pi-subagents/docs/missions.md +121 -0
  1934. package/extensions/third-party/node_modules/pi-subagents/docs/models.md +194 -0
  1935. package/extensions/third-party/node_modules/pi-subagents/docs/observability.md +250 -0
  1936. package/extensions/third-party/node_modules/pi-subagents/docs/tool-reference.md +359 -0
  1937. package/extensions/third-party/node_modules/pi-subagents/docs/watchdog.md +176 -0
  1938. package/extensions/third-party/node_modules/pi-subagents/docs/workflows.md +331 -0
  1939. package/extensions/third-party/node_modules/pi-subagents/index.ts +1 -0
  1940. package/extensions/third-party/node_modules/pi-subagents/inspector-runner.mjs +11 -0
  1941. package/extensions/third-party/node_modules/pi-subagents/install.mjs +93 -0
  1942. package/extensions/third-party/node_modules/pi-subagents/package.json +106 -0
  1943. package/extensions/third-party/node_modules/pi-subagents/prompts/gather-context-and-clarify.md +13 -0
  1944. package/extensions/third-party/node_modules/pi-subagents/prompts/parallel-cleanup.md +59 -0
  1945. package/extensions/third-party/node_modules/pi-subagents/prompts/parallel-research.md +50 -0
  1946. package/extensions/third-party/node_modules/pi-subagents/prompts/parallel-review.md +54 -0
  1947. package/extensions/third-party/node_modules/pi-subagents/prompts/review-loop.md +43 -0
  1948. package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/SKILL.md +45 -0
  1949. package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/references/constraints-and-recipes.md +258 -0
  1950. package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/references/execution-controls.md +443 -0
  1951. package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/references/management-authoring-rpc.md +161 -0
  1952. package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/references/multi-lane-orchestration.md +39 -0
  1953. package/extensions/third-party/node_modules/pi-subagents/skills/pi-subagents/references/prompting-and-roles.md +260 -0
  1954. package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-management.ts +1029 -0
  1955. package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-memory.ts +254 -0
  1956. package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-refinements.ts +624 -0
  1957. package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-scope.ts +6 -0
  1958. package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-selection.ts +25 -0
  1959. package/extensions/third-party/node_modules/pi-subagents/src/agents/agent-serializer.ts +165 -0
  1960. package/extensions/third-party/node_modules/pi-subagents/src/agents/agents.ts +2055 -0
  1961. package/extensions/third-party/node_modules/pi-subagents/src/agents/chain-serializer.ts +280 -0
  1962. package/extensions/third-party/node_modules/pi-subagents/src/agents/frontmatter.ts +153 -0
  1963. package/extensions/third-party/node_modules/pi-subagents/src/agents/identity.ts +30 -0
  1964. package/extensions/third-party/node_modules/pi-subagents/src/agents/proactive-skills.ts +194 -0
  1965. package/extensions/third-party/node_modules/pi-subagents/src/agents/skills.ts +754 -0
  1966. package/extensions/third-party/node_modules/pi-subagents/src/api/background-work.ts +197 -0
  1967. package/extensions/third-party/node_modules/pi-subagents/src/api/capability-ceiling.ts +17 -0
  1968. package/extensions/third-party/node_modules/pi-subagents/src/api/control-channel.ts +4 -0
  1969. package/extensions/third-party/node_modules/pi-subagents/src/api/delegation.ts +119 -0
  1970. package/extensions/third-party/node_modules/pi-subagents/src/api/external-job-provider.ts +186 -0
  1971. package/extensions/third-party/node_modules/pi-subagents/src/api/external-runs.ts +219 -0
  1972. package/extensions/third-party/node_modules/pi-subagents/src/api/intercom-bridge.ts +3 -0
  1973. package/extensions/third-party/node_modules/pi-subagents/src/api/pi-args.ts +5 -0
  1974. package/extensions/third-party/node_modules/pi-subagents/src/api/preflight.ts +437 -0
  1975. package/extensions/third-party/node_modules/pi-subagents/src/api/project-panes.ts +30 -0
  1976. package/extensions/third-party/node_modules/pi-subagents/src/api/shared-types.ts +21 -0
  1977. package/extensions/third-party/node_modules/pi-subagents/src/extension/config.ts +162 -0
  1978. package/extensions/third-party/node_modules/pi-subagents/src/extension/control-notices.ts +58 -0
  1979. package/extensions/third-party/node_modules/pi-subagents/src/extension/doctor.ts +267 -0
  1980. package/extensions/third-party/node_modules/pi-subagents/src/extension/fanout-child.ts +202 -0
  1981. package/extensions/third-party/node_modules/pi-subagents/src/extension/index.ts +1006 -0
  1982. package/extensions/third-party/node_modules/pi-subagents/src/extension/public-execution.ts +133 -0
  1983. package/extensions/third-party/node_modules/pi-subagents/src/extension/rpc.ts +652 -0
  1984. package/extensions/third-party/node_modules/pi-subagents/src/extension/schemas.ts +379 -0
  1985. package/extensions/third-party/node_modules/pi-subagents/src/extension/steering-notices.ts +35 -0
  1986. package/extensions/third-party/node_modules/pi-subagents/src/extension/subagent-guide.ts +39 -0
  1987. package/extensions/third-party/node_modules/pi-subagents/src/extension/tool-description.ts +197 -0
  1988. package/extensions/third-party/node_modules/pi-subagents/src/inspectors/herdr/actions.ts +234 -0
  1989. package/extensions/third-party/node_modules/pi-subagents/src/inspectors/herdr/client.ts +130 -0
  1990. package/extensions/third-party/node_modules/pi-subagents/src/inspectors/herdr/inspector-runner.ts +155 -0
  1991. package/extensions/third-party/node_modules/pi-subagents/src/inspectors/herdr/project-panes.ts +546 -0
  1992. package/extensions/third-party/node_modules/pi-subagents/src/inspectors/herdr/shell-command.ts +16 -0
  1993. package/extensions/third-party/node_modules/pi-subagents/src/integrations/herdr-status.ts +330 -0
  1994. package/extensions/third-party/node_modules/pi-subagents/src/intercom/intercom-bridge.ts +191 -0
  1995. package/extensions/third-party/node_modules/pi-subagents/src/intercom/native-supervisor-channel.ts +812 -0
  1996. package/extensions/third-party/node_modules/pi-subagents/src/intercom/result-intercom.ts +421 -0
  1997. package/extensions/third-party/node_modules/pi-subagents/src/missions/actions.ts +433 -0
  1998. package/extensions/third-party/node_modules/pi-subagents/src/missions/goal-driver.ts +164 -0
  1999. package/extensions/third-party/node_modules/pi-subagents/src/missions/lifecycle.ts +367 -0
  2000. package/extensions/third-party/node_modules/pi-subagents/src/missions/store.ts +584 -0
  2001. package/extensions/third-party/node_modules/pi-subagents/src/missions/types.ts +190 -0
  2002. package/extensions/third-party/node_modules/pi-subagents/src/missions/workflow-state.ts +260 -0
  2003. package/extensions/third-party/node_modules/pi-subagents/src/policy/authority.ts +46 -0
  2004. package/extensions/third-party/node_modules/pi-subagents/src/profiles/profiles.ts +663 -0
  2005. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/active-async-capacity.ts +431 -0
  2006. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/active-run-index.ts +139 -0
  2007. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-execution.ts +1739 -0
  2008. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-job-tracker.ts +692 -0
  2009. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-resume.ts +601 -0
  2010. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-retention.ts +886 -0
  2011. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-status-snapshot.ts +277 -0
  2012. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/async-status.ts +577 -0
  2013. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/auto-drain.ts +67 -0
  2014. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/chain-append.ts +316 -0
  2015. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/chain-root-attachment.ts +199 -0
  2016. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/completion-batcher.ts +168 -0
  2017. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/completion-dedupe.ts +58 -0
  2018. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/completion-replay.ts +287 -0
  2019. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/control-channel.ts +679 -0
  2020. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/fleet-view.ts +604 -0
  2021. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/index-segment.ts +59 -0
  2022. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/inspect-rpc.ts +443 -0
  2023. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/notify.ts +358 -0
  2024. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/owned-process-tree.ts +104 -0
  2025. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/parallel-groups.ts +45 -0
  2026. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/process-terminal.ts +294 -0
  2027. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/result-files.ts +505 -0
  2028. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/result-watcher.ts +760 -0
  2029. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/resume-guidance.ts +56 -0
  2030. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/retained-children.ts +135 -0
  2031. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/run-id-query.ts +7 -0
  2032. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/run-id-resolver.ts +175 -0
  2033. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/run-status.ts +632 -0
  2034. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/scheduled-runs.ts +823 -0
  2035. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/stale-run-reconciler.ts +416 -0
  2036. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/steering.ts +249 -0
  2037. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/subagent-runner.ts +5179 -0
  2038. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/subagent-wait.ts +702 -0
  2039. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/terminal-run-index.ts +129 -0
  2040. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/top-level-async.ts +14 -0
  2041. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/wait-completions.ts +166 -0
  2042. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/wait-config.ts +36 -0
  2043. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/wait-subscriptions.ts +464 -0
  2044. package/extensions/third-party/node_modules/pi-subagents/src/runs/background/wait-tool.ts +36 -0
  2045. package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/async-dismiss-action.ts +86 -0
  2046. package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/async-steering-action.ts +262 -0
  2047. package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/async-stop-action.ts +65 -0
  2048. package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/execution.ts +2196 -0
  2049. package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/foreground-control.ts +144 -0
  2050. package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/foreground-history.ts +137 -0
  2051. package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/prompt-audit.ts +172 -0
  2052. package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/subagent-executor.ts +5736 -0
  2053. package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/workflow-detach-reconcile.ts +194 -0
  2054. package/extensions/third-party/node_modules/pi-subagents/src/runs/foreground/workflow-foreground-steering.ts +188 -0
  2055. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/acceptance.ts +1374 -0
  2056. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/agent-contract.ts +38 -0
  2057. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/capability-ceiling.ts +209 -0
  2058. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/chain-outputs.ts +116 -0
  2059. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/child-protocol.ts +401 -0
  2060. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/completion-guard.ts +201 -0
  2061. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/context-mode.ts +44 -0
  2062. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/dynamic-fanout.ts +297 -0
  2063. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/external-cli-runner.ts +134 -0
  2064. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/external-job-bridge.ts +444 -0
  2065. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/external-job-runner.ts +286 -0
  2066. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/llm-intent-arbiter.ts +302 -0
  2067. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/long-running-guard.ts +220 -0
  2068. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/mcp-direct-tool-allowlist.ts +420 -0
  2069. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/model-fallback.ts +432 -0
  2070. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/model-scope.ts +138 -0
  2071. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/nested-events.ts +1080 -0
  2072. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/nested-path.ts +52 -0
  2073. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/nested-render.ts +123 -0
  2074. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/orca-progress-tabs.ts +437 -0
  2075. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/owner-lifeline.ts +104 -0
  2076. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/parallel-handoff.ts +280 -0
  2077. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/parallel-utils.ts +250 -0
  2078. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/permissions.ts +99 -0
  2079. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/pi-args.ts +856 -0
  2080. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/pi-spawn.ts +163 -0
  2081. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/process-signal.ts +19 -0
  2082. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/run-fanout-budget.ts +280 -0
  2083. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/run-history.ts +181 -0
  2084. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/runtime-acknowledged-extensions.ts +71 -0
  2085. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/session-lease.ts +293 -0
  2086. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/single-output.ts +237 -0
  2087. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/spawn-budget.ts +128 -0
  2088. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/startup-transport.ts +158 -0
  2089. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/structured-output.ts +182 -0
  2090. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/subagent-control.ts +269 -0
  2091. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/subagent-prompt-runtime.ts +685 -0
  2092. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/subagent-startup-retry.ts +116 -0
  2093. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/task-intent.ts +197 -0
  2094. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/tool-availability.ts +83 -0
  2095. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/tool-budget.ts +80 -0
  2096. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/tool-timeout.ts +93 -0
  2097. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/turn-budget.ts +98 -0
  2098. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/usage-budget.ts +65 -0
  2099. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/workflow-graph.ts +209 -0
  2100. package/extensions/third-party/node_modules/pi-subagents/src/runs/shared/worktree.ts +784 -0
  2101. package/extensions/third-party/node_modules/pi-subagents/src/shared/accessible-dir.ts +47 -0
  2102. package/extensions/third-party/node_modules/pi-subagents/src/shared/agent-stream-options.ts +5 -0
  2103. package/extensions/third-party/node_modules/pi-subagents/src/shared/artifacts.ts +281 -0
  2104. package/extensions/third-party/node_modules/pi-subagents/src/shared/atomic-json.ts +81 -0
  2105. package/extensions/third-party/node_modules/pi-subagents/src/shared/capacity-resilient-json.ts +102 -0
  2106. package/extensions/third-party/node_modules/pi-subagents/src/shared/child-transcript.ts +264 -0
  2107. package/extensions/third-party/node_modules/pi-subagents/src/shared/completion-owner.ts +14 -0
  2108. package/extensions/third-party/node_modules/pi-subagents/src/shared/display-text.ts +150 -0
  2109. package/extensions/third-party/node_modules/pi-subagents/src/shared/file-coalescer.ts +49 -0
  2110. package/extensions/third-party/node_modules/pi-subagents/src/shared/file-system-retry.ts +95 -0
  2111. package/extensions/third-party/node_modules/pi-subagents/src/shared/fork-context.ts +268 -0
  2112. package/extensions/third-party/node_modules/pi-subagents/src/shared/formatters.ts +131 -0
  2113. package/extensions/third-party/node_modules/pi-subagents/src/shared/jsonl-writer.ts +81 -0
  2114. package/extensions/third-party/node_modules/pi-subagents/src/shared/launch-contract.ts +124 -0
  2115. package/extensions/third-party/node_modules/pi-subagents/src/shared/model-info.ts +81 -0
  2116. package/extensions/third-party/node_modules/pi-subagents/src/shared/node-executable.ts +21 -0
  2117. package/extensions/third-party/node_modules/pi-subagents/src/shared/post-exit-stdio-guard.ts +85 -0
  2118. package/extensions/third-party/node_modules/pi-subagents/src/shared/prompt-resources.ts +11 -0
  2119. package/extensions/third-party/node_modules/pi-subagents/src/shared/session-identity.ts +10 -0
  2120. package/extensions/third-party/node_modules/pi-subagents/src/shared/session-tokens.ts +44 -0
  2121. package/extensions/third-party/node_modules/pi-subagents/src/shared/settings.ts +490 -0
  2122. package/extensions/third-party/node_modules/pi-subagents/src/shared/status-format.ts +55 -0
  2123. package/extensions/third-party/node_modules/pi-subagents/src/shared/types.ts +2307 -0
  2124. package/extensions/third-party/node_modules/pi-subagents/src/shared/utf8.ts +11 -0
  2125. package/extensions/third-party/node_modules/pi-subagents/src/shared/utils.ts +633 -0
  2126. package/extensions/third-party/node_modules/pi-subagents/src/shared/watch-strategy.ts +10 -0
  2127. package/extensions/third-party/node_modules/pi-subagents/src/slash/delegation-adapters.ts +434 -0
  2128. package/extensions/third-party/node_modules/pi-subagents/src/slash/delegation-json.ts +108 -0
  2129. package/extensions/third-party/node_modules/pi-subagents/src/slash/delegation-request.ts +166 -0
  2130. package/extensions/third-party/node_modules/pi-subagents/src/slash/prompt-template-bridge.ts +383 -0
  2131. package/extensions/third-party/node_modules/pi-subagents/src/slash/prompt-workflows.ts +287 -0
  2132. package/extensions/third-party/node_modules/pi-subagents/src/slash/selector.ts +147 -0
  2133. package/extensions/third-party/node_modules/pi-subagents/src/slash/slash-bridge.ts +193 -0
  2134. package/extensions/third-party/node_modules/pi-subagents/src/slash/slash-commands.ts +1049 -0
  2135. package/extensions/third-party/node_modules/pi-subagents/src/slash/slash-live-state.ts +299 -0
  2136. package/extensions/third-party/node_modules/pi-subagents/src/slash/subagents-admin.ts +432 -0
  2137. package/extensions/third-party/node_modules/pi-subagents/src/tui/fleet-status.ts +691 -0
  2138. package/extensions/third-party/node_modules/pi-subagents/src/tui/fleet-transcript.ts +530 -0
  2139. package/extensions/third-party/node_modules/pi-subagents/src/tui/fleet.ts +1362 -0
  2140. package/extensions/third-party/node_modules/pi-subagents/src/tui/render-helpers.ts +80 -0
  2141. package/extensions/third-party/node_modules/pi-subagents/src/tui/render.ts +2224 -0
  2142. package/extensions/third-party/node_modules/pi-subagents/src/types/pi-runtime-compat.d.ts +8 -0
  2143. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/change-signature.ts +221 -0
  2144. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/child-status.ts +205 -0
  2145. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/emission-guard.ts +123 -0
  2146. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/lsp-diagnostics.ts +538 -0
  2147. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/model-selection.ts +167 -0
  2148. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/permission-arbiter.ts +146 -0
  2149. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/register-child.ts +117 -0
  2150. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/register-main.ts +440 -0
  2151. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/render.ts +54 -0
  2152. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/review.ts +303 -0
  2153. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/runtime.ts +868 -0
  2154. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/scope.ts +62 -0
  2155. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/settings.ts +568 -0
  2156. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/tool-actions.ts +155 -0
  2157. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/turn-delta.ts +161 -0
  2158. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/types.ts +198 -0
  2159. package/extensions/third-party/node_modules/pi-subagents/src/watchdog/warning-format.ts +73 -0
  2160. package/extensions/third-party/node_modules/pi-subagents/src/workflows/chat-progress.ts +148 -0
  2161. package/extensions/third-party/node_modules/pi-subagents/src/workflows/scripted-workflow.ts +1069 -0
  2162. package/extensions/third-party/node_modules/typebox/build/compile/code.d.mts +12 -0
  2163. package/extensions/third-party/node_modules/typebox/build/compile/code.mjs +65 -0
  2164. package/extensions/third-party/node_modules/typebox/build/compile/compile.d.mts +6 -0
  2165. package/extensions/third-party/node_modules/typebox/build/compile/compile.mjs +12 -0
  2166. package/extensions/third-party/node_modules/typebox/build/compile/index.d.mts +8 -0
  2167. package/extensions/third-party/node_modules/typebox/build/compile/index.mjs +14 -0
  2168. package/extensions/third-party/node_modules/typebox/build/compile/validator.d.mts +43 -0
  2169. package/extensions/third-party/node_modules/typebox/build/compile/validator.mjs +121 -0
  2170. package/extensions/third-party/node_modules/typebox/build/error/errors.d.mts +214 -0
  2171. package/extensions/third-party/node_modules/typebox/build/error/errors.mjs +18 -0
  2172. package/extensions/third-party/node_modules/typebox/build/error/index.d.mts +1 -0
  2173. package/extensions/third-party/node_modules/typebox/build/error/index.mjs +1 -0
  2174. package/extensions/third-party/node_modules/typebox/build/format/_idna.d.mts +2 -0
  2175. package/extensions/third-party/node_modules/typebox/build/format/_idna.mjs +216 -0
  2176. package/extensions/third-party/node_modules/typebox/build/format/_puny.d.mts +1 -0
  2177. package/extensions/third-party/node_modules/typebox/build/format/_puny.mjs +74 -0
  2178. package/extensions/third-party/node_modules/typebox/build/format/_registry.d.mts +15 -0
  2179. package/extensions/third-party/node_modules/typebox/build/format/_registry.mjs +96 -0
  2180. package/extensions/third-party/node_modules/typebox/build/format/date.d.mts +6 -0
  2181. package/extensions/third-party/node_modules/typebox/build/format/date.mjs +19 -0
  2182. package/extensions/third-party/node_modules/typebox/build/format/date_time.d.mts +6 -0
  2183. package/extensions/third-party/node_modules/typebox/build/format/date_time.mjs +11 -0
  2184. package/extensions/third-party/node_modules/typebox/build/format/duration.d.mts +5 -0
  2185. package/extensions/third-party/node_modules/typebox/build/format/duration.mjs +8 -0
  2186. package/extensions/third-party/node_modules/typebox/build/format/email.d.mts +5 -0
  2187. package/extensions/third-party/node_modules/typebox/build/format/email.mjs +8 -0
  2188. package/extensions/third-party/node_modules/typebox/build/format/format.d.mts +22 -0
  2189. package/extensions/third-party/node_modules/typebox/build/format/format.mjs +22 -0
  2190. package/extensions/third-party/node_modules/typebox/build/format/hostname.d.mts +7 -0
  2191. package/extensions/third-party/node_modules/typebox/build/format/hostname.mjs +18 -0
  2192. package/extensions/third-party/node_modules/typebox/build/format/idn_email.d.mts +5 -0
  2193. package/extensions/third-party/node_modules/typebox/build/format/idn_email.mjs +8 -0
  2194. package/extensions/third-party/node_modules/typebox/build/format/idn_hostname.d.mts +7 -0
  2195. package/extensions/third-party/node_modules/typebox/build/format/idn_hostname.mjs +19 -0
  2196. package/extensions/third-party/node_modules/typebox/build/format/index.d.mts +4 -0
  2197. package/extensions/third-party/node_modules/typebox/build/format/index.mjs +4 -0
  2198. package/extensions/third-party/node_modules/typebox/build/format/ipv4.d.mts +6 -0
  2199. package/extensions/third-party/node_modules/typebox/build/format/ipv4.mjs +38 -0
  2200. package/extensions/third-party/node_modules/typebox/build/format/ipv6.d.mts +5 -0
  2201. package/extensions/third-party/node_modules/typebox/build/format/ipv6.mjs +67 -0
  2202. package/extensions/third-party/node_modules/typebox/build/format/iri.d.mts +5 -0
  2203. package/extensions/third-party/node_modules/typebox/build/format/iri.mjs +13 -0
  2204. package/extensions/third-party/node_modules/typebox/build/format/iri_reference.d.mts +5 -0
  2205. package/extensions/third-party/node_modules/typebox/build/format/iri_reference.mjs +60 -0
  2206. package/extensions/third-party/node_modules/typebox/build/format/json_pointer.d.mts +6 -0
  2207. package/extensions/third-party/node_modules/typebox/build/format/json_pointer.mjs +9 -0
  2208. package/extensions/third-party/node_modules/typebox/build/format/json_pointer_uri_fragment.d.mts +6 -0
  2209. package/extensions/third-party/node_modules/typebox/build/format/json_pointer_uri_fragment.mjs +9 -0
  2210. package/extensions/third-party/node_modules/typebox/build/format/regex.d.mts +6 -0
  2211. package/extensions/third-party/node_modules/typebox/build/format/regex.mjs +17 -0
  2212. package/extensions/third-party/node_modules/typebox/build/format/relative_json_pointer.d.mts +6 -0
  2213. package/extensions/third-party/node_modules/typebox/build/format/relative_json_pointer.mjs +9 -0
  2214. package/extensions/third-party/node_modules/typebox/build/format/time.d.mts +5 -0
  2215. package/extensions/third-party/node_modules/typebox/build/format/time.mjs +27 -0
  2216. package/extensions/third-party/node_modules/typebox/build/format/uri.d.mts +5 -0
  2217. package/extensions/third-party/node_modules/typebox/build/format/uri.mjs +135 -0
  2218. package/extensions/third-party/node_modules/typebox/build/format/uri_reference.d.mts +5 -0
  2219. package/extensions/third-party/node_modules/typebox/build/format/uri_reference.mjs +9 -0
  2220. package/extensions/third-party/node_modules/typebox/build/format/uri_template.d.mts +6 -0
  2221. package/extensions/third-party/node_modules/typebox/build/format/uri_template.mjs +10 -0
  2222. package/extensions/third-party/node_modules/typebox/build/format/url.d.mts +6 -0
  2223. package/extensions/third-party/node_modules/typebox/build/format/url.mjs +9 -0
  2224. package/extensions/third-party/node_modules/typebox/build/format/uuid.d.mts +6 -0
  2225. package/extensions/third-party/node_modules/typebox/build/format/uuid.mjs +9 -0
  2226. package/extensions/third-party/node_modules/typebox/build/guard/emit.d.mts +58 -0
  2227. package/extensions/third-party/node_modules/typebox/build/guard/emit.mjs +194 -0
  2228. package/extensions/third-party/node_modules/typebox/build/guard/globals.d.mts +35 -0
  2229. package/extensions/third-party/node_modules/typebox/build/guard/globals.mjs +90 -0
  2230. package/extensions/third-party/node_modules/typebox/build/guard/guard.d.mts +69 -0
  2231. package/extensions/third-party/node_modules/typebox/build/guard/guard.mjs +217 -0
  2232. package/extensions/third-party/node_modules/typebox/build/guard/index.d.mts +6 -0
  2233. package/extensions/third-party/node_modules/typebox/build/guard/index.mjs +6 -0
  2234. package/extensions/third-party/node_modules/typebox/build/guard/native.d.mts +20 -0
  2235. package/extensions/third-party/node_modules/typebox/build/guard/native.mjs +60 -0
  2236. package/extensions/third-party/node_modules/typebox/build/guard/string.d.mts +6 -0
  2237. package/extensions/third-party/node_modules/typebox/build/guard/string.mjs +164 -0
  2238. package/extensions/third-party/node_modules/typebox/build/index.d.mts +8 -0
  2239. package/extensions/third-party/node_modules/typebox/build/index.mjs +14 -0
  2240. package/extensions/third-party/node_modules/typebox/build/schema/build.d.mts +39 -0
  2241. package/extensions/third-party/node_modules/typebox/build/schema/build.mjs +118 -0
  2242. package/extensions/third-party/node_modules/typebox/build/schema/check.d.mts +6 -0
  2243. package/extensions/third-party/node_modules/typebox/build/schema/check.mjs +14 -0
  2244. package/extensions/third-party/node_modules/typebox/build/schema/compile.d.mts +22 -0
  2245. package/extensions/third-party/node_modules/typebox/build/schema/compile.mjs +46 -0
  2246. package/extensions/third-party/node_modules/typebox/build/schema/engine/_context.d.mts +35 -0
  2247. package/extensions/third-party/node_modules/typebox/build/schema/engine/_context.mjs +129 -0
  2248. package/extensions/third-party/node_modules/typebox/build/schema/engine/_exact_optional.d.mts +3 -0
  2249. package/extensions/third-party/node_modules/typebox/build/schema/engine/_exact_optional.mjs +20 -0
  2250. package/extensions/third-party/node_modules/typebox/build/schema/engine/_externals.d.mts +7 -0
  2251. package/extensions/third-party/node_modules/typebox/build/schema/engine/_externals.mjs +25 -0
  2252. package/extensions/third-party/node_modules/typebox/build/schema/engine/_functions.d.mts +6 -0
  2253. package/extensions/third-party/node_modules/typebox/build/schema/engine/_functions.mjs +47 -0
  2254. package/extensions/third-party/node_modules/typebox/build/schema/engine/_guard.d.mts +6 -0
  2255. package/extensions/third-party/node_modules/typebox/build/schema/engine/_guard.mjs +26 -0
  2256. package/extensions/third-party/node_modules/typebox/build/schema/engine/_reducer.d.mts +4 -0
  2257. package/extensions/third-party/node_modules/typebox/build/schema/engine/_reducer.mjs +45 -0
  2258. package/extensions/third-party/node_modules/typebox/build/schema/engine/_refine.d.mts +6 -0
  2259. package/extensions/third-party/node_modules/typebox/build/schema/engine/_refine.mjs +29 -0
  2260. package/extensions/third-party/node_modules/typebox/build/schema/engine/_stack.d.mts +18 -0
  2261. package/extensions/third-party/node_modules/typebox/build/schema/engine/_stack.mjs +107 -0
  2262. package/extensions/third-party/node_modules/typebox/build/schema/engine/_unique.d.mts +2 -0
  2263. package/extensions/third-party/node_modules/typebox/build/schema/engine/_unique.mjs +5 -0
  2264. package/extensions/third-party/node_modules/typebox/build/schema/engine/additionalItems.d.mts +6 -0
  2265. package/extensions/third-party/node_modules/typebox/build/schema/engine/additionalItems.mjs +50 -0
  2266. package/extensions/third-party/node_modules/typebox/build/schema/engine/additionalProperties.d.mts +9 -0
  2267. package/extensions/third-party/node_modules/typebox/build/schema/engine/additionalProperties.mjs +110 -0
  2268. package/extensions/third-party/node_modules/typebox/build/schema/engine/allOf.d.mts +6 -0
  2269. package/extensions/third-party/node_modules/typebox/build/schema/engine/allOf.mjs +47 -0
  2270. package/extensions/third-party/node_modules/typebox/build/schema/engine/anyOf.d.mts +6 -0
  2271. package/extensions/third-party/node_modules/typebox/build/schema/engine/anyOf.mjs +52 -0
  2272. package/extensions/third-party/node_modules/typebox/build/schema/engine/boolean.d.mts +5 -0
  2273. package/extensions/third-party/node_modules/typebox/build/schema/engine/boolean.mjs +25 -0
  2274. package/extensions/third-party/node_modules/typebox/build/schema/engine/const.d.mts +6 -0
  2275. package/extensions/third-party/node_modules/typebox/build/schema/engine/const.mjs +30 -0
  2276. package/extensions/third-party/node_modules/typebox/build/schema/engine/contains.d.mts +6 -0
  2277. package/extensions/third-party/node_modules/typebox/build/schema/engine/contains.mjs +42 -0
  2278. package/extensions/third-party/node_modules/typebox/build/schema/engine/dependencies.d.mts +6 -0
  2279. package/extensions/third-party/node_modules/typebox/build/schema/engine/dependencies.mjs +45 -0
  2280. package/extensions/third-party/node_modules/typebox/build/schema/engine/dependentRequired.d.mts +6 -0
  2281. package/extensions/third-party/node_modules/typebox/build/schema/engine/dependentRequired.mjs +40 -0
  2282. package/extensions/third-party/node_modules/typebox/build/schema/engine/dependentSchemas.d.mts +6 -0
  2283. package/extensions/third-party/node_modules/typebox/build/schema/engine/dependentSchemas.mjs +38 -0
  2284. package/extensions/third-party/node_modules/typebox/build/schema/engine/dynamicRef.d.mts +6 -0
  2285. package/extensions/third-party/node_modules/typebox/build/schema/engine/dynamicRef.mjs +25 -0
  2286. package/extensions/third-party/node_modules/typebox/build/schema/engine/enum.d.mts +6 -0
  2287. package/extensions/third-party/node_modules/typebox/build/schema/engine/enum.mjs +33 -0
  2288. package/extensions/third-party/node_modules/typebox/build/schema/engine/exclusiveMaximum.d.mts +6 -0
  2289. package/extensions/third-party/node_modules/typebox/build/schema/engine/exclusiveMaximum.mjs +25 -0
  2290. package/extensions/third-party/node_modules/typebox/build/schema/engine/exclusiveMinimum.d.mts +6 -0
  2291. package/extensions/third-party/node_modules/typebox/build/schema/engine/exclusiveMinimum.mjs +25 -0
  2292. package/extensions/third-party/node_modules/typebox/build/schema/engine/format.d.mts +6 -0
  2293. package/extensions/third-party/node_modules/typebox/build/schema/engine/format.mjs +26 -0
  2294. package/extensions/third-party/node_modules/typebox/build/schema/engine/if.d.mts +6 -0
  2295. package/extensions/third-party/node_modules/typebox/build/schema/engine/if.mjs +47 -0
  2296. package/extensions/third-party/node_modules/typebox/build/schema/engine/index.d.mts +49 -0
  2297. package/extensions/third-party/node_modules/typebox/build/schema/engine/index.mjs +55 -0
  2298. package/extensions/third-party/node_modules/typebox/build/schema/engine/items.d.mts +6 -0
  2299. package/extensions/third-party/node_modules/typebox/build/schema/engine/items.mjs +68 -0
  2300. package/extensions/third-party/node_modules/typebox/build/schema/engine/maxContains.d.mts +6 -0
  2301. package/extensions/third-party/node_modules/typebox/build/schema/engine/maxContains.mjs +42 -0
  2302. package/extensions/third-party/node_modules/typebox/build/schema/engine/maxItems.d.mts +6 -0
  2303. package/extensions/third-party/node_modules/typebox/build/schema/engine/maxItems.mjs +25 -0
  2304. package/extensions/third-party/node_modules/typebox/build/schema/engine/maxLength.d.mts +6 -0
  2305. package/extensions/third-party/node_modules/typebox/build/schema/engine/maxLength.mjs +25 -0
  2306. package/extensions/third-party/node_modules/typebox/build/schema/engine/maxProperties.d.mts +6 -0
  2307. package/extensions/third-party/node_modules/typebox/build/schema/engine/maxProperties.mjs +25 -0
  2308. package/extensions/third-party/node_modules/typebox/build/schema/engine/maximum.d.mts +6 -0
  2309. package/extensions/third-party/node_modules/typebox/build/schema/engine/maximum.mjs +25 -0
  2310. package/extensions/third-party/node_modules/typebox/build/schema/engine/minContains.d.mts +6 -0
  2311. package/extensions/third-party/node_modules/typebox/build/schema/engine/minContains.mjs +41 -0
  2312. package/extensions/third-party/node_modules/typebox/build/schema/engine/minItems.d.mts +6 -0
  2313. package/extensions/third-party/node_modules/typebox/build/schema/engine/minItems.mjs +25 -0
  2314. package/extensions/third-party/node_modules/typebox/build/schema/engine/minLength.d.mts +6 -0
  2315. package/extensions/third-party/node_modules/typebox/build/schema/engine/minLength.mjs +25 -0
  2316. package/extensions/third-party/node_modules/typebox/build/schema/engine/minProperties.d.mts +6 -0
  2317. package/extensions/third-party/node_modules/typebox/build/schema/engine/minProperties.mjs +25 -0
  2318. package/extensions/third-party/node_modules/typebox/build/schema/engine/minimum.d.mts +6 -0
  2319. package/extensions/third-party/node_modules/typebox/build/schema/engine/minimum.mjs +25 -0
  2320. package/extensions/third-party/node_modules/typebox/build/schema/engine/multipleOf.d.mts +6 -0
  2321. package/extensions/third-party/node_modules/typebox/build/schema/engine/multipleOf.mjs +25 -0
  2322. package/extensions/third-party/node_modules/typebox/build/schema/engine/not.d.mts +6 -0
  2323. package/extensions/third-party/node_modules/typebox/build/schema/engine/not.mjs +37 -0
  2324. package/extensions/third-party/node_modules/typebox/build/schema/engine/oneOf.d.mts +6 -0
  2325. package/extensions/third-party/node_modules/typebox/build/schema/engine/oneOf.mjs +58 -0
  2326. package/extensions/third-party/node_modules/typebox/build/schema/engine/pattern.d.mts +6 -0
  2327. package/extensions/third-party/node_modules/typebox/build/schema/engine/pattern.mjs +28 -0
  2328. package/extensions/third-party/node_modules/typebox/build/schema/engine/patternProperties.d.mts +6 -0
  2329. package/extensions/third-party/node_modules/typebox/build/schema/engine/patternProperties.mjs +44 -0
  2330. package/extensions/third-party/node_modules/typebox/build/schema/engine/prefixItems.d.mts +6 -0
  2331. package/extensions/third-party/node_modules/typebox/build/schema/engine/prefixItems.mjs +35 -0
  2332. package/extensions/third-party/node_modules/typebox/build/schema/engine/properties.d.mts +6 -0
  2333. package/extensions/third-party/node_modules/typebox/build/schema/engine/properties.mjs +75 -0
  2334. package/extensions/third-party/node_modules/typebox/build/schema/engine/propertyNames.d.mts +6 -0
  2335. package/extensions/third-party/node_modules/typebox/build/schema/engine/propertyNames.mjs +39 -0
  2336. package/extensions/third-party/node_modules/typebox/build/schema/engine/recursiveRef.d.mts +6 -0
  2337. package/extensions/third-party/node_modules/typebox/build/schema/engine/recursiveRef.mjs +25 -0
  2338. package/extensions/third-party/node_modules/typebox/build/schema/engine/ref.d.mts +6 -0
  2339. package/extensions/third-party/node_modules/typebox/build/schema/engine/ref.mjs +58 -0
  2340. package/extensions/third-party/node_modules/typebox/build/schema/engine/required.d.mts +6 -0
  2341. package/extensions/third-party/node_modules/typebox/build/schema/engine/required.mjs +32 -0
  2342. package/extensions/third-party/node_modules/typebox/build/schema/engine/schema.d.mts +9 -0
  2343. package/extensions/third-party/node_modules/typebox/build/schema/engine/schema.mjs +352 -0
  2344. package/extensions/third-party/node_modules/typebox/build/schema/engine/type.d.mts +6 -0
  2345. package/extensions/third-party/node_modules/typebox/build/schema/engine/type.mjs +74 -0
  2346. package/extensions/third-party/node_modules/typebox/build/schema/engine/unevaluatedItems.d.mts +6 -0
  2347. package/extensions/third-party/node_modules/typebox/build/schema/engine/unevaluatedItems.mjs +51 -0
  2348. package/extensions/third-party/node_modules/typebox/build/schema/engine/unevaluatedProperties.d.mts +6 -0
  2349. package/extensions/third-party/node_modules/typebox/build/schema/engine/unevaluatedProperties.mjs +51 -0
  2350. package/extensions/third-party/node_modules/typebox/build/schema/engine/uniqueItems.d.mts +6 -0
  2351. package/extensions/third-party/node_modules/typebox/build/schema/engine/uniqueItems.mjs +51 -0
  2352. package/extensions/third-party/node_modules/typebox/build/schema/errors.d.mts +6 -0
  2353. package/extensions/third-party/node_modules/typebox/build/schema/errors.mjs +24 -0
  2354. package/extensions/third-party/node_modules/typebox/build/schema/index.d.mts +3 -0
  2355. package/extensions/third-party/node_modules/typebox/build/schema/index.mjs +9 -0
  2356. package/extensions/third-party/node_modules/typebox/build/schema/parse.d.mts +13 -0
  2357. package/extensions/third-party/node_modules/typebox/build/schema/parse.mjs +27 -0
  2358. package/extensions/third-party/node_modules/typebox/build/schema/pointer/index.d.mts +2 -0
  2359. package/extensions/third-party/node_modules/typebox/build/schema/pointer/index.mjs +2 -0
  2360. package/extensions/third-party/node_modules/typebox/build/schema/pointer/pointer.d.mts +10 -0
  2361. package/extensions/third-party/node_modules/typebox/build/schema/pointer/pointer.mjs +106 -0
  2362. package/extensions/third-party/node_modules/typebox/build/schema/pointer/pointer_get.d.mts +9 -0
  2363. package/extensions/third-party/node_modules/typebox/build/schema/pointer/pointer_get.mjs +2 -0
  2364. package/extensions/third-party/node_modules/typebox/build/schema/resolve/index.d.mts +1 -0
  2365. package/extensions/third-party/node_modules/typebox/build/schema/resolve/index.mjs +1 -0
  2366. package/extensions/third-party/node_modules/typebox/build/schema/resolve/ref.d.mts +3 -0
  2367. package/extensions/third-party/node_modules/typebox/build/schema/resolve/ref.mjs +146 -0
  2368. package/extensions/third-party/node_modules/typebox/build/schema/resolve/resolve.d.mts +1 -0
  2369. package/extensions/third-party/node_modules/typebox/build/schema/resolve/resolve.mjs +1 -0
  2370. package/extensions/third-party/node_modules/typebox/build/schema/schema.d.mts +10 -0
  2371. package/extensions/third-party/node_modules/typebox/build/schema/schema.mjs +10 -0
  2372. package/extensions/third-party/node_modules/typebox/build/schema/static/_canonical.d.mts +7 -0
  2373. package/extensions/third-party/node_modules/typebox/build/schema/static/_canonical.mjs +2 -0
  2374. package/extensions/third-party/node_modules/typebox/build/schema/static/_comparer.d.mts +6 -0
  2375. package/extensions/third-party/node_modules/typebox/build/schema/static/_comparer.mjs +2 -0
  2376. package/extensions/third-party/node_modules/typebox/build/schema/static/_elements.d.mts +18 -0
  2377. package/extensions/third-party/node_modules/typebox/build/schema/static/_elements.mjs +2 -0
  2378. package/extensions/third-party/node_modules/typebox/build/schema/static/additionalProperties.d.mts +7 -0
  2379. package/extensions/third-party/node_modules/typebox/build/schema/static/additionalProperties.mjs +3 -0
  2380. package/extensions/third-party/node_modules/typebox/build/schema/static/allOf.d.mts +3 -0
  2381. package/extensions/third-party/node_modules/typebox/build/schema/static/allOf.mjs +2 -0
  2382. package/extensions/third-party/node_modules/typebox/build/schema/static/anyOf.d.mts +3 -0
  2383. package/extensions/third-party/node_modules/typebox/build/schema/static/anyOf.mjs +2 -0
  2384. package/extensions/third-party/node_modules/typebox/build/schema/static/const.d.mts +1 -0
  2385. package/extensions/third-party/node_modules/typebox/build/schema/static/const.mjs +2 -0
  2386. package/extensions/third-party/node_modules/typebox/build/schema/static/enum.d.mts +1 -0
  2387. package/extensions/third-party/node_modules/typebox/build/schema/static/enum.mjs +2 -0
  2388. package/extensions/third-party/node_modules/typebox/build/schema/static/if.d.mts +15 -0
  2389. package/extensions/third-party/node_modules/typebox/build/schema/static/if.mjs +2 -0
  2390. package/extensions/third-party/node_modules/typebox/build/schema/static/index.d.mts +1 -0
  2391. package/extensions/third-party/node_modules/typebox/build/schema/static/index.mjs +1 -0
  2392. package/extensions/third-party/node_modules/typebox/build/schema/static/items.d.mts +7 -0
  2393. package/extensions/third-party/node_modules/typebox/build/schema/static/items.mjs +2 -0
  2394. package/extensions/third-party/node_modules/typebox/build/schema/static/oneOf.d.mts +3 -0
  2395. package/extensions/third-party/node_modules/typebox/build/schema/static/oneOf.mjs +2 -0
  2396. package/extensions/third-party/node_modules/typebox/build/schema/static/patternProperties.d.mts +7 -0
  2397. package/extensions/third-party/node_modules/typebox/build/schema/static/patternProperties.mjs +2 -0
  2398. package/extensions/third-party/node_modules/typebox/build/schema/static/prefixItems.d.mts +3 -0
  2399. package/extensions/third-party/node_modules/typebox/build/schema/static/prefixItems.mjs +2 -0
  2400. package/extensions/third-party/node_modules/typebox/build/schema/static/properties.d.mts +32 -0
  2401. package/extensions/third-party/node_modules/typebox/build/schema/static/properties.mjs +2 -0
  2402. package/extensions/third-party/node_modules/typebox/build/schema/static/ref.d.mts +8 -0
  2403. package/extensions/third-party/node_modules/typebox/build/schema/static/ref.mjs +3 -0
  2404. package/extensions/third-party/node_modules/typebox/build/schema/static/required.d.mts +3 -0
  2405. package/extensions/third-party/node_modules/typebox/build/schema/static/required.mjs +3 -0
  2406. package/extensions/third-party/node_modules/typebox/build/schema/static/schema.d.mts +56 -0
  2407. package/extensions/third-party/node_modules/typebox/build/schema/static/schema.mjs +2 -0
  2408. package/extensions/third-party/node_modules/typebox/build/schema/static/static.d.mts +4 -0
  2409. package/extensions/third-party/node_modules/typebox/build/schema/static/static.mjs +3 -0
  2410. package/extensions/third-party/node_modules/typebox/build/schema/static/type.d.mts +4 -0
  2411. package/extensions/third-party/node_modules/typebox/build/schema/static/type.mjs +3 -0
  2412. package/extensions/third-party/node_modules/typebox/build/schema/static/unevaluatedProperties.d.mts +7 -0
  2413. package/extensions/third-party/node_modules/typebox/build/schema/static/unevaluatedProperties.mjs +3 -0
  2414. package/extensions/third-party/node_modules/typebox/build/schema/types/_guard.d.mts +10 -0
  2415. package/extensions/third-party/node_modules/typebox/build/schema/types/_guard.mjs +16 -0
  2416. package/extensions/third-party/node_modules/typebox/build/schema/types/_refine.d.mts +13 -0
  2417. package/extensions/third-party/node_modules/typebox/build/schema/types/_refine.mjs +18 -0
  2418. package/extensions/third-party/node_modules/typebox/build/schema/types/additionalItems.d.mts +9 -0
  2419. package/extensions/third-party/node_modules/typebox/build/schema/types/additionalItems.mjs +14 -0
  2420. package/extensions/third-party/node_modules/typebox/build/schema/types/additionalProperties.d.mts +9 -0
  2421. package/extensions/third-party/node_modules/typebox/build/schema/types/additionalProperties.mjs +14 -0
  2422. package/extensions/third-party/node_modules/typebox/build/schema/types/allOf.d.mts +9 -0
  2423. package/extensions/third-party/node_modules/typebox/build/schema/types/allOf.mjs +15 -0
  2424. package/extensions/third-party/node_modules/typebox/build/schema/types/anchor.d.mts +8 -0
  2425. package/extensions/third-party/node_modules/typebox/build/schema/types/anchor.mjs +12 -0
  2426. package/extensions/third-party/node_modules/typebox/build/schema/types/anyOf.d.mts +9 -0
  2427. package/extensions/third-party/node_modules/typebox/build/schema/types/anyOf.mjs +15 -0
  2428. package/extensions/third-party/node_modules/typebox/build/schema/types/const.d.mts +9 -0
  2429. package/extensions/third-party/node_modules/typebox/build/schema/types/const.mjs +12 -0
  2430. package/extensions/third-party/node_modules/typebox/build/schema/types/contains.d.mts +9 -0
  2431. package/extensions/third-party/node_modules/typebox/build/schema/types/contains.mjs +14 -0
  2432. package/extensions/third-party/node_modules/typebox/build/schema/types/contentEncoding.d.mts +9 -0
  2433. package/extensions/third-party/node_modules/typebox/build/schema/types/contentEncoding.mjs +13 -0
  2434. package/extensions/third-party/node_modules/typebox/build/schema/types/contentMediaType.d.mts +9 -0
  2435. package/extensions/third-party/node_modules/typebox/build/schema/types/contentMediaType.mjs +13 -0
  2436. package/extensions/third-party/node_modules/typebox/build/schema/types/default.d.mts +9 -0
  2437. package/extensions/third-party/node_modules/typebox/build/schema/types/default.mjs +12 -0
  2438. package/extensions/third-party/node_modules/typebox/build/schema/types/defs.d.mts +6 -0
  2439. package/extensions/third-party/node_modules/typebox/build/schema/types/defs.mjs +12 -0
  2440. package/extensions/third-party/node_modules/typebox/build/schema/types/dependencies.d.mts +11 -0
  2441. package/extensions/third-party/node_modules/typebox/build/schema/types/dependencies.mjs +16 -0
  2442. package/extensions/third-party/node_modules/typebox/build/schema/types/dependentRequired.d.mts +9 -0
  2443. package/extensions/third-party/node_modules/typebox/build/schema/types/dependentRequired.mjs +15 -0
  2444. package/extensions/third-party/node_modules/typebox/build/schema/types/dependentSchemas.d.mts +9 -0
  2445. package/extensions/third-party/node_modules/typebox/build/schema/types/dependentSchemas.mjs +15 -0
  2446. package/extensions/third-party/node_modules/typebox/build/schema/types/dynamicAnchor.d.mts +8 -0
  2447. package/extensions/third-party/node_modules/typebox/build/schema/types/dynamicAnchor.mjs +12 -0
  2448. package/extensions/third-party/node_modules/typebox/build/schema/types/dynamicRef.d.mts +8 -0
  2449. package/extensions/third-party/node_modules/typebox/build/schema/types/dynamicRef.mjs +12 -0
  2450. package/extensions/third-party/node_modules/typebox/build/schema/types/else.d.mts +9 -0
  2451. package/extensions/third-party/node_modules/typebox/build/schema/types/else.mjs +14 -0
  2452. package/extensions/third-party/node_modules/typebox/build/schema/types/enum.d.mts +9 -0
  2453. package/extensions/third-party/node_modules/typebox/build/schema/types/enum.mjs +13 -0
  2454. package/extensions/third-party/node_modules/typebox/build/schema/types/exclusiveMaximum.d.mts +9 -0
  2455. package/extensions/third-party/node_modules/typebox/build/schema/types/exclusiveMaximum.mjs +13 -0
  2456. package/extensions/third-party/node_modules/typebox/build/schema/types/exclusiveMinimum.d.mts +9 -0
  2457. package/extensions/third-party/node_modules/typebox/build/schema/types/exclusiveMinimum.mjs +13 -0
  2458. package/extensions/third-party/node_modules/typebox/build/schema/types/format.d.mts +9 -0
  2459. package/extensions/third-party/node_modules/typebox/build/schema/types/format.mjs +13 -0
  2460. package/extensions/third-party/node_modules/typebox/build/schema/types/id.d.mts +9 -0
  2461. package/extensions/third-party/node_modules/typebox/build/schema/types/id.mjs +13 -0
  2462. package/extensions/third-party/node_modules/typebox/build/schema/types/if.d.mts +9 -0
  2463. package/extensions/third-party/node_modules/typebox/build/schema/types/if.mjs +14 -0
  2464. package/extensions/third-party/node_modules/typebox/build/schema/types/index.d.mts +54 -0
  2465. package/extensions/third-party/node_modules/typebox/build/schema/types/index.mjs +60 -0
  2466. package/extensions/third-party/node_modules/typebox/build/schema/types/items.d.mts +19 -0
  2467. package/extensions/third-party/node_modules/typebox/build/schema/types/items.mjs +26 -0
  2468. package/extensions/third-party/node_modules/typebox/build/schema/types/maxContains.d.mts +9 -0
  2469. package/extensions/third-party/node_modules/typebox/build/schema/types/maxContains.mjs +13 -0
  2470. package/extensions/third-party/node_modules/typebox/build/schema/types/maxItems.d.mts +9 -0
  2471. package/extensions/third-party/node_modules/typebox/build/schema/types/maxItems.mjs +13 -0
  2472. package/extensions/third-party/node_modules/typebox/build/schema/types/maxLength.d.mts +9 -0
  2473. package/extensions/third-party/node_modules/typebox/build/schema/types/maxLength.mjs +13 -0
  2474. package/extensions/third-party/node_modules/typebox/build/schema/types/maxProperties.d.mts +9 -0
  2475. package/extensions/third-party/node_modules/typebox/build/schema/types/maxProperties.mjs +13 -0
  2476. package/extensions/third-party/node_modules/typebox/build/schema/types/maximum.d.mts +9 -0
  2477. package/extensions/third-party/node_modules/typebox/build/schema/types/maximum.mjs +13 -0
  2478. package/extensions/third-party/node_modules/typebox/build/schema/types/minContains.d.mts +9 -0
  2479. package/extensions/third-party/node_modules/typebox/build/schema/types/minContains.mjs +13 -0
  2480. package/extensions/third-party/node_modules/typebox/build/schema/types/minItems.d.mts +9 -0
  2481. package/extensions/third-party/node_modules/typebox/build/schema/types/minItems.mjs +13 -0
  2482. package/extensions/third-party/node_modules/typebox/build/schema/types/minLength.d.mts +9 -0
  2483. package/extensions/third-party/node_modules/typebox/build/schema/types/minLength.mjs +13 -0
  2484. package/extensions/third-party/node_modules/typebox/build/schema/types/minProperties.d.mts +9 -0
  2485. package/extensions/third-party/node_modules/typebox/build/schema/types/minProperties.mjs +13 -0
  2486. package/extensions/third-party/node_modules/typebox/build/schema/types/minimum.d.mts +9 -0
  2487. package/extensions/third-party/node_modules/typebox/build/schema/types/minimum.mjs +13 -0
  2488. package/extensions/third-party/node_modules/typebox/build/schema/types/multipleOf.d.mts +9 -0
  2489. package/extensions/third-party/node_modules/typebox/build/schema/types/multipleOf.mjs +13 -0
  2490. package/extensions/third-party/node_modules/typebox/build/schema/types/not.d.mts +9 -0
  2491. package/extensions/third-party/node_modules/typebox/build/schema/types/not.mjs +14 -0
  2492. package/extensions/third-party/node_modules/typebox/build/schema/types/oneOf.d.mts +9 -0
  2493. package/extensions/third-party/node_modules/typebox/build/schema/types/oneOf.mjs +15 -0
  2494. package/extensions/third-party/node_modules/typebox/build/schema/types/pattern.d.mts +9 -0
  2495. package/extensions/third-party/node_modules/typebox/build/schema/types/pattern.mjs +14 -0
  2496. package/extensions/third-party/node_modules/typebox/build/schema/types/patternProperties.d.mts +9 -0
  2497. package/extensions/third-party/node_modules/typebox/build/schema/types/patternProperties.mjs +15 -0
  2498. package/extensions/third-party/node_modules/typebox/build/schema/types/prefixItems.d.mts +8 -0
  2499. package/extensions/third-party/node_modules/typebox/build/schema/types/prefixItems.mjs +14 -0
  2500. package/extensions/third-party/node_modules/typebox/build/schema/types/properties.d.mts +9 -0
  2501. package/extensions/third-party/node_modules/typebox/build/schema/types/properties.mjs +15 -0
  2502. package/extensions/third-party/node_modules/typebox/build/schema/types/propertyNames.d.mts +9 -0
  2503. package/extensions/third-party/node_modules/typebox/build/schema/types/propertyNames.mjs +15 -0
  2504. package/extensions/third-party/node_modules/typebox/build/schema/types/recursiveAnchor.d.mts +12 -0
  2505. package/extensions/third-party/node_modules/typebox/build/schema/types/recursiveAnchor.mjs +19 -0
  2506. package/extensions/third-party/node_modules/typebox/build/schema/types/recursiveRef.d.mts +8 -0
  2507. package/extensions/third-party/node_modules/typebox/build/schema/types/recursiveRef.mjs +12 -0
  2508. package/extensions/third-party/node_modules/typebox/build/schema/types/ref.d.mts +9 -0
  2509. package/extensions/third-party/node_modules/typebox/build/schema/types/ref.mjs +13 -0
  2510. package/extensions/third-party/node_modules/typebox/build/schema/types/required.d.mts +9 -0
  2511. package/extensions/third-party/node_modules/typebox/build/schema/types/required.mjs +14 -0
  2512. package/extensions/third-party/node_modules/typebox/build/schema/types/schema.d.mts +9 -0
  2513. package/extensions/third-party/node_modules/typebox/build/schema/types/schema.mjs +14 -0
  2514. package/extensions/third-party/node_modules/typebox/build/schema/types/then.d.mts +9 -0
  2515. package/extensions/third-party/node_modules/typebox/build/schema/types/then.mjs +14 -0
  2516. package/extensions/third-party/node_modules/typebox/build/schema/types/type.d.mts +9 -0
  2517. package/extensions/third-party/node_modules/typebox/build/schema/types/type.mjs +15 -0
  2518. package/extensions/third-party/node_modules/typebox/build/schema/types/unevaluatedItems.d.mts +9 -0
  2519. package/extensions/third-party/node_modules/typebox/build/schema/types/unevaluatedItems.mjs +14 -0
  2520. package/extensions/third-party/node_modules/typebox/build/schema/types/unevaluatedProperties.d.mts +9 -0
  2521. package/extensions/third-party/node_modules/typebox/build/schema/types/unevaluatedProperties.mjs +14 -0
  2522. package/extensions/third-party/node_modules/typebox/build/schema/types/uniqueItems.d.mts +9 -0
  2523. package/extensions/third-party/node_modules/typebox/build/schema/types/uniqueItems.mjs +13 -0
  2524. package/extensions/third-party/node_modules/typebox/build/system/arguments/arguments.d.mts +5 -0
  2525. package/extensions/third-party/node_modules/typebox/build/system/arguments/arguments.mjs +9 -0
  2526. package/extensions/third-party/node_modules/typebox/build/system/arguments/index.d.mts +1 -0
  2527. package/extensions/third-party/node_modules/typebox/build/system/arguments/index.mjs +1 -0
  2528. package/extensions/third-party/node_modules/typebox/build/system/environment/environment.d.mts +1 -0
  2529. package/extensions/third-party/node_modules/typebox/build/system/environment/environment.mjs +1 -0
  2530. package/extensions/third-party/node_modules/typebox/build/system/environment/evaluate.d.mts +9 -0
  2531. package/extensions/third-party/node_modules/typebox/build/system/environment/evaluate.mjs +37 -0
  2532. package/extensions/third-party/node_modules/typebox/build/system/environment/index.d.mts +1 -0
  2533. package/extensions/third-party/node_modules/typebox/build/system/environment/index.mjs +1 -0
  2534. package/extensions/third-party/node_modules/typebox/build/system/hashing/hash.d.mts +4 -0
  2535. package/extensions/third-party/node_modules/typebox/build/system/hashing/hash.mjs +232 -0
  2536. package/extensions/third-party/node_modules/typebox/build/system/hashing/index.d.mts +1 -0
  2537. package/extensions/third-party/node_modules/typebox/build/system/hashing/index.mjs +1 -0
  2538. package/extensions/third-party/node_modules/typebox/build/system/index.d.mts +4 -0
  2539. package/extensions/third-party/node_modules/typebox/build/system/index.mjs +4 -0
  2540. package/extensions/third-party/node_modules/typebox/build/system/locale/_config.d.mts +7 -0
  2541. package/extensions/third-party/node_modules/typebox/build/system/locale/_config.mjs +15 -0
  2542. package/extensions/third-party/node_modules/typebox/build/system/locale/_locale.d.mts +40 -0
  2543. package/extensions/third-party/node_modules/typebox/build/system/locale/_locale.mjs +40 -0
  2544. package/extensions/third-party/node_modules/typebox/build/system/locale/ar_001.d.mts +3 -0
  2545. package/extensions/third-party/node_modules/typebox/build/system/locale/ar_001.mjs +41 -0
  2546. package/extensions/third-party/node_modules/typebox/build/system/locale/bn_BD.d.mts +3 -0
  2547. package/extensions/third-party/node_modules/typebox/build/system/locale/bn_BD.mjs +41 -0
  2548. package/extensions/third-party/node_modules/typebox/build/system/locale/cs_CZ.d.mts +3 -0
  2549. package/extensions/third-party/node_modules/typebox/build/system/locale/cs_CZ.mjs +41 -0
  2550. package/extensions/third-party/node_modules/typebox/build/system/locale/de_DE.d.mts +3 -0
  2551. package/extensions/third-party/node_modules/typebox/build/system/locale/de_DE.mjs +41 -0
  2552. package/extensions/third-party/node_modules/typebox/build/system/locale/el_GR.d.mts +3 -0
  2553. package/extensions/third-party/node_modules/typebox/build/system/locale/el_GR.mjs +41 -0
  2554. package/extensions/third-party/node_modules/typebox/build/system/locale/en_US.d.mts +3 -0
  2555. package/extensions/third-party/node_modules/typebox/build/system/locale/en_US.mjs +40 -0
  2556. package/extensions/third-party/node_modules/typebox/build/system/locale/es_419.d.mts +3 -0
  2557. package/extensions/third-party/node_modules/typebox/build/system/locale/es_419.mjs +41 -0
  2558. package/extensions/third-party/node_modules/typebox/build/system/locale/es_AR.d.mts +3 -0
  2559. package/extensions/third-party/node_modules/typebox/build/system/locale/es_AR.mjs +41 -0
  2560. package/extensions/third-party/node_modules/typebox/build/system/locale/es_ES.d.mts +3 -0
  2561. package/extensions/third-party/node_modules/typebox/build/system/locale/es_ES.mjs +41 -0
  2562. package/extensions/third-party/node_modules/typebox/build/system/locale/es_MX.d.mts +3 -0
  2563. package/extensions/third-party/node_modules/typebox/build/system/locale/es_MX.mjs +41 -0
  2564. package/extensions/third-party/node_modules/typebox/build/system/locale/fa_IR.d.mts +3 -0
  2565. package/extensions/third-party/node_modules/typebox/build/system/locale/fa_IR.mjs +41 -0
  2566. package/extensions/third-party/node_modules/typebox/build/system/locale/fil_PH.d.mts +3 -0
  2567. package/extensions/third-party/node_modules/typebox/build/system/locale/fil_PH.mjs +41 -0
  2568. package/extensions/third-party/node_modules/typebox/build/system/locale/fr_CA.d.mts +3 -0
  2569. package/extensions/third-party/node_modules/typebox/build/system/locale/fr_CA.mjs +41 -0
  2570. package/extensions/third-party/node_modules/typebox/build/system/locale/fr_FR.d.mts +3 -0
  2571. package/extensions/third-party/node_modules/typebox/build/system/locale/fr_FR.mjs +41 -0
  2572. package/extensions/third-party/node_modules/typebox/build/system/locale/ha_NG.d.mts +3 -0
  2573. package/extensions/third-party/node_modules/typebox/build/system/locale/ha_NG.mjs +41 -0
  2574. package/extensions/third-party/node_modules/typebox/build/system/locale/hi_IN.d.mts +3 -0
  2575. package/extensions/third-party/node_modules/typebox/build/system/locale/hi_IN.mjs +41 -0
  2576. package/extensions/third-party/node_modules/typebox/build/system/locale/hu_HU.d.mts +3 -0
  2577. package/extensions/third-party/node_modules/typebox/build/system/locale/hu_HU.mjs +41 -0
  2578. package/extensions/third-party/node_modules/typebox/build/system/locale/id_ID.d.mts +3 -0
  2579. package/extensions/third-party/node_modules/typebox/build/system/locale/id_ID.mjs +41 -0
  2580. package/extensions/third-party/node_modules/typebox/build/system/locale/index.d.mts +1 -0
  2581. package/extensions/third-party/node_modules/typebox/build/system/locale/index.mjs +1 -0
  2582. package/extensions/third-party/node_modules/typebox/build/system/locale/it_IT.d.mts +3 -0
  2583. package/extensions/third-party/node_modules/typebox/build/system/locale/it_IT.mjs +41 -0
  2584. package/extensions/third-party/node_modules/typebox/build/system/locale/ja_JP.d.mts +3 -0
  2585. package/extensions/third-party/node_modules/typebox/build/system/locale/ja_JP.mjs +41 -0
  2586. package/extensions/third-party/node_modules/typebox/build/system/locale/ko_KR.d.mts +3 -0
  2587. package/extensions/third-party/node_modules/typebox/build/system/locale/ko_KR.mjs +41 -0
  2588. package/extensions/third-party/node_modules/typebox/build/system/locale/ms_MY.d.mts +3 -0
  2589. package/extensions/third-party/node_modules/typebox/build/system/locale/ms_MY.mjs +41 -0
  2590. package/extensions/third-party/node_modules/typebox/build/system/locale/nl_NL.d.mts +3 -0
  2591. package/extensions/third-party/node_modules/typebox/build/system/locale/nl_NL.mjs +41 -0
  2592. package/extensions/third-party/node_modules/typebox/build/system/locale/pl_PL.d.mts +3 -0
  2593. package/extensions/third-party/node_modules/typebox/build/system/locale/pl_PL.mjs +41 -0
  2594. package/extensions/third-party/node_modules/typebox/build/system/locale/pt_BR.d.mts +3 -0
  2595. package/extensions/third-party/node_modules/typebox/build/system/locale/pt_BR.mjs +41 -0
  2596. package/extensions/third-party/node_modules/typebox/build/system/locale/pt_PT.d.mts +3 -0
  2597. package/extensions/third-party/node_modules/typebox/build/system/locale/pt_PT.mjs +41 -0
  2598. package/extensions/third-party/node_modules/typebox/build/system/locale/ro_RO.d.mts +3 -0
  2599. package/extensions/third-party/node_modules/typebox/build/system/locale/ro_RO.mjs +41 -0
  2600. package/extensions/third-party/node_modules/typebox/build/system/locale/ru_RU.d.mts +3 -0
  2601. package/extensions/third-party/node_modules/typebox/build/system/locale/ru_RU.mjs +41 -0
  2602. package/extensions/third-party/node_modules/typebox/build/system/locale/sv_SE.d.mts +3 -0
  2603. package/extensions/third-party/node_modules/typebox/build/system/locale/sv_SE.mjs +41 -0
  2604. package/extensions/third-party/node_modules/typebox/build/system/locale/sw_TZ.d.mts +3 -0
  2605. package/extensions/third-party/node_modules/typebox/build/system/locale/sw_TZ.mjs +41 -0
  2606. package/extensions/third-party/node_modules/typebox/build/system/locale/th_TH.d.mts +3 -0
  2607. package/extensions/third-party/node_modules/typebox/build/system/locale/th_TH.mjs +41 -0
  2608. package/extensions/third-party/node_modules/typebox/build/system/locale/tr_TR.d.mts +3 -0
  2609. package/extensions/third-party/node_modules/typebox/build/system/locale/tr_TR.mjs +41 -0
  2610. package/extensions/third-party/node_modules/typebox/build/system/locale/uk_UA.d.mts +3 -0
  2611. package/extensions/third-party/node_modules/typebox/build/system/locale/uk_UA.mjs +41 -0
  2612. package/extensions/third-party/node_modules/typebox/build/system/locale/ur_PK.d.mts +3 -0
  2613. package/extensions/third-party/node_modules/typebox/build/system/locale/ur_PK.mjs +41 -0
  2614. package/extensions/third-party/node_modules/typebox/build/system/locale/vi_VN.d.mts +3 -0
  2615. package/extensions/third-party/node_modules/typebox/build/system/locale/vi_VN.mjs +41 -0
  2616. package/extensions/third-party/node_modules/typebox/build/system/locale/yo_NG.d.mts +3 -0
  2617. package/extensions/third-party/node_modules/typebox/build/system/locale/yo_NG.mjs +41 -0
  2618. package/extensions/third-party/node_modules/typebox/build/system/locale/zh_Hans.d.mts +3 -0
  2619. package/extensions/third-party/node_modules/typebox/build/system/locale/zh_Hans.mjs +41 -0
  2620. package/extensions/third-party/node_modules/typebox/build/system/locale/zh_Hant.d.mts +3 -0
  2621. package/extensions/third-party/node_modules/typebox/build/system/locale/zh_Hant.mjs +41 -0
  2622. package/extensions/third-party/node_modules/typebox/build/system/memory/assign.d.mts +14 -0
  2623. package/extensions/third-party/node_modules/typebox/build/system/memory/assign.mjs +11 -0
  2624. package/extensions/third-party/node_modules/typebox/build/system/memory/clone.d.mts +6 -0
  2625. package/extensions/third-party/node_modules/typebox/build/system/memory/clone.mjs +63 -0
  2626. package/extensions/third-party/node_modules/typebox/build/system/memory/create.d.mts +8 -0
  2627. package/extensions/third-party/node_modules/typebox/build/system/memory/create.mjs +30 -0
  2628. package/extensions/third-party/node_modules/typebox/build/system/memory/discard.d.mts +4 -0
  2629. package/extensions/third-party/node_modules/typebox/build/system/memory/discard.mjs +17 -0
  2630. package/extensions/third-party/node_modules/typebox/build/system/memory/index.d.mts +1 -0
  2631. package/extensions/third-party/node_modules/typebox/build/system/memory/index.mjs +1 -0
  2632. package/extensions/third-party/node_modules/typebox/build/system/memory/memory.d.mts +6 -0
  2633. package/extensions/third-party/node_modules/typebox/build/system/memory/memory.mjs +7 -0
  2634. package/extensions/third-party/node_modules/typebox/build/system/memory/metrics.d.mts +14 -0
  2635. package/extensions/third-party/node_modules/typebox/build/system/memory/metrics.mjs +8 -0
  2636. package/extensions/third-party/node_modules/typebox/build/system/memory/update.d.mts +7 -0
  2637. package/extensions/third-party/node_modules/typebox/build/system/memory/update.mjs +32 -0
  2638. package/extensions/third-party/node_modules/typebox/build/system/settings/index.d.mts +1 -0
  2639. package/extensions/third-party/node_modules/typebox/build/system/settings/index.mjs +1 -0
  2640. package/extensions/third-party/node_modules/typebox/build/system/settings/settings.d.mts +56 -0
  2641. package/extensions/third-party/node_modules/typebox/build/system/settings/settings.mjs +32 -0
  2642. package/extensions/third-party/node_modules/typebox/build/system/system.d.mts +6 -0
  2643. package/extensions/third-party/node_modules/typebox/build/system/system.mjs +6 -0
  2644. package/extensions/third-party/node_modules/typebox/build/system/unreachable/index.d.mts +1 -0
  2645. package/extensions/third-party/node_modules/typebox/build/system/unreachable/index.mjs +1 -0
  2646. package/extensions/third-party/node_modules/typebox/build/system/unreachable/unreachable.d.mts +3 -0
  2647. package/extensions/third-party/node_modules/typebox/build/system/unreachable/unreachable.mjs +6 -0
  2648. package/extensions/third-party/node_modules/typebox/build/type/action/_optional.d.mts +19 -0
  2649. package/extensions/third-party/node_modules/typebox/build/type/action/_optional.mjs +40 -0
  2650. package/extensions/third-party/node_modules/typebox/build/type/action/_readonly.d.mts +19 -0
  2651. package/extensions/third-party/node_modules/typebox/build/type/action/_readonly.mjs +40 -0
  2652. package/extensions/third-party/node_modules/typebox/build/type/action/awaited.d.mts +15 -0
  2653. package/extensions/third-party/node_modules/typebox/build/type/action/awaited.mjs +15 -0
  2654. package/extensions/third-party/node_modules/typebox/build/type/action/capitalize.d.mts +11 -0
  2655. package/extensions/third-party/node_modules/typebox/build/type/action/capitalize.mjs +11 -0
  2656. package/extensions/third-party/node_modules/typebox/build/type/action/conditional.d.mts +13 -0
  2657. package/extensions/third-party/node_modules/typebox/build/type/action/conditional.mjs +12 -0
  2658. package/extensions/third-party/node_modules/typebox/build/type/action/constructor_parameters.d.mts +11 -0
  2659. package/extensions/third-party/node_modules/typebox/build/type/action/constructor_parameters.mjs +11 -0
  2660. package/extensions/third-party/node_modules/typebox/build/type/action/evaluate.d.mts +11 -0
  2661. package/extensions/third-party/node_modules/typebox/build/type/action/evaluate.mjs +11 -0
  2662. package/extensions/third-party/node_modules/typebox/build/type/action/exclude.d.mts +11 -0
  2663. package/extensions/third-party/node_modules/typebox/build/type/action/exclude.mjs +11 -0
  2664. package/extensions/third-party/node_modules/typebox/build/type/action/extract.d.mts +11 -0
  2665. package/extensions/third-party/node_modules/typebox/build/type/action/extract.mjs +11 -0
  2666. package/extensions/third-party/node_modules/typebox/build/type/action/index.d.mts +27 -0
  2667. package/extensions/third-party/node_modules/typebox/build/type/action/index.mjs +27 -0
  2668. package/extensions/third-party/node_modules/typebox/build/type/action/indexed.d.mts +14 -0
  2669. package/extensions/third-party/node_modules/typebox/build/type/action/indexed.mjs +14 -0
  2670. package/extensions/third-party/node_modules/typebox/build/type/action/instance_type.d.mts +11 -0
  2671. package/extensions/third-party/node_modules/typebox/build/type/action/instance_type.mjs +11 -0
  2672. package/extensions/third-party/node_modules/typebox/build/type/action/interface.d.mts +14 -0
  2673. package/extensions/third-party/node_modules/typebox/build/type/action/interface.mjs +22 -0
  2674. package/extensions/third-party/node_modules/typebox/build/type/action/keyof.d.mts +11 -0
  2675. package/extensions/third-party/node_modules/typebox/build/type/action/keyof.mjs +11 -0
  2676. package/extensions/third-party/node_modules/typebox/build/type/action/lowercase.d.mts +11 -0
  2677. package/extensions/third-party/node_modules/typebox/build/type/action/lowercase.mjs +11 -0
  2678. package/extensions/third-party/node_modules/typebox/build/type/action/mapped.d.mts +14 -0
  2679. package/extensions/third-party/node_modules/typebox/build/type/action/mapped.mjs +12 -0
  2680. package/extensions/third-party/node_modules/typebox/build/type/action/module.d.mts +12 -0
  2681. package/extensions/third-party/node_modules/typebox/build/type/action/module.mjs +12 -0
  2682. package/extensions/third-party/node_modules/typebox/build/type/action/non_nullable.d.mts +11 -0
  2683. package/extensions/third-party/node_modules/typebox/build/type/action/non_nullable.mjs +11 -0
  2684. package/extensions/third-party/node_modules/typebox/build/type/action/omit.d.mts +14 -0
  2685. package/extensions/third-party/node_modules/typebox/build/type/action/omit.mjs +14 -0
  2686. package/extensions/third-party/node_modules/typebox/build/type/action/options.d.mts +11 -0
  2687. package/extensions/third-party/node_modules/typebox/build/type/action/options.mjs +11 -0
  2688. package/extensions/third-party/node_modules/typebox/build/type/action/parameters.d.mts +11 -0
  2689. package/extensions/third-party/node_modules/typebox/build/type/action/parameters.mjs +11 -0
  2690. package/extensions/third-party/node_modules/typebox/build/type/action/partial.d.mts +11 -0
  2691. package/extensions/third-party/node_modules/typebox/build/type/action/partial.mjs +11 -0
  2692. package/extensions/third-party/node_modules/typebox/build/type/action/pick.d.mts +14 -0
  2693. package/extensions/third-party/node_modules/typebox/build/type/action/pick.mjs +14 -0
  2694. package/extensions/third-party/node_modules/typebox/build/type/action/readonly_object.d.mts +16 -0
  2695. package/extensions/third-party/node_modules/typebox/build/type/action/readonly_object.mjs +16 -0
  2696. package/extensions/third-party/node_modules/typebox/build/type/action/required.d.mts +11 -0
  2697. package/extensions/third-party/node_modules/typebox/build/type/action/required.mjs +11 -0
  2698. package/extensions/third-party/node_modules/typebox/build/type/action/return_type.d.mts +11 -0
  2699. package/extensions/third-party/node_modules/typebox/build/type/action/return_type.mjs +11 -0
  2700. package/extensions/third-party/node_modules/typebox/build/type/action/uncapitalize.d.mts +11 -0
  2701. package/extensions/third-party/node_modules/typebox/build/type/action/uncapitalize.mjs +11 -0
  2702. package/extensions/third-party/node_modules/typebox/build/type/action/uppercase.d.mts +11 -0
  2703. package/extensions/third-party/node_modules/typebox/build/type/action/uppercase.mjs +11 -0
  2704. package/extensions/third-party/node_modules/typebox/build/type/engine/awaited/index.d.mts +1 -0
  2705. package/extensions/third-party/node_modules/typebox/build/type/engine/awaited/index.mjs +1 -0
  2706. package/extensions/third-party/node_modules/typebox/build/type/engine/awaited/instantiate.d.mts +11 -0
  2707. package/extensions/third-party/node_modules/typebox/build/type/engine/awaited/instantiate.mjs +20 -0
  2708. package/extensions/third-party/node_modules/typebox/build/type/engine/call/distribute_arguments.d.mts +15 -0
  2709. package/extensions/third-party/node_modules/typebox/build/type/engine/call/distribute_arguments.mjs +53 -0
  2710. package/extensions/third-party/node_modules/typebox/build/type/engine/call/instantiate.d.mts +23 -0
  2711. package/extensions/third-party/node_modules/typebox/build/type/engine/call/instantiate.mjs +48 -0
  2712. package/extensions/third-party/node_modules/typebox/build/type/engine/call/resolve_arguments.d.mts +13 -0
  2713. package/extensions/third-party/node_modules/typebox/build/type/engine/call/resolve_arguments.mjs +33 -0
  2714. package/extensions/third-party/node_modules/typebox/build/type/engine/call/resolve_target.d.mts +25 -0
  2715. package/extensions/third-party/node_modules/typebox/build/type/engine/call/resolve_target.mjs +27 -0
  2716. package/extensions/third-party/node_modules/typebox/build/type/engine/conditional/index.d.mts +1 -0
  2717. package/extensions/third-party/node_modules/typebox/build/type/engine/conditional/index.mjs +1 -0
  2718. package/extensions/third-party/node_modules/typebox/build/type/engine/conditional/instantiate.d.mts +12 -0
  2719. package/extensions/third-party/node_modules/typebox/build/type/engine/conditional/instantiate.mjs +23 -0
  2720. package/extensions/third-party/node_modules/typebox/build/type/engine/constructor_parameters/index.d.mts +1 -0
  2721. package/extensions/third-party/node_modules/typebox/build/type/engine/constructor_parameters/index.mjs +1 -0
  2722. package/extensions/third-party/node_modules/typebox/build/type/engine/constructor_parameters/instantiate.d.mts +15 -0
  2723. package/extensions/third-party/node_modules/typebox/build/type/engine/constructor_parameters/instantiate.mjs +24 -0
  2724. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/candidates.d.mts +9 -0
  2725. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/candidates.mjs +19 -0
  2726. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/check.d.mts +24 -0
  2727. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/check.mjs +51 -0
  2728. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/dependencies.d.mts +25 -0
  2729. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/dependencies.mjs +53 -0
  2730. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/extends.d.mts +31 -0
  2731. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/extends.mjs +53 -0
  2732. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/index.d.mts +6 -0
  2733. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/index.mjs +6 -0
  2734. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/instantiate.d.mts +20 -0
  2735. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/instantiate.mjs +30 -0
  2736. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/target.d.mts +10 -0
  2737. package/extensions/third-party/node_modules/typebox/build/type/engine/cyclic/target.mjs +16 -0
  2738. package/extensions/third-party/node_modules/typebox/build/type/engine/enum/enum_to_union.d.mts +14 -0
  2739. package/extensions/third-party/node_modules/typebox/build/type/engine/enum/enum_to_union.mjs +24 -0
  2740. package/extensions/third-party/node_modules/typebox/build/type/engine/enum/index.d.mts +2 -0
  2741. package/extensions/third-party/node_modules/typebox/build/type/engine/enum/index.mjs +2 -0
  2742. package/extensions/third-party/node_modules/typebox/build/type/engine/enum/typescript_enum_to_enum_values.d.mts +8 -0
  2743. package/extensions/third-party/node_modules/typebox/build/type/engine/enum/typescript_enum_to_enum_values.mjs +9 -0
  2744. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/broaden.d.mts +16 -0
  2745. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/broaden.mjs +47 -0
  2746. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/compare.d.mts +15 -0
  2747. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/compare.mjs +22 -0
  2748. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/composite.d.mts +30 -0
  2749. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/composite.mjs +63 -0
  2750. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/distribute.d.mts +27 -0
  2751. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/distribute.mjs +45 -0
  2752. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/evaluate.d.mts +14 -0
  2753. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/evaluate.mjs +27 -0
  2754. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/flatten.d.mts +6 -0
  2755. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/flatten.mjs +11 -0
  2756. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/index.d.mts +8 -0
  2757. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/index.mjs +8 -0
  2758. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/instantiate.d.mts +8 -0
  2759. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/instantiate.mjs +12 -0
  2760. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/narrow.d.mts +5 -0
  2761. package/extensions/third-party/node_modules/typebox/build/type/engine/evaluate/narrow.mjs +11 -0
  2762. package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/index.d.mts +1 -0
  2763. package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/index.mjs +1 -0
  2764. package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/instantiate.d.mts +9 -0
  2765. package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/instantiate.mjs +16 -0
  2766. package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/operation.d.mts +11 -0
  2767. package/extensions/third-party/node_modules/typebox/build/type/engine/exclude/operation.mjs +24 -0
  2768. package/extensions/third-party/node_modules/typebox/build/type/engine/extract/index.d.mts +1 -0
  2769. package/extensions/third-party/node_modules/typebox/build/type/engine/extract/index.mjs +1 -0
  2770. package/extensions/third-party/node_modules/typebox/build/type/engine/extract/instantiate.d.mts +9 -0
  2771. package/extensions/third-party/node_modules/typebox/build/type/engine/extract/instantiate.mjs +16 -0
  2772. package/extensions/third-party/node_modules/typebox/build/type/engine/extract/operation.d.mts +11 -0
  2773. package/extensions/third-party/node_modules/typebox/build/type/engine/extract/operation.mjs +24 -0
  2774. package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/index.d.mts +3 -0
  2775. package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/index.mjs +3 -0
  2776. package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/keys.d.mts +3 -0
  2777. package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/keys.mjs +8 -0
  2778. package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/keys_to_indexer.d.mts +7 -0
  2779. package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/keys_to_indexer.mjs +15 -0
  2780. package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/union.d.mts +7 -0
  2781. package/extensions/third-party/node_modules/typebox/build/type/engine/helpers/union.mjs +3 -0
  2782. package/extensions/third-party/node_modules/typebox/build/type/engine/index.d.mts +31 -0
  2783. package/extensions/third-party/node_modules/typebox/build/type/engine/index.mjs +37 -0
  2784. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_cyclic.d.mts +6 -0
  2785. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_cyclic.mjs +8 -0
  2786. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_enum.d.mts +6 -0
  2787. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_enum.mjs +8 -0
  2788. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_intersect.d.mts +5 -0
  2789. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_intersect.mjs +8 -0
  2790. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_literal.d.mts +3 -0
  2791. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_literal.mjs +5 -0
  2792. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_template_literal.d.mts +5 -0
  2793. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_template_literal.mjs +8 -0
  2794. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_type.d.mts +17 -0
  2795. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_type.mjs +22 -0
  2796. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_union.d.mts +4 -0
  2797. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/from_union.mjs +7 -0
  2798. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/to_indexable.d.mts +9 -0
  2799. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/to_indexable.mjs +14 -0
  2800. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/to_indexable_keys.d.mts +10 -0
  2801. package/extensions/third-party/node_modules/typebox/build/type/engine/indexable/to_indexable_keys.mjs +12 -0
  2802. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/array_indexer.d.mts +12 -0
  2803. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/array_indexer.mjs +18 -0
  2804. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_array.d.mts +15 -0
  2805. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_array.mjs +35 -0
  2806. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_object.d.mts +16 -0
  2807. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_object.mjs +40 -0
  2808. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_tuple.d.mts +13 -0
  2809. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_tuple.mjs +35 -0
  2810. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_type.d.mts +11 -0
  2811. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/from_type.mjs +14 -0
  2812. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/index.d.mts +1 -0
  2813. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/index.mjs +1 -0
  2814. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/instantiate.d.mts +15 -0
  2815. package/extensions/third-party/node_modules/typebox/build/type/engine/indexed/instantiate.mjs +25 -0
  2816. package/extensions/third-party/node_modules/typebox/build/type/engine/instance_type/index.d.mts +1 -0
  2817. package/extensions/third-party/node_modules/typebox/build/type/engine/instance_type/index.mjs +1 -0
  2818. package/extensions/third-party/node_modules/typebox/build/type/engine/instance_type/instantiate.d.mts +12 -0
  2819. package/extensions/third-party/node_modules/typebox/build/type/engine/instance_type/instantiate.mjs +21 -0
  2820. package/extensions/third-party/node_modules/typebox/build/type/engine/instantiate.d.mts +165 -0
  2821. package/extensions/third-party/node_modules/typebox/build/type/engine/instantiate.mjs +159 -0
  2822. package/extensions/third-party/node_modules/typebox/build/type/engine/interface/index.d.mts +1 -0
  2823. package/extensions/third-party/node_modules/typebox/build/type/engine/interface/index.mjs +1 -0
  2824. package/extensions/third-party/node_modules/typebox/build/type/engine/interface/instantiate.d.mts +18 -0
  2825. package/extensions/third-party/node_modules/typebox/build/type/engine/interface/instantiate.mjs +23 -0
  2826. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_literal.d.mts +5 -0
  2827. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_literal.mjs +9 -0
  2828. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_template_literal.d.mts +6 -0
  2829. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_template_literal.mjs +8 -0
  2830. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_type.d.mts +10 -0
  2831. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_type.mjs +13 -0
  2832. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_union.d.mts +6 -0
  2833. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/from_union.mjs +7 -0
  2834. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/index.d.mts +1 -0
  2835. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/index.mjs +1 -0
  2836. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/instantiate.d.mts +38 -0
  2837. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/instantiate.mjs +52 -0
  2838. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/mapping.d.mts +9 -0
  2839. package/extensions/third-party/node_modules/typebox/build/type/engine/intrinsics/mapping.mjs +4 -0
  2840. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_any.d.mts +6 -0
  2841. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_any.mjs +8 -0
  2842. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_array.d.mts +4 -0
  2843. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_array.mjs +5 -0
  2844. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_object.d.mts +10 -0
  2845. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_object.mjs +20 -0
  2846. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_record.d.mts +4 -0
  2847. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_record.mjs +5 -0
  2848. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_tuple.d.mts +5 -0
  2849. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_tuple.mjs +7 -0
  2850. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_type.d.mts +15 -0
  2851. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/from_type.mjs +23 -0
  2852. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/index.d.mts +1 -0
  2853. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/index.mjs +1 -0
  2854. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/instantiate.d.mts +15 -0
  2855. package/extensions/third-party/node_modules/typebox/build/type/engine/keyof/instantiate.mjs +25 -0
  2856. package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/index.d.mts +1 -0
  2857. package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/index.mjs +1 -0
  2858. package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/instantiate.d.mts +10 -0
  2859. package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/instantiate.mjs +15 -0
  2860. package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/mapped_operation.d.mts +22 -0
  2861. package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/mapped_operation.mjs +42 -0
  2862. package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/mapped_variants.d.mts +16 -0
  2863. package/extensions/third-party/node_modules/typebox/build/type/engine/mapped/mapped_variants.mjs +34 -0
  2864. package/extensions/third-party/node_modules/typebox/build/type/engine/module/index.d.mts +1 -0
  2865. package/extensions/third-party/node_modules/typebox/build/type/engine/module/index.mjs +1 -0
  2866. package/extensions/third-party/node_modules/typebox/build/type/engine/module/instantiate.d.mts +21 -0
  2867. package/extensions/third-party/node_modules/typebox/build/type/engine/module/instantiate.mjs +34 -0
  2868. package/extensions/third-party/node_modules/typebox/build/type/engine/non_nullable/index.d.mts +1 -0
  2869. package/extensions/third-party/node_modules/typebox/build/type/engine/non_nullable/index.mjs +1 -0
  2870. package/extensions/third-party/node_modules/typebox/build/type/engine/non_nullable/instantiate.d.mts +14 -0
  2871. package/extensions/third-party/node_modules/typebox/build/type/engine/non_nullable/instantiate.mjs +22 -0
  2872. package/extensions/third-party/node_modules/typebox/build/type/engine/object/collapse.d.mts +12 -0
  2873. package/extensions/third-party/node_modules/typebox/build/type/engine/object/collapse.mjs +14 -0
  2874. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_cyclic.d.mts +6 -0
  2875. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_cyclic.mjs +8 -0
  2876. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_intersect.d.mts +17 -0
  2877. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_intersect.mjs +22 -0
  2878. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_object.d.mts +3 -0
  2879. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_object.mjs +4 -0
  2880. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_tuple.d.mts +6 -0
  2881. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_tuple.mjs +9 -0
  2882. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_type.d.mts +14 -0
  2883. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_type.mjs +20 -0
  2884. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_union.d.mts +12 -0
  2885. package/extensions/third-party/node_modules/typebox/build/type/engine/object/from_union.mjs +19 -0
  2886. package/extensions/third-party/node_modules/typebox/build/type/engine/object/index.d.mts +1 -0
  2887. package/extensions/third-party/node_modules/typebox/build/type/engine/object/index.mjs +1 -0
  2888. package/extensions/third-party/node_modules/typebox/build/type/engine/omit/from_type.d.mts +12 -0
  2889. package/extensions/third-party/node_modules/typebox/build/type/engine/omit/from_type.mjs +18 -0
  2890. package/extensions/third-party/node_modules/typebox/build/type/engine/omit/index.d.mts +1 -0
  2891. package/extensions/third-party/node_modules/typebox/build/type/engine/omit/index.mjs +1 -0
  2892. package/extensions/third-party/node_modules/typebox/build/type/engine/omit/instantiate.d.mts +9 -0
  2893. package/extensions/third-party/node_modules/typebox/build/type/engine/omit/instantiate.mjs +16 -0
  2894. package/extensions/third-party/node_modules/typebox/build/type/engine/options/index.d.mts +1 -0
  2895. package/extensions/third-party/node_modules/typebox/build/type/engine/options/index.mjs +1 -0
  2896. package/extensions/third-party/node_modules/typebox/build/type/engine/options/instantiate.d.mts +8 -0
  2897. package/extensions/third-party/node_modules/typebox/build/type/engine/options/instantiate.mjs +14 -0
  2898. package/extensions/third-party/node_modules/typebox/build/type/engine/parameters/index.d.mts +1 -0
  2899. package/extensions/third-party/node_modules/typebox/build/type/engine/parameters/index.mjs +1 -0
  2900. package/extensions/third-party/node_modules/typebox/build/type/engine/parameters/instantiate.d.mts +15 -0
  2901. package/extensions/third-party/node_modules/typebox/build/type/engine/parameters/instantiate.mjs +24 -0
  2902. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_cyclic.d.mts +10 -0
  2903. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_cyclic.mjs +11 -0
  2904. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_intersect.d.mts +5 -0
  2905. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_intersect.mjs +7 -0
  2906. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_object.d.mts +8 -0
  2907. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_object.mjs +11 -0
  2908. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_type.d.mts +12 -0
  2909. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_type.mjs +17 -0
  2910. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_union.d.mts +5 -0
  2911. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/from_union.mjs +7 -0
  2912. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/index.d.mts +1 -0
  2913. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/index.mjs +1 -0
  2914. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/instantiate.d.mts +9 -0
  2915. package/extensions/third-party/node_modules/typebox/build/type/engine/partial/instantiate.mjs +15 -0
  2916. package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/index.d.mts +2 -0
  2917. package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/index.mjs +2 -0
  2918. package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/pattern.d.mts +6 -0
  2919. package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/pattern.mjs +11 -0
  2920. package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/template.d.mts +7 -0
  2921. package/extensions/third-party/node_modules/typebox/build/type/engine/patterns/template.mjs +20 -0
  2922. package/extensions/third-party/node_modules/typebox/build/type/engine/pick/from_type.d.mts +13 -0
  2923. package/extensions/third-party/node_modules/typebox/build/type/engine/pick/from_type.mjs +20 -0
  2924. package/extensions/third-party/node_modules/typebox/build/type/engine/pick/index.d.mts +1 -0
  2925. package/extensions/third-party/node_modules/typebox/build/type/engine/pick/index.mjs +1 -0
  2926. package/extensions/third-party/node_modules/typebox/build/type/engine/pick/instantiate.d.mts +9 -0
  2927. package/extensions/third-party/node_modules/typebox/build/type/engine/pick/instantiate.mjs +16 -0
  2928. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_array.d.mts +5 -0
  2929. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_array.mjs +7 -0
  2930. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_cyclic.d.mts +10 -0
  2931. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_cyclic.mjs +11 -0
  2932. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_intersect.d.mts +5 -0
  2933. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_intersect.mjs +7 -0
  2934. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_object.d.mts +8 -0
  2935. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_object.mjs +11 -0
  2936. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_tuple.d.mts +5 -0
  2937. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_tuple.mjs +7 -0
  2938. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_type.d.mts +16 -0
  2939. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_type.mjs +22 -0
  2940. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_union.d.mts +5 -0
  2941. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/from_union.mjs +7 -0
  2942. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/index.d.mts +1 -0
  2943. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/index.mjs +1 -0
  2944. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/instantiate.d.mts +9 -0
  2945. package/extensions/third-party/node_modules/typebox/build/type/engine/readonly_object/instantiate.mjs +15 -0
  2946. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key.d.mts +24 -0
  2947. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key.mjs +40 -0
  2948. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_any.d.mts +4 -0
  2949. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_any.mjs +6 -0
  2950. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_boolean.d.mts +7 -0
  2951. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_boolean.mjs +5 -0
  2952. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_enum.d.mts +6 -0
  2953. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_enum.mjs +8 -0
  2954. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_integer.d.mts +5 -0
  2955. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_integer.mjs +7 -0
  2956. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_intersect.d.mts +5 -0
  2957. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_intersect.mjs +8 -0
  2958. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_literal.d.mts +11 -0
  2959. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_literal.mjs +10 -0
  2960. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_number.d.mts +5 -0
  2961. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_number.mjs +7 -0
  2962. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_string.d.mts +5 -0
  2963. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_string.mjs +12 -0
  2964. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_template_literal.d.mts +8 -0
  2965. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_template_literal.mjs +12 -0
  2966. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_union.d.mts +20 -0
  2967. package/extensions/third-party/node_modules/typebox/build/type/engine/record/from_key_union.mjs +39 -0
  2968. package/extensions/third-party/node_modules/typebox/build/type/engine/record/index.d.mts +1 -0
  2969. package/extensions/third-party/node_modules/typebox/build/type/engine/record/index.mjs +1 -0
  2970. package/extensions/third-party/node_modules/typebox/build/type/engine/record/instantiate.d.mts +9 -0
  2971. package/extensions/third-party/node_modules/typebox/build/type/engine/record/instantiate.mjs +17 -0
  2972. package/extensions/third-party/node_modules/typebox/build/type/engine/record/record_create.d.mts +3 -0
  2973. package/extensions/third-party/node_modules/typebox/build/type/engine/record/record_create.mjs +7 -0
  2974. package/extensions/third-party/node_modules/typebox/build/type/engine/ref/index.d.mts +1 -0
  2975. package/extensions/third-party/node_modules/typebox/build/type/engine/ref/index.mjs +1 -0
  2976. package/extensions/third-party/node_modules/typebox/build/type/engine/ref/instantiate.d.mts +6 -0
  2977. package/extensions/third-party/node_modules/typebox/build/type/engine/ref/instantiate.mjs +10 -0
  2978. package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_cyclic.d.mts +10 -0
  2979. package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_cyclic.mjs +11 -0
  2980. package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_intersect.d.mts +5 -0
  2981. package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_intersect.mjs +7 -0
  2982. package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_object.d.mts +8 -0
  2983. package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_object.mjs +11 -0
  2984. package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_type.d.mts +12 -0
  2985. package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_type.mjs +17 -0
  2986. package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_union.d.mts +5 -0
  2987. package/extensions/third-party/node_modules/typebox/build/type/engine/required/from_union.mjs +7 -0
  2988. package/extensions/third-party/node_modules/typebox/build/type/engine/required/index.d.mts +1 -0
  2989. package/extensions/third-party/node_modules/typebox/build/type/engine/required/index.mjs +1 -0
  2990. package/extensions/third-party/node_modules/typebox/build/type/engine/required/instantiate.d.mts +9 -0
  2991. package/extensions/third-party/node_modules/typebox/build/type/engine/required/instantiate.mjs +15 -0
  2992. package/extensions/third-party/node_modules/typebox/build/type/engine/rest/index.d.mts +1 -0
  2993. package/extensions/third-party/node_modules/typebox/build/type/engine/rest/index.mjs +1 -0
  2994. package/extensions/third-party/node_modules/typebox/build/type/engine/rest/spread.d.mts +12 -0
  2995. package/extensions/third-party/node_modules/typebox/build/type/engine/rest/spread.mjs +19 -0
  2996. package/extensions/third-party/node_modules/typebox/build/type/engine/return_type/index.d.mts +1 -0
  2997. package/extensions/third-party/node_modules/typebox/build/type/engine/return_type/index.mjs +1 -0
  2998. package/extensions/third-party/node_modules/typebox/build/type/engine/return_type/instantiate.d.mts +12 -0
  2999. package/extensions/third-party/node_modules/typebox/build/type/engine/return_type/instantiate.mjs +21 -0
  3000. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/create.d.mts +1 -0
  3001. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/create.mjs +5 -0
  3002. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/decode.d.mts +30 -0
  3003. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/decode.mjs +81 -0
  3004. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/encode.d.mts +33 -0
  3005. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/encode.mjs +81 -0
  3006. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/index.d.mts +6 -0
  3007. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/index.mjs +6 -0
  3008. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/instantiate.d.mts +9 -0
  3009. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/instantiate.mjs +15 -0
  3010. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/is_finite.d.mts +12 -0
  3011. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/is_finite.mjs +26 -0
  3012. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/is_pattern.d.mts +6 -0
  3013. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/is_pattern.mjs +9 -0
  3014. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/static.d.mts +18 -0
  3015. package/extensions/third-party/node_modules/typebox/build/type/engine/template_literal/static.mjs +2 -0
  3016. package/extensions/third-party/node_modules/typebox/build/type/engine/this/expand_this.d.mts +19 -0
  3017. package/extensions/third-party/node_modules/typebox/build/type/engine/this/expand_this.mjs +32 -0
  3018. package/extensions/third-party/node_modules/typebox/build/type/engine/tuple/to_object.d.mts +12 -0
  3019. package/extensions/third-party/node_modules/typebox/build/type/engine/tuple/to_object.mjs +14 -0
  3020. package/extensions/third-party/node_modules/typebox/build/type/extends/any.d.mts +9 -0
  3021. package/extensions/third-party/node_modules/typebox/build/type/extends/any.mjs +12 -0
  3022. package/extensions/third-party/node_modules/typebox/build/type/extends/array.d.mts +20 -0
  3023. package/extensions/third-party/node_modules/typebox/build/type/extends/array.mjs +21 -0
  3024. package/extensions/third-party/node_modules/typebox/build/type/extends/async_iterator.d.mts +7 -0
  3025. package/extensions/third-party/node_modules/typebox/build/type/extends/async_iterator.mjs +9 -0
  3026. package/extensions/third-party/node_modules/typebox/build/type/extends/bigint.d.mts +7 -0
  3027. package/extensions/third-party/node_modules/typebox/build/type/extends/bigint.mjs +9 -0
  3028. package/extensions/third-party/node_modules/typebox/build/type/extends/boolean.d.mts +7 -0
  3029. package/extensions/third-party/node_modules/typebox/build/type/extends/boolean.mjs +9 -0
  3030. package/extensions/third-party/node_modules/typebox/build/type/extends/constructor.d.mts +10 -0
  3031. package/extensions/third-party/node_modules/typebox/build/type/extends/constructor.mjs +17 -0
  3032. package/extensions/third-party/node_modules/typebox/build/type/extends/enum.d.mts +7 -0
  3033. package/extensions/third-party/node_modules/typebox/build/type/extends/enum.mjs +6 -0
  3034. package/extensions/third-party/node_modules/typebox/build/type/extends/extends.d.mts +13 -0
  3035. package/extensions/third-party/node_modules/typebox/build/type/extends/extends.mjs +17 -0
  3036. package/extensions/third-party/node_modules/typebox/build/type/extends/extends_left.d.mts +55 -0
  3037. package/extensions/third-party/node_modules/typebox/build/type/extends/extends_left.mjs +83 -0
  3038. package/extensions/third-party/node_modules/typebox/build/type/extends/extends_right.d.mts +25 -0
  3039. package/extensions/third-party/node_modules/typebox/build/type/extends/extends_right.mjs +44 -0
  3040. package/extensions/third-party/node_modules/typebox/build/type/extends/function.d.mts +10 -0
  3041. package/extensions/third-party/node_modules/typebox/build/type/extends/function.mjs +17 -0
  3042. package/extensions/third-party/node_modules/typebox/build/type/extends/index.d.mts +2 -0
  3043. package/extensions/third-party/node_modules/typebox/build/type/extends/index.mjs +2 -0
  3044. package/extensions/third-party/node_modules/typebox/build/type/extends/inference.d.mts +34 -0
  3045. package/extensions/third-party/node_modules/typebox/build/type/extends/inference.mjs +62 -0
  3046. package/extensions/third-party/node_modules/typebox/build/type/extends/integer.d.mts +8 -0
  3047. package/extensions/third-party/node_modules/typebox/build/type/extends/integer.mjs +10 -0
  3048. package/extensions/third-party/node_modules/typebox/build/type/extends/intersect.d.mts +6 -0
  3049. package/extensions/third-party/node_modules/typebox/build/type/extends/intersect.mjs +15 -0
  3050. package/extensions/third-party/node_modules/typebox/build/type/extends/iterator.d.mts +7 -0
  3051. package/extensions/third-party/node_modules/typebox/build/type/extends/iterator.mjs +9 -0
  3052. package/extensions/third-party/node_modules/typebox/build/type/extends/literal.d.mts +18 -0
  3053. package/extensions/third-party/node_modules/typebox/build/type/extends/literal.mjs +44 -0
  3054. package/extensions/third-party/node_modules/typebox/build/type/extends/never.d.mts +8 -0
  3055. package/extensions/third-party/node_modules/typebox/build/type/extends/never.mjs +9 -0
  3056. package/extensions/third-party/node_modules/typebox/build/type/extends/null.d.mts +7 -0
  3057. package/extensions/third-party/node_modules/typebox/build/type/extends/null.mjs +9 -0
  3058. package/extensions/third-party/node_modules/typebox/build/type/extends/number.d.mts +7 -0
  3059. package/extensions/third-party/node_modules/typebox/build/type/extends/number.mjs +9 -0
  3060. package/extensions/third-party/node_modules/typebox/build/type/extends/object.d.mts +25 -0
  3061. package/extensions/third-party/node_modules/typebox/build/type/extends/object.mjs +87 -0
  3062. package/extensions/third-party/node_modules/typebox/build/type/extends/parameters.d.mts +15 -0
  3063. package/extensions/third-party/node_modules/typebox/build/type/extends/parameters.mjs +28 -0
  3064. package/extensions/third-party/node_modules/typebox/build/type/extends/promise.d.mts +7 -0
  3065. package/extensions/third-party/node_modules/typebox/build/type/extends/promise.mjs +9 -0
  3066. package/extensions/third-party/node_modules/typebox/build/type/extends/result.d.mts +24 -0
  3067. package/extensions/third-party/node_modules/typebox/build/type/extends/result.mjs +36 -0
  3068. package/extensions/third-party/node_modules/typebox/build/type/extends/return_type.d.mts +7 -0
  3069. package/extensions/third-party/node_modules/typebox/build/type/extends/return_type.mjs +9 -0
  3070. package/extensions/third-party/node_modules/typebox/build/type/extends/string.d.mts +7 -0
  3071. package/extensions/third-party/node_modules/typebox/build/type/extends/string.mjs +9 -0
  3072. package/extensions/third-party/node_modules/typebox/build/type/extends/symbol.d.mts +7 -0
  3073. package/extensions/third-party/node_modules/typebox/build/type/extends/symbol.mjs +9 -0
  3074. package/extensions/third-party/node_modules/typebox/build/type/extends/template_literal.d.mts +6 -0
  3075. package/extensions/third-party/node_modules/typebox/build/type/extends/template_literal.mjs +7 -0
  3076. package/extensions/third-party/node_modules/typebox/build/type/extends/tuple.d.mts +25 -0
  3077. package/extensions/third-party/node_modules/typebox/build/type/extends/tuple.mjs +60 -0
  3078. package/extensions/third-party/node_modules/typebox/build/type/extends/undefined.d.mts +8 -0
  3079. package/extensions/third-party/node_modules/typebox/build/type/extends/undefined.mjs +10 -0
  3080. package/extensions/third-party/node_modules/typebox/build/type/extends/union.d.mts +11 -0
  3081. package/extensions/third-party/node_modules/typebox/build/type/extends/union.mjs +24 -0
  3082. package/extensions/third-party/node_modules/typebox/build/type/extends/unknown.d.mts +9 -0
  3083. package/extensions/third-party/node_modules/typebox/build/type/extends/unknown.mjs +12 -0
  3084. package/extensions/third-party/node_modules/typebox/build/type/extends/void.d.mts +7 -0
  3085. package/extensions/third-party/node_modules/typebox/build/type/extends/void.mjs +9 -0
  3086. package/extensions/third-party/node_modules/typebox/build/type/index.d.mts +5 -0
  3087. package/extensions/third-party/node_modules/typebox/build/type/index.mjs +5 -0
  3088. package/extensions/third-party/node_modules/typebox/build/type/script/index.d.mts +1 -0
  3089. package/extensions/third-party/node_modules/typebox/build/type/script/index.mjs +1 -0
  3090. package/extensions/third-party/node_modules/typebox/build/type/script/mapping.d.mts +365 -0
  3091. package/extensions/third-party/node_modules/typebox/build/type/script/mapping.mjs +532 -0
  3092. package/extensions/third-party/node_modules/typebox/build/type/script/parser.d.mts +260 -0
  3093. package/extensions/third-party/node_modules/typebox/build/type/script/parser.mjs +135 -0
  3094. package/extensions/third-party/node_modules/typebox/build/type/script/script.d.mts +17 -0
  3095. package/extensions/third-party/node_modules/typebox/build/type/script/script.mjs +21 -0
  3096. package/extensions/third-party/node_modules/typebox/build/type/script/token/bigint.d.mts +8 -0
  3097. package/extensions/third-party/node_modules/typebox/build/type/script/token/bigint.mjs +14 -0
  3098. package/extensions/third-party/node_modules/typebox/build/type/script/token/const.d.mts +11 -0
  3099. package/extensions/third-party/node_modules/typebox/build/type/script/token/const.mjs +18 -0
  3100. package/extensions/third-party/node_modules/typebox/build/type/script/token/ident.d.mts +16 -0
  3101. package/extensions/third-party/node_modules/typebox/build/type/script/token/ident.mjs +26 -0
  3102. package/extensions/third-party/node_modules/typebox/build/type/script/token/index.d.mts +12 -0
  3103. package/extensions/third-party/node_modules/typebox/build/type/script/token/index.mjs +12 -0
  3104. package/extensions/third-party/node_modules/typebox/build/type/script/token/integer.d.mts +11 -0
  3105. package/extensions/third-party/node_modules/typebox/build/type/script/token/integer.mjs +19 -0
  3106. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/char.d.mts +75 -0
  3107. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/char.mjs +26 -0
  3108. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/guard.d.mts +1 -0
  3109. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/guard.mjs +15 -0
  3110. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/many.d.mts +7 -0
  3111. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/many.mjs +14 -0
  3112. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/match.d.mts +6 -0
  3113. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/match.mjs +11 -0
  3114. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/optional.d.mts +5 -0
  3115. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/optional.mjs +9 -0
  3116. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/take.d.mts +6 -0
  3117. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/take.mjs +30 -0
  3118. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/trim.d.mts +19 -0
  3119. package/extensions/third-party/node_modules/typebox/build/type/script/token/internal/trim.mjs +34 -0
  3120. package/extensions/third-party/node_modules/typebox/build/type/script/token/number.d.mts +11 -0
  3121. package/extensions/third-party/node_modules/typebox/build/type/script/token/number.mjs +19 -0
  3122. package/extensions/third-party/node_modules/typebox/build/type/script/token/rest.d.mts +4 -0
  3123. package/extensions/third-party/node_modules/typebox/build/type/script/token/rest.mjs +9 -0
  3124. package/extensions/third-party/node_modules/typebox/build/type/script/token/span.d.mts +11 -0
  3125. package/extensions/third-party/node_modules/typebox/build/type/script/token/span.mjs +24 -0
  3126. package/extensions/third-party/node_modules/typebox/build/type/script/token/string.d.mts +11 -0
  3127. package/extensions/third-party/node_modules/typebox/build/type/script/token/string.mjs +20 -0
  3128. package/extensions/third-party/node_modules/typebox/build/type/script/token/unsigned_integer.d.mts +16 -0
  3129. package/extensions/third-party/node_modules/typebox/build/type/script/token/unsigned_integer.mjs +26 -0
  3130. package/extensions/third-party/node_modules/typebox/build/type/script/token/unsigned_number.d.mts +17 -0
  3131. package/extensions/third-party/node_modules/typebox/build/type/script/token/unsigned_number.mjs +38 -0
  3132. package/extensions/third-party/node_modules/typebox/build/type/script/token/until.d.mts +7 -0
  3133. package/extensions/third-party/node_modules/typebox/build/type/script/token/until.mjs +21 -0
  3134. package/extensions/third-party/node_modules/typebox/build/type/script/token/until_1.d.mts +5 -0
  3135. package/extensions/third-party/node_modules/typebox/build/type/script/token/until_1.mjs +12 -0
  3136. package/extensions/third-party/node_modules/typebox/build/type/types/_codec.d.mts +30 -0
  3137. package/extensions/third-party/node_modules/typebox/build/type/types/_codec.mjs +61 -0
  3138. package/extensions/third-party/node_modules/typebox/build/type/types/_immutable.d.mts +16 -0
  3139. package/extensions/third-party/node_modules/typebox/build/type/types/_immutable.mjs +26 -0
  3140. package/extensions/third-party/node_modules/typebox/build/type/types/_optional.d.mts +16 -0
  3141. package/extensions/third-party/node_modules/typebox/build/type/types/_optional.mjs +27 -0
  3142. package/extensions/third-party/node_modules/typebox/build/type/types/_readonly.d.mts +16 -0
  3143. package/extensions/third-party/node_modules/typebox/build/type/types/_readonly.mjs +26 -0
  3144. package/extensions/third-party/node_modules/typebox/build/type/types/_refine.d.mts +26 -0
  3145. package/extensions/third-party/node_modules/typebox/build/type/types/_refine.mjs +37 -0
  3146. package/extensions/third-party/node_modules/typebox/build/type/types/any.d.mts +10 -0
  3147. package/extensions/third-party/node_modules/typebox/build/type/types/any.mjs +18 -0
  3148. package/extensions/third-party/node_modules/typebox/build/type/types/array.d.mts +18 -0
  3149. package/extensions/third-party/node_modules/typebox/build/type/types/array.mjs +25 -0
  3150. package/extensions/third-party/node_modules/typebox/build/type/types/async_iterator.d.mts +20 -0
  3151. package/extensions/third-party/node_modules/typebox/build/type/types/async_iterator.mjs +28 -0
  3152. package/extensions/third-party/node_modules/typebox/build/type/types/base.d.mts +50 -0
  3153. package/extensions/third-party/node_modules/typebox/build/type/types/base.mjs +84 -0
  3154. package/extensions/third-party/node_modules/typebox/build/type/types/bigint.d.mts +12 -0
  3155. package/extensions/third-party/node_modules/typebox/build/type/types/bigint.mjs +21 -0
  3156. package/extensions/third-party/node_modules/typebox/build/type/types/boolean.d.mts +11 -0
  3157. package/extensions/third-party/node_modules/typebox/build/type/types/boolean.mjs +17 -0
  3158. package/extensions/third-party/node_modules/typebox/build/type/types/call.d.mts +16 -0
  3159. package/extensions/third-party/node_modules/typebox/build/type/types/call.mjs +22 -0
  3160. package/extensions/third-party/node_modules/typebox/build/type/types/constructor.d.mts +18 -0
  3161. package/extensions/third-party/node_modules/typebox/build/type/types/constructor.mjs +24 -0
  3162. package/extensions/third-party/node_modules/typebox/build/type/types/cyclic.d.mts +16 -0
  3163. package/extensions/third-party/node_modules/typebox/build/type/types/cyclic.mjs +29 -0
  3164. package/extensions/third-party/node_modules/typebox/build/type/types/deferred.d.mts +12 -0
  3165. package/extensions/third-party/node_modules/typebox/build/type/types/deferred.mjs +16 -0
  3166. package/extensions/third-party/node_modules/typebox/build/type/types/enum.d.mts +16 -0
  3167. package/extensions/third-party/node_modules/typebox/build/type/types/enum.mjs +17 -0
  3168. package/extensions/third-party/node_modules/typebox/build/type/types/function.d.mts +21 -0
  3169. package/extensions/third-party/node_modules/typebox/build/type/types/function.mjs +25 -0
  3170. package/extensions/third-party/node_modules/typebox/build/type/types/generic.d.mts +13 -0
  3171. package/extensions/third-party/node_modules/typebox/build/type/types/generic.mjs +17 -0
  3172. package/extensions/third-party/node_modules/typebox/build/type/types/identifier.d.mts +11 -0
  3173. package/extensions/third-party/node_modules/typebox/build/type/types/identifier.mjs +17 -0
  3174. package/extensions/third-party/node_modules/typebox/build/type/types/index.d.mts +48 -0
  3175. package/extensions/third-party/node_modules/typebox/build/type/types/index.mjs +54 -0
  3176. package/extensions/third-party/node_modules/typebox/build/type/types/infer.d.mts +15 -0
  3177. package/extensions/third-party/node_modules/typebox/build/type/types/infer.mjs +20 -0
  3178. package/extensions/third-party/node_modules/typebox/build/type/types/integer.d.mts +12 -0
  3179. package/extensions/third-party/node_modules/typebox/build/type/types/integer.mjs +21 -0
  3180. package/extensions/third-party/node_modules/typebox/build/type/types/intersect.d.mts +15 -0
  3181. package/extensions/third-party/node_modules/typebox/build/type/types/intersect.mjs +24 -0
  3182. package/extensions/third-party/node_modules/typebox/build/type/types/iterator.d.mts +20 -0
  3183. package/extensions/third-party/node_modules/typebox/build/type/types/iterator.mjs +28 -0
  3184. package/extensions/third-party/node_modules/typebox/build/type/types/literal.d.mts +31 -0
  3185. package/extensions/third-party/node_modules/typebox/build/type/types/literal.mjs +62 -0
  3186. package/extensions/third-party/node_modules/typebox/build/type/types/never.d.mts +12 -0
  3187. package/extensions/third-party/node_modules/typebox/build/type/types/never.mjs +22 -0
  3188. package/extensions/third-party/node_modules/typebox/build/type/types/null.d.mts +11 -0
  3189. package/extensions/third-party/node_modules/typebox/build/type/types/null.mjs +17 -0
  3190. package/extensions/third-party/node_modules/typebox/build/type/types/number.d.mts +12 -0
  3191. package/extensions/third-party/node_modules/typebox/build/type/types/number.mjs +21 -0
  3192. package/extensions/third-party/node_modules/typebox/build/type/types/object.d.mts +18 -0
  3193. package/extensions/third-party/node_modules/typebox/build/type/types/object.mjs +28 -0
  3194. package/extensions/third-party/node_modules/typebox/build/type/types/parameter.d.mts +17 -0
  3195. package/extensions/third-party/node_modules/typebox/build/type/types/parameter.mjs +21 -0
  3196. package/extensions/third-party/node_modules/typebox/build/type/types/promise.d.mts +21 -0
  3197. package/extensions/third-party/node_modules/typebox/build/type/types/promise.mjs +29 -0
  3198. package/extensions/third-party/node_modules/typebox/build/type/types/properties.d.mts +43 -0
  3199. package/extensions/third-party/node_modules/typebox/build/type/types/properties.mjs +15 -0
  3200. package/extensions/third-party/node_modules/typebox/build/type/types/record.d.mts +46 -0
  3201. package/extensions/third-party/node_modules/typebox/build/type/types/record.mjs +60 -0
  3202. package/extensions/third-party/node_modules/typebox/build/type/types/ref.d.mts +19 -0
  3203. package/extensions/third-party/node_modules/typebox/build/type/types/ref.mjs +18 -0
  3204. package/extensions/third-party/node_modules/typebox/build/type/types/rest.d.mts +11 -0
  3205. package/extensions/third-party/node_modules/typebox/build/type/types/rest.mjs +17 -0
  3206. package/extensions/third-party/node_modules/typebox/build/type/types/schema.d.mts +176 -0
  3207. package/extensions/third-party/node_modules/typebox/build/type/types/schema.mjs +15 -0
  3208. package/extensions/third-party/node_modules/typebox/build/type/types/static.d.mts +48 -0
  3209. package/extensions/third-party/node_modules/typebox/build/type/types/static.mjs +3 -0
  3210. package/extensions/third-party/node_modules/typebox/build/type/types/string.d.mts +12 -0
  3211. package/extensions/third-party/node_modules/typebox/build/type/types/string.mjs +22 -0
  3212. package/extensions/third-party/node_modules/typebox/build/type/types/symbol.d.mts +11 -0
  3213. package/extensions/third-party/node_modules/typebox/build/type/types/symbol.mjs +17 -0
  3214. package/extensions/third-party/node_modules/typebox/build/type/types/template_literal.d.mts +28 -0
  3215. package/extensions/third-party/node_modules/typebox/build/type/types/template_literal.mjs +37 -0
  3216. package/extensions/third-party/node_modules/typebox/build/type/types/this.d.mts +14 -0
  3217. package/extensions/third-party/node_modules/typebox/build/type/types/this.mjs +17 -0
  3218. package/extensions/third-party/node_modules/typebox/build/type/types/tuple.d.mts +38 -0
  3219. package/extensions/third-party/node_modules/typebox/build/type/types/tuple.mjs +25 -0
  3220. package/extensions/third-party/node_modules/typebox/build/type/types/undefined.d.mts +11 -0
  3221. package/extensions/third-party/node_modules/typebox/build/type/types/undefined.mjs +17 -0
  3222. package/extensions/third-party/node_modules/typebox/build/type/types/union.d.mts +15 -0
  3223. package/extensions/third-party/node_modules/typebox/build/type/types/union.mjs +24 -0
  3224. package/extensions/third-party/node_modules/typebox/build/type/types/unknown.d.mts +10 -0
  3225. package/extensions/third-party/node_modules/typebox/build/type/types/unknown.mjs +17 -0
  3226. package/extensions/third-party/node_modules/typebox/build/type/types/unsafe.d.mts +10 -0
  3227. package/extensions/third-party/node_modules/typebox/build/type/types/unsafe.mjs +20 -0
  3228. package/extensions/third-party/node_modules/typebox/build/type/types/void.d.mts +11 -0
  3229. package/extensions/third-party/node_modules/typebox/build/type/types/void.mjs +17 -0
  3230. package/extensions/third-party/node_modules/typebox/build/typebox.d.mts +73 -0
  3231. package/extensions/third-party/node_modules/typebox/build/typebox.mjs +89 -0
  3232. package/extensions/third-party/node_modules/typebox/build/value/assert/assert.d.mts +14 -0
  3233. package/extensions/third-party/node_modules/typebox/build/value/assert/assert.mjs +28 -0
  3234. package/extensions/third-party/node_modules/typebox/build/value/assert/index.d.mts +1 -0
  3235. package/extensions/third-party/node_modules/typebox/build/value/assert/index.mjs +1 -0
  3236. package/extensions/third-party/node_modules/typebox/build/value/check/check.d.mts +5 -0
  3237. package/extensions/third-party/node_modules/typebox/build/value/check/check.mjs +11 -0
  3238. package/extensions/third-party/node_modules/typebox/build/value/check/index.d.mts +1 -0
  3239. package/extensions/third-party/node_modules/typebox/build/value/check/index.mjs +1 -0
  3240. package/extensions/third-party/node_modules/typebox/build/value/clean/additional.d.mts +2 -0
  3241. package/extensions/third-party/node_modules/typebox/build/value/clean/additional.mjs +6 -0
  3242. package/extensions/third-party/node_modules/typebox/build/value/clean/clean.d.mts +15 -0
  3243. package/extensions/third-party/node_modules/typebox/build/value/clean/clean.mjs +15 -0
  3244. package/extensions/third-party/node_modules/typebox/build/value/clean/from_array.d.mts +2 -0
  3245. package/extensions/third-party/node_modules/typebox/build/value/clean/from_array.mjs +8 -0
  3246. package/extensions/third-party/node_modules/typebox/build/value/clean/from_base.d.mts +2 -0
  3247. package/extensions/third-party/node_modules/typebox/build/value/clean/from_base.mjs +4 -0
  3248. package/extensions/third-party/node_modules/typebox/build/value/clean/from_cyclic.d.mts +2 -0
  3249. package/extensions/third-party/node_modules/typebox/build/value/clean/from_cyclic.mjs +6 -0
  3250. package/extensions/third-party/node_modules/typebox/build/value/clean/from_intersect.d.mts +2 -0
  3251. package/extensions/third-party/node_modules/typebox/build/value/clean/from_intersect.mjs +26 -0
  3252. package/extensions/third-party/node_modules/typebox/build/value/clean/from_object.d.mts +2 -0
  3253. package/extensions/third-party/node_modules/typebox/build/value/clean/from_object.mjs +31 -0
  3254. package/extensions/third-party/node_modules/typebox/build/value/clean/from_record.d.mts +2 -0
  3255. package/extensions/third-party/node_modules/typebox/build/value/clean/from_record.mjs +32 -0
  3256. package/extensions/third-party/node_modules/typebox/build/value/clean/from_ref.d.mts +2 -0
  3257. package/extensions/third-party/node_modules/typebox/build/value/clean/from_ref.mjs +8 -0
  3258. package/extensions/third-party/node_modules/typebox/build/value/clean/from_tuple.d.mts +2 -0
  3259. package/extensions/third-party/node_modules/typebox/build/value/clean/from_tuple.mjs +14 -0
  3260. package/extensions/third-party/node_modules/typebox/build/value/clean/from_type.d.mts +2 -0
  3261. package/extensions/third-party/node_modules/typebox/build/value/clean/from_type.mjs +23 -0
  3262. package/extensions/third-party/node_modules/typebox/build/value/clean/from_union.d.mts +2 -0
  3263. package/extensions/third-party/node_modules/typebox/build/value/clean/from_union.mjs +13 -0
  3264. package/extensions/third-party/node_modules/typebox/build/value/clean/index.d.mts +1 -0
  3265. package/extensions/third-party/node_modules/typebox/build/value/clean/index.mjs +1 -0
  3266. package/extensions/third-party/node_modules/typebox/build/value/clone/clone.d.mts +5 -0
  3267. package/extensions/third-party/node_modules/typebox/build/value/clone/clone.mjs +83 -0
  3268. package/extensions/third-party/node_modules/typebox/build/value/clone/index.d.mts +1 -0
  3269. package/extensions/third-party/node_modules/typebox/build/value/clone/index.mjs +1 -0
  3270. package/extensions/third-party/node_modules/typebox/build/value/codec/callback.d.mts +2 -0
  3271. package/extensions/third-party/node_modules/typebox/build/value/codec/callback.mjs +25 -0
  3272. package/extensions/third-party/node_modules/typebox/build/value/codec/decode.d.mts +12 -0
  3273. package/extensions/third-party/node_modules/typebox/build/value/codec/decode.mjs +50 -0
  3274. package/extensions/third-party/node_modules/typebox/build/value/codec/encode.d.mts +12 -0
  3275. package/extensions/third-party/node_modules/typebox/build/value/codec/encode.mjs +50 -0
  3276. package/extensions/third-party/node_modules/typebox/build/value/codec/from_array.d.mts +2 -0
  3277. package/extensions/third-party/node_modules/typebox/build/value/codec/from_array.mjs +38 -0
  3278. package/extensions/third-party/node_modules/typebox/build/value/codec/from_cyclic.d.mts +2 -0
  3279. package/extensions/third-party/node_modules/typebox/build/value/codec/from_cyclic.mjs +8 -0
  3280. package/extensions/third-party/node_modules/typebox/build/value/codec/from_intersect.d.mts +2 -0
  3281. package/extensions/third-party/node_modules/typebox/build/value/codec/from_intersect.mjs +58 -0
  3282. package/extensions/third-party/node_modules/typebox/build/value/codec/from_object.d.mts +2 -0
  3283. package/extensions/third-party/node_modules/typebox/build/value/codec/from_object.mjs +45 -0
  3284. package/extensions/third-party/node_modules/typebox/build/value/codec/from_record.d.mts +2 -0
  3285. package/extensions/third-party/node_modules/typebox/build/value/codec/from_record.mjs +44 -0
  3286. package/extensions/third-party/node_modules/typebox/build/value/codec/from_ref.d.mts +2 -0
  3287. package/extensions/third-party/node_modules/typebox/build/value/codec/from_ref.mjs +31 -0
  3288. package/extensions/third-party/node_modules/typebox/build/value/codec/from_tuple.d.mts +2 -0
  3289. package/extensions/third-party/node_modules/typebox/build/value/codec/from_tuple.mjs +35 -0
  3290. package/extensions/third-party/node_modules/typebox/build/value/codec/from_type.d.mts +2 -0
  3291. package/extensions/third-party/node_modules/typebox/build/value/codec/from_type.mjs +22 -0
  3292. package/extensions/third-party/node_modules/typebox/build/value/codec/from_union.d.mts +2 -0
  3293. package/extensions/third-party/node_modules/typebox/build/value/codec/from_union.mjs +40 -0
  3294. package/extensions/third-party/node_modules/typebox/build/value/codec/has.d.mts +5 -0
  3295. package/extensions/third-party/node_modules/typebox/build/value/codec/has.mjs +93 -0
  3296. package/extensions/third-party/node_modules/typebox/build/value/codec/index.d.mts +3 -0
  3297. package/extensions/third-party/node_modules/typebox/build/value/codec/index.mjs +3 -0
  3298. package/extensions/third-party/node_modules/typebox/build/value/convert/convert.d.mts +13 -0
  3299. package/extensions/third-party/node_modules/typebox/build/value/convert/convert.mjs +15 -0
  3300. package/extensions/third-party/node_modules/typebox/build/value/convert/from_additional.d.mts +6 -0
  3301. package/extensions/third-party/node_modules/typebox/build/value/convert/from_additional.mjs +18 -0
  3302. package/extensions/third-party/node_modules/typebox/build/value/convert/from_array.d.mts +2 -0
  3303. package/extensions/third-party/node_modules/typebox/build/value/convert/from_array.mjs +7 -0
  3304. package/extensions/third-party/node_modules/typebox/build/value/convert/from_base.d.mts +2 -0
  3305. package/extensions/third-party/node_modules/typebox/build/value/convert/from_base.mjs +4 -0
  3306. package/extensions/third-party/node_modules/typebox/build/value/convert/from_bigint.d.mts +2 -0
  3307. package/extensions/third-party/node_modules/typebox/build/value/convert/from_bigint.mjs +6 -0
  3308. package/extensions/third-party/node_modules/typebox/build/value/convert/from_boolean.d.mts +2 -0
  3309. package/extensions/third-party/node_modules/typebox/build/value/convert/from_boolean.mjs +6 -0
  3310. package/extensions/third-party/node_modules/typebox/build/value/convert/from_cyclic.d.mts +2 -0
  3311. package/extensions/third-party/node_modules/typebox/build/value/convert/from_cyclic.mjs +6 -0
  3312. package/extensions/third-party/node_modules/typebox/build/value/convert/from_enum.d.mts +2 -0
  3313. package/extensions/third-party/node_modules/typebox/build/value/convert/from_enum.mjs +7 -0
  3314. package/extensions/third-party/node_modules/typebox/build/value/convert/from_integer.d.mts +2 -0
  3315. package/extensions/third-party/node_modules/typebox/build/value/convert/from_integer.mjs +6 -0
  3316. package/extensions/third-party/node_modules/typebox/build/value/convert/from_intersect.d.mts +2 -0
  3317. package/extensions/third-party/node_modules/typebox/build/value/convert/from_intersect.mjs +8 -0
  3318. package/extensions/third-party/node_modules/typebox/build/value/convert/from_literal.d.mts +2 -0
  3319. package/extensions/third-party/node_modules/typebox/build/value/convert/from_literal.mjs +44 -0
  3320. package/extensions/third-party/node_modules/typebox/build/value/convert/from_null.d.mts +2 -0
  3321. package/extensions/third-party/node_modules/typebox/build/value/convert/from_null.mjs +6 -0
  3322. package/extensions/third-party/node_modules/typebox/build/value/convert/from_number.d.mts +2 -0
  3323. package/extensions/third-party/node_modules/typebox/build/value/convert/from_number.mjs +6 -0
  3324. package/extensions/third-party/node_modules/typebox/build/value/convert/from_object.d.mts +2 -0
  3325. package/extensions/third-party/node_modules/typebox/build/value/convert/from_object.mjs +28 -0
  3326. package/extensions/third-party/node_modules/typebox/build/value/convert/from_record.d.mts +2 -0
  3327. package/extensions/third-party/node_modules/typebox/build/value/convert/from_record.mjs +23 -0
  3328. package/extensions/third-party/node_modules/typebox/build/value/convert/from_ref.d.mts +2 -0
  3329. package/extensions/third-party/node_modules/typebox/build/value/convert/from_ref.mjs +8 -0
  3330. package/extensions/third-party/node_modules/typebox/build/value/convert/from_string.d.mts +2 -0
  3331. package/extensions/third-party/node_modules/typebox/build/value/convert/from_string.mjs +6 -0
  3332. package/extensions/third-party/node_modules/typebox/build/value/convert/from_template_literal.d.mts +2 -0
  3333. package/extensions/third-party/node_modules/typebox/build/value/convert/from_template_literal.mjs +7 -0
  3334. package/extensions/third-party/node_modules/typebox/build/value/convert/from_tuple.d.mts +2 -0
  3335. package/extensions/third-party/node_modules/typebox/build/value/convert/from_tuple.mjs +11 -0
  3336. package/extensions/third-party/node_modules/typebox/build/value/convert/from_type.d.mts +2 -0
  3337. package/extensions/third-party/node_modules/typebox/build/value/convert/from_type.mjs +45 -0
  3338. package/extensions/third-party/node_modules/typebox/build/value/convert/from_undefined.d.mts +2 -0
  3339. package/extensions/third-party/node_modules/typebox/build/value/convert/from_undefined.mjs +6 -0
  3340. package/extensions/third-party/node_modules/typebox/build/value/convert/from_union.d.mts +2 -0
  3341. package/extensions/third-party/node_modules/typebox/build/value/convert/from_union.mjs +13 -0
  3342. package/extensions/third-party/node_modules/typebox/build/value/convert/from_void.d.mts +2 -0
  3343. package/extensions/third-party/node_modules/typebox/build/value/convert/from_void.mjs +6 -0
  3344. package/extensions/third-party/node_modules/typebox/build/value/convert/index.d.mts +1 -0
  3345. package/extensions/third-party/node_modules/typebox/build/value/convert/index.mjs +1 -0
  3346. package/extensions/third-party/node_modules/typebox/build/value/convert/try/index.d.mts +1 -0
  3347. package/extensions/third-party/node_modules/typebox/build/value/convert/try/index.mjs +1 -0
  3348. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try.d.mts +8 -0
  3349. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try.mjs +8 -0
  3350. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_array.d.mts +2 -0
  3351. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_array.mjs +6 -0
  3352. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_bigint.d.mts +2 -0
  3353. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_bigint.mjs +45 -0
  3354. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_boolean.d.mts +2 -0
  3355. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_boolean.mjs +41 -0
  3356. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_null.d.mts +2 -0
  3357. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_null.mjs +44 -0
  3358. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_number.d.mts +2 -0
  3359. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_number.mjs +44 -0
  3360. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_result.d.mts +8 -0
  3361. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_result.mjs +17 -0
  3362. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_string.d.mts +2 -0
  3363. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_string.mjs +12 -0
  3364. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_undefined.d.mts +2 -0
  3365. package/extensions/third-party/node_modules/typebox/build/value/convert/try/try_undefined.mjs +44 -0
  3366. package/extensions/third-party/node_modules/typebox/build/value/create/create.d.mts +5 -0
  3367. package/extensions/third-party/node_modules/typebox/build/value/create/create.mjs +11 -0
  3368. package/extensions/third-party/node_modules/typebox/build/value/create/error.d.mts +5 -0
  3369. package/extensions/third-party/node_modules/typebox/build/value/create/error.mjs +7 -0
  3370. package/extensions/third-party/node_modules/typebox/build/value/create/from_array.d.mts +2 -0
  3371. package/extensions/third-party/node_modules/typebox/build/value/create/from_array.mjs +10 -0
  3372. package/extensions/third-party/node_modules/typebox/build/value/create/from_async_iterator.d.mts +2 -0
  3373. package/extensions/third-party/node_modules/typebox/build/value/create/from_async_iterator.mjs +5 -0
  3374. package/extensions/third-party/node_modules/typebox/build/value/create/from_base.d.mts +2 -0
  3375. package/extensions/third-party/node_modules/typebox/build/value/create/from_base.mjs +4 -0
  3376. package/extensions/third-party/node_modules/typebox/build/value/create/from_bigint.d.mts +2 -0
  3377. package/extensions/third-party/node_modules/typebox/build/value/create/from_bigint.mjs +7 -0
  3378. package/extensions/third-party/node_modules/typebox/build/value/create/from_boolean.d.mts +2 -0
  3379. package/extensions/third-party/node_modules/typebox/build/value/create/from_boolean.mjs +4 -0
  3380. package/extensions/third-party/node_modules/typebox/build/value/create/from_constructor.d.mts +2 -0
  3381. package/extensions/third-party/node_modules/typebox/build/value/create/from_constructor.mjs +10 -0
  3382. package/extensions/third-party/node_modules/typebox/build/value/create/from_cyclic.d.mts +2 -0
  3383. package/extensions/third-party/node_modules/typebox/build/value/create/from_cyclic.mjs +6 -0
  3384. package/extensions/third-party/node_modules/typebox/build/value/create/from_default.d.mts +3 -0
  3385. package/extensions/third-party/node_modules/typebox/build/value/create/from_default.mjs +10 -0
  3386. package/extensions/third-party/node_modules/typebox/build/value/create/from_enum.d.mts +2 -0
  3387. package/extensions/third-party/node_modules/typebox/build/value/create/from_enum.mjs +6 -0
  3388. package/extensions/third-party/node_modules/typebox/build/value/create/from_function.d.mts +2 -0
  3389. package/extensions/third-party/node_modules/typebox/build/value/create/from_function.mjs +6 -0
  3390. package/extensions/third-party/node_modules/typebox/build/value/create/from_integer.d.mts +2 -0
  3391. package/extensions/third-party/node_modules/typebox/build/value/create/from_integer.mjs +8 -0
  3392. package/extensions/third-party/node_modules/typebox/build/value/create/from_intersect.d.mts +2 -0
  3393. package/extensions/third-party/node_modules/typebox/build/value/create/from_intersect.mjs +8 -0
  3394. package/extensions/third-party/node_modules/typebox/build/value/create/from_iterator.d.mts +2 -0
  3395. package/extensions/third-party/node_modules/typebox/build/value/create/from_iterator.mjs +5 -0
  3396. package/extensions/third-party/node_modules/typebox/build/value/create/from_literal.d.mts +2 -0
  3397. package/extensions/third-party/node_modules/typebox/build/value/create/from_literal.mjs +4 -0
  3398. package/extensions/third-party/node_modules/typebox/build/value/create/from_never.d.mts +2 -0
  3399. package/extensions/third-party/node_modules/typebox/build/value/create/from_never.mjs +5 -0
  3400. package/extensions/third-party/node_modules/typebox/build/value/create/from_null.d.mts +2 -0
  3401. package/extensions/third-party/node_modules/typebox/build/value/create/from_null.mjs +4 -0
  3402. package/extensions/third-party/node_modules/typebox/build/value/create/from_number.d.mts +2 -0
  3403. package/extensions/third-party/node_modules/typebox/build/value/create/from_number.mjs +8 -0
  3404. package/extensions/third-party/node_modules/typebox/build/value/create/from_object.d.mts +2 -0
  3405. package/extensions/third-party/node_modules/typebox/build/value/create/from_object.mjs +9 -0
  3406. package/extensions/third-party/node_modules/typebox/build/value/create/from_promise.d.mts +2 -0
  3407. package/extensions/third-party/node_modules/typebox/build/value/create/from_promise.mjs +5 -0
  3408. package/extensions/third-party/node_modules/typebox/build/value/create/from_record.d.mts +2 -0
  3409. package/extensions/third-party/node_modules/typebox/build/value/create/from_record.mjs +8 -0
  3410. package/extensions/third-party/node_modules/typebox/build/value/create/from_ref.d.mts +2 -0
  3411. package/extensions/third-party/node_modules/typebox/build/value/create/from_ref.mjs +9 -0
  3412. package/extensions/third-party/node_modules/typebox/build/value/create/from_string.d.mts +2 -0
  3413. package/extensions/third-party/node_modules/typebox/build/value/create/from_string.mjs +9 -0
  3414. package/extensions/third-party/node_modules/typebox/build/value/create/from_symbol.d.mts +2 -0
  3415. package/extensions/third-party/node_modules/typebox/build/value/create/from_symbol.mjs +4 -0
  3416. package/extensions/third-party/node_modules/typebox/build/value/create/from_template_literal.d.mts +2 -0
  3417. package/extensions/third-party/node_modules/typebox/build/value/create/from_template_literal.mjs +11 -0
  3418. package/extensions/third-party/node_modules/typebox/build/value/create/from_tuple.d.mts +2 -0
  3419. package/extensions/third-party/node_modules/typebox/build/value/create/from_tuple.mjs +5 -0
  3420. package/extensions/third-party/node_modules/typebox/build/value/create/from_type.d.mts +2 -0
  3421. package/extensions/third-party/node_modules/typebox/build/value/create/from_type.mjs +69 -0
  3422. package/extensions/third-party/node_modules/typebox/build/value/create/from_undefined.d.mts +2 -0
  3423. package/extensions/third-party/node_modules/typebox/build/value/create/from_undefined.mjs +4 -0
  3424. package/extensions/third-party/node_modules/typebox/build/value/create/from_union.d.mts +2 -0
  3425. package/extensions/third-party/node_modules/typebox/build/value/create/from_union.mjs +9 -0
  3426. package/extensions/third-party/node_modules/typebox/build/value/create/from_void.d.mts +2 -0
  3427. package/extensions/third-party/node_modules/typebox/build/value/create/from_void.mjs +4 -0
  3428. package/extensions/third-party/node_modules/typebox/build/value/create/index.d.mts +2 -0
  3429. package/extensions/third-party/node_modules/typebox/build/value/create/index.mjs +2 -0
  3430. package/extensions/third-party/node_modules/typebox/build/value/default/default.d.mts +13 -0
  3431. package/extensions/third-party/node_modules/typebox/build/value/default/default.mjs +15 -0
  3432. package/extensions/third-party/node_modules/typebox/build/value/default/from_array.d.mts +2 -0
  3433. package/extensions/third-party/node_modules/typebox/build/value/default/from_array.mjs +12 -0
  3434. package/extensions/third-party/node_modules/typebox/build/value/default/from_base.d.mts +2 -0
  3435. package/extensions/third-party/node_modules/typebox/build/value/default/from_base.mjs +5 -0
  3436. package/extensions/third-party/node_modules/typebox/build/value/default/from_cyclic.d.mts +2 -0
  3437. package/extensions/third-party/node_modules/typebox/build/value/default/from_cyclic.mjs +7 -0
  3438. package/extensions/third-party/node_modules/typebox/build/value/default/from_default.d.mts +3 -0
  3439. package/extensions/third-party/node_modules/typebox/build/value/default/from_default.mjs +13 -0
  3440. package/extensions/third-party/node_modules/typebox/build/value/default/from_intersect.d.mts +2 -0
  3441. package/extensions/third-party/node_modules/typebox/build/value/default/from_intersect.mjs +9 -0
  3442. package/extensions/third-party/node_modules/typebox/build/value/default/from_object.d.mts +2 -0
  3443. package/extensions/third-party/node_modules/typebox/build/value/default/from_object.mjs +32 -0
  3444. package/extensions/third-party/node_modules/typebox/build/value/default/from_record.d.mts +2 -0
  3445. package/extensions/third-party/node_modules/typebox/build/value/default/from_record.mjs +26 -0
  3446. package/extensions/third-party/node_modules/typebox/build/value/default/from_ref.d.mts +2 -0
  3447. package/extensions/third-party/node_modules/typebox/build/value/default/from_ref.mjs +9 -0
  3448. package/extensions/third-party/node_modules/typebox/build/value/default/from_tuple.d.mts +2 -0
  3449. package/extensions/third-party/node_modules/typebox/build/value/default/from_tuple.mjs +14 -0
  3450. package/extensions/third-party/node_modules/typebox/build/value/default/from_type.d.mts +2 -0
  3451. package/extensions/third-party/node_modules/typebox/build/value/default/from_type.mjs +27 -0
  3452. package/extensions/third-party/node_modules/typebox/build/value/default/from_union.d.mts +2 -0
  3453. package/extensions/third-party/node_modules/typebox/build/value/default/from_union.mjs +14 -0
  3454. package/extensions/third-party/node_modules/typebox/build/value/default/index.d.mts +1 -0
  3455. package/extensions/third-party/node_modules/typebox/build/value/default/index.mjs +1 -0
  3456. package/extensions/third-party/node_modules/typebox/build/value/delta/diff.d.mts +10 -0
  3457. package/extensions/third-party/node_modules/typebox/build/value/delta/diff.mjs +135 -0
  3458. package/extensions/third-party/node_modules/typebox/build/value/delta/edit.d.mts +24 -0
  3459. package/extensions/third-party/node_modules/typebox/build/value/delta/edit.mjs +17 -0
  3460. package/extensions/third-party/node_modules/typebox/build/value/delta/index.d.mts +3 -0
  3461. package/extensions/third-party/node_modules/typebox/build/value/delta/index.mjs +3 -0
  3462. package/extensions/third-party/node_modules/typebox/build/value/delta/patch.d.mts +8 -0
  3463. package/extensions/third-party/node_modules/typebox/build/value/delta/patch.mjs +42 -0
  3464. package/extensions/third-party/node_modules/typebox/build/value/equal/equal.d.mts +2 -0
  3465. package/extensions/third-party/node_modules/typebox/build/value/equal/equal.mjs +6 -0
  3466. package/extensions/third-party/node_modules/typebox/build/value/equal/index.d.mts +1 -0
  3467. package/extensions/third-party/node_modules/typebox/build/value/equal/index.mjs +1 -0
  3468. package/extensions/third-party/node_modules/typebox/build/value/errors/errors.d.mts +16 -0
  3469. package/extensions/third-party/node_modules/typebox/build/value/errors/errors.mjs +17 -0
  3470. package/extensions/third-party/node_modules/typebox/build/value/errors/index.d.mts +1 -0
  3471. package/extensions/third-party/node_modules/typebox/build/value/errors/index.mjs +1 -0
  3472. package/extensions/third-party/node_modules/typebox/build/value/hash/hash.d.mts +6 -0
  3473. package/extensions/third-party/node_modules/typebox/build/value/hash/hash.mjs +10 -0
  3474. package/extensions/third-party/node_modules/typebox/build/value/hash/index.d.mts +1 -0
  3475. package/extensions/third-party/node_modules/typebox/build/value/hash/index.mjs +1 -0
  3476. package/extensions/third-party/node_modules/typebox/build/value/index.d.mts +21 -0
  3477. package/extensions/third-party/node_modules/typebox/build/value/index.mjs +30 -0
  3478. package/extensions/third-party/node_modules/typebox/build/value/mutate/error.d.mts +3 -0
  3479. package/extensions/third-party/node_modules/typebox/build/value/mutate/error.mjs +6 -0
  3480. package/extensions/third-party/node_modules/typebox/build/value/mutate/from_array.d.mts +2 -0
  3481. package/extensions/third-party/node_modules/typebox/build/value/mutate/from_array.mjs +16 -0
  3482. package/extensions/third-party/node_modules/typebox/build/value/mutate/from_object.d.mts +2 -0
  3483. package/extensions/third-party/node_modules/typebox/build/value/mutate/from_object.mjs +40 -0
  3484. package/extensions/third-party/node_modules/typebox/build/value/mutate/from_unknown.d.mts +2 -0
  3485. package/extensions/third-party/node_modules/typebox/build/value/mutate/from_unknown.mjs +7 -0
  3486. package/extensions/third-party/node_modules/typebox/build/value/mutate/from_value.d.mts +2 -0
  3487. package/extensions/third-party/node_modules/typebox/build/value/mutate/from_value.mjs +12 -0
  3488. package/extensions/third-party/node_modules/typebox/build/value/mutate/index.d.mts +1 -0
  3489. package/extensions/third-party/node_modules/typebox/build/value/mutate/index.mjs +1 -0
  3490. package/extensions/third-party/node_modules/typebox/build/value/mutate/mutate.d.mts +11 -0
  3491. package/extensions/third-party/node_modules/typebox/build/value/mutate/mutate.mjs +41 -0
  3492. package/extensions/third-party/node_modules/typebox/build/value/parse/index.d.mts +1 -0
  3493. package/extensions/third-party/node_modules/typebox/build/value/parse/index.mjs +1 -0
  3494. package/extensions/third-party/node_modules/typebox/build/value/parse/parse.d.mts +11 -0
  3495. package/extensions/third-party/node_modules/typebox/build/value/parse/parse.mjs +47 -0
  3496. package/extensions/third-party/node_modules/typebox/build/value/pipeline/index.d.mts +1 -0
  3497. package/extensions/third-party/node_modules/typebox/build/value/pipeline/index.mjs +1 -0
  3498. package/extensions/third-party/node_modules/typebox/build/value/pipeline/pipeline.d.mts +10 -0
  3499. package/extensions/third-party/node_modules/typebox/build/value/pipeline/pipeline.mjs +15 -0
  3500. package/extensions/third-party/node_modules/typebox/build/value/pointer/index.d.mts +1 -0
  3501. package/extensions/third-party/node_modules/typebox/build/value/pointer/index.mjs +1 -0
  3502. package/extensions/third-party/node_modules/typebox/build/value/repair/error.d.mts +7 -0
  3503. package/extensions/third-party/node_modules/typebox/build/value/repair/error.mjs +8 -0
  3504. package/extensions/third-party/node_modules/typebox/build/value/repair/from_array.d.mts +2 -0
  3505. package/extensions/third-party/node_modules/typebox/build/value/repair/from_array.mjs +39 -0
  3506. package/extensions/third-party/node_modules/typebox/build/value/repair/from_base.d.mts +2 -0
  3507. package/extensions/third-party/node_modules/typebox/build/value/repair/from_base.mjs +8 -0
  3508. package/extensions/third-party/node_modules/typebox/build/value/repair/from_enum.d.mts +2 -0
  3509. package/extensions/third-party/node_modules/typebox/build/value/repair/from_enum.mjs +7 -0
  3510. package/extensions/third-party/node_modules/typebox/build/value/repair/from_intersect.d.mts +2 -0
  3511. package/extensions/third-party/node_modules/typebox/build/value/repair/from_intersect.mjs +8 -0
  3512. package/extensions/third-party/node_modules/typebox/build/value/repair/from_object.d.mts +2 -0
  3513. package/extensions/third-party/node_modules/typebox/build/value/repair/from_object.mjs +33 -0
  3514. package/extensions/third-party/node_modules/typebox/build/value/repair/from_record.d.mts +2 -0
  3515. package/extensions/third-party/node_modules/typebox/build/value/repair/from_record.mjs +33 -0
  3516. package/extensions/third-party/node_modules/typebox/build/value/repair/from_ref.d.mts +2 -0
  3517. package/extensions/third-party/node_modules/typebox/build/value/repair/from_ref.mjs +9 -0
  3518. package/extensions/third-party/node_modules/typebox/build/value/repair/from_template_literal.d.mts +2 -0
  3519. package/extensions/third-party/node_modules/typebox/build/value/repair/from_template_literal.mjs +7 -0
  3520. package/extensions/third-party/node_modules/typebox/build/value/repair/from_tuple.d.mts +2 -0
  3521. package/extensions/third-party/node_modules/typebox/build/value/repair/from_tuple.mjs +12 -0
  3522. package/extensions/third-party/node_modules/typebox/build/value/repair/from_type.d.mts +2 -0
  3523. package/extensions/third-party/node_modules/typebox/build/value/repair/from_type.mjs +86 -0
  3524. package/extensions/third-party/node_modules/typebox/build/value/repair/from_union.d.mts +2 -0
  3525. package/extensions/third-party/node_modules/typebox/build/value/repair/from_union.mjs +24 -0
  3526. package/extensions/third-party/node_modules/typebox/build/value/repair/from_unknown.d.mts +2 -0
  3527. package/extensions/third-party/node_modules/typebox/build/value/repair/from_unknown.mjs +12 -0
  3528. package/extensions/third-party/node_modules/typebox/build/value/repair/index.d.mts +1 -0
  3529. package/extensions/third-party/node_modules/typebox/build/value/repair/index.mjs +1 -0
  3530. package/extensions/third-party/node_modules/typebox/build/value/repair/repair.d.mts +17 -0
  3531. package/extensions/third-party/node_modules/typebox/build/value/repair/repair.mjs +20 -0
  3532. package/extensions/third-party/node_modules/typebox/build/value/shared/index.d.mts +3 -0
  3533. package/extensions/third-party/node_modules/typebox/build/value/shared/index.mjs +4 -0
  3534. package/extensions/third-party/node_modules/typebox/build/value/shared/optional_undefined.d.mts +2 -0
  3535. package/extensions/third-party/node_modules/typebox/build/value/shared/optional_undefined.mjs +15 -0
  3536. package/extensions/third-party/node_modules/typebox/build/value/shared/union_priority_sort.d.mts +3 -0
  3537. package/extensions/third-party/node_modules/typebox/build/value/shared/union_priority_sort.mjs +36 -0
  3538. package/extensions/third-party/node_modules/typebox/build/value/shared/union_score_select.d.mts +3 -0
  3539. package/extensions/third-party/node_modules/typebox/build/value/shared/union_score_select.mjs +51 -0
  3540. package/extensions/third-party/node_modules/typebox/build/value/value.d.mts +16 -0
  3541. package/extensions/third-party/node_modules/typebox/build/value/value.mjs +16 -0
  3542. package/extensions/third-party/node_modules/typebox/license +23 -0
  3543. package/extensions/third-party/node_modules/typebox/package.json +87 -0
  3544. package/extensions/third-party/node_modules/typebox/readme.md +356 -0
  3545. package/extensions/third-party/node_modules/yaml/LICENSE +13 -0
  3546. package/extensions/third-party/node_modules/yaml/README.md +172 -0
  3547. package/extensions/third-party/node_modules/yaml/bin.mjs +11 -0
  3548. package/extensions/third-party/node_modules/yaml/browser/dist/compose/compose-collection.js +88 -0
  3549. package/extensions/third-party/node_modules/yaml/browser/dist/compose/compose-doc.js +43 -0
  3550. package/extensions/third-party/node_modules/yaml/browser/dist/compose/compose-node.js +109 -0
  3551. package/extensions/third-party/node_modules/yaml/browser/dist/compose/compose-scalar.js +86 -0
  3552. package/extensions/third-party/node_modules/yaml/browser/dist/compose/composer.js +217 -0
  3553. package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-block-map.js +115 -0
  3554. package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +198 -0
  3555. package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +49 -0
  3556. package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-end.js +37 -0
  3557. package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +207 -0
  3558. package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +223 -0
  3559. package/extensions/third-party/node_modules/yaml/browser/dist/compose/resolve-props.js +146 -0
  3560. package/extensions/third-party/node_modules/yaml/browser/dist/compose/util-contains-newline.js +34 -0
  3561. package/extensions/third-party/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +26 -0
  3562. package/extensions/third-party/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +15 -0
  3563. package/extensions/third-party/node_modules/yaml/browser/dist/compose/util-map-includes.js +13 -0
  3564. package/extensions/third-party/node_modules/yaml/browser/dist/doc/Document.js +335 -0
  3565. package/extensions/third-party/node_modules/yaml/browser/dist/doc/anchors.js +71 -0
  3566. package/extensions/third-party/node_modules/yaml/browser/dist/doc/applyReviver.js +55 -0
  3567. package/extensions/third-party/node_modules/yaml/browser/dist/doc/createNode.js +88 -0
  3568. package/extensions/third-party/node_modules/yaml/browser/dist/doc/directives.js +176 -0
  3569. package/extensions/third-party/node_modules/yaml/browser/dist/errors.js +57 -0
  3570. package/extensions/third-party/node_modules/yaml/browser/dist/index.js +17 -0
  3571. package/extensions/third-party/node_modules/yaml/browser/dist/log.js +11 -0
  3572. package/extensions/third-party/node_modules/yaml/browser/dist/nodes/Alias.js +114 -0
  3573. package/extensions/third-party/node_modules/yaml/browser/dist/nodes/Collection.js +147 -0
  3574. package/extensions/third-party/node_modules/yaml/browser/dist/nodes/Node.js +38 -0
  3575. package/extensions/third-party/node_modules/yaml/browser/dist/nodes/Pair.js +36 -0
  3576. package/extensions/third-party/node_modules/yaml/browser/dist/nodes/Scalar.js +24 -0
  3577. package/extensions/third-party/node_modules/yaml/browser/dist/nodes/YAMLMap.js +144 -0
  3578. package/extensions/third-party/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +113 -0
  3579. package/extensions/third-party/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +63 -0
  3580. package/extensions/third-party/node_modules/yaml/browser/dist/nodes/identity.js +36 -0
  3581. package/extensions/third-party/node_modules/yaml/browser/dist/nodes/toJS.js +37 -0
  3582. package/extensions/third-party/node_modules/yaml/browser/dist/parse/cst-scalar.js +214 -0
  3583. package/extensions/third-party/node_modules/yaml/browser/dist/parse/cst-stringify.js +61 -0
  3584. package/extensions/third-party/node_modules/yaml/browser/dist/parse/cst-visit.js +97 -0
  3585. package/extensions/third-party/node_modules/yaml/browser/dist/parse/cst.js +98 -0
  3586. package/extensions/third-party/node_modules/yaml/browser/dist/parse/lexer.js +717 -0
  3587. package/extensions/third-party/node_modules/yaml/browser/dist/parse/line-counter.js +39 -0
  3588. package/extensions/third-party/node_modules/yaml/browser/dist/parse/parser.js +967 -0
  3589. package/extensions/third-party/node_modules/yaml/browser/dist/public-api.js +102 -0
  3590. package/extensions/third-party/node_modules/yaml/browser/dist/schema/Schema.js +37 -0
  3591. package/extensions/third-party/node_modules/yaml/browser/dist/schema/common/map.js +17 -0
  3592. package/extensions/third-party/node_modules/yaml/browser/dist/schema/common/null.js +15 -0
  3593. package/extensions/third-party/node_modules/yaml/browser/dist/schema/common/seq.js +17 -0
  3594. package/extensions/third-party/node_modules/yaml/browser/dist/schema/common/string.js +14 -0
  3595. package/extensions/third-party/node_modules/yaml/browser/dist/schema/core/bool.js +19 -0
  3596. package/extensions/third-party/node_modules/yaml/browser/dist/schema/core/float.js +43 -0
  3597. package/extensions/third-party/node_modules/yaml/browser/dist/schema/core/int.js +38 -0
  3598. package/extensions/third-party/node_modules/yaml/browser/dist/schema/core/schema.js +23 -0
  3599. package/extensions/third-party/node_modules/yaml/browser/dist/schema/json/schema.js +62 -0
  3600. package/extensions/third-party/node_modules/yaml/browser/dist/schema/tags.js +96 -0
  3601. package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +58 -0
  3602. package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +26 -0
  3603. package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +46 -0
  3604. package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +71 -0
  3605. package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.js +64 -0
  3606. package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +74 -0
  3607. package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +78 -0
  3608. package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +39 -0
  3609. package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +93 -0
  3610. package/extensions/third-party/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
  3611. package/extensions/third-party/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +146 -0
  3612. package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringify.js +129 -0
  3613. package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +153 -0
  3614. package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyComment.js +20 -0
  3615. package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +85 -0
  3616. package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +24 -0
  3617. package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyPair.js +150 -0
  3618. package/extensions/third-party/node_modules/yaml/browser/dist/stringify/stringifyString.js +336 -0
  3619. package/extensions/third-party/node_modules/yaml/browser/dist/util.js +11 -0
  3620. package/extensions/third-party/node_modules/yaml/browser/dist/visit.js +233 -0
  3621. package/extensions/third-party/node_modules/yaml/browser/index.js +5 -0
  3622. package/extensions/third-party/node_modules/yaml/browser/package.json +3 -0
  3623. package/extensions/third-party/node_modules/yaml/dist/cli.d.ts +8 -0
  3624. package/extensions/third-party/node_modules/yaml/dist/cli.mjs +201 -0
  3625. package/extensions/third-party/node_modules/yaml/dist/compose/compose-collection.d.ts +11 -0
  3626. package/extensions/third-party/node_modules/yaml/dist/compose/compose-collection.js +90 -0
  3627. package/extensions/third-party/node_modules/yaml/dist/compose/compose-doc.d.ts +7 -0
  3628. package/extensions/third-party/node_modules/yaml/dist/compose/compose-doc.js +45 -0
  3629. package/extensions/third-party/node_modules/yaml/dist/compose/compose-node.d.ts +29 -0
  3630. package/extensions/third-party/node_modules/yaml/dist/compose/compose-node.js +112 -0
  3631. package/extensions/third-party/node_modules/yaml/dist/compose/compose-scalar.d.ts +5 -0
  3632. package/extensions/third-party/node_modules/yaml/dist/compose/compose-scalar.js +88 -0
  3633. package/extensions/third-party/node_modules/yaml/dist/compose/composer.d.ts +63 -0
  3634. package/extensions/third-party/node_modules/yaml/dist/compose/composer.js +222 -0
  3635. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-map.d.ts +6 -0
  3636. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-map.js +117 -0
  3637. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +11 -0
  3638. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-scalar.js +200 -0
  3639. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +6 -0
  3640. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-block-seq.js +51 -0
  3641. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-end.d.ts +6 -0
  3642. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-end.js +39 -0
  3643. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +7 -0
  3644. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-flow-collection.js +209 -0
  3645. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +10 -0
  3646. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-flow-scalar.js +225 -0
  3647. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-props.d.ts +23 -0
  3648. package/extensions/third-party/node_modules/yaml/dist/compose/resolve-props.js +148 -0
  3649. package/extensions/third-party/node_modules/yaml/dist/compose/util-contains-newline.d.ts +2 -0
  3650. package/extensions/third-party/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
  3651. package/extensions/third-party/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +2 -0
  3652. package/extensions/third-party/node_modules/yaml/dist/compose/util-empty-scalar-position.js +28 -0
  3653. package/extensions/third-party/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +3 -0
  3654. package/extensions/third-party/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
  3655. package/extensions/third-party/node_modules/yaml/dist/compose/util-map-includes.d.ts +4 -0
  3656. package/extensions/third-party/node_modules/yaml/dist/compose/util-map-includes.js +15 -0
  3657. package/extensions/third-party/node_modules/yaml/dist/doc/Document.d.ts +141 -0
  3658. package/extensions/third-party/node_modules/yaml/dist/doc/Document.js +337 -0
  3659. package/extensions/third-party/node_modules/yaml/dist/doc/anchors.d.ts +24 -0
  3660. package/extensions/third-party/node_modules/yaml/dist/doc/anchors.js +76 -0
  3661. package/extensions/third-party/node_modules/yaml/dist/doc/applyReviver.d.ts +9 -0
  3662. package/extensions/third-party/node_modules/yaml/dist/doc/applyReviver.js +57 -0
  3663. package/extensions/third-party/node_modules/yaml/dist/doc/createNode.d.ts +17 -0
  3664. package/extensions/third-party/node_modules/yaml/dist/doc/createNode.js +90 -0
  3665. package/extensions/third-party/node_modules/yaml/dist/doc/directives.d.ts +49 -0
  3666. package/extensions/third-party/node_modules/yaml/dist/doc/directives.js +178 -0
  3667. package/extensions/third-party/node_modules/yaml/dist/errors.d.ts +21 -0
  3668. package/extensions/third-party/node_modules/yaml/dist/errors.js +62 -0
  3669. package/extensions/third-party/node_modules/yaml/dist/index.d.ts +25 -0
  3670. package/extensions/third-party/node_modules/yaml/dist/index.js +50 -0
  3671. package/extensions/third-party/node_modules/yaml/dist/log.d.ts +3 -0
  3672. package/extensions/third-party/node_modules/yaml/dist/log.js +19 -0
  3673. package/extensions/third-party/node_modules/yaml/dist/nodes/Alias.d.ts +29 -0
  3674. package/extensions/third-party/node_modules/yaml/dist/nodes/Alias.js +116 -0
  3675. package/extensions/third-party/node_modules/yaml/dist/nodes/Collection.d.ts +73 -0
  3676. package/extensions/third-party/node_modules/yaml/dist/nodes/Collection.js +151 -0
  3677. package/extensions/third-party/node_modules/yaml/dist/nodes/Node.d.ts +53 -0
  3678. package/extensions/third-party/node_modules/yaml/dist/nodes/Node.js +40 -0
  3679. package/extensions/third-party/node_modules/yaml/dist/nodes/Pair.d.ts +22 -0
  3680. package/extensions/third-party/node_modules/yaml/dist/nodes/Pair.js +39 -0
  3681. package/extensions/third-party/node_modules/yaml/dist/nodes/Scalar.d.ts +43 -0
  3682. package/extensions/third-party/node_modules/yaml/dist/nodes/Scalar.js +27 -0
  3683. package/extensions/third-party/node_modules/yaml/dist/nodes/YAMLMap.d.ts +53 -0
  3684. package/extensions/third-party/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
  3685. package/extensions/third-party/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +60 -0
  3686. package/extensions/third-party/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
  3687. package/extensions/third-party/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +4 -0
  3688. package/extensions/third-party/node_modules/yaml/dist/nodes/addPairToJSMap.js +65 -0
  3689. package/extensions/third-party/node_modules/yaml/dist/nodes/identity.d.ts +23 -0
  3690. package/extensions/third-party/node_modules/yaml/dist/nodes/identity.js +53 -0
  3691. package/extensions/third-party/node_modules/yaml/dist/nodes/toJS.d.ts +29 -0
  3692. package/extensions/third-party/node_modules/yaml/dist/nodes/toJS.js +39 -0
  3693. package/extensions/third-party/node_modules/yaml/dist/options.d.ts +350 -0
  3694. package/extensions/third-party/node_modules/yaml/dist/parse/cst-scalar.d.ts +64 -0
  3695. package/extensions/third-party/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
  3696. package/extensions/third-party/node_modules/yaml/dist/parse/cst-stringify.d.ts +8 -0
  3697. package/extensions/third-party/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
  3698. package/extensions/third-party/node_modules/yaml/dist/parse/cst-visit.d.ts +39 -0
  3699. package/extensions/third-party/node_modules/yaml/dist/parse/cst-visit.js +99 -0
  3700. package/extensions/third-party/node_modules/yaml/dist/parse/cst.d.ts +109 -0
  3701. package/extensions/third-party/node_modules/yaml/dist/parse/cst.js +112 -0
  3702. package/extensions/third-party/node_modules/yaml/dist/parse/lexer.d.ts +87 -0
  3703. package/extensions/third-party/node_modules/yaml/dist/parse/lexer.js +719 -0
  3704. package/extensions/third-party/node_modules/yaml/dist/parse/line-counter.d.ts +22 -0
  3705. package/extensions/third-party/node_modules/yaml/dist/parse/line-counter.js +41 -0
  3706. package/extensions/third-party/node_modules/yaml/dist/parse/parser.d.ts +84 -0
  3707. package/extensions/third-party/node_modules/yaml/dist/parse/parser.js +972 -0
  3708. package/extensions/third-party/node_modules/yaml/dist/public-api.d.ts +44 -0
  3709. package/extensions/third-party/node_modules/yaml/dist/public-api.js +107 -0
  3710. package/extensions/third-party/node_modules/yaml/dist/schema/Schema.d.ts +17 -0
  3711. package/extensions/third-party/node_modules/yaml/dist/schema/Schema.js +39 -0
  3712. package/extensions/third-party/node_modules/yaml/dist/schema/common/map.d.ts +2 -0
  3713. package/extensions/third-party/node_modules/yaml/dist/schema/common/map.js +19 -0
  3714. package/extensions/third-party/node_modules/yaml/dist/schema/common/null.d.ts +4 -0
  3715. package/extensions/third-party/node_modules/yaml/dist/schema/common/null.js +17 -0
  3716. package/extensions/third-party/node_modules/yaml/dist/schema/common/seq.d.ts +2 -0
  3717. package/extensions/third-party/node_modules/yaml/dist/schema/common/seq.js +19 -0
  3718. package/extensions/third-party/node_modules/yaml/dist/schema/common/string.d.ts +2 -0
  3719. package/extensions/third-party/node_modules/yaml/dist/schema/common/string.js +16 -0
  3720. package/extensions/third-party/node_modules/yaml/dist/schema/core/bool.d.ts +4 -0
  3721. package/extensions/third-party/node_modules/yaml/dist/schema/core/bool.js +21 -0
  3722. package/extensions/third-party/node_modules/yaml/dist/schema/core/float.d.ts +4 -0
  3723. package/extensions/third-party/node_modules/yaml/dist/schema/core/float.js +47 -0
  3724. package/extensions/third-party/node_modules/yaml/dist/schema/core/int.d.ts +4 -0
  3725. package/extensions/third-party/node_modules/yaml/dist/schema/core/int.js +42 -0
  3726. package/extensions/third-party/node_modules/yaml/dist/schema/core/schema.d.ts +1 -0
  3727. package/extensions/third-party/node_modules/yaml/dist/schema/core/schema.js +25 -0
  3728. package/extensions/third-party/node_modules/yaml/dist/schema/json/schema.d.ts +2 -0
  3729. package/extensions/third-party/node_modules/yaml/dist/schema/json/schema.js +64 -0
  3730. package/extensions/third-party/node_modules/yaml/dist/schema/json-schema.d.ts +69 -0
  3731. package/extensions/third-party/node_modules/yaml/dist/schema/tags.d.ts +48 -0
  3732. package/extensions/third-party/node_modules/yaml/dist/schema/tags.js +99 -0
  3733. package/extensions/third-party/node_modules/yaml/dist/schema/types.d.ts +92 -0
  3734. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +2 -0
  3735. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/binary.js +70 -0
  3736. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +7 -0
  3737. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
  3738. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +4 -0
  3739. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
  3740. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +5 -0
  3741. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
  3742. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/merge.d.ts +9 -0
  3743. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/merge.js +68 -0
  3744. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +22 -0
  3745. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
  3746. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +10 -0
  3747. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
  3748. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +1 -0
  3749. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/schema.js +41 -0
  3750. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +28 -0
  3751. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
  3752. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
  3753. package/extensions/third-party/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
  3754. package/extensions/third-party/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +34 -0
  3755. package/extensions/third-party/node_modules/yaml/dist/stringify/foldFlowLines.js +151 -0
  3756. package/extensions/third-party/node_modules/yaml/dist/stringify/stringify.d.ts +21 -0
  3757. package/extensions/third-party/node_modules/yaml/dist/stringify/stringify.js +132 -0
  3758. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +17 -0
  3759. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyCollection.js +155 -0
  3760. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyComment.d.ts +10 -0
  3761. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
  3762. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +4 -0
  3763. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
  3764. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +2 -0
  3765. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyNumber.js +26 -0
  3766. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyPair.d.ts +3 -0
  3767. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
  3768. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyString.d.ts +9 -0
  3769. package/extensions/third-party/node_modules/yaml/dist/stringify/stringifyString.js +338 -0
  3770. package/extensions/third-party/node_modules/yaml/dist/test-events.d.ts +4 -0
  3771. package/extensions/third-party/node_modules/yaml/dist/test-events.js +134 -0
  3772. package/extensions/third-party/node_modules/yaml/dist/util.d.ts +16 -0
  3773. package/extensions/third-party/node_modules/yaml/dist/util.js +28 -0
  3774. package/extensions/third-party/node_modules/yaml/dist/visit.d.ts +102 -0
  3775. package/extensions/third-party/node_modules/yaml/dist/visit.js +236 -0
  3776. package/extensions/third-party/node_modules/yaml/package.json +97 -0
  3777. package/extensions/third-party/node_modules/yaml/util.js +2 -0
  3778. package/extensions/third-party/package-lock.json +184 -0
  3779. package/extensions/third-party/package.json +11 -0
  3780. package/extensions/third-party/subagent-policy.ts +165 -0
  3781. package/extensions/third-party/vendor/README.md +16 -0
  3782. package/extensions/third-party/vendor/pi-subagents-0.52.1-dev-agent-followthrough.2.tgz +0 -0
  3783. package/npm-shrinkwrap.json +2259 -0
  3784. package/package.json +73 -0
  3785. package/runtime/process-tree.ts +143 -0
  3786. package/runtime/product-config.mjs +21 -0
  3787. package/runtime/resolve-installed-pi.mjs +77 -0
  3788. package/runtime/verify-pi-runtime.mjs +257 -0
  3789. package/skills/pi-subagents/SKILL.md +44 -0
@@ -0,0 +1,2423 @@
1
+ import { spawn, type ChildProcess } from "node:child_process";
2
+ import { randomUUID } from "node:crypto";
3
+ import { constants as fsConstants } from "node:fs";
4
+ import { access } from "node:fs/promises";
5
+ import net from "node:net";
6
+ import os from "node:os";
7
+ import path from "node:path";
8
+ import type { AgentToolResult, AgentToolUpdateCallback, ExtensionContext } from "@earendil-works/pi-coding-agent";
9
+ import { canRetryInForeground, outcomeAfterCheck, outcomeAfterObservedValues, prepareAction, type ActionState, type PreparedAction } from "./actions.ts";
10
+ import { cdpClickForContext, cdpDragForContext, cdpEvaluateForContext, cdpKeypressForContext, cdpMouseForContext, cdpNavigateContext, cdpScrollForContext, cdpSnapshotForContext, cdpTabForWindow, cdpTypeFocusedForContext, cdpTypeForContext, disconnectCdp, listCdpPageContexts, type CdpConsoleEntry, type CdpPageSnapshot } from "./cdp.ts";
11
+ import { getComputerUseConfig, isBrowserUseEnabled, isHeadlessMode, loadComputerUseConfig } from "./config.ts";
12
+ import { noteAfterAct, noteFromLook, noteRegionKeyForRef, renderNote, type WindowNote } from "./note.ts";
13
+ import { foldToBudget, graftScopedOutline, nodeByRef, outlineNodeLabel, outlineNodePath, rankedTextMatch, restoreOutline, searchOutline, searchOutlineRanked, serializeOutline, serializeOutlineNodeShallow, serializeOutlineSearchMatch, type LookResponse, type Outline, type OutlineChange, type OutlineNode, type OutlineSearchMatch, type SerializedOutline, type SerializedOutlineNode, type SerializedOutlineSearchMatch } from "./outline.ts";
14
+ import { applyOutputEnvelope, boundToolError, clearStoredOutputs, readStoredOutput, UI_TEXT_PAGE_CHARS } from "./output.ts";
15
+ import { AGENT_TOOL_NAMES, type ActParams, type EvaluateBrowserParams, type ExpandUiParams, type ImageMode, type InspectUiParams, type LaunchBrowserParams, type FindParams, type NavigateBrowserParams, type ObserveParams, type ObserveTargetParams, type ReadTextParams, type RootSelector, type SearchUiParams, type UiAction, type WaitForParams } from "./contract.ts";
16
+ import { toFiniteNumber } from "./platform/coerce.ts";
17
+ import { currentPlatformBackend } from "./platform/index.ts";
18
+ import type { FramePoints, HelperActPerformed, HelperActResult, NativeInputDelivery, PlatformActRequest, PlatformApp as HelperApp, PlatformDiagnostics, PlatformFrontmostResult as FrontmostResult, PlatformRoot as HelperWindow } from "./platform/types.ts";
19
+ import type { PermissionStatus } from "./permissions.ts";
20
+ import { ResourceScheduler } from "./runtime.ts";
21
+ import { SavedStates, type CurrentCapture, type CurrentTarget, type OperationState } from "./state.ts";
22
+ import { changesBetween, renderChanges, stabilizeRefs } from "./view.ts";
23
+ export type { ActParams, EvaluateBrowserParams, ExpandUiParams, ImageMode, InspectUiParams, LaunchBrowserParams, FindParams, MouseButtonName, NavigateBrowserParams, ObserveParams, ObserveTargetParams, ReadTextParams, RootSelector, SearchUiParams, StateTargetParams, UiAction, WaitForParams } from "./contract.ts";
24
+
25
+ interface ActivationFlags {
26
+ activated: boolean;
27
+ unminimized: boolean;
28
+ raised: boolean;
29
+ }
30
+
31
+ type ExecutionVariant = "stealth" | "default";
32
+ type ActionDelivery = "ax" | NativeInputDelivery;
33
+ type DeliveryPolicy = "ax_only" | "background" | "default" | "foreground";
34
+ type ActOutcome = "worked" | "didnt" | "unknown";
35
+
36
+ interface ExecutionTrace {
37
+ strategy:
38
+ | "look"
39
+ | "act"
40
+ | "wait"
41
+ | "browser_open_location"
42
+ | "cdp_navigate";
43
+ runtimeMode?: ExecutionVariant;
44
+ variant?: ExecutionVariant;
45
+ stealthCompatible?: boolean;
46
+ delivery?: ActionDelivery;
47
+ deliveryPolicy?: DeliveryPolicy;
48
+ outcome?: ActOutcome;
49
+ performed?: HelperActPerformed;
50
+ evidence?: Record<string, unknown>;
51
+ error?: HelperActResult["error"];
52
+ rootDelta?: HelperActResult["rootDelta"];
53
+ steps?: ExecutionTrace[];
54
+ actionCount?: number;
55
+ stoppedAt?: number;
56
+ backgroundFirst?: boolean;
57
+ escalatedToForeground?: boolean;
58
+ escalationReason?: string;
59
+ backgroundAttempt?: { outcome: "foreground_required" | "didnt"; reason: string };
60
+ verification?: {
61
+ status: "verified" | "preexisting" | "failed";
62
+ text?: string;
63
+ role?: string;
64
+ value?: string;
65
+ gone?: boolean;
66
+ timeoutMs: number;
67
+ };
68
+ }
69
+
70
+ interface ComputerUseDetails {
71
+ tool: string;
72
+ target: {
73
+ app: string;
74
+ bundleId?: string;
75
+ pid: number;
76
+ windowTitle: string;
77
+ windowId: number;
78
+ windowRef?: string;
79
+ nativeWindowRef?: string;
80
+ };
81
+ capture: {
82
+ stateId: string;
83
+ width: number;
84
+ height: number;
85
+ scaleFactor: number;
86
+ timestamp: number;
87
+ coordinateSpace: "window-relative-screenshot-pixels";
88
+ };
89
+ lookId?: string;
90
+ view: "full" | "diff";
91
+ baseStateId?: string;
92
+ changes?: OutlineChange[];
93
+ viewReason?: "root_replaced" | "change_budget_exceeded" | "identity_confidence_low";
94
+ renderedOutline?: string;
95
+ outline?: SerializedOutline;
96
+ note?: WindowNote;
97
+ activation: ActivationFlags;
98
+ execution: ExecutionTrace;
99
+ config?: {
100
+ browser_use: boolean;
101
+ headless: boolean;
102
+ };
103
+ helper?: PlatformDiagnostics;
104
+ status?: "ok";
105
+ axDiagnostics?: {
106
+ reason?: string;
107
+ message?: string;
108
+ debug?: unknown;
109
+ };
110
+ /** Recent browser console messages/exceptions; only present when CDP is active. */
111
+ console?: CdpConsoleEntry[];
112
+ imageReason?:
113
+ | "fallback_recovery"
114
+ | "browser_ax_window_unavailable"
115
+ | "no_ax_targets"
116
+ | "sparse_ax_targets"
117
+ | "weak_ax_targets"
118
+ | "unlabeled_ax_targets"
119
+ | "duplicated_ax_labels"
120
+ | "browser_wait_verification";
121
+ }
122
+ interface TerminalDesktopActionDetails {
123
+ tool: "act_ui";
124
+ status: "target_closed" | "post_action_observation_failed";
125
+ baseStateId: string;
126
+ target: {
127
+ app: string;
128
+ bundleId?: string;
129
+ pid: number;
130
+ windowTitle: string;
131
+ windowId: number;
132
+ windowRef?: string;
133
+ nativeWindowRef?: string;
134
+ };
135
+ execution: ExecutionTrace;
136
+ error: { code: string; message: string };
137
+ }
138
+
139
+
140
+ interface ListWindowsDetails {
141
+ tool: "find_roots";
142
+ query: FindParams;
143
+ totalMatches?: number;
144
+ returned?: number;
145
+ hasMore?: boolean;
146
+ windows: Array<{
147
+ app: string;
148
+ bundleId?: string;
149
+ pid: number;
150
+ kind: string;
151
+ windowTitle: string;
152
+ windowId?: number;
153
+ windowRef: string;
154
+ nativeWindowRef?: string;
155
+ framePoints: FramePoints;
156
+ scaleFactor: number;
157
+ isMinimized: boolean;
158
+ isOnscreen: boolean;
159
+ isMain: boolean;
160
+ isFocused: boolean;
161
+ isModal: boolean;
162
+ sheetCount?: number;
163
+ role?: string;
164
+ subrole?: string;
165
+ pairing?: { confidence: "exact" | "high" | "low"; score: number };
166
+ zOrder: number;
167
+ browserUseAllowed: boolean;
168
+ score: number;
169
+ url?: string;
170
+ }>;
171
+ config: {
172
+ browser_use: boolean;
173
+ headless: boolean;
174
+ };
175
+ }
176
+
177
+ interface BrowserObservationDetails {
178
+ tool: string;
179
+ kind: "browser_page";
180
+ stateId: string;
181
+ baseStateId?: string;
182
+ view: "full" | "diff";
183
+ changes?: OutlineChange[];
184
+ root: { ref: string; kind: "browser_page"; title: string; url: string };
185
+ outline: SerializedOutline;
186
+ renderedOutline: string;
187
+ }
188
+
189
+ interface EvaluateBrowserDetails {
190
+ tool: "evaluate_browser";
191
+ baseStateId: string;
192
+ stateId: string;
193
+ view: "full" | "diff";
194
+ changes?: OutlineChange[];
195
+ outline: SerializedOutline;
196
+ renderedOutline: string;
197
+ }
198
+
199
+ interface ReadTextDetails {
200
+ tool: "read_text";
201
+ ref?: string;
202
+ offset: number;
203
+ limit: number;
204
+ totalChars?: number;
205
+ totalBytes?: number;
206
+ hasMore: boolean;
207
+ complete?: boolean;
208
+ text: string;
209
+ }
210
+
211
+ interface WaitForDetails {
212
+ tool: "wait_for";
213
+ stateId: string;
214
+ baseStateId?: string;
215
+ view: "full" | "diff";
216
+ changes?: OutlineChange[];
217
+ found: boolean;
218
+ gone?: boolean;
219
+ timedOut?: boolean;
220
+ target?: SerializedOutlineSearchMatch;
221
+ nodeCount?: number;
222
+ text?: string;
223
+ role?: string;
224
+ value?: string;
225
+ scopeRef?: string;
226
+ outline: SerializedOutline;
227
+ renderedOutline: string;
228
+ }
229
+
230
+ interface OutlineToolDetails {
231
+ tool: "search_ui" | "expand_ui" | "inspect_ui";
232
+ stateId?: string;
233
+ lookId?: string;
234
+ outline?: SerializedOutline;
235
+ renderedOutline?: string;
236
+ totalMatches?: number;
237
+ returned?: number;
238
+ hasMore?: boolean;
239
+ matches?: SerializedOutlineSearchMatch[];
240
+ target?: SerializedOutlineNode;
241
+ note?: WindowNote;
242
+ }
243
+
244
+ interface ResolvedTarget extends CurrentTarget {
245
+ framePoints: FramePoints;
246
+ scaleFactor: number;
247
+ isMinimized: boolean;
248
+ isOnscreen: boolean;
249
+ isMain: boolean;
250
+ isFocused: boolean;
251
+ }
252
+
253
+ interface WindowRefRecord {
254
+ ref: string;
255
+ appName: string;
256
+ bundleId?: string;
257
+ pid: number;
258
+ windowTitle: string;
259
+ windowId?: number;
260
+ nativeWindowRef?: string;
261
+ framePoints: FramePoints;
262
+ scaleFactor: number;
263
+ isMinimized: boolean;
264
+ isOnscreen: boolean;
265
+ isMain: boolean;
266
+ isFocused: boolean;
267
+ }
268
+
269
+ interface RuntimeState {
270
+ windowRefs: Map<string, WindowRefRecord>;
271
+ windowRefByIdentity: Map<string, string>;
272
+ browserRootByContext: Map<string, string>;
273
+ browserContextByRoot: Map<string, string>;
274
+ nextRootRefIndex: number;
275
+ managedBrowser?: ChildProcess;
276
+ managedBrowserCdpPort?: string;
277
+ previousCdpPort?: string;
278
+ permissionStatus?: PermissionStatus;
279
+ helperDiagnostics?: PlatformDiagnostics;
280
+ lastPermissionCheckAt: number;
281
+ }
282
+
283
+
284
+ const MISSING_TARGET_ERROR = "No current controlled window. Call observe_ui first to choose a target window.";
285
+ const CURRENT_TARGET_GONE_ERROR =
286
+ "The current controlled window is no longer available. Call observe_ui to choose a new target window.";
287
+
288
+ const COMMAND_TIMEOUT_MS = 15_000;
289
+ const LOOK_TIMEOUT_MS = 33_000;
290
+
291
+ const ACTION_SETTLE_MS = 280;
292
+
293
+ const BROWSER_CONTEXT_PREFIX = "browser:";
294
+ const MANAGED_BROWSER_READY_TIMEOUT_MS = 15_000;
295
+ const AUTO_IMAGE_MAX_DIMENSION = 900;
296
+ const EXPLICIT_IMAGE_MAX_DIMENSION = 1_600;
297
+ const BROWSER_TRANSACTION_ACTIONS = new Set<UiAction["action"]>(["press", "click", "setText", "typeText", "keypress", "scroll", "drag", "moveMouse"]);
298
+
299
+ const runtimeState: RuntimeState = {
300
+ lastPermissionCheckAt: 0,
301
+ windowRefs: new Map(),
302
+ windowRefByIdentity: new Map(),
303
+ browserRootByContext: new Map(),
304
+ browserContextByRoot: new Map(),
305
+ nextRootRefIndex: 1,
306
+ };
307
+
308
+ const savedStates = new SavedStates();
309
+ let resourceScheduler = new ResourceScheduler();
310
+
311
+ function operationState(): OperationState {
312
+ return savedStates.current();
313
+ }
314
+
315
+ function desktopResourceKey(target: Pick<CurrentTarget, "pid">): string {
316
+ return `desktop-pid:${target.pid}`;
317
+ }
318
+
319
+ function persistOperation(state: OperationState): void {
320
+ if (!state.currentTarget || !state.currentCapture || !state.currentLook || !state.currentOutline) return;
321
+ const resourceKey = state.resourceKey ?? desktopResourceKey(state.currentTarget);
322
+ const epoch = state.epoch ?? resourceScheduler.epoch(resourceKey);
323
+ savedStates.saveDesktop(state, resourceKey, epoch);
324
+ }
325
+
326
+ /** Release handles and state owned by the current Pi session. */
327
+ export async function shutdownComputerUseSession(): Promise<void> {
328
+ await resourceScheduler.close();
329
+ resourceScheduler = new ResourceScheduler();
330
+ disconnectCdp();
331
+
332
+ const managedBrowser = runtimeState.managedBrowser;
333
+ runtimeState.managedBrowser = undefined;
334
+ if (managedBrowser) {
335
+ managedBrowser.kill("SIGTERM");
336
+ managedBrowser.unref();
337
+ }
338
+ if (runtimeState.managedBrowserCdpPort && process.env.PI_COMPUTER_USE_CDP_PORT === runtimeState.managedBrowserCdpPort) {
339
+ if (runtimeState.previousCdpPort === undefined) delete process.env.PI_COMPUTER_USE_CDP_PORT;
340
+ else process.env.PI_COMPUTER_USE_CDP_PORT = runtimeState.previousCdpPort;
341
+ }
342
+ runtimeState.managedBrowserCdpPort = undefined;
343
+ runtimeState.previousCdpPort = undefined;
344
+
345
+ savedStates.clear();
346
+ clearStoredOutputs();
347
+ runtimeState.windowRefs.clear();
348
+ runtimeState.windowRefByIdentity.clear();
349
+ runtimeState.browserRootByContext.clear();
350
+ runtimeState.browserContextByRoot.clear();
351
+ runtimeState.nextRootRefIndex = 1;
352
+ runtimeState.permissionStatus = undefined;
353
+ runtimeState.helperDiagnostics = undefined;
354
+ runtimeState.lastPermissionCheckAt = 0;
355
+ await currentPlatformBackend.shutdown?.();
356
+ }
357
+
358
+ function currentRuntimeMode(): ExecutionVariant {
359
+ return isHeadlessMode() ? "stealth" : "default";
360
+ }
361
+
362
+ function currentDeliveryPolicy(): DeliveryPolicy {
363
+ if (isHeadlessMode()) return "background";
364
+ const value = (process.env.PI_COMPUTER_USE_DELIVERY_POLICY ?? process.env.PI_COMPUTER_USE_EVENT_DELIVERY ?? "default").toLowerCase();
365
+ return value === "background" || value === "pid" ? "background" : value === "foreground" || value === "hid" ? "foreground" : value === "ax_only" || value === "ax-only" ? "ax_only" : "default";
366
+ }
367
+
368
+ function nativeInputDelivery(policy = currentDeliveryPolicy()): NativeInputDelivery {
369
+ return policy === "foreground" ? "hid" : "pid";
370
+ }
371
+
372
+ function executionTrace(
373
+ strategy: ExecutionTrace["strategy"],
374
+ variant: ExecutionVariant,
375
+ metadata: Omit<ExecutionTrace, "strategy" | "runtimeMode" | "variant" | "stealthCompatible"> = {},
376
+ ): ExecutionTrace {
377
+ return {
378
+ strategy,
379
+ runtimeMode: currentRuntimeMode(),
380
+ variant,
381
+ stealthCompatible: variant === "stealth",
382
+ ...metadata,
383
+ };
384
+ }
385
+
386
+ function settleMsForExecution(execution: ExecutionTrace): number {
387
+ // Any deltaSource means the helper already awaited UI quiescence; the
388
+ // bridge must not double-pay with its own settle sleep.
389
+ if (execution.performed?.deltaSource) return 0;
390
+ if (execution.variant === "stealth") {
391
+ switch (execution.strategy) {
392
+ case "browser_open_location":
393
+ return 120;
394
+ default:
395
+ return 120;
396
+ }
397
+ }
398
+ return ACTION_SETTLE_MS;
399
+ }
400
+
401
+ function throwIfAborted(signal?: AbortSignal): void {
402
+ if (signal?.aborted) {
403
+ throw new Error("Operation aborted.");
404
+ }
405
+ }
406
+
407
+ async function sleep(ms: number, signal?: AbortSignal): Promise<void> {
408
+ if (ms <= 0) return;
409
+ throwIfAborted(signal);
410
+
411
+ await new Promise<void>((resolve, reject) => {
412
+ const timer = setTimeout(() => {
413
+ cleanup();
414
+ resolve();
415
+ }, ms);
416
+
417
+ const onAbort = () => {
418
+ cleanup();
419
+ reject(new Error("Operation aborted."));
420
+ };
421
+
422
+ const cleanup = () => {
423
+ clearTimeout(timer);
424
+ signal?.removeEventListener("abort", onAbort);
425
+ };
426
+
427
+ signal?.addEventListener("abort", onAbort, { once: true });
428
+ });
429
+ }
430
+
431
+ async function withWindowWriteLock<T>(target: ResolvedTarget | CurrentTarget, work: () => Promise<T>): Promise<T> {
432
+ const state = operationState();
433
+ const key = desktopResourceKey(target);
434
+ const baseEpoch = state.epoch ?? resourceScheduler.epoch(key);
435
+ const result = await resourceScheduler.write(key, baseEpoch, async (nextEpoch) => {
436
+ state.resourceKey = key;
437
+ state.epoch = nextEpoch;
438
+ return await work();
439
+ });
440
+ return result.value;
441
+ }
442
+
443
+
444
+ function trimOrUndefined(value: string | undefined): string | undefined {
445
+ if (typeof value !== "string") return undefined;
446
+ const trimmed = value.trim();
447
+ return trimmed.length > 0 ? trimmed : undefined;
448
+ }
449
+
450
+ function normalizeText(value: string | undefined): string {
451
+ return (value ?? "").trim().toLowerCase();
452
+ }
453
+
454
+ function toBoolean(value: unknown): boolean {
455
+ return value === true;
456
+ }
457
+
458
+ function outlineNodeCenter(node: OutlineNode): { x: number; y: number } {
459
+ if (!node.rect) {
460
+ throw new Error(`Outline ref '${node.ref}' has no full-look coordinates after scoped expansion. Re-observe for coordinates.`);
461
+ }
462
+ return { x: node.rect.x + node.rect.w / 2, y: node.rect.y + node.rect.h / 2 };
463
+ }
464
+
465
+ function validateStateId(stateId?: string): CurrentCapture {
466
+ const state = operationState();
467
+ if (!state.currentCapture) {
468
+ throw new Error("No observation state is available. Call observe_ui first.");
469
+ }
470
+ const supplied = stateId;
471
+ if (supplied && state.currentCapture.stateId !== supplied) {
472
+ throw new Error(
473
+ `Stale state '${supplied}'. The active operation state is '${state.currentCapture.stateId}'. Observe the root again and retry.`,
474
+ );
475
+ }
476
+ const stateTarget = state.currentStateTarget;
477
+ if (stateTarget && state.currentTarget && (stateTarget.pid !== state.currentTarget.pid || stateTarget.windowId !== state.currentTarget.windowId)) {
478
+ throw new Error("The latest state belongs to a different window. Call observe_ui for the target window and retry.");
479
+ }
480
+ return state.currentCapture;
481
+ }
482
+
483
+ function formatOutlineNodeLabel(node: OutlineNode): string {
484
+ const label = outlineNodeLabel(node) || "(unlabeled)";
485
+ const identifier = node.identifier ? ` id=${JSON.stringify(node.identifier)}` : "";
486
+ const capabilities = [
487
+ node.canSetValue ? "setValue" : undefined,
488
+ node.canPress ? "press" : undefined,
489
+ node.canFocus ? "focus" : undefined,
490
+ node.canScroll ? "scroll" : undefined,
491
+ node.canIncrement || node.canDecrement ? "adjust" : undefined,
492
+ node.pictureOnly ? "pictureOnly" : undefined,
493
+ ].filter((item): item is string => Boolean(item));
494
+ return `${node.ref} ${node.role}${node.subrole ? `/${node.subrole}` : ""}${identifier} ${JSON.stringify(label)}${capabilities.length ? ` [${capabilities.join(",")}]` : ""}`;
495
+ }
496
+
497
+ function outlineNodeByRef(ref: string): OutlineNode {
498
+ const state = operationState();
499
+ const outline = state.currentOutline;
500
+ const node = outline ? nodeByRef(outline, ref) : undefined;
501
+ if (!node) {
502
+ const windowHint = state.currentTarget?.windowRef ? `({ root: "${state.currentTarget.windowRef}" })` : "";
503
+ throw new Error(`Outline ref '${ref}' is stale or not available for the latest state. Call observe_ui${windowHint} again and choose a current @e ref.`);
504
+ }
505
+ return node;
506
+ }
507
+
508
+ function wireRefForNode(node: OutlineNode): string {
509
+ if (node.pictureOnly || !node.wireRef) {
510
+ throw new Error(`Outline ref '${node.ref}' is pictureOnly and has no semantic element. It can be clicked by coordinates, but semantic-only actions are not available.`);
511
+ }
512
+ return node.wireRef;
513
+ }
514
+
515
+ function imageFallbackReason(
516
+ tool: string,
517
+ result: CaptureResult,
518
+ imageMode: ImageMode = "auto",
519
+ ): { reason: NonNullable<ComputerUseDetails["imageReason"]>; message: string } | undefined {
520
+ if (imageMode === "never") return undefined;
521
+ if (imageMode === "always") return { reason: "fallback_recovery", message: "An image was requested explicitly for visual verification." };
522
+ const outline = result.outline;
523
+ const labeled = outline.nodes.filter((node) => outlineNodeLabel(node)).length;
524
+ if (outline.nodes.length < 3) {
525
+ return { reason: "sparse_ax_targets", message: "Only a few outline nodes were found, so the look image is attached for context." }
526
+ }
527
+ if (labeled * 3 < outline.nodes.length) {
528
+ return { reason: "unlabeled_ax_targets", message: "Most outline nodes are unlabeled, so the look image is attached for context." }
529
+ }
530
+ if (tool === "wait" && currentPlatformBackend.isBrowserApp(result.target.appName, result.target.bundleId)) {
531
+ return { reason: "browser_wait_verification", message: "Browser content may have changed visually during wait, so an image is attached for fallback." }
532
+ }
533
+ return undefined
534
+ }
535
+
536
+ function currentTargetOrThrow(): CurrentTarget {
537
+ const target = operationState().currentTarget;
538
+ if (!target) {
539
+ throw new Error(MISSING_TARGET_ERROR);
540
+ }
541
+ return target;
542
+ }
543
+
544
+ function emptyActivation(): ActivationFlags {
545
+ return { activated: false, unminimized: false, raised: false };
546
+ }
547
+
548
+ async function ensureReady(ctx: ExtensionContext, signal?: AbortSignal): Promise<void> {
549
+ loadComputerUseConfig(ctx.cwd);
550
+
551
+ throwIfAborted(signal);
552
+ const ready = await currentPlatformBackend.ensureReady(
553
+ ctx,
554
+ {
555
+ permissionStatus: runtimeState.permissionStatus,
556
+ lastPermissionCheckAt: runtimeState.lastPermissionCheckAt,
557
+ helperDiagnostics: runtimeState.helperDiagnostics,
558
+ },
559
+ signal,
560
+ );
561
+ runtimeState.permissionStatus = ready.permissionStatus;
562
+ runtimeState.lastPermissionCheckAt = ready.lastPermissionCheckAt;
563
+ runtimeState.helperDiagnostics = ready.helperDiagnostics;
564
+ }
565
+
566
+ export async function ensureComputerUseSetup(ctx: ExtensionContext, signal?: AbortSignal): Promise<void> {
567
+ await ensureReady(ctx, signal);
568
+ }
569
+
570
+ async function listApps(signal?: AbortSignal): Promise<HelperApp[]> {
571
+ return await currentPlatformBackend.listApps(signal);
572
+ }
573
+
574
+ async function listWindows(pid: number, signal?: AbortSignal): Promise<HelperWindow[]> {
575
+ return await currentPlatformBackend.listRoots({ pid }, signal);
576
+ }
577
+
578
+ function appMatchesWindowQuery(app: HelperApp, query: FindParams): boolean {
579
+ const appQuery = trimOrUndefined(query.app);
580
+ const bundleQuery = trimOrUndefined(query.bundleId);
581
+ const pidQuery = Number.isFinite(query.pid) ? Math.trunc(query.pid!) : undefined;
582
+
583
+ if (pidQuery !== undefined && app.pid !== pidQuery) return false;
584
+ if (bundleQuery && normalizeText(app.bundleId ?? "") !== normalizeText(bundleQuery)) return false;
585
+ if (appQuery && normalizeText(app.appName) !== normalizeText(appQuery)) return false;
586
+ return true;
587
+ }
588
+
589
+ function platformRootSheetCount(window: Pick<HelperWindow, "metadata">): number | undefined {
590
+ const value = window.metadata?.sheetCount;
591
+ return typeof value === "number" && Number.isFinite(value) ? Math.max(0, Math.trunc(value)) : undefined;
592
+ }
593
+
594
+ function platformRootPairing(window: Pick<HelperWindow, "metadata">): { confidence: "exact" | "high" | "low"; score: number } | undefined {
595
+ const value = window.metadata?.pairing;
596
+ if (!value || typeof value !== "object") return undefined;
597
+ const pairing = value as { confidence?: unknown; score?: unknown };
598
+ if (pairing.confidence !== "exact" && pairing.confidence !== "high" && pairing.confidence !== "low") return undefined;
599
+ return { confidence: pairing.confidence, score: typeof pairing.score === "number" && Number.isFinite(pairing.score) ? pairing.score : Number.NEGATIVE_INFINITY };
600
+ }
601
+
602
+ function formatWindowLine(window: ListWindowsDetails["windows"][number]): string {
603
+ if (window.kind === "browser_page") return `- ${window.windowRef} browser_page ${JSON.stringify(window.windowTitle)}${window.url ? ` — ${window.url}` : ""}`;
604
+ const flags = [
605
+ window.isFocused ? "focused" : undefined,
606
+ window.isMain ? "main" : undefined,
607
+ window.isModal ? "modal" : undefined,
608
+ window.sheetCount ? `sheets=${window.sheetCount}` : undefined,
609
+ window.isOnscreen ? "onscreen" : undefined,
610
+ window.isMinimized ? "minimized" : undefined,
611
+ window.browserUseAllowed ? undefined : "browser_use_disabled",
612
+ ]
613
+ .filter(Boolean)
614
+ .join(", ");
615
+ const frame = `${Math.round(window.framePoints.x)},${Math.round(window.framePoints.y)} ${Math.round(window.framePoints.w)}x${Math.round(window.framePoints.h)}`;
616
+ const id = window.windowId ? `windowId ${window.windowId}` : window.nativeWindowRef ? `nativeRootRef ${window.nativeWindowRef}` : "unstable root id";
617
+ const pairing = window.pairing ? `, pairing ${window.pairing.confidence}/${Math.round(window.pairing.score)}` : "";
618
+ return `- ${window.windowRef} ${window.kind} ${window.app} pid ${window.pid} — ${window.windowTitle || "(untitled)"} (z ${window.zOrder}, ${id}, frame ${frame}${pairing}${flags ? `, ${flags}` : ""})`;
619
+ }
620
+
621
+ async function getFrontmost(signal?: AbortSignal): Promise<FrontmostResult> {
622
+ return await currentPlatformBackend.getFrontmost(signal);
623
+ }
624
+
625
+ function assertBrowserUseAllowed(target: { appName: string; bundleId?: string }): void {
626
+ if (!isBrowserUseEnabled() && currentPlatformBackend.isBrowserApp(target.appName, target.bundleId)) {
627
+ throw new Error(
628
+ `Browser use is disabled by pi-computer-use config, so '${target.appName}' cannot be controlled. Enable browser_use in ~/.pi/agent/extensions/pi-computer-use.json or .pi/computer-use.json to allow browser windows.`,
629
+ );
630
+ }
631
+ }
632
+
633
+ function windowRecordIdentity(record: Pick<WindowRefRecord, "pid" | "windowId" | "nativeWindowRef" | "windowTitle" | "framePoints">): string {
634
+ if (record.windowId && record.windowId > 0) {
635
+ return `pid:${record.pid}|id:${record.windowId}`;
636
+ }
637
+ if (record.nativeWindowRef) {
638
+ return `pid:${record.pid}|ref:${record.nativeWindowRef}`;
639
+ }
640
+ const { x, y, w, h } = record.framePoints;
641
+ return `pid:${record.pid}|title:${normalizeText(record.windowTitle)}|frame:${Math.round(x)},${Math.round(y)},${Math.round(w)},${Math.round(h)}`;
642
+ }
643
+
644
+ function storeWindowRef(record: Omit<WindowRefRecord, "ref">): WindowRefRecord {
645
+ const identity = windowRecordIdentity(record);
646
+ const existingRef = runtimeState.windowRefByIdentity.get(identity);
647
+ if (existingRef) {
648
+ const existing = runtimeState.windowRefs.get(existingRef);
649
+ if (existing) {
650
+ const updated = { ...record, ref: existingRef };
651
+ runtimeState.windowRefs.set(existingRef, updated);
652
+ return updated;
653
+ }
654
+ }
655
+
656
+ const ref = `@r${runtimeState.nextRootRefIndex++}`;
657
+ const stored = { ...record, ref };
658
+ runtimeState.windowRefByIdentity.set(identity, ref);
659
+ runtimeState.windowRefs.set(ref, stored);
660
+ return stored;
661
+ }
662
+
663
+ function storeBrowserRootRef(contextId: string): string {
664
+ const existing = runtimeState.browserRootByContext.get(contextId);
665
+ if (existing) return existing;
666
+ const ref = `@r${runtimeState.nextRootRefIndex++}`;
667
+ runtimeState.browserRootByContext.set(contextId, ref);
668
+ runtimeState.browserContextByRoot.set(ref, contextId);
669
+ return ref;
670
+ }
671
+
672
+ function storeWindowRefForTarget(target: ResolvedTarget): string {
673
+ return storeWindowRef({
674
+ appName: target.appName,
675
+ bundleId: target.bundleId,
676
+ pid: target.pid,
677
+ windowTitle: target.windowTitle,
678
+ windowId: target.windowId > 0 ? target.windowId : undefined,
679
+ framePoints: target.framePoints,
680
+ scaleFactor: target.scaleFactor,
681
+ isMinimized: target.isMinimized,
682
+ isOnscreen: target.isOnscreen,
683
+ isMain: target.isMain,
684
+ isFocused: target.isFocused,
685
+ }).ref;
686
+ }
687
+
688
+ function storeWindowRefForAppWindow(app: HelperApp, window: HelperWindow): WindowRefRecord {
689
+ return storeWindowRef({
690
+ appName: app.appName,
691
+ bundleId: app.bundleId,
692
+ pid: app.pid,
693
+ windowTitle: window.title || "(untitled)",
694
+ windowId: window.windowId,
695
+ nativeWindowRef: window.windowRef,
696
+ framePoints: window.framePoints,
697
+ scaleFactor: window.scaleFactor,
698
+ isMinimized: window.isMinimized,
699
+ isOnscreen: window.isOnscreen,
700
+ isMain: window.isMain,
701
+ isFocused: window.isFocused,
702
+ });
703
+ }
704
+
705
+ function choosePreferredWindow(windows: HelperWindow[], appName: string): HelperWindow {
706
+ if (!windows.length) {
707
+ throw new Error(`No controllable root was found in app '${appName}'.`);
708
+ }
709
+
710
+ const scored = [...windows].sort((a, b) => scoreWindow(b) - scoreWindow(a));
711
+ return scored[0];
712
+ }
713
+
714
+ function scoreWindow(window: HelperWindow): number {
715
+ let score = 0;
716
+ if (window.isModal) score += 180;
717
+ if (window.isFocused) score += 100;
718
+ if (window.isMain) score += 80;
719
+ if (!window.isMinimized) score += 40;
720
+ if (window.isOnscreen) score += 20;
721
+ if (window.windowId && window.windowId > 0) score += 10;
722
+ if (window.title.trim().length > 0) score += 2;
723
+ return score;
724
+ }
725
+
726
+ function summarizeWindowCandidate(window: HelperWindow): string {
727
+ const flags = [
728
+ window.isFocused ? "focused" : undefined,
729
+ window.isMain ? "main" : undefined,
730
+ window.isOnscreen ? "onscreen" : undefined,
731
+ window.isMinimized ? "minimized" : undefined,
732
+ ]
733
+ .filter(Boolean)
734
+ .join(",");
735
+ return `${window.title || "(untitled)"} [score=${scoreWindow(window)}${flags ? `, ${flags}` : ""}]`;
736
+ }
737
+
738
+ function summarizeWindowCandidates(windows: HelperWindow[], limit = 6): string {
739
+ return [...windows]
740
+ .sort((a, b) => scoreWindow(b) - scoreWindow(a))
741
+ .slice(0, limit)
742
+ .map(summarizeWindowCandidate)
743
+ .join("; ");
744
+ }
745
+
746
+ function chooseRankedWindowOrUndefined(windows: HelperWindow[]): HelperWindow | undefined {
747
+ if (windows.length === 0) return undefined;
748
+ const ranked = [...windows].sort((a, b) => scoreWindow(b) - scoreWindow(a));
749
+ if (ranked.length === 1) return ranked[0];
750
+ const topScore = scoreWindow(ranked[0]);
751
+ const nextScore = scoreWindow(ranked[1]);
752
+ return topScore >= nextScore + 25 ? ranked[0] : undefined;
753
+ }
754
+
755
+ function toResolvedTarget(app: HelperApp, window: HelperWindow): ResolvedTarget {
756
+ const baseTarget = {
757
+ appName: app.appName,
758
+ bundleId: app.bundleId,
759
+ pid: app.pid,
760
+ windowTitle: window.title || "(untitled)",
761
+ windowId: typeof window.windowId === "number" ? window.windowId : 0,
762
+ nativeWindowRef: window.windowRef,
763
+ framePoints: window.framePoints,
764
+ scaleFactor: window.scaleFactor,
765
+ isMinimized: window.isMinimized,
766
+ isOnscreen: window.isOnscreen,
767
+ isMain: window.isMain,
768
+ isFocused: window.isFocused,
769
+ };
770
+ return { ...baseTarget, windowRef: storeWindowRefForAppWindow(app, window).ref };
771
+ }
772
+
773
+ function nativeWindowRequest(target: Pick<CurrentTarget, "pid" | "windowId" | "nativeWindowRef">): { pid: number; windowId: number; windowRef?: string } {
774
+ return { pid: target.pid, windowId: target.windowId, windowRef: target.nativeWindowRef };
775
+ }
776
+
777
+ function setCurrentTarget(target: ResolvedTarget): void {
778
+ assertBrowserUseAllowed(target);
779
+ const windowRef = target.windowRef ?? storeWindowRefForTarget(target);
780
+ operationState().currentTarget = {
781
+ appName: target.appName,
782
+ bundleId: target.bundleId,
783
+ pid: target.pid,
784
+ windowTitle: target.windowTitle,
785
+ windowId: target.windowId,
786
+ windowRef,
787
+ nativeWindowRef: target.nativeWindowRef,
788
+ };
789
+ }
790
+
791
+ function normalizeWindowSelector(selector: RootSelector | undefined): string | undefined {
792
+ if (typeof selector === "number" && Number.isFinite(selector)) return String(Math.trunc(selector));
793
+ if (typeof selector === "string") return trimOrUndefined(selector);
794
+ return undefined;
795
+ }
796
+
797
+ async function resolveTargetByWindowSelector(selector: RootSelector, signal?: AbortSignal): Promise<ResolvedTarget> {
798
+ const normalized = normalizeWindowSelector(selector);
799
+ if (!normalized) {
800
+ throw new Error("root target must be a non-empty @r ref or numeric windowId.");
801
+ }
802
+
803
+ const current = operationState().currentTarget;
804
+ if (current?.windowRef === normalized) {
805
+ return await resolveCurrentTarget(signal);
806
+ }
807
+
808
+ const fromRef = runtimeState.windowRefs.get(normalized);
809
+ if (fromRef) {
810
+ const app: HelperApp = { appName: fromRef.appName, bundleId: fromRef.bundleId, pid: fromRef.pid };
811
+ const windows = await listWindows(fromRef.pid, signal);
812
+ const match =
813
+ (fromRef.windowId ? windows.find((window) => window.windowId === fromRef.windowId) : undefined) ??
814
+ (fromRef.nativeWindowRef ? windows.find((window) => window.windowRef === fromRef.nativeWindowRef) : undefined) ??
815
+ windows.find((window) => normalizeText(window.title || "(untitled)") === normalizeText(fromRef.windowTitle));
816
+ if (!match) {
817
+ throw new Error(`Root ref '${normalized}' is stale. Call find_roots again and choose a current window.`);
818
+ }
819
+ const resolved = toResolvedTarget(app, match);
820
+ setCurrentTarget(resolved);
821
+ return resolved;
822
+ }
823
+
824
+ const numericWindowId = Number(normalized);
825
+ if (Number.isInteger(numericWindowId) && numericWindowId > 0) {
826
+ const apps = await listApps(signal);
827
+ for (const app of apps) {
828
+ const windows = await listWindows(app.pid, signal);
829
+ const match = windows.find((window) => window.windowId === numericWindowId);
830
+ if (match) {
831
+ assertBrowserUseAllowed(app);
832
+ const resolved = toResolvedTarget(app, match);
833
+ setCurrentTarget(resolved);
834
+ return resolved;
835
+ }
836
+ }
837
+ throw new Error(`Window id '${numericWindowId}' was not found. Call find_roots again and choose a current window.`);
838
+ }
839
+
840
+ if (normalized.startsWith("@r")) {
841
+ throw new Error(`Root ref '${normalized}' is not available in this session. Call find_roots first.`);
842
+ }
843
+
844
+ const config = getComputerUseConfig();
845
+ const candidates = await collectWindowDetails(await listApps(signal), config, signal);
846
+ const query = normalizeText(normalized);
847
+ const exact = candidates.filter((candidate) => normalizeText(candidate.app) === query || normalizeText(candidate.windowTitle) === query);
848
+ const fuzzy = exact.length > 0 ? exact : candidates.filter((candidate) => `${normalizeText(candidate.app)} ${normalizeText(candidate.windowTitle)}`.includes(query));
849
+ const match = fuzzy.sort((a, b) => Number(b.isFocused) - Number(a.isFocused) || a.zOrder - b.zOrder)[0];
850
+ if (!match) throw new Error(`Root query '${normalized}' did not match any current root. Call find_roots to inspect roots.`);
851
+ const app: HelperApp = { appName: match.app, bundleId: match.bundleId, pid: match.pid };
852
+ const roots = await listWindows(match.pid, signal);
853
+ const helperRoot = roots.find((root) => root.rootRef === match.nativeWindowRef || root.windowRef === match.nativeWindowRef || root.windowId === match.windowId) ?? roots[0];
854
+ const resolved = toResolvedTarget(app, helperRoot);
855
+ setCurrentTarget(resolved);
856
+ return resolved;
857
+ }
858
+
859
+ function shouldPreferForegroundModalWindow(current: HelperWindow, candidate: HelperWindow): boolean {
860
+ if (candidate.windowId === current.windowId && candidate.windowRef === current.windowRef) return false;
861
+ if (!candidate.isOnscreen || candidate.isMinimized) return false;
862
+ if (candidate.isModal) return scoreWindow(candidate) >= scoreWindow(current);
863
+ return false;
864
+ }
865
+
866
+ async function resolveCurrentTarget(signal?: AbortSignal): Promise<ResolvedTarget> {
867
+ const current = currentTargetOrThrow();
868
+ const windows = await listWindows(current.pid, signal);
869
+ if (!windows.length) {
870
+ throw new Error(CURRENT_TARGET_GONE_ERROR);
871
+ }
872
+
873
+ const hadStableWindowId = current.windowId > 0;
874
+ const titleQuery = normalizeText(current.windowTitle);
875
+ let match = current.nativeWindowRef ? windows.find((window) => window.windowRef === current.nativeWindowRef || window.rootRef === current.nativeWindowRef) : undefined;
876
+ match ??= hadStableWindowId ? windows.find((window) => window.windowId !== undefined && window.windowId === current.windowId) : undefined;
877
+ if (!match) {
878
+ const exactTitleMatches = titleQuery && titleQuery !== "(untitled)" ? windows.filter((window) => normalizeText(window.title) === titleQuery) : [];
879
+ if (exactTitleMatches.length === 1) {
880
+ match = exactTitleMatches[0];
881
+ } else if (exactTitleMatches.length > 1) {
882
+ match = chooseRankedWindowOrUndefined(exactTitleMatches);
883
+ if (!match) {
884
+ throw new Error(
885
+ `${CURRENT_TARGET_GONE_ERROR} Multiple windows now match '${current.windowTitle}': ${summarizeWindowCandidates(exactTitleMatches)}.`,
886
+ );
887
+ }
888
+ }
889
+ }
890
+
891
+ if (!match && !hadStableWindowId) {
892
+ match = chooseRankedWindowOrUndefined(windows);
893
+ }
894
+
895
+ if (!match) {
896
+ throw new Error(CURRENT_TARGET_GONE_ERROR);
897
+ }
898
+
899
+ const modal = windows
900
+ .filter((window) => shouldPreferForegroundModalWindow(match!, window))
901
+ .sort((a, b) => scoreWindow(b) - scoreWindow(a))[0];
902
+ if (modal) match = modal;
903
+
904
+ const app: HelperApp = {
905
+ appName: current.appName,
906
+ bundleId: current.bundleId,
907
+ pid: current.pid,
908
+ };
909
+
910
+ const resolved = toResolvedTarget(app, match);
911
+ setCurrentTarget(resolved);
912
+ return resolved;
913
+ }
914
+
915
+ async function resolveFrontmostTarget(signal?: AbortSignal): Promise<ResolvedTarget> {
916
+ const frontmost = await getFrontmost(signal);
917
+ const apps = await listApps(signal);
918
+ const app = apps.find((candidate) => candidate.pid === frontmost.pid) ?? {
919
+ appName: frontmost.appName,
920
+ bundleId: frontmost.bundleId,
921
+ pid: frontmost.pid,
922
+ };
923
+
924
+ const windows = await listWindows(frontmost.pid, signal);
925
+ if (!windows.length) {
926
+ throw new Error("No frontmost controllable root was found. Open an app window and call observe_ui again.");
927
+ }
928
+
929
+ if (currentPlatformBackend.isBrowserApp(app.appName, app.bundleId)) {
930
+ assertBrowserUseAllowed(app);
931
+ }
932
+
933
+ let selected = windows.find((window) => window.windowId !== undefined && window.windowId === frontmost.windowId);
934
+ if (!selected && frontmost.windowTitle) {
935
+ selected = windows.find((window) => normalizeText(window.title) === normalizeText(frontmost.windowTitle));
936
+ }
937
+ selected ??= choosePreferredWindow(windows, app.appName);
938
+
939
+ const resolved = toResolvedTarget(app, selected);
940
+ setCurrentTarget(resolved);
941
+ return resolved;
942
+ }
943
+
944
+ function matchesObserveSelection(target: ResolvedTarget, selection: ObserveTargetParams): boolean {
945
+ const root = normalizeWindowSelector(selection.root);
946
+ return !root || target.windowRef === root;
947
+ }
948
+
949
+ async function resolveTargetForObserve(signal?: AbortSignal): Promise<ResolvedTarget> {
950
+ return operationState().currentTarget ? await resolveCurrentTarget(signal) : await resolveFrontmostTarget(signal);
951
+ }
952
+
953
+ async function ensureTargetWindowId(target: ResolvedTarget, signal?: AbortSignal): Promise<ResolvedTarget> {
954
+ if (target.windowId > 0 || target.nativeWindowRef) {
955
+ return target;
956
+ }
957
+
958
+ const refreshed = await resolveCurrentTarget(signal);
959
+ if (refreshed.windowId <= 0 && !refreshed.nativeWindowRef) {
960
+ throw new Error(CURRENT_TARGET_GONE_ERROR);
961
+ }
962
+ return refreshed;
963
+ }
964
+
965
+ interface CaptureResult {
966
+ target: ResolvedTarget;
967
+ capture: CurrentCapture;
968
+ look: LookResponse;
969
+ outline: Outline;
970
+ activation: ActivationFlags;
971
+ }
972
+
973
+ function captureForLook(look: LookResponse): CurrentCapture {
974
+ return {
975
+ stateId: randomUUID(),
976
+ width: look.image?.width ?? 0,
977
+ height: look.image?.height ?? 0,
978
+ scaleFactor: look.window.scaleFactor,
979
+ timestamp: Date.now(),
980
+ };
981
+ }
982
+
983
+ async function performLook(target: ResolvedTarget, options: { readText: "auto" | "always" | "never"; baseLookId?: string; scopeRef?: string; maxDimension?: number; includeImage?: boolean }, signal?: AbortSignal): Promise<LookResponse> {
984
+ if ((!Number.isFinite(target.windowId) || target.windowId <= 0) && !target.nativeWindowRef) throw new Error(`Current platform requires a stable root id to observe '${target.windowTitle}'. Call find_roots and select a root with a stable id.`);
985
+ return await currentPlatformBackend.observe({
986
+ target: nativeWindowRequest(target),
987
+ baseLookId: options.baseLookId,
988
+ readText: options.readText,
989
+ scopeRef: options.scopeRef,
990
+ maxDimension: options.maxDimension,
991
+ includeImage: options.includeImage,
992
+ }, { signal, timeoutMs: LOOK_TIMEOUT_MS });
993
+ }
994
+
995
+ function noteWindowForTarget(target: ResolvedTarget | CurrentTarget, look?: LookResponse) {
996
+ return {
997
+ windowRef: target.windowRef,
998
+ title: target.windowTitle,
999
+ pairing: look?.window.metadata?.pairing && typeof look.window.metadata.pairing === "object" ? (look.window.metadata.pairing as { confidence?: "exact" | "high" | "low" }).confidence : undefined,
1000
+ pairingScore: look?.window.metadata?.pairing && typeof look.window.metadata.pairing === "object" ? (look.window.metadata.pairing as { score?: number }).score : undefined,
1001
+ };
1002
+ }
1003
+
1004
+ async function captureCurrentTarget(signal?: AbortSignal, readText: "auto" | "always" | "never" = "auto", maxDimension = AUTO_IMAGE_MAX_DIMENSION, targetOverride?: ResolvedTarget, includeImage = true): Promise<CaptureResult> {
1005
+ const state = operationState();
1006
+ const baseOutline = state.currentOutline;
1007
+ const baseTarget = state.currentTarget;
1008
+ let target = targetOverride ?? await resolveCurrentTarget(signal);
1009
+ target = await ensureTargetWindowId(target, signal);
1010
+ const look = await performLook(target, { maxDimension, readText, includeImage }, signal);
1011
+ const outline = stabilizeRefs(baseTarget && sameRootIdentity(baseTarget, target) ? baseOutline : undefined, look.parsedOutline!);
1012
+ look.parsedOutline = outline;
1013
+ look.outline = outline.root;
1014
+ const capture = captureForLook(look);
1015
+
1016
+ setCurrentTarget(target);
1017
+ state.currentCapture = capture;
1018
+ state.currentStateTarget = { pid: target.pid, windowId: target.windowId, windowRef: target.windowRef };
1019
+ state.currentLook = look;
1020
+ state.currentOutline = outline;
1021
+ state.currentNote = noteFromLook(state.currentNote, outline, noteWindowForTarget(target, look));
1022
+ state.resourceKey = desktopResourceKey(target);
1023
+ state.epoch ??= resourceScheduler.epoch(state.resourceKey);
1024
+
1025
+ return {
1026
+ target,
1027
+ capture,
1028
+ look,
1029
+ outline,
1030
+ activation: emptyActivation(),
1031
+ };
1032
+ }
1033
+
1034
+ async function buildToolResult(
1035
+ tool: string,
1036
+ summary: string,
1037
+ result: CaptureResult,
1038
+ execution: ExecutionTrace,
1039
+ _signal?: AbortSignal,
1040
+ imageMode: ImageMode = operationState().currentImageMode ?? "auto",
1041
+ base?: { stateId: string; outline: Outline },
1042
+ ): Promise<AgentToolResult<ComputerUseDetails>> {
1043
+ const state = operationState();
1044
+ const fallbackReason = imageFallbackReason(tool, result, imageMode);
1045
+ const transition = base ? changesBetween(base.outline, result.outline) : undefined;
1046
+ const useDiff = Boolean(transition && !transition.useFullView);
1047
+ const folded = foldToBudget(result.outline);
1048
+ const renderedNote = renderNote(state.currentNote);
1049
+
1050
+ const details: ComputerUseDetails = {
1051
+ tool,
1052
+ target: {
1053
+ app: result.target.appName,
1054
+ bundleId: result.target.bundleId,
1055
+ pid: result.target.pid,
1056
+ windowTitle: result.target.windowTitle,
1057
+ windowId: result.target.windowId,
1058
+ windowRef: result.target.windowRef ?? state.currentTarget?.windowRef,
1059
+ nativeWindowRef: result.target.nativeWindowRef ?? state.currentTarget?.nativeWindowRef,
1060
+ },
1061
+ capture: {
1062
+ stateId: result.capture.stateId,
1063
+ width: result.capture.width,
1064
+ height: result.capture.height,
1065
+ scaleFactor: result.capture.scaleFactor,
1066
+ timestamp: result.capture.timestamp,
1067
+ coordinateSpace: "window-relative-screenshot-pixels",
1068
+ },
1069
+ lookId: result.look.lookId,
1070
+ view: useDiff ? "diff" : "full",
1071
+ baseStateId: transition ? base?.stateId : undefined,
1072
+ changes: useDiff ? transition?.changes : undefined,
1073
+ viewReason: transition?.useFullView ? transition.reason : undefined,
1074
+ renderedOutline: folded.text,
1075
+ outline: serializeOutline(result.outline),
1076
+ note: state.currentNote,
1077
+ activation: result.activation,
1078
+ execution,
1079
+ status: "ok",
1080
+ config: getComputerUseConfig(),
1081
+ helper: runtimeState.helperDiagnostics,
1082
+ imageReason: fallbackReason?.reason,
1083
+ };
1084
+
1085
+ // Console piggyback: when a CDP connection is active for this browser
1086
+ // window, surface console output collected since the last tool result.
1087
+ let consoleText = "";
1088
+ if (currentPlatformBackend.isChromeFamilyApp(result.target.appName, result.target.bundleId)) {
1089
+ const tab = await cdpTabForWindow(result.target.windowTitle, result.target.framePoints);
1090
+ const entries = tab?.drainConsole() ?? [];
1091
+ if (entries.length > 0) {
1092
+ details.console = entries;
1093
+ consoleText = `\n\nBrowser console since the last action:\n${entries.map((entry) => `[${entry.level}] ${entry.text}`).join("\n")}`;
1094
+ }
1095
+ }
1096
+
1097
+ const noteText = renderedNote ? `\n\n${renderedNote}` : "";
1098
+ // The model must echo capture.stateId into follow-up tools. Exposing only the
1099
+ // helper-internal lookId here makes a plausible but invalid stateId easy to use.
1100
+ const renderedChanges = useDiff ? renderChanges(transition!.changes) : "";
1101
+ const outlineText = useDiff
1102
+ ? `\n\nChanges (${transition!.changedNodeCount}, ${base!.stateId} → ${result.capture.stateId}):\n${renderedChanges || "(no element changes)"}\nUse stateId ${result.capture.stateId} for subsequent actions and queries.`
1103
+ : `\n\nOutline (${folded.nodeCount} nodes, stateId ${result.capture.stateId}${transition?.reason ? `, full view: ${transition.reason}` : ""}${folded.truncated ? ", folded output truncated" : ""}):\n${folded.text}`;
1104
+ const fallbackText = fallbackReason ? `\n\n${fallbackReason.message}` : "";
1105
+ const deltaText = rootDeltaLines(execution).join("\n");
1106
+ const content: AgentToolResult<ComputerUseDetails>["content"] = [{ type: "text", text: `${summary}${deltaText ? `\n${deltaText}` : ""}${consoleText}${noteText}${outlineText}${fallbackText}` }];
1107
+ if (fallbackReason && result.look.image?.jpegBase64) {
1108
+ content.push({ type: "image", data: result.look.image.jpegBase64, mimeType: result.look.image.mimeType ?? "image/jpeg" });
1109
+ }
1110
+
1111
+ return { content, details };
1112
+ }
1113
+
1114
+ type NativePreparedAction = Exclude<PreparedAction, { action: "wait" }>;
1115
+
1116
+ function currentLookOrThrow(): LookResponse {
1117
+ const state = operationState();
1118
+ if (!state.currentLook || !state.currentCapture) {
1119
+ throw new Error("No current look. Call observe_ui first, then act using refs or coordinates from that look.");
1120
+ }
1121
+ return state.currentLook;
1122
+ }
1123
+
1124
+ function ensurePointIsInLookImage(x: number, y: number, look: LookResponse, errorPrefix = "Coordinates"): void {
1125
+ if (!look.image?.jpegBase64) {
1126
+ throw new Error(`${errorPrefix} require an image-bearing root. This look is outline-only; use an @e ref with a semantic action or observe an image-bearing root.`);
1127
+ }
1128
+ if (!Number.isFinite(x) || !Number.isFinite(y)) {
1129
+ throw new Error(`${errorPrefix} must be finite numbers.`);
1130
+ }
1131
+ if (x < 0 || y < 0 || x >= look.image.width || y >= look.image.height) {
1132
+ throw new Error(`${errorPrefix} (${Math.round(x)},${Math.round(y)}) are outside the latest look image bounds (${look.image.width}x${look.image.height}). Call observe_ui again and retry.`);
1133
+ }
1134
+ }
1135
+
1136
+ function modelRefForRootDelta(delta: NonNullable<HelperActResult["rootDelta"]>[number]): string | undefined {
1137
+ if (!delta.ref) return undefined;
1138
+ if (delta.ref.startsWith("@r")) return delta.ref;
1139
+ for (const record of runtimeState.windowRefs.values()) {
1140
+ if (record.nativeWindowRef === delta.ref || record.ref === delta.ref) return record.ref;
1141
+ }
1142
+ const ref = `@r${runtimeState.nextRootRefIndex++}`;
1143
+ const current = operationState().currentTarget;
1144
+ const record: WindowRefRecord = {
1145
+ ref,
1146
+ appName: current?.pid === delta.pid ? current.appName : "Unknown App",
1147
+ bundleId: current?.pid === delta.pid ? current.bundleId : undefined,
1148
+ pid: delta.pid,
1149
+ windowTitle: delta.title ?? "(untitled)",
1150
+ nativeWindowRef: delta.ref,
1151
+ framePoints: { x: 0, y: 0, w: 1, h: 1 },
1152
+ scaleFactor: 1,
1153
+ isMinimized: false,
1154
+ isOnscreen: true,
1155
+ isMain: false,
1156
+ isFocused: delta.change === "focused",
1157
+ };
1158
+ runtimeState.windowRefs.set(ref, record);
1159
+ runtimeState.windowRefByIdentity.set(windowRecordIdentity(record), ref);
1160
+ return ref;
1161
+ }
1162
+
1163
+ function executionTraceFromAct(result: HelperActResult, policy = currentDeliveryPolicy()): ExecutionTrace {
1164
+ const rootDelta = result.rootDelta?.map((delta) => ({ ...delta, ref: modelRefForRootDelta(delta) }));
1165
+ return executionTrace("act", result.performed?.delivery === "ax" ? "stealth" : "default", {
1166
+ outcome: result.outcome,
1167
+ performed: result.performed,
1168
+ evidence: result.evidence,
1169
+ error: result.error,
1170
+ stoppedAt: result.stoppedAt,
1171
+ rootDelta,
1172
+ delivery: result.performed?.delivery,
1173
+ deliveryPolicy: policy,
1174
+ });
1175
+ }
1176
+
1177
+ async function helperAct(
1178
+ target: ResolvedTarget,
1179
+ action: NativePreparedAction,
1180
+ headless: boolean,
1181
+ signal?: AbortSignal,
1182
+ ): Promise<ExecutionTrace> {
1183
+ const checked = (candidate: HelperActResult): HelperActResult => {
1184
+ if (!candidate || !["worked", "didnt", "unknown"].includes(candidate.outcome)) {
1185
+ throw new Error("Helper act returned an invalid result without an outcome.");
1186
+ }
1187
+ return candidate;
1188
+ };
1189
+ const textTimeout = "text" in action.params ? action.params.text.length * 25 + 4_000 : COMMAND_TIMEOUT_MS;
1190
+ const timeoutMs = Math.max(COMMAND_TIMEOUT_MS, textTimeout);
1191
+ if ((action.usesCurrentFocus || action.needsForeground) && !headless) {
1192
+ const foreground = checked(await currentPlatformBackend.act(helperActRequest(target, action, "foreground"), { signal, timeoutMs }));
1193
+ const trace = executionTraceFromAct(foreground, "foreground");
1194
+ trace.backgroundFirst = false;
1195
+ return trace;
1196
+ }
1197
+ try {
1198
+ const initialPolicy = headless ? "ax_only" : "background";
1199
+ const result = checked(await currentPlatformBackend.act(helperActRequest(target, action, initialPolicy), { signal, timeoutMs }));
1200
+ if (canRetryInForeground(action, result.outcome, headless)) {
1201
+ const foreground = checked(await currentPlatformBackend.act(helperActRequest(target, action, "foreground"), { signal, timeoutMs }));
1202
+ const trace = executionTraceFromAct(foreground, "foreground");
1203
+ trace.backgroundFirst = true;
1204
+ trace.escalatedToForeground = true;
1205
+ trace.escalationReason = "side_effect_free_didnt";
1206
+ trace.backgroundAttempt = { outcome: "didnt", reason: "Background input produced no observable value change; a foreground retry was safe." };
1207
+ return trace;
1208
+ }
1209
+ const trace = executionTraceFromAct(result, "background");
1210
+ trace.backgroundFirst = true;
1211
+ return trace;
1212
+ } catch (error) {
1213
+ const code = (error as Error & { code?: string })?.code;
1214
+ if (code !== "foreground_required" || headless) throw error;
1215
+ const foreground = checked(await currentPlatformBackend.act(helperActRequest(target, action, "foreground"), { signal, timeoutMs }));
1216
+ const trace = executionTraceFromAct(foreground, "foreground");
1217
+ trace.backgroundFirst = true;
1218
+ trace.escalatedToForeground = true;
1219
+ trace.escalationReason = code;
1220
+ trace.backgroundAttempt = { outcome: "foreground_required", reason: error instanceof Error ? error.message : String(error) };
1221
+ return trace;
1222
+ }
1223
+ }
1224
+
1225
+ function helperActRequest(target: ResolvedTarget, action: NativePreparedAction, policy = currentDeliveryPolicy()): PlatformActRequest {
1226
+ const look = currentLookOrThrow();
1227
+ const delivery = nativeInputDelivery(policy);
1228
+ const base = { lookId: look.lookId, pid: target.pid, target: action.target, policy };
1229
+ return (() => {
1230
+ switch (action.action) {
1231
+ case "press":
1232
+ case "click": return { ...base, action: action.action, params: { ...action.params, delivery } };
1233
+ case "setText": return { ...base, action: action.action, params: { text: action.params.text, delivery } };
1234
+ case "typeText": return { ...base, action: action.action, params: { text: action.params.text, delivery } };
1235
+ case "keypress": return { ...base, action: action.action, params: { keys: action.params.keys, delivery } };
1236
+ case "scroll": return { ...base, action: action.action, params: { scrollX: action.params.scrollX, scrollY: action.params.scrollY, delivery } };
1237
+ case "drag": return { ...base, action: action.action, params: { path: action.params.path, delivery } };
1238
+ case "moveMouse": return { ...base, action: action.action, params: { delivery } };
1239
+ }
1240
+ })();
1241
+ }
1242
+
1243
+ function rootDeltaLines(execution: ExecutionTrace): string[] {
1244
+ return (execution.rootDelta ?? []).map((delta) => {
1245
+ const quotedTitle = delta.title ? ` ${JSON.stringify(delta.title)}` : "";
1246
+ const ref = delta.ref ? ` (${delta.ref.startsWith("@") ? delta.ref : `@${delta.ref}`})` : "";
1247
+ const sheetCount = typeof delta.metadata?.sheetCount === "number" && Number.isFinite(delta.metadata.sheetCount) ? Math.max(0, Math.trunc(delta.metadata.sheetCount)) : undefined;
1248
+ const flags = [delta.isModal ? "modal" : undefined, sheetCount ? `sheets=${sheetCount}` : undefined].filter(Boolean).join(", ");
1249
+ const suffix = `${quotedTitle}${flags ? ` (${flags})` : ""}${ref}`;
1250
+ if (delta.change === "appeared") return `New root: ${delta.kind}${suffix}`;
1251
+ if (delta.change === "closed") return `Root closed: ${delta.kind}${suffix}`;
1252
+ return `Root focused: ${delta.kind}${suffix}`;
1253
+ });
1254
+ }
1255
+
1256
+ function windowDetails(app: HelperApp, window: HelperWindow, config: ReturnType<typeof getComputerUseConfig>): ListWindowsDetails["windows"][number] {
1257
+ const storedRef = storeWindowRefForAppWindow(app, window);
1258
+ return {
1259
+ app: app.appName,
1260
+ bundleId: app.bundleId,
1261
+ pid: app.pid,
1262
+ kind: window.kind,
1263
+ windowTitle: window.title || "(untitled)",
1264
+ windowId: window.windowId,
1265
+ windowRef: storedRef.ref,
1266
+ nativeWindowRef: window.windowRef,
1267
+ framePoints: window.framePoints,
1268
+ scaleFactor: window.scaleFactor,
1269
+ isMinimized: window.isMinimized,
1270
+ isOnscreen: window.isOnscreen,
1271
+ isMain: window.isMain,
1272
+ isFocused: window.isFocused,
1273
+ isModal: window.isModal,
1274
+ sheetCount: platformRootSheetCount(window),
1275
+ role: window.role,
1276
+ subrole: window.subrole,
1277
+ pairing: platformRootPairing(window),
1278
+ zOrder: window.zOrder,
1279
+ browserUseAllowed: config.browser_use || !currentPlatformBackend.isBrowserApp(app.appName, app.bundleId),
1280
+ score: scoreWindow(window),
1281
+ };
1282
+ }
1283
+
1284
+ function sortWindowDetails(windows: ListWindowsDetails["windows"]): ListWindowsDetails["windows"] {
1285
+ return windows.sort((a, b) => b.score - a.score || a.app.localeCompare(b.app) || a.windowTitle.localeCompare(b.windowTitle));
1286
+ }
1287
+
1288
+ // Side effect: stores stable @r refs for discovered windows in runtimeState.
1289
+ async function collectWindowDetails(apps: HelperApp[], config: ReturnType<typeof getComputerUseConfig>, signal?: AbortSignal): Promise<ListWindowsDetails["windows"]> {
1290
+ const perApp = await Promise.all(apps.map(async (app) => ({ app, windows: await listWindows(app.pid, signal) })));
1291
+ return sortWindowDetails(perApp.flatMap(({ app, windows }) => windows.map((window) => windowDetails(app, window, config))));
1292
+ }
1293
+
1294
+ function collectBroadWindowDetails(roots: HelperWindow[], config: ReturnType<typeof getComputerUseConfig>): ListWindowsDetails["windows"] {
1295
+ const windows: ListWindowsDetails["windows"] = [];
1296
+ for (const window of roots) {
1297
+ if (!window.pid) continue;
1298
+ windows.push(windowDetails({ appName: window.appName ?? "Unknown App", bundleId: window.bundleId, pid: window.pid }, window, config));
1299
+ }
1300
+ return sortWindowDetails(windows);
1301
+ }
1302
+
1303
+ async function windowDetailsForFind(query: FindParams, config: ReturnType<typeof getComputerUseConfig>, signal?: AbortSignal): Promise<ListWindowsDetails["windows"]> {
1304
+ if (!query.app && !query.bundleId && !Number.isFinite(query.pid)) {
1305
+ return collectBroadWindowDetails(await currentPlatformBackend.listRoots({}, signal), config);
1306
+ }
1307
+ const apps = (await listApps(signal)).filter((app) => appMatchesWindowQuery(app, query));
1308
+ return await collectWindowDetails(apps, config, signal);
1309
+ }
1310
+
1311
+ async function performListWindows(params: FindParams, signal?: AbortSignal): Promise<AgentToolResult<ListWindowsDetails>> {
1312
+ const rawParams = params ?? {};
1313
+ const query: FindParams = {
1314
+ text: trimOrUndefined(rawParams.text),
1315
+ app: trimOrUndefined(rawParams.app),
1316
+ bundleId: trimOrUndefined(rawParams.bundleId),
1317
+ pid: Number.isFinite(rawParams.pid) ? Math.trunc(rawParams.pid!) : undefined,
1318
+ kind: rawParams.kind,
1319
+ };
1320
+ const config = getComputerUseConfig();
1321
+ const desktopForest = await windowDetailsForFind(query, config, signal);
1322
+ const includeBrowserPages = !query.pid && !query.bundleId && (!query.app || normalizeText(query.app) === "browser") && config.browser_use;
1323
+ const browserForest: ListWindowsDetails["windows"] = !includeBrowserPages ? [] : (await listCdpPageContexts().catch(() => []))
1324
+ .map((page) => ({
1325
+ app: "Browser",
1326
+ pid: 0,
1327
+ kind: "browser_page",
1328
+ windowTitle: page.title || page.url,
1329
+ windowRef: storeBrowserRootRef(page.contextId),
1330
+ framePoints: { x: 0, y: 0, w: 1, h: 1 },
1331
+ scaleFactor: 1,
1332
+ isMinimized: false,
1333
+ isOnscreen: true,
1334
+ isMain: false,
1335
+ isFocused: false,
1336
+ isModal: false,
1337
+ zOrder: Number.MAX_SAFE_INTEGER,
1338
+ browserUseAllowed: true,
1339
+ score: 0,
1340
+ url: page.url,
1341
+ }));
1342
+ const allRoots = [...desktopForest, ...browserForest];
1343
+ const forest = allRoots.filter((root) => !query.kind || root.kind === query.kind);
1344
+ const ranked = forest.map((root, order) => ({ root, order, match: query.text ? rankedTextMatch([root.app, root.windowTitle], query.text) : { reason: "filter" as const, score: 1 } }))
1345
+ .filter((entry) => entry.match)
1346
+ .sort((a, b) => b.match!.score - a.match!.score || Number(b.root.isFocused) - Number(a.root.isFocused) || a.root.zOrder - b.root.zOrder || a.order - b.order);
1347
+ const totalMatches = ranked.length;
1348
+ const windows = ranked.slice(0, 12).map((entry) => entry.root);
1349
+ const details: ListWindowsDetails = { tool: "find_roots", query, windows, totalMatches, returned: windows.length, hasMore: totalMatches > windows.length, config };
1350
+ const lines = windows.map(formatWindowLine);
1351
+ const text = lines.length
1352
+ ? `Found ${totalMatches} matching root${totalMatches === 1 ? "" : "s"}; returned ${windows.length}${totalMatches > windows.length ? ". Refine the filters for additional roots" : ""}. Use @r refs with observe_ui({ root: "@rN" }).\n${lines.join("\n")}`
1353
+ : query.text || query.app || query.bundleId || query.pid || query.kind
1354
+ ? "No roots matched the supplied filters."
1355
+ : "No roots are currently visible to pi-computer-use.";
1356
+ return { content: [{ type: "text", text }], details };
1357
+ }
1358
+
1359
+ function normalizeImageMode(value: unknown): ImageMode {
1360
+ return value === "always" || value === "never" ? value : "auto";
1361
+ }
1362
+
1363
+ function isBrowserContextId(contextId: string | undefined): contextId is string {
1364
+ return Boolean(contextId?.startsWith(BROWSER_CONTEXT_PREFIX));
1365
+ }
1366
+
1367
+ function browserSnapshotTarget(snapshotId: string | undefined, ref: string | undefined): { contextId: string; backendNodeId?: number } | undefined {
1368
+ if (!snapshotId || !ref) return undefined;
1369
+ const record = savedStates.get(snapshotId);
1370
+ const snapshot = record?.value.kind === "browser" ? record.value.snapshot : undefined;
1371
+ const target = snapshot?.targets.find((candidate) => candidate.ref === ref);
1372
+ if (!snapshot || !target) return undefined;
1373
+ return { contextId: snapshot.contextId, backendNodeId: target.backendNodeId };
1374
+ }
1375
+
1376
+ function browserContextForOperation(): string | undefined {
1377
+ const contextId = operationState().contextId;
1378
+ return isBrowserContextId(contextId) ? contextId : undefined;
1379
+ }
1380
+
1381
+ async function withBrowserWrite<T>(contextId: string, work: () => Promise<T>): Promise<T> {
1382
+ const state = operationState();
1383
+ const targetId = contextId.slice(BROWSER_CONTEXT_PREFIX.length);
1384
+ const resourceKey = `cdp:${targetId}`;
1385
+ const baseEpoch = state.epoch ?? resourceScheduler.epoch(resourceKey);
1386
+ const result = await resourceScheduler.write(resourceKey, baseEpoch, async (nextEpoch) => {
1387
+ state.resourceKey = resourceKey;
1388
+ state.epoch = nextEpoch;
1389
+ return await work();
1390
+ });
1391
+ return result.value;
1392
+ }
1393
+
1394
+ function browserObservationResult(browser: CdpPageSnapshot, resourceKey: string, epoch: number, tool: string, base?: { stateId: string; outline: SerializedOutline }): AgentToolResult<BrowserObservationDetails> {
1395
+ savedStates.set({ stateId: browser.snapshotId, resourceKey, epoch, value: { kind: "browser", snapshot: browser, outline: browser.outline } });
1396
+ const currentOutline = restoreOutline(browser.outline);
1397
+ const transition = base ? changesBetween(restoreOutline(base.outline), currentOutline) : undefined;
1398
+ const useDiff = Boolean(transition && !transition.useFullView);
1399
+ const folded = foldToBudget(currentOutline);
1400
+ const root = { ref: storeBrowserRootRef(browser.contextId), kind: "browser_page" as const, title: browser.title, url: browser.url };
1401
+ const details: BrowserObservationDetails = { tool, kind: "browser_page", stateId: browser.snapshotId, baseStateId: base?.stateId, view: useDiff ? "diff" : "full", changes: useDiff ? transition?.changes : undefined, root, outline: browser.outline, renderedOutline: folded.text };
1402
+ const viewText = useDiff
1403
+ ? `Changes (${transition!.changedNodeCount}, ${base!.stateId} → ${browser.snapshotId}):\n${renderChanges(transition!.changes) || "(no element changes)"}\nUse stateId ${browser.snapshotId} for subsequent actions and queries.`
1404
+ : folded.text;
1405
+ return { content: [{ type: "text", text: `${tool} completed for ${root.ref} ${JSON.stringify(browser.title)}. State ${browser.snapshotId}.\n${viewText}` }], details };
1406
+ }
1407
+
1408
+ async function refreshBrowserSnapshot(contextId: string, tool: string, base?: { stateId: string; outline: SerializedOutline }): Promise<AgentToolResult<BrowserObservationDetails>> {
1409
+ const browser = await cdpSnapshotForContext(contextId);
1410
+ if (!browser) throw new Error(`Browser root '${contextId}' is no longer available. Call find_roots and observe_ui again.`);
1411
+ const state = operationState();
1412
+ const resourceKey = state.resourceKey ?? `cdp:${browser.targetId}`;
1413
+ return browserObservationResult(browser, resourceKey, state.epoch ?? resourceScheduler.epoch(resourceKey), tool, base);
1414
+ }
1415
+
1416
+ function sliceText(value: string, offsetValue: unknown, _limitValue?: unknown): Pick<ReadTextDetails, "offset" | "limit" | "totalChars" | "hasMore" | "text"> {
1417
+ const offset = Math.max(0, Math.trunc(toFiniteNumber(offsetValue, 0)));
1418
+ const limit = UI_TEXT_PAGE_CHARS;
1419
+ const characters = Array.from(value);
1420
+ const end = Math.min(characters.length, offset + limit);
1421
+ return {
1422
+ offset,
1423
+ limit,
1424
+ totalChars: characters.length,
1425
+ hasMore: end < characters.length,
1426
+ text: offset >= characters.length ? "" : characters.slice(offset, end).join(""),
1427
+ };
1428
+ }
1429
+
1430
+ async function performReadText(params: ReadTextParams, signal?: AbortSignal): Promise<AgentToolResult<ReadTextDetails>> {
1431
+ const ref = trimOrUndefined(params.ref);
1432
+ if (ref?.startsWith("@o")) {
1433
+ const page = readStoredOutput(ref, params.offset);
1434
+ if (!page) throw new Error(`Output ref '${ref}' is unavailable or was evicted. Rerun the focused query.`);
1435
+ const details: ReadTextDetails = { tool: "read_text", ref, ...page };
1436
+ const suffix = page.hasMore
1437
+ ? `\n\ncontinue: read_text({ ref: "${ref}", offset: ${page.offset + page.limit} })`
1438
+ : page.complete ? "" : "\n\ncontinuation storage limit reached; rerun a more focused query for the remainder";
1439
+ return { content: [{ type: "text", text: `${page.text || "(empty output page)"}${suffix}` }], details };
1440
+ }
1441
+ const contextId = operationState().contextId;
1442
+ if (isBrowserContextId(contextId)) {
1443
+ const snapshot = operationState().browserSnapshot;
1444
+ if (!snapshot || snapshot.contextId !== contextId) throw new Error(`Browser state '${params.stateId}' is unavailable. Observe the browser root again.`);
1445
+ if (!ref) throw new Error("read_text requires an @e ref for browser contexts; use the outline root ref for whole-page text.");
1446
+ const outline = restoreOutline(snapshot.outline);
1447
+ const node = nodeByRef(outline, ref);
1448
+ if (!node) throw new Error(`Browser text ref '${ref}' is unavailable in this state.`);
1449
+ const collect = (current: OutlineNode): string[] => [outlineNodeLabel(current), ...current.text.map((item) => item.string), ...current.children.flatMap(collect)].filter(Boolean);
1450
+ const value = node === outline.root ? snapshot.text : [...new Set(collect(node))].join("\n");
1451
+ const sliced = sliceText(value, params.offset);
1452
+ const details: ReadTextDetails = { tool: "read_text", ref, ...sliced };
1453
+ return { content: [{ type: "text", text: sliced.text || "(empty text slice)" }], details };
1454
+ }
1455
+
1456
+ validateStateId(params.stateId);
1457
+ if (!ref) throw new Error("read_text requires ref for desktop contexts. Call observe_ui/inspect_ui and use a text-bearing outline ref.");
1458
+ const node = outlineNodeByRef(ref);
1459
+ const state = operationState();
1460
+ if (!state.resourceKey || state.epoch === undefined) throw new Error("The observation has no live resource identity. Observe again.");
1461
+ const raw = (await resourceScheduler.readAt(state.resourceKey, state.epoch, async () => await currentPlatformBackend.readText({
1462
+ lookId: state.currentOutline!.lookId,
1463
+ elementRef: wireRefForNode(node),
1464
+ offset: Math.max(0, Math.trunc(toFiniteNumber(params.offset, 0))),
1465
+ limit: UI_TEXT_PAGE_CHARS,
1466
+ }, { signal, timeoutMs: COMMAND_TIMEOUT_MS }))).value;
1467
+ const text = raw.text;
1468
+ const details: ReadTextDetails = {
1469
+ tool: "read_text",
1470
+ ref,
1471
+ offset: raw.offset,
1472
+ limit: raw.limit,
1473
+ totalChars: raw.totalChars,
1474
+ hasMore: raw.hasMore,
1475
+ text,
1476
+ };
1477
+ return { content: [{ type: "text", text: text || "(empty text slice)" }], details };
1478
+ }
1479
+
1480
+ function normalizeWaitTimeoutMs(value: unknown): number {
1481
+ return Math.max(100, Math.min(60_000, Math.trunc(toFiniteNumber(value, 10_000))));
1482
+ }
1483
+
1484
+ function conditionScopeRef(params: WaitForParams | NonNullable<ActParams["expect"]>): string | undefined {
1485
+ const ref = trimOrUndefined(params.ref);
1486
+ const scopeRef = trimOrUndefined(params.scopeRef);
1487
+ if (ref && scopeRef) throw new Error("A UI condition accepts ref or scopeRef, not both.");
1488
+ return ref ?? scopeRef;
1489
+ }
1490
+
1491
+ function validateCondition(params: WaitForParams | NonNullable<ActParams["expect"]>): { text?: string; role?: string; value?: string; scopeRef?: string; scopeExact: boolean; gone: boolean; timeoutMs: number } {
1492
+ const text = trimOrUndefined(params.text);
1493
+ const role = trimOrUndefined(params.role);
1494
+ const value = trimOrUndefined(params.value);
1495
+ const scopeRef = conditionScopeRef(params);
1496
+ if (!text && !role && !value) throw new Error("A UI condition requires text, role, or value.");
1497
+ if (role && !text && !value && !scopeRef) throw new Error("A role-only UI condition requires ref or scopeRef.");
1498
+ if (value && !params.ref) throw new Error("A value UI condition requires an exact ref.");
1499
+ return { text, role, value, scopeRef, scopeExact: Boolean(params.ref), gone: params.until === "absent", timeoutMs: normalizeWaitTimeoutMs(params.timeoutMs) };
1500
+ }
1501
+
1502
+ function nodeWithinScope(node: OutlineNode, scopeRef: string | undefined, scopeExact: boolean): boolean {
1503
+ if (!scopeRef) return true;
1504
+ if (scopeExact) return node.ref === scopeRef;
1505
+ let current: OutlineNode | undefined = node;
1506
+ while (current) {
1507
+ if (current.ref === scopeRef) return true;
1508
+ current = current.parent;
1509
+ }
1510
+ return false;
1511
+ }
1512
+
1513
+ function normalizedRole(value: string): string {
1514
+ return value.toLowerCase().replace(/^ax/, "").replace(/[ _-]+/g, "");
1515
+ }
1516
+
1517
+ function platformRole(outline: Outline, role: string | undefined): string | undefined {
1518
+ if (!role) return undefined;
1519
+ return outline.nodes.find((node) => normalizedRole(node.role) === normalizedRole(role))?.role ?? role;
1520
+ }
1521
+
1522
+ function outlineConditionPresent(outline: Outline, condition: ReturnType<typeof validateCondition>): boolean {
1523
+ return searchOutline(outline, condition.text, undefined, undefined, outline.nodes.length)
1524
+ .some((match) => (!condition.role || normalizedRole(match.node.role) === normalizedRole(condition.role)) && nodeWithinScope(match.node, condition.scopeRef, condition.scopeExact) && (!condition.value || normalizeText(match.node.value) === normalizeText(condition.value)));
1525
+ }
1526
+
1527
+ function conditionScopeNode(outline: Outline, condition: ReturnType<typeof validateCondition>): OutlineNode | undefined {
1528
+ const scopeNode = condition.scopeRef ? nodeByRef(outline, condition.scopeRef) : undefined;
1529
+ if (condition.scopeRef && !scopeNode) throw new Error(`Condition scope ref '${condition.scopeRef}' is unavailable in this state.`);
1530
+ return scopeNode;
1531
+ }
1532
+
1533
+ async function performWaitFor(params: WaitForParams, signal?: AbortSignal): Promise<AgentToolResult<WaitForDetails>> {
1534
+ const contextId = operationState().contextId;
1535
+ const condition = validateCondition(params);
1536
+ const { text, role, value, scopeRef, scopeExact, gone, timeoutMs } = condition;
1537
+
1538
+ if (isBrowserContextId(contextId)) {
1539
+ const state = operationState();
1540
+ if (!state.resourceKey) throw new Error("The browser observation has no live resource identity. Observe again.");
1541
+ const baseSnapshot = state.browserSnapshot;
1542
+ if (!baseSnapshot) throw new Error("Browser wait requires a complete base observation.");
1543
+ conditionScopeNode(restoreOutline(baseSnapshot.outline), condition);
1544
+ const deadline = Date.now() + timeoutMs;
1545
+ let lastSnapshot: CdpPageSnapshot | undefined;
1546
+ let lastEpoch = state.epoch ?? resourceScheduler.epoch(state.resourceKey);
1547
+ const finish = (found: boolean, timedOut?: boolean): AgentToolResult<WaitForDetails> => {
1548
+ if (!lastSnapshot) throw new Error("Browser wait completed without an observation.");
1549
+ savedStates.set({ stateId: lastSnapshot.snapshotId, resourceKey: state.resourceKey!, epoch: lastEpoch, value: { kind: "browser", snapshot: lastSnapshot, outline: lastSnapshot.outline } });
1550
+ const successorOutline = restoreOutline(lastSnapshot.outline);
1551
+ const transition = changesBetween(restoreOutline(baseSnapshot.outline), successorOutline);
1552
+ const useDiff = !transition.useFullView;
1553
+ const renderedOutline = foldToBudget(successorOutline).text;
1554
+ const details: WaitForDetails = { tool: "wait_for", stateId: lastSnapshot.snapshotId, baseStateId: baseSnapshot.snapshotId, view: useDiff ? "diff" : "full", changes: useDiff ? transition.changes : undefined, found, gone: found && gone || undefined, timedOut, nodeCount: lastSnapshot.targets.length, text, role, value, scopeRef, outline: lastSnapshot.outline, renderedOutline };
1555
+ const message = found ? (gone ? "Condition disappeared." : "Condition appeared.") : `Timed out after ${timeoutMs}ms waiting for condition.`;
1556
+ const viewText = useDiff ? `${renderChanges(transition.changes) || "(no element changes)"}\nUse stateId ${lastSnapshot.snapshotId} for subsequent actions and queries.` : renderedOutline;
1557
+ return { content: [{ type: "text", text: `${message}\n${viewText}` }], details };
1558
+ };
1559
+ do {
1560
+ const scheduled = await resourceScheduler.read(state.resourceKey, async () => await cdpSnapshotForContext(contextId));
1561
+ lastSnapshot = scheduled.value;
1562
+ lastEpoch = scheduled.epoch;
1563
+ if (!lastSnapshot) throw new Error(`Browser root '${contextId}' is no longer available. Call find_roots and observe_ui again.`);
1564
+ const present = outlineConditionPresent(restoreOutline(lastSnapshot.outline), condition);
1565
+ if (present !== gone) return finish(true);
1566
+ await sleep(200, signal);
1567
+ } while (Date.now() < deadline);
1568
+ return finish(false, true);
1569
+ }
1570
+
1571
+ const state = operationState();
1572
+ const baseView = { stateId: state.currentCapture!.stateId, outline: state.currentOutline! };
1573
+ let target = await resolveCurrentTarget(signal);
1574
+ target = await ensureTargetWindowId(target, signal);
1575
+ const scopeNode = conditionScopeNode(state.currentOutline!, condition);
1576
+ const raw = await currentPlatformBackend.waitFor({
1577
+ ...nativeWindowRequest(target),
1578
+ lookId: state.currentOutline!.lookId,
1579
+ text,
1580
+ role: platformRole(state.currentOutline!, role),
1581
+ value,
1582
+ scopeRef: scopeNode ? wireRefForNode(scopeNode) : undefined,
1583
+ scopeExact,
1584
+ gone,
1585
+ timeoutMs,
1586
+ }, { signal, timeoutMs: timeoutMs + 2_000 });
1587
+ if (!state.resourceKey || state.epoch === undefined) throw new Error("The observation has no live resource identity. Observe again.");
1588
+ const refreshed = (await resourceScheduler.readAt(state.resourceKey, state.epoch, async () => await captureCurrentTarget(signal, "auto"))).value;
1589
+ const transition = changesBetween(baseView.outline, refreshed.outline);
1590
+ const useDiff = !transition.useFullView;
1591
+ const matches = searchOutline(refreshed.outline, text, role, undefined, 1);
1592
+ const foundTarget = matches[0];
1593
+ const details: WaitForDetails = {
1594
+ tool: "wait_for",
1595
+ stateId: refreshed.capture.stateId,
1596
+ baseStateId: baseView.stateId,
1597
+ view: useDiff ? "diff" : "full",
1598
+ changes: useDiff ? transition.changes : undefined,
1599
+ found: raw.found,
1600
+ gone: raw.gone || undefined,
1601
+ timedOut: raw.timedOut || undefined,
1602
+ target: foundTarget ? serializeOutlineSearchMatch(foundTarget) : undefined,
1603
+ nodeCount: Number.isFinite(raw.nodeCount) ? Number(raw.nodeCount) : refreshed.outline.nodes.length,
1604
+ text,
1605
+ role,
1606
+ value,
1607
+ scopeRef,
1608
+ outline: serializeOutline(refreshed.outline),
1609
+ renderedOutline: foldToBudget(refreshed.outline).text,
1610
+ };
1611
+ const message = details.found ? (details.gone ? "Condition disappeared." : "Condition appeared.") : `Timed out after ${timeoutMs}ms waiting for condition.`;
1612
+ const viewText = useDiff ? `${renderChanges(transition.changes) || "(no element changes)"}\nUse stateId ${refreshed.capture.stateId} for subsequent actions and queries.` : details.renderedOutline;
1613
+ return { content: [{ type: "text", text: `${message}\n${viewText}` }], details };
1614
+ }
1615
+
1616
+ function sameRootIdentity(a: CurrentTarget, b: CurrentTarget): boolean {
1617
+ if (a.pid !== b.pid) return false;
1618
+ if (a.windowId > 0 && b.windowId > 0) return a.windowId === b.windowId;
1619
+ if (a.nativeWindowRef && b.nativeWindowRef) return a.nativeWindowRef === b.nativeWindowRef;
1620
+ return normalizeText(a.windowTitle) === normalizeText(b.windowTitle);
1621
+ }
1622
+
1623
+ /** Side effects: captures/updates current target, capture state, look, and parsed outline. */
1624
+ async function performObserve(params: ObserveParams, signal?: AbortSignal): Promise<AgentToolResult<ComputerUseDetails | BrowserObservationDetails>> {
1625
+ const requestedRoot = typeof params.root === "string" ? params.root : undefined;
1626
+ if (requestedRoot && !/^@r\d+$/.test(requestedRoot)) throw new Error("observe_ui.root must be an exact @r ref issued by find_roots.");
1627
+ const browserContextId = requestedRoot ? runtimeState.browserContextByRoot.get(requestedRoot) : undefined;
1628
+ if (isBrowserContextId(browserContextId)) {
1629
+ const targetId = browserContextId.slice(BROWSER_CONTEXT_PREFIX.length);
1630
+ const resourceKey = `cdp:${targetId}`;
1631
+ const scheduled = await resourceScheduler.read(resourceKey, async () => await cdpSnapshotForContext(browserContextId));
1632
+ const browser = scheduled.value;
1633
+ if (!browser) throw new Error(`Browser context '${browserContextId}' is no longer available. Call find_roots again.`);
1634
+ return browserObservationResult(browser, resourceKey, scheduled.epoch, "observe_ui");
1635
+ }
1636
+ const state = operationState();
1637
+ const mode = params.mode ?? "fused";
1638
+ const image = mode === "semantic" ? "never" : mode === "visual" ? "always" : "auto";
1639
+ const defaultReadText = mode === "semantic" ? "never" : mode === "visual" ? "always" : "auto";
1640
+ const readText = params.readText ?? defaultReadText;
1641
+ state.currentImageMode = normalizeImageMode(image);
1642
+ const selection: ObserveTargetParams = { root: normalizeWindowSelector(params.root) };
1643
+ const requestedTarget = selection.root
1644
+ ? await resolveTargetByWindowSelector(params.root!, signal)
1645
+ : await resolveTargetForObserve(signal);
1646
+ const imageMode = normalizeImageMode(image);
1647
+ const resourceKey = desktopResourceKey(requestedTarget);
1648
+ const scheduled = await resourceScheduler.read(resourceKey, async (epoch) => {
1649
+ state.resourceKey = resourceKey;
1650
+ state.epoch = epoch;
1651
+ return await captureCurrentTarget(signal, readText, imageMode === "always" ? EXPLICIT_IMAGE_MAX_DIMENSION : AUTO_IMAGE_MAX_DIMENSION, requestedTarget, imageMode !== "never");
1652
+ });
1653
+ const captureResult = scheduled.value;
1654
+ // Model @r refs are re-minted on re-resolution, so ref string equality
1655
+ // alone false-positives as drift for the same root; compare stable
1656
+ // identity against the resolved request too.
1657
+ if (!matchesObserveSelection(captureResult.target, selection) && !sameRootIdentity(captureResult.target, requestedTarget)) {
1658
+ throw new Error(
1659
+ `Observation target drifted from the requested selection. Requested ${requestedTarget.appName} — ${requestedTarget.windowTitle}, captured ${captureResult.target.appName} — ${captureResult.target.windowTitle}. Call observe_ui again or specify a more exact window title.`,
1660
+ );
1661
+ }
1662
+ const summary = `Observed ${mode} ${captureResult.target.windowRef ? `${captureResult.target.windowRef} ` : ""}${captureResult.target.appName} — ${captureResult.target.windowTitle}. Returned the latest outline state.`;
1663
+ return await buildToolResult("observe_ui", summary, captureResult, executionTrace("look", "stealth"), signal, imageMode);
1664
+ }
1665
+
1666
+ function currentOutlineOrThrow(stateId?: string): Outline {
1667
+ validateStateId(stateId);
1668
+ const outline = operationState().currentOutline;
1669
+ if (!outline) throw new Error("No observation outline is available. Call observe_ui first.");
1670
+ return outline;
1671
+ }
1672
+
1673
+ function matchIsNonActionableStatic(match: OutlineSearchMatch): boolean {
1674
+ const node = match.node;
1675
+ return !node.canPress && !node.canFocus && !node.canSetValue && node.actions.length === 0 && !node.pictureOnly;
1676
+ }
1677
+
1678
+ function shouldEscalateSearchOCR(matches: OutlineSearchMatch[], _text?: string): boolean {
1679
+ return matches.length === 0 || matches.every(matchIsNonActionableStatic);
1680
+ }
1681
+
1682
+ /** Pure outline query unless a window selector is supplied, in which case current target selection may change. */
1683
+ async function performSearchUi(params: SearchUiParams, signal?: AbortSignal): Promise<AgentToolResult<OutlineToolDetails>> {
1684
+ const state = operationState();
1685
+ let outline = currentOutlineOrThrow(params.stateId);
1686
+ const text = trimOrUndefined(params.text);
1687
+ const role = trimOrUndefined(params.role);
1688
+ const capability = trimOrUndefined(params.capability);
1689
+ if (!text && !role && !capability) throw new Error("search_ui requires text, role, or capability. Use observe_ui for a bounded overview.");
1690
+ const limit = 12;
1691
+ let ranked = searchOutlineRanked(outline, text, role, capability, limit);
1692
+ let matches = ranked.matches;
1693
+ let escalatedOCR = false;
1694
+ const look = state.currentLook;
1695
+ if (shouldEscalateSearchOCR(matches, text) && look && look.readText?.requested !== "never" && !look.readText?.executed && state.lastSearchOcrEscalatedLookId !== look.lookId) {
1696
+ state.lastSearchOcrEscalatedLookId = look.lookId;
1697
+ const currentTarget = await ensureTargetWindowId(await resolveCurrentTarget(signal), signal);
1698
+ // captureCurrentTarget adopts the new look/outline/capture into
1699
+ // runtimeState, so refs in these matches stay actable. Keep the image
1700
+ // payload: OCR-only matches are clicked by coordinate, and coordinate
1701
+ // acts require the current look to be image-bearing.
1702
+ if (!state.resourceKey || state.epoch === undefined) throw new Error("The observation has no live resource identity. Observe again.");
1703
+ const captureResult = (await resourceScheduler.readAt(state.resourceKey, state.epoch, async () => await captureCurrentTarget(signal, "always", AUTO_IMAGE_MAX_DIMENSION, currentTarget))).value;
1704
+ outline = captureResult.outline;
1705
+ ranked = searchOutlineRanked(outline, text, role, capability, limit);
1706
+ matches = ranked.matches;
1707
+ escalatedOCR = true;
1708
+ }
1709
+ const detailMatches = matches.map(serializeOutlineSearchMatch);
1710
+ const details: OutlineToolDetails = { tool: "search_ui", stateId: state.currentCapture?.stateId, lookId: outline.lookId, matches: detailMatches, totalMatches: ranked.totalMatches, returned: matches.length, hasMore: ranked.totalMatches > matches.length, note: state.currentNote };
1711
+ const lines = matches.map((match) => `${match.ref} ${match.role || "Unknown"} ${JSON.stringify(match.label || "(unlabeled)")} [${match.matchReason}${match.matchReason === "fuzzy" ? ` ${match.score?.toFixed(2)}` : ""}]\n path: ${match.path}`);
1712
+ const noteHeader = renderNote(state.currentNote);
1713
+ const noteText = noteHeader ? `${noteHeader}\n\n` : "";
1714
+ const escalationText = escalatedOCR ? " OCR text was escalated for this search after the cached outline had no matches." : "";
1715
+ const moreText = ranked.totalMatches > matches.length ? ` Refine the query to inspect ${ranked.totalMatches - matches.length} additional matches.` : "";
1716
+ return { content: [{ type: "text", text: `${noteText}Found ${ranked.totalMatches} outline match${ranked.totalMatches === 1 ? "" : "es"}; returned ${matches.length}.${moreText}${escalationText}\n${lines.join("\n")}` }], details };
1717
+ }
1718
+
1719
+ /** Reads cached outline; truncated refs trigger a scoped look. */
1720
+ async function performExpandUi(params: ExpandUiParams, signal?: AbortSignal): Promise<AgentToolResult<OutlineToolDetails>> {
1721
+ const state = operationState();
1722
+ let outline = currentOutlineOrThrow(params.stateId);
1723
+ const ref = trimOrUndefined(params.ref);
1724
+ if (!ref) throw new Error("expand_ui.ref is required.");
1725
+ const initialTarget = nodeByRef(outline, ref);
1726
+ if (!initialTarget) throw new Error(`Outline ref '${ref}' is not available in the current outline.`);
1727
+ let target: OutlineNode = initialTarget;
1728
+ const depth = Math.max(1, Math.min(8, Math.trunc(toFiniteNumber(params.depth, 3))));
1729
+ const regionKey = noteRegionKeyForRef(outline, ref);
1730
+ const regionChanged = Boolean(regionKey && state.currentNote?.regions.some((region) => region.key === regionKey && region.status === "changed"));
1731
+ if (target.truncated || regionChanged) {
1732
+ const currentTarget = await ensureTargetWindowId(await resolveCurrentTarget(signal), signal);
1733
+ const targetWireRef = wireRefForNode(target);
1734
+ if (!state.resourceKey || state.epoch === undefined) throw new Error("The observation has no live resource identity. Observe again.");
1735
+ const scoped = (await resourceScheduler.readAt(state.resourceKey, state.epoch, async () => await performLook(currentTarget, {
1736
+ readText: "auto",
1737
+ baseLookId: outline.lookId,
1738
+ scopeRef: targetWireRef,
1739
+ maxDimension: 1,
1740
+ includeImage: false,
1741
+ }, signal))).value;
1742
+ target = graftScopedOutline(outline, target.ref, scoped.parsedOutline!);
1743
+ outline.lookId = scoped.lookId;
1744
+ state.currentOutline = outline;
1745
+ state.currentLook = { ...scoped, image: state.currentLook?.image, outline: outline.root, parsedOutline: outline };
1746
+ persistOperation(state);
1747
+ }
1748
+ const folded = foldToBudget(outline, { maxDepth: depth, maxNodes: 150 }, [target.ref]);
1749
+ const details: OutlineToolDetails = { tool: "expand_ui", stateId: state.currentCapture?.stateId, lookId: outline.lookId, target: serializeOutlineNodeShallow(target), renderedOutline: folded.text, note: state.currentNote };
1750
+ return { content: [{ type: "text", text: `${formatOutlineNodeLabel(target)}\npath: ${outlineNodePath(target)}\n\n${folded.text}` }], details };
1751
+ }
1752
+
1753
+ /** Pure cached-outline inspection. */
1754
+ async function performInspectUi(params: InspectUiParams): Promise<AgentToolResult<OutlineToolDetails>> {
1755
+ const state = operationState();
1756
+ const outline = currentOutlineOrThrow(params.stateId);
1757
+ const ref = trimOrUndefined(params.ref);
1758
+ if (!ref) throw new Error("inspect_ui.ref is required.");
1759
+ const target = nodeByRef(outline, ref);
1760
+ if (!target) throw new Error(`Outline ref '${ref}' is not available in the current outline.`);
1761
+ const details: OutlineToolDetails = { tool: "inspect_ui", stateId: state.currentCapture?.stateId, lookId: outline.lookId, target: serializeOutlineNodeShallow(target), note: state.currentNote };
1762
+ const fields = [
1763
+ formatOutlineNodeLabel(target),
1764
+ `path: ${outlineNodePath(target)}`,
1765
+ `rect: ${JSON.stringify(target.rect)}`,
1766
+ `actions: ${target.actions.join(",") || "none"}`,
1767
+ `capabilities: ${[
1768
+ target.canPress ? "press" : undefined,
1769
+ target.canFocus ? "focus" : undefined,
1770
+ target.canSetValue ? "setValue" : undefined,
1771
+ target.canScroll ? "scroll" : undefined,
1772
+ target.canIncrement ? "increment" : undefined,
1773
+ target.canDecrement ? "decrement" : undefined,
1774
+ target.isTextInput ? "textInput" : undefined,
1775
+ ].filter(Boolean).join(",") || "none"}`,
1776
+ `annotations: ${[
1777
+ target.offscreen ? "offscreen" : undefined,
1778
+ target.pictureOnly ? "pictureOnly" : undefined,
1779
+ target.truncated ? "truncated" : undefined,
1780
+ target.scrollExtent ? `scrollable ${target.scrollExtent.seen}/${target.scrollExtent.total}` : undefined,
1781
+ ].filter(Boolean).join(",") || "none"}`,
1782
+ ];
1783
+ return { content: [{ type: "text", text: fields.join("\n") }], details };
1784
+ }
1785
+
1786
+ function prepareUiAction(action: UiAction, state: ActionState, look: LookResponse, headless: boolean): PreparedAction {
1787
+ return prepareAction(action, state, {
1788
+ headless,
1789
+ image: look.image,
1790
+ node: outlineNodeByRef,
1791
+ center: outlineNodeCenter,
1792
+ validatePoint: (x, y, label) => ensurePointIsInLookImage(x, y, look, label),
1793
+ });
1794
+ }
1795
+
1796
+ async function dispatchUiAction(action: UiAction, target: ResolvedTarget, look: LookResponse, headless: boolean, state: ActionState, signal?: AbortSignal): Promise<ExecutionTrace> {
1797
+ const prepared = prepareUiAction(action, state, look, headless);
1798
+ if (prepared.action === "wait") {
1799
+ await sleep(prepared.params.ms, signal);
1800
+ return executionTrace("wait", "stealth", { outcome: "worked" });
1801
+ }
1802
+ const trace = await helperAct(target, prepared, headless, signal);
1803
+ if (!headless && (prepared.establishesFocus || (prepared.action === "click" && "x" in prepared.target))) {
1804
+ state.currentFocus = true;
1805
+ }
1806
+ return trace;
1807
+ }
1808
+
1809
+ async function dispatchUiTransaction(actions: UiAction[], target: ResolvedTarget, look: LookResponse, headless: boolean, signal?: AbortSignal): Promise<ExecutionTrace> {
1810
+ // Strict-headless batches have one immutable delivery class. When foreground
1811
+ // fallback is permitted, decide independently per action so a completed
1812
+ // background prefix is never replayed as part of a foreground batch.
1813
+ if (headless && currentPlatformBackend.actBatch) {
1814
+ const actionState: ActionState = { currentFocus: false };
1815
+ const requests = actions.map((action) => helperActRequest(target, prepareUiAction(action, actionState, look, true) as NativePreparedAction, "ax_only"));
1816
+ const textLength = actions.reduce((sum, action) => sum + (action.text?.length ?? 0), 0);
1817
+ const result = await currentPlatformBackend.actBatch(requests, { signal, timeoutMs: Math.max(COMMAND_TIMEOUT_MS, textLength * 25 + 6_000) });
1818
+ if (!result.steps || result.steps.length === 0) throw new Error("Native action transaction returned no checked steps.");
1819
+ const execution = aggregateExecutions(result.steps.map((step) => executionTraceFromAct(step, "ax_only")));
1820
+ const batchTrace = executionTraceFromAct(result, "ax_only");
1821
+ execution.outcome = result.outcome;
1822
+ execution.performed = result.performed;
1823
+ execution.rootDelta = batchTrace.rootDelta;
1824
+ execution.stoppedAt = result.stoppedAt;
1825
+ return execution;
1826
+ }
1827
+ const steps: ExecutionTrace[] = [];
1828
+ const actionState: ActionState = { currentFocus: false };
1829
+ for (const action of actions) {
1830
+ const step = await dispatchUiAction(action, target, look, headless, actionState, signal);
1831
+ steps.push(step);
1832
+ if (step.outcome === "didnt") break;
1833
+ }
1834
+ return aggregateExecutions(steps);
1835
+ }
1836
+
1837
+ function aggregateExecutions(steps: ExecutionTrace[]): ExecutionTrace {
1838
+ const outcomes = steps.map((step) => step.outcome);
1839
+ const outcome: ActOutcome = outcomes.includes("didnt") ? "didnt" : outcomes.includes("unknown") ? "unknown" : "worked";
1840
+ const fallback = steps.find((step) => step.escalatedToForeground);
1841
+ return executionTrace("act", steps.every((step) => step.variant === "stealth") ? "stealth" : "default", {
1842
+ outcome,
1843
+ steps,
1844
+ actionCount: steps.length,
1845
+ rootDelta: steps.flatMap((step) => step.rootDelta ?? []),
1846
+ backgroundFirst: true,
1847
+ escalatedToForeground: Boolean(fallback),
1848
+ escalationReason: fallback?.escalationReason,
1849
+ backgroundAttempt: fallback?.backgroundAttempt,
1850
+ });
1851
+ }
1852
+
1853
+ function exactPlatformRootMatchesTarget(root: HelperWindow, target: ResolvedTarget): boolean {
1854
+ if (root.pid !== target.pid) return false;
1855
+ const nativeRefMatches = Boolean(target.nativeWindowRef && (root.rootRef === target.nativeWindowRef || root.windowRef === target.nativeWindowRef));
1856
+ const windowIdMatches = target.windowId > 0 && root.windowId === target.windowId;
1857
+ return nativeRefMatches || windowIdMatches;
1858
+ }
1859
+
1860
+ function clearDesktopOperationState(state: OperationState): void {
1861
+ state.currentTarget = undefined;
1862
+ state.currentCapture = undefined;
1863
+ state.currentStateTarget = undefined;
1864
+ state.currentLook = undefined;
1865
+ state.currentOutline = undefined;
1866
+ state.currentNote = undefined;
1867
+ }
1868
+
1869
+ async function terminalDesktopActionResult(
1870
+ target: ResolvedTarget,
1871
+ baseStateId: string,
1872
+ execution: ExecutionTrace,
1873
+ error: unknown,
1874
+ condition?: ReturnType<typeof validateCondition>,
1875
+ ): Promise<AgentToolResult<TerminalDesktopActionDetails>> {
1876
+ let exactRootAvailable: boolean | undefined;
1877
+ try {
1878
+ for (let attempt = 0; attempt < 3; attempt += 1) {
1879
+ const roots = await currentPlatformBackend.listRoots({ pid: target.pid });
1880
+ exactRootAvailable = roots.some((root) => exactPlatformRootMatchesTarget(root, target));
1881
+ if (exactRootAvailable) break;
1882
+ if (attempt < 2) await sleep(75);
1883
+ }
1884
+ } catch {
1885
+ // A failed identity probe cannot prove that the root closed.
1886
+ }
1887
+ const targetClosed = exactRootAvailable === false;
1888
+ if (targetClosed && !(execution.rootDelta ?? []).some((delta) => delta.change === "closed" && delta.pid === target.pid && (delta.ref === target.windowRef || delta.ref === target.nativeWindowRef))) {
1889
+ execution.rootDelta = [
1890
+ ...(execution.rootDelta ?? []),
1891
+ {
1892
+ change: "closed",
1893
+ kind: "window",
1894
+ ref: target.windowRef,
1895
+ title: target.windowTitle,
1896
+ pid: target.pid,
1897
+ metadata: { source: "post_action_identity_probe" },
1898
+ },
1899
+ ];
1900
+ }
1901
+ if (targetClosed && condition) {
1902
+ const verificationStatus = condition.gone ? "verified" : "failed";
1903
+ execution.verification = {
1904
+ status: verificationStatus,
1905
+ text: condition.text,
1906
+ role: condition.role,
1907
+ value: condition.value,
1908
+ gone: condition.gone || undefined,
1909
+ timeoutMs: condition.timeoutMs,
1910
+ };
1911
+ execution.outcome = outcomeAfterCheck(execution.outcome ?? "unknown", verificationStatus);
1912
+ if (verificationStatus === "failed") {
1913
+ execution.error = {
1914
+ code: "postcondition_failed",
1915
+ message: "The source root closed before the requested presence or value postcondition could be verified.",
1916
+ };
1917
+ }
1918
+ }
1919
+ const status = targetClosed ? "target_closed" : "post_action_observation_failed";
1920
+ const code = targetClosed ? "target_closed" : "post_action_observation_failed";
1921
+ const message = error instanceof Error ? error.message : String(error);
1922
+ clearDesktopOperationState(operationState());
1923
+ const details: TerminalDesktopActionDetails = {
1924
+ tool: "act_ui",
1925
+ status,
1926
+ baseStateId,
1927
+ target: {
1928
+ app: target.appName,
1929
+ bundleId: target.bundleId,
1930
+ pid: target.pid,
1931
+ windowTitle: target.windowTitle,
1932
+ windowId: target.windowId,
1933
+ windowRef: target.windowRef,
1934
+ nativeWindowRef: target.nativeWindowRef,
1935
+ },
1936
+ execution,
1937
+ error: { code, message },
1938
+ };
1939
+ const result = targetClosed
1940
+ ? `The action was delivered, and its source root ${target.appName} — ${target.windowTitle} closed before a successor observation could be captured.`
1941
+ : `The action was delivered, but its source root ${target.appName} — ${target.windowTitle} could not be observed afterward: ${message}`;
1942
+ return {
1943
+ content: [{ type: "text", text: `${result}\nNo successor state was created. Call find_roots, then observe_ui to continue.` }],
1944
+ details,
1945
+ };
1946
+ }
1947
+
1948
+ async function performDesktopTransaction(params: ActParams, actions: UiAction[], signal?: AbortSignal): Promise<AgentToolResult<ComputerUseDetails | TerminalDesktopActionDetails>> {
1949
+ const state = operationState();
1950
+ state.currentImageMode = "auto";
1951
+ validateStateId(params.stateId);
1952
+ const look = currentLookOrThrow();
1953
+ const baseView = { stateId: state.currentCapture!.stateId, outline: state.currentOutline! };
1954
+ const condition = params.expect ? validateCondition(params.expect) : undefined;
1955
+ const scopeNode = condition ? conditionScopeNode(look.parsedOutline!, condition) : undefined;
1956
+ const target = await ensureTargetWindowId(await resolveCurrentTarget(signal), signal);
1957
+ const noteBefore = state.currentNote;
1958
+ return await withWindowWriteLock(target, async () => {
1959
+ const headless = getComputerUseConfig().headless;
1960
+ const execution = await dispatchUiTransaction(actions, target, look, headless, signal);
1961
+ const executedActions = actions.slice(0, execution.actionCount ?? actions.length);
1962
+ try {
1963
+ if (condition) {
1964
+ const { text: expectedText, role: expectedRole, value: expectedValue, scopeExact, gone, timeoutMs } = condition;
1965
+ const beforePresent = outlineConditionPresent(look.parsedOutline!, condition);
1966
+ const desiredWasPreexisting = beforePresent !== gone;
1967
+ const verification = await currentPlatformBackend.waitFor({
1968
+ ...nativeWindowRequest(target),
1969
+ lookId: look.parsedOutline!.lookId,
1970
+ text: expectedText,
1971
+ role: platformRole(look.parsedOutline!, expectedRole),
1972
+ value: expectedValue,
1973
+ scopeRef: scopeNode ? wireRefForNode(scopeNode) : undefined,
1974
+ scopeExact,
1975
+ gone,
1976
+ timeoutMs,
1977
+ }, { signal, timeoutMs: timeoutMs + 2_000 });
1978
+ execution.verification = {
1979
+ status: verification.found ? (desiredWasPreexisting ? "preexisting" : "verified") : "failed",
1980
+ text: expectedText,
1981
+ role: expectedRole,
1982
+ value: expectedValue,
1983
+ gone: gone || undefined,
1984
+ timeoutMs,
1985
+ };
1986
+ execution.outcome = outcomeAfterCheck(execution.outcome ?? "unknown", execution.verification.status);
1987
+ if (!verification.found) {
1988
+ execution.error = {
1989
+ code: "postcondition_failed",
1990
+ message: `The action was delivered but its postcondition was not satisfied within ${timeoutMs}ms.`,
1991
+ };
1992
+ }
1993
+ } else {
1994
+ await sleep(settleMsForExecution(execution), signal);
1995
+ }
1996
+ const capture = await captureCurrentTarget(signal, "auto", AUTO_IMAGE_MAX_DIMENSION, target);
1997
+ execution.outcome = outcomeAfterObservedValues(execution.outcome ?? "unknown", executedActions, (ref) => nodeByRef(capture.outline, ref)?.value);
1998
+ for (const action of executedActions) {
1999
+ state.currentNote = noteAfterAct(state.currentNote ?? noteBefore, action.ref, capture.outline, { window: noteWindowForTarget(capture.target, capture.look), rootDelta: execution.rootDelta });
2000
+ }
2001
+ return await buildToolResult("act_ui", `Executed ${executedActions.length} checked UI action${executedActions.length === 1 ? "" : "s"} in ${target.appName} — ${target.windowTitle}. Returned state ${capture.capture.stateId}.`, capture, execution, signal, state.currentImageMode, baseView);
2002
+ } catch (error) {
2003
+ if (signal?.aborted) {
2004
+ clearDesktopOperationState(state);
2005
+ throw error;
2006
+ }
2007
+ return await terminalDesktopActionResult(target, baseView.stateId, execution, error, condition);
2008
+ }
2009
+ });
2010
+ }
2011
+
2012
+ async function performBrowserTransaction(params: ActParams, actions: UiAction[], signal?: AbortSignal): Promise<AgentToolResult<BrowserObservationDetails>> {
2013
+ const contextId = browserContextForOperation();
2014
+ if (!contextId) throw new Error("Browser transaction requires a browser observation state.");
2015
+ const baseSnapshot = operationState().browserSnapshot;
2016
+ if (!baseSnapshot) throw new Error("Browser transaction requires a complete base observation.");
2017
+ const baseView = { stateId: baseSnapshot.snapshotId, outline: baseSnapshot.outline };
2018
+ const condition = params.expect ? validateCondition(params.expect) : undefined;
2019
+ if (condition) conditionScopeNode(restoreOutline(baseSnapshot.outline), condition);
2020
+ const prepared = actions.map((action) => {
2021
+ if (!BROWSER_TRANSACTION_ACTIONS.has(action.action)) throw new Error(`Browser transactions do not support '${action.action}'.`);
2022
+ if (action.action === "click" && action.ref && action.button && action.button !== "left") throw new Error("Browser ref clicks support only the left button; use coordinate clicks for right or middle buttons.");
2023
+ const target = browserSnapshotTarget(params.stateId, trimOrUndefined(action.ref));
2024
+ if ((action.action === "press" || action.action === "setText" || (action.action === "click" && action.ref) || (action.action === "typeText" && action.ref)) && !Number.isFinite(target?.backendNodeId)) {
2025
+ throw new Error(`Browser ${action.action} requires an actionable @e ref owned by ${params.stateId}.`);
2026
+ }
2027
+ if (action.ref && (!target || target.contextId !== contextId)) throw new Error(`Browser ${action.action} ref must be owned by ${params.stateId}.`);
2028
+ return { action, target };
2029
+ });
2030
+ return await withBrowserWrite(contextId, async () => {
2031
+ for (const { action, target } of prepared) {
2032
+ let worked = false;
2033
+ if (action.action === "press" || (action.action === "click" && action.ref)) {
2034
+ worked = true;
2035
+ for (let count = 0; count < (action.clickCount ?? 1); count += 1) worked = await cdpClickForContext(contextId, target!.backendNodeId!) && worked;
2036
+ } else if (action.action === "click") {
2037
+ worked = await cdpMouseForContext(contextId, action.x!, action.y!, "mousePressed", action.button ?? "left", action.clickCount ?? 1)
2038
+ && await cdpMouseForContext(contextId, action.x!, action.y!, "mouseReleased", action.button ?? "left", action.clickCount ?? 1);
2039
+ } else if (action.action === "setText") worked = await cdpTypeForContext(contextId, target!.backendNodeId!, action.text ?? "", true);
2040
+ else if (action.action === "typeText") worked = target?.backendNodeId
2041
+ ? await cdpTypeForContext(contextId, target.backendNodeId, action.text ?? "", false)
2042
+ : await cdpTypeFocusedForContext(contextId, action.text ?? "");
2043
+ else if (action.action === "keypress") worked = await cdpKeypressForContext(contextId, action.keys ?? []);
2044
+ else if (action.action === "scroll") worked = await cdpScrollForContext(contextId, toFiniteNumber(action.scrollX, 0), toFiniteNumber(action.scrollY, 0), target?.backendNodeId);
2045
+ else if (action.action === "drag") worked = await cdpDragForContext(contextId, normalizeActionPath(action.path));
2046
+ else if (action.action === "moveMouse") worked = await cdpMouseForContext(contextId, action.x!, action.y!, "mouseMoved");
2047
+ if (!worked) throw new Error("The browser root became unavailable during the action transaction. Observe it again.");
2048
+ }
2049
+ if (condition) {
2050
+ const deadline = Date.now() + condition.timeoutMs;
2051
+ let satisfied = false;
2052
+ do {
2053
+ const snapshot = await cdpSnapshotForContext(contextId);
2054
+ if (!snapshot) throw new Error(`Browser root '${contextId}' is no longer available. Observe it again.`);
2055
+ const present = outlineConditionPresent(restoreOutline(snapshot.outline), condition);
2056
+ satisfied = present !== condition.gone;
2057
+ if (!satisfied) await sleep(100, signal);
2058
+ } while (!satisfied && Date.now() < deadline);
2059
+ if (!satisfied) throw new Error(`The browser action was delivered but its postcondition was not satisfied within ${condition.timeoutMs}ms.`);
2060
+ }
2061
+ return await refreshBrowserSnapshot(contextId, "act_ui", baseView);
2062
+ });
2063
+ }
2064
+
2065
+ function normalizeActionPath(path: UiAction["path"]): Array<{ x: number; y: number }> {
2066
+ return (path ?? []).map((point) => Array.isArray(point) ? { x: toFiniteNumber(point[0], 0), y: toFiniteNumber(point[1], 0) } : { x: toFiniteNumber(point.x, 0), y: toFiniteNumber(point.y, 0) });
2067
+ }
2068
+
2069
+ function validateActionTarget(action: UiAction): void {
2070
+ const hasRef = Boolean(trimOrUndefined(action.ref));
2071
+ const hasX = Number.isFinite(action.x);
2072
+ const hasY = Number.isFinite(action.y);
2073
+ if (hasX !== hasY) throw new Error(`${action.action} coordinates require both x and y.`);
2074
+ const hasPoint = hasX && hasY;
2075
+ if ((action.action === "click" || action.action === "moveMouse") && hasRef === hasPoint) {
2076
+ throw new Error(`${action.action} requires exactly one target: ref or x/y coordinates.`);
2077
+ }
2078
+ if (action.action === "press" && !hasRef) throw new Error("press requires an actionable ref.");
2079
+ if (action.action === "scroll" && toFiniteNumber(action.scrollX, 0) === 0 && toFiniteNumber(action.scrollY, 0) === 0) throw new Error("scroll requires a non-zero scrollX or scrollY delta.");
2080
+ if (action.clickCount !== undefined && (!Number.isInteger(action.clickCount) || action.clickCount < 1 || action.clickCount > 3)) throw new Error("clickCount must be an integer from 1 to 3.");
2081
+ }
2082
+
2083
+ async function performAct(params: ActParams, signal?: AbortSignal): Promise<AgentToolResult<ComputerUseDetails | TerminalDesktopActionDetails | BrowserObservationDetails>> {
2084
+ const actions = Array.isArray(params.actions) ? params.actions : [];
2085
+ if (actions.length === 0) throw new Error("act_ui.actions must contain at least one action.");
2086
+ if (actions.length > 20) throw new Error("act_ui supports at most 20 actions per transaction.");
2087
+ for (const action of actions) validateActionTarget(action);
2088
+ if (operationState().contextId) return await performBrowserTransaction(params, actions, signal);
2089
+ return await performDesktopTransaction(params, actions, signal);
2090
+ }
2091
+
2092
+ function managedBrowserExecutableCandidates(browser: "helium" | "chrome"): string[] {
2093
+ const overrideName = browser === "helium" ? "PI_COMPUTER_USE_HELIUM_EXECUTABLE" : "PI_COMPUTER_USE_CHROME_EXECUTABLE";
2094
+ const override = trimOrUndefined(process.env[overrideName]);
2095
+ if (override) return [path.resolve(override)];
2096
+
2097
+ const platformCandidates = process.platform === "darwin"
2098
+ ? browser === "helium"
2099
+ ? [
2100
+ "/Applications/Helium.app/Contents/MacOS/Helium",
2101
+ path.join(os.homedir(), "Applications", "Helium.app", "Contents", "MacOS", "Helium"),
2102
+ ]
2103
+ : [
2104
+ "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome",
2105
+ path.join(os.homedir(), "Applications", "Google Chrome.app", "Contents", "MacOS", "Google Chrome"),
2106
+ ]
2107
+ : process.platform === "win32"
2108
+ ? browser === "helium"
2109
+ ? [
2110
+ process.env.LOCALAPPDATA && path.join(process.env.LOCALAPPDATA, "Helium", "Application", "helium.exe"),
2111
+ process.env.PROGRAMFILES && path.join(process.env.PROGRAMFILES, "Helium", "Application", "helium.exe"),
2112
+ ]
2113
+ : [
2114
+ process.env.LOCALAPPDATA && path.join(process.env.LOCALAPPDATA, "Google", "Chrome", "Application", "chrome.exe"),
2115
+ process.env.PROGRAMFILES && path.join(process.env.PROGRAMFILES, "Google", "Chrome", "Application", "chrome.exe"),
2116
+ process.env["PROGRAMFILES(X86)"] && path.join(process.env["PROGRAMFILES(X86)"], "Google", "Chrome", "Application", "chrome.exe"),
2117
+ ]
2118
+ : browser === "helium"
2119
+ ? [
2120
+ "/usr/bin/helium",
2121
+ "/usr/bin/helium-browser",
2122
+ "/opt/helium/chrome",
2123
+ path.join(os.homedir(), ".local", "helium", "chrome"),
2124
+ ]
2125
+ : [
2126
+ "/usr/bin/google-chrome",
2127
+ "/usr/bin/google-chrome-stable",
2128
+ "/usr/bin/chromium",
2129
+ "/usr/bin/chromium-browser",
2130
+ "/snap/bin/chromium",
2131
+ ];
2132
+ const pathNames = browser === "helium"
2133
+ ? process.platform === "win32" ? ["helium.exe"] : ["helium", "helium-browser"]
2134
+ : process.platform === "win32" ? ["chrome.exe"] : ["google-chrome", "google-chrome-stable", "chromium", "chromium-browser"];
2135
+ const pathCandidates = (process.env.PATH ?? "")
2136
+ .split(path.delimiter)
2137
+ .filter(Boolean)
2138
+ .flatMap((directory) => pathNames.map((name) => path.join(directory, name)));
2139
+ return [...new Set([...platformCandidates.filter((candidate): candidate is string => Boolean(candidate)), ...pathCandidates])];
2140
+ }
2141
+
2142
+ async function managedBrowserExecutable(browser: "helium" | "chrome"): Promise<string> {
2143
+ const candidates = managedBrowserExecutableCandidates(browser);
2144
+ for (const candidate of candidates) {
2145
+ try {
2146
+ await access(candidate, fsConstants.X_OK);
2147
+ return candidate;
2148
+ } catch {
2149
+ // Try the next platform-appropriate installation location.
2150
+ }
2151
+ }
2152
+ const overrideName = browser === "helium" ? "PI_COMPUTER_USE_HELIUM_EXECUTABLE" : "PI_COMPUTER_USE_CHROME_EXECUTABLE";
2153
+ if (trimOrUndefined(process.env[overrideName])) {
2154
+ throw new Error(`${browser} executable from ${overrideName} was not found or is not executable: ${candidates[0]}.`);
2155
+ }
2156
+ throw new Error(`${browser} executable was not found. Set ${overrideName} to its absolute path.`);
2157
+ }
2158
+
2159
+ function freeTcpPort(): Promise<number> {
2160
+ return new Promise((resolve, reject) => {
2161
+ const server = net.createServer();
2162
+ server.on("error", reject);
2163
+ server.listen(0, "127.0.0.1", () => {
2164
+ const address = server.address();
2165
+ const port = typeof address === "object" && address ? address.port : 0;
2166
+ server.close(() => port > 0 ? resolve(port) : reject(new Error("Could not allocate a local CDP port.")));
2167
+ });
2168
+ });
2169
+ }
2170
+
2171
+ async function waitForCdpPort(port: number, signal?: AbortSignal): Promise<void> {
2172
+ const deadline = Date.now() + MANAGED_BROWSER_READY_TIMEOUT_MS;
2173
+ while (Date.now() < deadline) {
2174
+ if (signal?.aborted) throw new Error("Browser launch was aborted.");
2175
+ try {
2176
+ const response = await fetch(`http://127.0.0.1:${port}/json/version`, { signal: AbortSignal.timeout(500) });
2177
+ if (response.ok) return;
2178
+ } catch {
2179
+ // Browser is still starting.
2180
+ }
2181
+ await sleep(200, signal);
2182
+ }
2183
+ throw new Error(`Managed browser did not expose CDP on port ${port} within ${MANAGED_BROWSER_READY_TIMEOUT_MS}ms.`);
2184
+ }
2185
+
2186
+ // Side effects: starts a Pi-managed browser process, replaces any previous managed browser,
2187
+ // and sets PI_COMPUTER_USE_CDP_PORT for subsequent CDP context discovery.
2188
+ async function performLaunchBrowser(params: LaunchBrowserParams, signal?: AbortSignal): Promise<AgentToolResult<BrowserObservationDetails>> {
2189
+ const browser = getComputerUseConfig().managed_browser;
2190
+ const executable = await managedBrowserExecutable(browser);
2191
+ const port = await freeTcpPort();
2192
+ const requestedUrl = trimOrUndefined(params.url);
2193
+ if (requestedUrl && !/^https?:\/\//i.test(requestedUrl)) throw new Error("launch_browser.url must be an absolute HTTP(S) URL.");
2194
+ const url = requestedUrl ?? "about:blank";
2195
+ const profileDir = path.join(os.tmpdir(), `pi-${browser}-cdp-${port}`);
2196
+ disconnectCdp();
2197
+ runtimeState.managedBrowser?.kill("SIGTERM");
2198
+ const args = [
2199
+ `--remote-debugging-port=${port}`,
2200
+ `--user-data-dir=${profileDir}`,
2201
+ "--no-first-run",
2202
+ "--no-default-browser-check",
2203
+ url,
2204
+ ];
2205
+ if (runtimeState.previousCdpPort === undefined && runtimeState.managedBrowserCdpPort === undefined) {
2206
+ runtimeState.previousCdpPort = process.env.PI_COMPUTER_USE_CDP_PORT;
2207
+ }
2208
+ const managedBrowser = spawn(executable, args, { stdio: "ignore", detached: false });
2209
+ managedBrowser.unref();
2210
+ runtimeState.managedBrowser = managedBrowser;
2211
+ runtimeState.managedBrowserCdpPort = String(port);
2212
+ process.env.PI_COMPUTER_USE_CDP_PORT = String(port);
2213
+ try {
2214
+ await waitForCdpPort(port, signal);
2215
+ } catch (error) {
2216
+ if (runtimeState.managedBrowser === managedBrowser) {
2217
+ runtimeState.managedBrowser = undefined;
2218
+ managedBrowser.kill("SIGTERM");
2219
+ if (runtimeState.previousCdpPort === undefined) delete process.env.PI_COMPUTER_USE_CDP_PORT;
2220
+ else process.env.PI_COMPUTER_USE_CDP_PORT = runtimeState.previousCdpPort;
2221
+ runtimeState.managedBrowserCdpPort = undefined;
2222
+ runtimeState.previousCdpPort = undefined;
2223
+ }
2224
+ throw error;
2225
+ }
2226
+ const page = (await listCdpPageContexts())[0];
2227
+ if (!page) throw new Error("Managed browser launched without a CDP page context.");
2228
+ const resourceKey = `cdp:${page.targetId}`;
2229
+ const scheduled = await resourceScheduler.read(resourceKey, async () => await cdpSnapshotForContext(page.contextId));
2230
+ if (!scheduled.value) throw new Error("Managed browser page could not be observed after launch.");
2231
+ return browserObservationResult(scheduled.value, resourceKey, scheduled.epoch, "launch_browser");
2232
+ }
2233
+
2234
+ async function performNavigateBrowser(params: NavigateBrowserParams): Promise<AgentToolResult<BrowserObservationDetails>> {
2235
+ const contextId = browserContextForOperation();
2236
+ const url = trimOrUndefined(params.url);
2237
+ if (!contextId) throw new Error("navigate_browser.stateId must belong to a CDP browser-page observation. Native browser windows use act_ui.");
2238
+ if (!url || !/^https?:\/\//i.test(url)) throw new Error("navigate_browser.url must be an absolute HTTP(S) URL.");
2239
+ const baseSnapshot = operationState().browserSnapshot;
2240
+ if (!baseSnapshot) throw new Error("Browser navigation requires a complete base observation.");
2241
+ return await withBrowserWrite(contextId, async () => {
2242
+ const ok = await cdpNavigateContext(contextId, url);
2243
+ if (!ok) throw new Error(`Browser context '${contextId}' is no longer available. Observe it again.`);
2244
+ return await refreshBrowserSnapshot(contextId, "navigate_browser", { stateId: baseSnapshot.snapshotId, outline: baseSnapshot.outline });
2245
+ });
2246
+ }
2247
+
2248
+ async function performEvaluateBrowser(params: EvaluateBrowserParams): Promise<AgentToolResult<EvaluateBrowserDetails>> {
2249
+ const contextId = browserContextForOperation();
2250
+ const expression = typeof params.expression === "string" ? params.expression : "";
2251
+ if (!contextId) throw new Error("evaluate_browser.stateId must belong to a browser observation.");
2252
+ if (!expression.trim()) throw new Error("evaluate_browser.expression must be non-empty JavaScript.");
2253
+ const baseSnapshot = operationState().browserSnapshot;
2254
+ if (!baseSnapshot) throw new Error("Browser evaluation requires a complete base observation.");
2255
+ return await withBrowserWrite(contextId, async () => {
2256
+ const result = await cdpEvaluateForContext(contextId, expression);
2257
+ if (!result) throw new Error(`Browser context '${contextId}' is no longer available. Observe it again.`);
2258
+ const successor = await refreshBrowserSnapshot(contextId, "evaluate_browser", { stateId: baseSnapshot.snapshotId, outline: baseSnapshot.outline });
2259
+ const details: EvaluateBrowserDetails = {
2260
+ tool: "evaluate_browser",
2261
+ baseStateId: baseSnapshot.snapshotId,
2262
+ stateId: successor.details.stateId,
2263
+ view: successor.details.view,
2264
+ changes: successor.details.changes,
2265
+ outline: successor.details.outline,
2266
+ renderedOutline: successor.details.renderedOutline,
2267
+ };
2268
+ return { content: [...successor.content, { type: "text", text: `Evaluation value: ${JSON.stringify(result.value)}` }], details };
2269
+ });
2270
+ }
2271
+
2272
+ async function executeTool<P, T>(ctx: ExtensionContext, params: P, signal: AbortSignal | undefined, run: () => Promise<T>): Promise<T> {
2273
+ const outputRef = trimOrUndefined((params as { ref?: string } | undefined)?.ref)?.startsWith("@o") === true;
2274
+ const requestedStateId = outputRef ? undefined : trimOrUndefined((params as { stateId?: string } | undefined)?.stateId);
2275
+ const stateRecord = requestedStateId ? savedStates.get(requestedStateId) : undefined;
2276
+ if (requestedStateId && !stateRecord) {
2277
+ throw new Error(`State '${requestedStateId}' is unavailable or was evicted. Observe the root again.`);
2278
+ }
2279
+ const operation = savedStates.hydrate(stateRecord);
2280
+ return await savedStates.operations.run(operation, async () => {
2281
+ await resourceScheduler.read("session-lifecycle", async () => await ensureReady(ctx, signal));
2282
+ throwIfAborted(signal);
2283
+ const result = await run();
2284
+ persistOperation(operation);
2285
+ return result;
2286
+ });
2287
+ }
2288
+
2289
+ function makeToolExecutor<P, D>(tool: string, perform: (params: P, signal?: AbortSignal) => Promise<AgentToolResult<D>>) {
2290
+ return async (
2291
+ _toolCallId: string,
2292
+ params: P,
2293
+ signal: AbortSignal | undefined,
2294
+ _onUpdate: AgentToolUpdateCallback<D> | undefined,
2295
+ ctx: ExtensionContext,
2296
+ ): Promise<AgentToolResult<D>> => {
2297
+ try {
2298
+ return applyOutputEnvelope(tool, await executeTool(ctx, params, signal, () => perform(params, signal)));
2299
+ } catch (error) {
2300
+ throw boundToolError(tool, error);
2301
+ }
2302
+ };
2303
+ }
2304
+
2305
+ export const executeFind = makeToolExecutor("find_roots", performListWindows);
2306
+ export const executeReadText = makeToolExecutor("read_text", performReadText);
2307
+ export const executeWaitFor = makeToolExecutor("wait_for", performWaitFor);
2308
+ export const executeObserve = makeToolExecutor("observe_ui", performObserve);
2309
+ export const executeSearchUi = makeToolExecutor("search_ui", performSearchUi);
2310
+ export const executeExpandUi = makeToolExecutor("expand_ui", performExpandUi);
2311
+ export const executeInspectUi = makeToolExecutor("inspect_ui", performInspectUi);
2312
+ export const executeAct = makeToolExecutor<ActParams, ComputerUseDetails | TerminalDesktopActionDetails | BrowserObservationDetails>("act_ui", performAct);
2313
+ export const executeNavigateBrowser = makeToolExecutor("navigate_browser", performNavigateBrowser);
2314
+ export const executeEvaluateBrowser = makeToolExecutor("evaluate_browser", performEvaluateBrowser);
2315
+ export const executeLaunchBrowser = makeToolExecutor("launch_browser", performLaunchBrowser);
2316
+
2317
+ export function reconstructStateFromBranch(ctx: ExtensionContext): void {
2318
+ savedStates.clear();
2319
+ clearStoredOutputs();
2320
+ runtimeState.windowRefs.clear();
2321
+ runtimeState.windowRefByIdentity.clear();
2322
+ runtimeState.nextRootRefIndex = 1;
2323
+
2324
+ const restoredResources = new Set<string>();
2325
+ for (const entry of [...ctx.sessionManager.getBranch()].reverse()) {
2326
+ if ((entry as any)?.type !== "message") continue;
2327
+ const message = (entry as any).message;
2328
+ if (!message || message.role !== "toolResult") continue;
2329
+ if (!AGENT_TOOL_NAMES.has(message.toolName)) continue;
2330
+
2331
+ const rawDetails = message.details as any;
2332
+ if (rawDetails?.tool === "find_roots" && Array.isArray(rawDetails.windows)) {
2333
+ for (const window of rawDetails.windows) {
2334
+ if (typeof window?.windowRef !== "string" || !Number.isFinite(window?.pid)) continue;
2335
+ const record: WindowRefRecord = {
2336
+ ref: window.windowRef,
2337
+ appName: typeof window.app === "string" ? window.app : "Unknown App",
2338
+ bundleId: typeof window.bundleId === "string" ? window.bundleId : undefined,
2339
+ pid: Math.trunc(window.pid),
2340
+ windowTitle: typeof window.windowTitle === "string" ? window.windowTitle : "(untitled)",
2341
+ windowId: Number.isFinite(window.windowId) ? Math.trunc(window.windowId) : undefined,
2342
+ nativeWindowRef: typeof window.nativeWindowRef === "string" ? window.nativeWindowRef : undefined,
2343
+ framePoints: {
2344
+ x: toFiniteNumber(window.framePoints?.x, 0),
2345
+ y: toFiniteNumber(window.framePoints?.y, 0),
2346
+ w: Math.max(1, toFiniteNumber(window.framePoints?.w, 1)),
2347
+ h: Math.max(1, toFiniteNumber(window.framePoints?.h, 1)),
2348
+ },
2349
+ scaleFactor: Math.max(1, toFiniteNumber(window.scaleFactor, 1)),
2350
+ isMinimized: toBoolean(window.isMinimized),
2351
+ isOnscreen: toBoolean(window.isOnscreen),
2352
+ isMain: toBoolean(window.isMain),
2353
+ isFocused: toBoolean(window.isFocused),
2354
+ };
2355
+ runtimeState.windowRefs.set(record.ref, record);
2356
+ runtimeState.windowRefByIdentity.set(windowRecordIdentity(record), record.ref);
2357
+ const match = /^@r(\d+)$/.exec(record.ref);
2358
+ if (match) runtimeState.nextRootRefIndex = Math.max(runtimeState.nextRootRefIndex, Number(match[1]) + 1);
2359
+ }
2360
+ continue;
2361
+ }
2362
+
2363
+ const details = rawDetails as Partial<ComputerUseDetails> | undefined;
2364
+ if (!details?.target || !details?.capture) continue;
2365
+
2366
+ const app = typeof details.target.app === "string" ? details.target.app : undefined;
2367
+
2368
+ if (!app) continue;
2369
+ if (!Number.isFinite(details.target.pid) || !Number.isFinite(details.target.windowId)) continue;
2370
+ if (typeof details.capture.stateId !== "string") continue;
2371
+
2372
+ const target: CurrentTarget = {
2373
+ appName: app,
2374
+ bundleId: details.target.bundleId,
2375
+ pid: Math.trunc(details.target.pid),
2376
+ windowTitle: details.target.windowTitle ?? "(untitled)",
2377
+ windowId: Math.trunc(details.target.windowId),
2378
+ windowRef: typeof details.target.windowRef === "string" ? details.target.windowRef : undefined,
2379
+ nativeWindowRef: typeof (details.target as any).nativeWindowRef === "string" ? (details.target as any).nativeWindowRef : undefined,
2380
+ };
2381
+
2382
+ const resourceKey = desktopResourceKey(target);
2383
+ if (restoredResources.has(resourceKey)) continue;
2384
+ const capture: CurrentCapture = {
2385
+ stateId: details.capture.stateId,
2386
+ width: Math.max(1, Math.trunc(toFiniteNumber(details.capture.width, 1))),
2387
+ height: Math.max(1, Math.trunc(toFiniteNumber(details.capture.height, 1))),
2388
+ scaleFactor: Math.max(1, toFiniteNumber(details.capture.scaleFactor, 1)),
2389
+ timestamp: Number.isFinite(details.capture.timestamp) ? details.capture.timestamp : Date.now(),
2390
+ };
2391
+ if (details.outline?.root && typeof details.outline.lookId === "string") {
2392
+ const epoch = 0;
2393
+ resourceScheduler.restoreEpoch(resourceKey, epoch);
2394
+ savedStates.set({
2395
+ stateId: capture.stateId,
2396
+ resourceKey,
2397
+ epoch,
2398
+ value: {
2399
+ kind: "desktop",
2400
+ target,
2401
+ capture,
2402
+ outline: details.outline,
2403
+ look: {
2404
+ lookId: details.outline.lookId,
2405
+ capturedAt: details.capture.timestamp / 1000,
2406
+ window: {
2407
+ windowId: Math.trunc(details.target.windowId),
2408
+ framePoints: { x: 0, y: 0, w: details.capture.width, h: details.capture.height },
2409
+ scaleFactor: details.capture.scaleFactor,
2410
+ isModal: false,
2411
+ role: "",
2412
+ subrole: "",
2413
+ },
2414
+ image: { jpegBase64: "", width: details.capture.width, height: details.capture.height },
2415
+ timings: {},
2416
+ },
2417
+ note: details.note,
2418
+ },
2419
+ });
2420
+ restoredResources.add(resourceKey);
2421
+ }
2422
+ }
2423
+ }