omegon-pi 0.12.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 (2866) hide show
  1. package/.gitattributes +3 -0
  2. package/.omegon/profile.json +7 -0
  3. package/AGENTS.md +16 -0
  4. package/ARCHIVE_NOTE.md +28 -0
  5. package/LICENSE +15 -0
  6. package/README.md +296 -0
  7. package/bin/omegon-pi.mjs +244 -0
  8. package/bin/pi.mjs +9 -0
  9. package/extensions/00-secrets/index.ts +1239 -0
  10. package/extensions/00-splash/index.ts +604 -0
  11. package/extensions/00-splash/logo.ts +246 -0
  12. package/extensions/01-auth/auth.ts +476 -0
  13. package/extensions/01-auth/index.ts +289 -0
  14. package/extensions/auto-compact.ts +42 -0
  15. package/extensions/bootstrap/deps.ts +451 -0
  16. package/extensions/bootstrap/index.ts +1123 -0
  17. package/extensions/chronos/chronos.ts +324 -0
  18. package/extensions/chronos/index.ts +127 -0
  19. package/extensions/cleave/assessment.ts +768 -0
  20. package/extensions/cleave/bridge.ts +31 -0
  21. package/extensions/cleave/conflicts.ts +250 -0
  22. package/extensions/cleave/dispatcher.ts +1367 -0
  23. package/extensions/cleave/guardrails.ts +426 -0
  24. package/extensions/cleave/index.ts +3114 -0
  25. package/extensions/cleave/lifecycle-emitter.ts +20 -0
  26. package/extensions/cleave/native-dispatch.ts +218 -0
  27. package/extensions/cleave/openspec.ts +811 -0
  28. package/extensions/cleave/planner.ts +260 -0
  29. package/extensions/cleave/review.ts +580 -0
  30. package/extensions/cleave/rpc-child.ts +269 -0
  31. package/extensions/cleave/skills.ts +355 -0
  32. package/extensions/cleave/subprocess-tracker.ts +205 -0
  33. package/extensions/cleave/types.ts +315 -0
  34. package/extensions/cleave/workspace.ts +865 -0
  35. package/extensions/cleave/worktree.ts +243 -0
  36. package/extensions/core-renderers.ts +193 -0
  37. package/extensions/dashboard/context-gauge.ts +58 -0
  38. package/extensions/dashboard/file-watch.ts +14 -0
  39. package/extensions/dashboard/footer.ts +1375 -0
  40. package/extensions/dashboard/git.ts +193 -0
  41. package/extensions/dashboard/index.ts +481 -0
  42. package/extensions/dashboard/memory-audit.ts +34 -0
  43. package/extensions/dashboard/overlay-data.ts +705 -0
  44. package/extensions/dashboard/overlay.ts +365 -0
  45. package/extensions/dashboard/render-utils.ts +54 -0
  46. package/extensions/dashboard/types.ts +206 -0
  47. package/extensions/dashboard/uri-helper.ts +45 -0
  48. package/extensions/defaults.ts +274 -0
  49. package/extensions/design-tree/dashboard-state.ts +161 -0
  50. package/extensions/design-tree/design-card.ts +362 -0
  51. package/extensions/design-tree/index.ts +2181 -0
  52. package/extensions/design-tree/lifecycle-emitter.ts +41 -0
  53. package/extensions/design-tree/tree.ts +1720 -0
  54. package/extensions/design-tree/types.ts +165 -0
  55. package/extensions/effort/index.ts +532 -0
  56. package/extensions/effort/tiers.ts +146 -0
  57. package/extensions/effort/types.ts +105 -0
  58. package/extensions/igor/client.ts +167 -0
  59. package/extensions/igor/context.ts +61 -0
  60. package/extensions/igor/index.ts +259 -0
  61. package/extensions/igor/intents.ts +78 -0
  62. package/extensions/lib/debug.ts +69 -0
  63. package/extensions/lib/git-state.ts +227 -0
  64. package/extensions/lib/local-models.ts +157 -0
  65. package/extensions/lib/model-preferences.ts +51 -0
  66. package/extensions/lib/model-routing.ts +992 -0
  67. package/extensions/lib/omegon-subprocess.ts +152 -0
  68. package/extensions/lib/operator-fallback.ts +205 -0
  69. package/extensions/lib/operator-profile.ts +360 -0
  70. package/extensions/lib/provider-env.ts +163 -0
  71. package/extensions/lib/sci-ui.ts +421 -0
  72. package/extensions/lib/shared-state.ts +174 -0
  73. package/extensions/lib/slash-command-bridge.ts +262 -0
  74. package/extensions/lib/splash-state.ts +25 -0
  75. package/extensions/lib/typebox-helpers.ts +16 -0
  76. package/extensions/lib/types.d.ts +9 -0
  77. package/extensions/local-inference/index.ts +727 -0
  78. package/extensions/mcp-bridge/README.md +220 -0
  79. package/extensions/mcp-bridge/index.ts +956 -0
  80. package/extensions/mcp-bridge/lib.ts +365 -0
  81. package/extensions/mcp-bridge/mcp.json +3 -0
  82. package/extensions/mcp-bridge/package.json +11 -0
  83. package/extensions/model-budget.ts +752 -0
  84. package/extensions/offline-driver.ts +410 -0
  85. package/extensions/openspec/archive-gate.ts +164 -0
  86. package/extensions/openspec/branch-cleanup.ts +64 -0
  87. package/extensions/openspec/dashboard-state.ts +50 -0
  88. package/extensions/openspec/index.ts +1942 -0
  89. package/extensions/openspec/lifecycle-emitter.ts +65 -0
  90. package/extensions/openspec/lifecycle-files.ts +120 -0
  91. package/extensions/openspec/lifecycle.ts +50 -0
  92. package/extensions/openspec/reconcile.ts +187 -0
  93. package/extensions/openspec/spec.ts +1392 -0
  94. package/extensions/openspec/types.ts +98 -0
  95. package/extensions/project-memory/DESIGN-global-mind.md +198 -0
  96. package/extensions/project-memory/README.md +204 -0
  97. package/extensions/project-memory/api-types.ts +382 -0
  98. package/extensions/project-memory/compaction-policy.ts +29 -0
  99. package/extensions/project-memory/core.ts +164 -0
  100. package/extensions/project-memory/embeddings.ts +230 -0
  101. package/extensions/project-memory/extraction-v2.ts +636 -0
  102. package/extensions/project-memory/factstore.ts +2317 -0
  103. package/extensions/project-memory/index.ts +3517 -0
  104. package/extensions/project-memory/injection-metrics.ts +123 -0
  105. package/extensions/project-memory/jsonl-io.ts +36 -0
  106. package/extensions/project-memory/lifecycle.ts +340 -0
  107. package/extensions/project-memory/llm-direct.ts +260 -0
  108. package/extensions/project-memory/migration.ts +293 -0
  109. package/extensions/project-memory/package.json +9 -0
  110. package/extensions/project-memory/sci-renderers.ts +7 -0
  111. package/extensions/project-memory/template.ts +103 -0
  112. package/extensions/project-memory/triggers.ts +52 -0
  113. package/extensions/project-memory/types.ts +102 -0
  114. package/extensions/render/composition/fonts/Inter-Bold.ttf +0 -0
  115. package/extensions/render/composition/fonts/Inter-Regular.ttf +0 -0
  116. package/extensions/render/composition/fonts/Tomorrow-Bold.ttf +0 -0
  117. package/extensions/render/composition/fonts/Tomorrow-Regular.ttf +0 -0
  118. package/extensions/render/composition/package.json +22 -0
  119. package/extensions/render/composition/render.mjs +246 -0
  120. package/extensions/render/composition/test-comp.tsx +87 -0
  121. package/extensions/render/composition/types.ts +24 -0
  122. package/extensions/render/excalidraw/UPSTREAM.md +81 -0
  123. package/extensions/render/excalidraw/elements.ts +764 -0
  124. package/extensions/render/excalidraw/index.ts +66 -0
  125. package/extensions/render/excalidraw/types.ts +223 -0
  126. package/extensions/render/excalidraw-renderer/pyproject.toml +8 -0
  127. package/extensions/render/excalidraw-renderer/render_excalidraw.py +182 -0
  128. package/extensions/render/excalidraw-renderer/render_template.html +59 -0
  129. package/extensions/render/index.ts +830 -0
  130. package/extensions/render/native-diagrams/index.ts +57 -0
  131. package/extensions/render/native-diagrams/motifs.ts +542 -0
  132. package/extensions/render/native-diagrams/raster.ts +8 -0
  133. package/extensions/render/native-diagrams/scene.ts +75 -0
  134. package/extensions/render/native-diagrams/spec.ts +204 -0
  135. package/extensions/render/native-diagrams/svg.ts +116 -0
  136. package/extensions/sermon-widget.ts +144 -0
  137. package/extensions/sermon.ts +154 -0
  138. package/extensions/session-log.ts +174 -0
  139. package/extensions/spinner-verbs.ts +312 -0
  140. package/extensions/style.ts +281 -0
  141. package/extensions/terminal-title.ts +191 -0
  142. package/extensions/tool-profile/index.ts +296 -0
  143. package/extensions/tool-profile/profiles.ts +290 -0
  144. package/extensions/vault/index.ts +185 -0
  145. package/extensions/version-check.ts +94 -0
  146. package/extensions/view/index.ts +859 -0
  147. package/extensions/view/uri-resolver.ts +148 -0
  148. package/extensions/web-search/index.ts +185 -0
  149. package/extensions/web-search/providers.ts +121 -0
  150. package/extensions/web-ui/index.ts +110 -0
  151. package/extensions/web-ui/server.ts +265 -0
  152. package/extensions/web-ui/state.ts +462 -0
  153. package/extensions/web-ui/static/index.html +145 -0
  154. package/extensions/web-ui/types.ts +284 -0
  155. package/graphics/g140.png +0 -0
  156. package/graphics/icon.jpg +0 -0
  157. package/graphics/icon.svg +562 -0
  158. package/graphics/path1-4.jpg +0 -0
  159. package/node_modules/@mariozechner/clipboard/.yarnrc.yml +1 -0
  160. package/node_modules/@mariozechner/clipboard/Cargo.toml +26 -0
  161. package/node_modules/@mariozechner/clipboard/README.md +58 -0
  162. package/node_modules/@mariozechner/clipboard/build.rs +5 -0
  163. package/node_modules/@mariozechner/clipboard/exp.ts +12 -0
  164. package/node_modules/@mariozechner/clipboard/index.d.ts +23 -0
  165. package/node_modules/@mariozechner/clipboard/index.js +317 -0
  166. package/node_modules/@mariozechner/clipboard/package.json +56 -0
  167. package/node_modules/@mariozechner/clipboard/src/lib.rs +191 -0
  168. package/node_modules/@mariozechner/clipboard-darwin-arm64/README.md +3 -0
  169. package/node_modules/@mariozechner/clipboard-darwin-arm64/clipboard.darwin-arm64.node +0 -0
  170. package/node_modules/@mariozechner/clipboard-darwin-arm64/package.json +22 -0
  171. package/node_modules/@mariozechner/clipboard-darwin-universal/README.md +3 -0
  172. package/node_modules/@mariozechner/clipboard-darwin-universal/clipboard.darwin-universal.node +0 -0
  173. package/node_modules/@mariozechner/clipboard-darwin-universal/package.json +19 -0
  174. package/node_modules/@sinclair/typebox/build/cjs/compiler/compiler.d.ts +55 -0
  175. package/node_modules/@sinclair/typebox/build/cjs/compiler/compiler.js +670 -0
  176. package/node_modules/@sinclair/typebox/build/cjs/compiler/index.d.ts +2 -0
  177. package/node_modules/@sinclair/typebox/build/cjs/compiler/index.js +22 -0
  178. package/node_modules/@sinclair/typebox/build/cjs/errors/errors.d.ts +91 -0
  179. package/node_modules/@sinclair/typebox/build/cjs/errors/errors.js +599 -0
  180. package/node_modules/@sinclair/typebox/build/cjs/errors/function.d.ts +21 -0
  181. package/node_modules/@sinclair/typebox/build/cjs/errors/function.js +153 -0
  182. package/node_modules/@sinclair/typebox/build/cjs/errors/index.d.ts +2 -0
  183. package/node_modules/@sinclair/typebox/build/cjs/errors/index.js +19 -0
  184. package/node_modules/@sinclair/typebox/build/cjs/index.d.ts +71 -0
  185. package/node_modules/@sinclair/typebox/build/cjs/index.js +97 -0
  186. package/node_modules/@sinclair/typebox/build/cjs/parser/index.d.ts +2 -0
  187. package/node_modules/@sinclair/typebox/build/cjs/parser/index.js +39 -0
  188. package/node_modules/@sinclair/typebox/build/cjs/parser/runtime/guard.d.ts +23 -0
  189. package/node_modules/@sinclair/typebox/build/cjs/parser/runtime/guard.js +86 -0
  190. package/node_modules/@sinclair/typebox/build/cjs/parser/runtime/index.d.ts +5 -0
  191. package/node_modules/@sinclair/typebox/build/cjs/parser/runtime/index.js +45 -0
  192. package/node_modules/@sinclair/typebox/build/cjs/parser/runtime/module.d.ts +9 -0
  193. package/node_modules/@sinclair/typebox/build/cjs/parser/runtime/module.js +22 -0
  194. package/node_modules/@sinclair/typebox/build/cjs/parser/runtime/parse.d.ts +9 -0
  195. package/node_modules/@sinclair/typebox/build/cjs/parser/runtime/parse.js +160 -0
  196. package/node_modules/@sinclair/typebox/build/cjs/parser/runtime/token.d.ts +8 -0
  197. package/node_modules/@sinclair/typebox/build/cjs/parser/runtime/token.js +230 -0
  198. package/node_modules/@sinclair/typebox/build/cjs/parser/runtime/types.d.ts +98 -0
  199. package/node_modules/@sinclair/typebox/build/cjs/parser/runtime/types.js +71 -0
  200. package/node_modules/@sinclair/typebox/build/cjs/parser/static/index.d.ts +3 -0
  201. package/node_modules/@sinclair/typebox/build/cjs/parser/static/index.js +43 -0
  202. package/node_modules/@sinclair/typebox/build/cjs/parser/static/parse.d.ts +20 -0
  203. package/node_modules/@sinclair/typebox/build/cjs/parser/static/parse.js +3 -0
  204. package/node_modules/@sinclair/typebox/build/cjs/parser/static/token.d.ts +108 -0
  205. package/node_modules/@sinclair/typebox/build/cjs/parser/static/token.js +3 -0
  206. package/node_modules/@sinclair/typebox/build/cjs/parser/static/types.d.ts +69 -0
  207. package/node_modules/@sinclair/typebox/build/cjs/parser/static/types.js +3 -0
  208. package/node_modules/@sinclair/typebox/build/cjs/syntax/index.d.ts +1 -0
  209. package/node_modules/@sinclair/typebox/build/cjs/syntax/index.js +18 -0
  210. package/node_modules/@sinclair/typebox/build/cjs/syntax/mapping.d.ts +167 -0
  211. package/node_modules/@sinclair/typebox/build/cjs/syntax/mapping.js +491 -0
  212. package/node_modules/@sinclair/typebox/build/cjs/syntax/parser.d.ts +162 -0
  213. package/node_modules/@sinclair/typebox/build/cjs/syntax/parser.js +191 -0
  214. package/node_modules/@sinclair/typebox/build/cjs/syntax/syntax.d.ts +12 -0
  215. package/node_modules/@sinclair/typebox/build/cjs/syntax/syntax.js +54 -0
  216. package/node_modules/@sinclair/typebox/build/cjs/system/index.d.ts +2 -0
  217. package/node_modules/@sinclair/typebox/build/cjs/system/index.js +19 -0
  218. package/node_modules/@sinclair/typebox/build/cjs/system/policy.d.ts +29 -0
  219. package/node_modules/@sinclair/typebox/build/cjs/system/policy.js +58 -0
  220. package/node_modules/@sinclair/typebox/build/cjs/system/system.d.ts +16 -0
  221. package/node_modules/@sinclair/typebox/build/cjs/system/system.js +43 -0
  222. package/node_modules/@sinclair/typebox/build/cjs/type/any/any.d.ts +8 -0
  223. package/node_modules/@sinclair/typebox/build/cjs/type/any/any.js +10 -0
  224. package/node_modules/@sinclair/typebox/build/cjs/type/any/index.d.ts +1 -0
  225. package/node_modules/@sinclair/typebox/build/cjs/type/any/index.js +18 -0
  226. package/node_modules/@sinclair/typebox/build/cjs/type/argument/argument.d.ts +9 -0
  227. package/node_modules/@sinclair/typebox/build/cjs/type/argument/argument.js +10 -0
  228. package/node_modules/@sinclair/typebox/build/cjs/type/argument/index.d.ts +1 -0
  229. package/node_modules/@sinclair/typebox/build/cjs/type/argument/index.js +18 -0
  230. package/node_modules/@sinclair/typebox/build/cjs/type/array/array.d.ts +28 -0
  231. package/node_modules/@sinclair/typebox/build/cjs/type/array/array.js +10 -0
  232. package/node_modules/@sinclair/typebox/build/cjs/type/array/index.d.ts +1 -0
  233. package/node_modules/@sinclair/typebox/build/cjs/type/array/index.js +18 -0
  234. package/node_modules/@sinclair/typebox/build/cjs/type/async-iterator/async-iterator.d.ts +11 -0
  235. package/node_modules/@sinclair/typebox/build/cjs/type/async-iterator/async-iterator.js +10 -0
  236. package/node_modules/@sinclair/typebox/build/cjs/type/async-iterator/index.d.ts +1 -0
  237. package/node_modules/@sinclair/typebox/build/cjs/type/async-iterator/index.js +18 -0
  238. package/node_modules/@sinclair/typebox/build/cjs/type/awaited/awaited.d.ts +14 -0
  239. package/node_modules/@sinclair/typebox/build/cjs/type/awaited/awaited.js +41 -0
  240. package/node_modules/@sinclair/typebox/build/cjs/type/awaited/index.d.ts +1 -0
  241. package/node_modules/@sinclair/typebox/build/cjs/type/awaited/index.js +18 -0
  242. package/node_modules/@sinclair/typebox/build/cjs/type/bigint/bigint.d.ts +16 -0
  243. package/node_modules/@sinclair/typebox/build/cjs/type/bigint/bigint.js +10 -0
  244. package/node_modules/@sinclair/typebox/build/cjs/type/bigint/index.d.ts +1 -0
  245. package/node_modules/@sinclair/typebox/build/cjs/type/bigint/index.js +18 -0
  246. package/node_modules/@sinclair/typebox/build/cjs/type/boolean/boolean.d.ts +9 -0
  247. package/node_modules/@sinclair/typebox/build/cjs/type/boolean/boolean.js +10 -0
  248. package/node_modules/@sinclair/typebox/build/cjs/type/boolean/index.d.ts +1 -0
  249. package/node_modules/@sinclair/typebox/build/cjs/type/boolean/index.js +18 -0
  250. package/node_modules/@sinclair/typebox/build/cjs/type/clone/index.d.ts +2 -0
  251. package/node_modules/@sinclair/typebox/build/cjs/type/clone/index.js +19 -0
  252. package/node_modules/@sinclair/typebox/build/cjs/type/clone/type.d.ts +5 -0
  253. package/node_modules/@sinclair/typebox/build/cjs/type/clone/type.js +14 -0
  254. package/node_modules/@sinclair/typebox/build/cjs/type/clone/value.d.ts +2 -0
  255. package/node_modules/@sinclair/typebox/build/cjs/type/clone/value.js +73 -0
  256. package/node_modules/@sinclair/typebox/build/cjs/type/composite/composite.d.ts +18 -0
  257. package/node_modules/@sinclair/typebox/build/cjs/type/composite/composite.js +46 -0
  258. package/node_modules/@sinclair/typebox/build/cjs/type/composite/index.d.ts +1 -0
  259. package/node_modules/@sinclair/typebox/build/cjs/type/composite/index.js +18 -0
  260. package/node_modules/@sinclair/typebox/build/cjs/type/computed/computed.d.ts +9 -0
  261. package/node_modules/@sinclair/typebox/build/cjs/type/computed/computed.js +10 -0
  262. package/node_modules/@sinclair/typebox/build/cjs/type/computed/index.d.ts +1 -0
  263. package/node_modules/@sinclair/typebox/build/cjs/type/computed/index.js +18 -0
  264. package/node_modules/@sinclair/typebox/build/cjs/type/const/const.d.ts +27 -0
  265. package/node_modules/@sinclair/typebox/build/cjs/type/const/const.js +58 -0
  266. package/node_modules/@sinclair/typebox/build/cjs/type/const/index.d.ts +1 -0
  267. package/node_modules/@sinclair/typebox/build/cjs/type/const/index.js +18 -0
  268. package/node_modules/@sinclair/typebox/build/cjs/type/constructor/constructor.d.ts +23 -0
  269. package/node_modules/@sinclair/typebox/build/cjs/type/constructor/constructor.js +10 -0
  270. package/node_modules/@sinclair/typebox/build/cjs/type/constructor/index.d.ts +1 -0
  271. package/node_modules/@sinclair/typebox/build/cjs/type/constructor/index.js +18 -0
  272. package/node_modules/@sinclair/typebox/build/cjs/type/constructor-parameters/constructor-parameters.d.ts +7 -0
  273. package/node_modules/@sinclair/typebox/build/cjs/type/constructor-parameters/constructor-parameters.js +44 -0
  274. package/node_modules/@sinclair/typebox/build/cjs/type/constructor-parameters/index.d.ts +1 -0
  275. package/node_modules/@sinclair/typebox/build/cjs/type/constructor-parameters/index.js +18 -0
  276. package/node_modules/@sinclair/typebox/build/cjs/type/create/immutable.d.ts +2 -0
  277. package/node_modules/@sinclair/typebox/build/cjs/type/create/immutable.js +70 -0
  278. package/node_modules/@sinclair/typebox/build/cjs/type/create/index.d.ts +1 -0
  279. package/node_modules/@sinclair/typebox/build/cjs/type/create/index.js +18 -0
  280. package/node_modules/@sinclair/typebox/build/cjs/type/create/type.d.ts +3 -0
  281. package/node_modules/@sinclair/typebox/build/cjs/type/create/type.js +19 -0
  282. package/node_modules/@sinclair/typebox/build/cjs/type/date/date.d.ts +21 -0
  283. package/node_modules/@sinclair/typebox/build/cjs/type/date/date.js +10 -0
  284. package/node_modules/@sinclair/typebox/build/cjs/type/date/index.d.ts +1 -0
  285. package/node_modules/@sinclair/typebox/build/cjs/type/date/index.js +18 -0
  286. package/node_modules/@sinclair/typebox/build/cjs/type/discard/discard.d.ts +2 -0
  287. package/node_modules/@sinclair/typebox/build/cjs/type/discard/discard.js +12 -0
  288. package/node_modules/@sinclair/typebox/build/cjs/type/discard/index.d.ts +1 -0
  289. package/node_modules/@sinclair/typebox/build/cjs/type/discard/index.js +18 -0
  290. package/node_modules/@sinclair/typebox/build/cjs/type/enum/enum.d.ts +14 -0
  291. package/node_modules/@sinclair/typebox/build/cjs/type/enum/enum.js +22 -0
  292. package/node_modules/@sinclair/typebox/build/cjs/type/enum/index.d.ts +1 -0
  293. package/node_modules/@sinclair/typebox/build/cjs/type/enum/index.js +18 -0
  294. package/node_modules/@sinclair/typebox/build/cjs/type/error/error.d.ts +4 -0
  295. package/node_modules/@sinclair/typebox/build/cjs/type/error/error.js +11 -0
  296. package/node_modules/@sinclair/typebox/build/cjs/type/error/index.d.ts +1 -0
  297. package/node_modules/@sinclair/typebox/build/cjs/type/error/index.js +18 -0
  298. package/node_modules/@sinclair/typebox/build/cjs/type/exclude/exclude-from-mapped-result.d.ts +11 -0
  299. package/node_modules/@sinclair/typebox/build/cjs/type/exclude/exclude-from-mapped-result.js +22 -0
  300. package/node_modules/@sinclair/typebox/build/cjs/type/exclude/exclude-from-template-literal.d.ts +5 -0
  301. package/node_modules/@sinclair/typebox/build/cjs/type/exclude/exclude-from-template-literal.js +9 -0
  302. package/node_modules/@sinclair/typebox/build/cjs/type/exclude/exclude.d.ts +21 -0
  303. package/node_modules/@sinclair/typebox/build/cjs/type/exclude/exclude.js +29 -0
  304. package/node_modules/@sinclair/typebox/build/cjs/type/exclude/index.d.ts +3 -0
  305. package/node_modules/@sinclair/typebox/build/cjs/type/exclude/index.js +20 -0
  306. package/node_modules/@sinclair/typebox/build/cjs/type/extends/extends-check.d.ts +10 -0
  307. package/node_modules/@sinclair/typebox/build/cjs/type/extends/extends-check.js +641 -0
  308. package/node_modules/@sinclair/typebox/build/cjs/type/extends/extends-from-mapped-key.d.ts +14 -0
  309. package/node_modules/@sinclair/typebox/build/cjs/type/extends/extends-from-mapped-key.js +29 -0
  310. package/node_modules/@sinclair/typebox/build/cjs/type/extends/extends-from-mapped-result.d.ts +11 -0
  311. package/node_modules/@sinclair/typebox/build/cjs/type/extends/extends-from-mapped-result.js +23 -0
  312. package/node_modules/@sinclair/typebox/build/cjs/type/extends/extends-undefined.d.ts +3 -0
  313. package/node_modules/@sinclair/typebox/build/cjs/type/extends/extends-undefined.js +24 -0
  314. package/node_modules/@sinclair/typebox/build/cjs/type/extends/extends.d.ts +16 -0
  315. package/node_modules/@sinclair/typebox/build/cjs/type/extends/extends.js +27 -0
  316. package/node_modules/@sinclair/typebox/build/cjs/type/extends/index.d.ts +5 -0
  317. package/node_modules/@sinclair/typebox/build/cjs/type/extends/index.js +22 -0
  318. package/node_modules/@sinclair/typebox/build/cjs/type/extract/extract-from-mapped-result.d.ts +11 -0
  319. package/node_modules/@sinclair/typebox/build/cjs/type/extract/extract-from-mapped-result.js +22 -0
  320. package/node_modules/@sinclair/typebox/build/cjs/type/extract/extract-from-template-literal.d.ts +5 -0
  321. package/node_modules/@sinclair/typebox/build/cjs/type/extract/extract-from-template-literal.js +9 -0
  322. package/node_modules/@sinclair/typebox/build/cjs/type/extract/extract.d.ts +21 -0
  323. package/node_modules/@sinclair/typebox/build/cjs/type/extract/extract.js +29 -0
  324. package/node_modules/@sinclair/typebox/build/cjs/type/extract/index.d.ts +3 -0
  325. package/node_modules/@sinclair/typebox/build/cjs/type/extract/index.js +20 -0
  326. package/node_modules/@sinclair/typebox/build/cjs/type/function/function.d.ts +23 -0
  327. package/node_modules/@sinclair/typebox/build/cjs/type/function/function.js +10 -0
  328. package/node_modules/@sinclair/typebox/build/cjs/type/function/index.d.ts +1 -0
  329. package/node_modules/@sinclair/typebox/build/cjs/type/function/index.js +18 -0
  330. package/node_modules/@sinclair/typebox/build/cjs/type/guard/index.d.ts +3 -0
  331. package/node_modules/@sinclair/typebox/build/cjs/type/guard/index.js +40 -0
  332. package/node_modules/@sinclair/typebox/build/cjs/type/guard/kind.d.ts +147 -0
  333. package/node_modules/@sinclair/typebox/build/cjs/type/guard/kind.js +320 -0
  334. package/node_modules/@sinclair/typebox/build/cjs/type/guard/type.d.ts +152 -0
  335. package/node_modules/@sinclair/typebox/build/cjs/type/guard/type.js +597 -0
  336. package/node_modules/@sinclair/typebox/build/cjs/type/guard/value.d.ts +34 -0
  337. package/node_modules/@sinclair/typebox/build/cjs/type/guard/value.js +89 -0
  338. package/node_modules/@sinclair/typebox/build/cjs/type/helpers/helpers.d.ts +42 -0
  339. package/node_modules/@sinclair/typebox/build/cjs/type/helpers/helpers.js +8 -0
  340. package/node_modules/@sinclair/typebox/build/cjs/type/helpers/index.d.ts +1 -0
  341. package/node_modules/@sinclair/typebox/build/cjs/type/helpers/index.js +18 -0
  342. package/node_modules/@sinclair/typebox/build/cjs/type/index.d.ts +71 -0
  343. package/node_modules/@sinclair/typebox/build/cjs/type/index.js +88 -0
  344. package/node_modules/@sinclair/typebox/build/cjs/type/indexed/index.d.ts +4 -0
  345. package/node_modules/@sinclair/typebox/build/cjs/type/indexed/index.js +21 -0
  346. package/node_modules/@sinclair/typebox/build/cjs/type/indexed/indexed-from-mapped-key.d.ts +13 -0
  347. package/node_modules/@sinclair/typebox/build/cjs/type/indexed/indexed-from-mapped-key.js +26 -0
  348. package/node_modules/@sinclair/typebox/build/cjs/type/indexed/indexed-from-mapped-result.d.ts +12 -0
  349. package/node_modules/@sinclair/typebox/build/cjs/type/indexed/indexed-from-mapped-result.js +24 -0
  350. package/node_modules/@sinclair/typebox/build/cjs/type/indexed/indexed-property-keys.d.ts +14 -0
  351. package/node_modules/@sinclair/typebox/build/cjs/type/indexed/indexed-property-keys.js +36 -0
  352. package/node_modules/@sinclair/typebox/build/cjs/type/indexed/indexed.d.ts +52 -0
  353. package/node_modules/@sinclair/typebox/build/cjs/type/indexed/indexed.js +98 -0
  354. package/node_modules/@sinclair/typebox/build/cjs/type/instance-type/index.d.ts +1 -0
  355. package/node_modules/@sinclair/typebox/build/cjs/type/instance-type/index.js +18 -0
  356. package/node_modules/@sinclair/typebox/build/cjs/type/instance-type/instance-type.d.ts +6 -0
  357. package/node_modules/@sinclair/typebox/build/cjs/type/instance-type/instance-type.js +44 -0
  358. package/node_modules/@sinclair/typebox/build/cjs/type/instantiate/index.d.ts +1 -0
  359. package/node_modules/@sinclair/typebox/build/cjs/type/instantiate/index.js +18 -0
  360. package/node_modules/@sinclair/typebox/build/cjs/type/instantiate/instantiate.d.ts +50 -0
  361. package/node_modules/@sinclair/typebox/build/cjs/type/instantiate/instantiate.js +153 -0
  362. package/node_modules/@sinclair/typebox/build/cjs/type/integer/index.d.ts +1 -0
  363. package/node_modules/@sinclair/typebox/build/cjs/type/integer/index.js +18 -0
  364. package/node_modules/@sinclair/typebox/build/cjs/type/integer/integer.d.ts +16 -0
  365. package/node_modules/@sinclair/typebox/build/cjs/type/integer/integer.js +10 -0
  366. package/node_modules/@sinclair/typebox/build/cjs/type/intersect/index.d.ts +3 -0
  367. package/node_modules/@sinclair/typebox/build/cjs/type/intersect/index.js +20 -0
  368. package/node_modules/@sinclair/typebox/build/cjs/type/intersect/intersect-create.d.ts +3 -0
  369. package/node_modules/@sinclair/typebox/build/cjs/type/intersect/intersect-create.js +23 -0
  370. package/node_modules/@sinclair/typebox/build/cjs/type/intersect/intersect-evaluated.d.ts +13 -0
  371. package/node_modules/@sinclair/typebox/build/cjs/type/intersect/intersect-evaluated.js +42 -0
  372. package/node_modules/@sinclair/typebox/build/cjs/type/intersect/intersect-type.d.ts +15 -0
  373. package/node_modules/@sinclair/typebox/build/cjs/type/intersect/intersect-type.js +4 -0
  374. package/node_modules/@sinclair/typebox/build/cjs/type/intersect/intersect.d.ts +6 -0
  375. package/node_modules/@sinclair/typebox/build/cjs/type/intersect/intersect.js +21 -0
  376. package/node_modules/@sinclair/typebox/build/cjs/type/intrinsic/capitalize.d.ts +5 -0
  377. package/node_modules/@sinclair/typebox/build/cjs/type/intrinsic/capitalize.js +9 -0
  378. package/node_modules/@sinclair/typebox/build/cjs/type/intrinsic/index.d.ts +6 -0
  379. package/node_modules/@sinclair/typebox/build/cjs/type/intrinsic/index.js +23 -0
  380. package/node_modules/@sinclair/typebox/build/cjs/type/intrinsic/intrinsic-from-mapped-key.d.ts +14 -0
  381. package/node_modules/@sinclair/typebox/build/cjs/type/intrinsic/intrinsic-from-mapped-key.js +30 -0
  382. package/node_modules/@sinclair/typebox/build/cjs/type/intrinsic/intrinsic.d.ts +16 -0
  383. package/node_modules/@sinclair/typebox/build/cjs/type/intrinsic/intrinsic.js +68 -0
  384. package/node_modules/@sinclair/typebox/build/cjs/type/intrinsic/lowercase.d.ts +5 -0
  385. package/node_modules/@sinclair/typebox/build/cjs/type/intrinsic/lowercase.js +9 -0
  386. package/node_modules/@sinclair/typebox/build/cjs/type/intrinsic/uncapitalize.d.ts +5 -0
  387. package/node_modules/@sinclair/typebox/build/cjs/type/intrinsic/uncapitalize.js +9 -0
  388. package/node_modules/@sinclair/typebox/build/cjs/type/intrinsic/uppercase.d.ts +5 -0
  389. package/node_modules/@sinclair/typebox/build/cjs/type/intrinsic/uppercase.js +9 -0
  390. package/node_modules/@sinclair/typebox/build/cjs/type/iterator/index.d.ts +1 -0
  391. package/node_modules/@sinclair/typebox/build/cjs/type/iterator/index.js +18 -0
  392. package/node_modules/@sinclair/typebox/build/cjs/type/iterator/iterator.d.ts +11 -0
  393. package/node_modules/@sinclair/typebox/build/cjs/type/iterator/iterator.js +10 -0
  394. package/node_modules/@sinclair/typebox/build/cjs/type/keyof/index.d.ts +4 -0
  395. package/node_modules/@sinclair/typebox/build/cjs/type/keyof/index.js +21 -0
  396. package/node_modules/@sinclair/typebox/build/cjs/type/keyof/keyof-from-mapped-result.d.ts +12 -0
  397. package/node_modules/@sinclair/typebox/build/cjs/type/keyof/keyof-from-mapped-result.js +23 -0
  398. package/node_modules/@sinclair/typebox/build/cjs/type/keyof/keyof-property-entries.d.ts +7 -0
  399. package/node_modules/@sinclair/typebox/build/cjs/type/keyof/keyof-property-entries.js +16 -0
  400. package/node_modules/@sinclair/typebox/build/cjs/type/keyof/keyof-property-keys.d.ts +24 -0
  401. package/node_modules/@sinclair/typebox/build/cjs/type/keyof/keyof-property-keys.js +78 -0
  402. package/node_modules/@sinclair/typebox/build/cjs/type/keyof/keyof.d.ts +21 -0
  403. package/node_modules/@sinclair/typebox/build/cjs/type/keyof/keyof.js +40 -0
  404. package/node_modules/@sinclair/typebox/build/cjs/type/literal/index.d.ts +1 -0
  405. package/node_modules/@sinclair/typebox/build/cjs/type/literal/index.js +18 -0
  406. package/node_modules/@sinclair/typebox/build/cjs/type/literal/literal.d.ts +10 -0
  407. package/node_modules/@sinclair/typebox/build/cjs/type/literal/literal.js +14 -0
  408. package/node_modules/@sinclair/typebox/build/cjs/type/mapped/index.d.ts +3 -0
  409. package/node_modules/@sinclair/typebox/build/cjs/type/mapped/index.js +20 -0
  410. package/node_modules/@sinclair/typebox/build/cjs/type/mapped/mapped-key.d.ts +8 -0
  411. package/node_modules/@sinclair/typebox/build/cjs/type/mapped/mapped-key.js +13 -0
  412. package/node_modules/@sinclair/typebox/build/cjs/type/mapped/mapped-result.d.ts +9 -0
  413. package/node_modules/@sinclair/typebox/build/cjs/type/mapped/mapped-result.js +13 -0
  414. package/node_modules/@sinclair/typebox/build/cjs/type/mapped/mapped.d.ts +47 -0
  415. package/node_modules/@sinclair/typebox/build/cjs/type/mapped/mapped.js +107 -0
  416. package/node_modules/@sinclair/typebox/build/cjs/type/module/compute.d.ts +59 -0
  417. package/node_modules/@sinclair/typebox/build/cjs/type/module/compute.js +205 -0
  418. package/node_modules/@sinclair/typebox/build/cjs/type/module/index.d.ts +1 -0
  419. package/node_modules/@sinclair/typebox/build/cjs/type/module/index.js +18 -0
  420. package/node_modules/@sinclair/typebox/build/cjs/type/module/infer.d.ts +49 -0
  421. package/node_modules/@sinclair/typebox/build/cjs/type/module/infer.js +3 -0
  422. package/node_modules/@sinclair/typebox/build/cjs/type/module/module.d.ts +27 -0
  423. package/node_modules/@sinclair/typebox/build/cjs/type/module/module.js +38 -0
  424. package/node_modules/@sinclair/typebox/build/cjs/type/never/index.d.ts +1 -0
  425. package/node_modules/@sinclair/typebox/build/cjs/type/never/index.js +18 -0
  426. package/node_modules/@sinclair/typebox/build/cjs/type/never/never.d.ts +9 -0
  427. package/node_modules/@sinclair/typebox/build/cjs/type/never/never.js +10 -0
  428. package/node_modules/@sinclair/typebox/build/cjs/type/not/index.d.ts +1 -0
  429. package/node_modules/@sinclair/typebox/build/cjs/type/not/index.js +18 -0
  430. package/node_modules/@sinclair/typebox/build/cjs/type/not/not.d.ts +10 -0
  431. package/node_modules/@sinclair/typebox/build/cjs/type/not/not.js +10 -0
  432. package/node_modules/@sinclair/typebox/build/cjs/type/null/index.d.ts +1 -0
  433. package/node_modules/@sinclair/typebox/build/cjs/type/null/index.js +18 -0
  434. package/node_modules/@sinclair/typebox/build/cjs/type/null/null.d.ts +9 -0
  435. package/node_modules/@sinclair/typebox/build/cjs/type/null/null.js +10 -0
  436. package/node_modules/@sinclair/typebox/build/cjs/type/number/index.d.ts +1 -0
  437. package/node_modules/@sinclair/typebox/build/cjs/type/number/index.js +18 -0
  438. package/node_modules/@sinclair/typebox/build/cjs/type/number/number.d.ts +16 -0
  439. package/node_modules/@sinclair/typebox/build/cjs/type/number/number.js +10 -0
  440. package/node_modules/@sinclair/typebox/build/cjs/type/object/index.d.ts +1 -0
  441. package/node_modules/@sinclair/typebox/build/cjs/type/object/index.js +18 -0
  442. package/node_modules/@sinclair/typebox/build/cjs/type/object/object.d.ts +51 -0
  443. package/node_modules/@sinclair/typebox/build/cjs/type/object/object.js +22 -0
  444. package/node_modules/@sinclair/typebox/build/cjs/type/omit/index.d.ts +3 -0
  445. package/node_modules/@sinclair/typebox/build/cjs/type/omit/index.js +20 -0
  446. package/node_modules/@sinclair/typebox/build/cjs/type/omit/omit-from-mapped-key.d.ts +12 -0
  447. package/node_modules/@sinclair/typebox/build/cjs/type/omit/omit-from-mapped-key.js +26 -0
  448. package/node_modules/@sinclair/typebox/build/cjs/type/omit/omit-from-mapped-result.d.ts +12 -0
  449. package/node_modules/@sinclair/typebox/build/cjs/type/omit/omit-from-mapped-result.js +23 -0
  450. package/node_modules/@sinclair/typebox/build/cjs/type/omit/omit.d.ts +36 -0
  451. package/node_modules/@sinclair/typebox/build/cjs/type/omit/omit.js +75 -0
  452. package/node_modules/@sinclair/typebox/build/cjs/type/optional/index.d.ts +2 -0
  453. package/node_modules/@sinclair/typebox/build/cjs/type/optional/index.js +19 -0
  454. package/node_modules/@sinclair/typebox/build/cjs/type/optional/optional-from-mapped-result.d.ts +10 -0
  455. package/node_modules/@sinclair/typebox/build/cjs/type/optional/optional-from-mapped-result.js +22 -0
  456. package/node_modules/@sinclair/typebox/build/cjs/type/optional/optional.d.ts +20 -0
  457. package/node_modules/@sinclair/typebox/build/cjs/type/optional/optional.js +26 -0
  458. package/node_modules/@sinclair/typebox/build/cjs/type/parameters/index.d.ts +1 -0
  459. package/node_modules/@sinclair/typebox/build/cjs/type/parameters/index.js +18 -0
  460. package/node_modules/@sinclair/typebox/build/cjs/type/parameters/parameters.d.ts +7 -0
  461. package/node_modules/@sinclair/typebox/build/cjs/type/parameters/parameters.js +44 -0
  462. package/node_modules/@sinclair/typebox/build/cjs/type/partial/index.d.ts +2 -0
  463. package/node_modules/@sinclair/typebox/build/cjs/type/partial/index.js +19 -0
  464. package/node_modules/@sinclair/typebox/build/cjs/type/partial/partial-from-mapped-result.d.ts +12 -0
  465. package/node_modules/@sinclair/typebox/build/cjs/type/partial/partial-from-mapped-result.js +23 -0
  466. package/node_modules/@sinclair/typebox/build/cjs/type/partial/partial.d.ts +35 -0
  467. package/node_modules/@sinclair/typebox/build/cjs/type/partial/partial.js +111 -0
  468. package/node_modules/@sinclair/typebox/build/cjs/type/patterns/index.d.ts +1 -0
  469. package/node_modules/@sinclair/typebox/build/cjs/type/patterns/index.js +18 -0
  470. package/node_modules/@sinclair/typebox/build/cjs/type/patterns/patterns.d.ts +8 -0
  471. package/node_modules/@sinclair/typebox/build/cjs/type/patterns/patterns.js +12 -0
  472. package/node_modules/@sinclair/typebox/build/cjs/type/pick/index.d.ts +3 -0
  473. package/node_modules/@sinclair/typebox/build/cjs/type/pick/index.js +20 -0
  474. package/node_modules/@sinclair/typebox/build/cjs/type/pick/pick-from-mapped-key.d.ts +12 -0
  475. package/node_modules/@sinclair/typebox/build/cjs/type/pick/pick-from-mapped-key.js +28 -0
  476. package/node_modules/@sinclair/typebox/build/cjs/type/pick/pick-from-mapped-result.d.ts +12 -0
  477. package/node_modules/@sinclair/typebox/build/cjs/type/pick/pick-from-mapped-result.js +23 -0
  478. package/node_modules/@sinclair/typebox/build/cjs/type/pick/pick.d.ts +36 -0
  479. package/node_modules/@sinclair/typebox/build/cjs/type/pick/pick.js +70 -0
  480. package/node_modules/@sinclair/typebox/build/cjs/type/promise/index.d.ts +1 -0
  481. package/node_modules/@sinclair/typebox/build/cjs/type/promise/index.js +18 -0
  482. package/node_modules/@sinclair/typebox/build/cjs/type/promise/promise.d.ts +11 -0
  483. package/node_modules/@sinclair/typebox/build/cjs/type/promise/promise.js +10 -0
  484. package/node_modules/@sinclair/typebox/build/cjs/type/readonly/index.d.ts +2 -0
  485. package/node_modules/@sinclair/typebox/build/cjs/type/readonly/index.js +19 -0
  486. package/node_modules/@sinclair/typebox/build/cjs/type/readonly/readonly-from-mapped-result.d.ts +10 -0
  487. package/node_modules/@sinclair/typebox/build/cjs/type/readonly/readonly-from-mapped-result.js +22 -0
  488. package/node_modules/@sinclair/typebox/build/cjs/type/readonly/readonly.d.ts +20 -0
  489. package/node_modules/@sinclair/typebox/build/cjs/type/readonly/readonly.js +26 -0
  490. package/node_modules/@sinclair/typebox/build/cjs/type/readonly-optional/index.d.ts +1 -0
  491. package/node_modules/@sinclair/typebox/build/cjs/type/readonly-optional/index.js +18 -0
  492. package/node_modules/@sinclair/typebox/build/cjs/type/readonly-optional/readonly-optional.d.ts +6 -0
  493. package/node_modules/@sinclair/typebox/build/cjs/type/readonly-optional/readonly-optional.js +10 -0
  494. package/node_modules/@sinclair/typebox/build/cjs/type/record/index.d.ts +1 -0
  495. package/node_modules/@sinclair/typebox/build/cjs/type/record/index.js +18 -0
  496. package/node_modules/@sinclair/typebox/build/cjs/type/record/record.d.ts +71 -0
  497. package/node_modules/@sinclair/typebox/build/cjs/type/record/record.js +123 -0
  498. package/node_modules/@sinclair/typebox/build/cjs/type/recursive/index.d.ts +1 -0
  499. package/node_modules/@sinclair/typebox/build/cjs/type/recursive/index.js +18 -0
  500. package/node_modules/@sinclair/typebox/build/cjs/type/recursive/recursive.d.ts +16 -0
  501. package/node_modules/@sinclair/typebox/build/cjs/type/recursive/recursive.js +19 -0
  502. package/node_modules/@sinclair/typebox/build/cjs/type/ref/index.d.ts +1 -0
  503. package/node_modules/@sinclair/typebox/build/cjs/type/ref/index.js +18 -0
  504. package/node_modules/@sinclair/typebox/build/cjs/type/ref/ref.d.ts +41 -0
  505. package/node_modules/@sinclair/typebox/build/cjs/type/ref/ref.js +14 -0
  506. package/node_modules/@sinclair/typebox/build/cjs/type/regexp/index.d.ts +1 -0
  507. package/node_modules/@sinclair/typebox/build/cjs/type/regexp/index.js +18 -0
  508. package/node_modules/@sinclair/typebox/build/cjs/type/regexp/regexp.d.ts +20 -0
  509. package/node_modules/@sinclair/typebox/build/cjs/type/regexp/regexp.js +12 -0
  510. package/node_modules/@sinclair/typebox/build/cjs/type/registry/format.d.ts +13 -0
  511. package/node_modules/@sinclair/typebox/build/cjs/type/registry/format.js +35 -0
  512. package/node_modules/@sinclair/typebox/build/cjs/type/registry/index.d.ts +2 -0
  513. package/node_modules/@sinclair/typebox/build/cjs/type/registry/index.js +39 -0
  514. package/node_modules/@sinclair/typebox/build/cjs/type/registry/type.d.ts +13 -0
  515. package/node_modules/@sinclair/typebox/build/cjs/type/registry/type.js +35 -0
  516. package/node_modules/@sinclair/typebox/build/cjs/type/required/index.d.ts +2 -0
  517. package/node_modules/@sinclair/typebox/build/cjs/type/required/index.js +19 -0
  518. package/node_modules/@sinclair/typebox/build/cjs/type/required/required-from-mapped-result.d.ts +12 -0
  519. package/node_modules/@sinclair/typebox/build/cjs/type/required/required-from-mapped-result.js +22 -0
  520. package/node_modules/@sinclair/typebox/build/cjs/type/required/required.d.ts +35 -0
  521. package/node_modules/@sinclair/typebox/build/cjs/type/required/required.js +110 -0
  522. package/node_modules/@sinclair/typebox/build/cjs/type/rest/index.d.ts +1 -0
  523. package/node_modules/@sinclair/typebox/build/cjs/type/rest/index.js +18 -0
  524. package/node_modules/@sinclair/typebox/build/cjs/type/rest/rest.d.ts +10 -0
  525. package/node_modules/@sinclair/typebox/build/cjs/type/rest/rest.js +19 -0
  526. package/node_modules/@sinclair/typebox/build/cjs/type/return-type/index.d.ts +1 -0
  527. package/node_modules/@sinclair/typebox/build/cjs/type/return-type/index.js +18 -0
  528. package/node_modules/@sinclair/typebox/build/cjs/type/return-type/return-type.d.ts +6 -0
  529. package/node_modules/@sinclair/typebox/build/cjs/type/return-type/return-type.js +44 -0
  530. package/node_modules/@sinclair/typebox/build/cjs/type/schema/anyschema.d.ts +33 -0
  531. package/node_modules/@sinclair/typebox/build/cjs/type/schema/anyschema.js +3 -0
  532. package/node_modules/@sinclair/typebox/build/cjs/type/schema/index.d.ts +2 -0
  533. package/node_modules/@sinclair/typebox/build/cjs/type/schema/index.js +19 -0
  534. package/node_modules/@sinclair/typebox/build/cjs/type/schema/schema.d.ts +29 -0
  535. package/node_modules/@sinclair/typebox/build/cjs/type/schema/schema.js +4 -0
  536. package/node_modules/@sinclair/typebox/build/cjs/type/sets/index.d.ts +1 -0
  537. package/node_modules/@sinclair/typebox/build/cjs/type/sets/index.js +18 -0
  538. package/node_modules/@sinclair/typebox/build/cjs/type/sets/set.d.ts +28 -0
  539. package/node_modules/@sinclair/typebox/build/cjs/type/sets/set.js +59 -0
  540. package/node_modules/@sinclair/typebox/build/cjs/type/static/index.d.ts +1 -0
  541. package/node_modules/@sinclair/typebox/build/cjs/type/static/index.js +18 -0
  542. package/node_modules/@sinclair/typebox/build/cjs/type/static/static.d.ts +39 -0
  543. package/node_modules/@sinclair/typebox/build/cjs/type/static/static.js +3 -0
  544. package/node_modules/@sinclair/typebox/build/cjs/type/string/index.d.ts +1 -0
  545. package/node_modules/@sinclair/typebox/build/cjs/type/string/index.js +18 -0
  546. package/node_modules/@sinclair/typebox/build/cjs/type/string/string.d.ts +25 -0
  547. package/node_modules/@sinclair/typebox/build/cjs/type/string/string.js +10 -0
  548. package/node_modules/@sinclair/typebox/build/cjs/type/symbol/index.d.ts +1 -0
  549. package/node_modules/@sinclair/typebox/build/cjs/type/symbol/index.js +18 -0
  550. package/node_modules/@sinclair/typebox/build/cjs/type/symbol/symbol.d.ts +10 -0
  551. package/node_modules/@sinclair/typebox/build/cjs/type/symbol/symbol.js +10 -0
  552. package/node_modules/@sinclair/typebox/build/cjs/type/symbols/index.d.ts +1 -0
  553. package/node_modules/@sinclair/typebox/build/cjs/type/symbols/index.js +18 -0
  554. package/node_modules/@sinclair/typebox/build/cjs/type/symbols/symbols.d.ts +10 -0
  555. package/node_modules/@sinclair/typebox/build/cjs/type/symbols/symbols.js +14 -0
  556. package/node_modules/@sinclair/typebox/build/cjs/type/template-literal/finite.d.ts +19 -0
  557. package/node_modules/@sinclair/typebox/build/cjs/type/template-literal/finite.js +56 -0
  558. package/node_modules/@sinclair/typebox/build/cjs/type/template-literal/generate.d.ts +21 -0
  559. package/node_modules/@sinclair/typebox/build/cjs/type/template-literal/generate.js +60 -0
  560. package/node_modules/@sinclair/typebox/build/cjs/type/template-literal/index.d.ts +7 -0
  561. package/node_modules/@sinclair/typebox/build/cjs/type/template-literal/index.js +24 -0
  562. package/node_modules/@sinclair/typebox/build/cjs/type/template-literal/parse.d.ts +20 -0
  563. package/node_modules/@sinclair/typebox/build/cjs/type/template-literal/parse.js +174 -0
  564. package/node_modules/@sinclair/typebox/build/cjs/type/template-literal/pattern.d.ts +5 -0
  565. package/node_modules/@sinclair/typebox/build/cjs/type/template-literal/pattern.js +39 -0
  566. package/node_modules/@sinclair/typebox/build/cjs/type/template-literal/syntax.d.ts +20 -0
  567. package/node_modules/@sinclair/typebox/build/cjs/type/template-literal/syntax.js +59 -0
  568. package/node_modules/@sinclair/typebox/build/cjs/type/template-literal/template-literal.d.ts +30 -0
  569. package/node_modules/@sinclair/typebox/build/cjs/type/template-literal/template-literal.js +17 -0
  570. package/node_modules/@sinclair/typebox/build/cjs/type/template-literal/union.d.ts +9 -0
  571. package/node_modules/@sinclair/typebox/build/cjs/type/template-literal/union.js +13 -0
  572. package/node_modules/@sinclair/typebox/build/cjs/type/transform/index.d.ts +1 -0
  573. package/node_modules/@sinclair/typebox/build/cjs/type/transform/index.js +18 -0
  574. package/node_modules/@sinclair/typebox/build/cjs/type/transform/transform.d.ts +30 -0
  575. package/node_modules/@sinclair/typebox/build/cjs/type/transform/transform.js +47 -0
  576. package/node_modules/@sinclair/typebox/build/cjs/type/tuple/index.d.ts +1 -0
  577. package/node_modules/@sinclair/typebox/build/cjs/type/tuple/index.js +18 -0
  578. package/node_modules/@sinclair/typebox/build/cjs/type/tuple/tuple.d.ts +16 -0
  579. package/node_modules/@sinclair/typebox/build/cjs/type/tuple/tuple.js +13 -0
  580. package/node_modules/@sinclair/typebox/build/cjs/type/type/index.d.ts +6 -0
  581. package/node_modules/@sinclair/typebox/build/cjs/type/type/index.js +51 -0
  582. package/node_modules/@sinclair/typebox/build/cjs/type/type/javascript.d.ts +64 -0
  583. package/node_modules/@sinclair/typebox/build/cjs/type/type/javascript.js +104 -0
  584. package/node_modules/@sinclair/typebox/build/cjs/type/type/json.d.ts +208 -0
  585. package/node_modules/@sinclair/typebox/build/cjs/type/type/json.js +226 -0
  586. package/node_modules/@sinclair/typebox/build/cjs/type/type/type.d.ts +59 -0
  587. package/node_modules/@sinclair/typebox/build/cjs/type/type/type.js +129 -0
  588. package/node_modules/@sinclair/typebox/build/cjs/type/uint8array/index.d.ts +1 -0
  589. package/node_modules/@sinclair/typebox/build/cjs/type/uint8array/index.js +18 -0
  590. package/node_modules/@sinclair/typebox/build/cjs/type/uint8array/uint8array.d.ts +13 -0
  591. package/node_modules/@sinclair/typebox/build/cjs/type/uint8array/uint8array.js +10 -0
  592. package/node_modules/@sinclair/typebox/build/cjs/type/undefined/index.d.ts +1 -0
  593. package/node_modules/@sinclair/typebox/build/cjs/type/undefined/index.js +18 -0
  594. package/node_modules/@sinclair/typebox/build/cjs/type/undefined/undefined.d.ts +9 -0
  595. package/node_modules/@sinclair/typebox/build/cjs/type/undefined/undefined.js +10 -0
  596. package/node_modules/@sinclair/typebox/build/cjs/type/union/index.d.ts +3 -0
  597. package/node_modules/@sinclair/typebox/build/cjs/type/union/index.js +20 -0
  598. package/node_modules/@sinclair/typebox/build/cjs/type/union/union-create.d.ts +3 -0
  599. package/node_modules/@sinclair/typebox/build/cjs/type/union/union-create.js +9 -0
  600. package/node_modules/@sinclair/typebox/build/cjs/type/union/union-evaluated.d.ts +13 -0
  601. package/node_modules/@sinclair/typebox/build/cjs/type/union/union-evaluated.js +40 -0
  602. package/node_modules/@sinclair/typebox/build/cjs/type/union/union-type.d.ts +12 -0
  603. package/node_modules/@sinclair/typebox/build/cjs/type/union/union-type.js +4 -0
  604. package/node_modules/@sinclair/typebox/build/cjs/type/union/union.d.ts +6 -0
  605. package/node_modules/@sinclair/typebox/build/cjs/type/union/union.js +14 -0
  606. package/node_modules/@sinclair/typebox/build/cjs/type/unknown/index.d.ts +1 -0
  607. package/node_modules/@sinclair/typebox/build/cjs/type/unknown/index.js +18 -0
  608. package/node_modules/@sinclair/typebox/build/cjs/type/unknown/unknown.d.ts +8 -0
  609. package/node_modules/@sinclair/typebox/build/cjs/type/unknown/unknown.js +10 -0
  610. package/node_modules/@sinclair/typebox/build/cjs/type/unsafe/index.d.ts +1 -0
  611. package/node_modules/@sinclair/typebox/build/cjs/type/unsafe/index.js +18 -0
  612. package/node_modules/@sinclair/typebox/build/cjs/type/unsafe/unsafe.d.ts +11 -0
  613. package/node_modules/@sinclair/typebox/build/cjs/type/unsafe/unsafe.js +10 -0
  614. package/node_modules/@sinclair/typebox/build/cjs/type/void/index.d.ts +1 -0
  615. package/node_modules/@sinclair/typebox/build/cjs/type/void/index.js +18 -0
  616. package/node_modules/@sinclair/typebox/build/cjs/type/void/void.d.ts +9 -0
  617. package/node_modules/@sinclair/typebox/build/cjs/type/void/void.js +10 -0
  618. package/node_modules/@sinclair/typebox/build/cjs/value/assert/assert.d.ts +15 -0
  619. package/node_modules/@sinclair/typebox/build/cjs/value/assert/assert.js +55 -0
  620. package/node_modules/@sinclair/typebox/build/cjs/value/assert/index.d.ts +1 -0
  621. package/node_modules/@sinclair/typebox/build/cjs/value/assert/index.js +18 -0
  622. package/node_modules/@sinclair/typebox/build/cjs/value/cast/cast.d.ts +11 -0
  623. package/node_modules/@sinclair/typebox/build/cjs/value/cast/cast.js +241 -0
  624. package/node_modules/@sinclair/typebox/build/cjs/value/cast/index.d.ts +1 -0
  625. package/node_modules/@sinclair/typebox/build/cjs/value/cast/index.js +18 -0
  626. package/node_modules/@sinclair/typebox/build/cjs/value/check/check.d.ts +11 -0
  627. package/node_modules/@sinclair/typebox/build/cjs/value/check/check.js +476 -0
  628. package/node_modules/@sinclair/typebox/build/cjs/value/check/index.d.ts +1 -0
  629. package/node_modules/@sinclair/typebox/build/cjs/value/check/index.js +18 -0
  630. package/node_modules/@sinclair/typebox/build/cjs/value/clean/clean.d.ts +5 -0
  631. package/node_modules/@sinclair/typebox/build/cjs/value/clean/clean.js +149 -0
  632. package/node_modules/@sinclair/typebox/build/cjs/value/clean/index.d.ts +1 -0
  633. package/node_modules/@sinclair/typebox/build/cjs/value/clean/index.js +18 -0
  634. package/node_modules/@sinclair/typebox/build/cjs/value/clone/clone.d.ts +2 -0
  635. package/node_modules/@sinclair/typebox/build/cjs/value/clone/clone.js +60 -0
  636. package/node_modules/@sinclair/typebox/build/cjs/value/clone/index.d.ts +1 -0
  637. package/node_modules/@sinclair/typebox/build/cjs/value/clone/index.js +18 -0
  638. package/node_modules/@sinclair/typebox/build/cjs/value/convert/convert.d.ts +5 -0
  639. package/node_modules/@sinclair/typebox/build/cjs/value/convert/convert.js +264 -0
  640. package/node_modules/@sinclair/typebox/build/cjs/value/convert/index.d.ts +1 -0
  641. package/node_modules/@sinclair/typebox/build/cjs/value/convert/index.js +18 -0
  642. package/node_modules/@sinclair/typebox/build/cjs/value/create/create.d.ts +11 -0
  643. package/node_modules/@sinclair/typebox/build/cjs/value/create/create.js +474 -0
  644. package/node_modules/@sinclair/typebox/build/cjs/value/create/index.d.ts +1 -0
  645. package/node_modules/@sinclair/typebox/build/cjs/value/create/index.js +18 -0
  646. package/node_modules/@sinclair/typebox/build/cjs/value/decode/decode.d.ts +6 -0
  647. package/node_modules/@sinclair/typebox/build/cjs/value/decode/decode.js +14 -0
  648. package/node_modules/@sinclair/typebox/build/cjs/value/decode/index.d.ts +1 -0
  649. package/node_modules/@sinclair/typebox/build/cjs/value/decode/index.js +18 -0
  650. package/node_modules/@sinclair/typebox/build/cjs/value/default/default.d.ts +5 -0
  651. package/node_modules/@sinclair/typebox/build/cjs/value/default/default.js +176 -0
  652. package/node_modules/@sinclair/typebox/build/cjs/value/default/index.d.ts +1 -0
  653. package/node_modules/@sinclair/typebox/build/cjs/value/default/index.js +18 -0
  654. package/node_modules/@sinclair/typebox/build/cjs/value/delta/delta.d.ts +32 -0
  655. package/node_modules/@sinclair/typebox/build/cjs/value/delta/delta.js +178 -0
  656. package/node_modules/@sinclair/typebox/build/cjs/value/delta/index.d.ts +1 -0
  657. package/node_modules/@sinclair/typebox/build/cjs/value/delta/index.js +18 -0
  658. package/node_modules/@sinclair/typebox/build/cjs/value/deref/deref.d.ts +12 -0
  659. package/node_modules/@sinclair/typebox/build/cjs/value/deref/deref.js +36 -0
  660. package/node_modules/@sinclair/typebox/build/cjs/value/deref/index.d.ts +1 -0
  661. package/node_modules/@sinclair/typebox/build/cjs/value/deref/index.js +18 -0
  662. package/node_modules/@sinclair/typebox/build/cjs/value/encode/encode.d.ts +6 -0
  663. package/node_modules/@sinclair/typebox/build/cjs/value/encode/encode.js +15 -0
  664. package/node_modules/@sinclair/typebox/build/cjs/value/encode/index.d.ts +1 -0
  665. package/node_modules/@sinclair/typebox/build/cjs/value/encode/index.js +18 -0
  666. package/node_modules/@sinclair/typebox/build/cjs/value/equal/equal.d.ts +2 -0
  667. package/node_modules/@sinclair/typebox/build/cjs/value/equal/equal.js +50 -0
  668. package/node_modules/@sinclair/typebox/build/cjs/value/equal/index.d.ts +1 -0
  669. package/node_modules/@sinclair/typebox/build/cjs/value/equal/index.js +18 -0
  670. package/node_modules/@sinclair/typebox/build/cjs/value/guard/guard.d.ts +74 -0
  671. package/node_modules/@sinclair/typebox/build/cjs/value/guard/guard.js +195 -0
  672. package/node_modules/@sinclair/typebox/build/cjs/value/guard/index.d.ts +1 -0
  673. package/node_modules/@sinclair/typebox/build/cjs/value/guard/index.js +18 -0
  674. package/node_modules/@sinclair/typebox/build/cjs/value/hash/hash.d.ts +7 -0
  675. package/node_modules/@sinclair/typebox/build/cjs/value/hash/hash.js +152 -0
  676. package/node_modules/@sinclair/typebox/build/cjs/value/hash/index.d.ts +1 -0
  677. package/node_modules/@sinclair/typebox/build/cjs/value/hash/index.js +18 -0
  678. package/node_modules/@sinclair/typebox/build/cjs/value/index.d.ts +20 -0
  679. package/node_modules/@sinclair/typebox/build/cjs/value/index.js +53 -0
  680. package/node_modules/@sinclair/typebox/build/cjs/value/mutate/index.d.ts +1 -0
  681. package/node_modules/@sinclair/typebox/build/cjs/value/mutate/index.js +18 -0
  682. package/node_modules/@sinclair/typebox/build/cjs/value/mutate/mutate.d.ts +9 -0
  683. package/node_modules/@sinclair/typebox/build/cjs/value/mutate/mutate.js +104 -0
  684. package/node_modules/@sinclair/typebox/build/cjs/value/parse/index.d.ts +1 -0
  685. package/node_modules/@sinclair/typebox/build/cjs/value/parse/index.js +18 -0
  686. package/node_modules/@sinclair/typebox/build/cjs/value/parse/parse.d.ts +22 -0
  687. package/node_modules/@sinclair/typebox/build/cjs/value/parse/parse.js +87 -0
  688. package/node_modules/@sinclair/typebox/build/cjs/value/pointer/index.d.ts +1 -0
  689. package/node_modules/@sinclair/typebox/build/cjs/value/pointer/index.js +38 -0
  690. package/node_modules/@sinclair/typebox/build/cjs/value/pointer/pointer.d.ts +22 -0
  691. package/node_modules/@sinclair/typebox/build/cjs/value/pointer/pointer.js +126 -0
  692. package/node_modules/@sinclair/typebox/build/cjs/value/transform/decode.d.ts +22 -0
  693. package/node_modules/@sinclair/typebox/build/cjs/value/transform/decode.js +214 -0
  694. package/node_modules/@sinclair/typebox/build/cjs/value/transform/encode.d.ts +23 -0
  695. package/node_modules/@sinclair/typebox/build/cjs/value/transform/encode.js +225 -0
  696. package/node_modules/@sinclair/typebox/build/cjs/value/transform/has.d.ts +3 -0
  697. package/node_modules/@sinclair/typebox/build/cjs/value/transform/has.js +133 -0
  698. package/node_modules/@sinclair/typebox/build/cjs/value/transform/index.d.ts +3 -0
  699. package/node_modules/@sinclair/typebox/build/cjs/value/transform/index.js +20 -0
  700. package/node_modules/@sinclair/typebox/build/cjs/value/value/index.d.ts +1 -0
  701. package/node_modules/@sinclair/typebox/build/cjs/value/value/index.js +38 -0
  702. package/node_modules/@sinclair/typebox/build/cjs/value/value/value.d.ts +16 -0
  703. package/node_modules/@sinclair/typebox/build/cjs/value/value/value.js +39 -0
  704. package/node_modules/@sinclair/typebox/build/esm/compiler/compiler.d.mts +55 -0
  705. package/node_modules/@sinclair/typebox/build/esm/compiler/compiler.mjs +663 -0
  706. package/node_modules/@sinclair/typebox/build/esm/compiler/index.d.mts +2 -0
  707. package/node_modules/@sinclair/typebox/build/esm/compiler/index.mjs +2 -0
  708. package/node_modules/@sinclair/typebox/build/esm/errors/errors.d.mts +91 -0
  709. package/node_modules/@sinclair/typebox/build/esm/errors/errors.mjs +592 -0
  710. package/node_modules/@sinclair/typebox/build/esm/errors/function.d.mts +21 -0
  711. package/node_modules/@sinclair/typebox/build/esm/errors/function.mjs +147 -0
  712. package/node_modules/@sinclair/typebox/build/esm/errors/index.d.mts +2 -0
  713. package/node_modules/@sinclair/typebox/build/esm/errors/index.mjs +2 -0
  714. package/node_modules/@sinclair/typebox/build/esm/index.d.mts +71 -0
  715. package/node_modules/@sinclair/typebox/build/esm/index.mjs +80 -0
  716. package/node_modules/@sinclair/typebox/build/esm/parser/index.d.mts +2 -0
  717. package/node_modules/@sinclair/typebox/build/esm/parser/index.mjs +2 -0
  718. package/node_modules/@sinclair/typebox/build/esm/parser/runtime/guard.d.mts +23 -0
  719. package/node_modules/@sinclair/typebox/build/esm/parser/runtime/guard.mjs +72 -0
  720. package/node_modules/@sinclair/typebox/build/esm/parser/runtime/index.d.mts +5 -0
  721. package/node_modules/@sinclair/typebox/build/esm/parser/runtime/index.mjs +5 -0
  722. package/node_modules/@sinclair/typebox/build/esm/parser/runtime/module.d.mts +9 -0
  723. package/node_modules/@sinclair/typebox/build/esm/parser/runtime/module.mjs +17 -0
  724. package/node_modules/@sinclair/typebox/build/esm/parser/runtime/parse.d.mts +9 -0
  725. package/node_modules/@sinclair/typebox/build/esm/parser/runtime/parse.mjs +123 -0
  726. package/node_modules/@sinclair/typebox/build/esm/parser/runtime/token.d.mts +8 -0
  727. package/node_modules/@sinclair/typebox/build/esm/parser/runtime/token.mjs +223 -0
  728. package/node_modules/@sinclair/typebox/build/esm/parser/runtime/types.d.mts +98 -0
  729. package/node_modules/@sinclair/typebox/build/esm/parser/runtime/types.mjs +55 -0
  730. package/node_modules/@sinclair/typebox/build/esm/parser/static/index.d.mts +3 -0
  731. package/node_modules/@sinclair/typebox/build/esm/parser/static/index.mjs +3 -0
  732. package/node_modules/@sinclair/typebox/build/esm/parser/static/parse.d.mts +20 -0
  733. package/node_modules/@sinclair/typebox/build/esm/parser/static/parse.mjs +1 -0
  734. package/node_modules/@sinclair/typebox/build/esm/parser/static/token.d.mts +108 -0
  735. package/node_modules/@sinclair/typebox/build/esm/parser/static/token.mjs +1 -0
  736. package/node_modules/@sinclair/typebox/build/esm/parser/static/types.d.mts +69 -0
  737. package/node_modules/@sinclair/typebox/build/esm/parser/static/types.mjs +1 -0
  738. package/node_modules/@sinclair/typebox/build/esm/syntax/index.d.mts +1 -0
  739. package/node_modules/@sinclair/typebox/build/esm/syntax/index.mjs +1 -0
  740. package/node_modules/@sinclair/typebox/build/esm/syntax/mapping.d.mts +167 -0
  741. package/node_modules/@sinclair/typebox/build/esm/syntax/mapping.mjs +386 -0
  742. package/node_modules/@sinclair/typebox/build/esm/syntax/parser.d.mts +162 -0
  743. package/node_modules/@sinclair/typebox/build/esm/syntax/parser.mjs +78 -0
  744. package/node_modules/@sinclair/typebox/build/esm/syntax/syntax.d.mts +12 -0
  745. package/node_modules/@sinclair/typebox/build/esm/syntax/syntax.mjs +16 -0
  746. package/node_modules/@sinclair/typebox/build/esm/system/index.d.mts +2 -0
  747. package/node_modules/@sinclair/typebox/build/esm/system/index.mjs +2 -0
  748. package/node_modules/@sinclair/typebox/build/esm/system/policy.d.mts +29 -0
  749. package/node_modules/@sinclair/typebox/build/esm/system/policy.mjs +54 -0
  750. package/node_modules/@sinclair/typebox/build/esm/system/system.d.mts +16 -0
  751. package/node_modules/@sinclair/typebox/build/esm/system/system.mjs +37 -0
  752. package/node_modules/@sinclair/typebox/build/esm/type/any/any.d.mts +8 -0
  753. package/node_modules/@sinclair/typebox/build/esm/type/any/any.mjs +6 -0
  754. package/node_modules/@sinclair/typebox/build/esm/type/any/index.d.mts +1 -0
  755. package/node_modules/@sinclair/typebox/build/esm/type/any/index.mjs +1 -0
  756. package/node_modules/@sinclair/typebox/build/esm/type/argument/argument.d.mts +9 -0
  757. package/node_modules/@sinclair/typebox/build/esm/type/argument/argument.mjs +6 -0
  758. package/node_modules/@sinclair/typebox/build/esm/type/argument/index.d.mts +1 -0
  759. package/node_modules/@sinclair/typebox/build/esm/type/argument/index.mjs +1 -0
  760. package/node_modules/@sinclair/typebox/build/esm/type/array/array.d.mts +28 -0
  761. package/node_modules/@sinclair/typebox/build/esm/type/array/array.mjs +6 -0
  762. package/node_modules/@sinclair/typebox/build/esm/type/array/index.d.mts +1 -0
  763. package/node_modules/@sinclair/typebox/build/esm/type/array/index.mjs +1 -0
  764. package/node_modules/@sinclair/typebox/build/esm/type/async-iterator/async-iterator.d.mts +11 -0
  765. package/node_modules/@sinclair/typebox/build/esm/type/async-iterator/async-iterator.mjs +6 -0
  766. package/node_modules/@sinclair/typebox/build/esm/type/async-iterator/index.d.mts +1 -0
  767. package/node_modules/@sinclair/typebox/build/esm/type/async-iterator/index.mjs +1 -0
  768. package/node_modules/@sinclair/typebox/build/esm/type/awaited/awaited.d.mts +14 -0
  769. package/node_modules/@sinclair/typebox/build/esm/type/awaited/awaited.mjs +37 -0
  770. package/node_modules/@sinclair/typebox/build/esm/type/awaited/index.d.mts +1 -0
  771. package/node_modules/@sinclair/typebox/build/esm/type/awaited/index.mjs +1 -0
  772. package/node_modules/@sinclair/typebox/build/esm/type/bigint/bigint.d.mts +16 -0
  773. package/node_modules/@sinclair/typebox/build/esm/type/bigint/bigint.mjs +6 -0
  774. package/node_modules/@sinclair/typebox/build/esm/type/bigint/index.d.mts +1 -0
  775. package/node_modules/@sinclair/typebox/build/esm/type/bigint/index.mjs +1 -0
  776. package/node_modules/@sinclair/typebox/build/esm/type/boolean/boolean.d.mts +9 -0
  777. package/node_modules/@sinclair/typebox/build/esm/type/boolean/boolean.mjs +6 -0
  778. package/node_modules/@sinclair/typebox/build/esm/type/boolean/index.d.mts +1 -0
  779. package/node_modules/@sinclair/typebox/build/esm/type/boolean/index.mjs +1 -0
  780. package/node_modules/@sinclair/typebox/build/esm/type/clone/index.d.mts +2 -0
  781. package/node_modules/@sinclair/typebox/build/esm/type/clone/index.mjs +2 -0
  782. package/node_modules/@sinclair/typebox/build/esm/type/clone/type.d.mts +5 -0
  783. package/node_modules/@sinclair/typebox/build/esm/type/clone/type.mjs +9 -0
  784. package/node_modules/@sinclair/typebox/build/esm/type/clone/value.d.mts +2 -0
  785. package/node_modules/@sinclair/typebox/build/esm/type/clone/value.mjs +36 -0
  786. package/node_modules/@sinclair/typebox/build/esm/type/composite/composite.d.mts +18 -0
  787. package/node_modules/@sinclair/typebox/build/esm/type/composite/composite.mjs +42 -0
  788. package/node_modules/@sinclair/typebox/build/esm/type/composite/index.d.mts +1 -0
  789. package/node_modules/@sinclair/typebox/build/esm/type/composite/index.mjs +1 -0
  790. package/node_modules/@sinclair/typebox/build/esm/type/computed/computed.d.mts +9 -0
  791. package/node_modules/@sinclair/typebox/build/esm/type/computed/computed.mjs +6 -0
  792. package/node_modules/@sinclair/typebox/build/esm/type/computed/index.d.mts +1 -0
  793. package/node_modules/@sinclair/typebox/build/esm/type/computed/index.mjs +1 -0
  794. package/node_modules/@sinclair/typebox/build/esm/type/const/const.d.mts +27 -0
  795. package/node_modules/@sinclair/typebox/build/esm/type/const/const.mjs +54 -0
  796. package/node_modules/@sinclair/typebox/build/esm/type/const/index.d.mts +1 -0
  797. package/node_modules/@sinclair/typebox/build/esm/type/const/index.mjs +1 -0
  798. package/node_modules/@sinclair/typebox/build/esm/type/constructor/constructor.d.mts +23 -0
  799. package/node_modules/@sinclair/typebox/build/esm/type/constructor/constructor.mjs +6 -0
  800. package/node_modules/@sinclair/typebox/build/esm/type/constructor/index.d.mts +1 -0
  801. package/node_modules/@sinclair/typebox/build/esm/type/constructor/index.mjs +1 -0
  802. package/node_modules/@sinclair/typebox/build/esm/type/constructor-parameters/constructor-parameters.d.mts +7 -0
  803. package/node_modules/@sinclair/typebox/build/esm/type/constructor-parameters/constructor-parameters.mjs +7 -0
  804. package/node_modules/@sinclair/typebox/build/esm/type/constructor-parameters/index.d.mts +1 -0
  805. package/node_modules/@sinclair/typebox/build/esm/type/constructor-parameters/index.mjs +1 -0
  806. package/node_modules/@sinclair/typebox/build/esm/type/create/immutable.d.mts +2 -0
  807. package/node_modules/@sinclair/typebox/build/esm/type/create/immutable.mjs +33 -0
  808. package/node_modules/@sinclair/typebox/build/esm/type/create/index.d.mts +1 -0
  809. package/node_modules/@sinclair/typebox/build/esm/type/create/index.mjs +1 -0
  810. package/node_modules/@sinclair/typebox/build/esm/type/create/type.d.mts +3 -0
  811. package/node_modules/@sinclair/typebox/build/esm/type/create/type.mjs +15 -0
  812. package/node_modules/@sinclair/typebox/build/esm/type/date/date.d.mts +21 -0
  813. package/node_modules/@sinclair/typebox/build/esm/type/date/date.mjs +6 -0
  814. package/node_modules/@sinclair/typebox/build/esm/type/date/index.d.mts +1 -0
  815. package/node_modules/@sinclair/typebox/build/esm/type/date/index.mjs +1 -0
  816. package/node_modules/@sinclair/typebox/build/esm/type/discard/discard.d.mts +2 -0
  817. package/node_modules/@sinclair/typebox/build/esm/type/discard/discard.mjs +8 -0
  818. package/node_modules/@sinclair/typebox/build/esm/type/discard/index.d.mts +1 -0
  819. package/node_modules/@sinclair/typebox/build/esm/type/discard/index.mjs +1 -0
  820. package/node_modules/@sinclair/typebox/build/esm/type/enum/enum.d.mts +14 -0
  821. package/node_modules/@sinclair/typebox/build/esm/type/enum/enum.mjs +18 -0
  822. package/node_modules/@sinclair/typebox/build/esm/type/enum/index.d.mts +1 -0
  823. package/node_modules/@sinclair/typebox/build/esm/type/enum/index.mjs +1 -0
  824. package/node_modules/@sinclair/typebox/build/esm/type/error/error.d.mts +4 -0
  825. package/node_modules/@sinclair/typebox/build/esm/type/error/error.mjs +6 -0
  826. package/node_modules/@sinclair/typebox/build/esm/type/error/index.d.mts +1 -0
  827. package/node_modules/@sinclair/typebox/build/esm/type/error/index.mjs +1 -0
  828. package/node_modules/@sinclair/typebox/build/esm/type/exclude/exclude-from-mapped-result.d.mts +11 -0
  829. package/node_modules/@sinclair/typebox/build/esm/type/exclude/exclude-from-mapped-result.mjs +18 -0
  830. package/node_modules/@sinclair/typebox/build/esm/type/exclude/exclude-from-template-literal.d.mts +5 -0
  831. package/node_modules/@sinclair/typebox/build/esm/type/exclude/exclude-from-template-literal.mjs +5 -0
  832. package/node_modules/@sinclair/typebox/build/esm/type/exclude/exclude.d.mts +21 -0
  833. package/node_modules/@sinclair/typebox/build/esm/type/exclude/exclude.mjs +25 -0
  834. package/node_modules/@sinclair/typebox/build/esm/type/exclude/index.d.mts +3 -0
  835. package/node_modules/@sinclair/typebox/build/esm/type/exclude/index.mjs +3 -0
  836. package/node_modules/@sinclair/typebox/build/esm/type/extends/extends-check.d.mts +10 -0
  837. package/node_modules/@sinclair/typebox/build/esm/type/extends/extends-check.mjs +635 -0
  838. package/node_modules/@sinclair/typebox/build/esm/type/extends/extends-from-mapped-key.d.mts +14 -0
  839. package/node_modules/@sinclair/typebox/build/esm/type/extends/extends-from-mapped-key.mjs +25 -0
  840. package/node_modules/@sinclair/typebox/build/esm/type/extends/extends-from-mapped-result.d.mts +11 -0
  841. package/node_modules/@sinclair/typebox/build/esm/type/extends/extends-from-mapped-result.mjs +19 -0
  842. package/node_modules/@sinclair/typebox/build/esm/type/extends/extends-undefined.d.mts +3 -0
  843. package/node_modules/@sinclair/typebox/build/esm/type/extends/extends-undefined.mjs +20 -0
  844. package/node_modules/@sinclair/typebox/build/esm/type/extends/extends.d.mts +16 -0
  845. package/node_modules/@sinclair/typebox/build/esm/type/extends/extends.mjs +23 -0
  846. package/node_modules/@sinclair/typebox/build/esm/type/extends/index.d.mts +5 -0
  847. package/node_modules/@sinclair/typebox/build/esm/type/extends/index.mjs +5 -0
  848. package/node_modules/@sinclair/typebox/build/esm/type/extract/extract-from-mapped-result.d.mts +11 -0
  849. package/node_modules/@sinclair/typebox/build/esm/type/extract/extract-from-mapped-result.mjs +18 -0
  850. package/node_modules/@sinclair/typebox/build/esm/type/extract/extract-from-template-literal.d.mts +5 -0
  851. package/node_modules/@sinclair/typebox/build/esm/type/extract/extract-from-template-literal.mjs +5 -0
  852. package/node_modules/@sinclair/typebox/build/esm/type/extract/extract.d.mts +21 -0
  853. package/node_modules/@sinclair/typebox/build/esm/type/extract/extract.mjs +25 -0
  854. package/node_modules/@sinclair/typebox/build/esm/type/extract/index.d.mts +3 -0
  855. package/node_modules/@sinclair/typebox/build/esm/type/extract/index.mjs +3 -0
  856. package/node_modules/@sinclair/typebox/build/esm/type/function/function.d.mts +23 -0
  857. package/node_modules/@sinclair/typebox/build/esm/type/function/function.mjs +6 -0
  858. package/node_modules/@sinclair/typebox/build/esm/type/function/index.d.mts +1 -0
  859. package/node_modules/@sinclair/typebox/build/esm/type/function/index.mjs +1 -0
  860. package/node_modules/@sinclair/typebox/build/esm/type/guard/index.d.mts +3 -0
  861. package/node_modules/@sinclair/typebox/build/esm/type/guard/index.mjs +3 -0
  862. package/node_modules/@sinclair/typebox/build/esm/type/guard/kind.d.mts +147 -0
  863. package/node_modules/@sinclair/typebox/build/esm/type/guard/kind.mjs +235 -0
  864. package/node_modules/@sinclair/typebox/build/esm/type/guard/type.d.mts +152 -0
  865. package/node_modules/@sinclair/typebox/build/esm/type/guard/type.mjs +509 -0
  866. package/node_modules/@sinclair/typebox/build/esm/type/guard/value.d.mts +34 -0
  867. package/node_modules/@sinclair/typebox/build/esm/type/guard/value.mjs +70 -0
  868. package/node_modules/@sinclair/typebox/build/esm/type/helpers/helpers.d.mts +42 -0
  869. package/node_modules/@sinclair/typebox/build/esm/type/helpers/helpers.mjs +4 -0
  870. package/node_modules/@sinclair/typebox/build/esm/type/helpers/index.d.mts +1 -0
  871. package/node_modules/@sinclair/typebox/build/esm/type/helpers/index.mjs +1 -0
  872. package/node_modules/@sinclair/typebox/build/esm/type/index.d.mts +71 -0
  873. package/node_modules/@sinclair/typebox/build/esm/type/index.mjs +71 -0
  874. package/node_modules/@sinclair/typebox/build/esm/type/indexed/index.d.mts +4 -0
  875. package/node_modules/@sinclair/typebox/build/esm/type/indexed/index.mjs +4 -0
  876. package/node_modules/@sinclair/typebox/build/esm/type/indexed/indexed-from-mapped-key.d.mts +13 -0
  877. package/node_modules/@sinclair/typebox/build/esm/type/indexed/indexed-from-mapped-key.mjs +22 -0
  878. package/node_modules/@sinclair/typebox/build/esm/type/indexed/indexed-from-mapped-result.d.mts +12 -0
  879. package/node_modules/@sinclair/typebox/build/esm/type/indexed/indexed-from-mapped-result.mjs +20 -0
  880. package/node_modules/@sinclair/typebox/build/esm/type/indexed/indexed-property-keys.d.mts +14 -0
  881. package/node_modules/@sinclair/typebox/build/esm/type/indexed/indexed-property-keys.mjs +32 -0
  882. package/node_modules/@sinclair/typebox/build/esm/type/indexed/indexed.d.mts +52 -0
  883. package/node_modules/@sinclair/typebox/build/esm/type/indexed/indexed.mjs +91 -0
  884. package/node_modules/@sinclair/typebox/build/esm/type/instance-type/index.d.mts +1 -0
  885. package/node_modules/@sinclair/typebox/build/esm/type/instance-type/index.mjs +1 -0
  886. package/node_modules/@sinclair/typebox/build/esm/type/instance-type/instance-type.d.mts +6 -0
  887. package/node_modules/@sinclair/typebox/build/esm/type/instance-type/instance-type.mjs +7 -0
  888. package/node_modules/@sinclair/typebox/build/esm/type/instantiate/index.d.mts +1 -0
  889. package/node_modules/@sinclair/typebox/build/esm/type/instantiate/index.mjs +1 -0
  890. package/node_modules/@sinclair/typebox/build/esm/type/instantiate/instantiate.d.mts +50 -0
  891. package/node_modules/@sinclair/typebox/build/esm/type/instantiate/instantiate.mjs +115 -0
  892. package/node_modules/@sinclair/typebox/build/esm/type/integer/index.d.mts +1 -0
  893. package/node_modules/@sinclair/typebox/build/esm/type/integer/index.mjs +1 -0
  894. package/node_modules/@sinclair/typebox/build/esm/type/integer/integer.d.mts +16 -0
  895. package/node_modules/@sinclair/typebox/build/esm/type/integer/integer.mjs +6 -0
  896. package/node_modules/@sinclair/typebox/build/esm/type/intersect/index.d.mts +3 -0
  897. package/node_modules/@sinclair/typebox/build/esm/type/intersect/index.mjs +3 -0
  898. package/node_modules/@sinclair/typebox/build/esm/type/intersect/intersect-create.d.mts +3 -0
  899. package/node_modules/@sinclair/typebox/build/esm/type/intersect/intersect-create.mjs +19 -0
  900. package/node_modules/@sinclair/typebox/build/esm/type/intersect/intersect-evaluated.d.mts +13 -0
  901. package/node_modules/@sinclair/typebox/build/esm/type/intersect/intersect-evaluated.mjs +38 -0
  902. package/node_modules/@sinclair/typebox/build/esm/type/intersect/intersect-type.d.mts +15 -0
  903. package/node_modules/@sinclair/typebox/build/esm/type/intersect/intersect-type.mjs +1 -0
  904. package/node_modules/@sinclair/typebox/build/esm/type/intersect/intersect.d.mts +6 -0
  905. package/node_modules/@sinclair/typebox/build/esm/type/intersect/intersect.mjs +17 -0
  906. package/node_modules/@sinclair/typebox/build/esm/type/intrinsic/capitalize.d.mts +5 -0
  907. package/node_modules/@sinclair/typebox/build/esm/type/intrinsic/capitalize.mjs +5 -0
  908. package/node_modules/@sinclair/typebox/build/esm/type/intrinsic/index.d.mts +6 -0
  909. package/node_modules/@sinclair/typebox/build/esm/type/intrinsic/index.mjs +6 -0
  910. package/node_modules/@sinclair/typebox/build/esm/type/intrinsic/intrinsic-from-mapped-key.d.mts +14 -0
  911. package/node_modules/@sinclair/typebox/build/esm/type/intrinsic/intrinsic-from-mapped-key.mjs +26 -0
  912. package/node_modules/@sinclair/typebox/build/esm/type/intrinsic/intrinsic.d.mts +16 -0
  913. package/node_modules/@sinclair/typebox/build/esm/type/intrinsic/intrinsic.mjs +64 -0
  914. package/node_modules/@sinclair/typebox/build/esm/type/intrinsic/lowercase.d.mts +5 -0
  915. package/node_modules/@sinclair/typebox/build/esm/type/intrinsic/lowercase.mjs +5 -0
  916. package/node_modules/@sinclair/typebox/build/esm/type/intrinsic/uncapitalize.d.mts +5 -0
  917. package/node_modules/@sinclair/typebox/build/esm/type/intrinsic/uncapitalize.mjs +5 -0
  918. package/node_modules/@sinclair/typebox/build/esm/type/intrinsic/uppercase.d.mts +5 -0
  919. package/node_modules/@sinclair/typebox/build/esm/type/intrinsic/uppercase.mjs +5 -0
  920. package/node_modules/@sinclair/typebox/build/esm/type/iterator/index.d.mts +1 -0
  921. package/node_modules/@sinclair/typebox/build/esm/type/iterator/index.mjs +1 -0
  922. package/node_modules/@sinclair/typebox/build/esm/type/iterator/iterator.d.mts +11 -0
  923. package/node_modules/@sinclair/typebox/build/esm/type/iterator/iterator.mjs +6 -0
  924. package/node_modules/@sinclair/typebox/build/esm/type/keyof/index.d.mts +4 -0
  925. package/node_modules/@sinclair/typebox/build/esm/type/keyof/index.mjs +4 -0
  926. package/node_modules/@sinclair/typebox/build/esm/type/keyof/keyof-from-mapped-result.d.mts +12 -0
  927. package/node_modules/@sinclair/typebox/build/esm/type/keyof/keyof-from-mapped-result.mjs +19 -0
  928. package/node_modules/@sinclair/typebox/build/esm/type/keyof/keyof-property-entries.d.mts +7 -0
  929. package/node_modules/@sinclair/typebox/build/esm/type/keyof/keyof-property-entries.mjs +12 -0
  930. package/node_modules/@sinclair/typebox/build/esm/type/keyof/keyof-property-keys.d.mts +24 -0
  931. package/node_modules/@sinclair/typebox/build/esm/type/keyof/keyof-property-keys.mjs +73 -0
  932. package/node_modules/@sinclair/typebox/build/esm/type/keyof/keyof.d.mts +21 -0
  933. package/node_modules/@sinclair/typebox/build/esm/type/keyof/keyof.mjs +35 -0
  934. package/node_modules/@sinclair/typebox/build/esm/type/literal/index.d.mts +1 -0
  935. package/node_modules/@sinclair/typebox/build/esm/type/literal/index.mjs +1 -0
  936. package/node_modules/@sinclair/typebox/build/esm/type/literal/literal.d.mts +10 -0
  937. package/node_modules/@sinclair/typebox/build/esm/type/literal/literal.mjs +10 -0
  938. package/node_modules/@sinclair/typebox/build/esm/type/mapped/index.d.mts +3 -0
  939. package/node_modules/@sinclair/typebox/build/esm/type/mapped/index.mjs +3 -0
  940. package/node_modules/@sinclair/typebox/build/esm/type/mapped/mapped-key.d.mts +8 -0
  941. package/node_modules/@sinclair/typebox/build/esm/type/mapped/mapped-key.mjs +9 -0
  942. package/node_modules/@sinclair/typebox/build/esm/type/mapped/mapped-result.d.mts +9 -0
  943. package/node_modules/@sinclair/typebox/build/esm/type/mapped/mapped-result.mjs +9 -0
  944. package/node_modules/@sinclair/typebox/build/esm/type/mapped/mapped.d.mts +47 -0
  945. package/node_modules/@sinclair/typebox/build/esm/type/mapped/mapped.mjs +102 -0
  946. package/node_modules/@sinclair/typebox/build/esm/type/module/compute.d.mts +59 -0
  947. package/node_modules/@sinclair/typebox/build/esm/type/module/compute.mjs +166 -0
  948. package/node_modules/@sinclair/typebox/build/esm/type/module/index.d.mts +1 -0
  949. package/node_modules/@sinclair/typebox/build/esm/type/module/index.mjs +1 -0
  950. package/node_modules/@sinclair/typebox/build/esm/type/module/infer.d.mts +49 -0
  951. package/node_modules/@sinclair/typebox/build/esm/type/module/infer.mjs +1 -0
  952. package/node_modules/@sinclair/typebox/build/esm/type/module/module.d.mts +27 -0
  953. package/node_modules/@sinclair/typebox/build/esm/type/module/module.mjs +32 -0
  954. package/node_modules/@sinclair/typebox/build/esm/type/never/index.d.mts +1 -0
  955. package/node_modules/@sinclair/typebox/build/esm/type/never/index.mjs +1 -0
  956. package/node_modules/@sinclair/typebox/build/esm/type/never/never.d.mts +9 -0
  957. package/node_modules/@sinclair/typebox/build/esm/type/never/never.mjs +6 -0
  958. package/node_modules/@sinclair/typebox/build/esm/type/not/index.d.mts +1 -0
  959. package/node_modules/@sinclair/typebox/build/esm/type/not/index.mjs +1 -0
  960. package/node_modules/@sinclair/typebox/build/esm/type/not/not.d.mts +10 -0
  961. package/node_modules/@sinclair/typebox/build/esm/type/not/not.mjs +6 -0
  962. package/node_modules/@sinclair/typebox/build/esm/type/null/index.d.mts +1 -0
  963. package/node_modules/@sinclair/typebox/build/esm/type/null/index.mjs +1 -0
  964. package/node_modules/@sinclair/typebox/build/esm/type/null/null.d.mts +9 -0
  965. package/node_modules/@sinclair/typebox/build/esm/type/null/null.mjs +6 -0
  966. package/node_modules/@sinclair/typebox/build/esm/type/number/index.d.mts +1 -0
  967. package/node_modules/@sinclair/typebox/build/esm/type/number/index.mjs +1 -0
  968. package/node_modules/@sinclair/typebox/build/esm/type/number/number.d.mts +16 -0
  969. package/node_modules/@sinclair/typebox/build/esm/type/number/number.mjs +6 -0
  970. package/node_modules/@sinclair/typebox/build/esm/type/object/index.d.mts +1 -0
  971. package/node_modules/@sinclair/typebox/build/esm/type/object/index.mjs +1 -0
  972. package/node_modules/@sinclair/typebox/build/esm/type/object/object.d.mts +51 -0
  973. package/node_modules/@sinclair/typebox/build/esm/type/object/object.mjs +18 -0
  974. package/node_modules/@sinclair/typebox/build/esm/type/omit/index.d.mts +3 -0
  975. package/node_modules/@sinclair/typebox/build/esm/type/omit/index.mjs +3 -0
  976. package/node_modules/@sinclair/typebox/build/esm/type/omit/omit-from-mapped-key.d.mts +12 -0
  977. package/node_modules/@sinclair/typebox/build/esm/type/omit/omit-from-mapped-key.mjs +22 -0
  978. package/node_modules/@sinclair/typebox/build/esm/type/omit/omit-from-mapped-result.d.mts +12 -0
  979. package/node_modules/@sinclair/typebox/build/esm/type/omit/omit-from-mapped-result.mjs +19 -0
  980. package/node_modules/@sinclair/typebox/build/esm/type/omit/omit.d.mts +36 -0
  981. package/node_modules/@sinclair/typebox/build/esm/type/omit/omit.mjs +71 -0
  982. package/node_modules/@sinclair/typebox/build/esm/type/optional/index.d.mts +2 -0
  983. package/node_modules/@sinclair/typebox/build/esm/type/optional/index.mjs +2 -0
  984. package/node_modules/@sinclair/typebox/build/esm/type/optional/optional-from-mapped-result.d.mts +10 -0
  985. package/node_modules/@sinclair/typebox/build/esm/type/optional/optional-from-mapped-result.mjs +18 -0
  986. package/node_modules/@sinclair/typebox/build/esm/type/optional/optional.d.mts +20 -0
  987. package/node_modules/@sinclair/typebox/build/esm/type/optional/optional.mjs +22 -0
  988. package/node_modules/@sinclair/typebox/build/esm/type/parameters/index.d.mts +1 -0
  989. package/node_modules/@sinclair/typebox/build/esm/type/parameters/index.mjs +1 -0
  990. package/node_modules/@sinclair/typebox/build/esm/type/parameters/parameters.d.mts +7 -0
  991. package/node_modules/@sinclair/typebox/build/esm/type/parameters/parameters.mjs +7 -0
  992. package/node_modules/@sinclair/typebox/build/esm/type/partial/index.d.mts +2 -0
  993. package/node_modules/@sinclair/typebox/build/esm/type/partial/index.mjs +2 -0
  994. package/node_modules/@sinclair/typebox/build/esm/type/partial/partial-from-mapped-result.d.mts +12 -0
  995. package/node_modules/@sinclair/typebox/build/esm/type/partial/partial-from-mapped-result.mjs +19 -0
  996. package/node_modules/@sinclair/typebox/build/esm/type/partial/partial.d.mts +35 -0
  997. package/node_modules/@sinclair/typebox/build/esm/type/partial/partial.mjs +74 -0
  998. package/node_modules/@sinclair/typebox/build/esm/type/patterns/index.d.mts +1 -0
  999. package/node_modules/@sinclair/typebox/build/esm/type/patterns/index.mjs +1 -0
  1000. package/node_modules/@sinclair/typebox/build/esm/type/patterns/patterns.d.mts +8 -0
  1001. package/node_modules/@sinclair/typebox/build/esm/type/patterns/patterns.mjs +8 -0
  1002. package/node_modules/@sinclair/typebox/build/esm/type/pick/index.d.mts +3 -0
  1003. package/node_modules/@sinclair/typebox/build/esm/type/pick/index.mjs +3 -0
  1004. package/node_modules/@sinclair/typebox/build/esm/type/pick/pick-from-mapped-key.d.mts +12 -0
  1005. package/node_modules/@sinclair/typebox/build/esm/type/pick/pick-from-mapped-key.mjs +24 -0
  1006. package/node_modules/@sinclair/typebox/build/esm/type/pick/pick-from-mapped-result.d.mts +12 -0
  1007. package/node_modules/@sinclair/typebox/build/esm/type/pick/pick-from-mapped-result.mjs +19 -0
  1008. package/node_modules/@sinclair/typebox/build/esm/type/pick/pick.d.mts +36 -0
  1009. package/node_modules/@sinclair/typebox/build/esm/type/pick/pick.mjs +66 -0
  1010. package/node_modules/@sinclair/typebox/build/esm/type/promise/index.d.mts +1 -0
  1011. package/node_modules/@sinclair/typebox/build/esm/type/promise/index.mjs +1 -0
  1012. package/node_modules/@sinclair/typebox/build/esm/type/promise/promise.d.mts +11 -0
  1013. package/node_modules/@sinclair/typebox/build/esm/type/promise/promise.mjs +6 -0
  1014. package/node_modules/@sinclair/typebox/build/esm/type/readonly/index.d.mts +2 -0
  1015. package/node_modules/@sinclair/typebox/build/esm/type/readonly/index.mjs +2 -0
  1016. package/node_modules/@sinclair/typebox/build/esm/type/readonly/readonly-from-mapped-result.d.mts +10 -0
  1017. package/node_modules/@sinclair/typebox/build/esm/type/readonly/readonly-from-mapped-result.mjs +18 -0
  1018. package/node_modules/@sinclair/typebox/build/esm/type/readonly/readonly.d.mts +20 -0
  1019. package/node_modules/@sinclair/typebox/build/esm/type/readonly/readonly.mjs +22 -0
  1020. package/node_modules/@sinclair/typebox/build/esm/type/readonly-optional/index.d.mts +1 -0
  1021. package/node_modules/@sinclair/typebox/build/esm/type/readonly-optional/index.mjs +1 -0
  1022. package/node_modules/@sinclair/typebox/build/esm/type/readonly-optional/readonly-optional.d.mts +6 -0
  1023. package/node_modules/@sinclair/typebox/build/esm/type/readonly-optional/readonly-optional.mjs +6 -0
  1024. package/node_modules/@sinclair/typebox/build/esm/type/record/index.d.mts +1 -0
  1025. package/node_modules/@sinclair/typebox/build/esm/type/record/index.mjs +1 -0
  1026. package/node_modules/@sinclair/typebox/build/esm/type/record/record.d.mts +71 -0
  1027. package/node_modules/@sinclair/typebox/build/esm/type/record/record.mjs +116 -0
  1028. package/node_modules/@sinclair/typebox/build/esm/type/recursive/index.d.mts +1 -0
  1029. package/node_modules/@sinclair/typebox/build/esm/type/recursive/index.mjs +1 -0
  1030. package/node_modules/@sinclair/typebox/build/esm/type/recursive/recursive.d.mts +16 -0
  1031. package/node_modules/@sinclair/typebox/build/esm/type/recursive/recursive.mjs +15 -0
  1032. package/node_modules/@sinclair/typebox/build/esm/type/ref/index.d.mts +1 -0
  1033. package/node_modules/@sinclair/typebox/build/esm/type/ref/index.mjs +1 -0
  1034. package/node_modules/@sinclair/typebox/build/esm/type/ref/ref.d.mts +41 -0
  1035. package/node_modules/@sinclair/typebox/build/esm/type/ref/ref.mjs +10 -0
  1036. package/node_modules/@sinclair/typebox/build/esm/type/regexp/index.d.mts +1 -0
  1037. package/node_modules/@sinclair/typebox/build/esm/type/regexp/index.mjs +1 -0
  1038. package/node_modules/@sinclair/typebox/build/esm/type/regexp/regexp.d.mts +20 -0
  1039. package/node_modules/@sinclair/typebox/build/esm/type/regexp/regexp.mjs +8 -0
  1040. package/node_modules/@sinclair/typebox/build/esm/type/registry/format.d.mts +13 -0
  1041. package/node_modules/@sinclair/typebox/build/esm/type/registry/format.mjs +26 -0
  1042. package/node_modules/@sinclair/typebox/build/esm/type/registry/index.d.mts +2 -0
  1043. package/node_modules/@sinclair/typebox/build/esm/type/registry/index.mjs +2 -0
  1044. package/node_modules/@sinclair/typebox/build/esm/type/registry/type.d.mts +13 -0
  1045. package/node_modules/@sinclair/typebox/build/esm/type/registry/type.mjs +26 -0
  1046. package/node_modules/@sinclair/typebox/build/esm/type/required/index.d.mts +2 -0
  1047. package/node_modules/@sinclair/typebox/build/esm/type/required/index.mjs +2 -0
  1048. package/node_modules/@sinclair/typebox/build/esm/type/required/required-from-mapped-result.d.mts +12 -0
  1049. package/node_modules/@sinclair/typebox/build/esm/type/required/required-from-mapped-result.mjs +18 -0
  1050. package/node_modules/@sinclair/typebox/build/esm/type/required/required.d.mts +35 -0
  1051. package/node_modules/@sinclair/typebox/build/esm/type/required/required.mjs +73 -0
  1052. package/node_modules/@sinclair/typebox/build/esm/type/rest/index.d.mts +1 -0
  1053. package/node_modules/@sinclair/typebox/build/esm/type/rest/index.mjs +1 -0
  1054. package/node_modules/@sinclair/typebox/build/esm/type/rest/rest.d.mts +10 -0
  1055. package/node_modules/@sinclair/typebox/build/esm/type/rest/rest.mjs +15 -0
  1056. package/node_modules/@sinclair/typebox/build/esm/type/return-type/index.d.mts +1 -0
  1057. package/node_modules/@sinclair/typebox/build/esm/type/return-type/index.mjs +1 -0
  1058. package/node_modules/@sinclair/typebox/build/esm/type/return-type/return-type.d.mts +6 -0
  1059. package/node_modules/@sinclair/typebox/build/esm/type/return-type/return-type.mjs +7 -0
  1060. package/node_modules/@sinclair/typebox/build/esm/type/schema/anyschema.d.mts +33 -0
  1061. package/node_modules/@sinclair/typebox/build/esm/type/schema/anyschema.mjs +1 -0
  1062. package/node_modules/@sinclair/typebox/build/esm/type/schema/index.d.mts +2 -0
  1063. package/node_modules/@sinclair/typebox/build/esm/type/schema/index.mjs +2 -0
  1064. package/node_modules/@sinclair/typebox/build/esm/type/schema/schema.d.mts +29 -0
  1065. package/node_modules/@sinclair/typebox/build/esm/type/schema/schema.mjs +1 -0
  1066. package/node_modules/@sinclair/typebox/build/esm/type/sets/index.d.mts +1 -0
  1067. package/node_modules/@sinclair/typebox/build/esm/type/sets/index.mjs +1 -0
  1068. package/node_modules/@sinclair/typebox/build/esm/type/sets/set.d.mts +28 -0
  1069. package/node_modules/@sinclair/typebox/build/esm/type/sets/set.mjs +48 -0
  1070. package/node_modules/@sinclair/typebox/build/esm/type/static/index.d.mts +1 -0
  1071. package/node_modules/@sinclair/typebox/build/esm/type/static/index.mjs +1 -0
  1072. package/node_modules/@sinclair/typebox/build/esm/type/static/static.d.mts +39 -0
  1073. package/node_modules/@sinclair/typebox/build/esm/type/static/static.mjs +1 -0
  1074. package/node_modules/@sinclair/typebox/build/esm/type/string/index.d.mts +1 -0
  1075. package/node_modules/@sinclair/typebox/build/esm/type/string/index.mjs +1 -0
  1076. package/node_modules/@sinclair/typebox/build/esm/type/string/string.d.mts +25 -0
  1077. package/node_modules/@sinclair/typebox/build/esm/type/string/string.mjs +6 -0
  1078. package/node_modules/@sinclair/typebox/build/esm/type/symbol/index.d.mts +1 -0
  1079. package/node_modules/@sinclair/typebox/build/esm/type/symbol/index.mjs +1 -0
  1080. package/node_modules/@sinclair/typebox/build/esm/type/symbol/symbol.d.mts +10 -0
  1081. package/node_modules/@sinclair/typebox/build/esm/type/symbol/symbol.mjs +6 -0
  1082. package/node_modules/@sinclair/typebox/build/esm/type/symbols/index.d.mts +1 -0
  1083. package/node_modules/@sinclair/typebox/build/esm/type/symbols/index.mjs +1 -0
  1084. package/node_modules/@sinclair/typebox/build/esm/type/symbols/symbols.d.mts +10 -0
  1085. package/node_modules/@sinclair/typebox/build/esm/type/symbols/symbols.mjs +10 -0
  1086. package/node_modules/@sinclair/typebox/build/esm/type/template-literal/finite.d.mts +19 -0
  1087. package/node_modules/@sinclair/typebox/build/esm/type/template-literal/finite.mjs +49 -0
  1088. package/node_modules/@sinclair/typebox/build/esm/type/template-literal/generate.d.mts +21 -0
  1089. package/node_modules/@sinclair/typebox/build/esm/type/template-literal/generate.mjs +53 -0
  1090. package/node_modules/@sinclair/typebox/build/esm/type/template-literal/index.d.mts +7 -0
  1091. package/node_modules/@sinclair/typebox/build/esm/type/template-literal/index.mjs +7 -0
  1092. package/node_modules/@sinclair/typebox/build/esm/type/template-literal/parse.d.mts +20 -0
  1093. package/node_modules/@sinclair/typebox/build/esm/type/template-literal/parse.mjs +167 -0
  1094. package/node_modules/@sinclair/typebox/build/esm/type/template-literal/pattern.d.mts +5 -0
  1095. package/node_modules/@sinclair/typebox/build/esm/type/template-literal/pattern.mjs +33 -0
  1096. package/node_modules/@sinclair/typebox/build/esm/type/template-literal/syntax.d.mts +20 -0
  1097. package/node_modules/@sinclair/typebox/build/esm/type/template-literal/syntax.mjs +55 -0
  1098. package/node_modules/@sinclair/typebox/build/esm/type/template-literal/template-literal.d.mts +30 -0
  1099. package/node_modules/@sinclair/typebox/build/esm/type/template-literal/template-literal.mjs +13 -0
  1100. package/node_modules/@sinclair/typebox/build/esm/type/template-literal/union.d.mts +9 -0
  1101. package/node_modules/@sinclair/typebox/build/esm/type/template-literal/union.mjs +9 -0
  1102. package/node_modules/@sinclair/typebox/build/esm/type/transform/index.d.mts +1 -0
  1103. package/node_modules/@sinclair/typebox/build/esm/type/transform/index.mjs +1 -0
  1104. package/node_modules/@sinclair/typebox/build/esm/type/transform/transform.d.mts +30 -0
  1105. package/node_modules/@sinclair/typebox/build/esm/type/transform/transform.mjs +40 -0
  1106. package/node_modules/@sinclair/typebox/build/esm/type/tuple/index.d.mts +1 -0
  1107. package/node_modules/@sinclair/typebox/build/esm/type/tuple/index.mjs +1 -0
  1108. package/node_modules/@sinclair/typebox/build/esm/type/tuple/tuple.d.mts +16 -0
  1109. package/node_modules/@sinclair/typebox/build/esm/type/tuple/tuple.mjs +9 -0
  1110. package/node_modules/@sinclair/typebox/build/esm/type/type/index.d.mts +6 -0
  1111. package/node_modules/@sinclair/typebox/build/esm/type/type/index.mjs +13 -0
  1112. package/node_modules/@sinclair/typebox/build/esm/type/type/javascript.d.mts +64 -0
  1113. package/node_modules/@sinclair/typebox/build/esm/type/type/javascript.mjs +99 -0
  1114. package/node_modules/@sinclair/typebox/build/esm/type/type/json.d.mts +208 -0
  1115. package/node_modules/@sinclair/typebox/build/esm/type/type/json.mjs +221 -0
  1116. package/node_modules/@sinclair/typebox/build/esm/type/type/type.d.mts +59 -0
  1117. package/node_modules/@sinclair/typebox/build/esm/type/type/type.mjs +62 -0
  1118. package/node_modules/@sinclair/typebox/build/esm/type/uint8array/index.d.mts +1 -0
  1119. package/node_modules/@sinclair/typebox/build/esm/type/uint8array/index.mjs +1 -0
  1120. package/node_modules/@sinclair/typebox/build/esm/type/uint8array/uint8array.d.mts +13 -0
  1121. package/node_modules/@sinclair/typebox/build/esm/type/uint8array/uint8array.mjs +6 -0
  1122. package/node_modules/@sinclair/typebox/build/esm/type/undefined/index.d.mts +1 -0
  1123. package/node_modules/@sinclair/typebox/build/esm/type/undefined/index.mjs +1 -0
  1124. package/node_modules/@sinclair/typebox/build/esm/type/undefined/undefined.d.mts +9 -0
  1125. package/node_modules/@sinclair/typebox/build/esm/type/undefined/undefined.mjs +6 -0
  1126. package/node_modules/@sinclair/typebox/build/esm/type/union/index.d.mts +3 -0
  1127. package/node_modules/@sinclair/typebox/build/esm/type/union/index.mjs +3 -0
  1128. package/node_modules/@sinclair/typebox/build/esm/type/union/union-create.d.mts +3 -0
  1129. package/node_modules/@sinclair/typebox/build/esm/type/union/union-create.mjs +5 -0
  1130. package/node_modules/@sinclair/typebox/build/esm/type/union/union-evaluated.d.mts +13 -0
  1131. package/node_modules/@sinclair/typebox/build/esm/type/union/union-evaluated.mjs +36 -0
  1132. package/node_modules/@sinclair/typebox/build/esm/type/union/union-type.d.mts +12 -0
  1133. package/node_modules/@sinclair/typebox/build/esm/type/union/union-type.mjs +1 -0
  1134. package/node_modules/@sinclair/typebox/build/esm/type/union/union.d.mts +6 -0
  1135. package/node_modules/@sinclair/typebox/build/esm/type/union/union.mjs +10 -0
  1136. package/node_modules/@sinclair/typebox/build/esm/type/unknown/index.d.mts +1 -0
  1137. package/node_modules/@sinclair/typebox/build/esm/type/unknown/index.mjs +1 -0
  1138. package/node_modules/@sinclair/typebox/build/esm/type/unknown/unknown.d.mts +8 -0
  1139. package/node_modules/@sinclair/typebox/build/esm/type/unknown/unknown.mjs +6 -0
  1140. package/node_modules/@sinclair/typebox/build/esm/type/unsafe/index.d.mts +1 -0
  1141. package/node_modules/@sinclair/typebox/build/esm/type/unsafe/index.mjs +1 -0
  1142. package/node_modules/@sinclair/typebox/build/esm/type/unsafe/unsafe.d.mts +11 -0
  1143. package/node_modules/@sinclair/typebox/build/esm/type/unsafe/unsafe.mjs +6 -0
  1144. package/node_modules/@sinclair/typebox/build/esm/type/void/index.d.mts +1 -0
  1145. package/node_modules/@sinclair/typebox/build/esm/type/void/index.mjs +1 -0
  1146. package/node_modules/@sinclair/typebox/build/esm/type/void/void.d.mts +9 -0
  1147. package/node_modules/@sinclair/typebox/build/esm/type/void/void.mjs +6 -0
  1148. package/node_modules/@sinclair/typebox/build/esm/value/assert/assert.d.mts +15 -0
  1149. package/node_modules/@sinclair/typebox/build/esm/value/assert/assert.mjs +49 -0
  1150. package/node_modules/@sinclair/typebox/build/esm/value/assert/index.d.mts +1 -0
  1151. package/node_modules/@sinclair/typebox/build/esm/value/assert/index.mjs +1 -0
  1152. package/node_modules/@sinclair/typebox/build/esm/value/cast/cast.d.mts +11 -0
  1153. package/node_modules/@sinclair/typebox/build/esm/value/cast/cast.mjs +235 -0
  1154. package/node_modules/@sinclair/typebox/build/esm/value/cast/index.d.mts +1 -0
  1155. package/node_modules/@sinclair/typebox/build/esm/value/cast/index.mjs +1 -0
  1156. package/node_modules/@sinclair/typebox/build/esm/value/check/check.d.mts +11 -0
  1157. package/node_modules/@sinclair/typebox/build/esm/value/check/check.mjs +470 -0
  1158. package/node_modules/@sinclair/typebox/build/esm/value/check/index.d.mts +1 -0
  1159. package/node_modules/@sinclair/typebox/build/esm/value/check/index.mjs +1 -0
  1160. package/node_modules/@sinclair/typebox/build/esm/value/clean/clean.d.mts +5 -0
  1161. package/node_modules/@sinclair/typebox/build/esm/value/clean/clean.mjs +145 -0
  1162. package/node_modules/@sinclair/typebox/build/esm/value/clean/index.d.mts +1 -0
  1163. package/node_modules/@sinclair/typebox/build/esm/value/clean/index.mjs +1 -0
  1164. package/node_modules/@sinclair/typebox/build/esm/value/clone/clone.d.mts +2 -0
  1165. package/node_modules/@sinclair/typebox/build/esm/value/clone/clone.mjs +56 -0
  1166. package/node_modules/@sinclair/typebox/build/esm/value/clone/index.d.mts +1 -0
  1167. package/node_modules/@sinclair/typebox/build/esm/value/clone/index.mjs +1 -0
  1168. package/node_modules/@sinclair/typebox/build/esm/value/convert/convert.d.mts +5 -0
  1169. package/node_modules/@sinclair/typebox/build/esm/value/convert/convert.mjs +260 -0
  1170. package/node_modules/@sinclair/typebox/build/esm/value/convert/index.d.mts +1 -0
  1171. package/node_modules/@sinclair/typebox/build/esm/value/convert/index.mjs +1 -0
  1172. package/node_modules/@sinclair/typebox/build/esm/value/create/create.d.mts +11 -0
  1173. package/node_modules/@sinclair/typebox/build/esm/value/create/create.mjs +468 -0
  1174. package/node_modules/@sinclair/typebox/build/esm/value/create/index.d.mts +1 -0
  1175. package/node_modules/@sinclair/typebox/build/esm/value/create/index.mjs +1 -0
  1176. package/node_modules/@sinclair/typebox/build/esm/value/decode/decode.d.mts +6 -0
  1177. package/node_modules/@sinclair/typebox/build/esm/value/decode/decode.mjs +10 -0
  1178. package/node_modules/@sinclair/typebox/build/esm/value/decode/index.d.mts +1 -0
  1179. package/node_modules/@sinclair/typebox/build/esm/value/decode/index.mjs +1 -0
  1180. package/node_modules/@sinclair/typebox/build/esm/value/default/default.d.mts +5 -0
  1181. package/node_modules/@sinclair/typebox/build/esm/value/default/default.mjs +172 -0
  1182. package/node_modules/@sinclair/typebox/build/esm/value/default/index.d.mts +1 -0
  1183. package/node_modules/@sinclair/typebox/build/esm/value/default/index.mjs +1 -0
  1184. package/node_modules/@sinclair/typebox/build/esm/value/delta/delta.d.mts +32 -0
  1185. package/node_modules/@sinclair/typebox/build/esm/value/delta/delta.mjs +171 -0
  1186. package/node_modules/@sinclair/typebox/build/esm/value/delta/index.d.mts +1 -0
  1187. package/node_modules/@sinclair/typebox/build/esm/value/delta/index.mjs +1 -0
  1188. package/node_modules/@sinclair/typebox/build/esm/value/deref/deref.d.mts +12 -0
  1189. package/node_modules/@sinclair/typebox/build/esm/value/deref/deref.mjs +29 -0
  1190. package/node_modules/@sinclair/typebox/build/esm/value/deref/index.d.mts +1 -0
  1191. package/node_modules/@sinclair/typebox/build/esm/value/deref/index.mjs +1 -0
  1192. package/node_modules/@sinclair/typebox/build/esm/value/encode/encode.d.mts +6 -0
  1193. package/node_modules/@sinclair/typebox/build/esm/value/encode/encode.mjs +11 -0
  1194. package/node_modules/@sinclair/typebox/build/esm/value/encode/index.d.mts +1 -0
  1195. package/node_modules/@sinclair/typebox/build/esm/value/encode/index.mjs +1 -0
  1196. package/node_modules/@sinclair/typebox/build/esm/value/equal/equal.d.mts +2 -0
  1197. package/node_modules/@sinclair/typebox/build/esm/value/equal/equal.mjs +46 -0
  1198. package/node_modules/@sinclair/typebox/build/esm/value/equal/index.d.mts +1 -0
  1199. package/node_modules/@sinclair/typebox/build/esm/value/equal/index.mjs +1 -0
  1200. package/node_modules/@sinclair/typebox/build/esm/value/guard/guard.d.mts +74 -0
  1201. package/node_modules/@sinclair/typebox/build/esm/value/guard/guard.mjs +158 -0
  1202. package/node_modules/@sinclair/typebox/build/esm/value/guard/index.d.mts +1 -0
  1203. package/node_modules/@sinclair/typebox/build/esm/value/guard/index.mjs +1 -0
  1204. package/node_modules/@sinclair/typebox/build/esm/value/hash/hash.d.mts +7 -0
  1205. package/node_modules/@sinclair/typebox/build/esm/value/hash/hash.mjs +146 -0
  1206. package/node_modules/@sinclair/typebox/build/esm/value/hash/index.d.mts +1 -0
  1207. package/node_modules/@sinclair/typebox/build/esm/value/hash/index.mjs +1 -0
  1208. package/node_modules/@sinclair/typebox/build/esm/value/index.d.mts +20 -0
  1209. package/node_modules/@sinclair/typebox/build/esm/value/index.mjs +32 -0
  1210. package/node_modules/@sinclair/typebox/build/esm/value/mutate/index.d.mts +1 -0
  1211. package/node_modules/@sinclair/typebox/build/esm/value/mutate/index.mjs +1 -0
  1212. package/node_modules/@sinclair/typebox/build/esm/value/mutate/mutate.d.mts +9 -0
  1213. package/node_modules/@sinclair/typebox/build/esm/value/mutate/mutate.mjs +98 -0
  1214. package/node_modules/@sinclair/typebox/build/esm/value/parse/index.d.mts +1 -0
  1215. package/node_modules/@sinclair/typebox/build/esm/value/parse/index.mjs +1 -0
  1216. package/node_modules/@sinclair/typebox/build/esm/value/parse/parse.d.mts +22 -0
  1217. package/node_modules/@sinclair/typebox/build/esm/value/parse/parse.mjs +81 -0
  1218. package/node_modules/@sinclair/typebox/build/esm/value/pointer/index.d.mts +1 -0
  1219. package/node_modules/@sinclair/typebox/build/esm/value/pointer/index.mjs +1 -0
  1220. package/node_modules/@sinclair/typebox/build/esm/value/pointer/pointer.d.mts +22 -0
  1221. package/node_modules/@sinclair/typebox/build/esm/value/pointer/pointer.mjs +115 -0
  1222. package/node_modules/@sinclair/typebox/build/esm/value/transform/decode.d.mts +22 -0
  1223. package/node_modules/@sinclair/typebox/build/esm/value/transform/decode.mjs +207 -0
  1224. package/node_modules/@sinclair/typebox/build/esm/value/transform/encode.d.mts +23 -0
  1225. package/node_modules/@sinclair/typebox/build/esm/value/transform/encode.mjs +218 -0
  1226. package/node_modules/@sinclair/typebox/build/esm/value/transform/has.d.mts +3 -0
  1227. package/node_modules/@sinclair/typebox/build/esm/value/transform/has.mjs +129 -0
  1228. package/node_modules/@sinclair/typebox/build/esm/value/transform/index.d.mts +3 -0
  1229. package/node_modules/@sinclair/typebox/build/esm/value/transform/index.mjs +3 -0
  1230. package/node_modules/@sinclair/typebox/build/esm/value/value/index.d.mts +1 -0
  1231. package/node_modules/@sinclair/typebox/build/esm/value/value/index.mjs +1 -0
  1232. package/node_modules/@sinclair/typebox/build/esm/value/value/value.d.mts +16 -0
  1233. package/node_modules/@sinclair/typebox/build/esm/value/value/value.mjs +16 -0
  1234. package/node_modules/@sinclair/typebox/compiler/package.json +4 -0
  1235. package/node_modules/@sinclair/typebox/errors/package.json +4 -0
  1236. package/node_modules/@sinclair/typebox/license +25 -0
  1237. package/node_modules/@sinclair/typebox/package.json +116 -0
  1238. package/node_modules/@sinclair/typebox/parser/package.json +4 -0
  1239. package/node_modules/@sinclair/typebox/readme.md +1865 -0
  1240. package/node_modules/@sinclair/typebox/syntax/package.json +4 -0
  1241. package/node_modules/@sinclair/typebox/system/package.json +4 -0
  1242. package/node_modules/@sinclair/typebox/type/package.json +4 -0
  1243. package/node_modules/@sinclair/typebox/value/package.json +4 -0
  1244. package/node_modules/@styrene-lab/pi-agent-core/README.md +446 -0
  1245. package/node_modules/@styrene-lab/pi-agent-core/dist/agent-loop.d.ts +24 -0
  1246. package/node_modules/@styrene-lab/pi-agent-core/dist/agent-loop.d.ts.map +1 -0
  1247. package/node_modules/@styrene-lab/pi-agent-core/dist/agent-loop.js +447 -0
  1248. package/node_modules/@styrene-lab/pi-agent-core/dist/agent-loop.js.map +1 -0
  1249. package/node_modules/@styrene-lab/pi-agent-core/dist/agent.d.ts +171 -0
  1250. package/node_modules/@styrene-lab/pi-agent-core/dist/agent.d.ts.map +1 -0
  1251. package/node_modules/@styrene-lab/pi-agent-core/dist/agent.js +417 -0
  1252. package/node_modules/@styrene-lab/pi-agent-core/dist/agent.js.map +1 -0
  1253. package/node_modules/@styrene-lab/pi-agent-core/dist/index.d.ts +5 -0
  1254. package/node_modules/@styrene-lab/pi-agent-core/dist/index.d.ts.map +1 -0
  1255. package/node_modules/@styrene-lab/pi-agent-core/dist/index.js +9 -0
  1256. package/node_modules/@styrene-lab/pi-agent-core/dist/index.js.map +1 -0
  1257. package/node_modules/@styrene-lab/pi-agent-core/dist/proxy.d.ts +85 -0
  1258. package/node_modules/@styrene-lab/pi-agent-core/dist/proxy.d.ts.map +1 -0
  1259. package/node_modules/@styrene-lab/pi-agent-core/dist/proxy.js +268 -0
  1260. package/node_modules/@styrene-lab/pi-agent-core/dist/proxy.js.map +1 -0
  1261. package/node_modules/@styrene-lab/pi-agent-core/dist/types.d.ts +286 -0
  1262. package/node_modules/@styrene-lab/pi-agent-core/dist/types.d.ts.map +1 -0
  1263. package/node_modules/@styrene-lab/pi-agent-core/dist/types.js +2 -0
  1264. package/node_modules/@styrene-lab/pi-agent-core/dist/types.js.map +1 -0
  1265. package/node_modules/@styrene-lab/pi-agent-core/package.json +44 -0
  1266. package/node_modules/@styrene-lab/pi-ai/README.md +1201 -0
  1267. package/node_modules/@styrene-lab/pi-ai/bedrock-provider.d.ts +1 -0
  1268. package/node_modules/@styrene-lab/pi-ai/bedrock-provider.js +1 -0
  1269. package/node_modules/@styrene-lab/pi-ai/dist/api-registry.d.ts +20 -0
  1270. package/node_modules/@styrene-lab/pi-ai/dist/api-registry.d.ts.map +1 -0
  1271. package/node_modules/@styrene-lab/pi-ai/dist/api-registry.js +44 -0
  1272. package/node_modules/@styrene-lab/pi-ai/dist/api-registry.js.map +1 -0
  1273. package/node_modules/@styrene-lab/pi-ai/dist/bedrock-provider.d.ts +5 -0
  1274. package/node_modules/@styrene-lab/pi-ai/dist/bedrock-provider.d.ts.map +1 -0
  1275. package/node_modules/@styrene-lab/pi-ai/dist/bedrock-provider.js +6 -0
  1276. package/node_modules/@styrene-lab/pi-ai/dist/bedrock-provider.js.map +1 -0
  1277. package/node_modules/@styrene-lab/pi-ai/dist/cli.d.ts +3 -0
  1278. package/node_modules/@styrene-lab/pi-ai/dist/cli.d.ts.map +1 -0
  1279. package/node_modules/@styrene-lab/pi-ai/dist/cli.js +116 -0
  1280. package/node_modules/@styrene-lab/pi-ai/dist/cli.js.map +1 -0
  1281. package/node_modules/@styrene-lab/pi-ai/dist/env-api-keys.d.ts +9 -0
  1282. package/node_modules/@styrene-lab/pi-ai/dist/env-api-keys.d.ts.map +1 -0
  1283. package/node_modules/@styrene-lab/pi-ai/dist/env-api-keys.js +110 -0
  1284. package/node_modules/@styrene-lab/pi-ai/dist/env-api-keys.js.map +1 -0
  1285. package/node_modules/@styrene-lab/pi-ai/dist/index.d.ts +23 -0
  1286. package/node_modules/@styrene-lab/pi-ai/dist/index.d.ts.map +1 -0
  1287. package/node_modules/@styrene-lab/pi-ai/dist/index.js +21 -0
  1288. package/node_modules/@styrene-lab/pi-ai/dist/index.js.map +1 -0
  1289. package/node_modules/@styrene-lab/pi-ai/dist/models.d.ts +24 -0
  1290. package/node_modules/@styrene-lab/pi-ai/dist/models.d.ts.map +1 -0
  1291. package/node_modules/@styrene-lab/pi-ai/dist/models.generated.d.ts +14058 -0
  1292. package/node_modules/@styrene-lab/pi-ai/dist/models.generated.d.ts.map +1 -0
  1293. package/node_modules/@styrene-lab/pi-ai/dist/models.generated.js +13846 -0
  1294. package/node_modules/@styrene-lab/pi-ai/dist/models.generated.js.map +1 -0
  1295. package/node_modules/@styrene-lab/pi-ai/dist/models.js +55 -0
  1296. package/node_modules/@styrene-lab/pi-ai/dist/models.js.map +1 -0
  1297. package/node_modules/@styrene-lab/pi-ai/dist/oauth.d.ts +2 -0
  1298. package/node_modules/@styrene-lab/pi-ai/dist/oauth.d.ts.map +1 -0
  1299. package/node_modules/@styrene-lab/pi-ai/dist/oauth.js +2 -0
  1300. package/node_modules/@styrene-lab/pi-ai/dist/oauth.js.map +1 -0
  1301. package/node_modules/@styrene-lab/pi-ai/dist/providers/amazon-bedrock.d.ts +15 -0
  1302. package/node_modules/@styrene-lab/pi-ai/dist/providers/amazon-bedrock.d.ts.map +1 -0
  1303. package/node_modules/@styrene-lab/pi-ai/dist/providers/amazon-bedrock.js +610 -0
  1304. package/node_modules/@styrene-lab/pi-ai/dist/providers/amazon-bedrock.js.map +1 -0
  1305. package/node_modules/@styrene-lab/pi-ai/dist/providers/anthropic.d.ts +33 -0
  1306. package/node_modules/@styrene-lab/pi-ai/dist/providers/anthropic.d.ts.map +1 -0
  1307. package/node_modules/@styrene-lab/pi-ai/dist/providers/anthropic.js +753 -0
  1308. package/node_modules/@styrene-lab/pi-ai/dist/providers/anthropic.js.map +1 -0
  1309. package/node_modules/@styrene-lab/pi-ai/dist/providers/azure-openai-responses.d.ts +15 -0
  1310. package/node_modules/@styrene-lab/pi-ai/dist/providers/azure-openai-responses.d.ts.map +1 -0
  1311. package/node_modules/@styrene-lab/pi-ai/dist/providers/azure-openai-responses.js +187 -0
  1312. package/node_modules/@styrene-lab/pi-ai/dist/providers/azure-openai-responses.js.map +1 -0
  1313. package/node_modules/@styrene-lab/pi-ai/dist/providers/github-copilot-headers.d.ts +8 -0
  1314. package/node_modules/@styrene-lab/pi-ai/dist/providers/github-copilot-headers.d.ts.map +1 -0
  1315. package/node_modules/@styrene-lab/pi-ai/dist/providers/github-copilot-headers.js +29 -0
  1316. package/node_modules/@styrene-lab/pi-ai/dist/providers/github-copilot-headers.js.map +1 -0
  1317. package/node_modules/@styrene-lab/pi-ai/dist/providers/google-gemini-cli.d.ts +74 -0
  1318. package/node_modules/@styrene-lab/pi-ai/dist/providers/google-gemini-cli.d.ts.map +1 -0
  1319. package/node_modules/@styrene-lab/pi-ai/dist/providers/google-gemini-cli.js +757 -0
  1320. package/node_modules/@styrene-lab/pi-ai/dist/providers/google-gemini-cli.js.map +1 -0
  1321. package/node_modules/@styrene-lab/pi-ai/dist/providers/google-shared.d.ts +65 -0
  1322. package/node_modules/@styrene-lab/pi-ai/dist/providers/google-shared.d.ts.map +1 -0
  1323. package/node_modules/@styrene-lab/pi-ai/dist/providers/google-shared.js +300 -0
  1324. package/node_modules/@styrene-lab/pi-ai/dist/providers/google-shared.js.map +1 -0
  1325. package/node_modules/@styrene-lab/pi-ai/dist/providers/google-vertex.d.ts +15 -0
  1326. package/node_modules/@styrene-lab/pi-ai/dist/providers/google-vertex.d.ts.map +1 -0
  1327. package/node_modules/@styrene-lab/pi-ai/dist/providers/google-vertex.js +392 -0
  1328. package/node_modules/@styrene-lab/pi-ai/dist/providers/google-vertex.js.map +1 -0
  1329. package/node_modules/@styrene-lab/pi-ai/dist/providers/google.d.ts +13 -0
  1330. package/node_modules/@styrene-lab/pi-ai/dist/providers/google.d.ts.map +1 -0
  1331. package/node_modules/@styrene-lab/pi-ai/dist/providers/google.js +355 -0
  1332. package/node_modules/@styrene-lab/pi-ai/dist/providers/google.js.map +1 -0
  1333. package/node_modules/@styrene-lab/pi-ai/dist/providers/mistral.d.ts +22 -0
  1334. package/node_modules/@styrene-lab/pi-ai/dist/providers/mistral.d.ts.map +1 -0
  1335. package/node_modules/@styrene-lab/pi-ai/dist/providers/mistral.js +498 -0
  1336. package/node_modules/@styrene-lab/pi-ai/dist/providers/mistral.js.map +1 -0
  1337. package/node_modules/@styrene-lab/pi-ai/dist/providers/openai-codex-responses.d.ts +9 -0
  1338. package/node_modules/@styrene-lab/pi-ai/dist/providers/openai-codex-responses.d.ts.map +1 -0
  1339. package/node_modules/@styrene-lab/pi-ai/dist/providers/openai-codex-responses.js +741 -0
  1340. package/node_modules/@styrene-lab/pi-ai/dist/providers/openai-codex-responses.js.map +1 -0
  1341. package/node_modules/@styrene-lab/pi-ai/dist/providers/openai-completions.d.ts +15 -0
  1342. package/node_modules/@styrene-lab/pi-ai/dist/providers/openai-completions.d.ts.map +1 -0
  1343. package/node_modules/@styrene-lab/pi-ai/dist/providers/openai-completions.js +710 -0
  1344. package/node_modules/@styrene-lab/pi-ai/dist/providers/openai-completions.js.map +1 -0
  1345. package/node_modules/@styrene-lab/pi-ai/dist/providers/openai-responses-shared.d.ts +17 -0
  1346. package/node_modules/@styrene-lab/pi-ai/dist/providers/openai-responses-shared.d.ts.map +1 -0
  1347. package/node_modules/@styrene-lab/pi-ai/dist/providers/openai-responses-shared.js +447 -0
  1348. package/node_modules/@styrene-lab/pi-ai/dist/providers/openai-responses-shared.js.map +1 -0
  1349. package/node_modules/@styrene-lab/pi-ai/dist/providers/openai-responses.d.ts +13 -0
  1350. package/node_modules/@styrene-lab/pi-ai/dist/providers/openai-responses.d.ts.map +1 -0
  1351. package/node_modules/@styrene-lab/pi-ai/dist/providers/openai-responses.js +201 -0
  1352. package/node_modules/@styrene-lab/pi-ai/dist/providers/openai-responses.js.map +1 -0
  1353. package/node_modules/@styrene-lab/pi-ai/dist/providers/register-builtins.d.ts +11 -0
  1354. package/node_modules/@styrene-lab/pi-ai/dist/providers/register-builtins.d.ts.map +1 -0
  1355. package/node_modules/@styrene-lab/pi-ai/dist/providers/register-builtins.js +138 -0
  1356. package/node_modules/@styrene-lab/pi-ai/dist/providers/register-builtins.js.map +1 -0
  1357. package/node_modules/@styrene-lab/pi-ai/dist/providers/simple-options.d.ts +8 -0
  1358. package/node_modules/@styrene-lab/pi-ai/dist/providers/simple-options.d.ts.map +1 -0
  1359. package/node_modules/@styrene-lab/pi-ai/dist/providers/simple-options.js +35 -0
  1360. package/node_modules/@styrene-lab/pi-ai/dist/providers/simple-options.js.map +1 -0
  1361. package/node_modules/@styrene-lab/pi-ai/dist/providers/transform-messages.d.ts +8 -0
  1362. package/node_modules/@styrene-lab/pi-ai/dist/providers/transform-messages.d.ts.map +1 -0
  1363. package/node_modules/@styrene-lab/pi-ai/dist/providers/transform-messages.js +155 -0
  1364. package/node_modules/@styrene-lab/pi-ai/dist/providers/transform-messages.js.map +1 -0
  1365. package/node_modules/@styrene-lab/pi-ai/dist/stream.d.ts +8 -0
  1366. package/node_modules/@styrene-lab/pi-ai/dist/stream.d.ts.map +1 -0
  1367. package/node_modules/@styrene-lab/pi-ai/dist/stream.js +27 -0
  1368. package/node_modules/@styrene-lab/pi-ai/dist/stream.js.map +1 -0
  1369. package/node_modules/@styrene-lab/pi-ai/dist/types.d.ts +293 -0
  1370. package/node_modules/@styrene-lab/pi-ai/dist/types.d.ts.map +1 -0
  1371. package/node_modules/@styrene-lab/pi-ai/dist/types.js +2 -0
  1372. package/node_modules/@styrene-lab/pi-ai/dist/types.js.map +1 -0
  1373. package/node_modules/@styrene-lab/pi-ai/dist/utils/event-stream.d.ts +21 -0
  1374. package/node_modules/@styrene-lab/pi-ai/dist/utils/event-stream.d.ts.map +1 -0
  1375. package/node_modules/@styrene-lab/pi-ai/dist/utils/event-stream.js +81 -0
  1376. package/node_modules/@styrene-lab/pi-ai/dist/utils/event-stream.js.map +1 -0
  1377. package/node_modules/@styrene-lab/pi-ai/dist/utils/hash.d.ts +3 -0
  1378. package/node_modules/@styrene-lab/pi-ai/dist/utils/hash.d.ts.map +1 -0
  1379. package/node_modules/@styrene-lab/pi-ai/dist/utils/hash.js +14 -0
  1380. package/node_modules/@styrene-lab/pi-ai/dist/utils/hash.js.map +1 -0
  1381. package/node_modules/@styrene-lab/pi-ai/dist/utils/json-parse.d.ts +9 -0
  1382. package/node_modules/@styrene-lab/pi-ai/dist/utils/json-parse.d.ts.map +1 -0
  1383. package/node_modules/@styrene-lab/pi-ai/dist/utils/json-parse.js +29 -0
  1384. package/node_modules/@styrene-lab/pi-ai/dist/utils/json-parse.js.map +1 -0
  1385. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/anthropic.d.ts +25 -0
  1386. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/anthropic.d.ts.map +1 -0
  1387. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/anthropic.js +343 -0
  1388. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/anthropic.js.map +1 -0
  1389. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/fetch-utils.d.ts +22 -0
  1390. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/fetch-utils.d.ts.map +1 -0
  1391. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/fetch-utils.js +42 -0
  1392. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/fetch-utils.js.map +1 -0
  1393. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/github-copilot.d.ts +30 -0
  1394. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/github-copilot.d.ts.map +1 -0
  1395. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/github-copilot.js +292 -0
  1396. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/github-copilot.js.map +1 -0
  1397. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/google-antigravity.d.ts +26 -0
  1398. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/google-antigravity.d.ts.map +1 -0
  1399. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/google-antigravity.js +374 -0
  1400. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/google-antigravity.js.map +1 -0
  1401. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/google-gemini-cli.d.ts +26 -0
  1402. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/google-gemini-cli.d.ts.map +1 -0
  1403. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/google-gemini-cli.js +479 -0
  1404. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/google-gemini-cli.js.map +1 -0
  1405. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/index.d.ts +61 -0
  1406. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/index.d.ts.map +1 -0
  1407. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/index.js +131 -0
  1408. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/index.js.map +1 -0
  1409. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/openai-codex.d.ts +35 -0
  1410. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/openai-codex.d.ts.map +1 -0
  1411. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/openai-codex.js +382 -0
  1412. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/openai-codex.js.map +1 -0
  1413. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/pkce.d.ts +13 -0
  1414. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/pkce.d.ts.map +1 -0
  1415. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/pkce.js +31 -0
  1416. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/pkce.js.map +1 -0
  1417. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/types.d.ts +47 -0
  1418. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/types.d.ts.map +1 -0
  1419. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/types.js +2 -0
  1420. package/node_modules/@styrene-lab/pi-ai/dist/utils/oauth/types.js.map +1 -0
  1421. package/node_modules/@styrene-lab/pi-ai/dist/utils/overflow.d.ts +52 -0
  1422. package/node_modules/@styrene-lab/pi-ai/dist/utils/overflow.d.ts.map +1 -0
  1423. package/node_modules/@styrene-lab/pi-ai/dist/utils/overflow.js +117 -0
  1424. package/node_modules/@styrene-lab/pi-ai/dist/utils/overflow.js.map +1 -0
  1425. package/node_modules/@styrene-lab/pi-ai/dist/utils/sanitize-unicode.d.ts +22 -0
  1426. package/node_modules/@styrene-lab/pi-ai/dist/utils/sanitize-unicode.d.ts.map +1 -0
  1427. package/node_modules/@styrene-lab/pi-ai/dist/utils/sanitize-unicode.js +26 -0
  1428. package/node_modules/@styrene-lab/pi-ai/dist/utils/sanitize-unicode.js.map +1 -0
  1429. package/node_modules/@styrene-lab/pi-ai/dist/utils/typebox-helpers.d.ts +17 -0
  1430. package/node_modules/@styrene-lab/pi-ai/dist/utils/typebox-helpers.d.ts.map +1 -0
  1431. package/node_modules/@styrene-lab/pi-ai/dist/utils/typebox-helpers.js +21 -0
  1432. package/node_modules/@styrene-lab/pi-ai/dist/utils/typebox-helpers.js.map +1 -0
  1433. package/node_modules/@styrene-lab/pi-ai/dist/utils/validation.d.ts +18 -0
  1434. package/node_modules/@styrene-lab/pi-ai/dist/utils/validation.d.ts.map +1 -0
  1435. package/node_modules/@styrene-lab/pi-ai/dist/utils/validation.js +72 -0
  1436. package/node_modules/@styrene-lab/pi-ai/dist/utils/validation.js.map +1 -0
  1437. package/node_modules/@styrene-lab/pi-ai/package.json +80 -0
  1438. package/node_modules/@styrene-lab/pi-coding-agent/CHANGELOG.md +3105 -0
  1439. package/node_modules/@styrene-lab/pi-coding-agent/README.md +583 -0
  1440. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli/args.d.ts +48 -0
  1441. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli/args.d.ts.map +1 -0
  1442. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli/args.js +300 -0
  1443. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli/args.js.map +1 -0
  1444. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli/config-selector.d.ts +14 -0
  1445. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli/config-selector.d.ts.map +1 -0
  1446. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli/config-selector.js +31 -0
  1447. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli/config-selector.js.map +1 -0
  1448. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli/file-processor.d.ts +15 -0
  1449. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli/file-processor.d.ts.map +1 -0
  1450. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli/file-processor.js +79 -0
  1451. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli/file-processor.js.map +1 -0
  1452. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli/list-models.d.ts +9 -0
  1453. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli/list-models.d.ts.map +1 -0
  1454. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli/list-models.js +92 -0
  1455. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli/list-models.js.map +1 -0
  1456. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli/session-picker.d.ts +9 -0
  1457. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli/session-picker.d.ts.map +1 -0
  1458. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli/session-picker.js +34 -0
  1459. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli/session-picker.js.map +1 -0
  1460. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli.d.ts +3 -0
  1461. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli.d.ts.map +1 -0
  1462. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli.js +16 -0
  1463. package/node_modules/@styrene-lab/pi-coding-agent/dist/cli.js.map +1 -0
  1464. package/node_modules/@styrene-lab/pi-coding-agent/dist/config.d.ts +68 -0
  1465. package/node_modules/@styrene-lab/pi-coding-agent/dist/config.d.ts.map +1 -0
  1466. package/node_modules/@styrene-lab/pi-coding-agent/dist/config.js +203 -0
  1467. package/node_modules/@styrene-lab/pi-coding-agent/dist/config.js.map +1 -0
  1468. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/agent-session.d.ts +591 -0
  1469. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/agent-session.d.ts.map +1 -0
  1470. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/agent-session.js +2542 -0
  1471. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/agent-session.js.map +1 -0
  1472. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/auth-storage.d.ts +130 -0
  1473. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/auth-storage.d.ts.map +1 -0
  1474. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/auth-storage.js +419 -0
  1475. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/auth-storage.js.map +1 -0
  1476. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/bash-executor.d.ts +47 -0
  1477. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/bash-executor.d.ts.map +1 -0
  1478. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/bash-executor.js +212 -0
  1479. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/bash-executor.js.map +1 -0
  1480. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/compaction/branch-summarization.d.ts +86 -0
  1481. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/compaction/branch-summarization.d.ts.map +1 -0
  1482. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/compaction/branch-summarization.js +242 -0
  1483. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/compaction/branch-summarization.js.map +1 -0
  1484. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/compaction/compaction.d.ts +121 -0
  1485. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/compaction/compaction.d.ts.map +1 -0
  1486. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/compaction/compaction.js +610 -0
  1487. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/compaction/compaction.js.map +1 -0
  1488. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/compaction/index.d.ts +7 -0
  1489. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/compaction/index.d.ts.map +1 -0
  1490. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/compaction/index.js +7 -0
  1491. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/compaction/index.js.map +1 -0
  1492. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/compaction/utils.d.ts +38 -0
  1493. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/compaction/utils.d.ts.map +1 -0
  1494. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/compaction/utils.js +153 -0
  1495. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/compaction/utils.js.map +1 -0
  1496. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/defaults.d.ts +3 -0
  1497. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/defaults.d.ts.map +1 -0
  1498. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/defaults.js +2 -0
  1499. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/defaults.js.map +1 -0
  1500. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/diagnostics.d.ts +15 -0
  1501. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/diagnostics.d.ts.map +1 -0
  1502. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/diagnostics.js +2 -0
  1503. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/diagnostics.js.map +1 -0
  1504. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/event-bus.d.ts +9 -0
  1505. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/event-bus.d.ts.map +1 -0
  1506. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/event-bus.js +25 -0
  1507. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/event-bus.js.map +1 -0
  1508. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/exec.d.ts +29 -0
  1509. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/exec.d.ts.map +1 -0
  1510. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/exec.js +71 -0
  1511. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/exec.js.map +1 -0
  1512. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/export-html/ansi-to-html.d.ts +22 -0
  1513. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/export-html/ansi-to-html.d.ts.map +1 -0
  1514. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/export-html/ansi-to-html.js +249 -0
  1515. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/export-html/ansi-to-html.js.map +1 -0
  1516. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/export-html/index.d.ts +37 -0
  1517. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/export-html/index.d.ts.map +1 -0
  1518. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/export-html/index.js +223 -0
  1519. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/export-html/index.js.map +1 -0
  1520. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/export-html/template.css +971 -0
  1521. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/export-html/template.html +54 -0
  1522. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/export-html/template.js +1583 -0
  1523. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/export-html/tool-renderer.d.ts +38 -0
  1524. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/export-html/tool-renderer.d.ts.map +1 -0
  1525. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/export-html/tool-renderer.js +70 -0
  1526. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/export-html/tool-renderer.js.map +1 -0
  1527. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/export-html/vendor/highlight.min.js +1213 -0
  1528. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/export-html/vendor/marked.min.js +6 -0
  1529. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/extensions/index.d.ts +11 -0
  1530. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/extensions/index.d.ts.map +1 -0
  1531. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/extensions/index.js +9 -0
  1532. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/extensions/index.js.map +1 -0
  1533. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/extensions/loader.d.ts +25 -0
  1534. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/extensions/loader.d.ts.map +1 -0
  1535. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/extensions/loader.js +430 -0
  1536. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/extensions/loader.js.map +1 -0
  1537. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/extensions/runner.d.ts +152 -0
  1538. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/extensions/runner.d.ts.map +1 -0
  1539. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/extensions/runner.js +688 -0
  1540. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/extensions/runner.js.map +1 -0
  1541. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/extensions/types.d.ts +1048 -0
  1542. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/extensions/types.d.ts.map +1 -0
  1543. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/extensions/types.js +35 -0
  1544. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/extensions/types.js.map +1 -0
  1545. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/extensions/wrapper.d.ts +20 -0
  1546. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/extensions/wrapper.d.ts.map +1 -0
  1547. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/extensions/wrapper.js +28 -0
  1548. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/extensions/wrapper.js.map +1 -0
  1549. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/footer-data-provider.d.ts +32 -0
  1550. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/footer-data-provider.d.ts.map +1 -0
  1551. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/footer-data-provider.js +134 -0
  1552. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/footer-data-provider.js.map +1 -0
  1553. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/index.d.ts +9 -0
  1554. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/index.d.ts.map +1 -0
  1555. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/index.js +9 -0
  1556. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/index.js.map +1 -0
  1557. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/keybindings.d.ts +55 -0
  1558. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/keybindings.d.ts.map +1 -0
  1559. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/keybindings.js +153 -0
  1560. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/keybindings.js.map +1 -0
  1561. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/messages.d.ts +77 -0
  1562. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/messages.d.ts.map +1 -0
  1563. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/messages.js +123 -0
  1564. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/messages.js.map +1 -0
  1565. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/model-registry.d.ts +113 -0
  1566. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/model-registry.d.ts.map +1 -0
  1567. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/model-registry.js +554 -0
  1568. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/model-registry.js.map +1 -0
  1569. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/model-resolver.d.ts +104 -0
  1570. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/model-resolver.d.ts.map +1 -0
  1571. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/model-resolver.js +462 -0
  1572. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/model-resolver.js.map +1 -0
  1573. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/package-manager.d.ts +155 -0
  1574. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/package-manager.d.ts.map +1 -0
  1575. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/package-manager.js +1480 -0
  1576. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/package-manager.js.map +1 -0
  1577. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/prompt-templates.d.ts +50 -0
  1578. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/prompt-templates.d.ts.map +1 -0
  1579. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/prompt-templates.js +251 -0
  1580. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/prompt-templates.js.map +1 -0
  1581. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/resolve-config-value.d.ts +17 -0
  1582. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/resolve-config-value.d.ts.map +1 -0
  1583. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/resolve-config-value.js +94 -0
  1584. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/resolve-config-value.js.map +1 -0
  1585. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/resource-loader.d.ts +184 -0
  1586. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/resource-loader.d.ts.map +1 -0
  1587. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/resource-loader.js +670 -0
  1588. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/resource-loader.js.map +1 -0
  1589. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/sdk.d.ts +90 -0
  1590. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/sdk.d.ts.map +1 -0
  1591. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/sdk.js +242 -0
  1592. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/sdk.js.map +1 -0
  1593. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/session-manager.d.ts +324 -0
  1594. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/session-manager.d.ts.map +1 -0
  1595. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/session-manager.js +1098 -0
  1596. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/session-manager.js.map +1 -0
  1597. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/settings-manager.d.ts +235 -0
  1598. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/settings-manager.d.ts.map +1 -0
  1599. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/settings-manager.js +699 -0
  1600. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/settings-manager.js.map +1 -0
  1601. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/skills.d.ts +59 -0
  1602. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/skills.d.ts.map +1 -0
  1603. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/skills.js +385 -0
  1604. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/skills.js.map +1 -0
  1605. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/slash-commands.d.ts +15 -0
  1606. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/slash-commands.d.ts.map +1 -0
  1607. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/slash-commands.js +22 -0
  1608. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/slash-commands.js.map +1 -0
  1609. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/system-prompt.d.ts +28 -0
  1610. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/system-prompt.d.ts.map +1 -0
  1611. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/system-prompt.js +150 -0
  1612. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/system-prompt.js.map +1 -0
  1613. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/timings.d.ts +7 -0
  1614. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/timings.d.ts.map +1 -0
  1615. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/timings.js +25 -0
  1616. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/timings.js.map +1 -0
  1617. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/bash.d.ts +59 -0
  1618. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/bash.d.ts.map +1 -0
  1619. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/bash.js +249 -0
  1620. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/bash.js.map +1 -0
  1621. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/edit-diff.d.ts +63 -0
  1622. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/edit-diff.d.ts.map +1 -0
  1623. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/edit-diff.js +243 -0
  1624. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/edit-diff.js.map +1 -0
  1625. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/edit.d.ts +39 -0
  1626. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/edit.d.ts.map +1 -0
  1627. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/edit.js +146 -0
  1628. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/edit.js.map +1 -0
  1629. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/find.d.ts +39 -0
  1630. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/find.d.ts.map +1 -0
  1631. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/find.js +209 -0
  1632. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/find.js.map +1 -0
  1633. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/grep.d.ts +45 -0
  1634. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/grep.d.ts.map +1 -0
  1635. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/grep.js +239 -0
  1636. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/grep.js.map +1 -0
  1637. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/index.d.ts +73 -0
  1638. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/index.d.ts.map +1 -0
  1639. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/index.js +61 -0
  1640. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/index.js.map +1 -0
  1641. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/ls.d.ts +40 -0
  1642. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/ls.d.ts.map +1 -0
  1643. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/ls.js +118 -0
  1644. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/ls.js.map +1 -0
  1645. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/path-utils.d.ts +8 -0
  1646. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/path-utils.d.ts.map +1 -0
  1647. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/path-utils.js +81 -0
  1648. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/path-utils.js.map +1 -0
  1649. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/read.d.ts +39 -0
  1650. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/read.d.ts.map +1 -0
  1651. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/read.js +166 -0
  1652. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/read.js.map +1 -0
  1653. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/truncate.d.ts +70 -0
  1654. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/truncate.d.ts.map +1 -0
  1655. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/truncate.js +205 -0
  1656. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/truncate.js.map +1 -0
  1657. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/write.d.ts +29 -0
  1658. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/write.d.ts.map +1 -0
  1659. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/write.js +78 -0
  1660. package/node_modules/@styrene-lab/pi-coding-agent/dist/core/tools/write.js.map +1 -0
  1661. package/node_modules/@styrene-lab/pi-coding-agent/dist/index.d.ts +27 -0
  1662. package/node_modules/@styrene-lab/pi-coding-agent/dist/index.d.ts.map +1 -0
  1663. package/node_modules/@styrene-lab/pi-coding-agent/dist/index.js +42 -0
  1664. package/node_modules/@styrene-lab/pi-coding-agent/dist/index.js.map +1 -0
  1665. package/node_modules/@styrene-lab/pi-coding-agent/dist/main.d.ts +8 -0
  1666. package/node_modules/@styrene-lab/pi-coding-agent/dist/main.d.ts.map +1 -0
  1667. package/node_modules/@styrene-lab/pi-coding-agent/dist/main.js +700 -0
  1668. package/node_modules/@styrene-lab/pi-coding-agent/dist/main.js.map +1 -0
  1669. package/node_modules/@styrene-lab/pi-coding-agent/dist/migrations.d.ts +33 -0
  1670. package/node_modules/@styrene-lab/pi-coding-agent/dist/migrations.d.ts.map +1 -0
  1671. package/node_modules/@styrene-lab/pi-coding-agent/dist/migrations.js +261 -0
  1672. package/node_modules/@styrene-lab/pi-coding-agent/dist/migrations.js.map +1 -0
  1673. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/index.d.ts +9 -0
  1674. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/index.d.ts.map +1 -0
  1675. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/index.js +8 -0
  1676. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/index.js.map +1 -0
  1677. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/armin.d.ts +34 -0
  1678. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/armin.d.ts.map +1 -0
  1679. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/armin.js +333 -0
  1680. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/armin.js.map +1 -0
  1681. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/assistant-message.d.ts +16 -0
  1682. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/assistant-message.d.ts.map +1 -0
  1683. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/assistant-message.js +96 -0
  1684. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/assistant-message.js.map +1 -0
  1685. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/bash-execution.d.ts +35 -0
  1686. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/bash-execution.d.ts.map +1 -0
  1687. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/bash-execution.js +162 -0
  1688. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/bash-execution.js.map +1 -0
  1689. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/bordered-loader.d.ts +16 -0
  1690. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/bordered-loader.d.ts.map +1 -0
  1691. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/bordered-loader.js +51 -0
  1692. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/bordered-loader.js.map +1 -0
  1693. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.d.ts +16 -0
  1694. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.d.ts.map +1 -0
  1695. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.js +44 -0
  1696. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.js.map +1 -0
  1697. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.d.ts +16 -0
  1698. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.d.ts.map +1 -0
  1699. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.js +45 -0
  1700. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.js.map +1 -0
  1701. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/config-selector.d.ts +71 -0
  1702. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/config-selector.d.ts.map +1 -0
  1703. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/config-selector.js +479 -0
  1704. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/config-selector.js.map +1 -0
  1705. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/countdown-timer.d.ts +14 -0
  1706. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/countdown-timer.d.ts.map +1 -0
  1707. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/countdown-timer.js +33 -0
  1708. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/countdown-timer.js.map +1 -0
  1709. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/custom-editor.d.ts +21 -0
  1710. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/custom-editor.d.ts.map +1 -0
  1711. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/custom-editor.js +70 -0
  1712. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/custom-editor.js.map +1 -0
  1713. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/custom-message.d.ts +20 -0
  1714. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/custom-message.d.ts.map +1 -0
  1715. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/custom-message.js +79 -0
  1716. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/custom-message.js.map +1 -0
  1717. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/daxnuts.d.ts +23 -0
  1718. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/daxnuts.d.ts.map +1 -0
  1719. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/daxnuts.js +140 -0
  1720. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/daxnuts.js.map +1 -0
  1721. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/diff.d.ts +12 -0
  1722. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/diff.d.ts.map +1 -0
  1723. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/diff.js +133 -0
  1724. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/diff.js.map +1 -0
  1725. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/dynamic-border.d.ts +15 -0
  1726. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/dynamic-border.d.ts.map +1 -0
  1727. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/dynamic-border.js +21 -0
  1728. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/dynamic-border.js.map +1 -0
  1729. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/extension-editor.d.ts +20 -0
  1730. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/extension-editor.d.ts.map +1 -0
  1731. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/extension-editor.js +111 -0
  1732. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/extension-editor.js.map +1 -0
  1733. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/extension-input.d.ts +23 -0
  1734. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/extension-input.d.ts.map +1 -0
  1735. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/extension-input.js +61 -0
  1736. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/extension-input.js.map +1 -0
  1737. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/extension-selector.d.ts +24 -0
  1738. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/extension-selector.d.ts.map +1 -0
  1739. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/extension-selector.js +78 -0
  1740. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/extension-selector.js.map +1 -0
  1741. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/footer.d.ts +26 -0
  1742. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/footer.d.ts.map +1 -0
  1743. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/footer.js +198 -0
  1744. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/footer.js.map +1 -0
  1745. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/index.d.ts +32 -0
  1746. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/index.d.ts.map +1 -0
  1747. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/index.js +33 -0
  1748. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/index.js.map +1 -0
  1749. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.d.ts +41 -0
  1750. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.d.ts.map +1 -0
  1751. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.js +61 -0
  1752. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.js.map +1 -0
  1753. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/login-dialog.d.ts +42 -0
  1754. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/login-dialog.d.ts.map +1 -0
  1755. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/login-dialog.js +145 -0
  1756. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/login-dialog.js.map +1 -0
  1757. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/model-selector.d.ts +47 -0
  1758. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/model-selector.d.ts.map +1 -0
  1759. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/model-selector.js +271 -0
  1760. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/model-selector.js.map +1 -0
  1761. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/oauth-selector.d.ts +19 -0
  1762. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/oauth-selector.d.ts.map +1 -0
  1763. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/oauth-selector.js +97 -0
  1764. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/oauth-selector.js.map +1 -0
  1765. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.d.ts +49 -0
  1766. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.d.ts.map +1 -0
  1767. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.js +275 -0
  1768. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.js.map +1 -0
  1769. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/session-selector-search.d.ts +23 -0
  1770. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/session-selector-search.d.ts.map +1 -0
  1771. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/session-selector-search.js +155 -0
  1772. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/session-selector-search.js.map +1 -0
  1773. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/session-selector.d.ts +95 -0
  1774. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/session-selector.d.ts.map +1 -0
  1775. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/session-selector.js +851 -0
  1776. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/session-selector.js.map +1 -0
  1777. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/settings-selector.d.ts +58 -0
  1778. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/settings-selector.d.ts.map +1 -0
  1779. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/settings-selector.js +301 -0
  1780. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/settings-selector.js.map +1 -0
  1781. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/show-images-selector.d.ts +10 -0
  1782. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/show-images-selector.d.ts.map +1 -0
  1783. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/show-images-selector.js +39 -0
  1784. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/show-images-selector.js.map +1 -0
  1785. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.d.ts +17 -0
  1786. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.d.ts.map +1 -0
  1787. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.js +47 -0
  1788. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.js.map +1 -0
  1789. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/theme-selector.d.ts +11 -0
  1790. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/theme-selector.d.ts.map +1 -0
  1791. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/theme-selector.js +50 -0
  1792. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/theme-selector.js.map +1 -0
  1793. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/thinking-selector.d.ts +11 -0
  1794. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/thinking-selector.d.ts.map +1 -0
  1795. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/thinking-selector.js +51 -0
  1796. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/thinking-selector.js.map +1 -0
  1797. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/tool-execution.d.ts +89 -0
  1798. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/tool-execution.d.ts.map +1 -0
  1799. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/tool-execution.js +976 -0
  1800. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/tool-execution.js.map +1 -0
  1801. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/tree-selector.d.ts +87 -0
  1802. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/tree-selector.d.ts.map +1 -0
  1803. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/tree-selector.js +1040 -0
  1804. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/tree-selector.js.map +1 -0
  1805. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/user-message-selector.d.ts +30 -0
  1806. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/user-message-selector.d.ts.map +1 -0
  1807. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/user-message-selector.js +113 -0
  1808. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/user-message-selector.js.map +1 -0
  1809. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/user-message.d.ts +9 -0
  1810. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/user-message.d.ts.map +1 -0
  1811. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/user-message.js +27 -0
  1812. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/user-message.js.map +1 -0
  1813. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/visual-truncate.d.ts +24 -0
  1814. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/visual-truncate.d.ts.map +1 -0
  1815. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/visual-truncate.js +33 -0
  1816. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/components/visual-truncate.js.map +1 -0
  1817. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/interactive-mode.d.ts +317 -0
  1818. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/interactive-mode.d.ts.map +1 -0
  1819. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/interactive-mode.js +3832 -0
  1820. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/interactive-mode.js.map +1 -0
  1821. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/theme/dark.json +85 -0
  1822. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/theme/light.json +84 -0
  1823. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/theme/theme-schema.json +335 -0
  1824. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/theme/theme.d.ts +78 -0
  1825. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/theme/theme.d.ts.map +1 -0
  1826. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/theme/theme.js +957 -0
  1827. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/interactive/theme/theme.js.map +1 -0
  1828. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/print-mode.d.ts +28 -0
  1829. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/print-mode.d.ts.map +1 -0
  1830. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/print-mode.js +101 -0
  1831. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/print-mode.js.map +1 -0
  1832. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/rpc/jsonl.d.ts +17 -0
  1833. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/rpc/jsonl.d.ts.map +1 -0
  1834. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/rpc/jsonl.js +49 -0
  1835. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/rpc/jsonl.js.map +1 -0
  1836. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/rpc/rpc-client.d.ts +217 -0
  1837. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/rpc/rpc-client.d.ts.map +1 -0
  1838. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/rpc/rpc-client.js +401 -0
  1839. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/rpc/rpc-client.js.map +1 -0
  1840. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/rpc/rpc-mode.d.ts +20 -0
  1841. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/rpc/rpc-mode.d.ts.map +1 -0
  1842. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/rpc/rpc-mode.js +509 -0
  1843. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/rpc/rpc-mode.js.map +1 -0
  1844. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/rpc/rpc-types.d.ts +409 -0
  1845. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/rpc/rpc-types.d.ts.map +1 -0
  1846. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/rpc/rpc-types.js +8 -0
  1847. package/node_modules/@styrene-lab/pi-coding-agent/dist/modes/rpc/rpc-types.js.map +1 -0
  1848. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/changelog.d.ts +21 -0
  1849. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/changelog.d.ts.map +1 -0
  1850. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/changelog.js +87 -0
  1851. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/changelog.js.map +1 -0
  1852. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/clipboard-image.d.ts +11 -0
  1853. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/clipboard-image.d.ts.map +1 -0
  1854. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/clipboard-image.js +286 -0
  1855. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/clipboard-image.js.map +1 -0
  1856. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/clipboard-native.d.ts +8 -0
  1857. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/clipboard-native.d.ts.map +1 -0
  1858. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/clipboard-native.js +20 -0
  1859. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/clipboard-native.js.map +1 -0
  1860. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/clipboard.d.ts +2 -0
  1861. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/clipboard.d.ts.map +1 -0
  1862. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/clipboard.js +68 -0
  1863. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/clipboard.js.map +1 -0
  1864. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/exif-orientation.d.ts +5 -0
  1865. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/exif-orientation.d.ts.map +1 -0
  1866. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/exif-orientation.js +158 -0
  1867. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/exif-orientation.js.map +1 -0
  1868. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/frontmatter.d.ts +8 -0
  1869. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/frontmatter.d.ts.map +1 -0
  1870. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/frontmatter.js +26 -0
  1871. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/frontmatter.js.map +1 -0
  1872. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/git.d.ts +26 -0
  1873. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/git.d.ts.map +1 -0
  1874. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/git.js +163 -0
  1875. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/git.js.map +1 -0
  1876. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/image-convert.d.ts +9 -0
  1877. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/image-convert.d.ts.map +1 -0
  1878. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/image-convert.js +39 -0
  1879. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/image-convert.js.map +1 -0
  1880. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/image-resize.d.ts +36 -0
  1881. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/image-resize.d.ts.map +1 -0
  1882. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/image-resize.js +186 -0
  1883. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/image-resize.js.map +1 -0
  1884. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/mime.d.ts +2 -0
  1885. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/mime.d.ts.map +1 -0
  1886. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/mime.js +26 -0
  1887. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/mime.js.map +1 -0
  1888. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/photon.d.ts +21 -0
  1889. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/photon.d.ts.map +1 -0
  1890. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/photon.js +121 -0
  1891. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/photon.js.map +1 -0
  1892. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/shell.d.ts +26 -0
  1893. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/shell.d.ts.map +1 -0
  1894. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/shell.js +186 -0
  1895. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/shell.js.map +1 -0
  1896. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/sleep.d.ts +5 -0
  1897. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/sleep.d.ts.map +1 -0
  1898. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/sleep.js +17 -0
  1899. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/sleep.js.map +1 -0
  1900. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/tools-manager.d.ts +3 -0
  1901. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/tools-manager.d.ts.map +1 -0
  1902. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/tools-manager.js +252 -0
  1903. package/node_modules/@styrene-lab/pi-coding-agent/dist/utils/tools-manager.js.map +1 -0
  1904. package/node_modules/@styrene-lab/pi-coding-agent/docs/compaction.md +392 -0
  1905. package/node_modules/@styrene-lab/pi-coding-agent/docs/custom-provider.md +596 -0
  1906. package/node_modules/@styrene-lab/pi-coding-agent/docs/development.md +69 -0
  1907. package/node_modules/@styrene-lab/pi-coding-agent/docs/extensions.md +2034 -0
  1908. package/node_modules/@styrene-lab/pi-coding-agent/docs/images/doom-extension.png +0 -0
  1909. package/node_modules/@styrene-lab/pi-coding-agent/docs/images/exy.png +0 -0
  1910. package/node_modules/@styrene-lab/pi-coding-agent/docs/images/interactive-mode.png +0 -0
  1911. package/node_modules/@styrene-lab/pi-coding-agent/docs/images/tree-view.png +0 -0
  1912. package/node_modules/@styrene-lab/pi-coding-agent/docs/json.md +79 -0
  1913. package/node_modules/@styrene-lab/pi-coding-agent/docs/keybindings.md +182 -0
  1914. package/node_modules/@styrene-lab/pi-coding-agent/docs/models.md +309 -0
  1915. package/node_modules/@styrene-lab/pi-coding-agent/docs/packages.md +218 -0
  1916. package/node_modules/@styrene-lab/pi-coding-agent/docs/prompt-templates.md +67 -0
  1917. package/node_modules/@styrene-lab/pi-coding-agent/docs/providers.md +188 -0
  1918. package/node_modules/@styrene-lab/pi-coding-agent/docs/rpc.md +1354 -0
  1919. package/node_modules/@styrene-lab/pi-coding-agent/docs/sdk.md +968 -0
  1920. package/node_modules/@styrene-lab/pi-coding-agent/docs/session.md +412 -0
  1921. package/node_modules/@styrene-lab/pi-coding-agent/docs/settings.md +234 -0
  1922. package/node_modules/@styrene-lab/pi-coding-agent/docs/shell-aliases.md +13 -0
  1923. package/node_modules/@styrene-lab/pi-coding-agent/docs/skills.md +231 -0
  1924. package/node_modules/@styrene-lab/pi-coding-agent/docs/terminal-setup.md +95 -0
  1925. package/node_modules/@styrene-lab/pi-coding-agent/docs/termux.md +127 -0
  1926. package/node_modules/@styrene-lab/pi-coding-agent/docs/themes.md +295 -0
  1927. package/node_modules/@styrene-lab/pi-coding-agent/docs/tmux.md +61 -0
  1928. package/node_modules/@styrene-lab/pi-coding-agent/docs/tree.md +228 -0
  1929. package/node_modules/@styrene-lab/pi-coding-agent/docs/tui.md +887 -0
  1930. package/node_modules/@styrene-lab/pi-coding-agent/docs/windows.md +17 -0
  1931. package/node_modules/@styrene-lab/pi-coding-agent/examples/README.md +25 -0
  1932. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/README.md +205 -0
  1933. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/antigravity-image-gen.ts +416 -0
  1934. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/auto-commit-on-exit.ts +49 -0
  1935. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/bash-spawn-hook.ts +30 -0
  1936. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/bookmark.ts +50 -0
  1937. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/built-in-tool-renderer.ts +246 -0
  1938. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/claude-rules.ts +86 -0
  1939. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/commands.ts +72 -0
  1940. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/confirm-destructive.ts +59 -0
  1941. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/custom-compaction.ts +114 -0
  1942. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/custom-footer.ts +64 -0
  1943. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/custom-header.ts +73 -0
  1944. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/custom-provider-anthropic/index.ts +604 -0
  1945. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/custom-provider-anthropic/package-lock.json +24 -0
  1946. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/custom-provider-anthropic/package.json +19 -0
  1947. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/custom-provider-gitlab-duo/index.ts +349 -0
  1948. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/custom-provider-gitlab-duo/package.json +16 -0
  1949. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/custom-provider-gitlab-duo/test.ts +82 -0
  1950. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/custom-provider-qwen-cli/index.ts +345 -0
  1951. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/custom-provider-qwen-cli/package.json +16 -0
  1952. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/dirty-repo-guard.ts +56 -0
  1953. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/doom-overlay/README.md +46 -0
  1954. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/doom-overlay/doom/build/doom.js +21 -0
  1955. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/doom-overlay/doom/build/doom.wasm +0 -0
  1956. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/doom-overlay/doom/build.sh +152 -0
  1957. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/doom-overlay/doom/doomgeneric_pi.c +72 -0
  1958. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/doom-overlay/doom-component.ts +132 -0
  1959. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/doom-overlay/doom-engine.ts +173 -0
  1960. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/doom-overlay/doom-keys.ts +104 -0
  1961. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/doom-overlay/index.ts +74 -0
  1962. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/doom-overlay/wad-finder.ts +51 -0
  1963. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/dynamic-resources/SKILL.md +8 -0
  1964. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/dynamic-resources/dynamic.json +79 -0
  1965. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/dynamic-resources/dynamic.md +5 -0
  1966. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/dynamic-resources/index.ts +15 -0
  1967. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/dynamic-tools.ts +74 -0
  1968. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/event-bus.ts +43 -0
  1969. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/file-trigger.ts +41 -0
  1970. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/git-checkpoint.ts +53 -0
  1971. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/handoff.ts +150 -0
  1972. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/hello.ts +25 -0
  1973. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/inline-bash.ts +94 -0
  1974. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/input-transform.ts +43 -0
  1975. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/interactive-shell.ts +196 -0
  1976. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/mac-system-theme.ts +47 -0
  1977. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/message-renderer.ts +59 -0
  1978. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/minimal-mode.ts +426 -0
  1979. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/modal-editor.ts +85 -0
  1980. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/model-status.ts +31 -0
  1981. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/notify.ts +55 -0
  1982. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/overlay-qa-tests.ts +1348 -0
  1983. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/overlay-test.ts +150 -0
  1984. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/permission-gate.ts +34 -0
  1985. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/pirate.ts +47 -0
  1986. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/plan-mode/README.md +65 -0
  1987. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/plan-mode/index.ts +340 -0
  1988. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/plan-mode/utils.ts +168 -0
  1989. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/preset.ts +397 -0
  1990. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/protected-paths.ts +30 -0
  1991. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/provider-payload.ts +14 -0
  1992. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/qna.ts +119 -0
  1993. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/question.ts +264 -0
  1994. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/questionnaire.ts +427 -0
  1995. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/rainbow-editor.ts +88 -0
  1996. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/reload-runtime.ts +37 -0
  1997. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/rpc-demo.ts +124 -0
  1998. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/sandbox/index.ts +317 -0
  1999. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/sandbox/package-lock.json +92 -0
  2000. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/sandbox/package.json +19 -0
  2001. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/send-user-message.ts +97 -0
  2002. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/session-name.ts +27 -0
  2003. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/shutdown-command.ts +63 -0
  2004. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/snake.ts +343 -0
  2005. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/space-invaders.ts +560 -0
  2006. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/ssh.ts +220 -0
  2007. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/status-line.ts +40 -0
  2008. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/subagent/README.md +172 -0
  2009. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/subagent/agents/planner.md +37 -0
  2010. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/subagent/agents/reviewer.md +35 -0
  2011. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/subagent/agents/scout.md +50 -0
  2012. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/subagent/agents/worker.md +24 -0
  2013. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/subagent/agents.ts +126 -0
  2014. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/subagent/index.ts +964 -0
  2015. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/subagent/prompts/implement-and-review.md +10 -0
  2016. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/subagent/prompts/implement.md +10 -0
  2017. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/subagent/prompts/scout-and-plan.md +9 -0
  2018. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/summarize.ts +195 -0
  2019. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/system-prompt-header.ts +17 -0
  2020. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/timed-confirm.ts +70 -0
  2021. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/titlebar-spinner.ts +58 -0
  2022. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/todo.ts +299 -0
  2023. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/tool-override.ts +142 -0
  2024. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/tools.ts +146 -0
  2025. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/trigger-compact.ts +40 -0
  2026. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/truncated-tool.ts +192 -0
  2027. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/widget-placement.ts +17 -0
  2028. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/with-deps/index.ts +32 -0
  2029. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/with-deps/package-lock.json +31 -0
  2030. package/node_modules/@styrene-lab/pi-coding-agent/examples/extensions/with-deps/package.json +22 -0
  2031. package/node_modules/@styrene-lab/pi-coding-agent/examples/rpc-extension-ui.ts +632 -0
  2032. package/node_modules/@styrene-lab/pi-coding-agent/examples/sdk/01-minimal.ts +22 -0
  2033. package/node_modules/@styrene-lab/pi-coding-agent/examples/sdk/02-custom-model.ts +49 -0
  2034. package/node_modules/@styrene-lab/pi-coding-agent/examples/sdk/03-custom-prompt.ts +55 -0
  2035. package/node_modules/@styrene-lab/pi-coding-agent/examples/sdk/04-skills.ts +46 -0
  2036. package/node_modules/@styrene-lab/pi-coding-agent/examples/sdk/05-tools.ts +56 -0
  2037. package/node_modules/@styrene-lab/pi-coding-agent/examples/sdk/06-extensions.ts +88 -0
  2038. package/node_modules/@styrene-lab/pi-coding-agent/examples/sdk/07-context-files.ts +40 -0
  2039. package/node_modules/@styrene-lab/pi-coding-agent/examples/sdk/08-prompt-templates.ts +47 -0
  2040. package/node_modules/@styrene-lab/pi-coding-agent/examples/sdk/09-api-keys-and-oauth.ts +48 -0
  2041. package/node_modules/@styrene-lab/pi-coding-agent/examples/sdk/10-settings.ts +51 -0
  2042. package/node_modules/@styrene-lab/pi-coding-agent/examples/sdk/11-sessions.ts +48 -0
  2043. package/node_modules/@styrene-lab/pi-coding-agent/examples/sdk/12-full-control.ts +82 -0
  2044. package/node_modules/@styrene-lab/pi-coding-agent/examples/sdk/README.md +144 -0
  2045. package/node_modules/@styrene-lab/pi-coding-agent/package.json +99 -0
  2046. package/node_modules/@styrene-lab/pi-tui/README.md +767 -0
  2047. package/node_modules/@styrene-lab/pi-tui/dist/autocomplete.d.ts +50 -0
  2048. package/node_modules/@styrene-lab/pi-tui/dist/autocomplete.d.ts.map +1 -0
  2049. package/node_modules/@styrene-lab/pi-tui/dist/autocomplete.js +635 -0
  2050. package/node_modules/@styrene-lab/pi-tui/dist/autocomplete.js.map +1 -0
  2051. package/node_modules/@styrene-lab/pi-tui/dist/components/box.d.ts +30 -0
  2052. package/node_modules/@styrene-lab/pi-tui/dist/components/box.d.ts.map +1 -0
  2053. package/node_modules/@styrene-lab/pi-tui/dist/components/box.js +122 -0
  2054. package/node_modules/@styrene-lab/pi-tui/dist/components/box.js.map +1 -0
  2055. package/node_modules/@styrene-lab/pi-tui/dist/components/cancellable-loader.d.ts +22 -0
  2056. package/node_modules/@styrene-lab/pi-tui/dist/components/cancellable-loader.d.ts.map +1 -0
  2057. package/node_modules/@styrene-lab/pi-tui/dist/components/cancellable-loader.js +35 -0
  2058. package/node_modules/@styrene-lab/pi-tui/dist/components/cancellable-loader.js.map +1 -0
  2059. package/node_modules/@styrene-lab/pi-tui/dist/components/editor.d.ts +233 -0
  2060. package/node_modules/@styrene-lab/pi-tui/dist/components/editor.d.ts.map +1 -0
  2061. package/node_modules/@styrene-lab/pi-tui/dist/components/editor.js +1844 -0
  2062. package/node_modules/@styrene-lab/pi-tui/dist/components/editor.js.map +1 -0
  2063. package/node_modules/@styrene-lab/pi-tui/dist/components/image.d.ts +28 -0
  2064. package/node_modules/@styrene-lab/pi-tui/dist/components/image.d.ts.map +1 -0
  2065. package/node_modules/@styrene-lab/pi-tui/dist/components/image.js +69 -0
  2066. package/node_modules/@styrene-lab/pi-tui/dist/components/image.js.map +1 -0
  2067. package/node_modules/@styrene-lab/pi-tui/dist/components/input.d.ts +39 -0
  2068. package/node_modules/@styrene-lab/pi-tui/dist/components/input.d.ts.map +1 -0
  2069. package/node_modules/@styrene-lab/pi-tui/dist/components/input.js +464 -0
  2070. package/node_modules/@styrene-lab/pi-tui/dist/components/input.js.map +1 -0
  2071. package/node_modules/@styrene-lab/pi-tui/dist/components/loader.d.ts +21 -0
  2072. package/node_modules/@styrene-lab/pi-tui/dist/components/loader.d.ts.map +1 -0
  2073. package/node_modules/@styrene-lab/pi-tui/dist/components/loader.js +49 -0
  2074. package/node_modules/@styrene-lab/pi-tui/dist/components/loader.js.map +1 -0
  2075. package/node_modules/@styrene-lab/pi-tui/dist/components/markdown.d.ts +95 -0
  2076. package/node_modules/@styrene-lab/pi-tui/dist/components/markdown.d.ts.map +1 -0
  2077. package/node_modules/@styrene-lab/pi-tui/dist/components/markdown.js +655 -0
  2078. package/node_modules/@styrene-lab/pi-tui/dist/components/markdown.js.map +1 -0
  2079. package/node_modules/@styrene-lab/pi-tui/dist/components/select-list.d.ts +50 -0
  2080. package/node_modules/@styrene-lab/pi-tui/dist/components/select-list.d.ts.map +1 -0
  2081. package/node_modules/@styrene-lab/pi-tui/dist/components/select-list.js +159 -0
  2082. package/node_modules/@styrene-lab/pi-tui/dist/components/select-list.js.map +1 -0
  2083. package/node_modules/@styrene-lab/pi-tui/dist/components/settings-list.d.ts +50 -0
  2084. package/node_modules/@styrene-lab/pi-tui/dist/components/settings-list.d.ts.map +1 -0
  2085. package/node_modules/@styrene-lab/pi-tui/dist/components/settings-list.js +185 -0
  2086. package/node_modules/@styrene-lab/pi-tui/dist/components/settings-list.js.map +1 -0
  2087. package/node_modules/@styrene-lab/pi-tui/dist/components/spacer.d.ts +12 -0
  2088. package/node_modules/@styrene-lab/pi-tui/dist/components/spacer.d.ts.map +1 -0
  2089. package/node_modules/@styrene-lab/pi-tui/dist/components/spacer.js +23 -0
  2090. package/node_modules/@styrene-lab/pi-tui/dist/components/spacer.js.map +1 -0
  2091. package/node_modules/@styrene-lab/pi-tui/dist/components/text.d.ts +26 -0
  2092. package/node_modules/@styrene-lab/pi-tui/dist/components/text.d.ts.map +1 -0
  2093. package/node_modules/@styrene-lab/pi-tui/dist/components/text.js +107 -0
  2094. package/node_modules/@styrene-lab/pi-tui/dist/components/text.js.map +1 -0
  2095. package/node_modules/@styrene-lab/pi-tui/dist/components/truncated-text.d.ts +13 -0
  2096. package/node_modules/@styrene-lab/pi-tui/dist/components/truncated-text.d.ts.map +1 -0
  2097. package/node_modules/@styrene-lab/pi-tui/dist/components/truncated-text.js +51 -0
  2098. package/node_modules/@styrene-lab/pi-tui/dist/components/truncated-text.js.map +1 -0
  2099. package/node_modules/@styrene-lab/pi-tui/dist/editor-component.d.ts +39 -0
  2100. package/node_modules/@styrene-lab/pi-tui/dist/editor-component.d.ts.map +1 -0
  2101. package/node_modules/@styrene-lab/pi-tui/dist/editor-component.js +2 -0
  2102. package/node_modules/@styrene-lab/pi-tui/dist/editor-component.js.map +1 -0
  2103. package/node_modules/@styrene-lab/pi-tui/dist/fuzzy.d.ts +16 -0
  2104. package/node_modules/@styrene-lab/pi-tui/dist/fuzzy.d.ts.map +1 -0
  2105. package/node_modules/@styrene-lab/pi-tui/dist/fuzzy.js +107 -0
  2106. package/node_modules/@styrene-lab/pi-tui/dist/fuzzy.js.map +1 -0
  2107. package/node_modules/@styrene-lab/pi-tui/dist/index.d.ts +23 -0
  2108. package/node_modules/@styrene-lab/pi-tui/dist/index.d.ts.map +1 -0
  2109. package/node_modules/@styrene-lab/pi-tui/dist/index.js +32 -0
  2110. package/node_modules/@styrene-lab/pi-tui/dist/index.js.map +1 -0
  2111. package/node_modules/@styrene-lab/pi-tui/dist/keybindings.d.ts +39 -0
  2112. package/node_modules/@styrene-lab/pi-tui/dist/keybindings.d.ts.map +1 -0
  2113. package/node_modules/@styrene-lab/pi-tui/dist/keybindings.js +117 -0
  2114. package/node_modules/@styrene-lab/pi-tui/dist/keybindings.js.map +1 -0
  2115. package/node_modules/@styrene-lab/pi-tui/dist/keys.d.ts +172 -0
  2116. package/node_modules/@styrene-lab/pi-tui/dist/keys.d.ts.map +1 -0
  2117. package/node_modules/@styrene-lab/pi-tui/dist/keys.js +1097 -0
  2118. package/node_modules/@styrene-lab/pi-tui/dist/keys.js.map +1 -0
  2119. package/node_modules/@styrene-lab/pi-tui/dist/kill-ring.d.ts +28 -0
  2120. package/node_modules/@styrene-lab/pi-tui/dist/kill-ring.d.ts.map +1 -0
  2121. package/node_modules/@styrene-lab/pi-tui/dist/kill-ring.js +44 -0
  2122. package/node_modules/@styrene-lab/pi-tui/dist/kill-ring.js.map +1 -0
  2123. package/node_modules/@styrene-lab/pi-tui/dist/stdin-buffer.d.ts +62 -0
  2124. package/node_modules/@styrene-lab/pi-tui/dist/stdin-buffer.d.ts.map +1 -0
  2125. package/node_modules/@styrene-lab/pi-tui/dist/stdin-buffer.js +337 -0
  2126. package/node_modules/@styrene-lab/pi-tui/dist/stdin-buffer.js.map +1 -0
  2127. package/node_modules/@styrene-lab/pi-tui/dist/terminal-image.d.ts +68 -0
  2128. package/node_modules/@styrene-lab/pi-tui/dist/terminal-image.d.ts.map +1 -0
  2129. package/node_modules/@styrene-lab/pi-tui/dist/terminal-image.js +288 -0
  2130. package/node_modules/@styrene-lab/pi-tui/dist/terminal-image.js.map +1 -0
  2131. package/node_modules/@styrene-lab/pi-tui/dist/terminal.d.ts +85 -0
  2132. package/node_modules/@styrene-lab/pi-tui/dist/terminal.d.ts.map +1 -0
  2133. package/node_modules/@styrene-lab/pi-tui/dist/terminal.js +309 -0
  2134. package/node_modules/@styrene-lab/pi-tui/dist/terminal.js.map +1 -0
  2135. package/node_modules/@styrene-lab/pi-tui/dist/tui.d.ts +220 -0
  2136. package/node_modules/@styrene-lab/pi-tui/dist/tui.d.ts.map +1 -0
  2137. package/node_modules/@styrene-lab/pi-tui/dist/tui.js +977 -0
  2138. package/node_modules/@styrene-lab/pi-tui/dist/tui.js.map +1 -0
  2139. package/node_modules/@styrene-lab/pi-tui/dist/undo-stack.d.ts +17 -0
  2140. package/node_modules/@styrene-lab/pi-tui/dist/undo-stack.d.ts.map +1 -0
  2141. package/node_modules/@styrene-lab/pi-tui/dist/undo-stack.js +25 -0
  2142. package/node_modules/@styrene-lab/pi-tui/dist/undo-stack.js.map +1 -0
  2143. package/node_modules/@styrene-lab/pi-tui/dist/utils.d.ts +78 -0
  2144. package/node_modules/@styrene-lab/pi-tui/dist/utils.d.ts.map +1 -0
  2145. package/node_modules/@styrene-lab/pi-tui/dist/utils.js +815 -0
  2146. package/node_modules/@styrene-lab/pi-tui/dist/utils.js.map +1 -0
  2147. package/node_modules/@styrene-lab/pi-tui/package.json +52 -0
  2148. package/node_modules/ajv/.runkit_example.js +23 -0
  2149. package/node_modules/ajv/LICENSE +22 -0
  2150. package/node_modules/ajv/README.md +207 -0
  2151. package/node_modules/ajv/dist/2019.d.ts +19 -0
  2152. package/node_modules/ajv/dist/2019.js +61 -0
  2153. package/node_modules/ajv/dist/2019.js.map +1 -0
  2154. package/node_modules/ajv/dist/2020.d.ts +19 -0
  2155. package/node_modules/ajv/dist/2020.js +55 -0
  2156. package/node_modules/ajv/dist/2020.js.map +1 -0
  2157. package/node_modules/ajv/dist/ajv.d.ts +18 -0
  2158. package/node_modules/ajv/dist/ajv.js +50 -0
  2159. package/node_modules/ajv/dist/ajv.js.map +1 -0
  2160. package/node_modules/ajv/dist/compile/codegen/code.d.ts +40 -0
  2161. package/node_modules/ajv/dist/compile/codegen/code.js +156 -0
  2162. package/node_modules/ajv/dist/compile/codegen/code.js.map +1 -0
  2163. package/node_modules/ajv/dist/compile/codegen/index.d.ts +79 -0
  2164. package/node_modules/ajv/dist/compile/codegen/index.js +697 -0
  2165. package/node_modules/ajv/dist/compile/codegen/index.js.map +1 -0
  2166. package/node_modules/ajv/dist/compile/codegen/scope.d.ts +79 -0
  2167. package/node_modules/ajv/dist/compile/codegen/scope.js +143 -0
  2168. package/node_modules/ajv/dist/compile/codegen/scope.js.map +1 -0
  2169. package/node_modules/ajv/dist/compile/errors.d.ts +13 -0
  2170. package/node_modules/ajv/dist/compile/errors.js +123 -0
  2171. package/node_modules/ajv/dist/compile/errors.js.map +1 -0
  2172. package/node_modules/ajv/dist/compile/index.d.ts +80 -0
  2173. package/node_modules/ajv/dist/compile/index.js +242 -0
  2174. package/node_modules/ajv/dist/compile/index.js.map +1 -0
  2175. package/node_modules/ajv/dist/compile/jtd/parse.d.ts +4 -0
  2176. package/node_modules/ajv/dist/compile/jtd/parse.js +350 -0
  2177. package/node_modules/ajv/dist/compile/jtd/parse.js.map +1 -0
  2178. package/node_modules/ajv/dist/compile/jtd/serialize.d.ts +4 -0
  2179. package/node_modules/ajv/dist/compile/jtd/serialize.js +236 -0
  2180. package/node_modules/ajv/dist/compile/jtd/serialize.js.map +1 -0
  2181. package/node_modules/ajv/dist/compile/jtd/types.d.ts +6 -0
  2182. package/node_modules/ajv/dist/compile/jtd/types.js +14 -0
  2183. package/node_modules/ajv/dist/compile/jtd/types.js.map +1 -0
  2184. package/node_modules/ajv/dist/compile/names.d.ts +20 -0
  2185. package/node_modules/ajv/dist/compile/names.js +28 -0
  2186. package/node_modules/ajv/dist/compile/names.js.map +1 -0
  2187. package/node_modules/ajv/dist/compile/ref_error.d.ts +6 -0
  2188. package/node_modules/ajv/dist/compile/ref_error.js +12 -0
  2189. package/node_modules/ajv/dist/compile/ref_error.js.map +1 -0
  2190. package/node_modules/ajv/dist/compile/resolve.d.ts +12 -0
  2191. package/node_modules/ajv/dist/compile/resolve.js +155 -0
  2192. package/node_modules/ajv/dist/compile/resolve.js.map +1 -0
  2193. package/node_modules/ajv/dist/compile/rules.d.ts +28 -0
  2194. package/node_modules/ajv/dist/compile/rules.js +26 -0
  2195. package/node_modules/ajv/dist/compile/rules.js.map +1 -0
  2196. package/node_modules/ajv/dist/compile/util.d.ts +40 -0
  2197. package/node_modules/ajv/dist/compile/util.js +178 -0
  2198. package/node_modules/ajv/dist/compile/util.js.map +1 -0
  2199. package/node_modules/ajv/dist/compile/validate/applicability.d.ts +6 -0
  2200. package/node_modules/ajv/dist/compile/validate/applicability.js +19 -0
  2201. package/node_modules/ajv/dist/compile/validate/applicability.js.map +1 -0
  2202. package/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +4 -0
  2203. package/node_modules/ajv/dist/compile/validate/boolSchema.js +50 -0
  2204. package/node_modules/ajv/dist/compile/validate/boolSchema.js.map +1 -0
  2205. package/node_modules/ajv/dist/compile/validate/dataType.d.ts +17 -0
  2206. package/node_modules/ajv/dist/compile/validate/dataType.js +203 -0
  2207. package/node_modules/ajv/dist/compile/validate/dataType.js.map +1 -0
  2208. package/node_modules/ajv/dist/compile/validate/defaults.d.ts +2 -0
  2209. package/node_modules/ajv/dist/compile/validate/defaults.js +35 -0
  2210. package/node_modules/ajv/dist/compile/validate/defaults.js.map +1 -0
  2211. package/node_modules/ajv/dist/compile/validate/index.d.ts +42 -0
  2212. package/node_modules/ajv/dist/compile/validate/index.js +520 -0
  2213. package/node_modules/ajv/dist/compile/validate/index.js.map +1 -0
  2214. package/node_modules/ajv/dist/compile/validate/keyword.d.ts +8 -0
  2215. package/node_modules/ajv/dist/compile/validate/keyword.js +124 -0
  2216. package/node_modules/ajv/dist/compile/validate/keyword.js.map +1 -0
  2217. package/node_modules/ajv/dist/compile/validate/subschema.d.ts +47 -0
  2218. package/node_modules/ajv/dist/compile/validate/subschema.js +81 -0
  2219. package/node_modules/ajv/dist/compile/validate/subschema.js.map +1 -0
  2220. package/node_modules/ajv/dist/core.d.ts +174 -0
  2221. package/node_modules/ajv/dist/core.js +618 -0
  2222. package/node_modules/ajv/dist/core.js.map +1 -0
  2223. package/node_modules/ajv/dist/jtd.d.ts +47 -0
  2224. package/node_modules/ajv/dist/jtd.js +72 -0
  2225. package/node_modules/ajv/dist/jtd.js.map +1 -0
  2226. package/node_modules/ajv/dist/refs/data.json +13 -0
  2227. package/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +2 -0
  2228. package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +28 -0
  2229. package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +1 -0
  2230. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +53 -0
  2231. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +17 -0
  2232. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +57 -0
  2233. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +14 -0
  2234. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +37 -0
  2235. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +90 -0
  2236. package/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +39 -0
  2237. package/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +2 -0
  2238. package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +30 -0
  2239. package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +1 -0
  2240. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +48 -0
  2241. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +17 -0
  2242. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +51 -0
  2243. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
  2244. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +37 -0
  2245. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
  2246. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +90 -0
  2247. package/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +55 -0
  2248. package/node_modules/ajv/dist/refs/json-schema-draft-06.json +137 -0
  2249. package/node_modules/ajv/dist/refs/json-schema-draft-07.json +151 -0
  2250. package/node_modules/ajv/dist/refs/json-schema-secure.json +88 -0
  2251. package/node_modules/ajv/dist/refs/jtd-schema.d.ts +3 -0
  2252. package/node_modules/ajv/dist/refs/jtd-schema.js +118 -0
  2253. package/node_modules/ajv/dist/refs/jtd-schema.js.map +1 -0
  2254. package/node_modules/ajv/dist/runtime/equal.d.ts +6 -0
  2255. package/node_modules/ajv/dist/runtime/equal.js +7 -0
  2256. package/node_modules/ajv/dist/runtime/equal.js.map +1 -0
  2257. package/node_modules/ajv/dist/runtime/parseJson.d.ts +18 -0
  2258. package/node_modules/ajv/dist/runtime/parseJson.js +185 -0
  2259. package/node_modules/ajv/dist/runtime/parseJson.js.map +1 -0
  2260. package/node_modules/ajv/dist/runtime/quote.d.ts +5 -0
  2261. package/node_modules/ajv/dist/runtime/quote.js +30 -0
  2262. package/node_modules/ajv/dist/runtime/quote.js.map +1 -0
  2263. package/node_modules/ajv/dist/runtime/re2.d.ts +6 -0
  2264. package/node_modules/ajv/dist/runtime/re2.js +6 -0
  2265. package/node_modules/ajv/dist/runtime/re2.js.map +1 -0
  2266. package/node_modules/ajv/dist/runtime/timestamp.d.ts +5 -0
  2267. package/node_modules/ajv/dist/runtime/timestamp.js +42 -0
  2268. package/node_modules/ajv/dist/runtime/timestamp.js.map +1 -0
  2269. package/node_modules/ajv/dist/runtime/ucs2length.d.ts +5 -0
  2270. package/node_modules/ajv/dist/runtime/ucs2length.js +24 -0
  2271. package/node_modules/ajv/dist/runtime/ucs2length.js.map +1 -0
  2272. package/node_modules/ajv/dist/runtime/uri.d.ts +6 -0
  2273. package/node_modules/ajv/dist/runtime/uri.js +6 -0
  2274. package/node_modules/ajv/dist/runtime/uri.js.map +1 -0
  2275. package/node_modules/ajv/dist/runtime/validation_error.d.ts +7 -0
  2276. package/node_modules/ajv/dist/runtime/validation_error.js +11 -0
  2277. package/node_modules/ajv/dist/runtime/validation_error.js.map +1 -0
  2278. package/node_modules/ajv/dist/standalone/index.d.ts +6 -0
  2279. package/node_modules/ajv/dist/standalone/index.js +90 -0
  2280. package/node_modules/ajv/dist/standalone/index.js.map +1 -0
  2281. package/node_modules/ajv/dist/standalone/instance.d.ts +12 -0
  2282. package/node_modules/ajv/dist/standalone/instance.js +35 -0
  2283. package/node_modules/ajv/dist/standalone/instance.js.map +1 -0
  2284. package/node_modules/ajv/dist/types/index.d.ts +183 -0
  2285. package/node_modules/ajv/dist/types/index.js +3 -0
  2286. package/node_modules/ajv/dist/types/index.js.map +1 -0
  2287. package/node_modules/ajv/dist/types/json-schema.d.ts +125 -0
  2288. package/node_modules/ajv/dist/types/json-schema.js +3 -0
  2289. package/node_modules/ajv/dist/types/json-schema.js.map +1 -0
  2290. package/node_modules/ajv/dist/types/jtd-schema.d.ts +174 -0
  2291. package/node_modules/ajv/dist/types/jtd-schema.js +3 -0
  2292. package/node_modules/ajv/dist/types/jtd-schema.js.map +1 -0
  2293. package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +8 -0
  2294. package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
  2295. package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +1 -0
  2296. package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +6 -0
  2297. package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +106 -0
  2298. package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +1 -0
  2299. package/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +3 -0
  2300. package/node_modules/ajv/dist/vocabularies/applicator/allOf.js +23 -0
  2301. package/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +1 -0
  2302. package/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +4 -0
  2303. package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
  2304. package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +1 -0
  2305. package/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +7 -0
  2306. package/node_modules/ajv/dist/vocabularies/applicator/contains.js +95 -0
  2307. package/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +1 -0
  2308. package/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +21 -0
  2309. package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
  2310. package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +1 -0
  2311. package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +3 -0
  2312. package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
  2313. package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +1 -0
  2314. package/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +6 -0
  2315. package/node_modules/ajv/dist/vocabularies/applicator/if.js +66 -0
  2316. package/node_modules/ajv/dist/vocabularies/applicator/if.js.map +1 -0
  2317. package/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +13 -0
  2318. package/node_modules/ajv/dist/vocabularies/applicator/index.js +44 -0
  2319. package/node_modules/ajv/dist/vocabularies/applicator/index.js.map +1 -0
  2320. package/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +5 -0
  2321. package/node_modules/ajv/dist/vocabularies/applicator/items.js +52 -0
  2322. package/node_modules/ajv/dist/vocabularies/applicator/items.js.map +1 -0
  2323. package/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +6 -0
  2324. package/node_modules/ajv/dist/vocabularies/applicator/items2020.js +30 -0
  2325. package/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +1 -0
  2326. package/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +4 -0
  2327. package/node_modules/ajv/dist/vocabularies/applicator/not.js +26 -0
  2328. package/node_modules/ajv/dist/vocabularies/applicator/not.js.map +1 -0
  2329. package/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +6 -0
  2330. package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
  2331. package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +1 -0
  2332. package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +3 -0
  2333. package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
  2334. package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +1 -0
  2335. package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +3 -0
  2336. package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
  2337. package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +1 -0
  2338. package/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +3 -0
  2339. package/node_modules/ajv/dist/vocabularies/applicator/properties.js +54 -0
  2340. package/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +1 -0
  2341. package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +6 -0
  2342. package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
  2343. package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +1 -0
  2344. package/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +3 -0
  2345. package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
  2346. package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +1 -0
  2347. package/node_modules/ajv/dist/vocabularies/code.d.ts +17 -0
  2348. package/node_modules/ajv/dist/vocabularies/code.js +131 -0
  2349. package/node_modules/ajv/dist/vocabularies/code.js.map +1 -0
  2350. package/node_modules/ajv/dist/vocabularies/core/id.d.ts +3 -0
  2351. package/node_modules/ajv/dist/vocabularies/core/id.js +10 -0
  2352. package/node_modules/ajv/dist/vocabularies/core/id.js.map +1 -0
  2353. package/node_modules/ajv/dist/vocabularies/core/index.d.ts +3 -0
  2354. package/node_modules/ajv/dist/vocabularies/core/index.js +16 -0
  2355. package/node_modules/ajv/dist/vocabularies/core/index.js.map +1 -0
  2356. package/node_modules/ajv/dist/vocabularies/core/ref.d.ts +8 -0
  2357. package/node_modules/ajv/dist/vocabularies/core/ref.js +122 -0
  2358. package/node_modules/ajv/dist/vocabularies/core/ref.js.map +1 -0
  2359. package/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +5 -0
  2360. package/node_modules/ajv/dist/vocabularies/discriminator/index.js +104 -0
  2361. package/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +1 -0
  2362. package/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +10 -0
  2363. package/node_modules/ajv/dist/vocabularies/discriminator/types.js +9 -0
  2364. package/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +1 -0
  2365. package/node_modules/ajv/dist/vocabularies/draft2020.d.ts +3 -0
  2366. package/node_modules/ajv/dist/vocabularies/draft2020.js +23 -0
  2367. package/node_modules/ajv/dist/vocabularies/draft2020.js.map +1 -0
  2368. package/node_modules/ajv/dist/vocabularies/draft7.d.ts +3 -0
  2369. package/node_modules/ajv/dist/vocabularies/draft7.js +17 -0
  2370. package/node_modules/ajv/dist/vocabularies/draft7.js.map +1 -0
  2371. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +5 -0
  2372. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
  2373. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +1 -0
  2374. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +5 -0
  2375. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
  2376. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +1 -0
  2377. package/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +3 -0
  2378. package/node_modules/ajv/dist/vocabularies/dynamic/index.js +9 -0
  2379. package/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +1 -0
  2380. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +3 -0
  2381. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
  2382. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +1 -0
  2383. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +3 -0
  2384. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
  2385. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +1 -0
  2386. package/node_modules/ajv/dist/vocabularies/errors.d.ts +9 -0
  2387. package/node_modules/ajv/dist/vocabularies/errors.js +3 -0
  2388. package/node_modules/ajv/dist/vocabularies/errors.js.map +1 -0
  2389. package/node_modules/ajv/dist/vocabularies/format/format.d.ts +8 -0
  2390. package/node_modules/ajv/dist/vocabularies/format/format.js +92 -0
  2391. package/node_modules/ajv/dist/vocabularies/format/format.js.map +1 -0
  2392. package/node_modules/ajv/dist/vocabularies/format/index.d.ts +3 -0
  2393. package/node_modules/ajv/dist/vocabularies/format/index.js +6 -0
  2394. package/node_modules/ajv/dist/vocabularies/format/index.js.map +1 -0
  2395. package/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +6 -0
  2396. package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +71 -0
  2397. package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +1 -0
  2398. package/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +5 -0
  2399. package/node_modules/ajv/dist/vocabularies/jtd/elements.js +24 -0
  2400. package/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +1 -0
  2401. package/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +6 -0
  2402. package/node_modules/ajv/dist/vocabularies/jtd/enum.js +43 -0
  2403. package/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +1 -0
  2404. package/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +9 -0
  2405. package/node_modules/ajv/dist/vocabularies/jtd/error.js +20 -0
  2406. package/node_modules/ajv/dist/vocabularies/jtd/error.js.map +1 -0
  2407. package/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +10 -0
  2408. package/node_modules/ajv/dist/vocabularies/jtd/index.js +29 -0
  2409. package/node_modules/ajv/dist/vocabularies/jtd/index.js.map +1 -0
  2410. package/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +5 -0
  2411. package/node_modules/ajv/dist/vocabularies/jtd/metadata.js +25 -0
  2412. package/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +1 -0
  2413. package/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +4 -0
  2414. package/node_modules/ajv/dist/vocabularies/jtd/nullable.js +22 -0
  2415. package/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +1 -0
  2416. package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +3 -0
  2417. package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +15 -0
  2418. package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +1 -0
  2419. package/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +22 -0
  2420. package/node_modules/ajv/dist/vocabularies/jtd/properties.js +149 -0
  2421. package/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +1 -0
  2422. package/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +4 -0
  2423. package/node_modules/ajv/dist/vocabularies/jtd/ref.js +67 -0
  2424. package/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +1 -0
  2425. package/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +10 -0
  2426. package/node_modules/ajv/dist/vocabularies/jtd/type.js +69 -0
  2427. package/node_modules/ajv/dist/vocabularies/jtd/type.js.map +1 -0
  2428. package/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +3 -0
  2429. package/node_modules/ajv/dist/vocabularies/jtd/union.js +12 -0
  2430. package/node_modules/ajv/dist/vocabularies/jtd/union.js.map +1 -0
  2431. package/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +5 -0
  2432. package/node_modules/ajv/dist/vocabularies/jtd/values.js +51 -0
  2433. package/node_modules/ajv/dist/vocabularies/jtd/values.js.map +1 -0
  2434. package/node_modules/ajv/dist/vocabularies/metadata.d.ts +3 -0
  2435. package/node_modules/ajv/dist/vocabularies/metadata.js +18 -0
  2436. package/node_modules/ajv/dist/vocabularies/metadata.js.map +1 -0
  2437. package/node_modules/ajv/dist/vocabularies/next.d.ts +3 -0
  2438. package/node_modules/ajv/dist/vocabularies/next.js +8 -0
  2439. package/node_modules/ajv/dist/vocabularies/next.js.map +1 -0
  2440. package/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +3 -0
  2441. package/node_modules/ajv/dist/vocabularies/unevaluated/index.js +7 -0
  2442. package/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +1 -0
  2443. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +6 -0
  2444. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
  2445. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +1 -0
  2446. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +6 -0
  2447. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +65 -0
  2448. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +1 -0
  2449. package/node_modules/ajv/dist/vocabularies/validation/const.d.ts +6 -0
  2450. package/node_modules/ajv/dist/vocabularies/validation/const.js +25 -0
  2451. package/node_modules/ajv/dist/vocabularies/validation/const.js.map +1 -0
  2452. package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +5 -0
  2453. package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
  2454. package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +1 -0
  2455. package/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +8 -0
  2456. package/node_modules/ajv/dist/vocabularies/validation/enum.js +48 -0
  2457. package/node_modules/ajv/dist/vocabularies/validation/enum.js.map +1 -0
  2458. package/node_modules/ajv/dist/vocabularies/validation/index.d.ts +16 -0
  2459. package/node_modules/ajv/dist/vocabularies/validation/index.js +33 -0
  2460. package/node_modules/ajv/dist/vocabularies/validation/index.js.map +1 -0
  2461. package/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +3 -0
  2462. package/node_modules/ajv/dist/vocabularies/validation/limitContains.js +15 -0
  2463. package/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +1 -0
  2464. package/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +3 -0
  2465. package/node_modules/ajv/dist/vocabularies/validation/limitItems.js +24 -0
  2466. package/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +1 -0
  2467. package/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +3 -0
  2468. package/node_modules/ajv/dist/vocabularies/validation/limitLength.js +27 -0
  2469. package/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +1 -0
  2470. package/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +11 -0
  2471. package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
  2472. package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +1 -0
  2473. package/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +3 -0
  2474. package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
  2475. package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +1 -0
  2476. package/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +8 -0
  2477. package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
  2478. package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +1 -0
  2479. package/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +8 -0
  2480. package/node_modules/ajv/dist/vocabularies/validation/pattern.js +33 -0
  2481. package/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +1 -0
  2482. package/node_modules/ajv/dist/vocabularies/validation/required.d.ts +8 -0
  2483. package/node_modules/ajv/dist/vocabularies/validation/required.js +79 -0
  2484. package/node_modules/ajv/dist/vocabularies/validation/required.js.map +1 -0
  2485. package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +9 -0
  2486. package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
  2487. package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +1 -0
  2488. package/node_modules/ajv/lib/2019.ts +81 -0
  2489. package/node_modules/ajv/lib/2020.ts +75 -0
  2490. package/node_modules/ajv/lib/ajv.ts +70 -0
  2491. package/node_modules/ajv/lib/compile/codegen/code.ts +169 -0
  2492. package/node_modules/ajv/lib/compile/codegen/index.ts +852 -0
  2493. package/node_modules/ajv/lib/compile/codegen/scope.ts +215 -0
  2494. package/node_modules/ajv/lib/compile/errors.ts +184 -0
  2495. package/node_modules/ajv/lib/compile/index.ts +324 -0
  2496. package/node_modules/ajv/lib/compile/jtd/parse.ts +411 -0
  2497. package/node_modules/ajv/lib/compile/jtd/serialize.ts +277 -0
  2498. package/node_modules/ajv/lib/compile/jtd/types.ts +16 -0
  2499. package/node_modules/ajv/lib/compile/names.ts +27 -0
  2500. package/node_modules/ajv/lib/compile/ref_error.ts +13 -0
  2501. package/node_modules/ajv/lib/compile/resolve.ts +149 -0
  2502. package/node_modules/ajv/lib/compile/rules.ts +50 -0
  2503. package/node_modules/ajv/lib/compile/util.ts +213 -0
  2504. package/node_modules/ajv/lib/compile/validate/applicability.ts +22 -0
  2505. package/node_modules/ajv/lib/compile/validate/boolSchema.ts +47 -0
  2506. package/node_modules/ajv/lib/compile/validate/dataType.ts +230 -0
  2507. package/node_modules/ajv/lib/compile/validate/defaults.ts +32 -0
  2508. package/node_modules/ajv/lib/compile/validate/index.ts +582 -0
  2509. package/node_modules/ajv/lib/compile/validate/keyword.ts +171 -0
  2510. package/node_modules/ajv/lib/compile/validate/subschema.ts +135 -0
  2511. package/node_modules/ajv/lib/core.ts +892 -0
  2512. package/node_modules/ajv/lib/jtd.ts +132 -0
  2513. package/node_modules/ajv/lib/refs/data.json +13 -0
  2514. package/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +28 -0
  2515. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +53 -0
  2516. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +17 -0
  2517. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +57 -0
  2518. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +14 -0
  2519. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +37 -0
  2520. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +90 -0
  2521. package/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +39 -0
  2522. package/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +30 -0
  2523. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +48 -0
  2524. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +17 -0
  2525. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +51 -0
  2526. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
  2527. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +37 -0
  2528. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
  2529. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +90 -0
  2530. package/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +55 -0
  2531. package/node_modules/ajv/lib/refs/json-schema-draft-06.json +137 -0
  2532. package/node_modules/ajv/lib/refs/json-schema-draft-07.json +151 -0
  2533. package/node_modules/ajv/lib/refs/json-schema-secure.json +88 -0
  2534. package/node_modules/ajv/lib/refs/jtd-schema.ts +130 -0
  2535. package/node_modules/ajv/lib/runtime/equal.ts +7 -0
  2536. package/node_modules/ajv/lib/runtime/parseJson.ts +177 -0
  2537. package/node_modules/ajv/lib/runtime/quote.ts +31 -0
  2538. package/node_modules/ajv/lib/runtime/re2.ts +6 -0
  2539. package/node_modules/ajv/lib/runtime/timestamp.ts +46 -0
  2540. package/node_modules/ajv/lib/runtime/ucs2length.ts +20 -0
  2541. package/node_modules/ajv/lib/runtime/uri.ts +6 -0
  2542. package/node_modules/ajv/lib/runtime/validation_error.ts +13 -0
  2543. package/node_modules/ajv/lib/standalone/index.ts +100 -0
  2544. package/node_modules/ajv/lib/standalone/instance.ts +36 -0
  2545. package/node_modules/ajv/lib/types/index.ts +244 -0
  2546. package/node_modules/ajv/lib/types/json-schema.ts +187 -0
  2547. package/node_modules/ajv/lib/types/jtd-schema.ts +273 -0
  2548. package/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +56 -0
  2549. package/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +118 -0
  2550. package/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +22 -0
  2551. package/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +14 -0
  2552. package/node_modules/ajv/lib/vocabularies/applicator/contains.ts +109 -0
  2553. package/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +112 -0
  2554. package/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +11 -0
  2555. package/node_modules/ajv/lib/vocabularies/applicator/if.ts +80 -0
  2556. package/node_modules/ajv/lib/vocabularies/applicator/index.ts +53 -0
  2557. package/node_modules/ajv/lib/vocabularies/applicator/items.ts +59 -0
  2558. package/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +36 -0
  2559. package/node_modules/ajv/lib/vocabularies/applicator/not.ts +38 -0
  2560. package/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +82 -0
  2561. package/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +91 -0
  2562. package/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +12 -0
  2563. package/node_modules/ajv/lib/vocabularies/applicator/properties.ts +57 -0
  2564. package/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +50 -0
  2565. package/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +13 -0
  2566. package/node_modules/ajv/lib/vocabularies/code.ts +168 -0
  2567. package/node_modules/ajv/lib/vocabularies/core/id.ts +10 -0
  2568. package/node_modules/ajv/lib/vocabularies/core/index.ts +16 -0
  2569. package/node_modules/ajv/lib/vocabularies/core/ref.ts +129 -0
  2570. package/node_modules/ajv/lib/vocabularies/discriminator/index.ts +113 -0
  2571. package/node_modules/ajv/lib/vocabularies/discriminator/types.ts +12 -0
  2572. package/node_modules/ajv/lib/vocabularies/draft2020.ts +23 -0
  2573. package/node_modules/ajv/lib/vocabularies/draft7.ts +17 -0
  2574. package/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +31 -0
  2575. package/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +51 -0
  2576. package/node_modules/ajv/lib/vocabularies/dynamic/index.ts +9 -0
  2577. package/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +14 -0
  2578. package/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +10 -0
  2579. package/node_modules/ajv/lib/vocabularies/errors.ts +18 -0
  2580. package/node_modules/ajv/lib/vocabularies/format/format.ts +120 -0
  2581. package/node_modules/ajv/lib/vocabularies/format/index.ts +6 -0
  2582. package/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +89 -0
  2583. package/node_modules/ajv/lib/vocabularies/jtd/elements.ts +32 -0
  2584. package/node_modules/ajv/lib/vocabularies/jtd/enum.ts +45 -0
  2585. package/node_modules/ajv/lib/vocabularies/jtd/error.ts +23 -0
  2586. package/node_modules/ajv/lib/vocabularies/jtd/index.ts +37 -0
  2587. package/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +24 -0
  2588. package/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +21 -0
  2589. package/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +15 -0
  2590. package/node_modules/ajv/lib/vocabularies/jtd/properties.ts +184 -0
  2591. package/node_modules/ajv/lib/vocabularies/jtd/ref.ts +76 -0
  2592. package/node_modules/ajv/lib/vocabularies/jtd/type.ts +75 -0
  2593. package/node_modules/ajv/lib/vocabularies/jtd/union.ts +12 -0
  2594. package/node_modules/ajv/lib/vocabularies/jtd/values.ts +58 -0
  2595. package/node_modules/ajv/lib/vocabularies/metadata.ts +17 -0
  2596. package/node_modules/ajv/lib/vocabularies/next.ts +8 -0
  2597. package/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +7 -0
  2598. package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +47 -0
  2599. package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +85 -0
  2600. package/node_modules/ajv/lib/vocabularies/validation/const.ts +28 -0
  2601. package/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +23 -0
  2602. package/node_modules/ajv/lib/vocabularies/validation/enum.ts +54 -0
  2603. package/node_modules/ajv/lib/vocabularies/validation/index.ts +49 -0
  2604. package/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +16 -0
  2605. package/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +26 -0
  2606. package/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +30 -0
  2607. package/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +42 -0
  2608. package/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +26 -0
  2609. package/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +34 -0
  2610. package/node_modules/ajv/lib/vocabularies/validation/pattern.ts +39 -0
  2611. package/node_modules/ajv/lib/vocabularies/validation/required.ts +98 -0
  2612. package/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +79 -0
  2613. package/node_modules/ajv/package.json +127 -0
  2614. package/node_modules/ajv-formats/LICENSE +21 -0
  2615. package/node_modules/ajv-formats/README.md +125 -0
  2616. package/node_modules/ajv-formats/dist/formats.d.ts +9 -0
  2617. package/node_modules/ajv-formats/dist/formats.js +208 -0
  2618. package/node_modules/ajv-formats/dist/formats.js.map +1 -0
  2619. package/node_modules/ajv-formats/dist/index.d.ts +15 -0
  2620. package/node_modules/ajv-formats/dist/index.js +37 -0
  2621. package/node_modules/ajv-formats/dist/index.js.map +1 -0
  2622. package/node_modules/ajv-formats/dist/limit.d.ts +10 -0
  2623. package/node_modules/ajv-formats/dist/limit.js +69 -0
  2624. package/node_modules/ajv-formats/dist/limit.js.map +1 -0
  2625. package/node_modules/ajv-formats/package.json +74 -0
  2626. package/node_modules/ajv-formats/src/formats.ts +269 -0
  2627. package/node_modules/ajv-formats/src/index.ts +62 -0
  2628. package/node_modules/ajv-formats/src/limit.ts +99 -0
  2629. package/node_modules/fast-deep-equal/LICENSE +21 -0
  2630. package/node_modules/fast-deep-equal/README.md +96 -0
  2631. package/node_modules/fast-deep-equal/es6/index.d.ts +2 -0
  2632. package/node_modules/fast-deep-equal/es6/index.js +72 -0
  2633. package/node_modules/fast-deep-equal/es6/react.d.ts +2 -0
  2634. package/node_modules/fast-deep-equal/es6/react.js +79 -0
  2635. package/node_modules/fast-deep-equal/index.d.ts +4 -0
  2636. package/node_modules/fast-deep-equal/index.js +46 -0
  2637. package/node_modules/fast-deep-equal/package.json +61 -0
  2638. package/node_modules/fast-deep-equal/react.d.ts +2 -0
  2639. package/node_modules/fast-deep-equal/react.js +53 -0
  2640. package/node_modules/fast-uri/.gitattributes +2 -0
  2641. package/node_modules/fast-uri/.github/.stale.yml +21 -0
  2642. package/node_modules/fast-uri/.github/dependabot.yml +13 -0
  2643. package/node_modules/fast-uri/.github/tests_checker.yml +8 -0
  2644. package/node_modules/fast-uri/.github/workflows/ci.yml +101 -0
  2645. package/node_modules/fast-uri/.github/workflows/package-manager-ci.yml +24 -0
  2646. package/node_modules/fast-uri/LICENSE +32 -0
  2647. package/node_modules/fast-uri/README.md +143 -0
  2648. package/node_modules/fast-uri/benchmark/benchmark.mjs +159 -0
  2649. package/node_modules/fast-uri/benchmark/equal.mjs +51 -0
  2650. package/node_modules/fast-uri/benchmark/non-simple-domain.mjs +22 -0
  2651. package/node_modules/fast-uri/benchmark/package.json +17 -0
  2652. package/node_modules/fast-uri/benchmark/string-array-to-hex-stripped.mjs +24 -0
  2653. package/node_modules/fast-uri/benchmark/ws-is-secure.mjs +65 -0
  2654. package/node_modules/fast-uri/eslint.config.js +6 -0
  2655. package/node_modules/fast-uri/index.js +340 -0
  2656. package/node_modules/fast-uri/lib/schemes.js +267 -0
  2657. package/node_modules/fast-uri/lib/utils.js +336 -0
  2658. package/node_modules/fast-uri/package.json +69 -0
  2659. package/node_modules/fast-uri/test/ajv.test.js +43 -0
  2660. package/node_modules/fast-uri/test/equal.test.js +108 -0
  2661. package/node_modules/fast-uri/test/fixtures/uri-js-parse.json +501 -0
  2662. package/node_modules/fast-uri/test/fixtures/uri-js-serialize.json +120 -0
  2663. package/node_modules/fast-uri/test/parse.test.js +318 -0
  2664. package/node_modules/fast-uri/test/resolve.test.js +78 -0
  2665. package/node_modules/fast-uri/test/rfc-3986.test.js +90 -0
  2666. package/node_modules/fast-uri/test/serialize.test.js +151 -0
  2667. package/node_modules/fast-uri/test/uri-js-compatibility.test.js +33 -0
  2668. package/node_modules/fast-uri/test/uri-js.test.js +912 -0
  2669. package/node_modules/fast-uri/test/util.test.js +38 -0
  2670. package/node_modules/fast-uri/tsconfig.json +9 -0
  2671. package/node_modules/fast-uri/types/index.d.ts +60 -0
  2672. package/node_modules/fast-uri/types/index.test-d.ts +17 -0
  2673. package/node_modules/json-schema-traverse/.eslintrc.yml +27 -0
  2674. package/node_modules/json-schema-traverse/.github/FUNDING.yml +2 -0
  2675. package/node_modules/json-schema-traverse/.github/workflows/build.yml +28 -0
  2676. package/node_modules/json-schema-traverse/.github/workflows/publish.yml +27 -0
  2677. package/node_modules/json-schema-traverse/LICENSE +21 -0
  2678. package/node_modules/json-schema-traverse/README.md +95 -0
  2679. package/node_modules/json-schema-traverse/index.d.ts +40 -0
  2680. package/node_modules/json-schema-traverse/index.js +93 -0
  2681. package/node_modules/json-schema-traverse/package.json +43 -0
  2682. package/node_modules/json-schema-traverse/spec/.eslintrc.yml +6 -0
  2683. package/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
  2684. package/node_modules/json-schema-traverse/spec/index.spec.js +171 -0
  2685. package/node_modules/mime-db/HISTORY.md +541 -0
  2686. package/node_modules/mime-db/LICENSE +23 -0
  2687. package/node_modules/mime-db/README.md +109 -0
  2688. package/node_modules/mime-db/db.json +9342 -0
  2689. package/node_modules/mime-db/index.js +12 -0
  2690. package/node_modules/mime-db/package.json +56 -0
  2691. package/node_modules/mime-types/HISTORY.md +428 -0
  2692. package/node_modules/mime-types/LICENSE +23 -0
  2693. package/node_modules/mime-types/README.md +126 -0
  2694. package/node_modules/mime-types/index.js +211 -0
  2695. package/node_modules/mime-types/mimeScore.js +57 -0
  2696. package/node_modules/mime-types/package.json +49 -0
  2697. package/node_modules/require-from-string/index.js +34 -0
  2698. package/node_modules/require-from-string/license +21 -0
  2699. package/node_modules/require-from-string/package.json +28 -0
  2700. package/node_modules/require-from-string/readme.md +56 -0
  2701. package/node_modules/zod-to-json-schema/.github/CR_logotype-full-color.png +0 -0
  2702. package/node_modules/zod-to-json-schema/.github/FUNDING.yml +1 -0
  2703. package/node_modules/zod-to-json-schema/.prettierrc.json +1 -0
  2704. package/node_modules/zod-to-json-schema/LICENSE +15 -0
  2705. package/node_modules/zod-to-json-schema/README.md +390 -0
  2706. package/node_modules/zod-to-json-schema/changelog.md +82 -0
  2707. package/node_modules/zod-to-json-schema/contributing.md +9 -0
  2708. package/node_modules/zod-to-json-schema/createIndex.ts +32 -0
  2709. package/node_modules/zod-to-json-schema/dist/cjs/Options.js +51 -0
  2710. package/node_modules/zod-to-json-schema/dist/cjs/Refs.js +26 -0
  2711. package/node_modules/zod-to-json-schema/dist/cjs/errorMessages.js +19 -0
  2712. package/node_modules/zod-to-json-schema/dist/cjs/getRelativePath.js +12 -0
  2713. package/node_modules/zod-to-json-schema/dist/cjs/index.js +56 -0
  2714. package/node_modules/zod-to-json-schema/dist/cjs/package.json +1 -0
  2715. package/node_modules/zod-to-json-schema/dist/cjs/parseDef.js +66 -0
  2716. package/node_modules/zod-to-json-schema/dist/cjs/parseTypes.js +2 -0
  2717. package/node_modules/zod-to-json-schema/dist/cjs/parsers/any.js +21 -0
  2718. package/node_modules/zod-to-json-schema/dist/cjs/parsers/array.js +30 -0
  2719. package/node_modules/zod-to-json-schema/dist/cjs/parsers/bigint.js +53 -0
  2720. package/node_modules/zod-to-json-schema/dist/cjs/parsers/boolean.js +9 -0
  2721. package/node_modules/zod-to-json-schema/dist/cjs/parsers/branded.js +8 -0
  2722. package/node_modules/zod-to-json-schema/dist/cjs/parsers/catch.js +8 -0
  2723. package/node_modules/zod-to-json-schema/dist/cjs/parsers/date.js +50 -0
  2724. package/node_modules/zod-to-json-schema/dist/cjs/parsers/default.js +11 -0
  2725. package/node_modules/zod-to-json-schema/dist/cjs/parsers/effects.js +11 -0
  2726. package/node_modules/zod-to-json-schema/dist/cjs/parsers/enum.js +10 -0
  2727. package/node_modules/zod-to-json-schema/dist/cjs/parsers/intersection.js +56 -0
  2728. package/node_modules/zod-to-json-schema/dist/cjs/parsers/literal.js +25 -0
  2729. package/node_modules/zod-to-json-schema/dist/cjs/parsers/map.js +30 -0
  2730. package/node_modules/zod-to-json-schema/dist/cjs/parsers/nativeEnum.js +20 -0
  2731. package/node_modules/zod-to-json-schema/dist/cjs/parsers/never.js +15 -0
  2732. package/node_modules/zod-to-json-schema/dist/cjs/parsers/null.js +14 -0
  2733. package/node_modules/zod-to-json-schema/dist/cjs/parsers/nullable.js +37 -0
  2734. package/node_modules/zod-to-json-schema/dist/cjs/parsers/number.js +56 -0
  2735. package/node_modules/zod-to-json-schema/dist/cjs/parsers/object.js +76 -0
  2736. package/node_modules/zod-to-json-schema/dist/cjs/parsers/optional.js +25 -0
  2737. package/node_modules/zod-to-json-schema/dist/cjs/parsers/pipeline.js +24 -0
  2738. package/node_modules/zod-to-json-schema/dist/cjs/parsers/promise.js +8 -0
  2739. package/node_modules/zod-to-json-schema/dist/cjs/parsers/readonly.js +8 -0
  2740. package/node_modules/zod-to-json-schema/dist/cjs/parsers/record.js +65 -0
  2741. package/node_modules/zod-to-json-schema/dist/cjs/parsers/set.js +24 -0
  2742. package/node_modules/zod-to-json-schema/dist/cjs/parsers/string.js +356 -0
  2743. package/node_modules/zod-to-json-schema/dist/cjs/parsers/tuple.js +36 -0
  2744. package/node_modules/zod-to-json-schema/dist/cjs/parsers/undefined.js +10 -0
  2745. package/node_modules/zod-to-json-schema/dist/cjs/parsers/union.js +84 -0
  2746. package/node_modules/zod-to-json-schema/dist/cjs/parsers/unknown.js +8 -0
  2747. package/node_modules/zod-to-json-schema/dist/cjs/selectParser.js +109 -0
  2748. package/node_modules/zod-to-json-schema/dist/cjs/zodToJsonSchema.js +90 -0
  2749. package/node_modules/zod-to-json-schema/dist/esm/Options.js +46 -0
  2750. package/node_modules/zod-to-json-schema/dist/esm/Refs.js +22 -0
  2751. package/node_modules/zod-to-json-schema/dist/esm/errorMessages.js +14 -0
  2752. package/node_modules/zod-to-json-schema/dist/esm/getRelativePath.js +8 -0
  2753. package/node_modules/zod-to-json-schema/dist/esm/index.js +40 -0
  2754. package/node_modules/zod-to-json-schema/dist/esm/package.json +1 -0
  2755. package/node_modules/zod-to-json-schema/dist/esm/parseDef.js +62 -0
  2756. package/node_modules/zod-to-json-schema/dist/esm/parseTypes.js +1 -0
  2757. package/node_modules/zod-to-json-schema/dist/esm/parsers/any.js +17 -0
  2758. package/node_modules/zod-to-json-schema/dist/esm/parsers/array.js +26 -0
  2759. package/node_modules/zod-to-json-schema/dist/esm/parsers/bigint.js +49 -0
  2760. package/node_modules/zod-to-json-schema/dist/esm/parsers/boolean.js +5 -0
  2761. package/node_modules/zod-to-json-schema/dist/esm/parsers/branded.js +4 -0
  2762. package/node_modules/zod-to-json-schema/dist/esm/parsers/catch.js +4 -0
  2763. package/node_modules/zod-to-json-schema/dist/esm/parsers/date.js +46 -0
  2764. package/node_modules/zod-to-json-schema/dist/esm/parsers/default.js +7 -0
  2765. package/node_modules/zod-to-json-schema/dist/esm/parsers/effects.js +7 -0
  2766. package/node_modules/zod-to-json-schema/dist/esm/parsers/enum.js +6 -0
  2767. package/node_modules/zod-to-json-schema/dist/esm/parsers/intersection.js +52 -0
  2768. package/node_modules/zod-to-json-schema/dist/esm/parsers/literal.js +21 -0
  2769. package/node_modules/zod-to-json-schema/dist/esm/parsers/map.js +26 -0
  2770. package/node_modules/zod-to-json-schema/dist/esm/parsers/nativeEnum.js +16 -0
  2771. package/node_modules/zod-to-json-schema/dist/esm/parsers/never.js +11 -0
  2772. package/node_modules/zod-to-json-schema/dist/esm/parsers/null.js +10 -0
  2773. package/node_modules/zod-to-json-schema/dist/esm/parsers/nullable.js +33 -0
  2774. package/node_modules/zod-to-json-schema/dist/esm/parsers/number.js +52 -0
  2775. package/node_modules/zod-to-json-schema/dist/esm/parsers/object.js +72 -0
  2776. package/node_modules/zod-to-json-schema/dist/esm/parsers/optional.js +21 -0
  2777. package/node_modules/zod-to-json-schema/dist/esm/parsers/pipeline.js +20 -0
  2778. package/node_modules/zod-to-json-schema/dist/esm/parsers/promise.js +4 -0
  2779. package/node_modules/zod-to-json-schema/dist/esm/parsers/readonly.js +4 -0
  2780. package/node_modules/zod-to-json-schema/dist/esm/parsers/record.js +61 -0
  2781. package/node_modules/zod-to-json-schema/dist/esm/parsers/set.js +20 -0
  2782. package/node_modules/zod-to-json-schema/dist/esm/parsers/string.js +352 -0
  2783. package/node_modules/zod-to-json-schema/dist/esm/parsers/tuple.js +32 -0
  2784. package/node_modules/zod-to-json-schema/dist/esm/parsers/undefined.js +6 -0
  2785. package/node_modules/zod-to-json-schema/dist/esm/parsers/union.js +80 -0
  2786. package/node_modules/zod-to-json-schema/dist/esm/parsers/unknown.js +4 -0
  2787. package/node_modules/zod-to-json-schema/dist/esm/selectParser.js +105 -0
  2788. package/node_modules/zod-to-json-schema/dist/esm/zodToJsonSchema.js +87 -0
  2789. package/node_modules/zod-to-json-schema/dist/types/Options.d.ts +37 -0
  2790. package/node_modules/zod-to-json-schema/dist/types/Refs.d.ts +17 -0
  2791. package/node_modules/zod-to-json-schema/dist/types/errorMessages.d.ts +15 -0
  2792. package/node_modules/zod-to-json-schema/dist/types/getRelativePath.d.ts +1 -0
  2793. package/node_modules/zod-to-json-schema/dist/types/index.d.ts +40 -0
  2794. package/node_modules/zod-to-json-schema/dist/types/parseDef.d.ts +4 -0
  2795. package/node_modules/zod-to-json-schema/dist/types/parseTypes.d.ts +34 -0
  2796. package/node_modules/zod-to-json-schema/dist/types/parsers/any.d.ts +5 -0
  2797. package/node_modules/zod-to-json-schema/dist/types/parsers/array.d.ts +12 -0
  2798. package/node_modules/zod-to-json-schema/dist/types/parsers/bigint.d.ts +14 -0
  2799. package/node_modules/zod-to-json-schema/dist/types/parsers/boolean.d.ts +4 -0
  2800. package/node_modules/zod-to-json-schema/dist/types/parsers/branded.d.ts +3 -0
  2801. package/node_modules/zod-to-json-schema/dist/types/parsers/catch.d.ts +3 -0
  2802. package/node_modules/zod-to-json-schema/dist/types/parsers/date.d.ts +15 -0
  2803. package/node_modules/zod-to-json-schema/dist/types/parsers/default.d.ts +6 -0
  2804. package/node_modules/zod-to-json-schema/dist/types/parsers/effects.d.ts +4 -0
  2805. package/node_modules/zod-to-json-schema/dist/types/parsers/enum.d.ts +6 -0
  2806. package/node_modules/zod-to-json-schema/dist/types/parsers/intersection.d.ts +8 -0
  2807. package/node_modules/zod-to-json-schema/dist/types/parsers/literal.d.ts +9 -0
  2808. package/node_modules/zod-to-json-schema/dist/types/parsers/map.d.ts +15 -0
  2809. package/node_modules/zod-to-json-schema/dist/types/parsers/nativeEnum.d.ts +6 -0
  2810. package/node_modules/zod-to-json-schema/dist/types/parsers/never.d.ts +6 -0
  2811. package/node_modules/zod-to-json-schema/dist/types/parsers/null.d.ts +5 -0
  2812. package/node_modules/zod-to-json-schema/dist/types/parsers/nullable.d.ts +10 -0
  2813. package/node_modules/zod-to-json-schema/dist/types/parsers/number.d.ts +13 -0
  2814. package/node_modules/zod-to-json-schema/dist/types/parsers/object.d.ts +10 -0
  2815. package/node_modules/zod-to-json-schema/dist/types/parsers/optional.d.ts +4 -0
  2816. package/node_modules/zod-to-json-schema/dist/types/parsers/pipeline.d.ts +5 -0
  2817. package/node_modules/zod-to-json-schema/dist/types/parsers/promise.d.ts +4 -0
  2818. package/node_modules/zod-to-json-schema/dist/types/parsers/readonly.d.ts +3 -0
  2819. package/node_modules/zod-to-json-schema/dist/types/parsers/record.d.ts +13 -0
  2820. package/node_modules/zod-to-json-schema/dist/types/parsers/set.d.ts +13 -0
  2821. package/node_modules/zod-to-json-schema/dist/types/parsers/string.d.ts +73 -0
  2822. package/node_modules/zod-to-json-schema/dist/types/parsers/tuple.d.ts +13 -0
  2823. package/node_modules/zod-to-json-schema/dist/types/parsers/undefined.d.ts +6 -0
  2824. package/node_modules/zod-to-json-schema/dist/types/parsers/union.d.ts +23 -0
  2825. package/node_modules/zod-to-json-schema/dist/types/parsers/unknown.d.ts +4 -0
  2826. package/node_modules/zod-to-json-schema/dist/types/selectParser.d.ts +5 -0
  2827. package/node_modules/zod-to-json-schema/dist/types/zodToJsonSchema.d.ts +10 -0
  2828. package/node_modules/zod-to-json-schema/package.json +78 -0
  2829. package/node_modules/zod-to-json-schema/postcjs.ts +3 -0
  2830. package/node_modules/zod-to-json-schema/postesm.ts +3 -0
  2831. package/npm/platform-packages/darwin-arm64/README.md +8 -0
  2832. package/npm/platform-packages/darwin-arm64/package.json +26 -0
  2833. package/npm/platform-packages/darwin-x64/README.md +8 -0
  2834. package/npm/platform-packages/darwin-x64/package.json +20 -0
  2835. package/npm/platform-packages/linux-arm64/README.md +8 -0
  2836. package/npm/platform-packages/linux-arm64/package.json +20 -0
  2837. package/npm/platform-packages/linux-x64/README.md +8 -0
  2838. package/npm/platform-packages/linux-x64/package.json +20 -0
  2839. package/package.json +105 -0
  2840. package/prompts/init.md +75 -0
  2841. package/prompts/new-repo.md +54 -0
  2842. package/prompts/oci-login.md +56 -0
  2843. package/prompts/status.md +50 -0
  2844. package/scripts/build-platform-packages.sh +80 -0
  2845. package/scripts/check-provider-drift.sh +82 -0
  2846. package/scripts/check-vendor-dist.mjs +54 -0
  2847. package/scripts/check-vendor-dist.test.mjs +129 -0
  2848. package/scripts/extract-provider-contracts.sh +133 -0
  2849. package/scripts/preinstall.sh +60 -0
  2850. package/scripts/publish-pi-mono.sh +76 -0
  2851. package/skills/cleave/SKILL.md +284 -0
  2852. package/skills/git/SKILL.md +217 -0
  2853. package/skills/git/_reference/ci-validation.md +204 -0
  2854. package/skills/oci/SKILL.md +338 -0
  2855. package/skills/openspec/SKILL.md +346 -0
  2856. package/skills/pi-extensions/SKILL.md +191 -0
  2857. package/skills/pi-tui/SKILL.md +517 -0
  2858. package/skills/python/SKILL.md +189 -0
  2859. package/skills/rust/SKILL.md +268 -0
  2860. package/skills/security/SKILL.md +206 -0
  2861. package/skills/style/SKILL.md +264 -0
  2862. package/skills/typescript/SKILL.md +225 -0
  2863. package/skills/vault/SKILL.md +102 -0
  2864. package/themes/alpharius-legacy.json +85 -0
  2865. package/themes/alpharius.conf +59 -0
  2866. package/themes/alpharius.json +89 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tui.js","sourceRoot":"","sources":["../src/tui.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EAAE,MAAM,SAAS,CAAC;AAC9B,OAAO,KAAK,EAAE,MAAM,SAAS,CAAC;AAC9B,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAClC,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AAErD,OAAO,EAAE,eAAe,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACtF,OAAO,EAAE,eAAe,EAAE,aAAa,EAAE,cAAc,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AA6C1F,8DAA8D;AAC9D,MAAM,UAAU,WAAW,CAAC,SAA2B,EAAsC;IAC5F,OAAO,SAAS,KAAK,IAAI,IAAI,SAAS,IAAI,SAAS,CAAC;AAAA,CACpD;AAED;;;;;GAKG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG,eAAe,CAAC;AAE7C,OAAO,EAAE,YAAY,EAAE,CAAC;AA6BxB,mEAAmE;AACnE,SAAS,cAAc,CAAC,KAA4B,EAAE,aAAqB,EAAsB;IAChG,IAAI,KAAK,KAAK,SAAS;QAAE,OAAO,SAAS,CAAC;IAC1C,IAAI,OAAO,KAAK,KAAK,QAAQ;QAAE,OAAO,KAAK,CAAC;IAC5C,qCAAqC;IACrC,MAAM,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC;IAChD,IAAI,KAAK,EAAE,CAAC;QACX,OAAO,IAAI,CAAC,KAAK,CAAC,CAAC,aAAa,GAAG,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC;IACjE,CAAC;IACD,OAAO,SAAS,CAAC;AAAA,CACjB;AA8DD;;GAEG;AACH,MAAM,OAAO,SAAS;IACrB,QAAQ,GAAgB,EAAE,CAAC;IAE3B,QAAQ,CAAC,SAAoB,EAAQ;QACpC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;IAAA,CAC9B;IAED,WAAW,CAAC,SAAoB,EAAQ;QACvC,MAAM,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;QAC/C,IAAI,KAAK,KAAK,CAAC,CAAC,EAAE,CAAC;YAClB,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;QAChC,CAAC;IAAA,CACD;IAED,KAAK,GAAS;QACb,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAC;IAAA,CACnB;IAED,UAAU,GAAS;QAClB,KAAK,MAAM,KAAK,IAAI,IAAI,CAAC,QAAQ,EAAE,CAAC;YACnC,KAAK,CAAC,UAAU,EAAE,EAAE,CAAC;QACtB,CAAC;IAAA,CACD;IAED,MAAM,CAAC,KAAa,EAAY;QAC/B,MAAM,KAAK,GAAa,EAAE,CAAC;QAC3B,KAAK,MAAM,KAAK,IAAI,IAAI,CAAC,QAAQ,EAAE,CAAC;YACnC,KAAK,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;QACpC,CAAC;QACD,OAAO,KAAK,CAAC;IAAA,CACb;CACD;AAED;;GAEG;AACH,MAAM,OAAO,GAAI,SAAQ,SAAS;IAC1B,QAAQ,CAAW;IAClB,aAAa,GAAa,EAAE,CAAC;IAC7B,aAAa,GAAG,CAAC,CAAC;IAClB,cAAc,GAAG,CAAC,CAAC;IACnB,gBAAgB,GAAqB,IAAI,CAAC;IAC1C,cAAc,GAAG,IAAI,GAAG,EAAiB,CAAC;IAElD,2GAA2G;IACpG,OAAO,CAAc;IACpB,eAAe,GAAG,KAAK,CAAC;IACxB,SAAS,GAAG,CAAC,CAAC,CAAC,+CAA+C;IAC9D,iBAAiB,GAAG,CAAC,CAAC,CAAC,iEAAiE;IACxF,WAAW,GAAG,EAAE,CAAC,CAAC,wCAAwC;IAC1D,oBAAoB,GAAG,KAAK,CAAC;IAC7B,kBAAkB,GAAG,OAAO,CAAC,GAAG,CAAC,kBAAkB,KAAK,GAAG,CAAC;IAC5D,aAAa,GAAG,OAAO,CAAC,GAAG,CAAC,kBAAkB,KAAK,GAAG,CAAC,CAAC,uDAAuD;IAC/G,gBAAgB,GAAG,CAAC,CAAC,CAAC,0DAA0D;IAChF,mBAAmB,GAAG,CAAC,CAAC,CAAC,4DAA4D;IACrF,eAAe,GAAG,CAAC,CAAC;IACpB,OAAO,GAAG,KAAK,CAAC;IAExB,qEAAqE;IAC7D,iBAAiB,GAAG,CAAC,CAAC;IACtB,YAAY,GAMd,EAAE,CAAC;IAET,YAAY,QAAkB,EAAE,kBAA4B,EAAE;QAC7D,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,kBAAkB,KAAK,SAAS,EAAE,CAAC;YACtC,IAAI,CAAC,kBAAkB,GAAG,kBAAkB,CAAC;QAC9C,CAAC;IAAA,CACD;IAED,IAAI,WAAW,GAAW;QACzB,OAAO,IAAI,CAAC,eAAe,CAAC;IAAA,CAC5B;IAED,qBAAqB,GAAY;QAChC,OAAO,IAAI,CAAC,kBAAkB,CAAC;IAAA,CAC/B;IAED,qBAAqB,CAAC,OAAgB,EAAQ;QAC7C,IAAI,IAAI,CAAC,kBAAkB,KAAK,OAAO;YAAE,OAAO;QAChD,IAAI,CAAC,kBAAkB,GAAG,OAAO,CAAC;QAClC,IAAI,CAAC,OAAO,EAAE,CAAC;YACd,IAAI,CAAC,QAAQ,CAAC,UAAU,EAAE,CAAC;QAC5B,CAAC;QACD,IAAI,CAAC,aAAa,EAAE,CAAC;IAAA,CACrB;IAED,gBAAgB,GAAY;QAC3B,OAAO,IAAI,CAAC,aAAa,CAAC;IAAA,CAC1B;IAED;;;;OAIG;IACH,gBAAgB,CAAC,OAAgB,EAAQ;QACxC,IAAI,CAAC,aAAa,GAAG,OAAO,CAAC;IAAA,CAC7B;IAED,QAAQ,CAAC,SAA2B,EAAQ;QAC3C,sCAAsC;QACtC,IAAI,WAAW,CAAC,IAAI,CAAC,gBAAgB,CAAC,EAAE,CAAC;YACxC,IAAI,CAAC,gBAAgB,CAAC,OAAO,GAAG,KAAK,CAAC;QACvC,CAAC;QAED,IAAI,CAAC,gBAAgB,GAAG,SAAS,CAAC;QAElC,oCAAoC;QACpC,IAAI,WAAW,CAAC,SAAS,CAAC,EAAE,CAAC;YAC5B,SAAS,CAAC,OAAO,GAAG,IAAI,CAAC;QAC1B,CAAC;IAAA,CACD;IAED;;;OAGG;IACH,WAAW,CAAC,SAAoB,EAAE,OAAwB,EAAiB;QAC1E,MAAM,KAAK,GAAG;YACb,SAAS;YACT,OAAO;YACP,QAAQ,EAAE,IAAI,CAAC,gBAAgB;YAC/B,MAAM,EAAE,KAAK;YACb,UAAU,EAAE,EAAE,IAAI,CAAC,iBAAiB;SACpC,CAAC;QACF,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QAC9B,4CAA4C;QAC5C,IAAI,CAAC,OAAO,EAAE,YAAY,IAAI,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAC,EAAE,CAAC;YAC5D,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;QAC1B,CAAC;QACD,IAAI,CAAC,QAAQ,CAAC,UAAU,EAAE,CAAC;QAC3B,IAAI,CAAC,aAAa,EAAE,CAAC;QAErB,6CAA6C;QAC7C,OAAO;YACN,IAAI,EAAE,GAAG,EAAE,CAAC;gBACX,MAAM,KAAK,GAAG,IAAI,CAAC,YAAY,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;gBAC/C,IAAI,KAAK,KAAK,CAAC,CAAC,EAAE,CAAC;oBAClB,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;oBACnC,0CAA0C;oBAC1C,IAAI,IAAI,CAAC,gBAAgB,KAAK,SAAS,EAAE,CAAC;wBACzC,MAAM,UAAU,GAAG,IAAI,CAAC,wBAAwB,EAAE,CAAC;wBACnD,IAAI,CAAC,QAAQ,CAAC,UAAU,EAAE,SAAS,IAAI,KAAK,CAAC,QAAQ,CAAC,CAAC;oBACxD,CAAC;oBACD,IAAI,IAAI,CAAC,YAAY,CAAC,MAAM,KAAK,CAAC;wBAAE,IAAI,CAAC,QAAQ,CAAC,UAAU,EAAE,CAAC;oBAC/D,IAAI,CAAC,aAAa,EAAE,CAAC;gBACtB,CAAC;YAAA,CACD;YACD,SAAS,EAAE,CAAC,MAAe,EAAE,EAAE,CAAC;gBAC/B,IAAI,KAAK,CAAC,MAAM,KAAK,MAAM;oBAAE,OAAO;gBACpC,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC;gBACtB,mCAAmC;gBACnC,IAAI,MAAM,EAAE,CAAC;oBACZ,oEAAoE;oBACpE,IAAI,IAAI,CAAC,gBAAgB,KAAK,SAAS,EAAE,CAAC;wBACzC,MAAM,UAAU,GAAG,IAAI,CAAC,wBAAwB,EAAE,CAAC;wBACnD,IAAI,CAAC,QAAQ,CAAC,UAAU,EAAE,SAAS,IAAI,KAAK,CAAC,QAAQ,CAAC,CAAC;oBACxD,CAAC;gBACF,CAAC;qBAAM,CAAC;oBACP,wEAAwE;oBACxE,IAAI,CAAC,OAAO,EAAE,YAAY,IAAI,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAC,EAAE,CAAC;wBAC5D,KAAK,CAAC,UAAU,GAAG,EAAE,IAAI,CAAC,iBAAiB,CAAC;wBAC5C,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;oBAC1B,CAAC;gBACF,CAAC;gBACD,IAAI,CAAC,aAAa,EAAE,CAAC;YAAA,CACrB;YACD,QAAQ,EAAE,GAAG,EAAE,CAAC,KAAK,CAAC,MAAM;YAC5B,KAAK,EAAE,GAAG,EAAE,CAAC;gBACZ,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAC;oBAAE,OAAO;gBAChF,IAAI,IAAI,CAAC,gBAAgB,KAAK,SAAS,EAAE,CAAC;oBACzC,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC;gBAC1B,CAAC;gBACD,KAAK,CAAC,UAAU,GAAG,EAAE,IAAI,CAAC,iBAAiB,CAAC;gBAC5C,IAAI,CAAC,aAAa,EAAE,CAAC;YAAA,CACrB;YACD,OAAO,EAAE,GAAG,EAAE,CAAC;gBACd,IAAI,IAAI,CAAC,gBAAgB,KAAK,SAAS;oBAAE,OAAO;gBAChD,MAAM,UAAU,GAAG,IAAI,CAAC,wBAAwB,EAAE,CAAC;gBACnD,IAAI,CAAC,QAAQ,CAAC,UAAU,IAAI,UAAU,KAAK,KAAK,CAAC,CAAC,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC;gBAC1F,IAAI,CAAC,aAAa,EAAE,CAAC;YAAA,CACrB;YACD,SAAS,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,gBAAgB,KAAK,SAAS;SACpD,CAAC;IAAA,CACF;IAED,2DAA2D;IAC3D,WAAW,GAAS;QACnB,MAAM,OAAO,GAAG,IAAI,CAAC,YAAY,CAAC,GAAG,EAAE,CAAC;QACxC,IAAI,CAAC,OAAO;YAAE,OAAO;QACrB,IAAI,IAAI,CAAC,gBAAgB,KAAK,OAAO,CAAC,SAAS,EAAE,CAAC;YACjD,yDAAyD;YACzD,MAAM,UAAU,GAAG,IAAI,CAAC,wBAAwB,EAAE,CAAC;YACnD,IAAI,CAAC,QAAQ,CAAC,UAAU,EAAE,SAAS,IAAI,OAAO,CAAC,QAAQ,CAAC,CAAC;QAC1D,CAAC;QACD,IAAI,IAAI,CAAC,YAAY,CAAC,MAAM,KAAK,CAAC;YAAE,IAAI,CAAC,QAAQ,CAAC,UAAU,EAAE,CAAC;QAC/D,IAAI,CAAC,aAAa,EAAE,CAAC;IAAA,CACrB;IAED,8CAA8C;IAC9C,UAAU,GAAY;QACrB,OAAO,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC;IAAA,CAC/D;IAED,qDAAqD;IAC7C,gBAAgB,CAAC,KAAyC,EAAW;QAC5E,IAAI,KAAK,CAAC,MAAM;YAAE,OAAO,KAAK,CAAC;QAC/B,IAAI,KAAK,CAAC,OAAO,EAAE,OAAO,EAAE,CAAC;YAC5B,OAAO,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;QACzE,CAAC;QACD,OAAO,IAAI,CAAC;IAAA,CACZ;IAED,yDAAyD;IACjD,wBAAwB,GAAmD;QAClF,KAAK,IAAI,CAAC,GAAG,IAAI,CAAC,YAAY,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC;YACxD,IAAI,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,YAAY;gBAAE,SAAS;YACzD,IAAI,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;gBACjD,OAAO,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;YAC7B,CAAC;QACF,CAAC;QACD,OAAO,SAAS,CAAC;IAAA,CACjB;IAEQ,UAAU,GAAS;QAC3B,KAAK,CAAC,UAAU,EAAE,CAAC;QACnB,KAAK,MAAM,OAAO,IAAI,IAAI,CAAC,YAAY;YAAE,OAAO,CAAC,SAAS,CAAC,UAAU,EAAE,EAAE,CAAC;IAAA,CAC1E;IAED,KAAK,GAAS;QACb,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;QACrB,IAAI,CAAC,QAAQ,CAAC,KAAK,CAClB,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,EAChC,GAAG,EAAE,CAAC,IAAI,CAAC,aAAa,EAAE,CAC1B,CAAC;QACF,IAAI,CAAC,QAAQ,CAAC,UAAU,EAAE,CAAC;QAC3B,IAAI,CAAC,aAAa,EAAE,CAAC;QACrB,IAAI,CAAC,aAAa,EAAE,CAAC;IAAA,CACrB;IAED,gBAAgB,CAAC,QAAuB,EAAc;QACrD,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;QAClC,OAAO,GAAG,EAAE,CAAC;YACZ,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;QAAA,CACrC,CAAC;IAAA,CACF;IAED,mBAAmB,CAAC,QAAuB,EAAQ;QAClD,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;IAAA,CACrC;IAEO,aAAa,GAAS;QAC7B,sFAAsF;QACtF,IAAI,CAAC,eAAe,EAAE,CAAC,MAAM,EAAE,CAAC;YAC/B,OAAO;QACR,CAAC;QACD,mDAAmD;QACnD,4CAA4C;QAC5C,IAAI,CAAC,oBAAoB,GAAG,IAAI,CAAC;QACjC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC;IAAA,CAChC;IAED,IAAI,GAAS;QACZ,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QACpB,iFAAiF;QACjF,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YACnC,MAAM,SAAS,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,8BAA8B;YAC3E,MAAM,QAAQ,GAAG,SAAS,GAAG,IAAI,CAAC,iBAAiB,CAAC;YACpD,IAAI,QAAQ,GAAG,CAAC,EAAE,CAAC;gBAClB,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,QAAQ,QAAQ,GAAG,CAAC,CAAC;YAC1C,CAAC;iBAAM,IAAI,QAAQ,GAAG,CAAC,EAAE,CAAC;gBACzB,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,QAAQ,GAAG,CAAC,CAAC;YAC3C,CAAC;YACD,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;QAC7B,CAAC;QAED,IAAI,CAAC,QAAQ,CAAC,UAAU,EAAE,CAAC;QAC3B,IAAI,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC;IAAA,CACrB;IAED,aAAa,CAAC,KAAK,GAAG,KAAK,EAAQ;QAClC,IAAI,KAAK,EAAE,CAAC;YACX,IAAI,CAAC,aAAa,GAAG,EAAE,CAAC;YACxB,IAAI,CAAC,aAAa,GAAG,CAAC,CAAC,CAAC,CAAC,iDAAiD;YAC1E,IAAI,CAAC,cAAc,GAAG,CAAC,CAAC,CAAC,CAAC,kDAAkD;YAC5E,IAAI,CAAC,SAAS,GAAG,CAAC,CAAC;YACnB,IAAI,CAAC,iBAAiB,GAAG,CAAC,CAAC;YAC3B,IAAI,CAAC,gBAAgB,GAAG,CAAC,CAAC;YAC1B,IAAI,CAAC,mBAAmB,GAAG,CAAC,CAAC;QAC9B,CAAC;QACD,IAAI,IAAI,CAAC,eAAe;YAAE,OAAO;QACjC,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC;QAC5B,OAAO,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC;YACtB,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;YAC7B,IAAI,CAAC,QAAQ,EAAE,CAAC;QAAA,CAChB,CAAC,CAAC;IAAA,CACH;IAEO,WAAW,CAAC,IAAY,EAAQ;QACvC,IAAI,IAAI,CAAC,cAAc,CAAC,IAAI,GAAG,CAAC,EAAE,CAAC;YAClC,IAAI,OAAO,GAAG,IAAI,CAAC;YACnB,KAAK,MAAM,QAAQ,IAAI,IAAI,CAAC,cAAc,EAAE,CAAC;gBAC5C,MAAM,MAAM,GAAG,QAAQ,CAAC,OAAO,CAAC,CAAC;gBACjC,IAAI,MAAM,EAAE,OAAO,EAAE,CAAC;oBACrB,OAAO;gBACR,CAAC;gBACD,IAAI,MAAM,EAAE,IAAI,KAAK,SAAS,EAAE,CAAC;oBAChC,OAAO,GAAG,MAAM,CAAC,IAAI,CAAC;gBACvB,CAAC;YACF,CAAC;YACD,IAAI,OAAO,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;gBAC1B,OAAO;YACR,CAAC;YACD,IAAI,GAAG,OAAO,CAAC;QAChB,CAAC;QAED,kEAAkE;QAClE,IAAI,IAAI,CAAC,oBAAoB,EAAE,CAAC;YAC/B,IAAI,CAAC,WAAW,IAAI,IAAI,CAAC;YACzB,MAAM,QAAQ,GAAG,IAAI,CAAC,qBAAqB,EAAE,CAAC;YAC9C,IAAI,QAAQ,CAAC,MAAM,KAAK,CAAC;gBAAE,OAAO;YAClC,IAAI,GAAG,QAAQ,CAAC;QACjB,CAAC;QAED,0CAA0C;QAC1C,IAAI,UAAU,CAAC,IAAI,EAAE,cAAc,CAAC,IAAI,IAAI,CAAC,OAAO,EAAE,CAAC;YACtD,IAAI,CAAC,OAAO,EAAE,CAAC;YACf,OAAO;QACR,CAAC;QAED,gEAAgE;QAChE,uEAAuE;QACvE,MAAM,cAAc,GAAG,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,KAAK,IAAI,CAAC,gBAAgB,CAAC,CAAC;QAC5F,IAAI,cAAc,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,cAAc,CAAC,EAAE,CAAC;YAC9D,4EAA4E;YAC5E,MAAM,UAAU,GAAG,IAAI,CAAC,wBAAwB,EAAE,CAAC;YACnD,IAAI,UAAU,EAAE,CAAC;gBAChB,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC;YACrC,CAAC;iBAAM,CAAC;gBACP,2CAA2C;gBAC3C,IAAI,CAAC,QAAQ,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC;YACxC,CAAC;QACF,CAAC;QAED,qDAAqD;QACrD,wDAAwD;QACxD,IAAI,IAAI,CAAC,gBAAgB,EAAE,WAAW,EAAE,CAAC;YACxC,yDAAyD;YACzD,IAAI,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,eAAe,EAAE,CAAC;gBAClE,OAAO;YACR,CAAC;YACD,IAAI,CAAC,gBAAgB,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;YACxC,IAAI,CAAC,aAAa,EAAE,CAAC;QACtB,CAAC;IAAA,CACD;IAEO,qBAAqB,GAAW;QACvC,8CAA8C;QAC9C,6BAA6B;QAC7B,MAAM,eAAe,GAAG,sBAAsB,CAAC;QAC/C,MAAM,KAAK,GAAG,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC;QAEtD,IAAI,KAAK,EAAE,CAAC;YACX,MAAM,QAAQ,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;YACxC,MAAM,OAAO,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;YAEvC,IAAI,QAAQ,GAAG,CAAC,IAAI,OAAO,GAAG,CAAC,EAAE,CAAC;gBACjC,iBAAiB,CAAC,EAAE,OAAO,EAAE,QAAQ,EAAE,CAAC,CAAC;gBACzC,wEAAwE;gBACxE,IAAI,CAAC,UAAU,EAAE,CAAC;gBAClB,IAAI,CAAC,aAAa,EAAE,CAAC;YACtB,CAAC;YAED,kCAAkC;YAClC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,eAAe,EAAE,EAAE,CAAC,CAAC;YACjE,IAAI,CAAC,oBAAoB,GAAG,KAAK,CAAC;QACnC,CAAC;QAED,8EAA8E;QAC9E,kGAAkG;QAClG,MAAM,sBAAsB,GAAG,sBAAsB,CAAC;QACtD,IAAI,sBAAsB,CAAC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC;YACnD,mFAAmF;YACnF,4FAA4F;YAC5F,MAAM,QAAQ,GAAG,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;YAC/D,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC;gBACjC,qEAAqE;gBACrE,OAAO,EAAE,CAAC;YACX,CAAC;QACF,CAAC;QAED,kEAAkE;QAClE,MAAM,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC;QAChC,IAAI,CAAC,WAAW,GAAG,EAAE,CAAC;QACtB,IAAI,CAAC,oBAAoB,GAAG,KAAK,CAAC,CAAC,kBAAkB;QACrD,OAAO,MAAM,CAAC;IAAA,CACd;IAED;;;OAGG;IACK,oBAAoB,CAC3B,OAAmC,EACnC,aAAqB,EACrB,SAAiB,EACjB,UAAkB,EAC2D;QAC7E,MAAM,GAAG,GAAG,OAAO,IAAI,EAAE,CAAC;QAE1B,uCAAuC;QACvC,MAAM,MAAM,GACX,OAAO,GAAG,CAAC,MAAM,KAAK,QAAQ;YAC7B,CAAC,CAAC,EAAE,GAAG,EAAE,GAAG,CAAC,MAAM,EAAE,KAAK,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,IAAI,EAAE,GAAG,CAAC,MAAM,EAAE;YAC9E,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,IAAI,EAAE,CAAC,CAAC;QACvB,MAAM,SAAS,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC;QAC/C,MAAM,WAAW,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,MAAM,CAAC,KAAK,IAAI,CAAC,CAAC,CAAC;QACnD,MAAM,YAAY,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,MAAM,CAAC,MAAM,IAAI,CAAC,CAAC,CAAC;QACrD,MAAM,UAAU,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC;QAEjD,gCAAgC;QAChC,MAAM,UAAU,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,SAAS,GAAG,UAAU,GAAG,WAAW,CAAC,CAAC;QACrE,MAAM,WAAW,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,UAAU,GAAG,SAAS,GAAG,YAAY,CAAC,CAAC;QAEvE,wBAAwB;QACxB,IAAI,KAAK,GAAG,cAAc,CAAC,GAAG,CAAC,KAAK,EAAE,SAAS,CAAC,IAAI,IAAI,CAAC,GAAG,CAAC,EAAE,EAAE,UAAU,CAAC,CAAC;QAC7E,iBAAiB;QACjB,IAAI,GAAG,CAAC,QAAQ,KAAK,SAAS,EAAE,CAAC;YAChC,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,GAAG,CAAC,QAAQ,CAAC,CAAC;QACvC,CAAC;QACD,2BAA2B;QAC3B,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE,UAAU,CAAC,CAAC,CAAC;QAEjD,4BAA4B;QAC5B,IAAI,SAAS,GAAG,cAAc,CAAC,GAAG,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC;QAC1D,2BAA2B;QAC3B,IAAI,SAAS,KAAK,SAAS,EAAE,CAAC;YAC7B,SAAS,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,GAAG,CAAC,SAAS,EAAE,WAAW,CAAC,CAAC,CAAC;QAC3D,CAAC;QAED,yDAAyD;QACzD,MAAM,eAAe,GAAG,SAAS,KAAK,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,aAAa,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,aAAa,CAAC;QAErG,2BAA2B;QAC3B,IAAI,GAAW,CAAC;QAChB,IAAI,GAAW,CAAC;QAEhB,IAAI,GAAG,CAAC,GAAG,KAAK,SAAS,EAAE,CAAC;YAC3B,IAAI,OAAO,GAAG,CAAC,GAAG,KAAK,QAAQ,EAAE,CAAC;gBACjC,oEAAoE;gBACpE,MAAM,KAAK,GAAG,GAAG,CAAC,GAAG,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC;gBAClD,IAAI,KAAK,EAAE,CAAC;oBACX,MAAM,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,WAAW,GAAG,eAAe,CAAC,CAAC;oBAC1D,MAAM,OAAO,GAAG,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC;oBAC3C,GAAG,GAAG,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,OAAO,CAAC,CAAC;gBAChD,CAAC;qBAAM,CAAC;oBACP,sCAAsC;oBACtC,GAAG,GAAG,IAAI,CAAC,gBAAgB,CAAC,QAAQ,EAAE,eAAe,EAAE,WAAW,EAAE,SAAS,CAAC,CAAC;gBAChF,CAAC;YACF,CAAC;iBAAM,CAAC;gBACP,wBAAwB;gBACxB,GAAG,GAAG,GAAG,CAAC,GAAG,CAAC;YACf,CAAC;QACF,CAAC;aAAM,CAAC;YACP,iCAAiC;YACjC,MAAM,MAAM,GAAG,GAAG,CAAC,MAAM,IAAI,QAAQ,CAAC;YACtC,GAAG,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,eAAe,EAAE,WAAW,EAAE,SAAS,CAAC,CAAC;QAC9E,CAAC;QAED,IAAI,GAAG,CAAC,GAAG,KAAK,SAAS,EAAE,CAAC;YAC3B,IAAI,OAAO,GAAG,CAAC,GAAG,KAAK,QAAQ,EAAE,CAAC;gBACjC,oEAAoE;gBACpE,MAAM,KAAK,GAAG,GAAG,CAAC,GAAG,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC;gBAClD,IAAI,KAAK,EAAE,CAAC;oBACX,MAAM,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,UAAU,GAAG,KAAK,CAAC,CAAC;oBAC/C,MAAM,OAAO,GAAG,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,GAAG,CAAC;oBAC3C,GAAG,GAAG,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,OAAO,CAAC,CAAC;gBACjD,CAAC;qBAAM,CAAC;oBACP,sCAAsC;oBACtC,GAAG,GAAG,IAAI,CAAC,gBAAgB,CAAC,QAAQ,EAAE,KAAK,EAAE,UAAU,EAAE,UAAU,CAAC,CAAC;gBACtE,CAAC;YACF,CAAC;iBAAM,CAAC;gBACP,2BAA2B;gBAC3B,GAAG,GAAG,GAAG,CAAC,GAAG,CAAC;YACf,CAAC;QACF,CAAC;aAAM,CAAC;YACP,iCAAiC;YACjC,MAAM,MAAM,GAAG,GAAG,CAAC,MAAM,IAAI,QAAQ,CAAC;YACtC,GAAG,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,KAAK,EAAE,UAAU,EAAE,UAAU,CAAC,CAAC;QACpE,CAAC;QAED,gBAAgB;QAChB,IAAI,GAAG,CAAC,OAAO,KAAK,SAAS;YAAE,GAAG,IAAI,GAAG,CAAC,OAAO,CAAC;QAClD,IAAI,GAAG,CAAC,OAAO,KAAK,SAAS;YAAE,GAAG,IAAI,GAAG,CAAC,OAAO,CAAC;QAElD,gDAAgD;QAChD,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG,CAAC,GAAG,EAAE,UAAU,GAAG,YAAY,GAAG,eAAe,CAAC,CAAC,CAAC;QACtF,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,UAAU,EAAE,IAAI,CAAC,GAAG,CAAC,GAAG,EAAE,SAAS,GAAG,WAAW,GAAG,KAAK,CAAC,CAAC,CAAC;QAE3E,OAAO,EAAE,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE,SAAS,EAAE,CAAC;IAAA,CACtC;IAEO,gBAAgB,CAAC,MAAqB,EAAE,MAAc,EAAE,WAAmB,EAAE,SAAiB,EAAU;QAC/G,QAAQ,MAAM,EAAE,CAAC;YAChB,KAAK,UAAU,CAAC;YAChB,KAAK,YAAY,CAAC;YAClB,KAAK,WAAW;gBACf,OAAO,SAAS,CAAC;YAClB,KAAK,aAAa,CAAC;YACnB,KAAK,eAAe,CAAC;YACrB,KAAK,cAAc;gBAClB,OAAO,SAAS,GAAG,WAAW,GAAG,MAAM,CAAC;YACzC,KAAK,aAAa,CAAC;YACnB,KAAK,QAAQ,CAAC;YACd,KAAK,cAAc;gBAClB,OAAO,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,WAAW,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;QAC5D,CAAC;IAAA,CACD;IAEO,gBAAgB,CAAC,MAAqB,EAAE,KAAa,EAAE,UAAkB,EAAE,UAAkB,EAAU;QAC9G,QAAQ,MAAM,EAAE,CAAC;YAChB,KAAK,UAAU,CAAC;YAChB,KAAK,aAAa,CAAC;YACnB,KAAK,aAAa;gBACjB,OAAO,UAAU,CAAC;YACnB,KAAK,WAAW,CAAC;YACjB,KAAK,cAAc,CAAC;YACpB,KAAK,cAAc;gBAClB,OAAO,UAAU,GAAG,UAAU,GAAG,KAAK,CAAC;YACxC,KAAK,YAAY,CAAC;YAClB,KAAK,QAAQ,CAAC;YACd,KAAK,eAAe;gBACnB,OAAO,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,UAAU,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC;QAC3D,CAAC;IAAA,CACD;IAED,yFAAyF;IACjF,iBAAiB,CAAC,KAAe,EAAE,SAAiB,EAAE,UAAkB,EAAY;QAC3F,IAAI,IAAI,CAAC,YAAY,CAAC,MAAM,KAAK,CAAC;YAAE,OAAO,KAAK,CAAC;QACjD,MAAM,MAAM,GAAG,CAAC,GAAG,KAAK,CAAC,CAAC;QAE1B,0DAA0D;QAC1D,MAAM,QAAQ,GAAsE,EAAE,CAAC;QACvF,IAAI,cAAc,GAAG,MAAM,CAAC,MAAM,CAAC;QAEnC,MAAM,cAAc,GAAG,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC;QACjF,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,UAAU,GAAG,CAAC,CAAC,UAAU,CAAC,CAAC;QAC3D,KAAK,MAAM,KAAK,IAAI,cAAc,EAAE,CAAC;YACpC,MAAM,EAAE,SAAS,EAAE,OAAO,EAAE,GAAG,KAAK,CAAC;YAErC,kEAAkE;YAClE,uDAAuD;YACvD,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,GAAG,IAAI,CAAC,oBAAoB,CAAC,OAAO,EAAE,CAAC,EAAE,SAAS,EAAE,UAAU,CAAC,CAAC;YAE1F,uCAAuC;YACvC,IAAI,YAAY,GAAG,SAAS,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;YAE3C,+BAA+B;YAC/B,IAAI,SAAS,KAAK,SAAS,IAAI,YAAY,CAAC,MAAM,GAAG,SAAS,EAAE,CAAC;gBAChE,YAAY,GAAG,YAAY,CAAC,KAAK,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;YACjD,CAAC;YAED,+CAA+C;YAC/C,MAAM,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,oBAAoB,CAAC,OAAO,EAAE,YAAY,CAAC,MAAM,EAAE,SAAS,EAAE,UAAU,CAAC,CAAC;YAEpG,QAAQ,CAAC,IAAI,CAAC,EAAE,YAAY,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC;YACpD,cAAc,GAAG,IAAI,CAAC,GAAG,CAAC,cAAc,EAAE,GAAG,GAAG,YAAY,CAAC,MAAM,CAAC,CAAC;QACtE,CAAC;QAED,oGAAoG;QACpG,2GAA2G;QAC3G,MAAM,aAAa,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,gBAAgB,EAAE,cAAc,CAAC,CAAC;QAEtE,+FAA+F;QAC/F,OAAO,MAAM,CAAC,MAAM,GAAG,aAAa,EAAE,CAAC;YACtC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;QACjB,CAAC;QAED,MAAM,aAAa,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,aAAa,GAAG,UAAU,CAAC,CAAC;QAE9D,yBAAyB;QACzB,KAAK,MAAM,EAAE,YAAY,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,IAAI,QAAQ,EAAE,CAAC;YACtD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,YAAY,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;gBAC9C,MAAM,GAAG,GAAG,aAAa,GAAG,GAAG,GAAG,CAAC,CAAC;gBACpC,IAAI,GAAG,IAAI,CAAC,IAAI,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;oBACrC,wEAAwE;oBACxE,iEAAiE;oBACjE,MAAM,oBAAoB,GACzB,YAAY,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,aAAa,CAAC,YAAY,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC;oBAClG,MAAM,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,oBAAoB,EAAE,GAAG,EAAE,CAAC,EAAE,SAAS,CAAC,CAAC;gBAC1F,CAAC;YACF,CAAC;QACF,CAAC;QAED,OAAO,MAAM,CAAC;IAAA,CACd;IAEO,MAAM,CAAU,aAAa,GAAG,qBAAqB,CAAC;IAEtD,eAAe,CAAC,KAAe,EAAY;QAClD,MAAM,KAAK,GAAG,GAAG,CAAC,aAAa,CAAC;QAChC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;YACvC,MAAM,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;YACtB,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE,CAAC;gBACxB,KAAK,CAAC,CAAC,CAAC,GAAG,IAAI,GAAG,KAAK,CAAC;YACzB,CAAC;QACF,CAAC;QACD,OAAO,KAAK,CAAC;IAAA,CACb;IAED,2FAA2F;IACnF,eAAe,CACtB,QAAgB,EAChB,WAAmB,EACnB,QAAgB,EAChB,YAAoB,EACpB,UAAkB,EACT;QACT,IAAI,WAAW,CAAC,QAAQ,CAAC;YAAE,OAAO,QAAQ,CAAC;QAE3C,uEAAuE;QACvE,MAAM,UAAU,GAAG,QAAQ,GAAG,YAAY,CAAC;QAC3C,MAAM,IAAI,GAAG,eAAe,CAAC,QAAQ,EAAE,QAAQ,EAAE,UAAU,EAAE,UAAU,GAAG,UAAU,EAAE,IAAI,CAAC,CAAC;QAE5F,sFAAsF;QACtF,MAAM,OAAO,GAAG,cAAc,CAAC,WAAW,EAAE,CAAC,EAAE,YAAY,EAAE,IAAI,CAAC,CAAC;QAEnE,gCAAgC;QAChC,MAAM,SAAS,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,QAAQ,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC;QAC3D,MAAM,UAAU,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,YAAY,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;QAC7D,MAAM,iBAAiB,GAAG,IAAI,CAAC,GAAG,CAAC,QAAQ,EAAE,IAAI,CAAC,WAAW,CAAC,CAAC;QAC/D,MAAM,kBAAkB,GAAG,IAAI,CAAC,GAAG,CAAC,YAAY,EAAE,OAAO,CAAC,KAAK,CAAC,CAAC;QACjE,MAAM,WAAW,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,UAAU,GAAG,iBAAiB,GAAG,kBAAkB,CAAC,CAAC;QACrF,MAAM,QAAQ,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC,UAAU,CAAC,CAAC;QAE5D,iBAAiB;QACjB,MAAM,CAAC,GAAG,GAAG,CAAC,aAAa,CAAC;QAC5B,MAAM,MAAM,GACX,IAAI,CAAC,MAAM;YACX,GAAG,CAAC,MAAM,CAAC,SAAS,CAAC;YACrB,CAAC;YACD,OAAO,CAAC,IAAI;YACZ,GAAG,CAAC,MAAM,CAAC,UAAU,CAAC;YACtB,CAAC;YACD,IAAI,CAAC,KAAK;YACV,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;QAEtB,0DAA0D;QAC1D,gFAAgF;QAChF,6DAA6D;QAC7D,oDAAoD;QACpD,0CAA0C;QAC1C,qCAAqC;QACrC,MAAM,WAAW,GAAG,YAAY,CAAC,MAAM,CAAC,CAAC;QACzC,IAAI,WAAW,IAAI,UAAU,EAAE,CAAC;YAC/B,OAAO,MAAM,CAAC;QACf,CAAC;QACD,iEAAiE;QACjE,OAAO,aAAa,CAAC,MAAM,EAAE,CAAC,EAAE,UAAU,EAAE,IAAI,CAAC,CAAC;IAAA,CAClD;IAED;;;;;;;OAOG;IACK,qBAAqB,CAAC,KAAe,EAAE,MAAc,EAAuC;QACnG,yDAAyD;QACzD,MAAM,WAAW,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC;QACvD,KAAK,IAAI,GAAG,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE,GAAG,IAAI,WAAW,EAAE,GAAG,EAAE,EAAE,CAAC;YAC5D,MAAM,IAAI,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC;YACxB,MAAM,WAAW,GAAG,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC;YAChD,IAAI,WAAW,KAAK,CAAC,CAAC,EAAE,CAAC;gBACxB,wDAAwD;gBACxD,MAAM,YAAY,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC;gBAChD,MAAM,GAAG,GAAG,YAAY,CAAC,YAAY,CAAC,CAAC;gBAEvC,6BAA6B;gBAC7B,KAAK,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,WAAW,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,WAAW,GAAG,aAAa,CAAC,MAAM,CAAC,CAAC;gBAEzF,OAAO,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;YACrB,CAAC;QACF,CAAC;QACD,OAAO,IAAI,CAAC;IAAA,CACZ;IAEO,QAAQ,GAAS;QACxB,IAAI,IAAI,CAAC,OAAO;YAAE,OAAO;QACzB,MAAM,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC;QACpC,MAAM,MAAM,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC;QAClC,IAAI,WAAW,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,gBAAgB,GAAG,MAAM,CAAC,CAAC;QAC9D,IAAI,eAAe,GAAG,IAAI,CAAC,mBAAmB,CAAC;QAC/C,IAAI,iBAAiB,GAAG,IAAI,CAAC,iBAAiB,CAAC;QAC/C,MAAM,eAAe,GAAG,CAAC,SAAiB,EAAU,EAAE,CAAC;YACtD,MAAM,gBAAgB,GAAG,iBAAiB,GAAG,eAAe,CAAC;YAC7D,MAAM,eAAe,GAAG,SAAS,GAAG,WAAW,CAAC;YAChD,OAAO,eAAe,GAAG,gBAAgB,CAAC;QAAA,CAC1C,CAAC;QAEF,yCAAyC;QACzC,IAAI,QAAQ,GAAG,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QAElC,2EAA2E;QAC3E,IAAI,IAAI,CAAC,YAAY,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YAClC,QAAQ,GAAG,IAAI,CAAC,iBAAiB,CAAC,QAAQ,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;QAC5D,CAAC;QAED,mFAAmF;QACnF,MAAM,SAAS,GAAG,IAAI,CAAC,qBAAqB,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;QAE/D,QAAQ,GAAG,IAAI,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAC;QAE1C,gDAAgD;QAChD,MAAM,YAAY,GAAG,IAAI,CAAC,aAAa,KAAK,CAAC,IAAI,IAAI,CAAC,aAAa,KAAK,KAAK,CAAC;QAC9E,MAAM,aAAa,GAAG,IAAI,CAAC,cAAc,KAAK,CAAC,IAAI,IAAI,CAAC,cAAc,KAAK,MAAM,CAAC;QAElF,mEAAmE;QACnE,MAAM,UAAU,GAAG,CAAC,KAAc,EAAQ,EAAE,CAAC;YAC5C,IAAI,CAAC,eAAe,IAAI,CAAC,CAAC;YAC1B,IAAI,MAAM,GAAG,aAAa,CAAC,CAAC,4BAA4B;YACxD,IAAI,KAAK;gBAAE,MAAM,IAAI,sBAAsB,CAAC,CAAC,4CAA4C;YACzF,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;gBAC1C,IAAI,CAAC,GAAG,CAAC;oBAAE,MAAM,IAAI,MAAM,CAAC;gBAC5B,MAAM,IAAI,QAAQ,CAAC,CAAC,CAAC,CAAC;YACvB,CAAC;YACD,MAAM,IAAI,aAAa,CAAC,CAAC,0BAA0B;YACnD,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;YAC5B,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;YAClD,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC,SAAS,CAAC;YACxC,wDAAwD;YACxD,IAAI,KAAK,EAAE,CAAC;gBACX,IAAI,CAAC,gBAAgB,GAAG,QAAQ,CAAC,MAAM,CAAC;YACzC,CAAC;iBAAM,CAAC;gBACP,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,gBAAgB,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;YAC1E,CAAC;YACD,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,gBAAgB,GAAG,MAAM,CAAC,CAAC;YACvE,IAAI,CAAC,sBAAsB,CAAC,SAAS,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;YACxD,IAAI,CAAC,aAAa,GAAG,QAAQ,CAAC;YAC9B,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;YAC3B,IAAI,CAAC,cAAc,GAAG,MAAM,CAAC;QAAA,CAC7B,CAAC;QAEF,MAAM,WAAW,GAAG,OAAO,CAAC,GAAG,CAAC,eAAe,KAAK,GAAG,CAAC;QACxD,MAAM,SAAS,GAAG,CAAC,MAAc,EAAQ,EAAE,CAAC;YAC3C,IAAI,CAAC,WAAW;gBAAE,OAAO;YACzB,MAAM,OAAO,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE,cAAc,CAAC,CAAC;YACxE,MAAM,GAAG,GAAG,IAAI,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE,iBAAiB,MAAM,UAAU,IAAI,CAAC,aAAa,CAAC,MAAM,SAAS,QAAQ,CAAC,MAAM,YAAY,MAAM,KAAK,CAAC;YAClJ,EAAE,CAAC,cAAc,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC;QAAA,CAChC,CAAC;QAEF,gFAAgF;QAChF,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,KAAK,CAAC,IAAI,CAAC,YAAY,IAAI,CAAC,aAAa,EAAE,CAAC;YACxE,SAAS,CAAC,cAAc,CAAC,CAAC;YAC1B,UAAU,CAAC,KAAK,CAAC,CAAC;YAClB,OAAO;QACR,CAAC;QAED,2CAA2C;QAC3C,IAAI,YAAY,IAAI,aAAa,EAAE,CAAC;YACnC,SAAS,CAAC,0BAA0B,IAAI,CAAC,aAAa,IAAI,IAAI,CAAC,cAAc,OAAO,KAAK,IAAI,MAAM,GAAG,CAAC,CAAC;YACxG,UAAU,CAAC,IAAI,CAAC,CAAC;YACjB,OAAO;QACR,CAAC;QAED,wFAAwF;QACxF,2EAA2E;QAC3E,sEAAsE;QACtE,IAAI,IAAI,CAAC,aAAa,IAAI,QAAQ,CAAC,MAAM,GAAG,IAAI,CAAC,gBAAgB,IAAI,IAAI,CAAC,YAAY,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YACrG,SAAS,CAAC,mCAAmC,IAAI,CAAC,gBAAgB,GAAG,CAAC,CAAC;YACvE,UAAU,CAAC,IAAI,CAAC,CAAC;YACjB,OAAO;QACR,CAAC;QAED,oCAAoC;QACpC,IAAI,YAAY,GAAG,CAAC,CAAC,CAAC;QACtB,IAAI,WAAW,GAAG,CAAC,CAAC,CAAC;QACrB,MAAM,QAAQ,GAAG,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,EAAE,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;QACtE,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,EAAE,CAAC,EAAE,EAAE,CAAC;YACnC,MAAM,OAAO,GAAG,CAAC,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;YAC3E,MAAM,OAAO,GAAG,CAAC,GAAG,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;YAEvD,IAAI,OAAO,KAAK,OAAO,EAAE,CAAC;gBACzB,IAAI,YAAY,KAAK,CAAC,CAAC,EAAE,CAAC;oBACzB,YAAY,GAAG,CAAC,CAAC;gBAClB,CAAC;gBACD,WAAW,GAAG,CAAC,CAAC;YACjB,CAAC;QACF,CAAC;QACD,MAAM,aAAa,GAAG,QAAQ,CAAC,MAAM,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC;QAClE,IAAI,aAAa,EAAE,CAAC;YACnB,IAAI,YAAY,KAAK,CAAC,CAAC,EAAE,CAAC;gBACzB,YAAY,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC;YAC1C,CAAC;YACD,WAAW,GAAG,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC;QACnC,CAAC;QACD,MAAM,WAAW,GAAG,aAAa,IAAI,YAAY,KAAK,IAAI,CAAC,aAAa,CAAC,MAAM,IAAI,YAAY,GAAG,CAAC,CAAC;QAEpG,6EAA6E;QAC7E,IAAI,YAAY,KAAK,CAAC,CAAC,EAAE,CAAC;YACzB,IAAI,CAAC,sBAAsB,CAAC,SAAS,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;YACxD,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,gBAAgB,GAAG,MAAM,CAAC,CAAC;YACvE,IAAI,CAAC,cAAc,GAAG,MAAM,CAAC;YAC7B,OAAO;QACR,CAAC;QAED,mEAAmE;QACnE,IAAI,YAAY,IAAI,QAAQ,CAAC,MAAM,EAAE,CAAC;YACrC,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC;gBACjD,IAAI,MAAM,GAAG,aAAa,CAAC;gBAC3B,4DAA4D;gBAC5D,MAAM,SAAS,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;gBACnD,MAAM,QAAQ,GAAG,eAAe,CAAC,SAAS,CAAC,CAAC;gBAC5C,IAAI,QAAQ,GAAG,CAAC;oBAAE,MAAM,IAAI,QAAQ,QAAQ,GAAG,CAAC;qBAC3C,IAAI,QAAQ,GAAG,CAAC;oBAAE,MAAM,IAAI,QAAQ,CAAC,QAAQ,GAAG,CAAC;gBACtD,MAAM,IAAI,IAAI,CAAC;gBACf,sCAAsC;gBACtC,MAAM,UAAU,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC;gBAC/D,IAAI,UAAU,GAAG,MAAM,EAAE,CAAC;oBACzB,SAAS,CAAC,wBAAwB,UAAU,MAAM,MAAM,GAAG,CAAC,CAAC;oBAC7D,UAAU,CAAC,IAAI,CAAC,CAAC;oBACjB,OAAO;gBACR,CAAC;gBACD,IAAI,UAAU,GAAG,CAAC,EAAE,CAAC;oBACpB,MAAM,IAAI,SAAS,CAAC;gBACrB,CAAC;gBACD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,EAAE,CAAC,EAAE,EAAE,CAAC;oBACrC,MAAM,IAAI,WAAW,CAAC;oBACtB,IAAI,CAAC,GAAG,UAAU,GAAG,CAAC;wBAAE,MAAM,IAAI,SAAS,CAAC;gBAC7C,CAAC;gBACD,IAAI,UAAU,GAAG,CAAC,EAAE,CAAC;oBACpB,MAAM,IAAI,QAAQ,UAAU,GAAG,CAAC;gBACjC,CAAC;gBACD,MAAM,IAAI,aAAa,CAAC;gBACxB,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;gBAC5B,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;gBAC3B,IAAI,CAAC,iBAAiB,GAAG,SAAS,CAAC;YACpC,CAAC;YACD,IAAI,CAAC,sBAAsB,CAAC,SAAS,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;YACxD,IAAI,CAAC,aAAa,GAAG,QAAQ,CAAC;YAC9B,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;YAC3B,IAAI,CAAC,cAAc,GAAG,MAAM,CAAC;YAC7B,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,gBAAgB,GAAG,MAAM,CAAC,CAAC;YACvE,OAAO;QACR,CAAC;QAED,6DAA6D;QAC7D,iGAAiG;QACjG,MAAM,0BAA0B,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC;QACnF,IAAI,YAAY,GAAG,0BAA0B,EAAE,CAAC;YAC/C,gEAAgE;YAChE,SAAS,CAAC,+BAA+B,YAAY,MAAM,0BAA0B,GAAG,CAAC,CAAC;YAC1F,UAAU,CAAC,IAAI,CAAC,CAAC;YACjB,OAAO;QACR,CAAC;QAED,wCAAwC;QACxC,+DAA+D;QAC/D,IAAI,MAAM,GAAG,aAAa,CAAC,CAAC,4BAA4B;QACxD,MAAM,kBAAkB,GAAG,eAAe,GAAG,MAAM,GAAG,CAAC,CAAC;QACxD,MAAM,aAAa,GAAG,WAAW,CAAC,CAAC,CAAC,YAAY,GAAG,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC;QACpE,IAAI,aAAa,GAAG,kBAAkB,EAAE,CAAC;YACxC,MAAM,gBAAgB,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,GAAG,CAAC,MAAM,GAAG,CAAC,EAAE,iBAAiB,GAAG,eAAe,CAAC,CAAC,CAAC;YAChG,MAAM,YAAY,GAAG,MAAM,GAAG,CAAC,GAAG,gBAAgB,CAAC;YACnD,IAAI,YAAY,GAAG,CAAC,EAAE,CAAC;gBACtB,MAAM,IAAI,QAAQ,YAAY,GAAG,CAAC;YACnC,CAAC;YACD,MAAM,MAAM,GAAG,aAAa,GAAG,kBAAkB,CAAC;YAClD,MAAM,IAAI,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;YAChC,eAAe,IAAI,MAAM,CAAC;YAC1B,WAAW,IAAI,MAAM,CAAC;YACtB,iBAAiB,GAAG,aAAa,CAAC;QACnC,CAAC;QAED,gFAAgF;QAChF,MAAM,QAAQ,GAAG,eAAe,CAAC,aAAa,CAAC,CAAC;QAChD,IAAI,QAAQ,GAAG,CAAC,EAAE,CAAC;YAClB,MAAM,IAAI,QAAQ,QAAQ,GAAG,CAAC,CAAC,YAAY;QAC5C,CAAC;aAAM,IAAI,QAAQ,GAAG,CAAC,EAAE,CAAC;YACzB,MAAM,IAAI,QAAQ,CAAC,QAAQ,GAAG,CAAC,CAAC,UAAU;QAC3C,CAAC;QAED,MAAM,IAAI,WAAW,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,mBAAmB;QAE1D,gFAAgF;QAChF,iFAAiF;QACjF,MAAM,SAAS,GAAG,IAAI,CAAC,GAAG,CAAC,WAAW,EAAE,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;QAC7D,KAAK,IAAI,CAAC,GAAG,YAAY,EAAE,CAAC,IAAI,SAAS,EAAE,CAAC,EAAE,EAAE,CAAC;YAChD,IAAI,CAAC,GAAG,YAAY;gBAAE,MAAM,IAAI,MAAM,CAAC;YACvC,MAAM,IAAI,SAAS,CAAC,CAAC,qBAAqB;YAC1C,MAAM,IAAI,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;YACzB,MAAM,OAAO,GAAG,WAAW,CAAC,IAAI,CAAC,CAAC;YAClC,IAAI,CAAC,OAAO,IAAI,YAAY,CAAC,IAAI,CAAC,GAAG,KAAK,EAAE,CAAC;gBAC5C,4CAA4C;gBAC5C,MAAM,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE,cAAc,CAAC,CAAC;gBAC7E,MAAM,SAAS,GAAG;oBACjB,YAAY,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE,EAAE;oBACtC,mBAAmB,KAAK,EAAE;oBAC1B,QAAQ,CAAC,mBAAmB,YAAY,CAAC,IAAI,CAAC,EAAE;oBAChD,EAAE;oBACF,4BAA4B;oBAC5B,GAAG,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,IAAI,GAAG,QAAQ,YAAY,CAAC,CAAC,CAAC,KAAK,CAAC,EAAE,CAAC;oBACnE,EAAE;iBACF,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;gBACb,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;gBAC9D,EAAE,CAAC,aAAa,CAAC,YAAY,EAAE,SAAS,CAAC,CAAC;gBAE1C,0CAA0C;gBAC1C,IAAI,CAAC,IAAI,EAAE,CAAC;gBAEZ,MAAM,QAAQ,GAAG;oBAChB,iBAAiB,CAAC,4BAA4B,YAAY,CAAC,IAAI,CAAC,MAAM,KAAK,IAAI;oBAC/E,EAAE;oBACF,4EAA4E;oBAC5E,wEAAwE;oBACxE,EAAE;oBACF,yBAAyB,YAAY,EAAE;iBACvC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;gBACb,MAAM,IAAI,KAAK,CAAC,QAAQ,CAAC,CAAC;YAC3B,CAAC;YACD,MAAM,IAAI,IAAI,CAAC;QAChB,CAAC;QAED,8CAA8C;QAC9C,IAAI,cAAc,GAAG,SAAS,CAAC;QAE/B,+DAA+D;QAC/D,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC;YACjD,2DAA2D;YAC3D,IAAI,SAAS,GAAG,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;gBACrC,MAAM,QAAQ,GAAG,QAAQ,CAAC,MAAM,GAAG,CAAC,GAAG,SAAS,CAAC;gBACjD,MAAM,IAAI,QAAQ,QAAQ,GAAG,CAAC;gBAC9B,cAAc,GAAG,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC;YACtC,CAAC;YACD,MAAM,UAAU,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,QAAQ,CAAC,MAAM,CAAC;YAC/D,KAAK,IAAI,CAAC,GAAG,QAAQ,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;gBAClE,MAAM,IAAI,aAAa,CAAC;YACzB,CAAC;YACD,yCAAyC;YACzC,MAAM,IAAI,QAAQ,UAAU,GAAG,CAAC;QACjC,CAAC;QAED,MAAM,IAAI,aAAa,CAAC,CAAC,0BAA0B;QAEnD,IAAI,OAAO,CAAC,GAAG,CAAC,YAAY,KAAK,GAAG,EAAE,CAAC;YACtC,MAAM,QAAQ,GAAG,UAAU,CAAC;YAC5B,EAAE,CAAC,SAAS,CAAC,QAAQ,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;YAC5C,MAAM,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,UAAU,IAAI,CAAC,GAAG,EAAE,IAAI,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC;YACzG,MAAM,SAAS,GAAG;gBACjB,iBAAiB,YAAY,EAAE;gBAC/B,gBAAgB,WAAW,EAAE;gBAC7B,cAAc,IAAI,CAAC,SAAS,EAAE;gBAC9B,WAAW,MAAM,EAAE;gBACnB,aAAa,QAAQ,EAAE;gBACvB,sBAAsB,iBAAiB,EAAE;gBACzC,cAAc,SAAS,EAAE;gBACzB,mBAAmB,cAAc,EAAE;gBACnC,cAAc,IAAI,CAAC,SAAS,CAAC,SAAS,CAAC,EAAE;gBACzC,oBAAoB,QAAQ,CAAC,MAAM,EAAE;gBACrC,yBAAyB,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE;gBACpD,EAAE;gBACF,kBAAkB;gBAClB,IAAI,CAAC,SAAS,CAAC,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC;gBACjC,EAAE;gBACF,uBAAuB;gBACvB,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,aAAa,EAAE,IAAI,EAAE,CAAC,CAAC;gBAC3C,EAAE;gBACF,gBAAgB;gBAChB,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC;aACtB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YACb,EAAE,CAAC,aAAa,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC;QACxC,CAAC;QAED,8BAA8B;QAC9B,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;QAE5B,wCAAwC;QACxC,6DAA6D;QAC7D,0EAA0E;QAC1E,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;QAClD,IAAI,CAAC,iBAAiB,GAAG,cAAc,CAAC;QACxC,0EAA0E;QAC1E,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,gBAAgB,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;QACzE,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,gBAAgB,GAAG,MAAM,CAAC,CAAC;QAEvE,mCAAmC;QACnC,IAAI,CAAC,sBAAsB,CAAC,SAAS,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC;QAExD,IAAI,CAAC,aAAa,GAAG,QAAQ,CAAC;QAC9B,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;QAC3B,IAAI,CAAC,cAAc,GAAG,MAAM,CAAC;IAAA,CAC7B;IAED;;;;OAIG;IACK,sBAAsB,CAAC,SAA8C,EAAE,UAAkB,EAAQ;QACxG,IAAI,CAAC,SAAS,IAAI,UAAU,IAAI,CAAC,EAAE,CAAC;YACnC,IAAI,CAAC,QAAQ,CAAC,UAAU,EAAE,CAAC;YAC3B,OAAO;QACR,CAAC;QAED,uCAAuC;QACvC,MAAM,SAAS,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC,GAAG,EAAE,UAAU,GAAG,CAAC,CAAC,CAAC,CAAC;QACvE,MAAM,SAAS,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,SAAS,CAAC,GAAG,CAAC,CAAC;QAE7C,8CAA8C;QAC9C,MAAM,QAAQ,GAAG,SAAS,GAAG,IAAI,CAAC,iBAAiB,CAAC;QACpD,IAAI,MAAM,GAAG,EAAE,CAAC;QAChB,IAAI,QAAQ,GAAG,CAAC,EAAE,CAAC;YAClB,MAAM,IAAI,QAAQ,QAAQ,GAAG,CAAC,CAAC,YAAY;QAC5C,CAAC;aAAM,IAAI,QAAQ,GAAG,CAAC,EAAE,CAAC;YACzB,MAAM,IAAI,QAAQ,CAAC,QAAQ,GAAG,CAAC,CAAC,UAAU;QAC3C,CAAC;QACD,sCAAsC;QACtC,MAAM,IAAI,QAAQ,SAAS,GAAG,CAAC,GAAG,CAAC;QAEnC,IAAI,MAAM,EAAE,CAAC;YACZ,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;QAC7B,CAAC;QAED,IAAI,CAAC,iBAAiB,GAAG,SAAS,CAAC;QACnC,IAAI,IAAI,CAAC,kBAAkB,EAAE,CAAC;YAC7B,IAAI,CAAC,QAAQ,CAAC,UAAU,EAAE,CAAC;QAC5B,CAAC;aAAM,CAAC;YACP,IAAI,CAAC,QAAQ,CAAC,UAAU,EAAE,CAAC;QAC5B,CAAC;IAAA,CACD;CACD","sourcesContent":["/**\n * Minimal TUI implementation with differential rendering\n */\n\nimport * as fs from \"node:fs\";\nimport * as os from \"node:os\";\nimport * as path from \"node:path\";\nimport { isKeyRelease, matchesKey } from \"./keys.js\";\nimport type { Terminal } from \"./terminal.js\";\nimport { getCapabilities, isImageLine, setCellDimensions } from \"./terminal-image.js\";\nimport { extractSegments, sliceByColumn, sliceWithWidth, visibleWidth } from \"./utils.js\";\n\n/**\n * Component interface - all components must implement this\n */\nexport interface Component {\n\t/**\n\t * Render the component to lines for the given viewport width\n\t * @param width - Current viewport width\n\t * @returns Array of strings, each representing a line\n\t */\n\trender(width: number): string[];\n\n\t/**\n\t * Optional handler for keyboard input when component has focus\n\t */\n\thandleInput?(data: string): void;\n\n\t/**\n\t * If true, component receives key release events (Kitty protocol).\n\t * Default is false - release events are filtered out.\n\t */\n\twantsKeyRelease?: boolean;\n\n\t/**\n\t * Invalidate any cached rendering state.\n\t * Called when theme changes or when component needs to re-render from scratch.\n\t */\n\tinvalidate(): void;\n}\n\ntype InputListenerResult = { consume?: boolean; data?: string } | undefined;\ntype InputListener = (data: string) => InputListenerResult;\n\n/**\n * Interface for components that can receive focus and display a hardware cursor.\n * When focused, the component should emit CURSOR_MARKER at the cursor position\n * in its render output. TUI will find this marker and position the hardware\n * cursor there for proper IME candidate window positioning.\n */\nexport interface Focusable {\n\t/** Set by TUI when focus changes. Component should emit CURSOR_MARKER when true. */\n\tfocused: boolean;\n}\n\n/** Type guard to check if a component implements Focusable */\nexport function isFocusable(component: Component | null): component is Component & Focusable {\n\treturn component !== null && \"focused\" in component;\n}\n\n/**\n * Cursor position marker - APC (Application Program Command) sequence.\n * This is a zero-width escape sequence that terminals ignore.\n * Components emit this at the cursor position when focused.\n * TUI finds and strips this marker, then positions the hardware cursor there.\n */\nexport const CURSOR_MARKER = \"\\x1b_pi:c\\x07\";\n\nexport { visibleWidth };\n\n/**\n * Anchor position for overlays\n */\nexport type OverlayAnchor =\n\t| \"center\"\n\t| \"top-left\"\n\t| \"top-right\"\n\t| \"bottom-left\"\n\t| \"bottom-right\"\n\t| \"top-center\"\n\t| \"bottom-center\"\n\t| \"left-center\"\n\t| \"right-center\";\n\n/**\n * Margin configuration for overlays\n */\nexport interface OverlayMargin {\n\ttop?: number;\n\tright?: number;\n\tbottom?: number;\n\tleft?: number;\n}\n\n/** Value that can be absolute (number) or percentage (string like \"50%\") */\nexport type SizeValue = number | `${number}%`;\n\n/** Parse a SizeValue into absolute value given a reference size */\nfunction parseSizeValue(value: SizeValue | undefined, referenceSize: number): number | undefined {\n\tif (value === undefined) return undefined;\n\tif (typeof value === \"number\") return value;\n\t// Parse percentage string like \"50%\"\n\tconst match = value.match(/^(\\d+(?:\\.\\d+)?)%$/);\n\tif (match) {\n\t\treturn Math.floor((referenceSize * parseFloat(match[1])) / 100);\n\t}\n\treturn undefined;\n}\n\n/**\n * Options for overlay positioning and sizing.\n * Values can be absolute numbers or percentage strings (e.g., \"50%\").\n */\nexport interface OverlayOptions {\n\t// === Sizing ===\n\t/** Width in columns, or percentage of terminal width (e.g., \"50%\") */\n\twidth?: SizeValue;\n\t/** Minimum width in columns */\n\tminWidth?: number;\n\t/** Maximum height in rows, or percentage of terminal height (e.g., \"50%\") */\n\tmaxHeight?: SizeValue;\n\n\t// === Positioning - anchor-based ===\n\t/** Anchor point for positioning (default: 'center') */\n\tanchor?: OverlayAnchor;\n\t/** Horizontal offset from anchor position (positive = right) */\n\toffsetX?: number;\n\t/** Vertical offset from anchor position (positive = down) */\n\toffsetY?: number;\n\n\t// === Positioning - percentage or absolute ===\n\t/** Row position: absolute number, or percentage (e.g., \"25%\" = 25% from top) */\n\trow?: SizeValue;\n\t/** Column position: absolute number, or percentage (e.g., \"50%\" = centered horizontally) */\n\tcol?: SizeValue;\n\n\t// === Margin from terminal edges ===\n\t/** Margin from terminal edges. Number applies to all sides. */\n\tmargin?: OverlayMargin | number;\n\n\t// === Visibility ===\n\t/**\n\t * Control overlay visibility based on terminal dimensions.\n\t * If provided, overlay is only rendered when this returns true.\n\t * Called each render cycle with current terminal dimensions.\n\t */\n\tvisible?: (termWidth: number, termHeight: number) => boolean;\n\t/** If true, don't capture keyboard focus when shown */\n\tnonCapturing?: boolean;\n}\n\n/**\n * Handle returned by showOverlay for controlling the overlay\n */\nexport interface OverlayHandle {\n\t/** Permanently remove the overlay (cannot be shown again) */\n\thide(): void;\n\t/** Temporarily hide or show the overlay */\n\tsetHidden(hidden: boolean): void;\n\t/** Check if overlay is temporarily hidden */\n\tisHidden(): boolean;\n\t/** Focus this overlay and bring it to the visual front */\n\tfocus(): void;\n\t/** Release focus to the previous target */\n\tunfocus(): void;\n\t/** Check if this overlay currently has focus */\n\tisFocused(): boolean;\n}\n\n/**\n * Container - a component that contains other components\n */\nexport class Container implements Component {\n\tchildren: Component[] = [];\n\n\taddChild(component: Component): void {\n\t\tthis.children.push(component);\n\t}\n\n\tremoveChild(component: Component): void {\n\t\tconst index = this.children.indexOf(component);\n\t\tif (index !== -1) {\n\t\t\tthis.children.splice(index, 1);\n\t\t}\n\t}\n\n\tclear(): void {\n\t\tthis.children = [];\n\t}\n\n\tinvalidate(): void {\n\t\tfor (const child of this.children) {\n\t\t\tchild.invalidate?.();\n\t\t}\n\t}\n\n\trender(width: number): string[] {\n\t\tconst lines: string[] = [];\n\t\tfor (const child of this.children) {\n\t\t\tlines.push(...child.render(width));\n\t\t}\n\t\treturn lines;\n\t}\n}\n\n/**\n * TUI - Main class for managing terminal UI with differential rendering\n */\nexport class TUI extends Container {\n\tpublic terminal: Terminal;\n\tprivate previousLines: string[] = [];\n\tprivate previousWidth = 0;\n\tprivate previousHeight = 0;\n\tprivate focusedComponent: Component | null = null;\n\tprivate inputListeners = new Set<InputListener>();\n\n\t/** Global callback for debug key (Shift+Ctrl+D). Called before input is forwarded to focused component. */\n\tpublic onDebug?: () => void;\n\tprivate renderRequested = false;\n\tprivate cursorRow = 0; // Logical cursor row (end of rendered content)\n\tprivate hardwareCursorRow = 0; // Actual terminal cursor row (may differ due to IME positioning)\n\tprivate inputBuffer = \"\"; // Buffer for parsing terminal responses\n\tprivate cellSizeQueryPending = false;\n\tprivate showHardwareCursor = process.env.PI_HARDWARE_CURSOR === \"1\";\n\tprivate clearOnShrink = process.env.PI_CLEAR_ON_SHRINK === \"1\"; // Clear empty rows when content shrinks (default: off)\n\tprivate maxLinesRendered = 0; // Track terminal's working area (max lines ever rendered)\n\tprivate previousViewportTop = 0; // Track previous viewport top for resize-aware cursor moves\n\tprivate fullRedrawCount = 0;\n\tprivate stopped = false;\n\n\t// Overlay stack for modal components rendered on top of base content\n\tprivate focusOrderCounter = 0;\n\tprivate overlayStack: {\n\t\tcomponent: Component;\n\t\toptions?: OverlayOptions;\n\t\tpreFocus: Component | null;\n\t\thidden: boolean;\n\t\tfocusOrder: number;\n\t}[] = [];\n\n\tconstructor(terminal: Terminal, showHardwareCursor?: boolean) {\n\t\tsuper();\n\t\tthis.terminal = terminal;\n\t\tif (showHardwareCursor !== undefined) {\n\t\t\tthis.showHardwareCursor = showHardwareCursor;\n\t\t}\n\t}\n\n\tget fullRedraws(): number {\n\t\treturn this.fullRedrawCount;\n\t}\n\n\tgetShowHardwareCursor(): boolean {\n\t\treturn this.showHardwareCursor;\n\t}\n\n\tsetShowHardwareCursor(enabled: boolean): void {\n\t\tif (this.showHardwareCursor === enabled) return;\n\t\tthis.showHardwareCursor = enabled;\n\t\tif (!enabled) {\n\t\t\tthis.terminal.hideCursor();\n\t\t}\n\t\tthis.requestRender();\n\t}\n\n\tgetClearOnShrink(): boolean {\n\t\treturn this.clearOnShrink;\n\t}\n\n\t/**\n\t * Set whether to trigger full re-render when content shrinks.\n\t * When true (default), empty rows are cleared when content shrinks.\n\t * When false, empty rows remain (reduces redraws on slower terminals).\n\t */\n\tsetClearOnShrink(enabled: boolean): void {\n\t\tthis.clearOnShrink = enabled;\n\t}\n\n\tsetFocus(component: Component | null): void {\n\t\t// Clear focused flag on old component\n\t\tif (isFocusable(this.focusedComponent)) {\n\t\t\tthis.focusedComponent.focused = false;\n\t\t}\n\n\t\tthis.focusedComponent = component;\n\n\t\t// Set focused flag on new component\n\t\tif (isFocusable(component)) {\n\t\t\tcomponent.focused = true;\n\t\t}\n\t}\n\n\t/**\n\t * Show an overlay component with configurable positioning and sizing.\n\t * Returns a handle to control the overlay's visibility.\n\t */\n\tshowOverlay(component: Component, options?: OverlayOptions): OverlayHandle {\n\t\tconst entry = {\n\t\t\tcomponent,\n\t\t\toptions,\n\t\t\tpreFocus: this.focusedComponent,\n\t\t\thidden: false,\n\t\t\tfocusOrder: ++this.focusOrderCounter,\n\t\t};\n\t\tthis.overlayStack.push(entry);\n\t\t// Only focus if overlay is actually visible\n\t\tif (!options?.nonCapturing && this.isOverlayVisible(entry)) {\n\t\t\tthis.setFocus(component);\n\t\t}\n\t\tthis.terminal.hideCursor();\n\t\tthis.requestRender();\n\n\t\t// Return handle for controlling this overlay\n\t\treturn {\n\t\t\thide: () => {\n\t\t\t\tconst index = this.overlayStack.indexOf(entry);\n\t\t\t\tif (index !== -1) {\n\t\t\t\t\tthis.overlayStack.splice(index, 1);\n\t\t\t\t\t// Restore focus if this overlay had focus\n\t\t\t\t\tif (this.focusedComponent === component) {\n\t\t\t\t\t\tconst topVisible = this.getTopmostVisibleOverlay();\n\t\t\t\t\t\tthis.setFocus(topVisible?.component ?? entry.preFocus);\n\t\t\t\t\t}\n\t\t\t\t\tif (this.overlayStack.length === 0) this.terminal.hideCursor();\n\t\t\t\t\tthis.requestRender();\n\t\t\t\t}\n\t\t\t},\n\t\t\tsetHidden: (hidden: boolean) => {\n\t\t\t\tif (entry.hidden === hidden) return;\n\t\t\t\tentry.hidden = hidden;\n\t\t\t\t// Update focus when hiding/showing\n\t\t\t\tif (hidden) {\n\t\t\t\t\t// If this overlay had focus, move focus to next visible or preFocus\n\t\t\t\t\tif (this.focusedComponent === component) {\n\t\t\t\t\t\tconst topVisible = this.getTopmostVisibleOverlay();\n\t\t\t\t\t\tthis.setFocus(topVisible?.component ?? entry.preFocus);\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t// Restore focus to this overlay when showing (if it's actually visible)\n\t\t\t\t\tif (!options?.nonCapturing && this.isOverlayVisible(entry)) {\n\t\t\t\t\t\tentry.focusOrder = ++this.focusOrderCounter;\n\t\t\t\t\t\tthis.setFocus(component);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tthis.requestRender();\n\t\t\t},\n\t\t\tisHidden: () => entry.hidden,\n\t\t\tfocus: () => {\n\t\t\t\tif (!this.overlayStack.includes(entry) || !this.isOverlayVisible(entry)) return;\n\t\t\t\tif (this.focusedComponent !== component) {\n\t\t\t\t\tthis.setFocus(component);\n\t\t\t\t}\n\t\t\t\tentry.focusOrder = ++this.focusOrderCounter;\n\t\t\t\tthis.requestRender();\n\t\t\t},\n\t\t\tunfocus: () => {\n\t\t\t\tif (this.focusedComponent !== component) return;\n\t\t\t\tconst topVisible = this.getTopmostVisibleOverlay();\n\t\t\t\tthis.setFocus(topVisible && topVisible !== entry ? topVisible.component : entry.preFocus);\n\t\t\t\tthis.requestRender();\n\t\t\t},\n\t\t\tisFocused: () => this.focusedComponent === component,\n\t\t};\n\t}\n\n\t/** Hide the topmost overlay and restore previous focus. */\n\thideOverlay(): void {\n\t\tconst overlay = this.overlayStack.pop();\n\t\tif (!overlay) return;\n\t\tif (this.focusedComponent === overlay.component) {\n\t\t\t// Find topmost visible overlay, or fall back to preFocus\n\t\t\tconst topVisible = this.getTopmostVisibleOverlay();\n\t\t\tthis.setFocus(topVisible?.component ?? overlay.preFocus);\n\t\t}\n\t\tif (this.overlayStack.length === 0) this.terminal.hideCursor();\n\t\tthis.requestRender();\n\t}\n\n\t/** Check if there are any visible overlays */\n\thasOverlay(): boolean {\n\t\treturn this.overlayStack.some((o) => this.isOverlayVisible(o));\n\t}\n\n\t/** Check if an overlay entry is currently visible */\n\tprivate isOverlayVisible(entry: (typeof this.overlayStack)[number]): boolean {\n\t\tif (entry.hidden) return false;\n\t\tif (entry.options?.visible) {\n\t\t\treturn entry.options.visible(this.terminal.columns, this.terminal.rows);\n\t\t}\n\t\treturn true;\n\t}\n\n\t/** Find the topmost visible capturing overlay, if any */\n\tprivate getTopmostVisibleOverlay(): (typeof this.overlayStack)[number] | undefined {\n\t\tfor (let i = this.overlayStack.length - 1; i >= 0; i--) {\n\t\t\tif (this.overlayStack[i].options?.nonCapturing) continue;\n\t\t\tif (this.isOverlayVisible(this.overlayStack[i])) {\n\t\t\t\treturn this.overlayStack[i];\n\t\t\t}\n\t\t}\n\t\treturn undefined;\n\t}\n\n\toverride invalidate(): void {\n\t\tsuper.invalidate();\n\t\tfor (const overlay of this.overlayStack) overlay.component.invalidate?.();\n\t}\n\n\tstart(): void {\n\t\tthis.stopped = false;\n\t\tthis.terminal.start(\n\t\t\t(data) => this.handleInput(data),\n\t\t\t() => this.requestRender(),\n\t\t);\n\t\tthis.terminal.hideCursor();\n\t\tthis.queryCellSize();\n\t\tthis.requestRender();\n\t}\n\n\taddInputListener(listener: InputListener): () => void {\n\t\tthis.inputListeners.add(listener);\n\t\treturn () => {\n\t\t\tthis.inputListeners.delete(listener);\n\t\t};\n\t}\n\n\tremoveInputListener(listener: InputListener): void {\n\t\tthis.inputListeners.delete(listener);\n\t}\n\n\tprivate queryCellSize(): void {\n\t\t// Only query if terminal supports images (cell size is only used for image rendering)\n\t\tif (!getCapabilities().images) {\n\t\t\treturn;\n\t\t}\n\t\t// Query terminal for cell size in pixels: CSI 16 t\n\t\t// Response format: CSI 6 ; height ; width t\n\t\tthis.cellSizeQueryPending = true;\n\t\tthis.terminal.write(\"\\x1b[16t\");\n\t}\n\n\tstop(): void {\n\t\tthis.stopped = true;\n\t\t// Move cursor to the end of the content to prevent overwriting/artifacts on exit\n\t\tif (this.previousLines.length > 0) {\n\t\t\tconst targetRow = this.previousLines.length; // Line after the last content\n\t\t\tconst lineDiff = targetRow - this.hardwareCursorRow;\n\t\t\tif (lineDiff > 0) {\n\t\t\t\tthis.terminal.write(`\\x1b[${lineDiff}B`);\n\t\t\t} else if (lineDiff < 0) {\n\t\t\t\tthis.terminal.write(`\\x1b[${-lineDiff}A`);\n\t\t\t}\n\t\t\tthis.terminal.write(\"\\r\\n\");\n\t\t}\n\n\t\tthis.terminal.showCursor();\n\t\tthis.terminal.stop();\n\t}\n\n\trequestRender(force = false): void {\n\t\tif (force) {\n\t\t\tthis.previousLines = [];\n\t\t\tthis.previousWidth = -1; // -1 triggers widthChanged, forcing a full clear\n\t\t\tthis.previousHeight = -1; // -1 triggers heightChanged, forcing a full clear\n\t\t\tthis.cursorRow = 0;\n\t\t\tthis.hardwareCursorRow = 0;\n\t\t\tthis.maxLinesRendered = 0;\n\t\t\tthis.previousViewportTop = 0;\n\t\t}\n\t\tif (this.renderRequested) return;\n\t\tthis.renderRequested = true;\n\t\tprocess.nextTick(() => {\n\t\t\tthis.renderRequested = false;\n\t\t\tthis.doRender();\n\t\t});\n\t}\n\n\tprivate handleInput(data: string): void {\n\t\tif (this.inputListeners.size > 0) {\n\t\t\tlet current = data;\n\t\t\tfor (const listener of this.inputListeners) {\n\t\t\t\tconst result = listener(current);\n\t\t\t\tif (result?.consume) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tif (result?.data !== undefined) {\n\t\t\t\t\tcurrent = result.data;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (current.length === 0) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tdata = current;\n\t\t}\n\n\t\t// If we're waiting for cell size response, buffer input and parse\n\t\tif (this.cellSizeQueryPending) {\n\t\t\tthis.inputBuffer += data;\n\t\t\tconst filtered = this.parseCellSizeResponse();\n\t\t\tif (filtered.length === 0) return;\n\t\t\tdata = filtered;\n\t\t}\n\n\t\t// Global debug key handler (Shift+Ctrl+D)\n\t\tif (matchesKey(data, \"shift+ctrl+d\") && this.onDebug) {\n\t\t\tthis.onDebug();\n\t\t\treturn;\n\t\t}\n\n\t\t// If focused component is an overlay, verify it's still visible\n\t\t// (visibility can change due to terminal resize or visible() callback)\n\t\tconst focusedOverlay = this.overlayStack.find((o) => o.component === this.focusedComponent);\n\t\tif (focusedOverlay && !this.isOverlayVisible(focusedOverlay)) {\n\t\t\t// Focused overlay is no longer visible, redirect to topmost visible overlay\n\t\t\tconst topVisible = this.getTopmostVisibleOverlay();\n\t\t\tif (topVisible) {\n\t\t\t\tthis.setFocus(topVisible.component);\n\t\t\t} else {\n\t\t\t\t// No visible overlays, restore to preFocus\n\t\t\t\tthis.setFocus(focusedOverlay.preFocus);\n\t\t\t}\n\t\t}\n\n\t\t// Pass input to focused component (including Ctrl+C)\n\t\t// The focused component can decide how to handle Ctrl+C\n\t\tif (this.focusedComponent?.handleInput) {\n\t\t\t// Filter out key release events unless component opts in\n\t\t\tif (isKeyRelease(data) && !this.focusedComponent.wantsKeyRelease) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tthis.focusedComponent.handleInput(data);\n\t\t\tthis.requestRender();\n\t\t}\n\t}\n\n\tprivate parseCellSizeResponse(): string {\n\t\t// Response format: ESC [ 6 ; height ; width t\n\t\t// Match the response pattern\n\t\tconst responsePattern = /\\x1b\\[6;(\\d+);(\\d+)t/;\n\t\tconst match = this.inputBuffer.match(responsePattern);\n\n\t\tif (match) {\n\t\t\tconst heightPx = parseInt(match[1], 10);\n\t\t\tconst widthPx = parseInt(match[2], 10);\n\n\t\t\tif (heightPx > 0 && widthPx > 0) {\n\t\t\t\tsetCellDimensions({ widthPx, heightPx });\n\t\t\t\t// Invalidate all components so images re-render with correct dimensions\n\t\t\t\tthis.invalidate();\n\t\t\t\tthis.requestRender();\n\t\t\t}\n\n\t\t\t// Remove the response from buffer\n\t\t\tthis.inputBuffer = this.inputBuffer.replace(responsePattern, \"\");\n\t\t\tthis.cellSizeQueryPending = false;\n\t\t}\n\n\t\t// Check if we have a partial cell size response starting (wait for more data)\n\t\t// Patterns that could be incomplete cell size response: \\x1b, \\x1b[, \\x1b[6, \\x1b[6;...(no t yet)\n\t\tconst partialCellSizePattern = /\\x1b(\\[6?;?[\\d;]*)?$/;\n\t\tif (partialCellSizePattern.test(this.inputBuffer)) {\n\t\t\t// Check if it's actually a complete different escape sequence (ends with a letter)\n\t\t\t// Cell size response ends with 't', Kitty keyboard ends with 'u', arrows end with A-D, etc.\n\t\t\tconst lastChar = this.inputBuffer[this.inputBuffer.length - 1];\n\t\t\tif (!/[a-zA-Z~]/.test(lastChar)) {\n\t\t\t\t// Doesn't end with a terminator, might be incomplete - wait for more\n\t\t\t\treturn \"\";\n\t\t\t}\n\t\t}\n\n\t\t// No cell size response found, return buffered data as user input\n\t\tconst result = this.inputBuffer;\n\t\tthis.inputBuffer = \"\";\n\t\tthis.cellSizeQueryPending = false; // Give up waiting\n\t\treturn result;\n\t}\n\n\t/**\n\t * Resolve overlay layout from options.\n\t * Returns { width, row, col, maxHeight } for rendering.\n\t */\n\tprivate resolveOverlayLayout(\n\t\toptions: OverlayOptions | undefined,\n\t\toverlayHeight: number,\n\t\ttermWidth: number,\n\t\ttermHeight: number,\n\t): { width: number; row: number; col: number; maxHeight: number | undefined } {\n\t\tconst opt = options ?? {};\n\n\t\t// Parse margin (clamp to non-negative)\n\t\tconst margin =\n\t\t\ttypeof opt.margin === \"number\"\n\t\t\t\t? { top: opt.margin, right: opt.margin, bottom: opt.margin, left: opt.margin }\n\t\t\t\t: (opt.margin ?? {});\n\t\tconst marginTop = Math.max(0, margin.top ?? 0);\n\t\tconst marginRight = Math.max(0, margin.right ?? 0);\n\t\tconst marginBottom = Math.max(0, margin.bottom ?? 0);\n\t\tconst marginLeft = Math.max(0, margin.left ?? 0);\n\n\t\t// Available space after margins\n\t\tconst availWidth = Math.max(1, termWidth - marginLeft - marginRight);\n\t\tconst availHeight = Math.max(1, termHeight - marginTop - marginBottom);\n\n\t\t// === Resolve width ===\n\t\tlet width = parseSizeValue(opt.width, termWidth) ?? Math.min(80, availWidth);\n\t\t// Apply minWidth\n\t\tif (opt.minWidth !== undefined) {\n\t\t\twidth = Math.max(width, opt.minWidth);\n\t\t}\n\t\t// Clamp to available space\n\t\twidth = Math.max(1, Math.min(width, availWidth));\n\n\t\t// === Resolve maxHeight ===\n\t\tlet maxHeight = parseSizeValue(opt.maxHeight, termHeight);\n\t\t// Clamp to available space\n\t\tif (maxHeight !== undefined) {\n\t\t\tmaxHeight = Math.max(1, Math.min(maxHeight, availHeight));\n\t\t}\n\n\t\t// Effective overlay height (may be clamped by maxHeight)\n\t\tconst effectiveHeight = maxHeight !== undefined ? Math.min(overlayHeight, maxHeight) : overlayHeight;\n\n\t\t// === Resolve position ===\n\t\tlet row: number;\n\t\tlet col: number;\n\n\t\tif (opt.row !== undefined) {\n\t\t\tif (typeof opt.row === \"string\") {\n\t\t\t\t// Percentage: 0% = top, 100% = bottom (overlay stays within bounds)\n\t\t\t\tconst match = opt.row.match(/^(\\d+(?:\\.\\d+)?)%$/);\n\t\t\t\tif (match) {\n\t\t\t\t\tconst maxRow = Math.max(0, availHeight - effectiveHeight);\n\t\t\t\t\tconst percent = parseFloat(match[1]) / 100;\n\t\t\t\t\trow = marginTop + Math.floor(maxRow * percent);\n\t\t\t\t} else {\n\t\t\t\t\t// Invalid format, fall back to center\n\t\t\t\t\trow = this.resolveAnchorRow(\"center\", effectiveHeight, availHeight, marginTop);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// Absolute row position\n\t\t\t\trow = opt.row;\n\t\t\t}\n\t\t} else {\n\t\t\t// Anchor-based (default: center)\n\t\t\tconst anchor = opt.anchor ?? \"center\";\n\t\t\trow = this.resolveAnchorRow(anchor, effectiveHeight, availHeight, marginTop);\n\t\t}\n\n\t\tif (opt.col !== undefined) {\n\t\t\tif (typeof opt.col === \"string\") {\n\t\t\t\t// Percentage: 0% = left, 100% = right (overlay stays within bounds)\n\t\t\t\tconst match = opt.col.match(/^(\\d+(?:\\.\\d+)?)%$/);\n\t\t\t\tif (match) {\n\t\t\t\t\tconst maxCol = Math.max(0, availWidth - width);\n\t\t\t\t\tconst percent = parseFloat(match[1]) / 100;\n\t\t\t\t\tcol = marginLeft + Math.floor(maxCol * percent);\n\t\t\t\t} else {\n\t\t\t\t\t// Invalid format, fall back to center\n\t\t\t\t\tcol = this.resolveAnchorCol(\"center\", width, availWidth, marginLeft);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// Absolute column position\n\t\t\t\tcol = opt.col;\n\t\t\t}\n\t\t} else {\n\t\t\t// Anchor-based (default: center)\n\t\t\tconst anchor = opt.anchor ?? \"center\";\n\t\t\tcol = this.resolveAnchorCol(anchor, width, availWidth, marginLeft);\n\t\t}\n\n\t\t// Apply offsets\n\t\tif (opt.offsetY !== undefined) row += opt.offsetY;\n\t\tif (opt.offsetX !== undefined) col += opt.offsetX;\n\n\t\t// Clamp to terminal bounds (respecting margins)\n\t\trow = Math.max(marginTop, Math.min(row, termHeight - marginBottom - effectiveHeight));\n\t\tcol = Math.max(marginLeft, Math.min(col, termWidth - marginRight - width));\n\n\t\treturn { width, row, col, maxHeight };\n\t}\n\n\tprivate resolveAnchorRow(anchor: OverlayAnchor, height: number, availHeight: number, marginTop: number): number {\n\t\tswitch (anchor) {\n\t\t\tcase \"top-left\":\n\t\t\tcase \"top-center\":\n\t\t\tcase \"top-right\":\n\t\t\t\treturn marginTop;\n\t\t\tcase \"bottom-left\":\n\t\t\tcase \"bottom-center\":\n\t\t\tcase \"bottom-right\":\n\t\t\t\treturn marginTop + availHeight - height;\n\t\t\tcase \"left-center\":\n\t\t\tcase \"center\":\n\t\t\tcase \"right-center\":\n\t\t\t\treturn marginTop + Math.floor((availHeight - height) / 2);\n\t\t}\n\t}\n\n\tprivate resolveAnchorCol(anchor: OverlayAnchor, width: number, availWidth: number, marginLeft: number): number {\n\t\tswitch (anchor) {\n\t\t\tcase \"top-left\":\n\t\t\tcase \"left-center\":\n\t\t\tcase \"bottom-left\":\n\t\t\t\treturn marginLeft;\n\t\t\tcase \"top-right\":\n\t\t\tcase \"right-center\":\n\t\t\tcase \"bottom-right\":\n\t\t\t\treturn marginLeft + availWidth - width;\n\t\t\tcase \"top-center\":\n\t\t\tcase \"center\":\n\t\t\tcase \"bottom-center\":\n\t\t\t\treturn marginLeft + Math.floor((availWidth - width) / 2);\n\t\t}\n\t}\n\n\t/** Composite all overlays into content lines (sorted by focusOrder, higher = on top). */\n\tprivate compositeOverlays(lines: string[], termWidth: number, termHeight: number): string[] {\n\t\tif (this.overlayStack.length === 0) return lines;\n\t\tconst result = [...lines];\n\n\t\t// Pre-render all visible overlays and calculate positions\n\t\tconst rendered: { overlayLines: string[]; row: number; col: number; w: number }[] = [];\n\t\tlet minLinesNeeded = result.length;\n\n\t\tconst visibleEntries = this.overlayStack.filter((e) => this.isOverlayVisible(e));\n\t\tvisibleEntries.sort((a, b) => a.focusOrder - b.focusOrder);\n\t\tfor (const entry of visibleEntries) {\n\t\t\tconst { component, options } = entry;\n\n\t\t\t// Get layout with height=0 first to determine width and maxHeight\n\t\t\t// (width and maxHeight don't depend on overlay height)\n\t\t\tconst { width, maxHeight } = this.resolveOverlayLayout(options, 0, termWidth, termHeight);\n\n\t\t\t// Render component at calculated width\n\t\t\tlet overlayLines = component.render(width);\n\n\t\t\t// Apply maxHeight if specified\n\t\t\tif (maxHeight !== undefined && overlayLines.length > maxHeight) {\n\t\t\t\toverlayLines = overlayLines.slice(0, maxHeight);\n\t\t\t}\n\n\t\t\t// Get final row/col with actual overlay height\n\t\t\tconst { row, col } = this.resolveOverlayLayout(options, overlayLines.length, termWidth, termHeight);\n\n\t\t\trendered.push({ overlayLines, row, col, w: width });\n\t\t\tminLinesNeeded = Math.max(minLinesNeeded, row + overlayLines.length);\n\t\t}\n\n\t\t// Ensure result covers the terminal working area to keep overlay positioning stable across resizes.\n\t\t// maxLinesRendered can exceed current content length after a shrink; pad to keep viewportStart consistent.\n\t\tconst workingHeight = Math.max(this.maxLinesRendered, minLinesNeeded);\n\n\t\t// Extend result with empty lines if content is too short for overlay placement or working area\n\t\twhile (result.length < workingHeight) {\n\t\t\tresult.push(\"\");\n\t\t}\n\n\t\tconst viewportStart = Math.max(0, workingHeight - termHeight);\n\n\t\t// Composite each overlay\n\t\tfor (const { overlayLines, row, col, w } of rendered) {\n\t\t\tfor (let i = 0; i < overlayLines.length; i++) {\n\t\t\t\tconst idx = viewportStart + row + i;\n\t\t\t\tif (idx >= 0 && idx < result.length) {\n\t\t\t\t\t// Defensive: truncate overlay line to declared width before compositing\n\t\t\t\t\t// (components should already respect width, but this ensures it)\n\t\t\t\t\tconst truncatedOverlayLine =\n\t\t\t\t\t\tvisibleWidth(overlayLines[i]) > w ? sliceByColumn(overlayLines[i], 0, w, true) : overlayLines[i];\n\t\t\t\t\tresult[idx] = this.compositeLineAt(result[idx], truncatedOverlayLine, col, w, termWidth);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn result;\n\t}\n\n\tprivate static readonly SEGMENT_RESET = \"\\x1b[0m\\x1b]8;;\\x07\";\n\n\tprivate applyLineResets(lines: string[]): string[] {\n\t\tconst reset = TUI.SEGMENT_RESET;\n\t\tfor (let i = 0; i < lines.length; i++) {\n\t\t\tconst line = lines[i];\n\t\t\tif (!isImageLine(line)) {\n\t\t\t\tlines[i] = line + reset;\n\t\t\t}\n\t\t}\n\t\treturn lines;\n\t}\n\n\t/** Splice overlay content into a base line at a specific column. Single-pass optimized. */\n\tprivate compositeLineAt(\n\t\tbaseLine: string,\n\t\toverlayLine: string,\n\t\tstartCol: number,\n\t\toverlayWidth: number,\n\t\ttotalWidth: number,\n\t): string {\n\t\tif (isImageLine(baseLine)) return baseLine;\n\n\t\t// Single pass through baseLine extracts both before and after segments\n\t\tconst afterStart = startCol + overlayWidth;\n\t\tconst base = extractSegments(baseLine, startCol, afterStart, totalWidth - afterStart, true);\n\n\t\t// Extract overlay with width tracking (strict=true to exclude wide chars at boundary)\n\t\tconst overlay = sliceWithWidth(overlayLine, 0, overlayWidth, true);\n\n\t\t// Pad segments to target widths\n\t\tconst beforePad = Math.max(0, startCol - base.beforeWidth);\n\t\tconst overlayPad = Math.max(0, overlayWidth - overlay.width);\n\t\tconst actualBeforeWidth = Math.max(startCol, base.beforeWidth);\n\t\tconst actualOverlayWidth = Math.max(overlayWidth, overlay.width);\n\t\tconst afterTarget = Math.max(0, totalWidth - actualBeforeWidth - actualOverlayWidth);\n\t\tconst afterPad = Math.max(0, afterTarget - base.afterWidth);\n\n\t\t// Compose result\n\t\tconst r = TUI.SEGMENT_RESET;\n\t\tconst result =\n\t\t\tbase.before +\n\t\t\t\" \".repeat(beforePad) +\n\t\t\tr +\n\t\t\toverlay.text +\n\t\t\t\" \".repeat(overlayPad) +\n\t\t\tr +\n\t\t\tbase.after +\n\t\t\t\" \".repeat(afterPad);\n\n\t\t// CRITICAL: Always verify and truncate to terminal width.\n\t\t// This is the final safeguard against width overflow which would crash the TUI.\n\t\t// Width tracking can drift from actual visible width due to:\n\t\t// - Complex ANSI/OSC sequences (hyperlinks, colors)\n\t\t// - Wide characters at segment boundaries\n\t\t// - Edge cases in segment extraction\n\t\tconst resultWidth = visibleWidth(result);\n\t\tif (resultWidth <= totalWidth) {\n\t\t\treturn result;\n\t\t}\n\t\t// Truncate with strict=true to ensure we don't exceed totalWidth\n\t\treturn sliceByColumn(result, 0, totalWidth, true);\n\t}\n\n\t/**\n\t * Find and extract cursor position from rendered lines.\n\t * Searches for CURSOR_MARKER, calculates its position, and strips it from the output.\n\t * Only scans the bottom terminal height lines (visible viewport).\n\t * @param lines - Rendered lines to search\n\t * @param height - Terminal height (visible viewport size)\n\t * @returns Cursor position { row, col } or null if no marker found\n\t */\n\tprivate extractCursorPosition(lines: string[], height: number): { row: number; col: number } | null {\n\t\t// Only scan the bottom `height` lines (visible viewport)\n\t\tconst viewportTop = Math.max(0, lines.length - height);\n\t\tfor (let row = lines.length - 1; row >= viewportTop; row--) {\n\t\t\tconst line = lines[row];\n\t\t\tconst markerIndex = line.indexOf(CURSOR_MARKER);\n\t\t\tif (markerIndex !== -1) {\n\t\t\t\t// Calculate visual column (width of text before marker)\n\t\t\t\tconst beforeMarker = line.slice(0, markerIndex);\n\t\t\t\tconst col = visibleWidth(beforeMarker);\n\n\t\t\t\t// Strip marker from the line\n\t\t\t\tlines[row] = line.slice(0, markerIndex) + line.slice(markerIndex + CURSOR_MARKER.length);\n\n\t\t\t\treturn { row, col };\n\t\t\t}\n\t\t}\n\t\treturn null;\n\t}\n\n\tprivate doRender(): void {\n\t\tif (this.stopped) return;\n\t\tconst width = this.terminal.columns;\n\t\tconst height = this.terminal.rows;\n\t\tlet viewportTop = Math.max(0, this.maxLinesRendered - height);\n\t\tlet prevViewportTop = this.previousViewportTop;\n\t\tlet hardwareCursorRow = this.hardwareCursorRow;\n\t\tconst computeLineDiff = (targetRow: number): number => {\n\t\t\tconst currentScreenRow = hardwareCursorRow - prevViewportTop;\n\t\t\tconst targetScreenRow = targetRow - viewportTop;\n\t\t\treturn targetScreenRow - currentScreenRow;\n\t\t};\n\n\t\t// Render all components to get new lines\n\t\tlet newLines = this.render(width);\n\n\t\t// Composite overlays into the rendered lines (before differential compare)\n\t\tif (this.overlayStack.length > 0) {\n\t\t\tnewLines = this.compositeOverlays(newLines, width, height);\n\t\t}\n\n\t\t// Extract cursor position before applying line resets (marker must be found first)\n\t\tconst cursorPos = this.extractCursorPosition(newLines, height);\n\n\t\tnewLines = this.applyLineResets(newLines);\n\n\t\t// Width or height changed - need full re-render\n\t\tconst widthChanged = this.previousWidth !== 0 && this.previousWidth !== width;\n\t\tconst heightChanged = this.previousHeight !== 0 && this.previousHeight !== height;\n\n\t\t// Helper to clear scrollback and viewport and render all new lines\n\t\tconst fullRender = (clear: boolean): void => {\n\t\t\tthis.fullRedrawCount += 1;\n\t\t\tlet buffer = \"\\x1b[?2026h\"; // Begin synchronized output\n\t\t\tif (clear) buffer += \"\\x1b[2J\\x1b[H\\x1b[3J\"; // Clear screen, home, then clear scrollback\n\t\t\tfor (let i = 0; i < newLines.length; i++) {\n\t\t\t\tif (i > 0) buffer += \"\\r\\n\";\n\t\t\t\tbuffer += newLines[i];\n\t\t\t}\n\t\t\tbuffer += \"\\x1b[?2026l\"; // End synchronized output\n\t\t\tthis.terminal.write(buffer);\n\t\t\tthis.cursorRow = Math.max(0, newLines.length - 1);\n\t\t\tthis.hardwareCursorRow = this.cursorRow;\n\t\t\t// Reset max lines when clearing, otherwise track growth\n\t\t\tif (clear) {\n\t\t\t\tthis.maxLinesRendered = newLines.length;\n\t\t\t} else {\n\t\t\t\tthis.maxLinesRendered = Math.max(this.maxLinesRendered, newLines.length);\n\t\t\t}\n\t\t\tthis.previousViewportTop = Math.max(0, this.maxLinesRendered - height);\n\t\t\tthis.positionHardwareCursor(cursorPos, newLines.length);\n\t\t\tthis.previousLines = newLines;\n\t\t\tthis.previousWidth = width;\n\t\t\tthis.previousHeight = height;\n\t\t};\n\n\t\tconst debugRedraw = process.env.PI_DEBUG_REDRAW === \"1\";\n\t\tconst logRedraw = (reason: string): void => {\n\t\t\tif (!debugRedraw) return;\n\t\t\tconst logPath = path.join(os.homedir(), \".pi\", \"agent\", \"pi-debug.log\");\n\t\t\tconst msg = `[${new Date().toISOString()}] fullRender: ${reason} (prev=${this.previousLines.length}, new=${newLines.length}, height=${height})\\n`;\n\t\t\tfs.appendFileSync(logPath, msg);\n\t\t};\n\n\t\t// First render - just output everything without clearing (assumes clean screen)\n\t\tif (this.previousLines.length === 0 && !widthChanged && !heightChanged) {\n\t\t\tlogRedraw(\"first render\");\n\t\t\tfullRender(false);\n\t\t\treturn;\n\t\t}\n\n\t\t// Width or height changed - full re-render\n\t\tif (widthChanged || heightChanged) {\n\t\t\tlogRedraw(`terminal size changed (${this.previousWidth}x${this.previousHeight} -> ${width}x${height})`);\n\t\t\tfullRender(true);\n\t\t\treturn;\n\t\t}\n\n\t\t// Content shrunk below the working area and no overlays - re-render to clear empty rows\n\t\t// (overlays need the padding, so only do this when no overlays are active)\n\t\t// Configurable via setClearOnShrink() or PI_CLEAR_ON_SHRINK=0 env var\n\t\tif (this.clearOnShrink && newLines.length < this.maxLinesRendered && this.overlayStack.length === 0) {\n\t\t\tlogRedraw(`clearOnShrink (maxLinesRendered=${this.maxLinesRendered})`);\n\t\t\tfullRender(true);\n\t\t\treturn;\n\t\t}\n\n\t\t// Find first and last changed lines\n\t\tlet firstChanged = -1;\n\t\tlet lastChanged = -1;\n\t\tconst maxLines = Math.max(newLines.length, this.previousLines.length);\n\t\tfor (let i = 0; i < maxLines; i++) {\n\t\t\tconst oldLine = i < this.previousLines.length ? this.previousLines[i] : \"\";\n\t\t\tconst newLine = i < newLines.length ? newLines[i] : \"\";\n\n\t\t\tif (oldLine !== newLine) {\n\t\t\t\tif (firstChanged === -1) {\n\t\t\t\t\tfirstChanged = i;\n\t\t\t\t}\n\t\t\t\tlastChanged = i;\n\t\t\t}\n\t\t}\n\t\tconst appendedLines = newLines.length > this.previousLines.length;\n\t\tif (appendedLines) {\n\t\t\tif (firstChanged === -1) {\n\t\t\t\tfirstChanged = this.previousLines.length;\n\t\t\t}\n\t\t\tlastChanged = newLines.length - 1;\n\t\t}\n\t\tconst appendStart = appendedLines && firstChanged === this.previousLines.length && firstChanged > 0;\n\n\t\t// No changes - but still need to update hardware cursor position if it moved\n\t\tif (firstChanged === -1) {\n\t\t\tthis.positionHardwareCursor(cursorPos, newLines.length);\n\t\t\tthis.previousViewportTop = Math.max(0, this.maxLinesRendered - height);\n\t\t\tthis.previousHeight = height;\n\t\t\treturn;\n\t\t}\n\n\t\t// All changes are in deleted lines (nothing to render, just clear)\n\t\tif (firstChanged >= newLines.length) {\n\t\t\tif (this.previousLines.length > newLines.length) {\n\t\t\t\tlet buffer = \"\\x1b[?2026h\";\n\t\t\t\t// Move to end of new content (clamp to 0 for empty content)\n\t\t\t\tconst targetRow = Math.max(0, newLines.length - 1);\n\t\t\t\tconst lineDiff = computeLineDiff(targetRow);\n\t\t\t\tif (lineDiff > 0) buffer += `\\x1b[${lineDiff}B`;\n\t\t\t\telse if (lineDiff < 0) buffer += `\\x1b[${-lineDiff}A`;\n\t\t\t\tbuffer += \"\\r\";\n\t\t\t\t// Clear extra lines without scrolling\n\t\t\t\tconst extraLines = this.previousLines.length - newLines.length;\n\t\t\t\tif (extraLines > height) {\n\t\t\t\t\tlogRedraw(`extraLines > height (${extraLines} > ${height})`);\n\t\t\t\t\tfullRender(true);\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tif (extraLines > 0) {\n\t\t\t\t\tbuffer += \"\\x1b[1B\";\n\t\t\t\t}\n\t\t\t\tfor (let i = 0; i < extraLines; i++) {\n\t\t\t\t\tbuffer += \"\\r\\x1b[2K\";\n\t\t\t\t\tif (i < extraLines - 1) buffer += \"\\x1b[1B\";\n\t\t\t\t}\n\t\t\t\tif (extraLines > 0) {\n\t\t\t\t\tbuffer += `\\x1b[${extraLines}A`;\n\t\t\t\t}\n\t\t\t\tbuffer += \"\\x1b[?2026l\";\n\t\t\t\tthis.terminal.write(buffer);\n\t\t\t\tthis.cursorRow = targetRow;\n\t\t\t\tthis.hardwareCursorRow = targetRow;\n\t\t\t}\n\t\t\tthis.positionHardwareCursor(cursorPos, newLines.length);\n\t\t\tthis.previousLines = newLines;\n\t\t\tthis.previousWidth = width;\n\t\t\tthis.previousHeight = height;\n\t\t\tthis.previousViewportTop = Math.max(0, this.maxLinesRendered - height);\n\t\t\treturn;\n\t\t}\n\n\t\t// Check if firstChanged is above what was previously visible\n\t\t// Use previousLines.length (not maxLinesRendered) to avoid false positives after content shrinks\n\t\tconst previousContentViewportTop = Math.max(0, this.previousLines.length - height);\n\t\tif (firstChanged < previousContentViewportTop) {\n\t\t\t// First change is above previous viewport - need full re-render\n\t\t\tlogRedraw(`firstChanged < viewportTop (${firstChanged} < ${previousContentViewportTop})`);\n\t\t\tfullRender(true);\n\t\t\treturn;\n\t\t}\n\n\t\t// Render from first changed line to end\n\t\t// Build buffer with all updates wrapped in synchronized output\n\t\tlet buffer = \"\\x1b[?2026h\"; // Begin synchronized output\n\t\tconst prevViewportBottom = prevViewportTop + height - 1;\n\t\tconst moveTargetRow = appendStart ? firstChanged - 1 : firstChanged;\n\t\tif (moveTargetRow > prevViewportBottom) {\n\t\t\tconst currentScreenRow = Math.max(0, Math.min(height - 1, hardwareCursorRow - prevViewportTop));\n\t\t\tconst moveToBottom = height - 1 - currentScreenRow;\n\t\t\tif (moveToBottom > 0) {\n\t\t\t\tbuffer += `\\x1b[${moveToBottom}B`;\n\t\t\t}\n\t\t\tconst scroll = moveTargetRow - prevViewportBottom;\n\t\t\tbuffer += \"\\r\\n\".repeat(scroll);\n\t\t\tprevViewportTop += scroll;\n\t\t\tviewportTop += scroll;\n\t\t\thardwareCursorRow = moveTargetRow;\n\t\t}\n\n\t\t// Move cursor to first changed line (use hardwareCursorRow for actual position)\n\t\tconst lineDiff = computeLineDiff(moveTargetRow);\n\t\tif (lineDiff > 0) {\n\t\t\tbuffer += `\\x1b[${lineDiff}B`; // Move down\n\t\t} else if (lineDiff < 0) {\n\t\t\tbuffer += `\\x1b[${-lineDiff}A`; // Move up\n\t\t}\n\n\t\tbuffer += appendStart ? \"\\r\\n\" : \"\\r\"; // Move to column 0\n\n\t\t// Only render changed lines (firstChanged to lastChanged), not all lines to end\n\t\t// This reduces flicker when only a single line changes (e.g., spinner animation)\n\t\tconst renderEnd = Math.min(lastChanged, newLines.length - 1);\n\t\tfor (let i = firstChanged; i <= renderEnd; i++) {\n\t\t\tif (i > firstChanged) buffer += \"\\r\\n\";\n\t\t\tbuffer += \"\\x1b[2K\"; // Clear current line\n\t\t\tconst line = newLines[i];\n\t\t\tconst isImage = isImageLine(line);\n\t\t\tif (!isImage && visibleWidth(line) > width) {\n\t\t\t\t// Log all lines to crash file for debugging\n\t\t\t\tconst crashLogPath = path.join(os.homedir(), \".pi\", \"agent\", \"pi-crash.log\");\n\t\t\t\tconst crashData = [\n\t\t\t\t\t`Crash at ${new Date().toISOString()}`,\n\t\t\t\t\t`Terminal width: ${width}`,\n\t\t\t\t\t`Line ${i} visible width: ${visibleWidth(line)}`,\n\t\t\t\t\t\"\",\n\t\t\t\t\t\"=== All rendered lines ===\",\n\t\t\t\t\t...newLines.map((l, idx) => `[${idx}] (w=${visibleWidth(l)}) ${l}`),\n\t\t\t\t\t\"\",\n\t\t\t\t].join(\"\\n\");\n\t\t\t\tfs.mkdirSync(path.dirname(crashLogPath), { recursive: true });\n\t\t\t\tfs.writeFileSync(crashLogPath, crashData);\n\n\t\t\t\t// Clean up terminal state before throwing\n\t\t\t\tthis.stop();\n\n\t\t\t\tconst errorMsg = [\n\t\t\t\t\t`Rendered line ${i} exceeds terminal width (${visibleWidth(line)} > ${width}).`,\n\t\t\t\t\t\"\",\n\t\t\t\t\t\"This is likely caused by a custom TUI component not truncating its output.\",\n\t\t\t\t\t\"Use visibleWidth() to measure and truncateToWidth() to truncate lines.\",\n\t\t\t\t\t\"\",\n\t\t\t\t\t`Debug log written to: ${crashLogPath}`,\n\t\t\t\t].join(\"\\n\");\n\t\t\t\tthrow new Error(errorMsg);\n\t\t\t}\n\t\t\tbuffer += line;\n\t\t}\n\n\t\t// Track where cursor ended up after rendering\n\t\tlet finalCursorRow = renderEnd;\n\n\t\t// If we had more lines before, clear them and move cursor back\n\t\tif (this.previousLines.length > newLines.length) {\n\t\t\t// Move to end of new content first if we stopped before it\n\t\t\tif (renderEnd < newLines.length - 1) {\n\t\t\t\tconst moveDown = newLines.length - 1 - renderEnd;\n\t\t\t\tbuffer += `\\x1b[${moveDown}B`;\n\t\t\t\tfinalCursorRow = newLines.length - 1;\n\t\t\t}\n\t\t\tconst extraLines = this.previousLines.length - newLines.length;\n\t\t\tfor (let i = newLines.length; i < this.previousLines.length; i++) {\n\t\t\t\tbuffer += \"\\r\\n\\x1b[2K\";\n\t\t\t}\n\t\t\t// Move cursor back to end of new content\n\t\t\tbuffer += `\\x1b[${extraLines}A`;\n\t\t}\n\n\t\tbuffer += \"\\x1b[?2026l\"; // End synchronized output\n\n\t\tif (process.env.PI_TUI_DEBUG === \"1\") {\n\t\t\tconst debugDir = \"/tmp/tui\";\n\t\t\tfs.mkdirSync(debugDir, { recursive: true });\n\t\t\tconst debugPath = path.join(debugDir, `render-${Date.now()}-${Math.random().toString(36).slice(2)}.log`);\n\t\t\tconst debugData = [\n\t\t\t\t`firstChanged: ${firstChanged}`,\n\t\t\t\t`viewportTop: ${viewportTop}`,\n\t\t\t\t`cursorRow: ${this.cursorRow}`,\n\t\t\t\t`height: ${height}`,\n\t\t\t\t`lineDiff: ${lineDiff}`,\n\t\t\t\t`hardwareCursorRow: ${hardwareCursorRow}`,\n\t\t\t\t`renderEnd: ${renderEnd}`,\n\t\t\t\t`finalCursorRow: ${finalCursorRow}`,\n\t\t\t\t`cursorPos: ${JSON.stringify(cursorPos)}`,\n\t\t\t\t`newLines.length: ${newLines.length}`,\n\t\t\t\t`previousLines.length: ${this.previousLines.length}`,\n\t\t\t\t\"\",\n\t\t\t\t\"=== newLines ===\",\n\t\t\t\tJSON.stringify(newLines, null, 2),\n\t\t\t\t\"\",\n\t\t\t\t\"=== previousLines ===\",\n\t\t\t\tJSON.stringify(this.previousLines, null, 2),\n\t\t\t\t\"\",\n\t\t\t\t\"=== buffer ===\",\n\t\t\t\tJSON.stringify(buffer),\n\t\t\t].join(\"\\n\");\n\t\t\tfs.writeFileSync(debugPath, debugData);\n\t\t}\n\n\t\t// Write entire buffer at once\n\t\tthis.terminal.write(buffer);\n\n\t\t// Track cursor position for next render\n\t\t// cursorRow tracks end of content (for viewport calculation)\n\t\t// hardwareCursorRow tracks actual terminal cursor position (for movement)\n\t\tthis.cursorRow = Math.max(0, newLines.length - 1);\n\t\tthis.hardwareCursorRow = finalCursorRow;\n\t\t// Track terminal's working area (grows but doesn't shrink unless cleared)\n\t\tthis.maxLinesRendered = Math.max(this.maxLinesRendered, newLines.length);\n\t\tthis.previousViewportTop = Math.max(0, this.maxLinesRendered - height);\n\n\t\t// Position hardware cursor for IME\n\t\tthis.positionHardwareCursor(cursorPos, newLines.length);\n\n\t\tthis.previousLines = newLines;\n\t\tthis.previousWidth = width;\n\t\tthis.previousHeight = height;\n\t}\n\n\t/**\n\t * Position the hardware cursor for IME candidate window.\n\t * @param cursorPos The cursor position extracted from rendered output, or null\n\t * @param totalLines Total number of rendered lines\n\t */\n\tprivate positionHardwareCursor(cursorPos: { row: number; col: number } | null, totalLines: number): void {\n\t\tif (!cursorPos || totalLines <= 0) {\n\t\t\tthis.terminal.hideCursor();\n\t\t\treturn;\n\t\t}\n\n\t\t// Clamp cursor position to valid range\n\t\tconst targetRow = Math.max(0, Math.min(cursorPos.row, totalLines - 1));\n\t\tconst targetCol = Math.max(0, cursorPos.col);\n\n\t\t// Move cursor from current position to target\n\t\tconst rowDelta = targetRow - this.hardwareCursorRow;\n\t\tlet buffer = \"\";\n\t\tif (rowDelta > 0) {\n\t\t\tbuffer += `\\x1b[${rowDelta}B`; // Move down\n\t\t} else if (rowDelta < 0) {\n\t\t\tbuffer += `\\x1b[${-rowDelta}A`; // Move up\n\t\t}\n\t\t// Move to absolute column (1-indexed)\n\t\tbuffer += `\\x1b[${targetCol + 1}G`;\n\n\t\tif (buffer) {\n\t\t\tthis.terminal.write(buffer);\n\t\t}\n\n\t\tthis.hardwareCursorRow = targetRow;\n\t\tif (this.showHardwareCursor) {\n\t\t\tthis.terminal.showCursor();\n\t\t} else {\n\t\t\tthis.terminal.hideCursor();\n\t\t}\n\t}\n}\n"]}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * Generic undo stack with clone-on-push semantics.
3
+ *
4
+ * Stores deep clones of state snapshots. Popped snapshots are returned
5
+ * directly (no re-cloning) since they are already detached.
6
+ */
7
+ export declare class UndoStack<S> {
8
+ private stack;
9
+ /** Push a deep clone of the given state onto the stack. */
10
+ push(state: S): void;
11
+ /** Pop and return the most recent snapshot, or undefined if empty. */
12
+ pop(): S | undefined;
13
+ /** Remove all snapshots. */
14
+ clear(): void;
15
+ get length(): number;
16
+ }
17
+ //# sourceMappingURL=undo-stack.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"undo-stack.d.ts","sourceRoot":"","sources":["../src/undo-stack.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,qBAAa,SAAS,CAAC,CAAC;IACvB,OAAO,CAAC,KAAK,CAAW;IAExB,2DAA2D;IAC3D,IAAI,CAAC,KAAK,EAAE,CAAC,GAAG,IAAI,CAEnB;IAED,sEAAsE;IACtE,GAAG,IAAI,CAAC,GAAG,SAAS,CAEnB;IAED,4BAA4B;IAC5B,KAAK,IAAI,IAAI,CAEZ;IAED,IAAI,MAAM,IAAI,MAAM,CAEnB;CACD","sourcesContent":["/**\n * Generic undo stack with clone-on-push semantics.\n *\n * Stores deep clones of state snapshots. Popped snapshots are returned\n * directly (no re-cloning) since they are already detached.\n */\nexport class UndoStack<S> {\n\tprivate stack: S[] = [];\n\n\t/** Push a deep clone of the given state onto the stack. */\n\tpush(state: S): void {\n\t\tthis.stack.push(structuredClone(state));\n\t}\n\n\t/** Pop and return the most recent snapshot, or undefined if empty. */\n\tpop(): S | undefined {\n\t\treturn this.stack.pop();\n\t}\n\n\t/** Remove all snapshots. */\n\tclear(): void {\n\t\tthis.stack.length = 0;\n\t}\n\n\tget length(): number {\n\t\treturn this.stack.length;\n\t}\n}\n"]}
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Generic undo stack with clone-on-push semantics.
3
+ *
4
+ * Stores deep clones of state snapshots. Popped snapshots are returned
5
+ * directly (no re-cloning) since they are already detached.
6
+ */
7
+ export class UndoStack {
8
+ stack = [];
9
+ /** Push a deep clone of the given state onto the stack. */
10
+ push(state) {
11
+ this.stack.push(structuredClone(state));
12
+ }
13
+ /** Pop and return the most recent snapshot, or undefined if empty. */
14
+ pop() {
15
+ return this.stack.pop();
16
+ }
17
+ /** Remove all snapshots. */
18
+ clear() {
19
+ this.stack.length = 0;
20
+ }
21
+ get length() {
22
+ return this.stack.length;
23
+ }
24
+ }
25
+ //# sourceMappingURL=undo-stack.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"undo-stack.js","sourceRoot":"","sources":["../src/undo-stack.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,MAAM,OAAO,SAAS;IACb,KAAK,GAAQ,EAAE,CAAC;IAExB,2DAA2D;IAC3D,IAAI,CAAC,KAAQ,EAAQ;QACpB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,eAAe,CAAC,KAAK,CAAC,CAAC,CAAC;IAAA,CACxC;IAED,sEAAsE;IACtE,GAAG,GAAkB;QACpB,OAAO,IAAI,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC;IAAA,CACxB;IAED,4BAA4B;IAC5B,KAAK,GAAS;QACb,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;IAAA,CACtB;IAED,IAAI,MAAM,GAAW;QACpB,OAAO,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC;IAAA,CACzB;CACD","sourcesContent":["/**\n * Generic undo stack with clone-on-push semantics.\n *\n * Stores deep clones of state snapshots. Popped snapshots are returned\n * directly (no re-cloning) since they are already detached.\n */\nexport class UndoStack<S> {\n\tprivate stack: S[] = [];\n\n\t/** Push a deep clone of the given state onto the stack. */\n\tpush(state: S): void {\n\t\tthis.stack.push(structuredClone(state));\n\t}\n\n\t/** Pop and return the most recent snapshot, or undefined if empty. */\n\tpop(): S | undefined {\n\t\treturn this.stack.pop();\n\t}\n\n\t/** Remove all snapshots. */\n\tclear(): void {\n\t\tthis.stack.length = 0;\n\t}\n\n\tget length(): number {\n\t\treturn this.stack.length;\n\t}\n}\n"]}
@@ -0,0 +1,78 @@
1
+ /**
2
+ * Get the shared grapheme segmenter instance.
3
+ */
4
+ export declare function getSegmenter(): Intl.Segmenter;
5
+ /**
6
+ * Calculate the visible width of a string in terminal columns.
7
+ */
8
+ export declare function visibleWidth(str: string): number;
9
+ /**
10
+ * Extract ANSI escape sequences from a string at the given position.
11
+ */
12
+ export declare function extractAnsiCode(str: string, pos: number): {
13
+ code: string;
14
+ length: number;
15
+ } | null;
16
+ /**
17
+ * Wrap text with ANSI codes preserved.
18
+ *
19
+ * ONLY does word wrapping - NO padding, NO background colors.
20
+ * Returns lines where each line is <= width visible chars.
21
+ * Active ANSI codes are preserved across line breaks.
22
+ *
23
+ * @param text - Text to wrap (may contain ANSI codes and newlines)
24
+ * @param width - Maximum visible width per line
25
+ * @returns Array of wrapped lines (NOT padded to width)
26
+ */
27
+ export declare function wrapTextWithAnsi(text: string, width: number): string[];
28
+ /**
29
+ * Check if a character is whitespace.
30
+ */
31
+ export declare function isWhitespaceChar(char: string): boolean;
32
+ /**
33
+ * Check if a character is punctuation.
34
+ */
35
+ export declare function isPunctuationChar(char: string): boolean;
36
+ /**
37
+ * Apply background color to a line, padding to full width.
38
+ *
39
+ * @param line - Line of text (may contain ANSI codes)
40
+ * @param width - Total width to pad to
41
+ * @param bgFn - Background color function
42
+ * @returns Line with background applied and padded to width
43
+ */
44
+ export declare function applyBackgroundToLine(line: string, width: number, bgFn: (text: string) => string): string;
45
+ /**
46
+ * Truncate text to fit within a maximum visible width, adding ellipsis if needed.
47
+ * Optionally pad with spaces to reach exactly maxWidth.
48
+ * Properly handles ANSI escape codes (they don't count toward width).
49
+ *
50
+ * @param text - Text to truncate (may contain ANSI codes)
51
+ * @param maxWidth - Maximum visible width
52
+ * @param ellipsis - Ellipsis string to append when truncating (default: "...")
53
+ * @param pad - If true, pad result with spaces to exactly maxWidth (default: false)
54
+ * @returns Truncated text, optionally padded to exactly maxWidth
55
+ */
56
+ export declare function truncateToWidth(text: string, maxWidth: number, ellipsis?: string, pad?: boolean): string;
57
+ /**
58
+ * Extract a range of visible columns from a line. Handles ANSI codes and wide chars.
59
+ * @param strict - If true, exclude wide chars at boundary that would extend past the range
60
+ */
61
+ export declare function sliceByColumn(line: string, startCol: number, length: number, strict?: boolean): string;
62
+ /** Like sliceByColumn but also returns the actual visible width of the result. */
63
+ export declare function sliceWithWidth(line: string, startCol: number, length: number, strict?: boolean): {
64
+ text: string;
65
+ width: number;
66
+ };
67
+ /**
68
+ * Extract "before" and "after" segments from a line in a single pass.
69
+ * Used for overlay compositing where we need content before and after the overlay region.
70
+ * Preserves styling from before the overlay that should affect content after it.
71
+ */
72
+ export declare function extractSegments(line: string, beforeEnd: number, afterStart: number, afterLen: number, strictAfter?: boolean): {
73
+ before: string;
74
+ beforeWidth: number;
75
+ after: string;
76
+ afterWidth: number;
77
+ };
78
+ //# sourceMappingURL=utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"AAKA;;GAEG;AACH,wBAAgB,YAAY,IAAI,IAAI,CAAC,SAAS,CAE7C;AA0ED;;GAEG;AACH,wBAAgB,YAAY,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CA+DhD;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAA;CAAE,GAAG,IAAI,CAsCjG;AA+QD;;;;;;;;;;GAUG;AACH,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,EAAE,CAoBtE;AAmFD;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAEtD;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAEvD;AAuED;;;;;;;GAOG;AACH,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,MAAM,GAAG,MAAM,CASzG;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,eAAe,CAC9B,IAAI,EAAE,MAAM,EACZ,QAAQ,EAAE,MAAM,EAChB,QAAQ,GAAE,MAAc,EACxB,GAAG,GAAE,OAAe,GAClB,MAAM,CAuER;AAED;;;GAGG;AACH,wBAAgB,aAAa,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,UAAQ,GAAG,MAAM,CAEpG;AAED,kFAAkF;AAClF,wBAAgB,cAAc,CAC7B,IAAI,EAAE,MAAM,EACZ,QAAQ,EAAE,MAAM,EAChB,MAAM,EAAE,MAAM,EACd,MAAM,UAAQ,GACZ;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,CAwCjC;AAKD;;;;GAIG;AACH,wBAAgB,eAAe,CAC9B,IAAI,EAAE,MAAM,EACZ,SAAS,EAAE,MAAM,EACjB,UAAU,EAAE,MAAM,EAClB,QAAQ,EAAE,MAAM,EAChB,WAAW,UAAQ,GACjB;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,WAAW,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,UAAU,EAAE,MAAM,CAAA;CAAE,CAiE5E","sourcesContent":["import { eastAsianWidth } from \"get-east-asian-width\";\n\n// Grapheme segmenter (shared instance)\nconst segmenter = new Intl.Segmenter(undefined, { granularity: \"grapheme\" });\n\n/**\n * Get the shared grapheme segmenter instance.\n */\nexport function getSegmenter(): Intl.Segmenter {\n\treturn segmenter;\n}\n\n/**\n * Check if a grapheme cluster (after segmentation) could possibly be an RGI emoji.\n * This is a fast heuristic to avoid the expensive rgiEmojiRegex test.\n * The tested Unicode blocks are deliberately broad to account for future\n * Unicode additions.\n */\nfunction couldBeEmoji(segment: string): boolean {\n\tconst cp = segment.codePointAt(0)!;\n\treturn (\n\t\t(cp >= 0x1f000 && cp <= 0x1fbff) || // Emoji and Pictograph\n\t\t(cp >= 0x2300 && cp <= 0x23ff) || // Misc technical\n\t\t(cp >= 0x2600 && cp <= 0x27bf) || // Misc symbols, dingbats\n\t\t(cp >= 0x2b50 && cp <= 0x2b55) || // Specific stars/circles\n\t\tsegment.includes(\"\\uFE0F\") || // Contains VS16 (emoji presentation selector)\n\t\tsegment.length > 2 // Multi-codepoint sequences (ZWJ, skin tones, etc.)\n\t);\n}\n\n// Regexes for character classification (same as string-width library)\nconst zeroWidthRegex = /^(?:\\p{Default_Ignorable_Code_Point}|\\p{Control}|\\p{Mark}|\\p{Surrogate})+$/v;\nconst leadingNonPrintingRegex = /^[\\p{Default_Ignorable_Code_Point}\\p{Control}\\p{Format}\\p{Mark}\\p{Surrogate}]+/v;\nconst rgiEmojiRegex = /^\\p{RGI_Emoji}$/v;\n\n// Cache for non-ASCII strings\nconst WIDTH_CACHE_SIZE = 512;\nconst widthCache = new Map<string, number>();\n\n/**\n * Calculate the terminal width of a single grapheme cluster.\n * Based on code from the string-width library, but includes a possible-emoji\n * check to avoid running the RGI_Emoji regex unnecessarily.\n */\nfunction graphemeWidth(segment: string): number {\n\t// Zero-width clusters\n\tif (zeroWidthRegex.test(segment)) {\n\t\treturn 0;\n\t}\n\n\t// Emoji check with pre-filter\n\tif (couldBeEmoji(segment) && rgiEmojiRegex.test(segment)) {\n\t\treturn 2;\n\t}\n\n\t// Get base visible codepoint\n\tconst base = segment.replace(leadingNonPrintingRegex, \"\");\n\tconst cp = base.codePointAt(0);\n\tif (cp === undefined) {\n\t\treturn 0;\n\t}\n\n\t// Regional indicator symbols (U+1F1E6..U+1F1FF) are often rendered as\n\t// full-width emoji in terminals, even when isolated during streaming.\n\t// Keep width conservative (2) to avoid terminal auto-wrap drift artifacts.\n\tif (cp >= 0x1f1e6 && cp <= 0x1f1ff) {\n\t\treturn 2;\n\t}\n\n\tlet width = eastAsianWidth(cp);\n\n\t// Trailing halfwidth/fullwidth forms\n\tif (segment.length > 1) {\n\t\tfor (const char of segment.slice(1)) {\n\t\t\tconst c = char.codePointAt(0)!;\n\t\t\tif (c >= 0xff00 && c <= 0xffef) {\n\t\t\t\twidth += eastAsianWidth(c);\n\t\t\t}\n\t\t}\n\t}\n\n\treturn width;\n}\n\n/**\n * Calculate the visible width of a string in terminal columns.\n */\nexport function visibleWidth(str: string): number {\n\tif (str.length === 0) {\n\t\treturn 0;\n\t}\n\n\t// Fast path: pure ASCII printable\n\tlet isPureAscii = true;\n\tfor (let i = 0; i < str.length; i++) {\n\t\tconst code = str.charCodeAt(i);\n\t\tif (code < 0x20 || code > 0x7e) {\n\t\t\tisPureAscii = false;\n\t\t\tbreak;\n\t\t}\n\t}\n\tif (isPureAscii) {\n\t\treturn str.length;\n\t}\n\n\t// Check cache\n\tconst cached = widthCache.get(str);\n\tif (cached !== undefined) {\n\t\treturn cached;\n\t}\n\n\t// Normalize: tabs to 3 spaces, strip ANSI escape codes\n\tlet clean = str;\n\tif (str.includes(\"\\t\")) {\n\t\tclean = clean.replace(/\\t/g, \" \");\n\t}\n\tif (clean.includes(\"\\x1b\")) {\n\t\t// Strip supported ANSI/OSC/APC escape sequences in one pass.\n\t\t// This covers CSI styling/cursor codes, OSC hyperlinks and prompt markers,\n\t\t// and APC sequences like CURSOR_MARKER.\n\t\tlet stripped = \"\";\n\t\tlet i = 0;\n\t\twhile (i < clean.length) {\n\t\t\tconst ansi = extractAnsiCode(clean, i);\n\t\t\tif (ansi) {\n\t\t\t\ti += ansi.length;\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\tstripped += clean[i];\n\t\t\ti++;\n\t\t}\n\t\tclean = stripped;\n\t}\n\n\t// Calculate width\n\tlet width = 0;\n\tfor (const { segment } of segmenter.segment(clean)) {\n\t\twidth += graphemeWidth(segment);\n\t}\n\n\t// Cache result\n\tif (widthCache.size >= WIDTH_CACHE_SIZE) {\n\t\tconst firstKey = widthCache.keys().next().value;\n\t\tif (firstKey !== undefined) {\n\t\t\twidthCache.delete(firstKey);\n\t\t}\n\t}\n\twidthCache.set(str, width);\n\n\treturn width;\n}\n\n/**\n * Extract ANSI escape sequences from a string at the given position.\n */\nexport function extractAnsiCode(str: string, pos: number): { code: string; length: number } | null {\n\tif (pos >= str.length || str[pos] !== \"\\x1b\") return null;\n\n\tconst next = str[pos + 1];\n\n\t// CSI sequence: ESC [ ... m/G/K/H/J\n\tif (next === \"[\") {\n\t\tlet j = pos + 2;\n\t\twhile (j < str.length && !/[mGKHJ]/.test(str[j]!)) j++;\n\t\tif (j < str.length) return { code: str.substring(pos, j + 1), length: j + 1 - pos };\n\t\treturn null;\n\t}\n\n\t// OSC sequence: ESC ] ... BEL or ESC ] ... ST (ESC \\)\n\t// Used for hyperlinks (OSC 8), window titles, etc.\n\tif (next === \"]\") {\n\t\tlet j = pos + 2;\n\t\twhile (j < str.length) {\n\t\t\tif (str[j] === \"\\x07\") return { code: str.substring(pos, j + 1), length: j + 1 - pos };\n\t\t\tif (str[j] === \"\\x1b\" && str[j + 1] === \"\\\\\") return { code: str.substring(pos, j + 2), length: j + 2 - pos };\n\t\t\tj++;\n\t\t}\n\t\treturn null;\n\t}\n\n\t// APC sequence: ESC _ ... BEL or ESC _ ... ST (ESC \\)\n\t// Used for cursor marker and application-specific commands\n\tif (next === \"_\") {\n\t\tlet j = pos + 2;\n\t\twhile (j < str.length) {\n\t\t\tif (str[j] === \"\\x07\") return { code: str.substring(pos, j + 1), length: j + 1 - pos };\n\t\t\tif (str[j] === \"\\x1b\" && str[j + 1] === \"\\\\\") return { code: str.substring(pos, j + 2), length: j + 2 - pos };\n\t\t\tj++;\n\t\t}\n\t\treturn null;\n\t}\n\n\treturn null;\n}\n\n/**\n * Track active ANSI SGR codes to preserve styling across line breaks.\n */\nclass AnsiCodeTracker {\n\t// Track individual attributes separately so we can reset them specifically\n\tprivate bold = false;\n\tprivate dim = false;\n\tprivate italic = false;\n\tprivate underline = false;\n\tprivate blink = false;\n\tprivate inverse = false;\n\tprivate hidden = false;\n\tprivate strikethrough = false;\n\tprivate fgColor: string | null = null; // Stores the full code like \"31\" or \"38;5;240\"\n\tprivate bgColor: string | null = null; // Stores the full code like \"41\" or \"48;5;240\"\n\n\tprocess(ansiCode: string): void {\n\t\tif (!ansiCode.endsWith(\"m\")) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Extract the parameters between \\x1b[ and m\n\t\tconst match = ansiCode.match(/\\x1b\\[([\\d;]*)m/);\n\t\tif (!match) return;\n\n\t\tconst params = match[1];\n\t\tif (params === \"\" || params === \"0\") {\n\t\t\t// Full reset\n\t\t\tthis.reset();\n\t\t\treturn;\n\t\t}\n\n\t\t// Parse parameters (can be semicolon-separated)\n\t\tconst parts = params.split(\";\");\n\t\tlet i = 0;\n\t\twhile (i < parts.length) {\n\t\t\tconst code = Number.parseInt(parts[i], 10);\n\n\t\t\t// Handle 256-color and RGB codes which consume multiple parameters\n\t\t\tif (code === 38 || code === 48) {\n\t\t\t\t// 38;5;N (256 color fg) or 38;2;R;G;B (RGB fg)\n\t\t\t\t// 48;5;N (256 color bg) or 48;2;R;G;B (RGB bg)\n\t\t\t\tif (parts[i + 1] === \"5\" && parts[i + 2] !== undefined) {\n\t\t\t\t\t// 256 color: 38;5;N or 48;5;N\n\t\t\t\t\tconst colorCode = `${parts[i]};${parts[i + 1]};${parts[i + 2]}`;\n\t\t\t\t\tif (code === 38) {\n\t\t\t\t\t\tthis.fgColor = colorCode;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis.bgColor = colorCode;\n\t\t\t\t\t}\n\t\t\t\t\ti += 3;\n\t\t\t\t\tcontinue;\n\t\t\t\t} else if (parts[i + 1] === \"2\" && parts[i + 4] !== undefined) {\n\t\t\t\t\t// RGB color: 38;2;R;G;B or 48;2;R;G;B\n\t\t\t\t\tconst colorCode = `${parts[i]};${parts[i + 1]};${parts[i + 2]};${parts[i + 3]};${parts[i + 4]}`;\n\t\t\t\t\tif (code === 38) {\n\t\t\t\t\t\tthis.fgColor = colorCode;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis.bgColor = colorCode;\n\t\t\t\t\t}\n\t\t\t\t\ti += 5;\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Standard SGR codes\n\t\t\tswitch (code) {\n\t\t\t\tcase 0:\n\t\t\t\t\tthis.reset();\n\t\t\t\t\tbreak;\n\t\t\t\tcase 1:\n\t\t\t\t\tthis.bold = true;\n\t\t\t\t\tbreak;\n\t\t\t\tcase 2:\n\t\t\t\t\tthis.dim = true;\n\t\t\t\t\tbreak;\n\t\t\t\tcase 3:\n\t\t\t\t\tthis.italic = true;\n\t\t\t\t\tbreak;\n\t\t\t\tcase 4:\n\t\t\t\t\tthis.underline = true;\n\t\t\t\t\tbreak;\n\t\t\t\tcase 5:\n\t\t\t\t\tthis.blink = true;\n\t\t\t\t\tbreak;\n\t\t\t\tcase 7:\n\t\t\t\t\tthis.inverse = true;\n\t\t\t\t\tbreak;\n\t\t\t\tcase 8:\n\t\t\t\t\tthis.hidden = true;\n\t\t\t\t\tbreak;\n\t\t\t\tcase 9:\n\t\t\t\t\tthis.strikethrough = true;\n\t\t\t\t\tbreak;\n\t\t\t\tcase 21:\n\t\t\t\t\tthis.bold = false;\n\t\t\t\t\tbreak; // Some terminals\n\t\t\t\tcase 22:\n\t\t\t\t\tthis.bold = false;\n\t\t\t\t\tthis.dim = false;\n\t\t\t\t\tbreak;\n\t\t\t\tcase 23:\n\t\t\t\t\tthis.italic = false;\n\t\t\t\t\tbreak;\n\t\t\t\tcase 24:\n\t\t\t\t\tthis.underline = false;\n\t\t\t\t\tbreak;\n\t\t\t\tcase 25:\n\t\t\t\t\tthis.blink = false;\n\t\t\t\t\tbreak;\n\t\t\t\tcase 27:\n\t\t\t\t\tthis.inverse = false;\n\t\t\t\t\tbreak;\n\t\t\t\tcase 28:\n\t\t\t\t\tthis.hidden = false;\n\t\t\t\t\tbreak;\n\t\t\t\tcase 29:\n\t\t\t\t\tthis.strikethrough = false;\n\t\t\t\t\tbreak;\n\t\t\t\tcase 39:\n\t\t\t\t\tthis.fgColor = null;\n\t\t\t\t\tbreak; // Default fg\n\t\t\t\tcase 49:\n\t\t\t\t\tthis.bgColor = null;\n\t\t\t\t\tbreak; // Default bg\n\t\t\t\tdefault:\n\t\t\t\t\t// Standard foreground colors 30-37, 90-97\n\t\t\t\t\tif ((code >= 30 && code <= 37) || (code >= 90 && code <= 97)) {\n\t\t\t\t\t\tthis.fgColor = String(code);\n\t\t\t\t\t}\n\t\t\t\t\t// Standard background colors 40-47, 100-107\n\t\t\t\t\telse if ((code >= 40 && code <= 47) || (code >= 100 && code <= 107)) {\n\t\t\t\t\t\tthis.bgColor = String(code);\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t\ti++;\n\t\t}\n\t}\n\n\tprivate reset(): void {\n\t\tthis.bold = false;\n\t\tthis.dim = false;\n\t\tthis.italic = false;\n\t\tthis.underline = false;\n\t\tthis.blink = false;\n\t\tthis.inverse = false;\n\t\tthis.hidden = false;\n\t\tthis.strikethrough = false;\n\t\tthis.fgColor = null;\n\t\tthis.bgColor = null;\n\t}\n\n\t/** Clear all state for reuse. */\n\tclear(): void {\n\t\tthis.reset();\n\t}\n\n\tgetActiveCodes(): string {\n\t\tconst codes: string[] = [];\n\t\tif (this.bold) codes.push(\"1\");\n\t\tif (this.dim) codes.push(\"2\");\n\t\tif (this.italic) codes.push(\"3\");\n\t\tif (this.underline) codes.push(\"4\");\n\t\tif (this.blink) codes.push(\"5\");\n\t\tif (this.inverse) codes.push(\"7\");\n\t\tif (this.hidden) codes.push(\"8\");\n\t\tif (this.strikethrough) codes.push(\"9\");\n\t\tif (this.fgColor) codes.push(this.fgColor);\n\t\tif (this.bgColor) codes.push(this.bgColor);\n\n\t\tif (codes.length === 0) return \"\";\n\t\treturn `\\x1b[${codes.join(\";\")}m`;\n\t}\n\n\thasActiveCodes(): boolean {\n\t\treturn (\n\t\t\tthis.bold ||\n\t\t\tthis.dim ||\n\t\t\tthis.italic ||\n\t\t\tthis.underline ||\n\t\t\tthis.blink ||\n\t\t\tthis.inverse ||\n\t\t\tthis.hidden ||\n\t\t\tthis.strikethrough ||\n\t\t\tthis.fgColor !== null ||\n\t\t\tthis.bgColor !== null\n\t\t);\n\t}\n\n\t/**\n\t * Get reset codes for attributes that need to be turned off at line end,\n\t * specifically underline which bleeds into padding.\n\t * Returns empty string if no problematic attributes are active.\n\t */\n\tgetLineEndReset(): string {\n\t\t// Only underline causes visual bleeding into padding\n\t\t// Other attributes like colors don't visually bleed to padding\n\t\tif (this.underline) {\n\t\t\treturn \"\\x1b[24m\"; // Underline off only\n\t\t}\n\t\treturn \"\";\n\t}\n}\n\nfunction updateTrackerFromText(text: string, tracker: AnsiCodeTracker): void {\n\tlet i = 0;\n\twhile (i < text.length) {\n\t\tconst ansiResult = extractAnsiCode(text, i);\n\t\tif (ansiResult) {\n\t\t\ttracker.process(ansiResult.code);\n\t\t\ti += ansiResult.length;\n\t\t} else {\n\t\t\ti++;\n\t\t}\n\t}\n}\n\n/**\n * Split text into words while keeping ANSI codes attached.\n */\nfunction splitIntoTokensWithAnsi(text: string): string[] {\n\tconst tokens: string[] = [];\n\tlet current = \"\";\n\tlet pendingAnsi = \"\"; // ANSI codes waiting to be attached to next visible content\n\tlet inWhitespace = false;\n\tlet i = 0;\n\n\twhile (i < text.length) {\n\t\tconst ansiResult = extractAnsiCode(text, i);\n\t\tif (ansiResult) {\n\t\t\t// Hold ANSI codes separately - they'll be attached to the next visible char\n\t\t\tpendingAnsi += ansiResult.code;\n\t\t\ti += ansiResult.length;\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst char = text[i];\n\t\tconst charIsSpace = char === \" \";\n\n\t\tif (charIsSpace !== inWhitespace && current) {\n\t\t\t// Switching between whitespace and non-whitespace, push current token\n\t\t\ttokens.push(current);\n\t\t\tcurrent = \"\";\n\t\t}\n\n\t\t// Attach any pending ANSI codes to this visible character\n\t\tif (pendingAnsi) {\n\t\t\tcurrent += pendingAnsi;\n\t\t\tpendingAnsi = \"\";\n\t\t}\n\n\t\tinWhitespace = charIsSpace;\n\t\tcurrent += char;\n\t\ti++;\n\t}\n\n\t// Handle any remaining pending ANSI codes (attach to last token)\n\tif (pendingAnsi) {\n\t\tcurrent += pendingAnsi;\n\t}\n\n\tif (current) {\n\t\ttokens.push(current);\n\t}\n\n\treturn tokens;\n}\n\n/**\n * Wrap text with ANSI codes preserved.\n *\n * ONLY does word wrapping - NO padding, NO background colors.\n * Returns lines where each line is <= width visible chars.\n * Active ANSI codes are preserved across line breaks.\n *\n * @param text - Text to wrap (may contain ANSI codes and newlines)\n * @param width - Maximum visible width per line\n * @returns Array of wrapped lines (NOT padded to width)\n */\nexport function wrapTextWithAnsi(text: string, width: number): string[] {\n\tif (!text) {\n\t\treturn [\"\"];\n\t}\n\n\t// Handle newlines by processing each line separately\n\t// Track ANSI state across lines so styles carry over after literal newlines\n\tconst inputLines = text.split(\"\\n\");\n\tconst result: string[] = [];\n\tconst tracker = new AnsiCodeTracker();\n\n\tfor (const inputLine of inputLines) {\n\t\t// Prepend active ANSI codes from previous lines (except for first line)\n\t\tconst prefix = result.length > 0 ? tracker.getActiveCodes() : \"\";\n\t\tresult.push(...wrapSingleLine(prefix + inputLine, width));\n\t\t// Update tracker with codes from this line for next iteration\n\t\tupdateTrackerFromText(inputLine, tracker);\n\t}\n\n\treturn result.length > 0 ? result : [\"\"];\n}\n\nfunction wrapSingleLine(line: string, width: number): string[] {\n\tif (!line) {\n\t\treturn [\"\"];\n\t}\n\n\tconst visibleLength = visibleWidth(line);\n\tif (visibleLength <= width) {\n\t\treturn [line];\n\t}\n\n\tconst wrapped: string[] = [];\n\tconst tracker = new AnsiCodeTracker();\n\tconst tokens = splitIntoTokensWithAnsi(line);\n\n\tlet currentLine = \"\";\n\tlet currentVisibleLength = 0;\n\n\tfor (const token of tokens) {\n\t\tconst tokenVisibleLength = visibleWidth(token);\n\t\tconst isWhitespace = token.trim() === \"\";\n\n\t\t// Token itself is too long - break it character by character\n\t\tif (tokenVisibleLength > width && !isWhitespace) {\n\t\t\tif (currentLine) {\n\t\t\t\t// Add specific reset for underline only (preserves background)\n\t\t\t\tconst lineEndReset = tracker.getLineEndReset();\n\t\t\t\tif (lineEndReset) {\n\t\t\t\t\tcurrentLine += lineEndReset;\n\t\t\t\t}\n\t\t\t\twrapped.push(currentLine);\n\t\t\t\tcurrentLine = \"\";\n\t\t\t\tcurrentVisibleLength = 0;\n\t\t\t}\n\n\t\t\t// Break long token - breakLongWord handles its own resets\n\t\t\tconst broken = breakLongWord(token, width, tracker);\n\t\t\twrapped.push(...broken.slice(0, -1));\n\t\t\tcurrentLine = broken[broken.length - 1];\n\t\t\tcurrentVisibleLength = visibleWidth(currentLine);\n\t\t\tcontinue;\n\t\t}\n\n\t\t// Check if adding this token would exceed width\n\t\tconst totalNeeded = currentVisibleLength + tokenVisibleLength;\n\n\t\tif (totalNeeded > width && currentVisibleLength > 0) {\n\t\t\t// Trim trailing whitespace, then add underline reset (not full reset, to preserve background)\n\t\t\tlet lineToWrap = currentLine.trimEnd();\n\t\t\tconst lineEndReset = tracker.getLineEndReset();\n\t\t\tif (lineEndReset) {\n\t\t\t\tlineToWrap += lineEndReset;\n\t\t\t}\n\t\t\twrapped.push(lineToWrap);\n\t\t\tif (isWhitespace) {\n\t\t\t\t// Don't start new line with whitespace\n\t\t\t\tcurrentLine = tracker.getActiveCodes();\n\t\t\t\tcurrentVisibleLength = 0;\n\t\t\t} else {\n\t\t\t\tcurrentLine = tracker.getActiveCodes() + token;\n\t\t\t\tcurrentVisibleLength = tokenVisibleLength;\n\t\t\t}\n\t\t} else {\n\t\t\t// Add to current line\n\t\t\tcurrentLine += token;\n\t\t\tcurrentVisibleLength += tokenVisibleLength;\n\t\t}\n\n\t\tupdateTrackerFromText(token, tracker);\n\t}\n\n\tif (currentLine) {\n\t\t// No reset at end of final line - let caller handle it\n\t\twrapped.push(currentLine);\n\t}\n\n\t// Trailing whitespace can cause lines to exceed the requested width\n\treturn wrapped.length > 0 ? wrapped.map((line) => line.trimEnd()) : [\"\"];\n}\n\nconst PUNCTUATION_REGEX = /[(){}[\\]<>.,;:'\"!?+\\-=*/\\\\|&%^$#@~`]/;\n\n/**\n * Check if a character is whitespace.\n */\nexport function isWhitespaceChar(char: string): boolean {\n\treturn /\\s/.test(char);\n}\n\n/**\n * Check if a character is punctuation.\n */\nexport function isPunctuationChar(char: string): boolean {\n\treturn PUNCTUATION_REGEX.test(char);\n}\n\nfunction breakLongWord(word: string, width: number, tracker: AnsiCodeTracker): string[] {\n\tconst lines: string[] = [];\n\tlet currentLine = tracker.getActiveCodes();\n\tlet currentWidth = 0;\n\n\t// First, separate ANSI codes from visible content\n\t// We need to handle ANSI codes specially since they're not graphemes\n\tlet i = 0;\n\tconst segments: Array<{ type: \"ansi\" | \"grapheme\"; value: string }> = [];\n\n\twhile (i < word.length) {\n\t\tconst ansiResult = extractAnsiCode(word, i);\n\t\tif (ansiResult) {\n\t\t\tsegments.push({ type: \"ansi\", value: ansiResult.code });\n\t\t\ti += ansiResult.length;\n\t\t} else {\n\t\t\t// Find the next ANSI code or end of string\n\t\t\tlet end = i;\n\t\t\twhile (end < word.length) {\n\t\t\t\tconst nextAnsi = extractAnsiCode(word, end);\n\t\t\t\tif (nextAnsi) break;\n\t\t\t\tend++;\n\t\t\t}\n\t\t\t// Segment this non-ANSI portion into graphemes\n\t\t\tconst textPortion = word.slice(i, end);\n\t\t\tfor (const seg of segmenter.segment(textPortion)) {\n\t\t\t\tsegments.push({ type: \"grapheme\", value: seg.segment });\n\t\t\t}\n\t\t\ti = end;\n\t\t}\n\t}\n\n\t// Now process segments\n\tfor (const seg of segments) {\n\t\tif (seg.type === \"ansi\") {\n\t\t\tcurrentLine += seg.value;\n\t\t\ttracker.process(seg.value);\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst grapheme = seg.value;\n\t\t// Skip empty graphemes to avoid issues with string-width calculation\n\t\tif (!grapheme) continue;\n\n\t\tconst graphemeWidth = visibleWidth(grapheme);\n\n\t\tif (currentWidth + graphemeWidth > width) {\n\t\t\t// Add specific reset for underline only (preserves background)\n\t\t\tconst lineEndReset = tracker.getLineEndReset();\n\t\t\tif (lineEndReset) {\n\t\t\t\tcurrentLine += lineEndReset;\n\t\t\t}\n\t\t\tlines.push(currentLine);\n\t\t\tcurrentLine = tracker.getActiveCodes();\n\t\t\tcurrentWidth = 0;\n\t\t}\n\n\t\tcurrentLine += grapheme;\n\t\tcurrentWidth += graphemeWidth;\n\t}\n\n\tif (currentLine) {\n\t\t// No reset at end of final segment - caller handles continuation\n\t\tlines.push(currentLine);\n\t}\n\n\treturn lines.length > 0 ? lines : [\"\"];\n}\n\n/**\n * Apply background color to a line, padding to full width.\n *\n * @param line - Line of text (may contain ANSI codes)\n * @param width - Total width to pad to\n * @param bgFn - Background color function\n * @returns Line with background applied and padded to width\n */\nexport function applyBackgroundToLine(line: string, width: number, bgFn: (text: string) => string): string {\n\t// Calculate padding needed\n\tconst visibleLen = visibleWidth(line);\n\tconst paddingNeeded = Math.max(0, width - visibleLen);\n\tconst padding = \" \".repeat(paddingNeeded);\n\n\t// Apply background to content + padding\n\tconst withPadding = line + padding;\n\treturn bgFn(withPadding);\n}\n\n/**\n * Truncate text to fit within a maximum visible width, adding ellipsis if needed.\n * Optionally pad with spaces to reach exactly maxWidth.\n * Properly handles ANSI escape codes (they don't count toward width).\n *\n * @param text - Text to truncate (may contain ANSI codes)\n * @param maxWidth - Maximum visible width\n * @param ellipsis - Ellipsis string to append when truncating (default: \"...\")\n * @param pad - If true, pad result with spaces to exactly maxWidth (default: false)\n * @returns Truncated text, optionally padded to exactly maxWidth\n */\nexport function truncateToWidth(\n\ttext: string,\n\tmaxWidth: number,\n\tellipsis: string = \"...\",\n\tpad: boolean = false,\n): string {\n\tconst textVisibleWidth = visibleWidth(text);\n\n\tif (textVisibleWidth <= maxWidth) {\n\t\treturn pad ? text + \" \".repeat(maxWidth - textVisibleWidth) : text;\n\t}\n\n\tconst ellipsisWidth = visibleWidth(ellipsis);\n\tconst targetWidth = maxWidth - ellipsisWidth;\n\n\tif (targetWidth <= 0) {\n\t\treturn ellipsis.substring(0, maxWidth);\n\t}\n\n\t// Separate ANSI codes from visible content using grapheme segmentation\n\tlet i = 0;\n\tconst segments: Array<{ type: \"ansi\" | \"grapheme\"; value: string }> = [];\n\n\twhile (i < text.length) {\n\t\tconst ansiResult = extractAnsiCode(text, i);\n\t\tif (ansiResult) {\n\t\t\tsegments.push({ type: \"ansi\", value: ansiResult.code });\n\t\t\ti += ansiResult.length;\n\t\t} else {\n\t\t\t// Find the next ANSI code or end of string\n\t\t\tlet end = i;\n\t\t\twhile (end < text.length) {\n\t\t\t\tconst nextAnsi = extractAnsiCode(text, end);\n\t\t\t\tif (nextAnsi) break;\n\t\t\t\tend++;\n\t\t\t}\n\t\t\t// Segment this non-ANSI portion into graphemes\n\t\t\tconst textPortion = text.slice(i, end);\n\t\t\tfor (const seg of segmenter.segment(textPortion)) {\n\t\t\t\tsegments.push({ type: \"grapheme\", value: seg.segment });\n\t\t\t}\n\t\t\ti = end;\n\t\t}\n\t}\n\n\t// Build truncated string from segments\n\tlet result = \"\";\n\tlet currentWidth = 0;\n\n\tfor (const seg of segments) {\n\t\tif (seg.type === \"ansi\") {\n\t\t\tresult += seg.value;\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst grapheme = seg.value;\n\t\t// Skip empty graphemes to avoid issues with string-width calculation\n\t\tif (!grapheme) continue;\n\n\t\tconst graphemeWidth = visibleWidth(grapheme);\n\n\t\tif (currentWidth + graphemeWidth > targetWidth) {\n\t\t\tbreak;\n\t\t}\n\n\t\tresult += grapheme;\n\t\tcurrentWidth += graphemeWidth;\n\t}\n\n\t// Add reset code before ellipsis to prevent styling leaking into it\n\tconst truncated = `${result}\\x1b[0m${ellipsis}`;\n\tif (pad) {\n\t\tconst truncatedWidth = visibleWidth(truncated);\n\t\treturn truncated + \" \".repeat(Math.max(0, maxWidth - truncatedWidth));\n\t}\n\treturn truncated;\n}\n\n/**\n * Extract a range of visible columns from a line. Handles ANSI codes and wide chars.\n * @param strict - If true, exclude wide chars at boundary that would extend past the range\n */\nexport function sliceByColumn(line: string, startCol: number, length: number, strict = false): string {\n\treturn sliceWithWidth(line, startCol, length, strict).text;\n}\n\n/** Like sliceByColumn but also returns the actual visible width of the result. */\nexport function sliceWithWidth(\n\tline: string,\n\tstartCol: number,\n\tlength: number,\n\tstrict = false,\n): { text: string; width: number } {\n\tif (length <= 0) return { text: \"\", width: 0 };\n\tconst endCol = startCol + length;\n\tlet result = \"\",\n\t\tresultWidth = 0,\n\t\tcurrentCol = 0,\n\t\ti = 0,\n\t\tpendingAnsi = \"\";\n\n\twhile (i < line.length) {\n\t\tconst ansi = extractAnsiCode(line, i);\n\t\tif (ansi) {\n\t\t\tif (currentCol >= startCol && currentCol < endCol) result += ansi.code;\n\t\t\telse if (currentCol < startCol) pendingAnsi += ansi.code;\n\t\t\ti += ansi.length;\n\t\t\tcontinue;\n\t\t}\n\n\t\tlet textEnd = i;\n\t\twhile (textEnd < line.length && !extractAnsiCode(line, textEnd)) textEnd++;\n\n\t\tfor (const { segment } of segmenter.segment(line.slice(i, textEnd))) {\n\t\t\tconst w = graphemeWidth(segment);\n\t\t\tconst inRange = currentCol >= startCol && currentCol < endCol;\n\t\t\tconst fits = !strict || currentCol + w <= endCol;\n\t\t\tif (inRange && fits) {\n\t\t\t\tif (pendingAnsi) {\n\t\t\t\t\tresult += pendingAnsi;\n\t\t\t\t\tpendingAnsi = \"\";\n\t\t\t\t}\n\t\t\t\tresult += segment;\n\t\t\t\tresultWidth += w;\n\t\t\t}\n\t\t\tcurrentCol += w;\n\t\t\tif (currentCol >= endCol) break;\n\t\t}\n\t\ti = textEnd;\n\t\tif (currentCol >= endCol) break;\n\t}\n\treturn { text: result, width: resultWidth };\n}\n\n// Pooled tracker instance for extractSegments (avoids allocation per call)\nconst pooledStyleTracker = new AnsiCodeTracker();\n\n/**\n * Extract \"before\" and \"after\" segments from a line in a single pass.\n * Used for overlay compositing where we need content before and after the overlay region.\n * Preserves styling from before the overlay that should affect content after it.\n */\nexport function extractSegments(\n\tline: string,\n\tbeforeEnd: number,\n\tafterStart: number,\n\tafterLen: number,\n\tstrictAfter = false,\n): { before: string; beforeWidth: number; after: string; afterWidth: number } {\n\tlet before = \"\",\n\t\tbeforeWidth = 0,\n\t\tafter = \"\",\n\t\tafterWidth = 0;\n\tlet currentCol = 0,\n\t\ti = 0;\n\tlet pendingAnsiBefore = \"\";\n\tlet afterStarted = false;\n\tconst afterEnd = afterStart + afterLen;\n\n\t// Track styling state so \"after\" inherits styling from before the overlay\n\tpooledStyleTracker.clear();\n\n\twhile (i < line.length) {\n\t\tconst ansi = extractAnsiCode(line, i);\n\t\tif (ansi) {\n\t\t\t// Track all SGR codes to know styling state at afterStart\n\t\t\tpooledStyleTracker.process(ansi.code);\n\t\t\t// Include ANSI codes in their respective segments\n\t\t\tif (currentCol < beforeEnd) {\n\t\t\t\tpendingAnsiBefore += ansi.code;\n\t\t\t} else if (currentCol >= afterStart && currentCol < afterEnd && afterStarted) {\n\t\t\t\t// Only include after we've started \"after\" (styling already prepended)\n\t\t\t\tafter += ansi.code;\n\t\t\t}\n\t\t\ti += ansi.length;\n\t\t\tcontinue;\n\t\t}\n\n\t\tlet textEnd = i;\n\t\twhile (textEnd < line.length && !extractAnsiCode(line, textEnd)) textEnd++;\n\n\t\tfor (const { segment } of segmenter.segment(line.slice(i, textEnd))) {\n\t\t\tconst w = graphemeWidth(segment);\n\n\t\t\tif (currentCol < beforeEnd) {\n\t\t\t\tif (pendingAnsiBefore) {\n\t\t\t\t\tbefore += pendingAnsiBefore;\n\t\t\t\t\tpendingAnsiBefore = \"\";\n\t\t\t\t}\n\t\t\t\tbefore += segment;\n\t\t\t\tbeforeWidth += w;\n\t\t\t} else if (currentCol >= afterStart && currentCol < afterEnd) {\n\t\t\t\tconst fits = !strictAfter || currentCol + w <= afterEnd;\n\t\t\t\tif (fits) {\n\t\t\t\t\t// On first \"after\" grapheme, prepend inherited styling from before overlay\n\t\t\t\t\tif (!afterStarted) {\n\t\t\t\t\t\tafter += pooledStyleTracker.getActiveCodes();\n\t\t\t\t\t\tafterStarted = true;\n\t\t\t\t\t}\n\t\t\t\t\tafter += segment;\n\t\t\t\t\tafterWidth += w;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tcurrentCol += w;\n\t\t\t// Early exit: done with \"before\" only, or done with both segments\n\t\t\tif (afterLen <= 0 ? currentCol >= beforeEnd : currentCol >= afterEnd) break;\n\t\t}\n\t\ti = textEnd;\n\t\tif (afterLen <= 0 ? currentCol >= beforeEnd : currentCol >= afterEnd) break;\n\t}\n\n\treturn { before, beforeWidth, after, afterWidth };\n}\n"]}