@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,3205 @@
1
+ /*
2
+ Language: ISBL
3
+ Author: Dmitriy Tarasov <dimatar@gmail.com>
4
+ Description: built-in language DIRECTUM
5
+ Category: enterprise
6
+ */
7
+
8
+ function isbl(hljs) {
9
+ // Определение идентификаторов
10
+ const UNDERSCORE_IDENT_RE = "[A-Za-zА-Яа-яёЁ_!][A-Za-zА-Яа-яёЁ_0-9]*";
11
+
12
+ // Определение имен функций
13
+ const FUNCTION_NAME_IDENT_RE = "[A-Za-zА-Яа-яёЁ_][A-Za-zА-Яа-яёЁ_0-9]*";
14
+
15
+ // keyword : ключевые слова
16
+ const KEYWORD =
17
+ "and и else иначе endexcept endfinally endforeach конецвсе endif конецесли endwhile конецпока "
18
+ + "except exitfor finally foreach все if если in в not не or или try while пока ";
19
+
20
+ // SYSRES Constants
21
+ const sysres_constants =
22
+ "SYSRES_CONST_ACCES_RIGHT_TYPE_EDIT "
23
+ + "SYSRES_CONST_ACCES_RIGHT_TYPE_FULL "
24
+ + "SYSRES_CONST_ACCES_RIGHT_TYPE_VIEW "
25
+ + "SYSRES_CONST_ACCESS_MODE_REQUISITE_CODE "
26
+ + "SYSRES_CONST_ACCESS_NO_ACCESS_VIEW "
27
+ + "SYSRES_CONST_ACCESS_NO_ACCESS_VIEW_CODE "
28
+ + "SYSRES_CONST_ACCESS_RIGHTS_ADD_REQUISITE_CODE "
29
+ + "SYSRES_CONST_ACCESS_RIGHTS_ADD_REQUISITE_YES_CODE "
30
+ + "SYSRES_CONST_ACCESS_RIGHTS_CHANGE_REQUISITE_CODE "
31
+ + "SYSRES_CONST_ACCESS_RIGHTS_CHANGE_REQUISITE_YES_CODE "
32
+ + "SYSRES_CONST_ACCESS_RIGHTS_DELETE_REQUISITE_CODE "
33
+ + "SYSRES_CONST_ACCESS_RIGHTS_DELETE_REQUISITE_YES_CODE "
34
+ + "SYSRES_CONST_ACCESS_RIGHTS_EXECUTE_REQUISITE_CODE "
35
+ + "SYSRES_CONST_ACCESS_RIGHTS_EXECUTE_REQUISITE_YES_CODE "
36
+ + "SYSRES_CONST_ACCESS_RIGHTS_NO_ACCESS_REQUISITE_CODE "
37
+ + "SYSRES_CONST_ACCESS_RIGHTS_NO_ACCESS_REQUISITE_YES_CODE "
38
+ + "SYSRES_CONST_ACCESS_RIGHTS_RATIFY_REQUISITE_CODE "
39
+ + "SYSRES_CONST_ACCESS_RIGHTS_RATIFY_REQUISITE_YES_CODE "
40
+ + "SYSRES_CONST_ACCESS_RIGHTS_REQUISITE_CODE "
41
+ + "SYSRES_CONST_ACCESS_RIGHTS_VIEW "
42
+ + "SYSRES_CONST_ACCESS_RIGHTS_VIEW_CODE "
43
+ + "SYSRES_CONST_ACCESS_RIGHTS_VIEW_REQUISITE_CODE "
44
+ + "SYSRES_CONST_ACCESS_RIGHTS_VIEW_REQUISITE_YES_CODE "
45
+ + "SYSRES_CONST_ACCESS_TYPE_CHANGE "
46
+ + "SYSRES_CONST_ACCESS_TYPE_CHANGE_CODE "
47
+ + "SYSRES_CONST_ACCESS_TYPE_EXISTS "
48
+ + "SYSRES_CONST_ACCESS_TYPE_EXISTS_CODE "
49
+ + "SYSRES_CONST_ACCESS_TYPE_FULL "
50
+ + "SYSRES_CONST_ACCESS_TYPE_FULL_CODE "
51
+ + "SYSRES_CONST_ACCESS_TYPE_VIEW "
52
+ + "SYSRES_CONST_ACCESS_TYPE_VIEW_CODE "
53
+ + "SYSRES_CONST_ACTION_TYPE_ABORT "
54
+ + "SYSRES_CONST_ACTION_TYPE_ACCEPT "
55
+ + "SYSRES_CONST_ACTION_TYPE_ACCESS_RIGHTS "
56
+ + "SYSRES_CONST_ACTION_TYPE_ADD_ATTACHMENT "
57
+ + "SYSRES_CONST_ACTION_TYPE_CHANGE_CARD "
58
+ + "SYSRES_CONST_ACTION_TYPE_CHANGE_KIND "
59
+ + "SYSRES_CONST_ACTION_TYPE_CHANGE_STORAGE "
60
+ + "SYSRES_CONST_ACTION_TYPE_CONTINUE "
61
+ + "SYSRES_CONST_ACTION_TYPE_COPY "
62
+ + "SYSRES_CONST_ACTION_TYPE_CREATE "
63
+ + "SYSRES_CONST_ACTION_TYPE_CREATE_VERSION "
64
+ + "SYSRES_CONST_ACTION_TYPE_DELETE "
65
+ + "SYSRES_CONST_ACTION_TYPE_DELETE_ATTACHMENT "
66
+ + "SYSRES_CONST_ACTION_TYPE_DELETE_VERSION "
67
+ + "SYSRES_CONST_ACTION_TYPE_DISABLE_DELEGATE_ACCESS_RIGHTS "
68
+ + "SYSRES_CONST_ACTION_TYPE_ENABLE_DELEGATE_ACCESS_RIGHTS "
69
+ + "SYSRES_CONST_ACTION_TYPE_ENCRYPTION_BY_CERTIFICATE "
70
+ + "SYSRES_CONST_ACTION_TYPE_ENCRYPTION_BY_CERTIFICATE_AND_PASSWORD "
71
+ + "SYSRES_CONST_ACTION_TYPE_ENCRYPTION_BY_PASSWORD "
72
+ + "SYSRES_CONST_ACTION_TYPE_EXPORT_WITH_LOCK "
73
+ + "SYSRES_CONST_ACTION_TYPE_EXPORT_WITHOUT_LOCK "
74
+ + "SYSRES_CONST_ACTION_TYPE_IMPORT_WITH_UNLOCK "
75
+ + "SYSRES_CONST_ACTION_TYPE_IMPORT_WITHOUT_UNLOCK "
76
+ + "SYSRES_CONST_ACTION_TYPE_LIFE_CYCLE_STAGE "
77
+ + "SYSRES_CONST_ACTION_TYPE_LOCK "
78
+ + "SYSRES_CONST_ACTION_TYPE_LOCK_FOR_SERVER "
79
+ + "SYSRES_CONST_ACTION_TYPE_LOCK_MODIFY "
80
+ + "SYSRES_CONST_ACTION_TYPE_MARK_AS_READED "
81
+ + "SYSRES_CONST_ACTION_TYPE_MARK_AS_UNREADED "
82
+ + "SYSRES_CONST_ACTION_TYPE_MODIFY "
83
+ + "SYSRES_CONST_ACTION_TYPE_MODIFY_CARD "
84
+ + "SYSRES_CONST_ACTION_TYPE_MOVE_TO_ARCHIVE "
85
+ + "SYSRES_CONST_ACTION_TYPE_OFF_ENCRYPTION "
86
+ + "SYSRES_CONST_ACTION_TYPE_PASSWORD_CHANGE "
87
+ + "SYSRES_CONST_ACTION_TYPE_PERFORM "
88
+ + "SYSRES_CONST_ACTION_TYPE_RECOVER_FROM_LOCAL_COPY "
89
+ + "SYSRES_CONST_ACTION_TYPE_RESTART "
90
+ + "SYSRES_CONST_ACTION_TYPE_RESTORE_FROM_ARCHIVE "
91
+ + "SYSRES_CONST_ACTION_TYPE_REVISION "
92
+ + "SYSRES_CONST_ACTION_TYPE_SEND_BY_MAIL "
93
+ + "SYSRES_CONST_ACTION_TYPE_SIGN "
94
+ + "SYSRES_CONST_ACTION_TYPE_START "
95
+ + "SYSRES_CONST_ACTION_TYPE_UNLOCK "
96
+ + "SYSRES_CONST_ACTION_TYPE_UNLOCK_FROM_SERVER "
97
+ + "SYSRES_CONST_ACTION_TYPE_VERSION_STATE "
98
+ + "SYSRES_CONST_ACTION_TYPE_VERSION_VISIBILITY "
99
+ + "SYSRES_CONST_ACTION_TYPE_VIEW "
100
+ + "SYSRES_CONST_ACTION_TYPE_VIEW_SHADOW_COPY "
101
+ + "SYSRES_CONST_ACTION_TYPE_WORKFLOW_DESCRIPTION_MODIFY "
102
+ + "SYSRES_CONST_ACTION_TYPE_WRITE_HISTORY "
103
+ + "SYSRES_CONST_ACTIVE_VERSION_STATE_PICK_VALUE "
104
+ + "SYSRES_CONST_ADD_REFERENCE_MODE_NAME "
105
+ + "SYSRES_CONST_ADDITION_REQUISITE_CODE "
106
+ + "SYSRES_CONST_ADDITIONAL_PARAMS_REQUISITE_CODE "
107
+ + "SYSRES_CONST_ADITIONAL_JOB_END_DATE_REQUISITE_NAME "
108
+ + "SYSRES_CONST_ADITIONAL_JOB_READ_REQUISITE_NAME "
109
+ + "SYSRES_CONST_ADITIONAL_JOB_START_DATE_REQUISITE_NAME "
110
+ + "SYSRES_CONST_ADITIONAL_JOB_STATE_REQUISITE_NAME "
111
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_ADDING_USER_TO_GROUP_ACTION "
112
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_ADDING_USER_TO_GROUP_ACTION_CODE "
113
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_COMP_ACTION "
114
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_COMP_ACTION_CODE "
115
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_GROUP_ACTION "
116
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_GROUP_ACTION_CODE "
117
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_USER_ACTION "
118
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_CREATION_USER_ACTION_CODE "
119
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_DATABASE_USER_CREATION "
120
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_DATABASE_USER_CREATION_ACTION "
121
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_DATABASE_USER_DELETION "
122
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_DATABASE_USER_DELETION_ACTION "
123
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_COMP_ACTION "
124
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_COMP_ACTION_CODE "
125
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_GROUP_ACTION "
126
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_GROUP_ACTION_CODE "
127
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_USER_ACTION "
128
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_USER_ACTION_CODE "
129
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_USER_FROM_GROUP_ACTION "
130
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_DELETION_USER_FROM_GROUP_ACTION_CODE "
131
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_FILTERER_ACTION "
132
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_FILTERER_ACTION_CODE "
133
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_FILTERER_RESTRICTION_ACTION "
134
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_FILTERER_RESTRICTION_ACTION_CODE "
135
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_PRIVILEGE_ACTION "
136
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_PRIVILEGE_ACTION_CODE "
137
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_RIGHTS_ACTION "
138
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_GRANTING_RIGHTS_ACTION_CODE "
139
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_IS_MAIN_SERVER_CHANGED_ACTION "
140
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_IS_MAIN_SERVER_CHANGED_ACTION_CODE "
141
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_IS_PUBLIC_CHANGED_ACTION "
142
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_IS_PUBLIC_CHANGED_ACTION_CODE "
143
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_FILTERER_ACTION "
144
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_FILTERER_ACTION_CODE "
145
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_FILTERER_RESTRICTION_ACTION "
146
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_FILTERER_RESTRICTION_ACTION_CODE "
147
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_PRIVILEGE_ACTION "
148
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_PRIVILEGE_ACTION_CODE "
149
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_RIGHTS_ACTION "
150
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_REMOVING_RIGHTS_ACTION_CODE "
151
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_SERVER_LOGIN_CREATION "
152
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_SERVER_LOGIN_CREATION_ACTION "
153
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_SERVER_LOGIN_DELETION "
154
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_SERVER_LOGIN_DELETION_ACTION "
155
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_CATEGORY_ACTION "
156
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_CATEGORY_ACTION_CODE "
157
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_COMP_TITLE_ACTION "
158
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_COMP_TITLE_ACTION_CODE "
159
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_FULL_NAME_ACTION "
160
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_FULL_NAME_ACTION_CODE "
161
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_GROUP_ACTION "
162
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_GROUP_ACTION_CODE "
163
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_PARENT_GROUP_ACTION "
164
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_PARENT_GROUP_ACTION_CODE "
165
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_AUTH_TYPE_ACTION "
166
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_AUTH_TYPE_ACTION_CODE "
167
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_LOGIN_ACTION "
168
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_LOGIN_ACTION_CODE "
169
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_STATUS_ACTION "
170
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_UPDATING_USER_STATUS_ACTION_CODE "
171
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_USER_PASSWORD_CHANGE "
172
+ + "SYSRES_CONST_ADMINISTRATION_HISTORY_USER_PASSWORD_CHANGE_ACTION "
173
+ + "SYSRES_CONST_ALL_ACCEPT_CONDITION_RUS "
174
+ + "SYSRES_CONST_ALL_USERS_GROUP "
175
+ + "SYSRES_CONST_ALL_USERS_GROUP_NAME "
176
+ + "SYSRES_CONST_ALL_USERS_SERVER_GROUP_NAME "
177
+ + "SYSRES_CONST_ALLOWED_ACCESS_TYPE_CODE "
178
+ + "SYSRES_CONST_ALLOWED_ACCESS_TYPE_NAME "
179
+ + "SYSRES_CONST_APP_VIEWER_TYPE_REQUISITE_CODE "
180
+ + "SYSRES_CONST_APPROVING_SIGNATURE_NAME "
181
+ + "SYSRES_CONST_APPROVING_SIGNATURE_REQUISITE_CODE "
182
+ + "SYSRES_CONST_ASSISTANT_SUBSTITUE_TYPE "
183
+ + "SYSRES_CONST_ASSISTANT_SUBSTITUE_TYPE_CODE "
184
+ + "SYSRES_CONST_ATTACH_TYPE_COMPONENT_TOKEN "
185
+ + "SYSRES_CONST_ATTACH_TYPE_DOC "
186
+ + "SYSRES_CONST_ATTACH_TYPE_EDOC "
187
+ + "SYSRES_CONST_ATTACH_TYPE_FOLDER "
188
+ + "SYSRES_CONST_ATTACH_TYPE_JOB "
189
+ + "SYSRES_CONST_ATTACH_TYPE_REFERENCE "
190
+ + "SYSRES_CONST_ATTACH_TYPE_TASK "
191
+ + "SYSRES_CONST_AUTH_ENCODED_PASSWORD "
192
+ + "SYSRES_CONST_AUTH_ENCODED_PASSWORD_CODE "
193
+ + "SYSRES_CONST_AUTH_NOVELL "
194
+ + "SYSRES_CONST_AUTH_PASSWORD "
195
+ + "SYSRES_CONST_AUTH_PASSWORD_CODE "
196
+ + "SYSRES_CONST_AUTH_WINDOWS "
197
+ + "SYSRES_CONST_AUTHENTICATING_SIGNATURE_NAME "
198
+ + "SYSRES_CONST_AUTHENTICATING_SIGNATURE_REQUISITE_CODE "
199
+ + "SYSRES_CONST_AUTO_ENUM_METHOD_FLAG "
200
+ + "SYSRES_CONST_AUTO_NUMERATION_CODE "
201
+ + "SYSRES_CONST_AUTO_STRONG_ENUM_METHOD_FLAG "
202
+ + "SYSRES_CONST_AUTOTEXT_NAME_REQUISITE_CODE "
203
+ + "SYSRES_CONST_AUTOTEXT_TEXT_REQUISITE_CODE "
204
+ + "SYSRES_CONST_AUTOTEXT_USAGE_ALL "
205
+ + "SYSRES_CONST_AUTOTEXT_USAGE_ALL_CODE "
206
+ + "SYSRES_CONST_AUTOTEXT_USAGE_SIGN "
207
+ + "SYSRES_CONST_AUTOTEXT_USAGE_SIGN_CODE "
208
+ + "SYSRES_CONST_AUTOTEXT_USAGE_WORK "
209
+ + "SYSRES_CONST_AUTOTEXT_USAGE_WORK_CODE "
210
+ + "SYSRES_CONST_AUTOTEXT_USE_ANYWHERE_CODE "
211
+ + "SYSRES_CONST_AUTOTEXT_USE_ON_SIGNING_CODE "
212
+ + "SYSRES_CONST_AUTOTEXT_USE_ON_WORK_CODE "
213
+ + "SYSRES_CONST_BEGIN_DATE_REQUISITE_CODE "
214
+ + "SYSRES_CONST_BLACK_LIFE_CYCLE_STAGE_FONT_COLOR "
215
+ + "SYSRES_CONST_BLUE_LIFE_CYCLE_STAGE_FONT_COLOR "
216
+ + "SYSRES_CONST_BTN_PART "
217
+ + "SYSRES_CONST_CALCULATED_ROLE_TYPE_CODE "
218
+ + "SYSRES_CONST_CALL_TYPE_VARIABLE_BUTTON_VALUE "
219
+ + "SYSRES_CONST_CALL_TYPE_VARIABLE_PROGRAM_VALUE "
220
+ + "SYSRES_CONST_CANCEL_MESSAGE_FUNCTION_RESULT "
221
+ + "SYSRES_CONST_CARD_PART "
222
+ + "SYSRES_CONST_CARD_REFERENCE_MODE_NAME "
223
+ + "SYSRES_CONST_CERTIFICATE_TYPE_REQUISITE_ENCRYPT_VALUE "
224
+ + "SYSRES_CONST_CERTIFICATE_TYPE_REQUISITE_SIGN_AND_ENCRYPT_VALUE "
225
+ + "SYSRES_CONST_CERTIFICATE_TYPE_REQUISITE_SIGN_VALUE "
226
+ + "SYSRES_CONST_CHECK_PARAM_VALUE_DATE_PARAM_TYPE "
227
+ + "SYSRES_CONST_CHECK_PARAM_VALUE_FLOAT_PARAM_TYPE "
228
+ + "SYSRES_CONST_CHECK_PARAM_VALUE_INTEGER_PARAM_TYPE "
229
+ + "SYSRES_CONST_CHECK_PARAM_VALUE_PICK_PARAM_TYPE "
230
+ + "SYSRES_CONST_CHECK_PARAM_VALUE_REEFRENCE_PARAM_TYPE "
231
+ + "SYSRES_CONST_CLOSED_RECORD_FLAG_VALUE_FEMININE "
232
+ + "SYSRES_CONST_CLOSED_RECORD_FLAG_VALUE_MASCULINE "
233
+ + "SYSRES_CONST_CODE_COMPONENT_TYPE_ADMIN "
234
+ + "SYSRES_CONST_CODE_COMPONENT_TYPE_DEVELOPER "
235
+ + "SYSRES_CONST_CODE_COMPONENT_TYPE_DOCS "
236
+ + "SYSRES_CONST_CODE_COMPONENT_TYPE_EDOC_CARDS "
237
+ + "SYSRES_CONST_CODE_COMPONENT_TYPE_EXTERNAL_EXECUTABLE "
238
+ + "SYSRES_CONST_CODE_COMPONENT_TYPE_OTHER "
239
+ + "SYSRES_CONST_CODE_COMPONENT_TYPE_REFERENCE "
240
+ + "SYSRES_CONST_CODE_COMPONENT_TYPE_REPORT "
241
+ + "SYSRES_CONST_CODE_COMPONENT_TYPE_SCRIPT "
242
+ + "SYSRES_CONST_CODE_COMPONENT_TYPE_URL "
243
+ + "SYSRES_CONST_CODE_REQUISITE_ACCESS "
244
+ + "SYSRES_CONST_CODE_REQUISITE_CODE "
245
+ + "SYSRES_CONST_CODE_REQUISITE_COMPONENT "
246
+ + "SYSRES_CONST_CODE_REQUISITE_DESCRIPTION "
247
+ + "SYSRES_CONST_CODE_REQUISITE_EXCLUDE_COMPONENT "
248
+ + "SYSRES_CONST_CODE_REQUISITE_RECORD "
249
+ + "SYSRES_CONST_COMMENT_REQ_CODE "
250
+ + "SYSRES_CONST_COMMON_SETTINGS_REQUISITE_CODE "
251
+ + "SYSRES_CONST_COMP_CODE_GRD "
252
+ + "SYSRES_CONST_COMPONENT_GROUP_TYPE_REQUISITE_CODE "
253
+ + "SYSRES_CONST_COMPONENT_TYPE_ADMIN_COMPONENTS "
254
+ + "SYSRES_CONST_COMPONENT_TYPE_DEVELOPER_COMPONENTS "
255
+ + "SYSRES_CONST_COMPONENT_TYPE_DOCS "
256
+ + "SYSRES_CONST_COMPONENT_TYPE_EDOC_CARDS "
257
+ + "SYSRES_CONST_COMPONENT_TYPE_EDOCS "
258
+ + "SYSRES_CONST_COMPONENT_TYPE_EXTERNAL_EXECUTABLE "
259
+ + "SYSRES_CONST_COMPONENT_TYPE_OTHER "
260
+ + "SYSRES_CONST_COMPONENT_TYPE_REFERENCE_TYPES "
261
+ + "SYSRES_CONST_COMPONENT_TYPE_REFERENCES "
262
+ + "SYSRES_CONST_COMPONENT_TYPE_REPORTS "
263
+ + "SYSRES_CONST_COMPONENT_TYPE_SCRIPTS "
264
+ + "SYSRES_CONST_COMPONENT_TYPE_URL "
265
+ + "SYSRES_CONST_COMPONENTS_REMOTE_SERVERS_VIEW_CODE "
266
+ + "SYSRES_CONST_CONDITION_BLOCK_DESCRIPTION "
267
+ + "SYSRES_CONST_CONST_FIRM_STATUS_COMMON "
268
+ + "SYSRES_CONST_CONST_FIRM_STATUS_INDIVIDUAL "
269
+ + "SYSRES_CONST_CONST_NEGATIVE_VALUE "
270
+ + "SYSRES_CONST_CONST_POSITIVE_VALUE "
271
+ + "SYSRES_CONST_CONST_SERVER_STATUS_DONT_REPLICATE "
272
+ + "SYSRES_CONST_CONST_SERVER_STATUS_REPLICATE "
273
+ + "SYSRES_CONST_CONTENTS_REQUISITE_CODE "
274
+ + "SYSRES_CONST_DATA_TYPE_BOOLEAN "
275
+ + "SYSRES_CONST_DATA_TYPE_DATE "
276
+ + "SYSRES_CONST_DATA_TYPE_FLOAT "
277
+ + "SYSRES_CONST_DATA_TYPE_INTEGER "
278
+ + "SYSRES_CONST_DATA_TYPE_PICK "
279
+ + "SYSRES_CONST_DATA_TYPE_REFERENCE "
280
+ + "SYSRES_CONST_DATA_TYPE_STRING "
281
+ + "SYSRES_CONST_DATA_TYPE_TEXT "
282
+ + "SYSRES_CONST_DATA_TYPE_VARIANT "
283
+ + "SYSRES_CONST_DATE_CLOSE_REQ_CODE "
284
+ + "SYSRES_CONST_DATE_FORMAT_DATE_ONLY_CHAR "
285
+ + "SYSRES_CONST_DATE_OPEN_REQ_CODE "
286
+ + "SYSRES_CONST_DATE_REQUISITE "
287
+ + "SYSRES_CONST_DATE_REQUISITE_CODE "
288
+ + "SYSRES_CONST_DATE_REQUISITE_NAME "
289
+ + "SYSRES_CONST_DATE_REQUISITE_TYPE "
290
+ + "SYSRES_CONST_DATE_TYPE_CHAR "
291
+ + "SYSRES_CONST_DATETIME_FORMAT_VALUE "
292
+ + "SYSRES_CONST_DEA_ACCESS_RIGHTS_ACTION_CODE "
293
+ + "SYSRES_CONST_DESCRIPTION_LOCALIZE_ID_REQUISITE_CODE "
294
+ + "SYSRES_CONST_DESCRIPTION_REQUISITE_CODE "
295
+ + "SYSRES_CONST_DET1_PART "
296
+ + "SYSRES_CONST_DET2_PART "
297
+ + "SYSRES_CONST_DET3_PART "
298
+ + "SYSRES_CONST_DET4_PART "
299
+ + "SYSRES_CONST_DET5_PART "
300
+ + "SYSRES_CONST_DET6_PART "
301
+ + "SYSRES_CONST_DETAIL_DATASET_KEY_REQUISITE_CODE "
302
+ + "SYSRES_CONST_DETAIL_PICK_REQUISITE_CODE "
303
+ + "SYSRES_CONST_DETAIL_REQ_CODE "
304
+ + "SYSRES_CONST_DO_NOT_USE_ACCESS_TYPE_CODE "
305
+ + "SYSRES_CONST_DO_NOT_USE_ACCESS_TYPE_NAME "
306
+ + "SYSRES_CONST_DO_NOT_USE_ON_VIEW_ACCESS_TYPE_CODE "
307
+ + "SYSRES_CONST_DO_NOT_USE_ON_VIEW_ACCESS_TYPE_NAME "
308
+ + "SYSRES_CONST_DOCUMENT_STORAGES_CODE "
309
+ + "SYSRES_CONST_DOCUMENT_TEMPLATES_TYPE_NAME "
310
+ + "SYSRES_CONST_DOUBLE_REQUISITE_CODE "
311
+ + "SYSRES_CONST_EDITOR_CLOSE_FILE_OBSERV_TYPE_CODE "
312
+ + "SYSRES_CONST_EDITOR_CLOSE_PROCESS_OBSERV_TYPE_CODE "
313
+ + "SYSRES_CONST_EDITOR_TYPE_REQUISITE_CODE "
314
+ + "SYSRES_CONST_EDITORS_APPLICATION_NAME_REQUISITE_CODE "
315
+ + "SYSRES_CONST_EDITORS_CREATE_SEVERAL_PROCESSES_REQUISITE_CODE "
316
+ + "SYSRES_CONST_EDITORS_EXTENSION_REQUISITE_CODE "
317
+ + "SYSRES_CONST_EDITORS_OBSERVER_BY_PROCESS_TYPE "
318
+ + "SYSRES_CONST_EDITORS_REFERENCE_CODE "
319
+ + "SYSRES_CONST_EDITORS_REPLACE_SPEC_CHARS_REQUISITE_CODE "
320
+ + "SYSRES_CONST_EDITORS_USE_PLUGINS_REQUISITE_CODE "
321
+ + "SYSRES_CONST_EDITORS_VIEW_DOCUMENT_OPENED_TO_EDIT_CODE "
322
+ + "SYSRES_CONST_EDOC_CARD_TYPE_REQUISITE_CODE "
323
+ + "SYSRES_CONST_EDOC_CARD_TYPES_LINK_REQUISITE_CODE "
324
+ + "SYSRES_CONST_EDOC_CERTIFICATE_AND_PASSWORD_ENCODE_CODE "
325
+ + "SYSRES_CONST_EDOC_CERTIFICATE_ENCODE_CODE "
326
+ + "SYSRES_CONST_EDOC_DATE_REQUISITE_CODE "
327
+ + "SYSRES_CONST_EDOC_KIND_REFERENCE_CODE "
328
+ + "SYSRES_CONST_EDOC_KINDS_BY_TEMPLATE_ACTION_CODE "
329
+ + "SYSRES_CONST_EDOC_MANAGE_ACCESS_CODE "
330
+ + "SYSRES_CONST_EDOC_NONE_ENCODE_CODE "
331
+ + "SYSRES_CONST_EDOC_NUMBER_REQUISITE_CODE "
332
+ + "SYSRES_CONST_EDOC_PASSWORD_ENCODE_CODE "
333
+ + "SYSRES_CONST_EDOC_READONLY_ACCESS_CODE "
334
+ + "SYSRES_CONST_EDOC_SHELL_LIFE_TYPE_VIEW_VALUE "
335
+ + "SYSRES_CONST_EDOC_SIZE_RESTRICTION_PRIORITY_REQUISITE_CODE "
336
+ + "SYSRES_CONST_EDOC_STORAGE_CHECK_ACCESS_RIGHTS_REQUISITE_CODE "
337
+ + "SYSRES_CONST_EDOC_STORAGE_COMPUTER_NAME_REQUISITE_CODE "
338
+ + "SYSRES_CONST_EDOC_STORAGE_DATABASE_NAME_REQUISITE_CODE "
339
+ + "SYSRES_CONST_EDOC_STORAGE_EDIT_IN_STORAGE_REQUISITE_CODE "
340
+ + "SYSRES_CONST_EDOC_STORAGE_LOCAL_PATH_REQUISITE_CODE "
341
+ + "SYSRES_CONST_EDOC_STORAGE_SHARED_SOURCE_NAME_REQUISITE_CODE "
342
+ + "SYSRES_CONST_EDOC_TEMPLATE_REQUISITE_CODE "
343
+ + "SYSRES_CONST_EDOC_TYPES_REFERENCE_CODE "
344
+ + "SYSRES_CONST_EDOC_VERSION_ACTIVE_STAGE_CODE "
345
+ + "SYSRES_CONST_EDOC_VERSION_DESIGN_STAGE_CODE "
346
+ + "SYSRES_CONST_EDOC_VERSION_OBSOLETE_STAGE_CODE "
347
+ + "SYSRES_CONST_EDOC_WRITE_ACCES_CODE "
348
+ + "SYSRES_CONST_EDOCUMENT_CARD_REQUISITES_REFERENCE_CODE_SELECTED_REQUISITE "
349
+ + "SYSRES_CONST_ENCODE_CERTIFICATE_TYPE_CODE "
350
+ + "SYSRES_CONST_END_DATE_REQUISITE_CODE "
351
+ + "SYSRES_CONST_ENUMERATION_TYPE_REQUISITE_CODE "
352
+ + "SYSRES_CONST_EXECUTE_ACCESS_RIGHTS_TYPE_CODE "
353
+ + "SYSRES_CONST_EXECUTIVE_FILE_STORAGE_TYPE "
354
+ + "SYSRES_CONST_EXIST_CONST "
355
+ + "SYSRES_CONST_EXIST_VALUE "
356
+ + "SYSRES_CONST_EXPORT_LOCK_TYPE_ASK "
357
+ + "SYSRES_CONST_EXPORT_LOCK_TYPE_WITH_LOCK "
358
+ + "SYSRES_CONST_EXPORT_LOCK_TYPE_WITHOUT_LOCK "
359
+ + "SYSRES_CONST_EXPORT_VERSION_TYPE_ASK "
360
+ + "SYSRES_CONST_EXPORT_VERSION_TYPE_LAST "
361
+ + "SYSRES_CONST_EXPORT_VERSION_TYPE_LAST_ACTIVE "
362
+ + "SYSRES_CONST_EXTENSION_REQUISITE_CODE "
363
+ + "SYSRES_CONST_FILTER_NAME_REQUISITE_CODE "
364
+ + "SYSRES_CONST_FILTER_REQUISITE_CODE "
365
+ + "SYSRES_CONST_FILTER_TYPE_COMMON_CODE "
366
+ + "SYSRES_CONST_FILTER_TYPE_COMMON_NAME "
367
+ + "SYSRES_CONST_FILTER_TYPE_USER_CODE "
368
+ + "SYSRES_CONST_FILTER_TYPE_USER_NAME "
369
+ + "SYSRES_CONST_FILTER_VALUE_REQUISITE_NAME "
370
+ + "SYSRES_CONST_FLOAT_NUMBER_FORMAT_CHAR "
371
+ + "SYSRES_CONST_FLOAT_REQUISITE_TYPE "
372
+ + "SYSRES_CONST_FOLDER_AUTHOR_VALUE "
373
+ + "SYSRES_CONST_FOLDER_KIND_ANY_OBJECTS "
374
+ + "SYSRES_CONST_FOLDER_KIND_COMPONENTS "
375
+ + "SYSRES_CONST_FOLDER_KIND_EDOCS "
376
+ + "SYSRES_CONST_FOLDER_KIND_JOBS "
377
+ + "SYSRES_CONST_FOLDER_KIND_TASKS "
378
+ + "SYSRES_CONST_FOLDER_TYPE_COMMON "
379
+ + "SYSRES_CONST_FOLDER_TYPE_COMPONENT "
380
+ + "SYSRES_CONST_FOLDER_TYPE_FAVORITES "
381
+ + "SYSRES_CONST_FOLDER_TYPE_INBOX "
382
+ + "SYSRES_CONST_FOLDER_TYPE_OUTBOX "
383
+ + "SYSRES_CONST_FOLDER_TYPE_QUICK_LAUNCH "
384
+ + "SYSRES_CONST_FOLDER_TYPE_SEARCH "
385
+ + "SYSRES_CONST_FOLDER_TYPE_SHORTCUTS "
386
+ + "SYSRES_CONST_FOLDER_TYPE_USER "
387
+ + "SYSRES_CONST_FROM_DICTIONARY_ENUM_METHOD_FLAG "
388
+ + "SYSRES_CONST_FULL_SUBSTITUTE_TYPE "
389
+ + "SYSRES_CONST_FULL_SUBSTITUTE_TYPE_CODE "
390
+ + "SYSRES_CONST_FUNCTION_CANCEL_RESULT "
391
+ + "SYSRES_CONST_FUNCTION_CATEGORY_SYSTEM "
392
+ + "SYSRES_CONST_FUNCTION_CATEGORY_USER "
393
+ + "SYSRES_CONST_FUNCTION_FAILURE_RESULT "
394
+ + "SYSRES_CONST_FUNCTION_SAVE_RESULT "
395
+ + "SYSRES_CONST_GENERATED_REQUISITE "
396
+ + "SYSRES_CONST_GREEN_LIFE_CYCLE_STAGE_FONT_COLOR "
397
+ + "SYSRES_CONST_GROUP_ACCOUNT_TYPE_VALUE_CODE "
398
+ + "SYSRES_CONST_GROUP_CATEGORY_NORMAL_CODE "
399
+ + "SYSRES_CONST_GROUP_CATEGORY_NORMAL_NAME "
400
+ + "SYSRES_CONST_GROUP_CATEGORY_SERVICE_CODE "
401
+ + "SYSRES_CONST_GROUP_CATEGORY_SERVICE_NAME "
402
+ + "SYSRES_CONST_GROUP_COMMON_CATEGORY_FIELD_VALUE "
403
+ + "SYSRES_CONST_GROUP_FULL_NAME_REQUISITE_CODE "
404
+ + "SYSRES_CONST_GROUP_NAME_REQUISITE_CODE "
405
+ + "SYSRES_CONST_GROUP_RIGHTS_T_REQUISITE_CODE "
406
+ + "SYSRES_CONST_GROUP_SERVER_CODES_REQUISITE_CODE "
407
+ + "SYSRES_CONST_GROUP_SERVER_NAME_REQUISITE_CODE "
408
+ + "SYSRES_CONST_GROUP_SERVICE_CATEGORY_FIELD_VALUE "
409
+ + "SYSRES_CONST_GROUP_USER_REQUISITE_CODE "
410
+ + "SYSRES_CONST_GROUPS_REFERENCE_CODE "
411
+ + "SYSRES_CONST_GROUPS_REQUISITE_CODE "
412
+ + "SYSRES_CONST_HIDDEN_MODE_NAME "
413
+ + "SYSRES_CONST_HIGH_LVL_REQUISITE_CODE "
414
+ + "SYSRES_CONST_HISTORY_ACTION_CREATE_CODE "
415
+ + "SYSRES_CONST_HISTORY_ACTION_DELETE_CODE "
416
+ + "SYSRES_CONST_HISTORY_ACTION_EDIT_CODE "
417
+ + "SYSRES_CONST_HOUR_CHAR "
418
+ + "SYSRES_CONST_ID_REQUISITE_CODE "
419
+ + "SYSRES_CONST_IDSPS_REQUISITE_CODE "
420
+ + "SYSRES_CONST_IMAGE_MODE_COLOR "
421
+ + "SYSRES_CONST_IMAGE_MODE_GREYSCALE "
422
+ + "SYSRES_CONST_IMAGE_MODE_MONOCHROME "
423
+ + "SYSRES_CONST_IMPORTANCE_HIGH "
424
+ + "SYSRES_CONST_IMPORTANCE_LOW "
425
+ + "SYSRES_CONST_IMPORTANCE_NORMAL "
426
+ + "SYSRES_CONST_IN_DESIGN_VERSION_STATE_PICK_VALUE "
427
+ + "SYSRES_CONST_INCOMING_WORK_RULE_TYPE_CODE "
428
+ + "SYSRES_CONST_INT_REQUISITE "
429
+ + "SYSRES_CONST_INT_REQUISITE_TYPE "
430
+ + "SYSRES_CONST_INTEGER_NUMBER_FORMAT_CHAR "
431
+ + "SYSRES_CONST_INTEGER_TYPE_CHAR "
432
+ + "SYSRES_CONST_IS_GENERATED_REQUISITE_NEGATIVE_VALUE "
433
+ + "SYSRES_CONST_IS_PUBLIC_ROLE_REQUISITE_CODE "
434
+ + "SYSRES_CONST_IS_REMOTE_USER_NEGATIVE_VALUE "
435
+ + "SYSRES_CONST_IS_REMOTE_USER_POSITIVE_VALUE "
436
+ + "SYSRES_CONST_IS_STORED_REQUISITE_NEGATIVE_VALUE "
437
+ + "SYSRES_CONST_IS_STORED_REQUISITE_STORED_VALUE "
438
+ + "SYSRES_CONST_ITALIC_LIFE_CYCLE_STAGE_DRAW_STYLE "
439
+ + "SYSRES_CONST_JOB_BLOCK_DESCRIPTION "
440
+ + "SYSRES_CONST_JOB_KIND_CONTROL_JOB "
441
+ + "SYSRES_CONST_JOB_KIND_JOB "
442
+ + "SYSRES_CONST_JOB_KIND_NOTICE "
443
+ + "SYSRES_CONST_JOB_STATE_ABORTED "
444
+ + "SYSRES_CONST_JOB_STATE_COMPLETE "
445
+ + "SYSRES_CONST_JOB_STATE_WORKING "
446
+ + "SYSRES_CONST_KIND_REQUISITE_CODE "
447
+ + "SYSRES_CONST_KIND_REQUISITE_NAME "
448
+ + "SYSRES_CONST_KINDS_CREATE_SHADOW_COPIES_REQUISITE_CODE "
449
+ + "SYSRES_CONST_KINDS_DEFAULT_EDOC_LIFE_STAGE_REQUISITE_CODE "
450
+ + "SYSRES_CONST_KINDS_EDOC_ALL_TEPLATES_ALLOWED_REQUISITE_CODE "
451
+ + "SYSRES_CONST_KINDS_EDOC_ALLOW_LIFE_CYCLE_STAGE_CHANGING_REQUISITE_CODE "
452
+ + "SYSRES_CONST_KINDS_EDOC_ALLOW_MULTIPLE_ACTIVE_VERSIONS_REQUISITE_CODE "
453
+ + "SYSRES_CONST_KINDS_EDOC_SHARE_ACCES_RIGHTS_BY_DEFAULT_CODE "
454
+ + "SYSRES_CONST_KINDS_EDOC_TEMPLATE_REQUISITE_CODE "
455
+ + "SYSRES_CONST_KINDS_EDOC_TYPE_REQUISITE_CODE "
456
+ + "SYSRES_CONST_KINDS_SIGNERS_REQUISITES_CODE "
457
+ + "SYSRES_CONST_KOD_INPUT_TYPE "
458
+ + "SYSRES_CONST_LAST_UPDATE_DATE_REQUISITE_CODE "
459
+ + "SYSRES_CONST_LIFE_CYCLE_START_STAGE_REQUISITE_CODE "
460
+ + "SYSRES_CONST_LILAC_LIFE_CYCLE_STAGE_FONT_COLOR "
461
+ + "SYSRES_CONST_LINK_OBJECT_KIND_COMPONENT "
462
+ + "SYSRES_CONST_LINK_OBJECT_KIND_DOCUMENT "
463
+ + "SYSRES_CONST_LINK_OBJECT_KIND_EDOC "
464
+ + "SYSRES_CONST_LINK_OBJECT_KIND_FOLDER "
465
+ + "SYSRES_CONST_LINK_OBJECT_KIND_JOB "
466
+ + "SYSRES_CONST_LINK_OBJECT_KIND_REFERENCE "
467
+ + "SYSRES_CONST_LINK_OBJECT_KIND_TASK "
468
+ + "SYSRES_CONST_LINK_REF_TYPE_REQUISITE_CODE "
469
+ + "SYSRES_CONST_LIST_REFERENCE_MODE_NAME "
470
+ + "SYSRES_CONST_LOCALIZATION_DICTIONARY_MAIN_VIEW_CODE "
471
+ + "SYSRES_CONST_MAIN_VIEW_CODE "
472
+ + "SYSRES_CONST_MANUAL_ENUM_METHOD_FLAG "
473
+ + "SYSRES_CONST_MASTER_COMP_TYPE_REQUISITE_CODE "
474
+ + "SYSRES_CONST_MASTER_TABLE_REC_ID_REQUISITE_CODE "
475
+ + "SYSRES_CONST_MAXIMIZED_MODE_NAME "
476
+ + "SYSRES_CONST_ME_VALUE "
477
+ + "SYSRES_CONST_MESSAGE_ATTENTION_CAPTION "
478
+ + "SYSRES_CONST_MESSAGE_CONFIRMATION_CAPTION "
479
+ + "SYSRES_CONST_MESSAGE_ERROR_CAPTION "
480
+ + "SYSRES_CONST_MESSAGE_INFORMATION_CAPTION "
481
+ + "SYSRES_CONST_MINIMIZED_MODE_NAME "
482
+ + "SYSRES_CONST_MINUTE_CHAR "
483
+ + "SYSRES_CONST_MODULE_REQUISITE_CODE "
484
+ + "SYSRES_CONST_MONITORING_BLOCK_DESCRIPTION "
485
+ + "SYSRES_CONST_MONTH_FORMAT_VALUE "
486
+ + "SYSRES_CONST_NAME_LOCALIZE_ID_REQUISITE_CODE "
487
+ + "SYSRES_CONST_NAME_REQUISITE_CODE "
488
+ + "SYSRES_CONST_NAME_SINGULAR_REQUISITE_CODE "
489
+ + "SYSRES_CONST_NAMEAN_INPUT_TYPE "
490
+ + "SYSRES_CONST_NEGATIVE_PICK_VALUE "
491
+ + "SYSRES_CONST_NEGATIVE_VALUE "
492
+ + "SYSRES_CONST_NO "
493
+ + "SYSRES_CONST_NO_PICK_VALUE "
494
+ + "SYSRES_CONST_NO_SIGNATURE_REQUISITE_CODE "
495
+ + "SYSRES_CONST_NO_VALUE "
496
+ + "SYSRES_CONST_NONE_ACCESS_RIGHTS_TYPE_CODE "
497
+ + "SYSRES_CONST_NONOPERATING_RECORD_FLAG_VALUE "
498
+ + "SYSRES_CONST_NONOPERATING_RECORD_FLAG_VALUE_MASCULINE "
499
+ + "SYSRES_CONST_NORMAL_ACCESS_RIGHTS_TYPE_CODE "
500
+ + "SYSRES_CONST_NORMAL_LIFE_CYCLE_STAGE_DRAW_STYLE "
501
+ + "SYSRES_CONST_NORMAL_MODE_NAME "
502
+ + "SYSRES_CONST_NOT_ALLOWED_ACCESS_TYPE_CODE "
503
+ + "SYSRES_CONST_NOT_ALLOWED_ACCESS_TYPE_NAME "
504
+ + "SYSRES_CONST_NOTE_REQUISITE_CODE "
505
+ + "SYSRES_CONST_NOTICE_BLOCK_DESCRIPTION "
506
+ + "SYSRES_CONST_NUM_REQUISITE "
507
+ + "SYSRES_CONST_NUM_STR_REQUISITE_CODE "
508
+ + "SYSRES_CONST_NUMERATION_AUTO_NOT_STRONG "
509
+ + "SYSRES_CONST_NUMERATION_AUTO_STRONG "
510
+ + "SYSRES_CONST_NUMERATION_FROM_DICTONARY "
511
+ + "SYSRES_CONST_NUMERATION_MANUAL "
512
+ + "SYSRES_CONST_NUMERIC_TYPE_CHAR "
513
+ + "SYSRES_CONST_NUMREQ_REQUISITE_CODE "
514
+ + "SYSRES_CONST_OBSOLETE_VERSION_STATE_PICK_VALUE "
515
+ + "SYSRES_CONST_OPERATING_RECORD_FLAG_VALUE "
516
+ + "SYSRES_CONST_OPERATING_RECORD_FLAG_VALUE_CODE "
517
+ + "SYSRES_CONST_OPERATING_RECORD_FLAG_VALUE_FEMININE "
518
+ + "SYSRES_CONST_OPERATING_RECORD_FLAG_VALUE_MASCULINE "
519
+ + "SYSRES_CONST_OPTIONAL_FORM_COMP_REQCODE_PREFIX "
520
+ + "SYSRES_CONST_ORANGE_LIFE_CYCLE_STAGE_FONT_COLOR "
521
+ + "SYSRES_CONST_ORIGINALREF_REQUISITE_CODE "
522
+ + "SYSRES_CONST_OURFIRM_REF_CODE "
523
+ + "SYSRES_CONST_OURFIRM_REQUISITE_CODE "
524
+ + "SYSRES_CONST_OURFIRM_VAR "
525
+ + "SYSRES_CONST_OUTGOING_WORK_RULE_TYPE_CODE "
526
+ + "SYSRES_CONST_PICK_NEGATIVE_RESULT "
527
+ + "SYSRES_CONST_PICK_POSITIVE_RESULT "
528
+ + "SYSRES_CONST_PICK_REQUISITE "
529
+ + "SYSRES_CONST_PICK_REQUISITE_TYPE "
530
+ + "SYSRES_CONST_PICK_TYPE_CHAR "
531
+ + "SYSRES_CONST_PLAN_STATUS_REQUISITE_CODE "
532
+ + "SYSRES_CONST_PLATFORM_VERSION_COMMENT "
533
+ + "SYSRES_CONST_PLUGINS_SETTINGS_DESCRIPTION_REQUISITE_CODE "
534
+ + "SYSRES_CONST_POSITIVE_PICK_VALUE "
535
+ + "SYSRES_CONST_POWER_TO_CREATE_ACTION_CODE "
536
+ + "SYSRES_CONST_POWER_TO_SIGN_ACTION_CODE "
537
+ + "SYSRES_CONST_PRIORITY_REQUISITE_CODE "
538
+ + "SYSRES_CONST_QUALIFIED_TASK_TYPE "
539
+ + "SYSRES_CONST_QUALIFIED_TASK_TYPE_CODE "
540
+ + "SYSRES_CONST_RECSTAT_REQUISITE_CODE "
541
+ + "SYSRES_CONST_RED_LIFE_CYCLE_STAGE_FONT_COLOR "
542
+ + "SYSRES_CONST_REF_ID_T_REF_TYPE_REQUISITE_CODE "
543
+ + "SYSRES_CONST_REF_REQUISITE "
544
+ + "SYSRES_CONST_REF_REQUISITE_TYPE "
545
+ + "SYSRES_CONST_REF_REQUISITES_REFERENCE_CODE_SELECTED_REQUISITE "
546
+ + "SYSRES_CONST_REFERENCE_RECORD_HISTORY_CREATE_ACTION_CODE "
547
+ + "SYSRES_CONST_REFERENCE_RECORD_HISTORY_DELETE_ACTION_CODE "
548
+ + "SYSRES_CONST_REFERENCE_RECORD_HISTORY_MODIFY_ACTION_CODE "
549
+ + "SYSRES_CONST_REFERENCE_TYPE_CHAR "
550
+ + "SYSRES_CONST_REFERENCE_TYPE_REQUISITE_NAME "
551
+ + "SYSRES_CONST_REFERENCES_ADD_PARAMS_REQUISITE_CODE "
552
+ + "SYSRES_CONST_REFERENCES_DISPLAY_REQUISITE_REQUISITE_CODE "
553
+ + "SYSRES_CONST_REMOTE_SERVER_STATUS_WORKING "
554
+ + "SYSRES_CONST_REMOTE_SERVER_TYPE_MAIN "
555
+ + "SYSRES_CONST_REMOTE_SERVER_TYPE_SECONDARY "
556
+ + "SYSRES_CONST_REMOTE_USER_FLAG_VALUE_CODE "
557
+ + "SYSRES_CONST_REPORT_APP_EDITOR_INTERNAL "
558
+ + "SYSRES_CONST_REPORT_BASE_REPORT_ID_REQUISITE_CODE "
559
+ + "SYSRES_CONST_REPORT_BASE_REPORT_REQUISITE_CODE "
560
+ + "SYSRES_CONST_REPORT_SCRIPT_REQUISITE_CODE "
561
+ + "SYSRES_CONST_REPORT_TEMPLATE_REQUISITE_CODE "
562
+ + "SYSRES_CONST_REPORT_VIEWER_CODE_REQUISITE_CODE "
563
+ + "SYSRES_CONST_REQ_ALLOW_COMPONENT_DEFAULT_VALUE "
564
+ + "SYSRES_CONST_REQ_ALLOW_RECORD_DEFAULT_VALUE "
565
+ + "SYSRES_CONST_REQ_ALLOW_SERVER_COMPONENT_DEFAULT_VALUE "
566
+ + "SYSRES_CONST_REQ_MODE_AVAILABLE_CODE "
567
+ + "SYSRES_CONST_REQ_MODE_EDIT_CODE "
568
+ + "SYSRES_CONST_REQ_MODE_HIDDEN_CODE "
569
+ + "SYSRES_CONST_REQ_MODE_NOT_AVAILABLE_CODE "
570
+ + "SYSRES_CONST_REQ_MODE_VIEW_CODE "
571
+ + "SYSRES_CONST_REQ_NUMBER_REQUISITE_CODE "
572
+ + "SYSRES_CONST_REQ_SECTION_VALUE "
573
+ + "SYSRES_CONST_REQ_TYPE_VALUE "
574
+ + "SYSRES_CONST_REQUISITE_FORMAT_BY_UNIT "
575
+ + "SYSRES_CONST_REQUISITE_FORMAT_DATE_FULL "
576
+ + "SYSRES_CONST_REQUISITE_FORMAT_DATE_TIME "
577
+ + "SYSRES_CONST_REQUISITE_FORMAT_LEFT "
578
+ + "SYSRES_CONST_REQUISITE_FORMAT_RIGHT "
579
+ + "SYSRES_CONST_REQUISITE_FORMAT_WITHOUT_UNIT "
580
+ + "SYSRES_CONST_REQUISITE_NUMBER_REQUISITE_CODE "
581
+ + "SYSRES_CONST_REQUISITE_SECTION_ACTIONS "
582
+ + "SYSRES_CONST_REQUISITE_SECTION_BUTTON "
583
+ + "SYSRES_CONST_REQUISITE_SECTION_BUTTONS "
584
+ + "SYSRES_CONST_REQUISITE_SECTION_CARD "
585
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE "
586
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE10 "
587
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE11 "
588
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE12 "
589
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE13 "
590
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE14 "
591
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE15 "
592
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE16 "
593
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE17 "
594
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE18 "
595
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE19 "
596
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE2 "
597
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE20 "
598
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE21 "
599
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE22 "
600
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE23 "
601
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE24 "
602
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE3 "
603
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE4 "
604
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE5 "
605
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE6 "
606
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE7 "
607
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE8 "
608
+ + "SYSRES_CONST_REQUISITE_SECTION_TABLE9 "
609
+ + "SYSRES_CONST_REQUISITES_PSEUDOREFERENCE_REQUISITE_NUMBER_REQUISITE_CODE "
610
+ + "SYSRES_CONST_RIGHT_ALIGNMENT_CODE "
611
+ + "SYSRES_CONST_ROLES_REFERENCE_CODE "
612
+ + "SYSRES_CONST_ROUTE_STEP_AFTER_RUS "
613
+ + "SYSRES_CONST_ROUTE_STEP_AND_CONDITION_RUS "
614
+ + "SYSRES_CONST_ROUTE_STEP_OR_CONDITION_RUS "
615
+ + "SYSRES_CONST_ROUTE_TYPE_COMPLEX "
616
+ + "SYSRES_CONST_ROUTE_TYPE_PARALLEL "
617
+ + "SYSRES_CONST_ROUTE_TYPE_SERIAL "
618
+ + "SYSRES_CONST_SBDATASETDESC_NEGATIVE_VALUE "
619
+ + "SYSRES_CONST_SBDATASETDESC_POSITIVE_VALUE "
620
+ + "SYSRES_CONST_SBVIEWSDESC_POSITIVE_VALUE "
621
+ + "SYSRES_CONST_SCRIPT_BLOCK_DESCRIPTION "
622
+ + "SYSRES_CONST_SEARCH_BY_TEXT_REQUISITE_CODE "
623
+ + "SYSRES_CONST_SEARCHES_COMPONENT_CONTENT "
624
+ + "SYSRES_CONST_SEARCHES_CRITERIA_ACTION_NAME "
625
+ + "SYSRES_CONST_SEARCHES_EDOC_CONTENT "
626
+ + "SYSRES_CONST_SEARCHES_FOLDER_CONTENT "
627
+ + "SYSRES_CONST_SEARCHES_JOB_CONTENT "
628
+ + "SYSRES_CONST_SEARCHES_REFERENCE_CODE "
629
+ + "SYSRES_CONST_SEARCHES_TASK_CONTENT "
630
+ + "SYSRES_CONST_SECOND_CHAR "
631
+ + "SYSRES_CONST_SECTION_REQUISITE_ACTIONS_VALUE "
632
+ + "SYSRES_CONST_SECTION_REQUISITE_CARD_VALUE "
633
+ + "SYSRES_CONST_SECTION_REQUISITE_CODE "
634
+ + "SYSRES_CONST_SECTION_REQUISITE_DETAIL_1_VALUE "
635
+ + "SYSRES_CONST_SECTION_REQUISITE_DETAIL_2_VALUE "
636
+ + "SYSRES_CONST_SECTION_REQUISITE_DETAIL_3_VALUE "
637
+ + "SYSRES_CONST_SECTION_REQUISITE_DETAIL_4_VALUE "
638
+ + "SYSRES_CONST_SECTION_REQUISITE_DETAIL_5_VALUE "
639
+ + "SYSRES_CONST_SECTION_REQUISITE_DETAIL_6_VALUE "
640
+ + "SYSRES_CONST_SELECT_REFERENCE_MODE_NAME "
641
+ + "SYSRES_CONST_SELECT_TYPE_SELECTABLE "
642
+ + "SYSRES_CONST_SELECT_TYPE_SELECTABLE_ONLY_CHILD "
643
+ + "SYSRES_CONST_SELECT_TYPE_SELECTABLE_WITH_CHILD "
644
+ + "SYSRES_CONST_SELECT_TYPE_UNSLECTABLE "
645
+ + "SYSRES_CONST_SERVER_TYPE_MAIN "
646
+ + "SYSRES_CONST_SERVICE_USER_CATEGORY_FIELD_VALUE "
647
+ + "SYSRES_CONST_SETTINGS_USER_REQUISITE_CODE "
648
+ + "SYSRES_CONST_SIGNATURE_AND_ENCODE_CERTIFICATE_TYPE_CODE "
649
+ + "SYSRES_CONST_SIGNATURE_CERTIFICATE_TYPE_CODE "
650
+ + "SYSRES_CONST_SINGULAR_TITLE_REQUISITE_CODE "
651
+ + "SYSRES_CONST_SQL_SERVER_AUTHENTIFICATION_FLAG_VALUE_CODE "
652
+ + "SYSRES_CONST_SQL_SERVER_ENCODE_AUTHENTIFICATION_FLAG_VALUE_CODE "
653
+ + "SYSRES_CONST_STANDART_ROUTE_REFERENCE_CODE "
654
+ + "SYSRES_CONST_STANDART_ROUTE_REFERENCE_COMMENT_REQUISITE_CODE "
655
+ + "SYSRES_CONST_STANDART_ROUTES_GROUPS_REFERENCE_CODE "
656
+ + "SYSRES_CONST_STATE_REQ_NAME "
657
+ + "SYSRES_CONST_STATE_REQUISITE_ACTIVE_VALUE "
658
+ + "SYSRES_CONST_STATE_REQUISITE_CLOSED_VALUE "
659
+ + "SYSRES_CONST_STATE_REQUISITE_CODE "
660
+ + "SYSRES_CONST_STATIC_ROLE_TYPE_CODE "
661
+ + "SYSRES_CONST_STATUS_PLAN_DEFAULT_VALUE "
662
+ + "SYSRES_CONST_STATUS_VALUE_AUTOCLEANING "
663
+ + "SYSRES_CONST_STATUS_VALUE_BLUE_SQUARE "
664
+ + "SYSRES_CONST_STATUS_VALUE_COMPLETE "
665
+ + "SYSRES_CONST_STATUS_VALUE_GREEN_SQUARE "
666
+ + "SYSRES_CONST_STATUS_VALUE_ORANGE_SQUARE "
667
+ + "SYSRES_CONST_STATUS_VALUE_PURPLE_SQUARE "
668
+ + "SYSRES_CONST_STATUS_VALUE_RED_SQUARE "
669
+ + "SYSRES_CONST_STATUS_VALUE_SUSPEND "
670
+ + "SYSRES_CONST_STATUS_VALUE_YELLOW_SQUARE "
671
+ + "SYSRES_CONST_STDROUTE_SHOW_TO_USERS_REQUISITE_CODE "
672
+ + "SYSRES_CONST_STORAGE_TYPE_FILE "
673
+ + "SYSRES_CONST_STORAGE_TYPE_SQL_SERVER "
674
+ + "SYSRES_CONST_STR_REQUISITE "
675
+ + "SYSRES_CONST_STRIKEOUT_LIFE_CYCLE_STAGE_DRAW_STYLE "
676
+ + "SYSRES_CONST_STRING_FORMAT_LEFT_ALIGN_CHAR "
677
+ + "SYSRES_CONST_STRING_FORMAT_RIGHT_ALIGN_CHAR "
678
+ + "SYSRES_CONST_STRING_REQUISITE_CODE "
679
+ + "SYSRES_CONST_STRING_REQUISITE_TYPE "
680
+ + "SYSRES_CONST_STRING_TYPE_CHAR "
681
+ + "SYSRES_CONST_SUBSTITUTES_PSEUDOREFERENCE_CODE "
682
+ + "SYSRES_CONST_SUBTASK_BLOCK_DESCRIPTION "
683
+ + "SYSRES_CONST_SYSTEM_SETTING_CURRENT_USER_PARAM_VALUE "
684
+ + "SYSRES_CONST_SYSTEM_SETTING_EMPTY_VALUE_PARAM_VALUE "
685
+ + "SYSRES_CONST_SYSTEM_VERSION_COMMENT "
686
+ + "SYSRES_CONST_TASK_ACCESS_TYPE_ALL "
687
+ + "SYSRES_CONST_TASK_ACCESS_TYPE_ALL_MEMBERS "
688
+ + "SYSRES_CONST_TASK_ACCESS_TYPE_MANUAL "
689
+ + "SYSRES_CONST_TASK_ENCODE_TYPE_CERTIFICATION "
690
+ + "SYSRES_CONST_TASK_ENCODE_TYPE_CERTIFICATION_AND_PASSWORD "
691
+ + "SYSRES_CONST_TASK_ENCODE_TYPE_NONE "
692
+ + "SYSRES_CONST_TASK_ENCODE_TYPE_PASSWORD "
693
+ + "SYSRES_CONST_TASK_ROUTE_ALL_CONDITION "
694
+ + "SYSRES_CONST_TASK_ROUTE_AND_CONDITION "
695
+ + "SYSRES_CONST_TASK_ROUTE_OR_CONDITION "
696
+ + "SYSRES_CONST_TASK_STATE_ABORTED "
697
+ + "SYSRES_CONST_TASK_STATE_COMPLETE "
698
+ + "SYSRES_CONST_TASK_STATE_CONTINUED "
699
+ + "SYSRES_CONST_TASK_STATE_CONTROL "
700
+ + "SYSRES_CONST_TASK_STATE_INIT "
701
+ + "SYSRES_CONST_TASK_STATE_WORKING "
702
+ + "SYSRES_CONST_TASK_TITLE "
703
+ + "SYSRES_CONST_TASK_TYPES_GROUPS_REFERENCE_CODE "
704
+ + "SYSRES_CONST_TASK_TYPES_REFERENCE_CODE "
705
+ + "SYSRES_CONST_TEMPLATES_REFERENCE_CODE "
706
+ + "SYSRES_CONST_TEST_DATE_REQUISITE_NAME "
707
+ + "SYSRES_CONST_TEST_DEV_DATABASE_NAME "
708
+ + "SYSRES_CONST_TEST_DEV_SYSTEM_CODE "
709
+ + "SYSRES_CONST_TEST_EDMS_DATABASE_NAME "
710
+ + "SYSRES_CONST_TEST_EDMS_MAIN_CODE "
711
+ + "SYSRES_CONST_TEST_EDMS_MAIN_DB_NAME "
712
+ + "SYSRES_CONST_TEST_EDMS_SECOND_CODE "
713
+ + "SYSRES_CONST_TEST_EDMS_SECOND_DB_NAME "
714
+ + "SYSRES_CONST_TEST_EDMS_SYSTEM_CODE "
715
+ + "SYSRES_CONST_TEST_NUMERIC_REQUISITE_NAME "
716
+ + "SYSRES_CONST_TEXT_REQUISITE "
717
+ + "SYSRES_CONST_TEXT_REQUISITE_CODE "
718
+ + "SYSRES_CONST_TEXT_REQUISITE_TYPE "
719
+ + "SYSRES_CONST_TEXT_TYPE_CHAR "
720
+ + "SYSRES_CONST_TYPE_CODE_REQUISITE_CODE "
721
+ + "SYSRES_CONST_TYPE_REQUISITE_CODE "
722
+ + "SYSRES_CONST_UNDEFINED_LIFE_CYCLE_STAGE_FONT_COLOR "
723
+ + "SYSRES_CONST_UNITS_SECTION_ID_REQUISITE_CODE "
724
+ + "SYSRES_CONST_UNITS_SECTION_REQUISITE_CODE "
725
+ + "SYSRES_CONST_UNOPERATING_RECORD_FLAG_VALUE_CODE "
726
+ + "SYSRES_CONST_UNSTORED_DATA_REQUISITE_CODE "
727
+ + "SYSRES_CONST_UNSTORED_DATA_REQUISITE_NAME "
728
+ + "SYSRES_CONST_USE_ACCESS_TYPE_CODE "
729
+ + "SYSRES_CONST_USE_ACCESS_TYPE_NAME "
730
+ + "SYSRES_CONST_USER_ACCOUNT_TYPE_VALUE_CODE "
731
+ + "SYSRES_CONST_USER_ADDITIONAL_INFORMATION_REQUISITE_CODE "
732
+ + "SYSRES_CONST_USER_AND_GROUP_ID_FROM_PSEUDOREFERENCE_REQUISITE_CODE "
733
+ + "SYSRES_CONST_USER_CATEGORY_NORMAL "
734
+ + "SYSRES_CONST_USER_CERTIFICATE_REQUISITE_CODE "
735
+ + "SYSRES_CONST_USER_CERTIFICATE_STATE_REQUISITE_CODE "
736
+ + "SYSRES_CONST_USER_CERTIFICATE_SUBJECT_NAME_REQUISITE_CODE "
737
+ + "SYSRES_CONST_USER_CERTIFICATE_THUMBPRINT_REQUISITE_CODE "
738
+ + "SYSRES_CONST_USER_COMMON_CATEGORY "
739
+ + "SYSRES_CONST_USER_COMMON_CATEGORY_CODE "
740
+ + "SYSRES_CONST_USER_FULL_NAME_REQUISITE_CODE "
741
+ + "SYSRES_CONST_USER_GROUP_TYPE_REQUISITE_CODE "
742
+ + "SYSRES_CONST_USER_LOGIN_REQUISITE_CODE "
743
+ + "SYSRES_CONST_USER_REMOTE_CONTROLLER_REQUISITE_CODE "
744
+ + "SYSRES_CONST_USER_REMOTE_SYSTEM_REQUISITE_CODE "
745
+ + "SYSRES_CONST_USER_RIGHTS_T_REQUISITE_CODE "
746
+ + "SYSRES_CONST_USER_SERVER_NAME_REQUISITE_CODE "
747
+ + "SYSRES_CONST_USER_SERVICE_CATEGORY "
748
+ + "SYSRES_CONST_USER_SERVICE_CATEGORY_CODE "
749
+ + "SYSRES_CONST_USER_STATUS_ADMINISTRATOR_CODE "
750
+ + "SYSRES_CONST_USER_STATUS_ADMINISTRATOR_NAME "
751
+ + "SYSRES_CONST_USER_STATUS_DEVELOPER_CODE "
752
+ + "SYSRES_CONST_USER_STATUS_DEVELOPER_NAME "
753
+ + "SYSRES_CONST_USER_STATUS_DISABLED_CODE "
754
+ + "SYSRES_CONST_USER_STATUS_DISABLED_NAME "
755
+ + "SYSRES_CONST_USER_STATUS_SYSTEM_DEVELOPER_CODE "
756
+ + "SYSRES_CONST_USER_STATUS_USER_CODE "
757
+ + "SYSRES_CONST_USER_STATUS_USER_NAME "
758
+ + "SYSRES_CONST_USER_STATUS_USER_NAME_DEPRECATED "
759
+ + "SYSRES_CONST_USER_TYPE_FIELD_VALUE_USER "
760
+ + "SYSRES_CONST_USER_TYPE_REQUISITE_CODE "
761
+ + "SYSRES_CONST_USERS_CONTROLLER_REQUISITE_CODE "
762
+ + "SYSRES_CONST_USERS_IS_MAIN_SERVER_REQUISITE_CODE "
763
+ + "SYSRES_CONST_USERS_REFERENCE_CODE "
764
+ + "SYSRES_CONST_USERS_REGISTRATION_CERTIFICATES_ACTION_NAME "
765
+ + "SYSRES_CONST_USERS_REQUISITE_CODE "
766
+ + "SYSRES_CONST_USERS_SYSTEM_REQUISITE_CODE "
767
+ + "SYSRES_CONST_USERS_USER_ACCESS_RIGHTS_TYPR_REQUISITE_CODE "
768
+ + "SYSRES_CONST_USERS_USER_AUTHENTICATION_REQUISITE_CODE "
769
+ + "SYSRES_CONST_USERS_USER_COMPONENT_REQUISITE_CODE "
770
+ + "SYSRES_CONST_USERS_USER_GROUP_REQUISITE_CODE "
771
+ + "SYSRES_CONST_USERS_VIEW_CERTIFICATES_ACTION_NAME "
772
+ + "SYSRES_CONST_VIEW_DEFAULT_CODE "
773
+ + "SYSRES_CONST_VIEW_DEFAULT_NAME "
774
+ + "SYSRES_CONST_VIEWER_REQUISITE_CODE "
775
+ + "SYSRES_CONST_WAITING_BLOCK_DESCRIPTION "
776
+ + "SYSRES_CONST_WIZARD_FORM_LABEL_TEST_STRING "
777
+ + "SYSRES_CONST_WIZARD_QUERY_PARAM_HEIGHT_ETALON_STRING "
778
+ + "SYSRES_CONST_WIZARD_REFERENCE_COMMENT_REQUISITE_CODE "
779
+ + "SYSRES_CONST_WORK_RULES_DESCRIPTION_REQUISITE_CODE "
780
+ + "SYSRES_CONST_WORK_TIME_CALENDAR_REFERENCE_CODE "
781
+ + "SYSRES_CONST_WORK_WORKFLOW_HARD_ROUTE_TYPE_VALUE "
782
+ + "SYSRES_CONST_WORK_WORKFLOW_HARD_ROUTE_TYPE_VALUE_CODE "
783
+ + "SYSRES_CONST_WORK_WORKFLOW_HARD_ROUTE_TYPE_VALUE_CODE_RUS "
784
+ + "SYSRES_CONST_WORK_WORKFLOW_SOFT_ROUTE_TYPE_VALUE_CODE_RUS "
785
+ + "SYSRES_CONST_WORKFLOW_ROUTE_TYPR_HARD "
786
+ + "SYSRES_CONST_WORKFLOW_ROUTE_TYPR_SOFT "
787
+ + "SYSRES_CONST_XML_ENCODING "
788
+ + "SYSRES_CONST_XREC_STAT_REQUISITE_CODE "
789
+ + "SYSRES_CONST_XRECID_FIELD_NAME "
790
+ + "SYSRES_CONST_YES "
791
+ + "SYSRES_CONST_YES_NO_2_REQUISITE_CODE "
792
+ + "SYSRES_CONST_YES_NO_REQUISITE_CODE "
793
+ + "SYSRES_CONST_YES_NO_T_REF_TYPE_REQUISITE_CODE "
794
+ + "SYSRES_CONST_YES_PICK_VALUE "
795
+ + "SYSRES_CONST_YES_VALUE ";
796
+
797
+ // Base constant
798
+ const base_constants = "CR FALSE nil NO_VALUE NULL TAB TRUE YES_VALUE ";
799
+
800
+ // Base group name
801
+ const base_group_name_constants =
802
+ "ADMINISTRATORS_GROUP_NAME CUSTOMIZERS_GROUP_NAME DEVELOPERS_GROUP_NAME SERVICE_USERS_GROUP_NAME ";
803
+
804
+ // Decision block properties
805
+ const decision_block_properties_constants =
806
+ "DECISION_BLOCK_FIRST_OPERAND_PROPERTY DECISION_BLOCK_NAME_PROPERTY DECISION_BLOCK_OPERATION_PROPERTY "
807
+ + "DECISION_BLOCK_RESULT_TYPE_PROPERTY DECISION_BLOCK_SECOND_OPERAND_PROPERTY ";
808
+
809
+ // File extension
810
+ const file_extension_constants =
811
+ "ANY_FILE_EXTENTION COMPRESSED_DOCUMENT_EXTENSION EXTENDED_DOCUMENT_EXTENSION "
812
+ + "SHORT_COMPRESSED_DOCUMENT_EXTENSION SHORT_EXTENDED_DOCUMENT_EXTENSION ";
813
+
814
+ // Job block properties
815
+ const job_block_properties_constants =
816
+ "JOB_BLOCK_ABORT_DEADLINE_PROPERTY "
817
+ + "JOB_BLOCK_AFTER_FINISH_EVENT "
818
+ + "JOB_BLOCK_AFTER_QUERY_PARAMETERS_EVENT "
819
+ + "JOB_BLOCK_ATTACHMENT_PROPERTY "
820
+ + "JOB_BLOCK_ATTACHMENTS_RIGHTS_GROUP_PROPERTY "
821
+ + "JOB_BLOCK_ATTACHMENTS_RIGHTS_TYPE_PROPERTY "
822
+ + "JOB_BLOCK_BEFORE_QUERY_PARAMETERS_EVENT "
823
+ + "JOB_BLOCK_BEFORE_START_EVENT "
824
+ + "JOB_BLOCK_CREATED_JOBS_PROPERTY "
825
+ + "JOB_BLOCK_DEADLINE_PROPERTY "
826
+ + "JOB_BLOCK_EXECUTION_RESULTS_PROPERTY "
827
+ + "JOB_BLOCK_IS_PARALLEL_PROPERTY "
828
+ + "JOB_BLOCK_IS_RELATIVE_ABORT_DEADLINE_PROPERTY "
829
+ + "JOB_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY "
830
+ + "JOB_BLOCK_JOB_TEXT_PROPERTY "
831
+ + "JOB_BLOCK_NAME_PROPERTY "
832
+ + "JOB_BLOCK_NEED_SIGN_ON_PERFORM_PROPERTY "
833
+ + "JOB_BLOCK_PERFORMER_PROPERTY "
834
+ + "JOB_BLOCK_RELATIVE_ABORT_DEADLINE_TYPE_PROPERTY "
835
+ + "JOB_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY "
836
+ + "JOB_BLOCK_SUBJECT_PROPERTY ";
837
+
838
+ // Language code
839
+ const language_code_constants = "ENGLISH_LANGUAGE_CODE RUSSIAN_LANGUAGE_CODE ";
840
+
841
+ // Launching external applications
842
+ const launching_external_applications_constants =
843
+ "smHidden smMaximized smMinimized smNormal wmNo wmYes ";
844
+
845
+ // Link kind
846
+ const link_kind_constants =
847
+ "COMPONENT_TOKEN_LINK_KIND "
848
+ + "DOCUMENT_LINK_KIND "
849
+ + "EDOCUMENT_LINK_KIND "
850
+ + "FOLDER_LINK_KIND "
851
+ + "JOB_LINK_KIND "
852
+ + "REFERENCE_LINK_KIND "
853
+ + "TASK_LINK_KIND ";
854
+
855
+ // Lock type
856
+ const lock_type_constants =
857
+ "COMPONENT_TOKEN_LOCK_TYPE EDOCUMENT_VERSION_LOCK_TYPE ";
858
+
859
+ // Monitor block properties
860
+ const monitor_block_properties_constants =
861
+ "MONITOR_BLOCK_AFTER_FINISH_EVENT "
862
+ + "MONITOR_BLOCK_BEFORE_START_EVENT "
863
+ + "MONITOR_BLOCK_DEADLINE_PROPERTY "
864
+ + "MONITOR_BLOCK_INTERVAL_PROPERTY "
865
+ + "MONITOR_BLOCK_INTERVAL_TYPE_PROPERTY "
866
+ + "MONITOR_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY "
867
+ + "MONITOR_BLOCK_NAME_PROPERTY "
868
+ + "MONITOR_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY "
869
+ + "MONITOR_BLOCK_SEARCH_SCRIPT_PROPERTY ";
870
+
871
+ // Notice block properties
872
+ const notice_block_properties_constants =
873
+ "NOTICE_BLOCK_AFTER_FINISH_EVENT "
874
+ + "NOTICE_BLOCK_ATTACHMENT_PROPERTY "
875
+ + "NOTICE_BLOCK_ATTACHMENTS_RIGHTS_GROUP_PROPERTY "
876
+ + "NOTICE_BLOCK_ATTACHMENTS_RIGHTS_TYPE_PROPERTY "
877
+ + "NOTICE_BLOCK_BEFORE_START_EVENT "
878
+ + "NOTICE_BLOCK_CREATED_NOTICES_PROPERTY "
879
+ + "NOTICE_BLOCK_DEADLINE_PROPERTY "
880
+ + "NOTICE_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY "
881
+ + "NOTICE_BLOCK_NAME_PROPERTY "
882
+ + "NOTICE_BLOCK_NOTICE_TEXT_PROPERTY "
883
+ + "NOTICE_BLOCK_PERFORMER_PROPERTY "
884
+ + "NOTICE_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY "
885
+ + "NOTICE_BLOCK_SUBJECT_PROPERTY ";
886
+
887
+ // Object events
888
+ const object_events_constants =
889
+ "dseAfterCancel "
890
+ + "dseAfterClose "
891
+ + "dseAfterDelete "
892
+ + "dseAfterDeleteOutOfTransaction "
893
+ + "dseAfterInsert "
894
+ + "dseAfterOpen "
895
+ + "dseAfterScroll "
896
+ + "dseAfterUpdate "
897
+ + "dseAfterUpdateOutOfTransaction "
898
+ + "dseBeforeCancel "
899
+ + "dseBeforeClose "
900
+ + "dseBeforeDelete "
901
+ + "dseBeforeDetailUpdate "
902
+ + "dseBeforeInsert "
903
+ + "dseBeforeOpen "
904
+ + "dseBeforeUpdate "
905
+ + "dseOnAnyRequisiteChange "
906
+ + "dseOnCloseRecord "
907
+ + "dseOnDeleteError "
908
+ + "dseOnOpenRecord "
909
+ + "dseOnPrepareUpdate "
910
+ + "dseOnUpdateError "
911
+ + "dseOnUpdateRatifiedRecord "
912
+ + "dseOnValidDelete "
913
+ + "dseOnValidUpdate "
914
+ + "reOnChange "
915
+ + "reOnChangeValues "
916
+ + "SELECTION_BEGIN_ROUTE_EVENT "
917
+ + "SELECTION_END_ROUTE_EVENT ";
918
+
919
+ // Object params
920
+ const object_params_constants =
921
+ "CURRENT_PERIOD_IS_REQUIRED "
922
+ + "PREVIOUS_CARD_TYPE_NAME "
923
+ + "SHOW_RECORD_PROPERTIES_FORM ";
924
+
925
+ // Other
926
+ const other_constants =
927
+ "ACCESS_RIGHTS_SETTING_DIALOG_CODE "
928
+ + "ADMINISTRATOR_USER_CODE "
929
+ + "ANALYTIC_REPORT_TYPE "
930
+ + "asrtHideLocal "
931
+ + "asrtHideRemote "
932
+ + "CALCULATED_ROLE_TYPE_CODE "
933
+ + "COMPONENTS_REFERENCE_DEVELOPER_VIEW_CODE "
934
+ + "DCTS_TEST_PROTOCOLS_FOLDER_PATH "
935
+ + "E_EDOC_VERSION_ALREADY_APPROVINGLY_SIGNED "
936
+ + "E_EDOC_VERSION_ALREADY_APPROVINGLY_SIGNED_BY_USER "
937
+ + "E_EDOC_VERSION_ALREDY_SIGNED "
938
+ + "E_EDOC_VERSION_ALREDY_SIGNED_BY_USER "
939
+ + "EDOC_TYPES_CODE_REQUISITE_FIELD_NAME "
940
+ + "EDOCUMENTS_ALIAS_NAME "
941
+ + "FILES_FOLDER_PATH "
942
+ + "FILTER_OPERANDS_DELIMITER "
943
+ + "FILTER_OPERATIONS_DELIMITER "
944
+ + "FORMCARD_NAME "
945
+ + "FORMLIST_NAME "
946
+ + "GET_EXTENDED_DOCUMENT_EXTENSION_CREATION_MODE "
947
+ + "GET_EXTENDED_DOCUMENT_EXTENSION_IMPORT_MODE "
948
+ + "INTEGRATED_REPORT_TYPE "
949
+ + "IS_BUILDER_APPLICATION_ROLE "
950
+ + "IS_BUILDER_APPLICATION_ROLE2 "
951
+ + "IS_BUILDER_USERS "
952
+ + "ISBSYSDEV "
953
+ + "LOG_FOLDER_PATH "
954
+ + "mbCancel "
955
+ + "mbNo "
956
+ + "mbNoToAll "
957
+ + "mbOK "
958
+ + "mbYes "
959
+ + "mbYesToAll "
960
+ + "MEMORY_DATASET_DESRIPTIONS_FILENAME "
961
+ + "mrNo "
962
+ + "mrNoToAll "
963
+ + "mrYes "
964
+ + "mrYesToAll "
965
+ + "MULTIPLE_SELECT_DIALOG_CODE "
966
+ + "NONOPERATING_RECORD_FLAG_FEMININE "
967
+ + "NONOPERATING_RECORD_FLAG_MASCULINE "
968
+ + "OPERATING_RECORD_FLAG_FEMININE "
969
+ + "OPERATING_RECORD_FLAG_MASCULINE "
970
+ + "PROFILING_SETTINGS_COMMON_SETTINGS_CODE_VALUE "
971
+ + "PROGRAM_INITIATED_LOOKUP_ACTION "
972
+ + "ratDelete "
973
+ + "ratEdit "
974
+ + "ratInsert "
975
+ + "REPORT_TYPE "
976
+ + "REQUIRED_PICK_VALUES_VARIABLE "
977
+ + "rmCard "
978
+ + "rmList "
979
+ + "SBRTE_PROGID_DEV "
980
+ + "SBRTE_PROGID_RELEASE "
981
+ + "STATIC_ROLE_TYPE_CODE "
982
+ + "SUPPRESS_EMPTY_TEMPLATE_CREATION "
983
+ + "SYSTEM_USER_CODE "
984
+ + "UPDATE_DIALOG_DATASET "
985
+ + "USED_IN_OBJECT_HINT_PARAM "
986
+ + "USER_INITIATED_LOOKUP_ACTION "
987
+ + "USER_NAME_FORMAT "
988
+ + "USER_SELECTION_RESTRICTIONS "
989
+ + "WORKFLOW_TEST_PROTOCOLS_FOLDER_PATH "
990
+ + "ELS_SUBTYPE_CONTROL_NAME "
991
+ + "ELS_FOLDER_KIND_CONTROL_NAME "
992
+ + "REPEAT_PROCESS_CURRENT_OBJECT_EXCEPTION_NAME ";
993
+
994
+ // Privileges
995
+ const privileges_constants =
996
+ "PRIVILEGE_COMPONENT_FULL_ACCESS "
997
+ + "PRIVILEGE_DEVELOPMENT_EXPORT "
998
+ + "PRIVILEGE_DEVELOPMENT_IMPORT "
999
+ + "PRIVILEGE_DOCUMENT_DELETE "
1000
+ + "PRIVILEGE_ESD "
1001
+ + "PRIVILEGE_FOLDER_DELETE "
1002
+ + "PRIVILEGE_MANAGE_ACCESS_RIGHTS "
1003
+ + "PRIVILEGE_MANAGE_REPLICATION "
1004
+ + "PRIVILEGE_MANAGE_SESSION_SERVER "
1005
+ + "PRIVILEGE_OBJECT_FULL_ACCESS "
1006
+ + "PRIVILEGE_OBJECT_VIEW "
1007
+ + "PRIVILEGE_RESERVE_LICENSE "
1008
+ + "PRIVILEGE_SYSTEM_CUSTOMIZE "
1009
+ + "PRIVILEGE_SYSTEM_DEVELOP "
1010
+ + "PRIVILEGE_SYSTEM_INSTALL "
1011
+ + "PRIVILEGE_TASK_DELETE "
1012
+ + "PRIVILEGE_USER_PLUGIN_SETTINGS_CUSTOMIZE "
1013
+ + "PRIVILEGES_PSEUDOREFERENCE_CODE ";
1014
+
1015
+ // Pseudoreference code
1016
+ const pseudoreference_code_constants =
1017
+ "ACCESS_TYPES_PSEUDOREFERENCE_CODE "
1018
+ + "ALL_AVAILABLE_COMPONENTS_PSEUDOREFERENCE_CODE "
1019
+ + "ALL_AVAILABLE_PRIVILEGES_PSEUDOREFERENCE_CODE "
1020
+ + "ALL_REPLICATE_COMPONENTS_PSEUDOREFERENCE_CODE "
1021
+ + "AVAILABLE_DEVELOPERS_COMPONENTS_PSEUDOREFERENCE_CODE "
1022
+ + "COMPONENTS_PSEUDOREFERENCE_CODE "
1023
+ + "FILTRATER_SETTINGS_CONFLICTS_PSEUDOREFERENCE_CODE "
1024
+ + "GROUPS_PSEUDOREFERENCE_CODE "
1025
+ + "RECEIVE_PROTOCOL_PSEUDOREFERENCE_CODE "
1026
+ + "REFERENCE_REQUISITE_PSEUDOREFERENCE_CODE "
1027
+ + "REFERENCE_REQUISITES_PSEUDOREFERENCE_CODE "
1028
+ + "REFTYPES_PSEUDOREFERENCE_CODE "
1029
+ + "REPLICATION_SEANCES_DIARY_PSEUDOREFERENCE_CODE "
1030
+ + "SEND_PROTOCOL_PSEUDOREFERENCE_CODE "
1031
+ + "SUBSTITUTES_PSEUDOREFERENCE_CODE "
1032
+ + "SYSTEM_SETTINGS_PSEUDOREFERENCE_CODE "
1033
+ + "UNITS_PSEUDOREFERENCE_CODE "
1034
+ + "USERS_PSEUDOREFERENCE_CODE "
1035
+ + "VIEWERS_PSEUDOREFERENCE_CODE ";
1036
+
1037
+ // Requisite ISBCertificateType values
1038
+ const requisite_ISBCertificateType_values_constants =
1039
+ "CERTIFICATE_TYPE_ENCRYPT "
1040
+ + "CERTIFICATE_TYPE_SIGN "
1041
+ + "CERTIFICATE_TYPE_SIGN_AND_ENCRYPT ";
1042
+
1043
+ // Requisite ISBEDocStorageType values
1044
+ const requisite_ISBEDocStorageType_values_constants =
1045
+ "STORAGE_TYPE_FILE "
1046
+ + "STORAGE_TYPE_NAS_CIFS "
1047
+ + "STORAGE_TYPE_SAPERION "
1048
+ + "STORAGE_TYPE_SQL_SERVER ";
1049
+
1050
+ // Requisite CompType2 values
1051
+ const requisite_compType2_values_constants =
1052
+ "COMPTYPE2_REQUISITE_DOCUMENTS_VALUE "
1053
+ + "COMPTYPE2_REQUISITE_TASKS_VALUE "
1054
+ + "COMPTYPE2_REQUISITE_FOLDERS_VALUE "
1055
+ + "COMPTYPE2_REQUISITE_REFERENCES_VALUE ";
1056
+
1057
+ // Requisite name
1058
+ const requisite_name_constants =
1059
+ "SYSREQ_CODE "
1060
+ + "SYSREQ_COMPTYPE2 "
1061
+ + "SYSREQ_CONST_AVAILABLE_FOR_WEB "
1062
+ + "SYSREQ_CONST_COMMON_CODE "
1063
+ + "SYSREQ_CONST_COMMON_VALUE "
1064
+ + "SYSREQ_CONST_FIRM_CODE "
1065
+ + "SYSREQ_CONST_FIRM_STATUS "
1066
+ + "SYSREQ_CONST_FIRM_VALUE "
1067
+ + "SYSREQ_CONST_SERVER_STATUS "
1068
+ + "SYSREQ_CONTENTS "
1069
+ + "SYSREQ_DATE_OPEN "
1070
+ + "SYSREQ_DATE_CLOSE "
1071
+ + "SYSREQ_DESCRIPTION "
1072
+ + "SYSREQ_DESCRIPTION_LOCALIZE_ID "
1073
+ + "SYSREQ_DOUBLE "
1074
+ + "SYSREQ_EDOC_ACCESS_TYPE "
1075
+ + "SYSREQ_EDOC_AUTHOR "
1076
+ + "SYSREQ_EDOC_CREATED "
1077
+ + "SYSREQ_EDOC_DELEGATE_RIGHTS_REQUISITE_CODE "
1078
+ + "SYSREQ_EDOC_EDITOR "
1079
+ + "SYSREQ_EDOC_ENCODE_TYPE "
1080
+ + "SYSREQ_EDOC_ENCRYPTION_PLUGIN_NAME "
1081
+ + "SYSREQ_EDOC_ENCRYPTION_PLUGIN_VERSION "
1082
+ + "SYSREQ_EDOC_EXPORT_DATE "
1083
+ + "SYSREQ_EDOC_EXPORTER "
1084
+ + "SYSREQ_EDOC_KIND "
1085
+ + "SYSREQ_EDOC_LIFE_STAGE_NAME "
1086
+ + "SYSREQ_EDOC_LOCKED_FOR_SERVER_CODE "
1087
+ + "SYSREQ_EDOC_MODIFIED "
1088
+ + "SYSREQ_EDOC_NAME "
1089
+ + "SYSREQ_EDOC_NOTE "
1090
+ + "SYSREQ_EDOC_QUALIFIED_ID "
1091
+ + "SYSREQ_EDOC_SESSION_KEY "
1092
+ + "SYSREQ_EDOC_SESSION_KEY_ENCRYPTION_PLUGIN_NAME "
1093
+ + "SYSREQ_EDOC_SESSION_KEY_ENCRYPTION_PLUGIN_VERSION "
1094
+ + "SYSREQ_EDOC_SIGNATURE_TYPE "
1095
+ + "SYSREQ_EDOC_SIGNED "
1096
+ + "SYSREQ_EDOC_STORAGE "
1097
+ + "SYSREQ_EDOC_STORAGES_ARCHIVE_STORAGE "
1098
+ + "SYSREQ_EDOC_STORAGES_CHECK_RIGHTS "
1099
+ + "SYSREQ_EDOC_STORAGES_COMPUTER_NAME "
1100
+ + "SYSREQ_EDOC_STORAGES_EDIT_IN_STORAGE "
1101
+ + "SYSREQ_EDOC_STORAGES_EXECUTIVE_STORAGE "
1102
+ + "SYSREQ_EDOC_STORAGES_FUNCTION "
1103
+ + "SYSREQ_EDOC_STORAGES_INITIALIZED "
1104
+ + "SYSREQ_EDOC_STORAGES_LOCAL_PATH "
1105
+ + "SYSREQ_EDOC_STORAGES_SAPERION_DATABASE_NAME "
1106
+ + "SYSREQ_EDOC_STORAGES_SEARCH_BY_TEXT "
1107
+ + "SYSREQ_EDOC_STORAGES_SERVER_NAME "
1108
+ + "SYSREQ_EDOC_STORAGES_SHARED_SOURCE_NAME "
1109
+ + "SYSREQ_EDOC_STORAGES_TYPE "
1110
+ + "SYSREQ_EDOC_TEXT_MODIFIED "
1111
+ + "SYSREQ_EDOC_TYPE_ACT_CODE "
1112
+ + "SYSREQ_EDOC_TYPE_ACT_DESCRIPTION "
1113
+ + "SYSREQ_EDOC_TYPE_ACT_DESCRIPTION_LOCALIZE_ID "
1114
+ + "SYSREQ_EDOC_TYPE_ACT_ON_EXECUTE "
1115
+ + "SYSREQ_EDOC_TYPE_ACT_ON_EXECUTE_EXISTS "
1116
+ + "SYSREQ_EDOC_TYPE_ACT_SECTION "
1117
+ + "SYSREQ_EDOC_TYPE_ADD_PARAMS "
1118
+ + "SYSREQ_EDOC_TYPE_COMMENT "
1119
+ + "SYSREQ_EDOC_TYPE_EVENT_TEXT "
1120
+ + "SYSREQ_EDOC_TYPE_NAME_IN_SINGULAR "
1121
+ + "SYSREQ_EDOC_TYPE_NAME_IN_SINGULAR_LOCALIZE_ID "
1122
+ + "SYSREQ_EDOC_TYPE_NAME_LOCALIZE_ID "
1123
+ + "SYSREQ_EDOC_TYPE_NUMERATION_METHOD "
1124
+ + "SYSREQ_EDOC_TYPE_PSEUDO_REQUISITE_CODE "
1125
+ + "SYSREQ_EDOC_TYPE_REQ_CODE "
1126
+ + "SYSREQ_EDOC_TYPE_REQ_DESCRIPTION "
1127
+ + "SYSREQ_EDOC_TYPE_REQ_DESCRIPTION_LOCALIZE_ID "
1128
+ + "SYSREQ_EDOC_TYPE_REQ_IS_LEADING "
1129
+ + "SYSREQ_EDOC_TYPE_REQ_IS_REQUIRED "
1130
+ + "SYSREQ_EDOC_TYPE_REQ_NUMBER "
1131
+ + "SYSREQ_EDOC_TYPE_REQ_ON_CHANGE "
1132
+ + "SYSREQ_EDOC_TYPE_REQ_ON_CHANGE_EXISTS "
1133
+ + "SYSREQ_EDOC_TYPE_REQ_ON_SELECT "
1134
+ + "SYSREQ_EDOC_TYPE_REQ_ON_SELECT_KIND "
1135
+ + "SYSREQ_EDOC_TYPE_REQ_SECTION "
1136
+ + "SYSREQ_EDOC_TYPE_VIEW_CARD "
1137
+ + "SYSREQ_EDOC_TYPE_VIEW_CODE "
1138
+ + "SYSREQ_EDOC_TYPE_VIEW_COMMENT "
1139
+ + "SYSREQ_EDOC_TYPE_VIEW_IS_MAIN "
1140
+ + "SYSREQ_EDOC_TYPE_VIEW_NAME "
1141
+ + "SYSREQ_EDOC_TYPE_VIEW_NAME_LOCALIZE_ID "
1142
+ + "SYSREQ_EDOC_VERSION_AUTHOR "
1143
+ + "SYSREQ_EDOC_VERSION_CRC "
1144
+ + "SYSREQ_EDOC_VERSION_DATA "
1145
+ + "SYSREQ_EDOC_VERSION_EDITOR "
1146
+ + "SYSREQ_EDOC_VERSION_EXPORT_DATE "
1147
+ + "SYSREQ_EDOC_VERSION_EXPORTER "
1148
+ + "SYSREQ_EDOC_VERSION_HIDDEN "
1149
+ + "SYSREQ_EDOC_VERSION_LIFE_STAGE "
1150
+ + "SYSREQ_EDOC_VERSION_MODIFIED "
1151
+ + "SYSREQ_EDOC_VERSION_NOTE "
1152
+ + "SYSREQ_EDOC_VERSION_SIGNATURE_TYPE "
1153
+ + "SYSREQ_EDOC_VERSION_SIGNED "
1154
+ + "SYSREQ_EDOC_VERSION_SIZE "
1155
+ + "SYSREQ_EDOC_VERSION_SOURCE "
1156
+ + "SYSREQ_EDOC_VERSION_TEXT_MODIFIED "
1157
+ + "SYSREQ_EDOCKIND_DEFAULT_VERSION_STATE_CODE "
1158
+ + "SYSREQ_FOLDER_KIND "
1159
+ + "SYSREQ_FUNC_CATEGORY "
1160
+ + "SYSREQ_FUNC_COMMENT "
1161
+ + "SYSREQ_FUNC_GROUP "
1162
+ + "SYSREQ_FUNC_GROUP_COMMENT "
1163
+ + "SYSREQ_FUNC_GROUP_NUMBER "
1164
+ + "SYSREQ_FUNC_HELP "
1165
+ + "SYSREQ_FUNC_PARAM_DEF_VALUE "
1166
+ + "SYSREQ_FUNC_PARAM_IDENT "
1167
+ + "SYSREQ_FUNC_PARAM_NUMBER "
1168
+ + "SYSREQ_FUNC_PARAM_TYPE "
1169
+ + "SYSREQ_FUNC_TEXT "
1170
+ + "SYSREQ_GROUP_CATEGORY "
1171
+ + "SYSREQ_ID "
1172
+ + "SYSREQ_LAST_UPDATE "
1173
+ + "SYSREQ_LEADER_REFERENCE "
1174
+ + "SYSREQ_LINE_NUMBER "
1175
+ + "SYSREQ_MAIN_RECORD_ID "
1176
+ + "SYSREQ_NAME "
1177
+ + "SYSREQ_NAME_LOCALIZE_ID "
1178
+ + "SYSREQ_NOTE "
1179
+ + "SYSREQ_ORIGINAL_RECORD "
1180
+ + "SYSREQ_OUR_FIRM "
1181
+ + "SYSREQ_PROFILING_SETTINGS_BATCH_LOGING "
1182
+ + "SYSREQ_PROFILING_SETTINGS_BATCH_SIZE "
1183
+ + "SYSREQ_PROFILING_SETTINGS_PROFILING_ENABLED "
1184
+ + "SYSREQ_PROFILING_SETTINGS_SQL_PROFILING_ENABLED "
1185
+ + "SYSREQ_PROFILING_SETTINGS_START_LOGGED "
1186
+ + "SYSREQ_RECORD_STATUS "
1187
+ + "SYSREQ_REF_REQ_FIELD_NAME "
1188
+ + "SYSREQ_REF_REQ_FORMAT "
1189
+ + "SYSREQ_REF_REQ_GENERATED "
1190
+ + "SYSREQ_REF_REQ_LENGTH "
1191
+ + "SYSREQ_REF_REQ_PRECISION "
1192
+ + "SYSREQ_REF_REQ_REFERENCE "
1193
+ + "SYSREQ_REF_REQ_SECTION "
1194
+ + "SYSREQ_REF_REQ_STORED "
1195
+ + "SYSREQ_REF_REQ_TOKENS "
1196
+ + "SYSREQ_REF_REQ_TYPE "
1197
+ + "SYSREQ_REF_REQ_VIEW "
1198
+ + "SYSREQ_REF_TYPE_ACT_CODE "
1199
+ + "SYSREQ_REF_TYPE_ACT_DESCRIPTION "
1200
+ + "SYSREQ_REF_TYPE_ACT_DESCRIPTION_LOCALIZE_ID "
1201
+ + "SYSREQ_REF_TYPE_ACT_ON_EXECUTE "
1202
+ + "SYSREQ_REF_TYPE_ACT_ON_EXECUTE_EXISTS "
1203
+ + "SYSREQ_REF_TYPE_ACT_SECTION "
1204
+ + "SYSREQ_REF_TYPE_ADD_PARAMS "
1205
+ + "SYSREQ_REF_TYPE_COMMENT "
1206
+ + "SYSREQ_REF_TYPE_COMMON_SETTINGS "
1207
+ + "SYSREQ_REF_TYPE_DISPLAY_REQUISITE_NAME "
1208
+ + "SYSREQ_REF_TYPE_EVENT_TEXT "
1209
+ + "SYSREQ_REF_TYPE_MAIN_LEADING_REF "
1210
+ + "SYSREQ_REF_TYPE_NAME_IN_SINGULAR "
1211
+ + "SYSREQ_REF_TYPE_NAME_IN_SINGULAR_LOCALIZE_ID "
1212
+ + "SYSREQ_REF_TYPE_NAME_LOCALIZE_ID "
1213
+ + "SYSREQ_REF_TYPE_NUMERATION_METHOD "
1214
+ + "SYSREQ_REF_TYPE_REQ_CODE "
1215
+ + "SYSREQ_REF_TYPE_REQ_DESCRIPTION "
1216
+ + "SYSREQ_REF_TYPE_REQ_DESCRIPTION_LOCALIZE_ID "
1217
+ + "SYSREQ_REF_TYPE_REQ_IS_CONTROL "
1218
+ + "SYSREQ_REF_TYPE_REQ_IS_FILTER "
1219
+ + "SYSREQ_REF_TYPE_REQ_IS_LEADING "
1220
+ + "SYSREQ_REF_TYPE_REQ_IS_REQUIRED "
1221
+ + "SYSREQ_REF_TYPE_REQ_NUMBER "
1222
+ + "SYSREQ_REF_TYPE_REQ_ON_CHANGE "
1223
+ + "SYSREQ_REF_TYPE_REQ_ON_CHANGE_EXISTS "
1224
+ + "SYSREQ_REF_TYPE_REQ_ON_SELECT "
1225
+ + "SYSREQ_REF_TYPE_REQ_ON_SELECT_KIND "
1226
+ + "SYSREQ_REF_TYPE_REQ_SECTION "
1227
+ + "SYSREQ_REF_TYPE_VIEW_CARD "
1228
+ + "SYSREQ_REF_TYPE_VIEW_CODE "
1229
+ + "SYSREQ_REF_TYPE_VIEW_COMMENT "
1230
+ + "SYSREQ_REF_TYPE_VIEW_IS_MAIN "
1231
+ + "SYSREQ_REF_TYPE_VIEW_NAME "
1232
+ + "SYSREQ_REF_TYPE_VIEW_NAME_LOCALIZE_ID "
1233
+ + "SYSREQ_REFERENCE_TYPE_ID "
1234
+ + "SYSREQ_STATE "
1235
+ + "SYSREQ_STATЕ "
1236
+ + "SYSREQ_SYSTEM_SETTINGS_VALUE "
1237
+ + "SYSREQ_TYPE "
1238
+ + "SYSREQ_UNIT "
1239
+ + "SYSREQ_UNIT_ID "
1240
+ + "SYSREQ_USER_GROUPS_GROUP_FULL_NAME "
1241
+ + "SYSREQ_USER_GROUPS_GROUP_NAME "
1242
+ + "SYSREQ_USER_GROUPS_GROUP_SERVER_NAME "
1243
+ + "SYSREQ_USERS_ACCESS_RIGHTS "
1244
+ + "SYSREQ_USERS_AUTHENTICATION "
1245
+ + "SYSREQ_USERS_CATEGORY "
1246
+ + "SYSREQ_USERS_COMPONENT "
1247
+ + "SYSREQ_USERS_COMPONENT_USER_IS_PUBLIC "
1248
+ + "SYSREQ_USERS_DOMAIN "
1249
+ + "SYSREQ_USERS_FULL_USER_NAME "
1250
+ + "SYSREQ_USERS_GROUP "
1251
+ + "SYSREQ_USERS_IS_MAIN_SERVER "
1252
+ + "SYSREQ_USERS_LOGIN "
1253
+ + "SYSREQ_USERS_REFERENCE_USER_IS_PUBLIC "
1254
+ + "SYSREQ_USERS_STATUS "
1255
+ + "SYSREQ_USERS_USER_CERTIFICATE "
1256
+ + "SYSREQ_USERS_USER_CERTIFICATE_INFO "
1257
+ + "SYSREQ_USERS_USER_CERTIFICATE_PLUGIN_NAME "
1258
+ + "SYSREQ_USERS_USER_CERTIFICATE_PLUGIN_VERSION "
1259
+ + "SYSREQ_USERS_USER_CERTIFICATE_STATE "
1260
+ + "SYSREQ_USERS_USER_CERTIFICATE_SUBJECT_NAME "
1261
+ + "SYSREQ_USERS_USER_CERTIFICATE_THUMBPRINT "
1262
+ + "SYSREQ_USERS_USER_DEFAULT_CERTIFICATE "
1263
+ + "SYSREQ_USERS_USER_DESCRIPTION "
1264
+ + "SYSREQ_USERS_USER_GLOBAL_NAME "
1265
+ + "SYSREQ_USERS_USER_LOGIN "
1266
+ + "SYSREQ_USERS_USER_MAIN_SERVER "
1267
+ + "SYSREQ_USERS_USER_TYPE "
1268
+ + "SYSREQ_WORK_RULES_FOLDER_ID ";
1269
+
1270
+ // Result
1271
+ const result_constants = "RESULT_VAR_NAME RESULT_VAR_NAME_ENG ";
1272
+
1273
+ // Rule identification
1274
+ const rule_identification_constants =
1275
+ "AUTO_NUMERATION_RULE_ID "
1276
+ + "CANT_CHANGE_ID_REQUISITE_RULE_ID "
1277
+ + "CANT_CHANGE_OURFIRM_REQUISITE_RULE_ID "
1278
+ + "CHECK_CHANGING_REFERENCE_RECORD_USE_RULE_ID "
1279
+ + "CHECK_CODE_REQUISITE_RULE_ID "
1280
+ + "CHECK_DELETING_REFERENCE_RECORD_USE_RULE_ID "
1281
+ + "CHECK_FILTRATER_CHANGES_RULE_ID "
1282
+ + "CHECK_RECORD_INTERVAL_RULE_ID "
1283
+ + "CHECK_REFERENCE_INTERVAL_RULE_ID "
1284
+ + "CHECK_REQUIRED_DATA_FULLNESS_RULE_ID "
1285
+ + "CHECK_REQUIRED_REQUISITES_FULLNESS_RULE_ID "
1286
+ + "MAKE_RECORD_UNRATIFIED_RULE_ID "
1287
+ + "RESTORE_AUTO_NUMERATION_RULE_ID "
1288
+ + "SET_FIRM_CONTEXT_FROM_RECORD_RULE_ID "
1289
+ + "SET_FIRST_RECORD_IN_LIST_FORM_RULE_ID "
1290
+ + "SET_IDSPS_VALUE_RULE_ID "
1291
+ + "SET_NEXT_CODE_VALUE_RULE_ID "
1292
+ + "SET_OURFIRM_BOUNDS_RULE_ID "
1293
+ + "SET_OURFIRM_REQUISITE_RULE_ID ";
1294
+
1295
+ // Script block properties
1296
+ const script_block_properties_constants =
1297
+ "SCRIPT_BLOCK_AFTER_FINISH_EVENT "
1298
+ + "SCRIPT_BLOCK_BEFORE_START_EVENT "
1299
+ + "SCRIPT_BLOCK_EXECUTION_RESULTS_PROPERTY "
1300
+ + "SCRIPT_BLOCK_NAME_PROPERTY "
1301
+ + "SCRIPT_BLOCK_SCRIPT_PROPERTY ";
1302
+
1303
+ // Subtask block properties
1304
+ const subtask_block_properties_constants =
1305
+ "SUBTASK_BLOCK_ABORT_DEADLINE_PROPERTY "
1306
+ + "SUBTASK_BLOCK_AFTER_FINISH_EVENT "
1307
+ + "SUBTASK_BLOCK_ASSIGN_PARAMS_EVENT "
1308
+ + "SUBTASK_BLOCK_ATTACHMENTS_PROPERTY "
1309
+ + "SUBTASK_BLOCK_ATTACHMENTS_RIGHTS_GROUP_PROPERTY "
1310
+ + "SUBTASK_BLOCK_ATTACHMENTS_RIGHTS_TYPE_PROPERTY "
1311
+ + "SUBTASK_BLOCK_BEFORE_START_EVENT "
1312
+ + "SUBTASK_BLOCK_CREATED_TASK_PROPERTY "
1313
+ + "SUBTASK_BLOCK_CREATION_EVENT "
1314
+ + "SUBTASK_BLOCK_DEADLINE_PROPERTY "
1315
+ + "SUBTASK_BLOCK_IMPORTANCE_PROPERTY "
1316
+ + "SUBTASK_BLOCK_INITIATOR_PROPERTY "
1317
+ + "SUBTASK_BLOCK_IS_RELATIVE_ABORT_DEADLINE_PROPERTY "
1318
+ + "SUBTASK_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY "
1319
+ + "SUBTASK_BLOCK_JOBS_TYPE_PROPERTY "
1320
+ + "SUBTASK_BLOCK_NAME_PROPERTY "
1321
+ + "SUBTASK_BLOCK_PARALLEL_ROUTE_PROPERTY "
1322
+ + "SUBTASK_BLOCK_PERFORMERS_PROPERTY "
1323
+ + "SUBTASK_BLOCK_RELATIVE_ABORT_DEADLINE_TYPE_PROPERTY "
1324
+ + "SUBTASK_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY "
1325
+ + "SUBTASK_BLOCK_REQUIRE_SIGN_PROPERTY "
1326
+ + "SUBTASK_BLOCK_STANDARD_ROUTE_PROPERTY "
1327
+ + "SUBTASK_BLOCK_START_EVENT "
1328
+ + "SUBTASK_BLOCK_STEP_CONTROL_PROPERTY "
1329
+ + "SUBTASK_BLOCK_SUBJECT_PROPERTY "
1330
+ + "SUBTASK_BLOCK_TASK_CONTROL_PROPERTY "
1331
+ + "SUBTASK_BLOCK_TEXT_PROPERTY "
1332
+ + "SUBTASK_BLOCK_UNLOCK_ATTACHMENTS_ON_STOP_PROPERTY "
1333
+ + "SUBTASK_BLOCK_USE_STANDARD_ROUTE_PROPERTY "
1334
+ + "SUBTASK_BLOCK_WAIT_FOR_TASK_COMPLETE_PROPERTY ";
1335
+
1336
+ // System component
1337
+ const system_component_constants =
1338
+ "SYSCOMP_CONTROL_JOBS "
1339
+ + "SYSCOMP_FOLDERS "
1340
+ + "SYSCOMP_JOBS "
1341
+ + "SYSCOMP_NOTICES "
1342
+ + "SYSCOMP_TASKS ";
1343
+
1344
+ // System dialogs
1345
+ const system_dialogs_constants =
1346
+ "SYSDLG_CREATE_EDOCUMENT "
1347
+ + "SYSDLG_CREATE_EDOCUMENT_VERSION "
1348
+ + "SYSDLG_CURRENT_PERIOD "
1349
+ + "SYSDLG_EDIT_FUNCTION_HELP "
1350
+ + "SYSDLG_EDOCUMENT_KINDS_FOR_TEMPLATE "
1351
+ + "SYSDLG_EXPORT_MULTIPLE_EDOCUMENTS "
1352
+ + "SYSDLG_EXPORT_SINGLE_EDOCUMENT "
1353
+ + "SYSDLG_IMPORT_EDOCUMENT "
1354
+ + "SYSDLG_MULTIPLE_SELECT "
1355
+ + "SYSDLG_SETUP_ACCESS_RIGHTS "
1356
+ + "SYSDLG_SETUP_DEFAULT_RIGHTS "
1357
+ + "SYSDLG_SETUP_FILTER_CONDITION "
1358
+ + "SYSDLG_SETUP_SIGN_RIGHTS "
1359
+ + "SYSDLG_SETUP_TASK_OBSERVERS "
1360
+ + "SYSDLG_SETUP_TASK_ROUTE "
1361
+ + "SYSDLG_SETUP_USERS_LIST "
1362
+ + "SYSDLG_SIGN_EDOCUMENT "
1363
+ + "SYSDLG_SIGN_MULTIPLE_EDOCUMENTS ";
1364
+
1365
+ // System reference names
1366
+ const system_reference_names_constants =
1367
+ "SYSREF_ACCESS_RIGHTS_TYPES "
1368
+ + "SYSREF_ADMINISTRATION_HISTORY "
1369
+ + "SYSREF_ALL_AVAILABLE_COMPONENTS "
1370
+ + "SYSREF_ALL_AVAILABLE_PRIVILEGES "
1371
+ + "SYSREF_ALL_REPLICATING_COMPONENTS "
1372
+ + "SYSREF_AVAILABLE_DEVELOPERS_COMPONENTS "
1373
+ + "SYSREF_CALENDAR_EVENTS "
1374
+ + "SYSREF_COMPONENT_TOKEN_HISTORY "
1375
+ + "SYSREF_COMPONENT_TOKENS "
1376
+ + "SYSREF_COMPONENTS "
1377
+ + "SYSREF_CONSTANTS "
1378
+ + "SYSREF_DATA_RECEIVE_PROTOCOL "
1379
+ + "SYSREF_DATA_SEND_PROTOCOL "
1380
+ + "SYSREF_DIALOGS "
1381
+ + "SYSREF_DIALOGS_REQUISITES "
1382
+ + "SYSREF_EDITORS "
1383
+ + "SYSREF_EDOC_CARDS "
1384
+ + "SYSREF_EDOC_TYPES "
1385
+ + "SYSREF_EDOCUMENT_CARD_REQUISITES "
1386
+ + "SYSREF_EDOCUMENT_CARD_TYPES "
1387
+ + "SYSREF_EDOCUMENT_CARD_TYPES_REFERENCE "
1388
+ + "SYSREF_EDOCUMENT_CARDS "
1389
+ + "SYSREF_EDOCUMENT_HISTORY "
1390
+ + "SYSREF_EDOCUMENT_KINDS "
1391
+ + "SYSREF_EDOCUMENT_REQUISITES "
1392
+ + "SYSREF_EDOCUMENT_SIGNATURES "
1393
+ + "SYSREF_EDOCUMENT_TEMPLATES "
1394
+ + "SYSREF_EDOCUMENT_TEXT_STORAGES "
1395
+ + "SYSREF_EDOCUMENT_VIEWS "
1396
+ + "SYSREF_FILTERER_SETUP_CONFLICTS "
1397
+ + "SYSREF_FILTRATER_SETTING_CONFLICTS "
1398
+ + "SYSREF_FOLDER_HISTORY "
1399
+ + "SYSREF_FOLDERS "
1400
+ + "SYSREF_FUNCTION_GROUPS "
1401
+ + "SYSREF_FUNCTION_PARAMS "
1402
+ + "SYSREF_FUNCTIONS "
1403
+ + "SYSREF_JOB_HISTORY "
1404
+ + "SYSREF_LINKS "
1405
+ + "SYSREF_LOCALIZATION_DICTIONARY "
1406
+ + "SYSREF_LOCALIZATION_LANGUAGES "
1407
+ + "SYSREF_MODULES "
1408
+ + "SYSREF_PRIVILEGES "
1409
+ + "SYSREF_RECORD_HISTORY "
1410
+ + "SYSREF_REFERENCE_REQUISITES "
1411
+ + "SYSREF_REFERENCE_TYPE_VIEWS "
1412
+ + "SYSREF_REFERENCE_TYPES "
1413
+ + "SYSREF_REFERENCES "
1414
+ + "SYSREF_REFERENCES_REQUISITES "
1415
+ + "SYSREF_REMOTE_SERVERS "
1416
+ + "SYSREF_REPLICATION_SESSIONS_LOG "
1417
+ + "SYSREF_REPLICATION_SESSIONS_PROTOCOL "
1418
+ + "SYSREF_REPORTS "
1419
+ + "SYSREF_ROLES "
1420
+ + "SYSREF_ROUTE_BLOCK_GROUPS "
1421
+ + "SYSREF_ROUTE_BLOCKS "
1422
+ + "SYSREF_SCRIPTS "
1423
+ + "SYSREF_SEARCHES "
1424
+ + "SYSREF_SERVER_EVENTS "
1425
+ + "SYSREF_SERVER_EVENTS_HISTORY "
1426
+ + "SYSREF_STANDARD_ROUTE_GROUPS "
1427
+ + "SYSREF_STANDARD_ROUTES "
1428
+ + "SYSREF_STATUSES "
1429
+ + "SYSREF_SYSTEM_SETTINGS "
1430
+ + "SYSREF_TASK_HISTORY "
1431
+ + "SYSREF_TASK_KIND_GROUPS "
1432
+ + "SYSREF_TASK_KINDS "
1433
+ + "SYSREF_TASK_RIGHTS "
1434
+ + "SYSREF_TASK_SIGNATURES "
1435
+ + "SYSREF_TASKS "
1436
+ + "SYSREF_UNITS "
1437
+ + "SYSREF_USER_GROUPS "
1438
+ + "SYSREF_USER_GROUPS_REFERENCE "
1439
+ + "SYSREF_USER_SUBSTITUTION "
1440
+ + "SYSREF_USERS "
1441
+ + "SYSREF_USERS_REFERENCE "
1442
+ + "SYSREF_VIEWERS "
1443
+ + "SYSREF_WORKING_TIME_CALENDARS ";
1444
+
1445
+ // Table name
1446
+ const table_name_constants =
1447
+ "ACCESS_RIGHTS_TABLE_NAME "
1448
+ + "EDMS_ACCESS_TABLE_NAME "
1449
+ + "EDOC_TYPES_TABLE_NAME ";
1450
+
1451
+ // Test
1452
+ const test_constants =
1453
+ "TEST_DEV_DB_NAME "
1454
+ + "TEST_DEV_SYSTEM_CODE "
1455
+ + "TEST_EDMS_DB_NAME "
1456
+ + "TEST_EDMS_MAIN_CODE "
1457
+ + "TEST_EDMS_MAIN_DB_NAME "
1458
+ + "TEST_EDMS_SECOND_CODE "
1459
+ + "TEST_EDMS_SECOND_DB_NAME "
1460
+ + "TEST_EDMS_SYSTEM_CODE "
1461
+ + "TEST_ISB5_MAIN_CODE "
1462
+ + "TEST_ISB5_SECOND_CODE "
1463
+ + "TEST_SQL_SERVER_2005_NAME "
1464
+ + "TEST_SQL_SERVER_NAME ";
1465
+
1466
+ // Using the dialog windows
1467
+ const using_the_dialog_windows_constants =
1468
+ "ATTENTION_CAPTION "
1469
+ + "cbsCommandLinks "
1470
+ + "cbsDefault "
1471
+ + "CONFIRMATION_CAPTION "
1472
+ + "ERROR_CAPTION "
1473
+ + "INFORMATION_CAPTION "
1474
+ + "mrCancel "
1475
+ + "mrOk ";
1476
+
1477
+ // Using the document
1478
+ const using_the_document_constants =
1479
+ "EDOC_VERSION_ACTIVE_STAGE_CODE "
1480
+ + "EDOC_VERSION_DESIGN_STAGE_CODE "
1481
+ + "EDOC_VERSION_OBSOLETE_STAGE_CODE ";
1482
+
1483
+ // Using the EA and encryption
1484
+ const using_the_EA_and_encryption_constants =
1485
+ "cpDataEnciphermentEnabled "
1486
+ + "cpDigitalSignatureEnabled "
1487
+ + "cpID "
1488
+ + "cpIssuer "
1489
+ + "cpPluginVersion "
1490
+ + "cpSerial "
1491
+ + "cpSubjectName "
1492
+ + "cpSubjSimpleName "
1493
+ + "cpValidFromDate "
1494
+ + "cpValidToDate ";
1495
+
1496
+ // Using the ISBL-editor
1497
+ const using_the_ISBL_editor_constants =
1498
+ "ISBL_SYNTAX " + "NO_SYNTAX " + "XML_SYNTAX ";
1499
+
1500
+ // Wait block properties
1501
+ const wait_block_properties_constants =
1502
+ "WAIT_BLOCK_AFTER_FINISH_EVENT "
1503
+ + "WAIT_BLOCK_BEFORE_START_EVENT "
1504
+ + "WAIT_BLOCK_DEADLINE_PROPERTY "
1505
+ + "WAIT_BLOCK_IS_RELATIVE_DEADLINE_PROPERTY "
1506
+ + "WAIT_BLOCK_NAME_PROPERTY "
1507
+ + "WAIT_BLOCK_RELATIVE_DEADLINE_TYPE_PROPERTY ";
1508
+
1509
+ // SYSRES Common
1510
+ const sysres_common_constants =
1511
+ "SYSRES_COMMON "
1512
+ + "SYSRES_CONST "
1513
+ + "SYSRES_MBFUNC "
1514
+ + "SYSRES_SBDATA "
1515
+ + "SYSRES_SBGUI "
1516
+ + "SYSRES_SBINTF "
1517
+ + "SYSRES_SBREFDSC "
1518
+ + "SYSRES_SQLERRORS "
1519
+ + "SYSRES_SYSCOMP ";
1520
+
1521
+ // Константы ==> built_in
1522
+ const CONSTANTS =
1523
+ sysres_constants
1524
+ + base_constants
1525
+ + base_group_name_constants
1526
+ + decision_block_properties_constants
1527
+ + file_extension_constants
1528
+ + job_block_properties_constants
1529
+ + language_code_constants
1530
+ + launching_external_applications_constants
1531
+ + link_kind_constants
1532
+ + lock_type_constants
1533
+ + monitor_block_properties_constants
1534
+ + notice_block_properties_constants
1535
+ + object_events_constants
1536
+ + object_params_constants
1537
+ + other_constants
1538
+ + privileges_constants
1539
+ + pseudoreference_code_constants
1540
+ + requisite_ISBCertificateType_values_constants
1541
+ + requisite_ISBEDocStorageType_values_constants
1542
+ + requisite_compType2_values_constants
1543
+ + requisite_name_constants
1544
+ + result_constants
1545
+ + rule_identification_constants
1546
+ + script_block_properties_constants
1547
+ + subtask_block_properties_constants
1548
+ + system_component_constants
1549
+ + system_dialogs_constants
1550
+ + system_reference_names_constants
1551
+ + table_name_constants
1552
+ + test_constants
1553
+ + using_the_dialog_windows_constants
1554
+ + using_the_document_constants
1555
+ + using_the_EA_and_encryption_constants
1556
+ + using_the_ISBL_editor_constants
1557
+ + wait_block_properties_constants
1558
+ + sysres_common_constants;
1559
+
1560
+ // enum TAccountType
1561
+ const TAccountType = "atUser atGroup atRole ";
1562
+
1563
+ // enum TActionEnabledMode
1564
+ const TActionEnabledMode =
1565
+ "aemEnabledAlways "
1566
+ + "aemDisabledAlways "
1567
+ + "aemEnabledOnBrowse "
1568
+ + "aemEnabledOnEdit "
1569
+ + "aemDisabledOnBrowseEmpty ";
1570
+
1571
+ // enum TAddPosition
1572
+ const TAddPosition = "apBegin apEnd ";
1573
+
1574
+ // enum TAlignment
1575
+ const TAlignment = "alLeft alRight ";
1576
+
1577
+ // enum TAreaShowMode
1578
+ const TAreaShowMode =
1579
+ "asmNever "
1580
+ + "asmNoButCustomize "
1581
+ + "asmAsLastTime "
1582
+ + "asmYesButCustomize "
1583
+ + "asmAlways ";
1584
+
1585
+ // enum TCertificateInvalidationReason
1586
+ const TCertificateInvalidationReason = "cirCommon cirRevoked ";
1587
+
1588
+ // enum TCertificateType
1589
+ const TCertificateType = "ctSignature ctEncode ctSignatureEncode ";
1590
+
1591
+ // enum TCheckListBoxItemState
1592
+ const TCheckListBoxItemState = "clbUnchecked clbChecked clbGrayed ";
1593
+
1594
+ // enum TCloseOnEsc
1595
+ const TCloseOnEsc = "ceISB ceAlways ceNever ";
1596
+
1597
+ // enum TCompType
1598
+ const TCompType =
1599
+ "ctDocument "
1600
+ + "ctReference "
1601
+ + "ctScript "
1602
+ + "ctUnknown "
1603
+ + "ctReport "
1604
+ + "ctDialog "
1605
+ + "ctFunction "
1606
+ + "ctFolder "
1607
+ + "ctEDocument "
1608
+ + "ctTask "
1609
+ + "ctJob "
1610
+ + "ctNotice "
1611
+ + "ctControlJob ";
1612
+
1613
+ // enum TConditionFormat
1614
+ const TConditionFormat = "cfInternal cfDisplay ";
1615
+
1616
+ // enum TConnectionIntent
1617
+ const TConnectionIntent = "ciUnspecified ciWrite ciRead ";
1618
+
1619
+ // enum TContentKind
1620
+ const TContentKind =
1621
+ "ckFolder "
1622
+ + "ckEDocument "
1623
+ + "ckTask "
1624
+ + "ckJob "
1625
+ + "ckComponentToken "
1626
+ + "ckAny "
1627
+ + "ckReference "
1628
+ + "ckScript "
1629
+ + "ckReport "
1630
+ + "ckDialog ";
1631
+
1632
+ // enum TControlType
1633
+ const TControlType =
1634
+ "ctISBLEditor "
1635
+ + "ctBevel "
1636
+ + "ctButton "
1637
+ + "ctCheckListBox "
1638
+ + "ctComboBox "
1639
+ + "ctComboEdit "
1640
+ + "ctGrid "
1641
+ + "ctDBCheckBox "
1642
+ + "ctDBComboBox "
1643
+ + "ctDBEdit "
1644
+ + "ctDBEllipsis "
1645
+ + "ctDBMemo "
1646
+ + "ctDBNavigator "
1647
+ + "ctDBRadioGroup "
1648
+ + "ctDBStatusLabel "
1649
+ + "ctEdit "
1650
+ + "ctGroupBox "
1651
+ + "ctInplaceHint "
1652
+ + "ctMemo "
1653
+ + "ctPanel "
1654
+ + "ctListBox "
1655
+ + "ctRadioButton "
1656
+ + "ctRichEdit "
1657
+ + "ctTabSheet "
1658
+ + "ctWebBrowser "
1659
+ + "ctImage "
1660
+ + "ctHyperLink "
1661
+ + "ctLabel "
1662
+ + "ctDBMultiEllipsis "
1663
+ + "ctRibbon "
1664
+ + "ctRichView "
1665
+ + "ctInnerPanel "
1666
+ + "ctPanelGroup "
1667
+ + "ctBitButton ";
1668
+
1669
+ // enum TCriterionContentType
1670
+ const TCriterionContentType =
1671
+ "cctDate "
1672
+ + "cctInteger "
1673
+ + "cctNumeric "
1674
+ + "cctPick "
1675
+ + "cctReference "
1676
+ + "cctString "
1677
+ + "cctText ";
1678
+
1679
+ // enum TCultureType
1680
+ const TCultureType = "cltInternal cltPrimary cltGUI ";
1681
+
1682
+ // enum TDataSetEventType
1683
+ const TDataSetEventType =
1684
+ "dseBeforeOpen "
1685
+ + "dseAfterOpen "
1686
+ + "dseBeforeClose "
1687
+ + "dseAfterClose "
1688
+ + "dseOnValidDelete "
1689
+ + "dseBeforeDelete "
1690
+ + "dseAfterDelete "
1691
+ + "dseAfterDeleteOutOfTransaction "
1692
+ + "dseOnDeleteError "
1693
+ + "dseBeforeInsert "
1694
+ + "dseAfterInsert "
1695
+ + "dseOnValidUpdate "
1696
+ + "dseBeforeUpdate "
1697
+ + "dseOnUpdateRatifiedRecord "
1698
+ + "dseAfterUpdate "
1699
+ + "dseAfterUpdateOutOfTransaction "
1700
+ + "dseOnUpdateError "
1701
+ + "dseAfterScroll "
1702
+ + "dseOnOpenRecord "
1703
+ + "dseOnCloseRecord "
1704
+ + "dseBeforeCancel "
1705
+ + "dseAfterCancel "
1706
+ + "dseOnUpdateDeadlockError "
1707
+ + "dseBeforeDetailUpdate "
1708
+ + "dseOnPrepareUpdate "
1709
+ + "dseOnAnyRequisiteChange ";
1710
+
1711
+ // enum TDataSetState
1712
+ const TDataSetState = "dssEdit dssInsert dssBrowse dssInActive ";
1713
+
1714
+ // enum TDateFormatType
1715
+ const TDateFormatType = "dftDate dftShortDate dftDateTime dftTimeStamp ";
1716
+
1717
+ // enum TDateOffsetType
1718
+ const TDateOffsetType = "dotDays dotHours dotMinutes dotSeconds ";
1719
+
1720
+ // enum TDateTimeKind
1721
+ const TDateTimeKind = "dtkndLocal dtkndUTC ";
1722
+
1723
+ // enum TDeaAccessRights
1724
+ const TDeaAccessRights = "arNone arView arEdit arFull ";
1725
+
1726
+ // enum TDocumentDefaultAction
1727
+ const TDocumentDefaultAction = "ddaView ddaEdit ";
1728
+
1729
+ // enum TEditMode
1730
+ const TEditMode =
1731
+ "emLock "
1732
+ + "emEdit "
1733
+ + "emSign "
1734
+ + "emExportWithLock "
1735
+ + "emImportWithUnlock "
1736
+ + "emChangeVersionNote "
1737
+ + "emOpenForModify "
1738
+ + "emChangeLifeStage "
1739
+ + "emDelete "
1740
+ + "emCreateVersion "
1741
+ + "emImport "
1742
+ + "emUnlockExportedWithLock "
1743
+ + "emStart "
1744
+ + "emAbort "
1745
+ + "emReInit "
1746
+ + "emMarkAsReaded "
1747
+ + "emMarkAsUnreaded "
1748
+ + "emPerform "
1749
+ + "emAccept "
1750
+ + "emResume "
1751
+ + "emChangeRights "
1752
+ + "emEditRoute "
1753
+ + "emEditObserver "
1754
+ + "emRecoveryFromLocalCopy "
1755
+ + "emChangeWorkAccessType "
1756
+ + "emChangeEncodeTypeToCertificate "
1757
+ + "emChangeEncodeTypeToPassword "
1758
+ + "emChangeEncodeTypeToNone "
1759
+ + "emChangeEncodeTypeToCertificatePassword "
1760
+ + "emChangeStandardRoute "
1761
+ + "emGetText "
1762
+ + "emOpenForView "
1763
+ + "emMoveToStorage "
1764
+ + "emCreateObject "
1765
+ + "emChangeVersionHidden "
1766
+ + "emDeleteVersion "
1767
+ + "emChangeLifeCycleStage "
1768
+ + "emApprovingSign "
1769
+ + "emExport "
1770
+ + "emContinue "
1771
+ + "emLockFromEdit "
1772
+ + "emUnLockForEdit "
1773
+ + "emLockForServer "
1774
+ + "emUnlockFromServer "
1775
+ + "emDelegateAccessRights "
1776
+ + "emReEncode ";
1777
+
1778
+ // enum TEditorCloseObservType
1779
+ const TEditorCloseObservType = "ecotFile ecotProcess ";
1780
+
1781
+ // enum TEdmsApplicationAction
1782
+ const TEdmsApplicationAction = "eaGet eaCopy eaCreate eaCreateStandardRoute ";
1783
+
1784
+ // enum TEDocumentLockType
1785
+ const TEDocumentLockType = "edltAll edltNothing edltQuery ";
1786
+
1787
+ // enum TEDocumentStepShowMode
1788
+ const TEDocumentStepShowMode = "essmText essmCard ";
1789
+
1790
+ // enum TEDocumentStepVersionType
1791
+ const TEDocumentStepVersionType = "esvtLast esvtLastActive esvtSpecified ";
1792
+
1793
+ // enum TEDocumentStorageFunction
1794
+ const TEDocumentStorageFunction = "edsfExecutive edsfArchive ";
1795
+
1796
+ // enum TEDocumentStorageType
1797
+ const TEDocumentStorageType = "edstSQLServer edstFile ";
1798
+
1799
+ // enum TEDocumentVersionSourceType
1800
+ const TEDocumentVersionSourceType =
1801
+ "edvstNone edvstEDocumentVersionCopy edvstFile edvstTemplate edvstScannedFile ";
1802
+
1803
+ // enum TEDocumentVersionState
1804
+ const TEDocumentVersionState = "vsDefault vsDesign vsActive vsObsolete ";
1805
+
1806
+ // enum TEncodeType
1807
+ const TEncodeType = "etNone etCertificate etPassword etCertificatePassword ";
1808
+
1809
+ // enum TExceptionCategory
1810
+ const TExceptionCategory = "ecException ecWarning ecInformation ";
1811
+
1812
+ // enum TExportedSignaturesType
1813
+ const TExportedSignaturesType = "estAll estApprovingOnly ";
1814
+
1815
+ // enum TExportedVersionType
1816
+ const TExportedVersionType = "evtLast evtLastActive evtQuery ";
1817
+
1818
+ // enum TFieldDataType
1819
+ const TFieldDataType =
1820
+ "fdtString "
1821
+ + "fdtNumeric "
1822
+ + "fdtInteger "
1823
+ + "fdtDate "
1824
+ + "fdtText "
1825
+ + "fdtUnknown "
1826
+ + "fdtWideString "
1827
+ + "fdtLargeInteger ";
1828
+
1829
+ // enum TFolderType
1830
+ const TFolderType =
1831
+ "ftInbox "
1832
+ + "ftOutbox "
1833
+ + "ftFavorites "
1834
+ + "ftCommonFolder "
1835
+ + "ftUserFolder "
1836
+ + "ftComponents "
1837
+ + "ftQuickLaunch "
1838
+ + "ftShortcuts "
1839
+ + "ftSearch ";
1840
+
1841
+ // enum TGridRowHeight
1842
+ const TGridRowHeight = "grhAuto " + "grhX1 " + "grhX2 " + "grhX3 ";
1843
+
1844
+ // enum THyperlinkType
1845
+ const THyperlinkType = "hltText " + "hltRTF " + "hltHTML ";
1846
+
1847
+ // enum TImageFileFormat
1848
+ const TImageFileFormat =
1849
+ "iffBMP "
1850
+ + "iffJPEG "
1851
+ + "iffMultiPageTIFF "
1852
+ + "iffSinglePageTIFF "
1853
+ + "iffTIFF "
1854
+ + "iffPNG ";
1855
+
1856
+ // enum TImageMode
1857
+ const TImageMode = "im8bGrayscale " + "im24bRGB " + "im1bMonochrome ";
1858
+
1859
+ // enum TImageType
1860
+ const TImageType = "itBMP " + "itJPEG " + "itWMF " + "itPNG ";
1861
+
1862
+ // enum TInplaceHintKind
1863
+ const TInplaceHintKind =
1864
+ "ikhInformation " + "ikhWarning " + "ikhError " + "ikhNoIcon ";
1865
+
1866
+ // enum TISBLContext
1867
+ const TISBLContext =
1868
+ "icUnknown "
1869
+ + "icScript "
1870
+ + "icFunction "
1871
+ + "icIntegratedReport "
1872
+ + "icAnalyticReport "
1873
+ + "icDataSetEventHandler "
1874
+ + "icActionHandler "
1875
+ + "icFormEventHandler "
1876
+ + "icLookUpEventHandler "
1877
+ + "icRequisiteChangeEventHandler "
1878
+ + "icBeforeSearchEventHandler "
1879
+ + "icRoleCalculation "
1880
+ + "icSelectRouteEventHandler "
1881
+ + "icBlockPropertyCalculation "
1882
+ + "icBlockQueryParamsEventHandler "
1883
+ + "icChangeSearchResultEventHandler "
1884
+ + "icBlockEventHandler "
1885
+ + "icSubTaskInitEventHandler "
1886
+ + "icEDocDataSetEventHandler "
1887
+ + "icEDocLookUpEventHandler "
1888
+ + "icEDocActionHandler "
1889
+ + "icEDocFormEventHandler "
1890
+ + "icEDocRequisiteChangeEventHandler "
1891
+ + "icStructuredConversionRule "
1892
+ + "icStructuredConversionEventBefore "
1893
+ + "icStructuredConversionEventAfter "
1894
+ + "icWizardEventHandler "
1895
+ + "icWizardFinishEventHandler "
1896
+ + "icWizardStepEventHandler "
1897
+ + "icWizardStepFinishEventHandler "
1898
+ + "icWizardActionEnableEventHandler "
1899
+ + "icWizardActionExecuteEventHandler "
1900
+ + "icCreateJobsHandler "
1901
+ + "icCreateNoticesHandler "
1902
+ + "icBeforeLookUpEventHandler "
1903
+ + "icAfterLookUpEventHandler "
1904
+ + "icTaskAbortEventHandler "
1905
+ + "icWorkflowBlockActionHandler "
1906
+ + "icDialogDataSetEventHandler "
1907
+ + "icDialogActionHandler "
1908
+ + "icDialogLookUpEventHandler "
1909
+ + "icDialogRequisiteChangeEventHandler "
1910
+ + "icDialogFormEventHandler "
1911
+ + "icDialogValidCloseEventHandler "
1912
+ + "icBlockFormEventHandler "
1913
+ + "icTaskFormEventHandler "
1914
+ + "icReferenceMethod "
1915
+ + "icEDocMethod "
1916
+ + "icDialogMethod "
1917
+ + "icProcessMessageHandler ";
1918
+
1919
+ // enum TItemShow
1920
+ const TItemShow = "isShow " + "isHide " + "isByUserSettings ";
1921
+
1922
+ // enum TJobKind
1923
+ const TJobKind = "jkJob " + "jkNotice " + "jkControlJob ";
1924
+
1925
+ // enum TJoinType
1926
+ const TJoinType = "jtInner " + "jtLeft " + "jtRight " + "jtFull " + "jtCross ";
1927
+
1928
+ // enum TLabelPos
1929
+ const TLabelPos = "lbpAbove " + "lbpBelow " + "lbpLeft " + "lbpRight ";
1930
+
1931
+ // enum TLicensingType
1932
+ const TLicensingType = "eltPerConnection " + "eltPerUser ";
1933
+
1934
+ // enum TLifeCycleStageFontColor
1935
+ const TLifeCycleStageFontColor =
1936
+ "sfcUndefined "
1937
+ + "sfcBlack "
1938
+ + "sfcGreen "
1939
+ + "sfcRed "
1940
+ + "sfcBlue "
1941
+ + "sfcOrange "
1942
+ + "sfcLilac ";
1943
+
1944
+ // enum TLifeCycleStageFontStyle
1945
+ const TLifeCycleStageFontStyle = "sfsItalic " + "sfsStrikeout " + "sfsNormal ";
1946
+
1947
+ // enum TLockableDevelopmentComponentType
1948
+ const TLockableDevelopmentComponentType =
1949
+ "ldctStandardRoute "
1950
+ + "ldctWizard "
1951
+ + "ldctScript "
1952
+ + "ldctFunction "
1953
+ + "ldctRouteBlock "
1954
+ + "ldctIntegratedReport "
1955
+ + "ldctAnalyticReport "
1956
+ + "ldctReferenceType "
1957
+ + "ldctEDocumentType "
1958
+ + "ldctDialog "
1959
+ + "ldctServerEvents ";
1960
+
1961
+ // enum TMaxRecordCountRestrictionType
1962
+ const TMaxRecordCountRestrictionType =
1963
+ "mrcrtNone " + "mrcrtUser " + "mrcrtMaximal " + "mrcrtCustom ";
1964
+
1965
+ // enum TRangeValueType
1966
+ const TRangeValueType =
1967
+ "vtEqual " + "vtGreaterOrEqual " + "vtLessOrEqual " + "vtRange ";
1968
+
1969
+ // enum TRelativeDate
1970
+ const TRelativeDate =
1971
+ "rdYesterday "
1972
+ + "rdToday "
1973
+ + "rdTomorrow "
1974
+ + "rdThisWeek "
1975
+ + "rdThisMonth "
1976
+ + "rdThisYear "
1977
+ + "rdNextMonth "
1978
+ + "rdNextWeek "
1979
+ + "rdLastWeek "
1980
+ + "rdLastMonth ";
1981
+
1982
+ // enum TReportDestination
1983
+ const TReportDestination = "rdWindow " + "rdFile " + "rdPrinter ";
1984
+
1985
+ // enum TReqDataType
1986
+ const TReqDataType =
1987
+ "rdtString "
1988
+ + "rdtNumeric "
1989
+ + "rdtInteger "
1990
+ + "rdtDate "
1991
+ + "rdtReference "
1992
+ + "rdtAccount "
1993
+ + "rdtText "
1994
+ + "rdtPick "
1995
+ + "rdtUnknown "
1996
+ + "rdtLargeInteger "
1997
+ + "rdtDocument ";
1998
+
1999
+ // enum TRequisiteEventType
2000
+ const TRequisiteEventType = "reOnChange " + "reOnChangeValues ";
2001
+
2002
+ // enum TSBTimeType
2003
+ const TSBTimeType = "ttGlobal " + "ttLocal " + "ttUser " + "ttSystem ";
2004
+
2005
+ // enum TSearchShowMode
2006
+ const TSearchShowMode =
2007
+ "ssmBrowse " + "ssmSelect " + "ssmMultiSelect " + "ssmBrowseModal ";
2008
+
2009
+ // enum TSelectMode
2010
+ const TSelectMode = "smSelect " + "smLike " + "smCard ";
2011
+
2012
+ // enum TSignatureType
2013
+ const TSignatureType = "stNone " + "stAuthenticating " + "stApproving ";
2014
+
2015
+ // enum TSignerContentType
2016
+ const TSignerContentType = "sctString " + "sctStream ";
2017
+
2018
+ // enum TStringsSortType
2019
+ const TStringsSortType = "sstAnsiSort " + "sstNaturalSort ";
2020
+
2021
+ // enum TStringValueType
2022
+ const TStringValueType = "svtEqual " + "svtContain ";
2023
+
2024
+ // enum TStructuredObjectAttributeType
2025
+ const TStructuredObjectAttributeType =
2026
+ "soatString "
2027
+ + "soatNumeric "
2028
+ + "soatInteger "
2029
+ + "soatDatetime "
2030
+ + "soatReferenceRecord "
2031
+ + "soatText "
2032
+ + "soatPick "
2033
+ + "soatBoolean "
2034
+ + "soatEDocument "
2035
+ + "soatAccount "
2036
+ + "soatIntegerCollection "
2037
+ + "soatNumericCollection "
2038
+ + "soatStringCollection "
2039
+ + "soatPickCollection "
2040
+ + "soatDatetimeCollection "
2041
+ + "soatBooleanCollection "
2042
+ + "soatReferenceRecordCollection "
2043
+ + "soatEDocumentCollection "
2044
+ + "soatAccountCollection "
2045
+ + "soatContents "
2046
+ + "soatUnknown ";
2047
+
2048
+ // enum TTaskAbortReason
2049
+ const TTaskAbortReason = "tarAbortByUser " + "tarAbortByWorkflowException ";
2050
+
2051
+ // enum TTextValueType
2052
+ const TTextValueType = "tvtAllWords " + "tvtExactPhrase " + "tvtAnyWord ";
2053
+
2054
+ // enum TUserObjectStatus
2055
+ const TUserObjectStatus =
2056
+ "usNone "
2057
+ + "usCompleted "
2058
+ + "usRedSquare "
2059
+ + "usBlueSquare "
2060
+ + "usYellowSquare "
2061
+ + "usGreenSquare "
2062
+ + "usOrangeSquare "
2063
+ + "usPurpleSquare "
2064
+ + "usFollowUp ";
2065
+
2066
+ // enum TUserType
2067
+ const TUserType =
2068
+ "utUnknown "
2069
+ + "utUser "
2070
+ + "utDeveloper "
2071
+ + "utAdministrator "
2072
+ + "utSystemDeveloper "
2073
+ + "utDisconnected ";
2074
+
2075
+ // enum TValuesBuildType
2076
+ const TValuesBuildType =
2077
+ "btAnd " + "btDetailAnd " + "btOr " + "btNotOr " + "btOnly ";
2078
+
2079
+ // enum TViewMode
2080
+ const TViewMode = "vmView " + "vmSelect " + "vmNavigation ";
2081
+
2082
+ // enum TViewSelectionMode
2083
+ const TViewSelectionMode =
2084
+ "vsmSingle " + "vsmMultiple " + "vsmMultipleCheck " + "vsmNoSelection ";
2085
+
2086
+ // enum TWizardActionType
2087
+ const TWizardActionType =
2088
+ "wfatPrevious " + "wfatNext " + "wfatCancel " + "wfatFinish ";
2089
+
2090
+ // enum TWizardFormElementProperty
2091
+ const TWizardFormElementProperty =
2092
+ "wfepUndefined "
2093
+ + "wfepText3 "
2094
+ + "wfepText6 "
2095
+ + "wfepText9 "
2096
+ + "wfepSpinEdit "
2097
+ + "wfepDropDown "
2098
+ + "wfepRadioGroup "
2099
+ + "wfepFlag "
2100
+ + "wfepText12 "
2101
+ + "wfepText15 "
2102
+ + "wfepText18 "
2103
+ + "wfepText21 "
2104
+ + "wfepText24 "
2105
+ + "wfepText27 "
2106
+ + "wfepText30 "
2107
+ + "wfepRadioGroupColumn1 "
2108
+ + "wfepRadioGroupColumn2 "
2109
+ + "wfepRadioGroupColumn3 ";
2110
+
2111
+ // enum TWizardFormElementType
2112
+ const TWizardFormElementType =
2113
+ "wfetQueryParameter " + "wfetText " + "wfetDelimiter " + "wfetLabel ";
2114
+
2115
+ // enum TWizardParamType
2116
+ const TWizardParamType =
2117
+ "wptString "
2118
+ + "wptInteger "
2119
+ + "wptNumeric "
2120
+ + "wptBoolean "
2121
+ + "wptDateTime "
2122
+ + "wptPick "
2123
+ + "wptText "
2124
+ + "wptUser "
2125
+ + "wptUserList "
2126
+ + "wptEDocumentInfo "
2127
+ + "wptEDocumentInfoList "
2128
+ + "wptReferenceRecordInfo "
2129
+ + "wptReferenceRecordInfoList "
2130
+ + "wptFolderInfo "
2131
+ + "wptTaskInfo "
2132
+ + "wptContents "
2133
+ + "wptFileName "
2134
+ + "wptDate ";
2135
+
2136
+ // enum TWizardStepResult
2137
+ const TWizardStepResult =
2138
+ "wsrComplete "
2139
+ + "wsrGoNext "
2140
+ + "wsrGoPrevious "
2141
+ + "wsrCustom "
2142
+ + "wsrCancel "
2143
+ + "wsrGoFinal ";
2144
+
2145
+ // enum TWizardStepType
2146
+ const TWizardStepType =
2147
+ "wstForm "
2148
+ + "wstEDocument "
2149
+ + "wstTaskCard "
2150
+ + "wstReferenceRecordCard "
2151
+ + "wstFinal ";
2152
+
2153
+ // enum TWorkAccessType
2154
+ const TWorkAccessType = "waAll " + "waPerformers " + "waManual ";
2155
+
2156
+ // enum TWorkflowBlockType
2157
+ const TWorkflowBlockType =
2158
+ "wsbStart "
2159
+ + "wsbFinish "
2160
+ + "wsbNotice "
2161
+ + "wsbStep "
2162
+ + "wsbDecision "
2163
+ + "wsbWait "
2164
+ + "wsbMonitor "
2165
+ + "wsbScript "
2166
+ + "wsbConnector "
2167
+ + "wsbSubTask "
2168
+ + "wsbLifeCycleStage "
2169
+ + "wsbPause ";
2170
+
2171
+ // enum TWorkflowDataType
2172
+ const TWorkflowDataType =
2173
+ "wdtInteger "
2174
+ + "wdtFloat "
2175
+ + "wdtString "
2176
+ + "wdtPick "
2177
+ + "wdtDateTime "
2178
+ + "wdtBoolean "
2179
+ + "wdtTask "
2180
+ + "wdtJob "
2181
+ + "wdtFolder "
2182
+ + "wdtEDocument "
2183
+ + "wdtReferenceRecord "
2184
+ + "wdtUser "
2185
+ + "wdtGroup "
2186
+ + "wdtRole "
2187
+ + "wdtIntegerCollection "
2188
+ + "wdtFloatCollection "
2189
+ + "wdtStringCollection "
2190
+ + "wdtPickCollection "
2191
+ + "wdtDateTimeCollection "
2192
+ + "wdtBooleanCollection "
2193
+ + "wdtTaskCollection "
2194
+ + "wdtJobCollection "
2195
+ + "wdtFolderCollection "
2196
+ + "wdtEDocumentCollection "
2197
+ + "wdtReferenceRecordCollection "
2198
+ + "wdtUserCollection "
2199
+ + "wdtGroupCollection "
2200
+ + "wdtRoleCollection "
2201
+ + "wdtContents "
2202
+ + "wdtUserList "
2203
+ + "wdtSearchDescription "
2204
+ + "wdtDeadLine "
2205
+ + "wdtPickSet "
2206
+ + "wdtAccountCollection ";
2207
+
2208
+ // enum TWorkImportance
2209
+ const TWorkImportance = "wiLow " + "wiNormal " + "wiHigh ";
2210
+
2211
+ // enum TWorkRouteType
2212
+ const TWorkRouteType = "wrtSoft " + "wrtHard ";
2213
+
2214
+ // enum TWorkState
2215
+ const TWorkState =
2216
+ "wsInit "
2217
+ + "wsRunning "
2218
+ + "wsDone "
2219
+ + "wsControlled "
2220
+ + "wsAborted "
2221
+ + "wsContinued ";
2222
+
2223
+ // enum TWorkTextBuildingMode
2224
+ const TWorkTextBuildingMode =
2225
+ "wtmFull " + "wtmFromCurrent " + "wtmOnlyCurrent ";
2226
+
2227
+ // Перечисления
2228
+ const ENUMS =
2229
+ TAccountType
2230
+ + TActionEnabledMode
2231
+ + TAddPosition
2232
+ + TAlignment
2233
+ + TAreaShowMode
2234
+ + TCertificateInvalidationReason
2235
+ + TCertificateType
2236
+ + TCheckListBoxItemState
2237
+ + TCloseOnEsc
2238
+ + TCompType
2239
+ + TConditionFormat
2240
+ + TConnectionIntent
2241
+ + TContentKind
2242
+ + TControlType
2243
+ + TCriterionContentType
2244
+ + TCultureType
2245
+ + TDataSetEventType
2246
+ + TDataSetState
2247
+ + TDateFormatType
2248
+ + TDateOffsetType
2249
+ + TDateTimeKind
2250
+ + TDeaAccessRights
2251
+ + TDocumentDefaultAction
2252
+ + TEditMode
2253
+ + TEditorCloseObservType
2254
+ + TEdmsApplicationAction
2255
+ + TEDocumentLockType
2256
+ + TEDocumentStepShowMode
2257
+ + TEDocumentStepVersionType
2258
+ + TEDocumentStorageFunction
2259
+ + TEDocumentStorageType
2260
+ + TEDocumentVersionSourceType
2261
+ + TEDocumentVersionState
2262
+ + TEncodeType
2263
+ + TExceptionCategory
2264
+ + TExportedSignaturesType
2265
+ + TExportedVersionType
2266
+ + TFieldDataType
2267
+ + TFolderType
2268
+ + TGridRowHeight
2269
+ + THyperlinkType
2270
+ + TImageFileFormat
2271
+ + TImageMode
2272
+ + TImageType
2273
+ + TInplaceHintKind
2274
+ + TISBLContext
2275
+ + TItemShow
2276
+ + TJobKind
2277
+ + TJoinType
2278
+ + TLabelPos
2279
+ + TLicensingType
2280
+ + TLifeCycleStageFontColor
2281
+ + TLifeCycleStageFontStyle
2282
+ + TLockableDevelopmentComponentType
2283
+ + TMaxRecordCountRestrictionType
2284
+ + TRangeValueType
2285
+ + TRelativeDate
2286
+ + TReportDestination
2287
+ + TReqDataType
2288
+ + TRequisiteEventType
2289
+ + TSBTimeType
2290
+ + TSearchShowMode
2291
+ + TSelectMode
2292
+ + TSignatureType
2293
+ + TSignerContentType
2294
+ + TStringsSortType
2295
+ + TStringValueType
2296
+ + TStructuredObjectAttributeType
2297
+ + TTaskAbortReason
2298
+ + TTextValueType
2299
+ + TUserObjectStatus
2300
+ + TUserType
2301
+ + TValuesBuildType
2302
+ + TViewMode
2303
+ + TViewSelectionMode
2304
+ + TWizardActionType
2305
+ + TWizardFormElementProperty
2306
+ + TWizardFormElementType
2307
+ + TWizardParamType
2308
+ + TWizardStepResult
2309
+ + TWizardStepType
2310
+ + TWorkAccessType
2311
+ + TWorkflowBlockType
2312
+ + TWorkflowDataType
2313
+ + TWorkImportance
2314
+ + TWorkRouteType
2315
+ + TWorkState
2316
+ + TWorkTextBuildingMode;
2317
+
2318
+ // Системные функции ==> SYSFUNCTIONS
2319
+ const system_functions =
2320
+ "AddSubString "
2321
+ + "AdjustLineBreaks "
2322
+ + "AmountInWords "
2323
+ + "Analysis "
2324
+ + "ArrayDimCount "
2325
+ + "ArrayHighBound "
2326
+ + "ArrayLowBound "
2327
+ + "ArrayOf "
2328
+ + "ArrayReDim "
2329
+ + "Assert "
2330
+ + "Assigned "
2331
+ + "BeginOfMonth "
2332
+ + "BeginOfPeriod "
2333
+ + "BuildProfilingOperationAnalysis "
2334
+ + "CallProcedure "
2335
+ + "CanReadFile "
2336
+ + "CArrayElement "
2337
+ + "CDataSetRequisite "
2338
+ + "ChangeDate "
2339
+ + "ChangeReferenceDataset "
2340
+ + "Char "
2341
+ + "CharPos "
2342
+ + "CheckParam "
2343
+ + "CheckParamValue "
2344
+ + "CompareStrings "
2345
+ + "ConstantExists "
2346
+ + "ControlState "
2347
+ + "ConvertDateStr "
2348
+ + "Copy "
2349
+ + "CopyFile "
2350
+ + "CreateArray "
2351
+ + "CreateCachedReference "
2352
+ + "CreateConnection "
2353
+ + "CreateDialog "
2354
+ + "CreateDualListDialog "
2355
+ + "CreateEditor "
2356
+ + "CreateException "
2357
+ + "CreateFile "
2358
+ + "CreateFolderDialog "
2359
+ + "CreateInputDialog "
2360
+ + "CreateLinkFile "
2361
+ + "CreateList "
2362
+ + "CreateLock "
2363
+ + "CreateMemoryDataSet "
2364
+ + "CreateObject "
2365
+ + "CreateOpenDialog "
2366
+ + "CreateProgress "
2367
+ + "CreateQuery "
2368
+ + "CreateReference "
2369
+ + "CreateReport "
2370
+ + "CreateSaveDialog "
2371
+ + "CreateScript "
2372
+ + "CreateSQLPivotFunction "
2373
+ + "CreateStringList "
2374
+ + "CreateTreeListSelectDialog "
2375
+ + "CSelectSQL "
2376
+ + "CSQL "
2377
+ + "CSubString "
2378
+ + "CurrentUserID "
2379
+ + "CurrentUserName "
2380
+ + "CurrentVersion "
2381
+ + "DataSetLocateEx "
2382
+ + "DateDiff "
2383
+ + "DateTimeDiff "
2384
+ + "DateToStr "
2385
+ + "DayOfWeek "
2386
+ + "DeleteFile "
2387
+ + "DirectoryExists "
2388
+ + "DisableCheckAccessRights "
2389
+ + "DisableCheckFullShowingRestriction "
2390
+ + "DisableMassTaskSendingRestrictions "
2391
+ + "DropTable "
2392
+ + "DupeString "
2393
+ + "EditText "
2394
+ + "EnableCheckAccessRights "
2395
+ + "EnableCheckFullShowingRestriction "
2396
+ + "EnableMassTaskSendingRestrictions "
2397
+ + "EndOfMonth "
2398
+ + "EndOfPeriod "
2399
+ + "ExceptionExists "
2400
+ + "ExceptionsOff "
2401
+ + "ExceptionsOn "
2402
+ + "Execute "
2403
+ + "ExecuteProcess "
2404
+ + "Exit "
2405
+ + "ExpandEnvironmentVariables "
2406
+ + "ExtractFileDrive "
2407
+ + "ExtractFileExt "
2408
+ + "ExtractFileName "
2409
+ + "ExtractFilePath "
2410
+ + "ExtractParams "
2411
+ + "FileExists "
2412
+ + "FileSize "
2413
+ + "FindFile "
2414
+ + "FindSubString "
2415
+ + "FirmContext "
2416
+ + "ForceDirectories "
2417
+ + "Format "
2418
+ + "FormatDate "
2419
+ + "FormatNumeric "
2420
+ + "FormatSQLDate "
2421
+ + "FormatString "
2422
+ + "FreeException "
2423
+ + "GetComponent "
2424
+ + "GetComponentLaunchParam "
2425
+ + "GetConstant "
2426
+ + "GetLastException "
2427
+ + "GetReferenceRecord "
2428
+ + "GetRefTypeByRefID "
2429
+ + "GetTableID "
2430
+ + "GetTempFolder "
2431
+ + "IfThen "
2432
+ + "In "
2433
+ + "IndexOf "
2434
+ + "InputDialog "
2435
+ + "InputDialogEx "
2436
+ + "InteractiveMode "
2437
+ + "IsFileLocked "
2438
+ + "IsGraphicFile "
2439
+ + "IsNumeric "
2440
+ + "Length "
2441
+ + "LoadString "
2442
+ + "LoadStringFmt "
2443
+ + "LocalTimeToUTC "
2444
+ + "LowerCase "
2445
+ + "Max "
2446
+ + "MessageBox "
2447
+ + "MessageBoxEx "
2448
+ + "MimeDecodeBinary "
2449
+ + "MimeDecodeString "
2450
+ + "MimeEncodeBinary "
2451
+ + "MimeEncodeString "
2452
+ + "Min "
2453
+ + "MoneyInWords "
2454
+ + "MoveFile "
2455
+ + "NewID "
2456
+ + "Now "
2457
+ + "OpenFile "
2458
+ + "Ord "
2459
+ + "Precision "
2460
+ + "Raise "
2461
+ + "ReadCertificateFromFile "
2462
+ + "ReadFile "
2463
+ + "ReferenceCodeByID "
2464
+ + "ReferenceNumber "
2465
+ + "ReferenceRequisiteMode "
2466
+ + "ReferenceRequisiteValue "
2467
+ + "RegionDateSettings "
2468
+ + "RegionNumberSettings "
2469
+ + "RegionTimeSettings "
2470
+ + "RegRead "
2471
+ + "RegWrite "
2472
+ + "RenameFile "
2473
+ + "Replace "
2474
+ + "Round "
2475
+ + "SelectServerCode "
2476
+ + "SelectSQL "
2477
+ + "ServerDateTime "
2478
+ + "SetConstant "
2479
+ + "SetManagedFolderFieldsState "
2480
+ + "ShowConstantsInputDialog "
2481
+ + "ShowMessage "
2482
+ + "Sleep "
2483
+ + "Split "
2484
+ + "SQL "
2485
+ + "SQL2XLSTAB "
2486
+ + "SQLProfilingSendReport "
2487
+ + "StrToDate "
2488
+ + "SubString "
2489
+ + "SubStringCount "
2490
+ + "SystemSetting "
2491
+ + "Time "
2492
+ + "TimeDiff "
2493
+ + "Today "
2494
+ + "Transliterate "
2495
+ + "Trim "
2496
+ + "UpperCase "
2497
+ + "UserStatus "
2498
+ + "UTCToLocalTime "
2499
+ + "ValidateXML "
2500
+ + "VarIsClear "
2501
+ + "VarIsEmpty "
2502
+ + "VarIsNull "
2503
+ + "WorkTimeDiff "
2504
+ + "WriteFile "
2505
+ + "WriteFileEx "
2506
+ + "WriteObjectHistory "
2507
+ + "Анализ "
2508
+ + "БазаДанных "
2509
+ + "БлокЕсть "
2510
+ + "БлокЕстьРасш "
2511
+ + "БлокИнфо "
2512
+ + "БлокСнять "
2513
+ + "БлокСнятьРасш "
2514
+ + "БлокУстановить "
2515
+ + "Ввод "
2516
+ + "ВводМеню "
2517
+ + "ВедС "
2518
+ + "ВедСпр "
2519
+ + "ВерхняяГраницаМассива "
2520
+ + "ВнешПрогр "
2521
+ + "Восст "
2522
+ + "ВременнаяПапка "
2523
+ + "Время "
2524
+ + "ВыборSQL "
2525
+ + "ВыбратьЗапись "
2526
+ + "ВыделитьСтр "
2527
+ + "Вызвать "
2528
+ + "Выполнить "
2529
+ + "ВыпПрогр "
2530
+ + "ГрафическийФайл "
2531
+ + "ГруппаДополнительно "
2532
+ + "ДатаВремяСерв "
2533
+ + "ДеньНедели "
2534
+ + "ДиалогДаНет "
2535
+ + "ДлинаСтр "
2536
+ + "ДобПодстр "
2537
+ + "ЕПусто "
2538
+ + "ЕслиТо "
2539
+ + "ЕЧисло "
2540
+ + "ЗамПодстр "
2541
+ + "ЗаписьСправочника "
2542
+ + "ЗначПоляСпр "
2543
+ + "ИДТипСпр "
2544
+ + "ИзвлечьДиск "
2545
+ + "ИзвлечьИмяФайла "
2546
+ + "ИзвлечьПуть "
2547
+ + "ИзвлечьРасширение "
2548
+ + "ИзмДат "
2549
+ + "ИзменитьРазмерМассива "
2550
+ + "ИзмеренийМассива "
2551
+ + "ИмяОрг "
2552
+ + "ИмяПоляСпр "
2553
+ + "Индекс "
2554
+ + "ИндикаторЗакрыть "
2555
+ + "ИндикаторОткрыть "
2556
+ + "ИндикаторШаг "
2557
+ + "ИнтерактивныйРежим "
2558
+ + "ИтогТблСпр "
2559
+ + "КодВидВедСпр "
2560
+ + "КодВидСпрПоИД "
2561
+ + "КодПоAnalit "
2562
+ + "КодСимвола "
2563
+ + "КодСпр "
2564
+ + "КолПодстр "
2565
+ + "КолПроп "
2566
+ + "КонМес "
2567
+ + "Конст "
2568
+ + "КонстЕсть "
2569
+ + "КонстЗнач "
2570
+ + "КонТран "
2571
+ + "КопироватьФайл "
2572
+ + "КопияСтр "
2573
+ + "КПериод "
2574
+ + "КСтрТблСпр "
2575
+ + "Макс "
2576
+ + "МаксСтрТблСпр "
2577
+ + "Массив "
2578
+ + "Меню "
2579
+ + "МенюРасш "
2580
+ + "Мин "
2581
+ + "НаборДанныхНайтиРасш "
2582
+ + "НаимВидСпр "
2583
+ + "НаимПоAnalit "
2584
+ + "НаимСпр "
2585
+ + "НастроитьПереводыСтрок "
2586
+ + "НачМес "
2587
+ + "НачТран "
2588
+ + "НижняяГраницаМассива "
2589
+ + "НомерСпр "
2590
+ + "НПериод "
2591
+ + "Окно "
2592
+ + "Окр "
2593
+ + "Окружение "
2594
+ + "ОтлИнфДобавить "
2595
+ + "ОтлИнфУдалить "
2596
+ + "Отчет "
2597
+ + "ОтчетАнал "
2598
+ + "ОтчетИнт "
2599
+ + "ПапкаСуществует "
2600
+ + "Пауза "
2601
+ + "ПВыборSQL "
2602
+ + "ПереименоватьФайл "
2603
+ + "Переменные "
2604
+ + "ПереместитьФайл "
2605
+ + "Подстр "
2606
+ + "ПоискПодстр "
2607
+ + "ПоискСтр "
2608
+ + "ПолучитьИДТаблицы "
2609
+ + "ПользовательДополнительно "
2610
+ + "ПользовательИД "
2611
+ + "ПользовательИмя "
2612
+ + "ПользовательСтатус "
2613
+ + "Прервать "
2614
+ + "ПроверитьПараметр "
2615
+ + "ПроверитьПараметрЗнач "
2616
+ + "ПроверитьУсловие "
2617
+ + "РазбСтр "
2618
+ + "РазнВремя "
2619
+ + "РазнДат "
2620
+ + "РазнДатаВремя "
2621
+ + "РазнРабВремя "
2622
+ + "РегУстВрем "
2623
+ + "РегУстДат "
2624
+ + "РегУстЧсл "
2625
+ + "РедТекст "
2626
+ + "РеестрЗапись "
2627
+ + "РеестрСписокИменПарам "
2628
+ + "РеестрЧтение "
2629
+ + "РеквСпр "
2630
+ + "РеквСпрПр "
2631
+ + "Сегодня "
2632
+ + "Сейчас "
2633
+ + "Сервер "
2634
+ + "СерверПроцессИД "
2635
+ + "СертификатФайлСчитать "
2636
+ + "СжПроб "
2637
+ + "Символ "
2638
+ + "СистемаДиректумКод "
2639
+ + "СистемаИнформация "
2640
+ + "СистемаКод "
2641
+ + "Содержит "
2642
+ + "СоединениеЗакрыть "
2643
+ + "СоединениеОткрыть "
2644
+ + "СоздатьДиалог "
2645
+ + "СоздатьДиалогВыбораИзДвухСписков "
2646
+ + "СоздатьДиалогВыбораПапки "
2647
+ + "СоздатьДиалогОткрытияФайла "
2648
+ + "СоздатьДиалогСохраненияФайла "
2649
+ + "СоздатьЗапрос "
2650
+ + "СоздатьИндикатор "
2651
+ + "СоздатьИсключение "
2652
+ + "СоздатьКэшированныйСправочник "
2653
+ + "СоздатьМассив "
2654
+ + "СоздатьНаборДанных "
2655
+ + "СоздатьОбъект "
2656
+ + "СоздатьОтчет "
2657
+ + "СоздатьПапку "
2658
+ + "СоздатьРедактор "
2659
+ + "СоздатьСоединение "
2660
+ + "СоздатьСписок "
2661
+ + "СоздатьСписокСтрок "
2662
+ + "СоздатьСправочник "
2663
+ + "СоздатьСценарий "
2664
+ + "СоздСпр "
2665
+ + "СостСпр "
2666
+ + "Сохр "
2667
+ + "СохрСпр "
2668
+ + "СписокСистем "
2669
+ + "Спр "
2670
+ + "Справочник "
2671
+ + "СпрБлокЕсть "
2672
+ + "СпрБлокСнять "
2673
+ + "СпрБлокСнятьРасш "
2674
+ + "СпрБлокУстановить "
2675
+ + "СпрИзмНабДан "
2676
+ + "СпрКод "
2677
+ + "СпрНомер "
2678
+ + "СпрОбновить "
2679
+ + "СпрОткрыть "
2680
+ + "СпрОтменить "
2681
+ + "СпрПарам "
2682
+ + "СпрПолеЗнач "
2683
+ + "СпрПолеИмя "
2684
+ + "СпрРекв "
2685
+ + "СпрРеквВведЗн "
2686
+ + "СпрРеквНовые "
2687
+ + "СпрРеквПр "
2688
+ + "СпрРеквПредЗн "
2689
+ + "СпрРеквРежим "
2690
+ + "СпрРеквТипТекст "
2691
+ + "СпрСоздать "
2692
+ + "СпрСост "
2693
+ + "СпрСохранить "
2694
+ + "СпрТблИтог "
2695
+ + "СпрТблСтр "
2696
+ + "СпрТблСтрКол "
2697
+ + "СпрТблСтрМакс "
2698
+ + "СпрТблСтрМин "
2699
+ + "СпрТблСтрПред "
2700
+ + "СпрТблСтрСлед "
2701
+ + "СпрТблСтрСозд "
2702
+ + "СпрТблСтрУд "
2703
+ + "СпрТекПредст "
2704
+ + "СпрУдалить "
2705
+ + "СравнитьСтр "
2706
+ + "СтрВерхРегистр "
2707
+ + "СтрНижнРегистр "
2708
+ + "СтрТблСпр "
2709
+ + "СумПроп "
2710
+ + "Сценарий "
2711
+ + "СценарийПарам "
2712
+ + "ТекВерсия "
2713
+ + "ТекОрг "
2714
+ + "Точн "
2715
+ + "Тран "
2716
+ + "Транслитерация "
2717
+ + "УдалитьТаблицу "
2718
+ + "УдалитьФайл "
2719
+ + "УдСпр "
2720
+ + "УдСтрТблСпр "
2721
+ + "Уст "
2722
+ + "УстановкиКонстант "
2723
+ + "ФайлАтрибутСчитать "
2724
+ + "ФайлАтрибутУстановить "
2725
+ + "ФайлВремя "
2726
+ + "ФайлВремяУстановить "
2727
+ + "ФайлВыбрать "
2728
+ + "ФайлЗанят "
2729
+ + "ФайлЗаписать "
2730
+ + "ФайлИскать "
2731
+ + "ФайлКопировать "
2732
+ + "ФайлМожноЧитать "
2733
+ + "ФайлОткрыть "
2734
+ + "ФайлПереименовать "
2735
+ + "ФайлПерекодировать "
2736
+ + "ФайлПереместить "
2737
+ + "ФайлПросмотреть "
2738
+ + "ФайлРазмер "
2739
+ + "ФайлСоздать "
2740
+ + "ФайлСсылкаСоздать "
2741
+ + "ФайлСуществует "
2742
+ + "ФайлСчитать "
2743
+ + "ФайлУдалить "
2744
+ + "ФмтSQLДат "
2745
+ + "ФмтДат "
2746
+ + "ФмтСтр "
2747
+ + "ФмтЧсл "
2748
+ + "Формат "
2749
+ + "ЦМассивЭлемент "
2750
+ + "ЦНаборДанныхРеквизит "
2751
+ + "ЦПодстр ";
2752
+
2753
+ // Предопределенные переменные ==> built_in
2754
+ const predefined_variables =
2755
+ "AltState "
2756
+ + "Application "
2757
+ + "CallType "
2758
+ + "ComponentTokens "
2759
+ + "CreatedJobs "
2760
+ + "CreatedNotices "
2761
+ + "ControlState "
2762
+ + "DialogResult "
2763
+ + "Dialogs "
2764
+ + "EDocuments "
2765
+ + "EDocumentVersionSource "
2766
+ + "Folders "
2767
+ + "GlobalIDs "
2768
+ + "Job "
2769
+ + "Jobs "
2770
+ + "InputValue "
2771
+ + "LookUpReference "
2772
+ + "LookUpRequisiteNames "
2773
+ + "LookUpSearch "
2774
+ + "Object "
2775
+ + "ParentComponent "
2776
+ + "Processes "
2777
+ + "References "
2778
+ + "Requisite "
2779
+ + "ReportName "
2780
+ + "Reports "
2781
+ + "Result "
2782
+ + "Scripts "
2783
+ + "Searches "
2784
+ + "SelectedAttachments "
2785
+ + "SelectedItems "
2786
+ + "SelectMode "
2787
+ + "Sender "
2788
+ + "ServerEvents "
2789
+ + "ServiceFactory "
2790
+ + "ShiftState "
2791
+ + "SubTask "
2792
+ + "SystemDialogs "
2793
+ + "Tasks "
2794
+ + "Wizard "
2795
+ + "Wizards "
2796
+ + "Work "
2797
+ + "ВызовСпособ "
2798
+ + "ИмяОтчета "
2799
+ + "РеквЗнач ";
2800
+
2801
+ // Интерфейсы ==> type
2802
+ const interfaces =
2803
+ "IApplication "
2804
+ + "IAccessRights "
2805
+ + "IAccountRepository "
2806
+ + "IAccountSelectionRestrictions "
2807
+ + "IAction "
2808
+ + "IActionList "
2809
+ + "IAdministrationHistoryDescription "
2810
+ + "IAnchors "
2811
+ + "IApplication "
2812
+ + "IArchiveInfo "
2813
+ + "IAttachment "
2814
+ + "IAttachmentList "
2815
+ + "ICheckListBox "
2816
+ + "ICheckPointedList "
2817
+ + "IColumn "
2818
+ + "IComponent "
2819
+ + "IComponentDescription "
2820
+ + "IComponentToken "
2821
+ + "IComponentTokenFactory "
2822
+ + "IComponentTokenInfo "
2823
+ + "ICompRecordInfo "
2824
+ + "IConnection "
2825
+ + "IContents "
2826
+ + "IControl "
2827
+ + "IControlJob "
2828
+ + "IControlJobInfo "
2829
+ + "IControlList "
2830
+ + "ICrypto "
2831
+ + "ICrypto2 "
2832
+ + "ICustomJob "
2833
+ + "ICustomJobInfo "
2834
+ + "ICustomListBox "
2835
+ + "ICustomObjectWizardStep "
2836
+ + "ICustomWork "
2837
+ + "ICustomWorkInfo "
2838
+ + "IDataSet "
2839
+ + "IDataSetAccessInfo "
2840
+ + "IDataSigner "
2841
+ + "IDateCriterion "
2842
+ + "IDateRequisite "
2843
+ + "IDateRequisiteDescription "
2844
+ + "IDateValue "
2845
+ + "IDeaAccessRights "
2846
+ + "IDeaObjectInfo "
2847
+ + "IDevelopmentComponentLock "
2848
+ + "IDialog "
2849
+ + "IDialogFactory "
2850
+ + "IDialogPickRequisiteItems "
2851
+ + "IDialogsFactory "
2852
+ + "IDICSFactory "
2853
+ + "IDocRequisite "
2854
+ + "IDocumentInfo "
2855
+ + "IDualListDialog "
2856
+ + "IECertificate "
2857
+ + "IECertificateInfo "
2858
+ + "IECertificates "
2859
+ + "IEditControl "
2860
+ + "IEditorForm "
2861
+ + "IEdmsExplorer "
2862
+ + "IEdmsObject "
2863
+ + "IEdmsObjectDescription "
2864
+ + "IEdmsObjectFactory "
2865
+ + "IEdmsObjectInfo "
2866
+ + "IEDocument "
2867
+ + "IEDocumentAccessRights "
2868
+ + "IEDocumentDescription "
2869
+ + "IEDocumentEditor "
2870
+ + "IEDocumentFactory "
2871
+ + "IEDocumentInfo "
2872
+ + "IEDocumentStorage "
2873
+ + "IEDocumentVersion "
2874
+ + "IEDocumentVersionListDialog "
2875
+ + "IEDocumentVersionSource "
2876
+ + "IEDocumentWizardStep "
2877
+ + "IEDocVerSignature "
2878
+ + "IEDocVersionState "
2879
+ + "IEnabledMode "
2880
+ + "IEncodeProvider "
2881
+ + "IEncrypter "
2882
+ + "IEvent "
2883
+ + "IEventList "
2884
+ + "IException "
2885
+ + "IExternalEvents "
2886
+ + "IExternalHandler "
2887
+ + "IFactory "
2888
+ + "IField "
2889
+ + "IFileDialog "
2890
+ + "IFolder "
2891
+ + "IFolderDescription "
2892
+ + "IFolderDialog "
2893
+ + "IFolderFactory "
2894
+ + "IFolderInfo "
2895
+ + "IForEach "
2896
+ + "IForm "
2897
+ + "IFormTitle "
2898
+ + "IFormWizardStep "
2899
+ + "IGlobalIDFactory "
2900
+ + "IGlobalIDInfo "
2901
+ + "IGrid "
2902
+ + "IHasher "
2903
+ + "IHistoryDescription "
2904
+ + "IHyperLinkControl "
2905
+ + "IImageButton "
2906
+ + "IImageControl "
2907
+ + "IInnerPanel "
2908
+ + "IInplaceHint "
2909
+ + "IIntegerCriterion "
2910
+ + "IIntegerList "
2911
+ + "IIntegerRequisite "
2912
+ + "IIntegerValue "
2913
+ + "IISBLEditorForm "
2914
+ + "IJob "
2915
+ + "IJobDescription "
2916
+ + "IJobFactory "
2917
+ + "IJobForm "
2918
+ + "IJobInfo "
2919
+ + "ILabelControl "
2920
+ + "ILargeIntegerCriterion "
2921
+ + "ILargeIntegerRequisite "
2922
+ + "ILargeIntegerValue "
2923
+ + "ILicenseInfo "
2924
+ + "ILifeCycleStage "
2925
+ + "IList "
2926
+ + "IListBox "
2927
+ + "ILocalIDInfo "
2928
+ + "ILocalization "
2929
+ + "ILock "
2930
+ + "IMemoryDataSet "
2931
+ + "IMessagingFactory "
2932
+ + "IMetadataRepository "
2933
+ + "INotice "
2934
+ + "INoticeInfo "
2935
+ + "INumericCriterion "
2936
+ + "INumericRequisite "
2937
+ + "INumericValue "
2938
+ + "IObject "
2939
+ + "IObjectDescription "
2940
+ + "IObjectImporter "
2941
+ + "IObjectInfo "
2942
+ + "IObserver "
2943
+ + "IPanelGroup "
2944
+ + "IPickCriterion "
2945
+ + "IPickProperty "
2946
+ + "IPickRequisite "
2947
+ + "IPickRequisiteDescription "
2948
+ + "IPickRequisiteItem "
2949
+ + "IPickRequisiteItems "
2950
+ + "IPickValue "
2951
+ + "IPrivilege "
2952
+ + "IPrivilegeList "
2953
+ + "IProcess "
2954
+ + "IProcessFactory "
2955
+ + "IProcessMessage "
2956
+ + "IProgress "
2957
+ + "IProperty "
2958
+ + "IPropertyChangeEvent "
2959
+ + "IQuery "
2960
+ + "IReference "
2961
+ + "IReferenceCriterion "
2962
+ + "IReferenceEnabledMode "
2963
+ + "IReferenceFactory "
2964
+ + "IReferenceHistoryDescription "
2965
+ + "IReferenceInfo "
2966
+ + "IReferenceRecordCardWizardStep "
2967
+ + "IReferenceRequisiteDescription "
2968
+ + "IReferencesFactory "
2969
+ + "IReferenceValue "
2970
+ + "IRefRequisite "
2971
+ + "IReport "
2972
+ + "IReportFactory "
2973
+ + "IRequisite "
2974
+ + "IRequisiteDescription "
2975
+ + "IRequisiteDescriptionList "
2976
+ + "IRequisiteFactory "
2977
+ + "IRichEdit "
2978
+ + "IRouteStep "
2979
+ + "IRule "
2980
+ + "IRuleList "
2981
+ + "ISchemeBlock "
2982
+ + "IScript "
2983
+ + "IScriptFactory "
2984
+ + "ISearchCriteria "
2985
+ + "ISearchCriterion "
2986
+ + "ISearchDescription "
2987
+ + "ISearchFactory "
2988
+ + "ISearchFolderInfo "
2989
+ + "ISearchForObjectDescription "
2990
+ + "ISearchResultRestrictions "
2991
+ + "ISecuredContext "
2992
+ + "ISelectDialog "
2993
+ + "IServerEvent "
2994
+ + "IServerEventFactory "
2995
+ + "IServiceDialog "
2996
+ + "IServiceFactory "
2997
+ + "ISignature "
2998
+ + "ISignProvider "
2999
+ + "ISignProvider2 "
3000
+ + "ISignProvider3 "
3001
+ + "ISimpleCriterion "
3002
+ + "IStringCriterion "
3003
+ + "IStringList "
3004
+ + "IStringRequisite "
3005
+ + "IStringRequisiteDescription "
3006
+ + "IStringValue "
3007
+ + "ISystemDialogsFactory "
3008
+ + "ISystemInfo "
3009
+ + "ITabSheet "
3010
+ + "ITask "
3011
+ + "ITaskAbortReasonInfo "
3012
+ + "ITaskCardWizardStep "
3013
+ + "ITaskDescription "
3014
+ + "ITaskFactory "
3015
+ + "ITaskInfo "
3016
+ + "ITaskRoute "
3017
+ + "ITextCriterion "
3018
+ + "ITextRequisite "
3019
+ + "ITextValue "
3020
+ + "ITreeListSelectDialog "
3021
+ + "IUser "
3022
+ + "IUserList "
3023
+ + "IValue "
3024
+ + "IView "
3025
+ + "IWebBrowserControl "
3026
+ + "IWizard "
3027
+ + "IWizardAction "
3028
+ + "IWizardFactory "
3029
+ + "IWizardFormElement "
3030
+ + "IWizardParam "
3031
+ + "IWizardPickParam "
3032
+ + "IWizardReferenceParam "
3033
+ + "IWizardStep "
3034
+ + "IWorkAccessRights "
3035
+ + "IWorkDescription "
3036
+ + "IWorkflowAskableParam "
3037
+ + "IWorkflowAskableParams "
3038
+ + "IWorkflowBlock "
3039
+ + "IWorkflowBlockResult "
3040
+ + "IWorkflowEnabledMode "
3041
+ + "IWorkflowParam "
3042
+ + "IWorkflowPickParam "
3043
+ + "IWorkflowReferenceParam "
3044
+ + "IWorkState "
3045
+ + "IWorkTreeCustomNode "
3046
+ + "IWorkTreeJobNode "
3047
+ + "IWorkTreeTaskNode "
3048
+ + "IXMLEditorForm "
3049
+ + "SBCrypto ";
3050
+
3051
+ // built_in : встроенные или библиотечные объекты (константы, перечисления)
3052
+ const BUILTIN = CONSTANTS + ENUMS;
3053
+
3054
+ // class: встроенные наборы значений, системные объекты, фабрики
3055
+ const CLASS = predefined_variables;
3056
+
3057
+ // literal : примитивные типы
3058
+ const LITERAL = "null true false nil ";
3059
+
3060
+ // number : числа
3061
+ const NUMBERS = {
3062
+ className: "number",
3063
+ begin: hljs.NUMBER_RE,
3064
+ relevance: 0
3065
+ };
3066
+
3067
+ // string : строки
3068
+ const STRINGS = {
3069
+ className: "string",
3070
+ variants: [
3071
+ {
3072
+ begin: '"',
3073
+ end: '"'
3074
+ },
3075
+ {
3076
+ begin: "'",
3077
+ end: "'"
3078
+ }
3079
+ ]
3080
+ };
3081
+
3082
+ // Токены
3083
+ const DOCTAGS = {
3084
+ className: "doctag",
3085
+ begin: "\\b(?:TODO|DONE|BEGIN|END|STUB|CHG|FIXME|NOTE|BUG|XXX)\\b",
3086
+ relevance: 0
3087
+ };
3088
+
3089
+ // Однострочный комментарий
3090
+ const ISBL_LINE_COMMENT_MODE = {
3091
+ className: "comment",
3092
+ begin: "//",
3093
+ end: "$",
3094
+ relevance: 0,
3095
+ contains: [
3096
+ hljs.PHRASAL_WORDS_MODE,
3097
+ DOCTAGS
3098
+ ]
3099
+ };
3100
+
3101
+ // Многострочный комментарий
3102
+ const ISBL_BLOCK_COMMENT_MODE = {
3103
+ className: "comment",
3104
+ begin: "/\\*",
3105
+ end: "\\*/",
3106
+ relevance: 0,
3107
+ contains: [
3108
+ hljs.PHRASAL_WORDS_MODE,
3109
+ DOCTAGS
3110
+ ]
3111
+ };
3112
+
3113
+ // comment : комментарии
3114
+ const COMMENTS = { variants: [
3115
+ ISBL_LINE_COMMENT_MODE,
3116
+ ISBL_BLOCK_COMMENT_MODE
3117
+ ] };
3118
+
3119
+ // keywords : ключевые слова
3120
+ const KEYWORDS = {
3121
+ $pattern: UNDERSCORE_IDENT_RE,
3122
+ keyword: KEYWORD,
3123
+ built_in: BUILTIN,
3124
+ class: CLASS,
3125
+ literal: LITERAL
3126
+ };
3127
+
3128
+ // methods : методы
3129
+ const METHODS = {
3130
+ begin: "\\.\\s*" + hljs.UNDERSCORE_IDENT_RE,
3131
+ keywords: KEYWORDS,
3132
+ relevance: 0
3133
+ };
3134
+
3135
+ // type : встроенные типы
3136
+ const TYPES = {
3137
+ className: "type",
3138
+ begin: ":[ \\t]*(" + interfaces.trim().replace(/\s/g, "|") + ")",
3139
+ end: "[ \\t]*=",
3140
+ excludeEnd: true
3141
+ };
3142
+
3143
+ // variables : переменные
3144
+ const VARIABLES = {
3145
+ className: "variable",
3146
+ keywords: KEYWORDS,
3147
+ begin: UNDERSCORE_IDENT_RE,
3148
+ relevance: 0,
3149
+ contains: [
3150
+ TYPES,
3151
+ METHODS
3152
+ ]
3153
+ };
3154
+
3155
+ // Имена функций
3156
+ const FUNCTION_TITLE = FUNCTION_NAME_IDENT_RE + "\\(";
3157
+
3158
+ const TITLE_MODE = {
3159
+ className: "title",
3160
+ keywords: {
3161
+ $pattern: UNDERSCORE_IDENT_RE,
3162
+ built_in: system_functions
3163
+ },
3164
+ begin: FUNCTION_TITLE,
3165
+ end: "\\(",
3166
+ returnBegin: true,
3167
+ excludeEnd: true
3168
+ };
3169
+
3170
+ // function : функции
3171
+ const FUNCTIONS = {
3172
+ className: "function",
3173
+ begin: FUNCTION_TITLE,
3174
+ end: "\\)$",
3175
+ returnBegin: true,
3176
+ keywords: KEYWORDS,
3177
+ illegal: "[\\[\\]\\|\\$\\?%,~#@]",
3178
+ contains: [
3179
+ TITLE_MODE,
3180
+ METHODS,
3181
+ VARIABLES,
3182
+ STRINGS,
3183
+ NUMBERS,
3184
+ COMMENTS
3185
+ ]
3186
+ };
3187
+
3188
+ return {
3189
+ name: 'ISBL',
3190
+ case_insensitive: true,
3191
+ keywords: KEYWORDS,
3192
+ illegal: "\\$|\\?|%|,|;$|~|#|@|</",
3193
+ contains: [
3194
+ FUNCTIONS,
3195
+ TYPES,
3196
+ METHODS,
3197
+ VARIABLES,
3198
+ STRINGS,
3199
+ NUMBERS,
3200
+ COMMENTS
3201
+ ]
3202
+ };
3203
+ }
3204
+
3205
+ module.exports = isbl;