@coze-arch/cli 0.0.1-alpha.307a2b → 0.0.1-alpha.3260db

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 (454) hide show
  1. package/lib/__templates__/expo/.cozeproj/scripts/server_dev_run.sh +1 -1
  2. package/lib/__templates__/expo/README.md +12 -16
  3. package/lib/__templates__/expo/client/app/+not-found.tsx +4 -19
  4. package/lib/__templates__/expo/client/app/_layout.tsx +5 -3
  5. package/lib/__templates__/expo/client/components/Screen.tsx +4 -1
  6. package/lib/__templates__/expo/client/global.css +6 -0
  7. package/lib/__templates__/expo/client/heroui/components/accordion/accordion.animation.ts +178 -0
  8. package/lib/__templates__/expo/client/heroui/components/accordion/accordion.constants.ts +62 -0
  9. package/lib/__templates__/expo/client/heroui/components/accordion/accordion.md +437 -0
  10. package/lib/__templates__/expo/client/heroui/components/accordion/accordion.styles.ts +95 -0
  11. package/lib/__templates__/expo/client/heroui/components/accordion/accordion.tsx +340 -0
  12. package/lib/__templates__/expo/client/heroui/components/accordion/accordion.types.ts +267 -0
  13. package/lib/__templates__/expo/client/heroui/components/accordion/index.ts +17 -0
  14. package/lib/__templates__/expo/client/heroui/components/alert/alert.constants.ts +13 -0
  15. package/lib/__templates__/expo/client/heroui/components/alert/alert.hooks.ts +28 -0
  16. package/lib/__templates__/expo/client/heroui/components/alert/alert.md +263 -0
  17. package/lib/__templates__/expo/client/heroui/components/alert/alert.styles.ts +65 -0
  18. package/lib/__templates__/expo/client/heroui/components/alert/alert.tsx +181 -0
  19. package/lib/__templates__/expo/client/heroui/components/alert/alert.types.ts +99 -0
  20. package/lib/__templates__/expo/client/heroui/components/alert/alert.utils.tsx +25 -0
  21. package/lib/__templates__/expo/client/heroui/components/alert/default-icon.tsx +28 -0
  22. package/lib/__templates__/expo/client/heroui/components/alert/index.ts +15 -0
  23. package/lib/__templates__/expo/client/heroui/components/alert/success-icon.tsx +28 -0
  24. package/lib/__templates__/expo/client/heroui/components/alert/warning-icon.tsx +28 -0
  25. package/lib/__templates__/expo/client/heroui/components/avatar/avatar.animation.ts +123 -0
  26. package/lib/__templates__/expo/client/heroui/components/avatar/avatar.constants.ts +19 -0
  27. package/lib/__templates__/expo/client/heroui/components/avatar/avatar.context.ts +11 -0
  28. package/lib/__templates__/expo/client/heroui/components/avatar/avatar.md +386 -0
  29. package/lib/__templates__/expo/client/heroui/components/avatar/avatar.styles.ts +145 -0
  30. package/lib/__templates__/expo/client/heroui/components/avatar/avatar.tsx +307 -0
  31. package/lib/__templates__/expo/client/heroui/components/avatar/avatar.types.ts +239 -0
  32. package/lib/__templates__/expo/client/heroui/components/avatar/index.ts +13 -0
  33. package/lib/__templates__/expo/client/heroui/components/avatar/person-icon.tsx +23 -0
  34. package/lib/__templates__/expo/client/heroui/components/bottom-sheet/bottom-sheet.animation.ts +42 -0
  35. package/lib/__templates__/expo/client/heroui/components/bottom-sheet/bottom-sheet.constants.ts +13 -0
  36. package/lib/__templates__/expo/client/heroui/components/bottom-sheet/bottom-sheet.md +349 -0
  37. package/lib/__templates__/expo/client/heroui/components/bottom-sheet/bottom-sheet.styles.ts +66 -0
  38. package/lib/__templates__/expo/client/heroui/components/bottom-sheet/bottom-sheet.tsx +351 -0
  39. package/lib/__templates__/expo/client/heroui/components/bottom-sheet/bottom-sheet.types.ts +150 -0
  40. package/lib/__templates__/expo/client/heroui/components/bottom-sheet/index.ts +16 -0
  41. package/lib/__templates__/expo/client/heroui/components/button/button.constants.ts +7 -0
  42. package/lib/__templates__/expo/client/heroui/components/button/button.md +381 -0
  43. package/lib/__templates__/expo/client/heroui/components/button/button.styles.ts +89 -0
  44. package/lib/__templates__/expo/client/heroui/components/button/button.tsx +284 -0
  45. package/lib/__templates__/expo/client/heroui/components/button/button.types.ts +175 -0
  46. package/lib/__templates__/expo/client/heroui/components/button/button.utils.ts +34 -0
  47. package/lib/__templates__/expo/client/heroui/components/button/index.ts +9 -0
  48. package/lib/__templates__/expo/client/heroui/components/card/card.constants.ts +11 -0
  49. package/lib/__templates__/expo/client/heroui/components/card/card.md +186 -0
  50. package/lib/__templates__/expo/client/heroui/components/card/card.styles.ts +35 -0
  51. package/lib/__templates__/expo/client/heroui/components/card/card.tsx +153 -0
  52. package/lib/__templates__/expo/client/heroui/components/card/card.types.ts +77 -0
  53. package/lib/__templates__/expo/client/heroui/components/card/index.ts +10 -0
  54. package/lib/__templates__/expo/client/heroui/components/checkbox/checkbox.animation.ts +202 -0
  55. package/lib/__templates__/expo/client/heroui/components/checkbox/checkbox.constants.ts +6 -0
  56. package/lib/__templates__/expo/client/heroui/components/checkbox/checkbox.md +311 -0
  57. package/lib/__templates__/expo/client/heroui/components/checkbox/checkbox.styles.ts +105 -0
  58. package/lib/__templates__/expo/client/heroui/components/checkbox/checkbox.tsx +251 -0
  59. package/lib/__templates__/expo/client/heroui/components/checkbox/checkbox.types.ts +216 -0
  60. package/lib/__templates__/expo/client/heroui/components/checkbox/index.ts +3 -0
  61. package/lib/__templates__/expo/client/heroui/components/chip/chip.animation.ts +18 -0
  62. package/lib/__templates__/expo/client/heroui/components/chip/chip.constants.ts +7 -0
  63. package/lib/__templates__/expo/client/heroui/components/chip/chip.md +190 -0
  64. package/lib/__templates__/expo/client/heroui/components/chip/chip.styles.ts +234 -0
  65. package/lib/__templates__/expo/client/heroui/components/chip/chip.tsx +125 -0
  66. package/lib/__templates__/expo/client/heroui/components/chip/chip.types.ts +69 -0
  67. package/lib/__templates__/expo/client/heroui/components/chip/index.ts +3 -0
  68. package/lib/__templates__/expo/client/heroui/components/close-button/close-button.constants.ts +6 -0
  69. package/lib/__templates__/expo/client/heroui/components/close-button/close-button.md +109 -0
  70. package/lib/__templates__/expo/client/heroui/components/close-button/close-button.styles.ts +13 -0
  71. package/lib/__templates__/expo/client/heroui/components/close-button/close-button.tsx +57 -0
  72. package/lib/__templates__/expo/client/heroui/components/close-button/close-button.types.ts +30 -0
  73. package/lib/__templates__/expo/client/heroui/components/close-button/index.ts +6 -0
  74. package/lib/__templates__/expo/client/heroui/components/control-field/control-field.animation.ts +18 -0
  75. package/lib/__templates__/expo/client/heroui/components/control-field/control-field.constants.ts +7 -0
  76. package/lib/__templates__/expo/client/heroui/components/control-field/control-field.context.ts +14 -0
  77. package/lib/__templates__/expo/client/heroui/components/control-field/control-field.md +241 -0
  78. package/lib/__templates__/expo/client/heroui/components/control-field/control-field.styles.ts +15 -0
  79. package/lib/__templates__/expo/client/heroui/components/control-field/control-field.tsx +245 -0
  80. package/lib/__templates__/expo/client/heroui/components/control-field/control-field.types.ts +67 -0
  81. package/lib/__templates__/expo/client/heroui/components/control-field/index.ts +6 -0
  82. package/lib/__templates__/expo/client/heroui/components/description/description.animation.ts +53 -0
  83. package/lib/__templates__/expo/client/heroui/components/description/description.constants.ts +30 -0
  84. package/lib/__templates__/expo/client/heroui/components/description/description.md +129 -0
  85. package/lib/__templates__/expo/client/heroui/components/description/description.styles.ts +25 -0
  86. package/lib/__templates__/expo/client/heroui/components/description/description.tsx +81 -0
  87. package/lib/__templates__/expo/client/heroui/components/description/description.types.ts +77 -0
  88. package/lib/__templates__/expo/client/heroui/components/description/index.ts +3 -0
  89. package/lib/__templates__/expo/client/heroui/components/dialog/dialog.animation.ts +9 -0
  90. package/lib/__templates__/expo/client/heroui/components/dialog/dialog.constants.ts +13 -0
  91. package/lib/__templates__/expo/client/heroui/components/dialog/dialog.md +288 -0
  92. package/lib/__templates__/expo/client/heroui/components/dialog/dialog.styles.ts +77 -0
  93. package/lib/__templates__/expo/client/heroui/components/dialog/dialog.tsx +379 -0
  94. package/lib/__templates__/expo/client/heroui/components/dialog/dialog.types.ts +199 -0
  95. package/lib/__templates__/expo/client/heroui/components/dialog/index.ts +12 -0
  96. package/lib/__templates__/expo/client/heroui/components/field-error/field-error.animation.ts +50 -0
  97. package/lib/__templates__/expo/client/heroui/components/field-error/field-error.constants.ts +31 -0
  98. package/lib/__templates__/expo/client/heroui/components/field-error/field-error.md +204 -0
  99. package/lib/__templates__/expo/client/heroui/components/field-error/field-error.styles.ts +23 -0
  100. package/lib/__templates__/expo/client/heroui/components/field-error/field-error.tsx +91 -0
  101. package/lib/__templates__/expo/client/heroui/components/field-error/field-error.types.ts +79 -0
  102. package/lib/__templates__/expo/client/heroui/components/field-error/index.ts +3 -0
  103. package/lib/__templates__/expo/client/heroui/components/input/index.ts +3 -0
  104. package/lib/__templates__/expo/client/heroui/components/input/input.constants.ts +6 -0
  105. package/lib/__templates__/expo/client/heroui/components/input/input.md +193 -0
  106. package/lib/__templates__/expo/client/heroui/components/input/input.styles.ts +51 -0
  107. package/lib/__templates__/expo/client/heroui/components/input/input.tsx +96 -0
  108. package/lib/__templates__/expo/client/heroui/components/input/input.types.ts +44 -0
  109. package/lib/__templates__/expo/client/heroui/components/input-group/index.ts +9 -0
  110. package/lib/__templates__/expo/client/heroui/components/input-group/input-group.animation.ts +14 -0
  111. package/lib/__templates__/expo/client/heroui/components/input-group/input-group.constants.ts +6 -0
  112. package/lib/__templates__/expo/client/heroui/components/input-group/input-group.md +197 -0
  113. package/lib/__templates__/expo/client/heroui/components/input-group/input-group.styles.ts +31 -0
  114. package/lib/__templates__/expo/client/heroui/components/input-group/input-group.tsx +239 -0
  115. package/lib/__templates__/expo/client/heroui/components/input-group/input-group.types.ts +98 -0
  116. package/lib/__templates__/expo/client/heroui/components/input-otp/index.ts +9 -0
  117. package/lib/__templates__/expo/client/heroui/components/input-otp/input-otp.animation.ts +199 -0
  118. package/lib/__templates__/expo/client/heroui/components/input-otp/input-otp.constants.ts +12 -0
  119. package/lib/__templates__/expo/client/heroui/components/input-otp/input-otp.md +376 -0
  120. package/lib/__templates__/expo/client/heroui/components/input-otp/input-otp.styles.ts +68 -0
  121. package/lib/__templates__/expo/client/heroui/components/input-otp/input-otp.tsx +414 -0
  122. package/lib/__templates__/expo/client/heroui/components/input-otp/input-otp.types.ts +275 -0
  123. package/lib/__templates__/expo/client/heroui/components/label/index.ts +3 -0
  124. package/lib/__templates__/expo/client/heroui/components/label/label.animation.ts +18 -0
  125. package/lib/__templates__/expo/client/heroui/components/label/label.constants.ts +7 -0
  126. package/lib/__templates__/expo/client/heroui/components/label/label.md +187 -0
  127. package/lib/__templates__/expo/client/heroui/components/label/label.styles.ts +44 -0
  128. package/lib/__templates__/expo/client/heroui/components/label/label.tsx +172 -0
  129. package/lib/__templates__/expo/client/heroui/components/label/label.types.ts +86 -0
  130. package/lib/__templates__/expo/client/heroui/components/list-group/index.ts +17 -0
  131. package/lib/__templates__/expo/client/heroui/components/list-group/list-group.constants.ts +17 -0
  132. package/lib/__templates__/expo/client/heroui/components/list-group/list-group.md +387 -0
  133. package/lib/__templates__/expo/client/heroui/components/list-group/list-group.styles.ts +40 -0
  134. package/lib/__templates__/expo/client/heroui/components/list-group/list-group.tsx +206 -0
  135. package/lib/__templates__/expo/client/heroui/components/list-group/list-group.types.ts +132 -0
  136. package/lib/__templates__/expo/client/heroui/components/menu/index.ts +38 -0
  137. package/lib/__templates__/expo/client/heroui/components/menu/menu.animation.ts +121 -0
  138. package/lib/__templates__/expo/client/heroui/components/menu/menu.constants.ts +37 -0
  139. package/lib/__templates__/expo/client/heroui/components/menu/menu.md +620 -0
  140. package/lib/__templates__/expo/client/heroui/components/menu/menu.styles.ts +107 -0
  141. package/lib/__templates__/expo/client/heroui/components/menu/menu.tsx +664 -0
  142. package/lib/__templates__/expo/client/heroui/components/menu/menu.types.ts +394 -0
  143. package/lib/__templates__/expo/client/heroui/components/popover/arrow-svg.tsx +180 -0
  144. package/lib/__templates__/expo/client/heroui/components/popover/index.ts +18 -0
  145. package/lib/__templates__/expo/client/heroui/components/popover/popover.animation.ts +9 -0
  146. package/lib/__templates__/expo/client/heroui/components/popover/popover.constants.ts +34 -0
  147. package/lib/__templates__/expo/client/heroui/components/popover/popover.md +508 -0
  148. package/lib/__templates__/expo/client/heroui/components/popover/popover.styles.ts +98 -0
  149. package/lib/__templates__/expo/client/heroui/components/popover/popover.tsx +624 -0
  150. package/lib/__templates__/expo/client/heroui/components/popover/popover.types.ts +290 -0
  151. package/lib/__templates__/expo/client/heroui/components/pressable-feedback/index.ts +4 -0
  152. package/lib/__templates__/expo/client/heroui/components/pressable-feedback/pressable-feedback.animation.ts +449 -0
  153. package/lib/__templates__/expo/client/heroui/components/pressable-feedback/pressable-feedback.constants.ts +12 -0
  154. package/lib/__templates__/expo/client/heroui/components/pressable-feedback/pressable-feedback.md +328 -0
  155. package/lib/__templates__/expo/client/heroui/components/pressable-feedback/pressable-feedback.styles.ts +85 -0
  156. package/lib/__templates__/expo/client/heroui/components/pressable-feedback/pressable-feedback.tsx +330 -0
  157. package/lib/__templates__/expo/client/heroui/components/pressable-feedback/pressable-feedback.types.ts +386 -0
  158. package/lib/__templates__/expo/client/heroui/components/radio/index.ts +9 -0
  159. package/lib/__templates__/expo/client/heroui/components/radio/radio.animation.ts +92 -0
  160. package/lib/__templates__/expo/client/heroui/components/radio/radio.constants.ts +11 -0
  161. package/lib/__templates__/expo/client/heroui/components/radio/radio.md +339 -0
  162. package/lib/__templates__/expo/client/heroui/components/radio/radio.styles.ts +80 -0
  163. package/lib/__templates__/expo/client/heroui/components/radio/radio.tsx +217 -0
  164. package/lib/__templates__/expo/client/heroui/components/radio/radio.types.ts +106 -0
  165. package/lib/__templates__/expo/client/heroui/components/radio-group/index.ts +9 -0
  166. package/lib/__templates__/expo/client/heroui/components/radio-group/radio-group.animation.ts +20 -0
  167. package/lib/__templates__/expo/client/heroui/components/radio-group/radio-group.constants.ts +7 -0
  168. package/lib/__templates__/expo/client/heroui/components/radio-group/radio-group.context.ts +14 -0
  169. package/lib/__templates__/expo/client/heroui/components/radio-group/radio-group.md +273 -0
  170. package/lib/__templates__/expo/client/heroui/components/radio-group/radio-group.styles.ts +15 -0
  171. package/lib/__templates__/expo/client/heroui/components/radio-group/radio-group.tsx +220 -0
  172. package/lib/__templates__/expo/client/heroui/components/radio-group/radio-group.types.ts +64 -0
  173. package/lib/__templates__/expo/client/heroui/components/scroll-shadow/index.ts +7 -0
  174. package/lib/__templates__/expo/client/heroui/components/scroll-shadow/scroll-shadow.animation.ts +132 -0
  175. package/lib/__templates__/expo/client/heroui/components/scroll-shadow/scroll-shadow.constants.ts +21 -0
  176. package/lib/__templates__/expo/client/heroui/components/scroll-shadow/scroll-shadow.md +206 -0
  177. package/lib/__templates__/expo/client/heroui/components/scroll-shadow/scroll-shadow.styles.ts +52 -0
  178. package/lib/__templates__/expo/client/heroui/components/scroll-shadow/scroll-shadow.tsx +262 -0
  179. package/lib/__templates__/expo/client/heroui/components/scroll-shadow/scroll-shadow.types.ts +121 -0
  180. package/lib/__templates__/expo/client/heroui/components/search-field/index.ts +17 -0
  181. package/lib/__templates__/expo/client/heroui/components/search-field/search-field.animation.ts +18 -0
  182. package/lib/__templates__/expo/client/heroui/components/search-field/search-field.constants.ts +10 -0
  183. package/lib/__templates__/expo/client/heroui/components/search-field/search-field.md +231 -0
  184. package/lib/__templates__/expo/client/heroui/components/search-field/search-field.styles.ts +35 -0
  185. package/lib/__templates__/expo/client/heroui/components/search-field/search-field.tsx +253 -0
  186. package/lib/__templates__/expo/client/heroui/components/search-field/search-field.types.ts +160 -0
  187. package/lib/__templates__/expo/client/heroui/components/search-field/search-icon.tsx +37 -0
  188. package/lib/__templates__/expo/client/heroui/components/select/index.ts +28 -0
  189. package/lib/__templates__/expo/client/heroui/components/select/select.animation.ts +92 -0
  190. package/lib/__templates__/expo/client/heroui/components/select/select.constants.ts +53 -0
  191. package/lib/__templates__/expo/client/heroui/components/select/select.md +796 -0
  192. package/lib/__templates__/expo/client/heroui/components/select/select.styles.ts +149 -0
  193. package/lib/__templates__/expo/client/heroui/components/select/select.tsx +828 -0
  194. package/lib/__templates__/expo/client/heroui/components/select/select.types.ts +438 -0
  195. package/lib/__templates__/expo/client/heroui/components/separator/index.ts +7 -0
  196. package/lib/__templates__/expo/client/heroui/components/separator/separator.constants.ts +6 -0
  197. package/lib/__templates__/expo/client/heroui/components/separator/separator.md +106 -0
  198. package/lib/__templates__/expo/client/heroui/components/separator/separator.styles.ts +50 -0
  199. package/lib/__templates__/expo/client/heroui/components/separator/separator.tsx +62 -0
  200. package/lib/__templates__/expo/client/heroui/components/separator/separator.types.ts +40 -0
  201. package/lib/__templates__/expo/client/heroui/components/skeleton/index.ts +7 -0
  202. package/lib/__templates__/expo/client/heroui/components/skeleton/linear-gradient.tsx +45 -0
  203. package/lib/__templates__/expo/client/heroui/components/skeleton/skeleton.animation.ts +350 -0
  204. package/lib/__templates__/expo/client/heroui/components/skeleton/skeleton.constants.ts +39 -0
  205. package/lib/__templates__/expo/client/heroui/components/skeleton/skeleton.md +208 -0
  206. package/lib/__templates__/expo/client/heroui/components/skeleton/skeleton.styles.ts +49 -0
  207. package/lib/__templates__/expo/client/heroui/components/skeleton/skeleton.tsx +183 -0
  208. package/lib/__templates__/expo/client/heroui/components/skeleton/skeleton.types.ts +191 -0
  209. package/lib/__templates__/expo/client/heroui/components/skeleton-group/index.ts +7 -0
  210. package/lib/__templates__/expo/client/heroui/components/skeleton-group/skeleton-group.constants.ts +7 -0
  211. package/lib/__templates__/expo/client/heroui/components/skeleton-group/skeleton-group.md +247 -0
  212. package/lib/__templates__/expo/client/heroui/components/skeleton-group/skeleton-group.styles.ts +10 -0
  213. package/lib/__templates__/expo/client/heroui/components/skeleton-group/skeleton-group.tsx +94 -0
  214. package/lib/__templates__/expo/client/heroui/components/skeleton-group/skeleton-group.types.ts +28 -0
  215. package/lib/__templates__/expo/client/heroui/components/slider/index.ts +23 -0
  216. package/lib/__templates__/expo/client/heroui/components/slider/slider.animation.ts +87 -0
  217. package/lib/__templates__/expo/client/heroui/components/slider/slider.constants.ts +24 -0
  218. package/lib/__templates__/expo/client/heroui/components/slider/slider.md +348 -0
  219. package/lib/__templates__/expo/client/heroui/components/slider/slider.styles.ts +85 -0
  220. package/lib/__templates__/expo/client/heroui/components/slider/slider.tsx +413 -0
  221. package/lib/__templates__/expo/client/heroui/components/slider/slider.types.ts +120 -0
  222. package/lib/__templates__/expo/client/heroui/components/spinner/index.ts +10 -0
  223. package/lib/__templates__/expo/client/heroui/components/spinner/spinner-icon.tsx +49 -0
  224. package/lib/__templates__/expo/client/heroui/components/spinner/spinner.animation.ts +150 -0
  225. package/lib/__templates__/expo/client/heroui/components/spinner/spinner.constants.ts +36 -0
  226. package/lib/__templates__/expo/client/heroui/components/spinner/spinner.md +199 -0
  227. package/lib/__templates__/expo/client/heroui/components/spinner/spinner.styles.ts +44 -0
  228. package/lib/__templates__/expo/client/heroui/components/spinner/spinner.tsx +198 -0
  229. package/lib/__templates__/expo/client/heroui/components/spinner/spinner.types.ts +158 -0
  230. package/lib/__templates__/expo/client/heroui/components/surface/index.ts +3 -0
  231. package/lib/__templates__/expo/client/heroui/components/surface/surface.animation.ts +18 -0
  232. package/lib/__templates__/expo/client/heroui/components/surface/surface.constants.ts +6 -0
  233. package/lib/__templates__/expo/client/heroui/components/surface/surface.md +136 -0
  234. package/lib/__templates__/expo/client/heroui/components/surface/surface.styles.ts +28 -0
  235. package/lib/__templates__/expo/client/heroui/components/surface/surface.tsx +66 -0
  236. package/lib/__templates__/expo/client/heroui/components/surface/surface.types.ts +46 -0
  237. package/lib/__templates__/expo/client/heroui/components/switch/index.ts +3 -0
  238. package/lib/__templates__/expo/client/heroui/components/switch/switch.animation.ts +243 -0
  239. package/lib/__templates__/expo/client/heroui/components/switch/switch.constants.ts +26 -0
  240. package/lib/__templates__/expo/client/heroui/components/switch/switch.md +334 -0
  241. package/lib/__templates__/expo/client/heroui/components/switch/switch.styles.ts +83 -0
  242. package/lib/__templates__/expo/client/heroui/components/switch/switch.tsx +280 -0
  243. package/lib/__templates__/expo/client/heroui/components/switch/switch.types.ts +208 -0
  244. package/lib/__templates__/expo/client/heroui/components/tabs/index.ts +8 -0
  245. package/lib/__templates__/expo/client/heroui/components/tabs/tabs.animation.ts +246 -0
  246. package/lib/__templates__/expo/client/heroui/components/tabs/tabs.constants.ts +17 -0
  247. package/lib/__templates__/expo/client/heroui/components/tabs/tabs.context.ts +28 -0
  248. package/lib/__templates__/expo/client/heroui/components/tabs/tabs.md +565 -0
  249. package/lib/__templates__/expo/client/heroui/components/tabs/tabs.styles.ts +168 -0
  250. package/lib/__templates__/expo/client/heroui/components/tabs/tabs.tsx +445 -0
  251. package/lib/__templates__/expo/client/heroui/components/tabs/tabs.types.ts +341 -0
  252. package/lib/__templates__/expo/client/heroui/components/tag-group/index.ts +15 -0
  253. package/lib/__templates__/expo/client/heroui/components/tag-group/tag-group.animation.ts +17 -0
  254. package/lib/__templates__/expo/client/heroui/components/tag-group/tag-group.constants.ts +10 -0
  255. package/lib/__templates__/expo/client/heroui/components/tag-group/tag-group.md +404 -0
  256. package/lib/__templates__/expo/client/heroui/components/tag-group/tag-group.styles.ts +74 -0
  257. package/lib/__templates__/expo/client/heroui/components/tag-group/tag-group.tsx +325 -0
  258. package/lib/__templates__/expo/client/heroui/components/tag-group/tag-group.types.ts +125 -0
  259. package/lib/__templates__/expo/client/heroui/components/text-area/index.ts +3 -0
  260. package/lib/__templates__/expo/client/heroui/components/text-area/text-area.constants.ts +6 -0
  261. package/lib/__templates__/expo/client/heroui/components/text-area/text-area.md +133 -0
  262. package/lib/__templates__/expo/client/heroui/components/text-area/text-area.styles.ts +10 -0
  263. package/lib/__templates__/expo/client/heroui/components/text-area/text-area.tsx +44 -0
  264. package/lib/__templates__/expo/client/heroui/components/text-area/text-area.types.ts +6 -0
  265. package/lib/__templates__/expo/client/heroui/components/text-field/index.ts +3 -0
  266. package/lib/__templates__/expo/client/heroui/components/text-field/text-field.animation.ts +20 -0
  267. package/lib/__templates__/expo/client/heroui/components/text-field/text-field.constants.ts +6 -0
  268. package/lib/__templates__/expo/client/heroui/components/text-field/text-field.md +256 -0
  269. package/lib/__templates__/expo/client/heroui/components/text-field/text-field.styles.ts +10 -0
  270. package/lib/__templates__/expo/client/heroui/components/text-field/text-field.tsx +82 -0
  271. package/lib/__templates__/expo/client/heroui/components/text-field/text-field.types.ts +56 -0
  272. package/lib/__templates__/expo/client/heroui/components/toast/index.ts +4 -0
  273. package/lib/__templates__/expo/client/heroui/components/toast/toast.animation.ts +381 -0
  274. package/lib/__templates__/expo/client/heroui/components/toast/toast.constants.ts +10 -0
  275. package/lib/__templates__/expo/client/heroui/components/toast/toast.hooks.ts +73 -0
  276. package/lib/__templates__/expo/client/heroui/components/toast/toast.md +420 -0
  277. package/lib/__templates__/expo/client/heroui/components/toast/toast.styles.ts +89 -0
  278. package/lib/__templates__/expo/client/heroui/components/toast/toast.tsx +472 -0
  279. package/lib/__templates__/expo/client/heroui/components/toast/toast.types.ts +320 -0
  280. package/lib/__templates__/expo/client/heroui/docs.md +54 -0
  281. package/lib/__templates__/expo/client/heroui/helpers/external/hooks/index.ts +3 -0
  282. package/lib/__templates__/expo/client/heroui/helpers/external/hooks/use-is-on-surface.ts +8 -0
  283. package/lib/__templates__/expo/client/heroui/helpers/external/hooks/use-theme-color.ts +137 -0
  284. package/lib/__templates__/expo/client/heroui/helpers/external/utils/cn.ts +12 -0
  285. package/lib/__templates__/expo/client/heroui/helpers/external/utils/color-kit/index.ts +2392 -0
  286. package/lib/__templates__/expo/client/heroui/helpers/external/utils/color-kit/types.ts +212 -0
  287. package/lib/__templates__/expo/client/heroui/helpers/external/utils/index.ts +2 -0
  288. package/lib/__templates__/expo/client/heroui/helpers/internal/components/animated-check-icon.tsx +78 -0
  289. package/lib/__templates__/expo/client/heroui/helpers/internal/components/bottom-sheet-content-container.tsx +97 -0
  290. package/lib/__templates__/expo/client/heroui/helpers/internal/components/bottom-sheet-content.tsx +158 -0
  291. package/lib/__templates__/expo/client/heroui/helpers/internal/components/check-icon.tsx +28 -0
  292. package/lib/__templates__/expo/client/heroui/helpers/internal/components/chevron-down-icon.tsx +28 -0
  293. package/lib/__templates__/expo/client/heroui/helpers/internal/components/chevron-right-icon.tsx +29 -0
  294. package/lib/__templates__/expo/client/heroui/helpers/internal/components/close-icon.tsx +29 -0
  295. package/lib/__templates__/expo/client/heroui/helpers/internal/components/full-window-overlay.tsx +48 -0
  296. package/lib/__templates__/expo/client/heroui/helpers/internal/components/hero-text.tsx +71 -0
  297. package/lib/__templates__/expo/client/heroui/helpers/internal/components/index.ts +9 -0
  298. package/lib/__templates__/expo/client/heroui/helpers/internal/contexts/animation-settings-context.ts +19 -0
  299. package/lib/__templates__/expo/client/heroui/helpers/internal/contexts/bottom-sheet-is-dragging-context.ts +11 -0
  300. package/lib/__templates__/expo/client/heroui/helpers/internal/contexts/form-field-context.ts +36 -0
  301. package/lib/__templates__/expo/client/heroui/helpers/internal/contexts/index.ts +3 -0
  302. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/index.ts +14 -0
  303. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-augmented-ref.ts +32 -0
  304. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-bottom-sheet-aware-handlers.ts +94 -0
  305. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-bottom-sheet-gesture-handlers.ts +52 -0
  306. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-combined-animation-disabled-state.ts +49 -0
  307. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-controllable-state.ts +124 -0
  308. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-dev-info.ts +38 -0
  309. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-keyboard-status.ts +22 -0
  310. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-popup-bottom-sheet-content-animation.ts +67 -0
  311. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-popup-dialog-content-animation.ts +296 -0
  312. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-popup-overlay-animation.ts +91 -0
  313. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-popup-popover-content-animation.ts +199 -0
  314. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-popup-root-animation.ts +26 -0
  315. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-relative-position.ts +353 -0
  316. package/lib/__templates__/expo/client/heroui/helpers/internal/hooks/use-resolved-style-property.ts +118 -0
  317. package/lib/__templates__/expo/client/heroui/helpers/internal/types/animation.ts +131 -0
  318. package/lib/__templates__/expo/client/heroui/helpers/internal/types/bottom-sheet.ts +99 -0
  319. package/lib/__templates__/expo/client/heroui/helpers/internal/types/index.ts +5 -0
  320. package/lib/__templates__/expo/client/heroui/helpers/internal/types/misc.ts +10 -0
  321. package/lib/__templates__/expo/client/heroui/helpers/internal/types/primitives.ts +146 -0
  322. package/lib/__templates__/expo/client/heroui/helpers/internal/types/theme.ts +18 -0
  323. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/animation.ts +266 -0
  324. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/children-to-string.ts +117 -0
  325. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/combine-styles.ts +17 -0
  326. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/create-context.ts +60 -0
  327. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/ease-gradient/create-interpolation.ts +35 -0
  328. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/ease-gradient/index.ts +97 -0
  329. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/get-element-by-display-name.ts +15 -0
  330. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/get-element-with-default.ts +17 -0
  331. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/has-prop.ts +18 -0
  332. package/lib/__templates__/expo/client/heroui/helpers/internal/utils/index.ts +8 -0
  333. package/lib/__templates__/expo/client/heroui/index.tsx +51 -0
  334. package/lib/__templates__/expo/client/heroui/primitives/README.md +27 -0
  335. package/lib/__templates__/expo/client/heroui/primitives/accordion/accordion.tsx +270 -0
  336. package/lib/__templates__/expo/client/heroui/primitives/accordion/accordion.types.ts +117 -0
  337. package/lib/__templates__/expo/client/heroui/primitives/accordion/accordion.utils.ts +12 -0
  338. package/lib/__templates__/expo/client/heroui/primitives/accordion/index.ts +2 -0
  339. package/lib/__templates__/expo/client/heroui/primitives/activity-indicator/activity-indicator.tsx +50 -0
  340. package/lib/__templates__/expo/client/heroui/primitives/activity-indicator/activity-indicator.types.ts +24 -0
  341. package/lib/__templates__/expo/client/heroui/primitives/activity-indicator/index.ts +2 -0
  342. package/lib/__templates__/expo/client/heroui/primitives/alert/alert.tsx +124 -0
  343. package/lib/__templates__/expo/client/heroui/primitives/alert/alert.types.ts +87 -0
  344. package/lib/__templates__/expo/client/heroui/primitives/alert/index.ts +2 -0
  345. package/lib/__templates__/expo/client/heroui/primitives/avatar/avatar.tsx +171 -0
  346. package/lib/__templates__/expo/client/heroui/primitives/avatar/avatar.types.ts +62 -0
  347. package/lib/__templates__/expo/client/heroui/primitives/avatar/avatar.utils.ts +102 -0
  348. package/lib/__templates__/expo/client/heroui/primitives/avatar/index.ts +2 -0
  349. package/lib/__templates__/expo/client/heroui/primitives/bottom-sheet/bottom-sheet.tsx +235 -0
  350. package/lib/__templates__/expo/client/heroui/primitives/bottom-sheet/bottom-sheet.types.ts +127 -0
  351. package/lib/__templates__/expo/client/heroui/primitives/bottom-sheet/index.ts +2 -0
  352. package/lib/__templates__/expo/client/heroui/primitives/checkbox/checkbox.tsx +119 -0
  353. package/lib/__templates__/expo/client/heroui/primitives/checkbox/checkbox.types.ts +37 -0
  354. package/lib/__templates__/expo/client/heroui/primitives/checkbox/index.ts +2 -0
  355. package/lib/__templates__/expo/client/heroui/primitives/dialog/dialog.tsx +274 -0
  356. package/lib/__templates__/expo/client/heroui/primitives/dialog/dialog.types.ts +129 -0
  357. package/lib/__templates__/expo/client/heroui/primitives/dialog/index.ts +2 -0
  358. package/lib/__templates__/expo/client/heroui/primitives/input-otp/index.ts +3 -0
  359. package/lib/__templates__/expo/client/heroui/primitives/input-otp/input-otp.tsx +431 -0
  360. package/lib/__templates__/expo/client/heroui/primitives/input-otp/input-otp.types.ts +169 -0
  361. package/lib/__templates__/expo/client/heroui/primitives/input-otp/input-otp.utils.ts +31 -0
  362. package/lib/__templates__/expo/client/heroui/primitives/label/index.ts +2 -0
  363. package/lib/__templates__/expo/client/heroui/primitives/label/label.tsx +24 -0
  364. package/lib/__templates__/expo/client/heroui/primitives/label/label.types.ts +39 -0
  365. package/lib/__templates__/expo/client/heroui/primitives/menu/index.ts +2 -0
  366. package/lib/__templates__/expo/client/heroui/primitives/menu/menu.tsx +765 -0
  367. package/lib/__templates__/expo/client/heroui/primitives/menu/menu.types.ts +401 -0
  368. package/lib/__templates__/expo/client/heroui/primitives/popover/index.ts +2 -0
  369. package/lib/__templates__/expo/client/heroui/primitives/popover/popover.tsx +382 -0
  370. package/lib/__templates__/expo/client/heroui/primitives/popover/popover.types.ts +201 -0
  371. package/lib/__templates__/expo/client/heroui/primitives/portal/index.ts +1 -0
  372. package/lib/__templates__/expo/client/heroui/primitives/portal/portal.tsx +126 -0
  373. package/lib/__templates__/expo/client/heroui/primitives/radio/index.ts +2 -0
  374. package/lib/__templates__/expo/client/heroui/primitives/radio/radio.tsx +133 -0
  375. package/lib/__templates__/expo/client/heroui/primitives/radio/radio.types.ts +47 -0
  376. package/lib/__templates__/expo/client/heroui/primitives/radio-group/index.ts +2 -0
  377. package/lib/__templates__/expo/client/heroui/primitives/radio-group/radio-group.tsx +114 -0
  378. package/lib/__templates__/expo/client/heroui/primitives/radio-group/radio-group.types.ts +65 -0
  379. package/lib/__templates__/expo/client/heroui/primitives/select/index.ts +2 -0
  380. package/lib/__templates__/expo/client/heroui/primitives/select/select.tsx +705 -0
  381. package/lib/__templates__/expo/client/heroui/primitives/select/select.types.ts +409 -0
  382. package/lib/__templates__/expo/client/heroui/primitives/select/select.utils.ts +35 -0
  383. package/lib/__templates__/expo/client/heroui/primitives/slider/index.ts +3 -0
  384. package/lib/__templates__/expo/client/heroui/primitives/slider/slider.tsx +463 -0
  385. package/lib/__templates__/expo/client/heroui/primitives/slider/slider.types.ts +208 -0
  386. package/lib/__templates__/expo/client/heroui/primitives/slider/slider.utils.ts +93 -0
  387. package/lib/__templates__/expo/client/heroui/primitives/slot/index.ts +1 -0
  388. package/lib/__templates__/expo/client/heroui/primitives/slot/slot.tsx +121 -0
  389. package/lib/__templates__/expo/client/heroui/primitives/slot/types.ts +19 -0
  390. package/lib/__templates__/expo/client/heroui/primitives/slot/utils.ts +96 -0
  391. package/lib/__templates__/expo/client/heroui/primitives/switch/index.ts +2 -0
  392. package/lib/__templates__/expo/client/heroui/primitives/switch/switch.tsx +61 -0
  393. package/lib/__templates__/expo/client/heroui/primitives/switch/switch.types.ts +55 -0
  394. package/lib/__templates__/expo/client/heroui/primitives/tabs/index.ts +2 -0
  395. package/lib/__templates__/expo/client/heroui/primitives/tabs/tabs.tsx +202 -0
  396. package/lib/__templates__/expo/client/heroui/primitives/tabs/tabs.types.ts +77 -0
  397. package/lib/__templates__/expo/client/heroui/primitives/tag-group/index.ts +2 -0
  398. package/lib/__templates__/expo/client/heroui/primitives/tag-group/tag-group.tsx +324 -0
  399. package/lib/__templates__/expo/client/heroui/primitives/tag-group/tag-group.types.ts +119 -0
  400. package/lib/__templates__/expo/client/heroui/primitives/toast/index.ts +2 -0
  401. package/lib/__templates__/expo/client/heroui/primitives/toast/toast.tsx +138 -0
  402. package/lib/__templates__/expo/client/heroui/primitives/toast/toast.types.ts +86 -0
  403. package/lib/__templates__/expo/client/heroui/providers/animation-settings/index.ts +8 -0
  404. package/lib/__templates__/expo/client/heroui/providers/animation-settings/provider.tsx +47 -0
  405. package/lib/__templates__/expo/client/heroui/providers/animation-settings/types.ts +27 -0
  406. package/lib/__templates__/expo/client/heroui/providers/hero-ui-native/index.ts +2 -0
  407. package/lib/__templates__/expo/client/heroui/providers/hero-ui-native/provider.tsx +67 -0
  408. package/lib/__templates__/expo/client/heroui/providers/hero-ui-native/types.ts +114 -0
  409. package/lib/__templates__/expo/client/heroui/providers/hero-ui-native-raw/index.ts +2 -0
  410. package/lib/__templates__/expo/client/heroui/providers/hero-ui-native-raw/provider.tsx +50 -0
  411. package/lib/__templates__/expo/client/heroui/providers/hero-ui-native-raw/types.ts +39 -0
  412. package/lib/__templates__/expo/client/heroui/providers/text-component/index.ts +2 -0
  413. package/lib/__templates__/expo/client/heroui/providers/text-component/provider.tsx +9 -0
  414. package/lib/__templates__/expo/client/heroui/providers/text-component/types.ts +52 -0
  415. package/lib/__templates__/expo/client/heroui/providers/toast/index.ts +3 -0
  416. package/lib/__templates__/expo/client/heroui/providers/toast/insets-container.tsx +87 -0
  417. package/lib/__templates__/expo/client/heroui/providers/toast/provider.tsx +431 -0
  418. package/lib/__templates__/expo/client/heroui/providers/toast/reducer.ts +34 -0
  419. package/lib/__templates__/expo/client/heroui/providers/toast/toast-config.context.ts +27 -0
  420. package/lib/__templates__/expo/client/heroui/providers/toast/toast-item-renderer.tsx +45 -0
  421. package/lib/__templates__/expo/client/heroui/providers/toast/types.ts +373 -0
  422. package/lib/__templates__/expo/client/heroui/styles/index.css +3 -0
  423. package/lib/__templates__/expo/client/heroui/styles/theme.css +112 -0
  424. package/lib/__templates__/expo/client/heroui/styles/utilities.css +8 -0
  425. package/lib/__templates__/expo/client/heroui/styles/variables.css +146 -0
  426. package/lib/__templates__/expo/client/metro.config.js +8 -1
  427. package/lib/__templates__/expo/client/package.json +7 -2
  428. package/lib/__templates__/expo/client/screens/demo/index.tsx +7 -13
  429. package/lib/__templates__/expo/client/theme.css +263 -0
  430. package/lib/__templates__/expo/client/uniwind-types.d.ts +10 -0
  431. package/lib/__templates__/expo/pnpm-lock.yaml +101 -45
  432. package/lib/__templates__/expo/server/package.json +9 -7
  433. package/lib/__templates__/nextjs/package.json +3 -1
  434. package/lib/__templates__/nextjs/pnpm-lock.yaml +119 -106
  435. package/lib/__templates__/taro/.cozeproj/scripts/deploy_build.sh +2 -2
  436. package/lib/__templates__/taro/.cozeproj/scripts/deploy_run.sh +4 -3
  437. package/lib/__templates__/taro/.cozeproj/scripts/dev_build.sh +0 -15
  438. package/lib/__templates__/taro/.cozeproj/scripts/dev_run.sh +27 -5
  439. package/lib/__templates__/taro/README.md +77 -17
  440. package/lib/__templates__/taro/package.json +4 -2
  441. package/lib/__templates__/taro/pnpm-lock.yaml +392 -114
  442. package/lib/__templates__/taro/server/package.json +4 -1
  443. package/lib/__templates__/taro/server/src/main.ts +14 -2
  444. package/lib/__templates__/taro/src/app.css +18 -18
  445. package/lib/__templates__/taro/src/index.html +20 -1
  446. package/lib/__templates__/taro/src/utils/h5-styles.ts +15 -4
  447. package/lib/__templates__/vite/package.json +5 -1
  448. package/lib/__templates__/vite/pnpm-lock.yaml +146 -1659
  449. package/lib/cli.js +5 -59
  450. package/package.json +1 -1
  451. package/lib/__templates__/expo/client/constants/theme.ts +0 -177
  452. package/lib/__templates__/expo/client/hooks/useColorScheme.tsx +0 -48
  453. package/lib/__templates__/expo/client/hooks/useTheme.ts +0 -33
  454. package/lib/__templates__/expo/client/screens/demo/styles.ts +0 -28
@@ -10,13 +10,20 @@ overrides:
10
10
  importers:
11
11
 
12
12
  .:
13
+ dependencies:
14
+ '@supabase/supabase-js':
15
+ specifier: 2.95.3
16
+ version: 2.95.3
17
+ dotenv:
18
+ specifier: ^17.2.3
19
+ version: 17.2.4
13
20
  devDependencies:
14
21
  autoprefixer:
15
22
  specifier: ^10.4.20
16
23
  version: 10.4.23(postcss@8.5.6)
17
24
  coze-coding-dev-sdk:
18
- specifier: ^0.7.3
19
- version: 0.7.3(openai@6.16.0(zod@4.3.5))
25
+ specifier: ^0.7.16
26
+ version: 0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))(ws@8.19.0)
20
27
  eslint:
21
28
  specifier: ^9
22
29
  version: 9.39.2(jiti@1.21.7)
@@ -37,7 +44,7 @@ importers:
37
44
  version: 8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)
38
45
  vite:
39
46
  specifier: ^7.2.4
40
- version: 7.3.1(jiti@1.21.7)
47
+ version: 7.3.1(@types/node@25.2.3)(jiti@1.21.7)
41
48
 
42
49
  packages:
43
50
 
@@ -45,189 +52,9 @@ packages:
45
52
  resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
46
53
  engines: {node: '>=10'}
47
54
 
48
- '@aws-crypto/crc32@5.2.0':
49
- resolution: {integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==}
50
- engines: {node: '>=16.0.0'}
51
-
52
- '@aws-crypto/crc32c@5.2.0':
53
- resolution: {integrity: sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==}
54
-
55
- '@aws-crypto/sha1-browser@5.2.0':
56
- resolution: {integrity: sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg==}
57
-
58
- '@aws-crypto/sha256-browser@5.2.0':
59
- resolution: {integrity: sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==}
60
-
61
- '@aws-crypto/sha256-js@5.2.0':
62
- resolution: {integrity: sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==}
63
- engines: {node: '>=16.0.0'}
64
-
65
- '@aws-crypto/supports-web-crypto@5.2.0':
66
- resolution: {integrity: sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==}
67
-
68
- '@aws-crypto/util@5.2.0':
69
- resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
70
-
71
- '@aws-sdk/client-s3@3.972.0':
72
- resolution: {integrity: sha512-ghpDQtjZvbhbnHWymq/V5TL8NppdAGF2THAxYRRBLCJ5JRlq71T24NdovAzvzYaGdH7HtcRkgErBRsFT1gtq4g==}
73
- engines: {node: '>=20.0.0'}
74
-
75
- '@aws-sdk/client-sso@3.972.0':
76
- resolution: {integrity: sha512-5qw6qLiRE4SUiz0hWy878dSR13tSVhbTWhsvFT8mGHe37NRRiaobm5MA2sWD0deRAuO98djSiV+dhWXa1xIFNw==}
77
- engines: {node: '>=20.0.0'}
78
-
79
- '@aws-sdk/core@3.972.0':
80
- resolution: {integrity: sha512-nEeUW2M9F+xdIaD98F5MBcQ4ITtykj3yKbgFZ6J0JtL3bq+Z90szQ6Yy8H/BLPYXTs3V4n9ifnBo8cprRDiE6A==}
81
- engines: {node: '>=20.0.0'}
82
-
83
- '@aws-sdk/crc64-nvme@3.972.0':
84
- resolution: {integrity: sha512-ThlLhTqX68jvoIVv+pryOdb5coP1cX1/MaTbB9xkGDCbWbsqQcLqzPxuSoW1DCnAAIacmXCWpzUNOB9pv+xXQw==}
85
- engines: {node: '>=20.0.0'}
86
-
87
- '@aws-sdk/credential-provider-env@3.972.0':
88
- resolution: {integrity: sha512-kKHoNv+maHlPQOAhYamhap0PObd16SAb3jwaY0KYgNTiSbeXlbGUZPLioo9oA3wU10zItJzx83ClU7d7h40luA==}
89
- engines: {node: '>=20.0.0'}
90
-
91
- '@aws-sdk/credential-provider-http@3.972.0':
92
- resolution: {integrity: sha512-xzEi81L7I5jGUbpmqEHCe7zZr54hCABdj4H+3LzktHYuovV/oqnvoDdvZpGFR0e/KAw1+PL38NbGrpG30j6qlA==}
93
- engines: {node: '>=20.0.0'}
94
-
95
- '@aws-sdk/credential-provider-ini@3.972.0':
96
- resolution: {integrity: sha512-ruhAMceUIq2aknFd3jhWxmO0P0Efab5efjyIXOkI9i80g+zDY5VekeSxfqRKStEEJSKSCHDLQuOu0BnAn4Rzew==}
97
- engines: {node: '>=20.0.0'}
98
-
99
- '@aws-sdk/credential-provider-login@3.972.0':
100
- resolution: {integrity: sha512-SsrsFJsEYAJHO4N/r2P0aK6o8si6f1lprR+Ej8J731XJqTckSGs/HFHcbxOyW/iKt+LNUvZa59/VlJmjhF4bEQ==}
101
- engines: {node: '>=20.0.0'}
102
-
103
- '@aws-sdk/credential-provider-node@3.972.0':
104
- resolution: {integrity: sha512-wwJDpEGl6+sOygic8QKu0OHVB8SiodqF1fr5jvUlSFfS6tJss/E9vBc2aFjl7zI6KpAIYfIzIgM006lRrZtWCQ==}
105
- engines: {node: '>=20.0.0'}
106
-
107
- '@aws-sdk/credential-provider-process@3.972.0':
108
- resolution: {integrity: sha512-nmzYhamLDJ8K+v3zWck79IaKMc350xZnWsf/GeaXO6E3MewSzd3lYkTiMi7lEp3/UwDm9NHfPguoPm+mhlSWQQ==}
109
- engines: {node: '>=20.0.0'}
110
-
111
- '@aws-sdk/credential-provider-sso@3.972.0':
112
- resolution: {integrity: sha512-6mYyfk1SrMZ15cH9T53yAF4YSnvq4yU1Xlgm3nqV1gZVQzmF5kr4t/F3BU3ygbvzi4uSwWxG3I3TYYS5eMlAyg==}
113
- engines: {node: '>=20.0.0'}
114
-
115
- '@aws-sdk/credential-provider-web-identity@3.972.0':
116
- resolution: {integrity: sha512-vsJXBGL8H54kz4T6do3p5elATj5d1izVGUXMluRJntm9/I0be/zUYtdd4oDTM2kSUmd4Zhyw3fMQ9lw7CVhd4A==}
117
- engines: {node: '>=20.0.0'}
118
-
119
- '@aws-sdk/lib-storage@3.972.0':
120
- resolution: {integrity: sha512-4xNJ1B4zKzvwEedNuhJRoLmrNCfHorwBFvZjjR/bFSWxxCK0Mh5NSarB4sgeycVyZjCwOGFTFHxk4RtXi9JksA==}
121
- engines: {node: '>=20.0.0'}
122
- peerDependencies:
123
- '@aws-sdk/client-s3': 3.972.0
124
-
125
- '@aws-sdk/middleware-bucket-endpoint@3.972.0':
126
- resolution: {integrity: sha512-IrIjAehc3PrseAGfk2ldtAf+N0BAnNHR1DCZIDh9IAcFrTVWC3Fi9KJdtabrxcY3Onpt/8opOco4EIEAWgMz7A==}
127
- engines: {node: '>=20.0.0'}
128
-
129
- '@aws-sdk/middleware-expect-continue@3.972.0':
130
- resolution: {integrity: sha512-xyhDoY0qse8MvQC4RZCpT5WoIQ4/kwqv71Dh1s3mdXjL789Z4a6L/khBTSXECR5+egSZ960AInj3aR+CrezDRQ==}
131
- engines: {node: '>=20.0.0'}
132
-
133
- '@aws-sdk/middleware-flexible-checksums@3.972.0':
134
- resolution: {integrity: sha512-zxK0ezmT7fLEPJ650S8QBc4rGDq5+5rdsLnnuZ6hPaZE4/+QtUoTw+gSDETyiWodNcRuz2ZWnqi17K+7nKtSRg==}
135
- engines: {node: '>=20.0.0'}
136
-
137
- '@aws-sdk/middleware-host-header@3.972.0':
138
- resolution: {integrity: sha512-3eztFI6F9/eHtkIaWKN3nT+PM+eQ6p1MALDuNshFk323ixuCZzOOVT8oUqtZa30Z6dycNXJwhlIq7NhUVFfimw==}
139
- engines: {node: '>=20.0.0'}
140
-
141
- '@aws-sdk/middleware-location-constraint@3.972.0':
142
- resolution: {integrity: sha512-WpsxoVPzbGPQGb/jupNYjpE0REcCPtjz7Q7zAt+dyo7fxsLBn4J+Rp6AYzSa04J9VrmrvCqCbVLu6B88PlSKSQ==}
143
- engines: {node: '>=20.0.0'}
144
-
145
- '@aws-sdk/middleware-logger@3.972.0':
146
- resolution: {integrity: sha512-ZvdyVRwzK+ra31v1pQrgbqR/KsLD+wwJjHgko6JfoKUBIcEfAwJzQKO6HspHxdHWTVUz6MgvwskheR/TTYZl2g==}
147
- engines: {node: '>=20.0.0'}
148
-
149
- '@aws-sdk/middleware-recursion-detection@3.972.0':
150
- resolution: {integrity: sha512-F2SmUeO+S6l1h6dydNet3BQIk173uAkcfU1HDkw/bUdRLAnh15D3HP9vCZ7oCPBNcdEICbXYDmx0BR9rRUHGlQ==}
151
- engines: {node: '>=20.0.0'}
152
-
153
- '@aws-sdk/middleware-sdk-s3@3.972.0':
154
- resolution: {integrity: sha512-0bcKFXWx+NZ7tIlOo7KjQ+O2rydiHdIQahrq+fN6k9Osky29v17guy68urUKfhTobR6iY6KvxkroFWaFtTgS5w==}
155
- engines: {node: '>=20.0.0'}
156
-
157
- '@aws-sdk/middleware-ssec@3.972.0':
158
- resolution: {integrity: sha512-cEr2HtK4R2fi8Y0P95cjbr4KJOjKBt8ms95mEJhabJN8KM4CpD4iS/J1lhvMj+qWir0KBTV6gKmxECXdfL9S6w==}
159
- engines: {node: '>=20.0.0'}
160
-
161
- '@aws-sdk/middleware-user-agent@3.972.0':
162
- resolution: {integrity: sha512-kFHQm2OCBJCzGWRafgdWHGFjitUXY/OxXngymcX4l8CiyiNDZB27HDDBg2yLj3OUJc4z4fexLMmP8r9vgag19g==}
163
- engines: {node: '>=20.0.0'}
164
-
165
- '@aws-sdk/nested-clients@3.972.0':
166
- resolution: {integrity: sha512-QGlbnuGzSQJVG6bR9Qw6G0Blh6abFR4VxNa61ttMbzy9jt28xmk2iGtrYLrQPlCCPhY6enHqjTWm3n3LOb0wAw==}
167
- engines: {node: '>=20.0.0'}
168
-
169
- '@aws-sdk/region-config-resolver@3.972.0':
170
- resolution: {integrity: sha512-JyOf+R/6vJW8OEVFCAyzEOn2reri/Q+L0z9zx4JQSKWvTmJ1qeFO25sOm8VIfB8URKhfGRTQF30pfYaH2zxt/A==}
171
- engines: {node: '>=20.0.0'}
172
-
173
- '@aws-sdk/signature-v4-multi-region@3.972.0':
174
- resolution: {integrity: sha512-2udiRijmjpN81Pvajje4TsjbXDZNP6K9bYUanBYH8hXa/tZG5qfGCySD+TyX0sgDxCQmEDMg3LaQdfjNHBDEgQ==}
175
- engines: {node: '>=20.0.0'}
176
-
177
- '@aws-sdk/token-providers@3.972.0':
178
- resolution: {integrity: sha512-kWlXG+y5nZhgXGEtb72Je+EvqepBPs8E3vZse//1PYLWs2speFqbGE/ywCXmzEJgHgVqSB/u/lqBvs5WlYmSqQ==}
179
- engines: {node: '>=20.0.0'}
180
-
181
- '@aws-sdk/types@3.972.0':
182
- resolution: {integrity: sha512-U7xBIbLSetONxb2bNzHyDgND3oKGoIfmknrEVnoEU4GUSs+0augUOIn9DIWGUO2ETcRFdsRUnmx9KhPT9Ojbug==}
183
- engines: {node: '>=20.0.0'}
184
-
185
- '@aws-sdk/util-arn-parser@3.972.0':
186
- resolution: {integrity: sha512-RM5Mmo/KJ593iMSrALlHEOcc9YOIyOsDmS5x2NLOMdEmzv1o00fcpAkCQ02IGu1eFneBFT7uX0Mpag0HI+Cz2g==}
187
- engines: {node: '>=20.0.0'}
188
-
189
- '@aws-sdk/util-endpoints@3.972.0':
190
- resolution: {integrity: sha512-6JHsl1V/a1ZW8D8AFfd4R52fwZPnZ5H4U6DS8m/bWT8qad72NvbOFAC7U2cDtFs2TShqUO3TEiX/EJibtY3ijg==}
191
- engines: {node: '>=20.0.0'}
192
-
193
- '@aws-sdk/util-locate-window@3.965.3':
194
- resolution: {integrity: sha512-FNUqAjlKAGA7GM05kywE99q8wiPHPZqrzhq3wXRga6PRD6A0kzT85Pb0AzYBVTBRpSrKyyr6M92Y6bnSBVp2BA==}
195
- engines: {node: '>=20.0.0'}
196
-
197
- '@aws-sdk/util-user-agent-browser@3.972.0':
198
- resolution: {integrity: sha512-eOLdkQyoRbDgioTS3Orr7iVsVEutJyMZxvyZ6WAF95IrF0kfWx5Rd/KXnfbnG/VKa2CvjZiitWfouLzfVEyvJA==}
199
-
200
- '@aws-sdk/util-user-agent-node@3.972.0':
201
- resolution: {integrity: sha512-GOy+AiSrE9kGiojiwlZvVVSXwylu4+fmP0MJfvras/MwP09RB/YtQuOVR1E0fKQc6OMwaTNBjgAbOEhxuWFbAw==}
202
- engines: {node: '>=20.0.0'}
203
- peerDependencies:
204
- aws-crt: '>=1.0.0'
205
- peerDependenciesMeta:
206
- aws-crt:
207
- optional: true
208
-
209
- '@aws-sdk/xml-builder@3.972.0':
210
- resolution: {integrity: sha512-POaGMcXnozzqBUyJM3HLUZ9GR6OKJWPGJEmhtTnxZXt8B6JcJ/6K3xRJ5H/j8oovVLz8Wg6vFxAHv8lvuASxMg==}
211
- engines: {node: '>=20.0.0'}
212
-
213
- '@aws/lambda-invoke-store@0.2.3':
214
- resolution: {integrity: sha512-oLvsaPMTBejkkmHhjf09xTgk71mOqyr/409NKhRIL08If7AhVfUsJhVsx386uJaqNd42v9kWamQ9lFbkoC2dYw==}
215
- engines: {node: '>=18.0.0'}
216
-
217
55
  '@cfworker/json-schema@4.1.1':
218
56
  resolution: {integrity: sha512-gAmrUZSGtKc3AiBL71iNWxDsyUC5uMaKKGdvzYsBoTW/xi42JQHl7eKV2OYzCUqvc+D2RCcf7EXY2iCyFIk6og==}
219
57
 
220
- '@drizzle-team/brocli@0.10.2':
221
- resolution: {integrity: sha512-z33Il7l5dKjUgGULTqBsQBQwckHh5AbIuxhdsIxDDiZAzBOrZO6q9ogcWC65kU382AfynTfgNumVcNIjuIua6w==}
222
-
223
- '@esbuild-kit/core-utils@3.3.2':
224
- resolution: {integrity: sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==}
225
- deprecated: 'Merged into tsx: https://tsx.is'
226
-
227
- '@esbuild-kit/esm-loader@2.6.5':
228
- resolution: {integrity: sha512-FxEMIkJKnodyA1OaCUoEvbYRkoZlLZ4d/eXFu9Fh8CbBBgP5EmZxrfTRyN0qpXZ4vOvqnE5YdRdcrmUUXuU+dA==}
229
- deprecated: 'Merged into tsx: https://tsx.is'
230
-
231
58
  '@esbuild/aix-ppc64@0.27.2':
232
59
  resolution: {integrity: sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==}
233
60
  engines: {node: '>=18'}
@@ -507,66 +334,79 @@ packages:
507
334
  resolution: {integrity: sha512-YeGUhkN1oA+iSPzzhEjVPS29YbViOr8s4lSsFaZKLHswgqP911xx25fPOyE9+khmN6W4VeM0aevbDp4kkEoHiA==}
508
335
  cpu: [arm]
509
336
  os: [linux]
337
+ libc: [glibc]
510
338
 
511
339
  '@rollup/rollup-linux-arm-musleabihf@4.55.3':
512
340
  resolution: {integrity: sha512-eo0iOIOvcAlWB3Z3eh8pVM8hZ0oVkK3AjEM9nSrkSug2l15qHzF3TOwT0747omI6+CJJvl7drwZepT+re6Fy/w==}
513
341
  cpu: [arm]
514
342
  os: [linux]
343
+ libc: [musl]
515
344
 
516
345
  '@rollup/rollup-linux-arm64-gnu@4.55.3':
517
346
  resolution: {integrity: sha512-DJay3ep76bKUDImmn//W5SvpjRN5LmK/ntWyeJs/dcnwiiHESd3N4uteK9FDLf0S0W8E6Y0sVRXpOCoQclQqNg==}
518
347
  cpu: [arm64]
519
348
  os: [linux]
349
+ libc: [glibc]
520
350
 
521
351
  '@rollup/rollup-linux-arm64-musl@4.55.3':
522
352
  resolution: {integrity: sha512-BKKWQkY2WgJ5MC/ayvIJTHjy0JUGb5efaHCUiG/39sSUvAYRBaO3+/EK0AZT1RF3pSj86O24GLLik9mAYu0IJg==}
523
353
  cpu: [arm64]
524
354
  os: [linux]
355
+ libc: [musl]
525
356
 
526
357
  '@rollup/rollup-linux-loong64-gnu@4.55.3':
527
358
  resolution: {integrity: sha512-Q9nVlWtKAG7ISW80OiZGxTr6rYtyDSkauHUtvkQI6TNOJjFvpj4gcH+KaJihqYInnAzEEUetPQubRwHef4exVg==}
528
359
  cpu: [loong64]
529
360
  os: [linux]
361
+ libc: [glibc]
530
362
 
531
363
  '@rollup/rollup-linux-loong64-musl@4.55.3':
532
364
  resolution: {integrity: sha512-2H5LmhzrpC4fFRNwknzmmTvvyJPHwESoJgyReXeFoYYuIDfBhP29TEXOkCJE/KxHi27mj7wDUClNq78ue3QEBQ==}
533
365
  cpu: [loong64]
534
366
  os: [linux]
367
+ libc: [musl]
535
368
 
536
369
  '@rollup/rollup-linux-ppc64-gnu@4.55.3':
537
370
  resolution: {integrity: sha512-9S542V0ie9LCTznPYlvaeySwBeIEa7rDBgLHKZ5S9DBgcqdJYburabm8TqiqG6mrdTzfV5uttQRHcbKff9lWtA==}
538
371
  cpu: [ppc64]
539
372
  os: [linux]
373
+ libc: [glibc]
540
374
 
541
375
  '@rollup/rollup-linux-ppc64-musl@4.55.3':
542
376
  resolution: {integrity: sha512-ukxw+YH3XXpcezLgbJeasgxyTbdpnNAkrIlFGDl7t+pgCxZ89/6n1a+MxlY7CegU+nDgrgdqDelPRNQ/47zs0g==}
543
377
  cpu: [ppc64]
544
378
  os: [linux]
379
+ libc: [musl]
545
380
 
546
381
  '@rollup/rollup-linux-riscv64-gnu@4.55.3':
547
382
  resolution: {integrity: sha512-Iauw9UsTTvlF++FhghFJjqYxyXdggXsOqGpFBylaRopVpcbfyIIsNvkf9oGwfgIcf57z3m8+/oSYTo6HutBFNw==}
548
383
  cpu: [riscv64]
549
384
  os: [linux]
385
+ libc: [glibc]
550
386
 
551
387
  '@rollup/rollup-linux-riscv64-musl@4.55.3':
552
388
  resolution: {integrity: sha512-3OqKAHSEQXKdq9mQ4eajqUgNIK27VZPW3I26EP8miIzuKzCJ3aW3oEn2pzF+4/Hj/Moc0YDsOtBgT5bZ56/vcA==}
553
389
  cpu: [riscv64]
554
390
  os: [linux]
391
+ libc: [musl]
555
392
 
556
393
  '@rollup/rollup-linux-s390x-gnu@4.55.3':
557
394
  resolution: {integrity: sha512-0CM8dSVzVIaqMcXIFej8zZrSFLnGrAE8qlNbbHfTw1EEPnFTg1U1ekI0JdzjPyzSfUsHWtodilQQG/RA55berA==}
558
395
  cpu: [s390x]
559
396
  os: [linux]
397
+ libc: [glibc]
560
398
 
561
399
  '@rollup/rollup-linux-x64-gnu@4.55.3':
562
400
  resolution: {integrity: sha512-+fgJE12FZMIgBaKIAGd45rxf+5ftcycANJRWk8Vz0NnMTM5rADPGuRFTYar+Mqs560xuART7XsX2lSACa1iOmQ==}
563
401
  cpu: [x64]
564
402
  os: [linux]
403
+ libc: [glibc]
565
404
 
566
405
  '@rollup/rollup-linux-x64-musl@4.55.3':
567
406
  resolution: {integrity: sha512-tMD7NnbAolWPzQlJQJjVFh/fNH3K/KnA7K8gv2dJWCwwnaK6DFCYST1QXYWfu5V0cDwarWC8Sf/cfMHniNq21A==}
568
407
  cpu: [x64]
569
408
  os: [linux]
409
+ libc: [musl]
570
410
 
571
411
  '@rollup/rollup-openbsd-x64@4.55.3':
572
412
  resolution: {integrity: sha512-u5KsqxOxjEeIbn7bUK1MPM34jrnPwjeqgyin4/N6e/KzXKfpE9Mi0nCxcQjaM9lLmPcHmn/xx1yOjgTMtu1jWQ==}
@@ -598,221 +438,29 @@ packages:
598
438
  cpu: [x64]
599
439
  os: [win32]
600
440
 
601
- '@smithy/abort-controller@4.2.8':
602
- resolution: {integrity: sha512-peuVfkYHAmS5ybKxWcfraK7WBBP0J+rkfUcbHJJKQ4ir3UAUNQI+Y4Vt/PqSzGqgloJ5O1dk7+WzNL8wcCSXbw==}
603
- engines: {node: '>=18.0.0'}
604
-
605
- '@smithy/chunked-blob-reader-native@4.2.1':
606
- resolution: {integrity: sha512-lX9Ay+6LisTfpLid2zZtIhSEjHMZoAR5hHCR4H7tBz/Zkfr5ea8RcQ7Tk4mi0P76p4cN+Btz16Ffno7YHpKXnQ==}
607
- engines: {node: '>=18.0.0'}
608
-
609
- '@smithy/chunked-blob-reader@5.2.0':
610
- resolution: {integrity: sha512-WmU0TnhEAJLWvfSeMxBNe5xtbselEO8+4wG0NtZeL8oR21WgH1xiO37El+/Y+H/Ie4SCwBy3MxYWmOYaGgZueA==}
611
- engines: {node: '>=18.0.0'}
612
-
613
- '@smithy/config-resolver@4.4.6':
614
- resolution: {integrity: sha512-qJpzYC64kaj3S0fueiu3kXm8xPrR3PcXDPEgnaNMRn0EjNSZFoFjvbUp0YUDsRhN1CB90EnHJtbxWKevnH99UQ==}
615
- engines: {node: '>=18.0.0'}
616
-
617
- '@smithy/core@3.21.0':
618
- resolution: {integrity: sha512-bg2TfzgsERyETAxc/Ims/eJX8eAnIeTi4r4LHpMpfF/2NyO6RsWis0rjKcCPaGksljmOb23BZRiCeT/3NvwkXw==}
619
- engines: {node: '>=18.0.0'}
620
-
621
- '@smithy/credential-provider-imds@4.2.8':
622
- resolution: {integrity: sha512-FNT0xHS1c/CPN8upqbMFP83+ul5YgdisfCfkZ86Jh2NSmnqw/AJ6x5pEogVCTVvSm7j9MopRU89bmDelxuDMYw==}
623
- engines: {node: '>=18.0.0'}
624
-
625
- '@smithy/eventstream-codec@4.2.8':
626
- resolution: {integrity: sha512-jS/O5Q14UsufqoGhov7dHLOPCzkYJl9QDzusI2Psh4wyYx/izhzvX9P4D69aTxcdfVhEPhjK+wYyn/PzLjKbbw==}
627
- engines: {node: '>=18.0.0'}
628
-
629
- '@smithy/eventstream-serde-browser@4.2.8':
630
- resolution: {integrity: sha512-MTfQT/CRQz5g24ayXdjg53V0mhucZth4PESoA5IhvaWVDTOQLfo8qI9vzqHcPsdd2v6sqfTYqF5L/l+pea5Uyw==}
631
- engines: {node: '>=18.0.0'}
632
-
633
- '@smithy/eventstream-serde-config-resolver@4.3.8':
634
- resolution: {integrity: sha512-ah12+luBiDGzBruhu3efNy1IlbwSEdNiw8fOZksoKoWW1ZHvO/04MQsdnws/9Aj+5b0YXSSN2JXKy/ClIsW8MQ==}
635
- engines: {node: '>=18.0.0'}
636
-
637
- '@smithy/eventstream-serde-node@4.2.8':
638
- resolution: {integrity: sha512-cYpCpp29z6EJHa5T9WL0KAlq3SOKUQkcgSoeRfRVwjGgSFl7Uh32eYGt7IDYCX20skiEdRffyDpvF2efEZPC0A==}
639
- engines: {node: '>=18.0.0'}
640
-
641
- '@smithy/eventstream-serde-universal@4.2.8':
642
- resolution: {integrity: sha512-iJ6YNJd0bntJYnX6s52NC4WFYcZeKrPUr1Kmmr5AwZcwCSzVpS7oavAmxMR7pMq7V+D1G4s9F5NJK0xwOsKAlQ==}
643
- engines: {node: '>=18.0.0'}
644
-
645
- '@smithy/fetch-http-handler@5.3.9':
646
- resolution: {integrity: sha512-I4UhmcTYXBrct03rwzQX1Y/iqQlzVQaPxWjCjula++5EmWq9YGBrx6bbGqluGc1f0XEfhSkiY4jhLgbsJUMKRA==}
647
- engines: {node: '>=18.0.0'}
648
-
649
- '@smithy/hash-blob-browser@4.2.9':
650
- resolution: {integrity: sha512-m80d/iicI7DlBDxyQP6Th7BW/ejDGiF0bgI754+tiwK0lgMkcaIBgvwwVc7OFbY4eUzpGtnig52MhPAEJ7iNYg==}
651
- engines: {node: '>=18.0.0'}
652
-
653
- '@smithy/hash-node@4.2.8':
654
- resolution: {integrity: sha512-7ZIlPbmaDGxVoxErDZnuFG18WekhbA/g2/i97wGj+wUBeS6pcUeAym8u4BXh/75RXWhgIJhyC11hBzig6MljwA==}
655
- engines: {node: '>=18.0.0'}
656
-
657
- '@smithy/hash-stream-node@4.2.8':
658
- resolution: {integrity: sha512-v0FLTXgHrTeheYZFGhR+ehX5qUm4IQsjAiL9qehad2cyjMWcN2QG6/4mSwbSgEQzI7jwfoXj7z4fxZUx/Mhj2w==}
659
- engines: {node: '>=18.0.0'}
660
-
661
- '@smithy/invalid-dependency@4.2.8':
662
- resolution: {integrity: sha512-N9iozRybwAQ2dn9Fot9kI6/w9vos2oTXLhtK7ovGqwZjlOcxu6XhPlpLpC+INsxktqHinn5gS2DXDjDF2kG5sQ==}
663
- engines: {node: '>=18.0.0'}
664
-
665
- '@smithy/is-array-buffer@2.2.0':
666
- resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==}
667
- engines: {node: '>=14.0.0'}
668
-
669
- '@smithy/is-array-buffer@4.2.0':
670
- resolution: {integrity: sha512-DZZZBvC7sjcYh4MazJSGiWMI2L7E0oCiRHREDzIxi/M2LY79/21iXt6aPLHge82wi5LsuRF5A06Ds3+0mlh6CQ==}
671
- engines: {node: '>=18.0.0'}
672
-
673
- '@smithy/md5-js@4.2.8':
674
- resolution: {integrity: sha512-oGMaLj4tVZzLi3itBa9TCswgMBr7k9b+qKYowQ6x1rTyTuO1IU2YHdHUa+891OsOH+wCsH7aTPRsTJO3RMQmjQ==}
675
- engines: {node: '>=18.0.0'}
676
-
677
- '@smithy/middleware-content-length@4.2.8':
678
- resolution: {integrity: sha512-RO0jeoaYAB1qBRhfVyq0pMgBoUK34YEJxVxyjOWYZiOKOq2yMZ4MnVXMZCUDenpozHue207+9P5ilTV1zeda0A==}
679
- engines: {node: '>=18.0.0'}
680
-
681
- '@smithy/middleware-endpoint@4.4.10':
682
- resolution: {integrity: sha512-kwWpNltpxrvPabnjEFvwSmA+66l6s2ReCvgVSzW/z92LU4T28fTdgZ18IdYRYOrisu2NMQ0jUndRScbO65A/zg==}
683
- engines: {node: '>=18.0.0'}
684
-
685
- '@smithy/middleware-retry@4.4.26':
686
- resolution: {integrity: sha512-ozZMoTAr+B2aVYfLYfkssFvc8ZV3p/vLpVQ7/k277xxUOA9ykSPe5obL2j6yHfbdrM/SZV7qj0uk/hSqavHrLw==}
687
- engines: {node: '>=18.0.0'}
688
-
689
- '@smithy/middleware-serde@4.2.9':
690
- resolution: {integrity: sha512-eMNiej0u/snzDvlqRGSN3Vl0ESn3838+nKyVfF2FKNXFbi4SERYT6PR392D39iczngbqqGG0Jl1DlCnp7tBbXQ==}
691
- engines: {node: '>=18.0.0'}
692
-
693
- '@smithy/middleware-stack@4.2.8':
694
- resolution: {integrity: sha512-w6LCfOviTYQjBctOKSwy6A8FIkQy7ICvglrZFl6Bw4FmcQ1Z420fUtIhxaUZZshRe0VCq4kvDiPiXrPZAe8oRA==}
695
- engines: {node: '>=18.0.0'}
696
-
697
- '@smithy/node-config-provider@4.3.8':
698
- resolution: {integrity: sha512-aFP1ai4lrbVlWjfpAfRSL8KFcnJQYfTl5QxLJXY32vghJrDuFyPZ6LtUL+JEGYiFRG1PfPLHLoxj107ulncLIg==}
699
- engines: {node: '>=18.0.0'}
700
-
701
- '@smithy/node-http-handler@4.4.8':
702
- resolution: {integrity: sha512-q9u+MSbJVIJ1QmJ4+1u+cERXkrhuILCBDsJUBAW1MPE6sFonbCNaegFuwW9ll8kh5UdyY3jOkoOGlc7BesoLpg==}
703
- engines: {node: '>=18.0.0'}
704
-
705
- '@smithy/property-provider@4.2.8':
706
- resolution: {integrity: sha512-EtCTbyIveCKeOXDSWSdze3k612yCPq1YbXsbqX3UHhkOSW8zKsM9NOJG5gTIya0vbY2DIaieG8pKo1rITHYL0w==}
707
- engines: {node: '>=18.0.0'}
708
-
709
- '@smithy/protocol-http@5.3.8':
710
- resolution: {integrity: sha512-QNINVDhxpZ5QnP3aviNHQFlRogQZDfYlCkQT+7tJnErPQbDhysondEjhikuANxgMsZrkGeiAxXy4jguEGsDrWQ==}
711
- engines: {node: '>=18.0.0'}
712
-
713
- '@smithy/querystring-builder@4.2.8':
714
- resolution: {integrity: sha512-Xr83r31+DrE8CP3MqPgMJl+pQlLLmOfiEUnoyAlGzzJIrEsbKsPy1hqH0qySaQm4oWrCBlUqRt+idEgunKB+iw==}
715
- engines: {node: '>=18.0.0'}
716
-
717
- '@smithy/querystring-parser@4.2.8':
718
- resolution: {integrity: sha512-vUurovluVy50CUlazOiXkPq40KGvGWSdmusa3130MwrR1UNnNgKAlj58wlOe61XSHRpUfIIh6cE0zZ8mzKaDPA==}
719
- engines: {node: '>=18.0.0'}
720
-
721
- '@smithy/service-error-classification@4.2.8':
722
- resolution: {integrity: sha512-mZ5xddodpJhEt3RkCjbmUQuXUOaPNTkbMGR0bcS8FE0bJDLMZlhmpgrvPNCYglVw5rsYTpSnv19womw9WWXKQQ==}
723
- engines: {node: '>=18.0.0'}
724
-
725
- '@smithy/shared-ini-file-loader@4.4.3':
726
- resolution: {integrity: sha512-DfQjxXQnzC5UbCUPeC3Ie8u+rIWZTvuDPAGU/BxzrOGhRvgUanaP68kDZA+jaT3ZI+djOf+4dERGlm9mWfFDrg==}
727
- engines: {node: '>=18.0.0'}
728
-
729
- '@smithy/signature-v4@5.3.8':
730
- resolution: {integrity: sha512-6A4vdGj7qKNRF16UIcO8HhHjKW27thsxYci+5r/uVRkdcBEkOEiY8OMPuydLX4QHSrJqGHPJzPRwwVTqbLZJhg==}
731
- engines: {node: '>=18.0.0'}
732
-
733
- '@smithy/smithy-client@4.10.11':
734
- resolution: {integrity: sha512-6o804SCyHGMXAb5mFJ+iTy9kVKv7F91a9szN0J+9X6p8A0NrdpUxdaC57aye2ipQkP2C4IAqETEpGZ0Zj77Haw==}
735
- engines: {node: '>=18.0.0'}
736
-
737
- '@smithy/types@4.12.0':
738
- resolution: {integrity: sha512-9YcuJVTOBDjg9LWo23Qp0lTQ3D7fQsQtwle0jVfpbUHy9qBwCEgKuVH4FqFB3VYu0nwdHKiEMA+oXz7oV8X1kw==}
739
- engines: {node: '>=18.0.0'}
740
-
741
- '@smithy/url-parser@4.2.8':
742
- resolution: {integrity: sha512-NQho9U68TGMEU639YkXnVMV3GEFFULmmaWdlu1E9qzyIePOHsoSnagTGSDv1Zi8DCNN6btxOSdgmy5E/hsZwhA==}
743
- engines: {node: '>=18.0.0'}
744
-
745
- '@smithy/util-base64@4.3.0':
746
- resolution: {integrity: sha512-GkXZ59JfyxsIwNTWFnjmFEI8kZpRNIBfxKjv09+nkAWPt/4aGaEWMM04m4sxgNVWkbt2MdSvE3KF/PfX4nFedQ==}
747
- engines: {node: '>=18.0.0'}
748
-
749
- '@smithy/util-body-length-browser@4.2.0':
750
- resolution: {integrity: sha512-Fkoh/I76szMKJnBXWPdFkQJl2r9SjPt3cMzLdOB6eJ4Pnpas8hVoWPYemX/peO0yrrvldgCUVJqOAjUrOLjbxg==}
751
- engines: {node: '>=18.0.0'}
752
-
753
- '@smithy/util-body-length-node@4.2.1':
754
- resolution: {integrity: sha512-h53dz/pISVrVrfxV1iqXlx5pRg3V2YWFcSQyPyXZRrZoZj4R4DeWRDo1a7dd3CPTcFi3kE+98tuNyD2axyZReA==}
755
- engines: {node: '>=18.0.0'}
756
-
757
- '@smithy/util-buffer-from@2.2.0':
758
- resolution: {integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==}
759
- engines: {node: '>=14.0.0'}
760
-
761
- '@smithy/util-buffer-from@4.2.0':
762
- resolution: {integrity: sha512-kAY9hTKulTNevM2nlRtxAG2FQ3B2OR6QIrPY3zE5LqJy1oxzmgBGsHLWTcNhWXKchgA0WHW+mZkQrng/pgcCew==}
763
- engines: {node: '>=18.0.0'}
764
-
765
- '@smithy/util-config-provider@4.2.0':
766
- resolution: {integrity: sha512-YEjpl6XJ36FTKmD+kRJJWYvrHeUvm5ykaUS5xK+6oXffQPHeEM4/nXlZPe+Wu0lsgRUcNZiliYNh/y7q9c2y6Q==}
767
- engines: {node: '>=18.0.0'}
768
-
769
- '@smithy/util-defaults-mode-browser@4.3.25':
770
- resolution: {integrity: sha512-8ugoNMtss2dJHsXnqsibGPqoaafvWJPACmYKxJ4E6QWaDrixsAemmiMMAVbvwYadjR0H9G2+AlzsInSzRi8PSw==}
771
- engines: {node: '>=18.0.0'}
772
-
773
- '@smithy/util-defaults-mode-node@4.2.28':
774
- resolution: {integrity: sha512-mjUdcP8h3E0K/XvNMi9oBXRV3DMCzeRiYIieZ1LQ7jq5tu6GH/GTWym7a1xIIE0pKSoLcpGsaImuQhGPSIJzAA==}
775
- engines: {node: '>=18.0.0'}
776
-
777
- '@smithy/util-endpoints@3.2.8':
778
- resolution: {integrity: sha512-8JaVTn3pBDkhZgHQ8R0epwWt+BqPSLCjdjXXusK1onwJlRuN69fbvSK66aIKKO7SwVFM6x2J2ox5X8pOaWcUEw==}
779
- engines: {node: '>=18.0.0'}
780
-
781
- '@smithy/util-hex-encoding@4.2.0':
782
- resolution: {integrity: sha512-CCQBwJIvXMLKxVbO88IukazJD9a4kQ9ZN7/UMGBjBcJYvatpWk+9g870El4cB8/EJxfe+k+y0GmR9CAzkF+Nbw==}
783
- engines: {node: '>=18.0.0'}
784
-
785
- '@smithy/util-middleware@4.2.8':
786
- resolution: {integrity: sha512-PMqfeJxLcNPMDgvPbbLl/2Vpin+luxqTGPpW3NAQVLbRrFRzTa4rNAASYeIGjRV9Ytuhzny39SpyU04EQreF+A==}
787
- engines: {node: '>=18.0.0'}
788
-
789
- '@smithy/util-retry@4.2.8':
790
- resolution: {integrity: sha512-CfJqwvoRY0kTGe5AkQokpURNCT1u/MkRzMTASWMPPo2hNSnKtF1D45dQl3DE2LKLr4m+PW9mCeBMJr5mCAVThg==}
791
- engines: {node: '>=18.0.0'}
792
-
793
- '@smithy/util-stream@4.5.10':
794
- resolution: {integrity: sha512-jbqemy51UFSZSp2y0ZmRfckmrzuKww95zT9BYMmuJ8v3altGcqjwoV1tzpOwuHaKrwQrCjIzOib499ymr2f98g==}
795
- engines: {node: '>=18.0.0'}
441
+ '@supabase/auth-js@2.95.3':
442
+ resolution: {integrity: sha512-vD2YoS8E2iKIX0F7EwXTmqhUpaNsmbU6X2R0/NdFcs02oEfnHyNP/3M716f3wVJ2E5XHGiTFXki6lRckhJ0Thg==}
443
+ engines: {node: '>=20.0.0'}
796
444
 
797
- '@smithy/util-uri-escape@4.2.0':
798
- resolution: {integrity: sha512-igZpCKV9+E/Mzrpq6YacdTQ0qTiLm85gD6N/IrmyDvQFA4UnU3d5g3m8tMT/6zG/vVkWSU+VxeUyGonL62DuxA==}
799
- engines: {node: '>=18.0.0'}
445
+ '@supabase/functions-js@2.95.3':
446
+ resolution: {integrity: sha512-uTuOAKzs9R/IovW1krO0ZbUHSJnsnyJElTXIRhjJTqymIVGcHzkAYnBCJqd7468Fs/Foz1BQ7Dv6DCl05lr7ig==}
447
+ engines: {node: '>=20.0.0'}
800
448
 
801
- '@smithy/util-utf8@2.3.0':
802
- resolution: {integrity: sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==}
803
- engines: {node: '>=14.0.0'}
449
+ '@supabase/postgrest-js@2.95.3':
450
+ resolution: {integrity: sha512-LTrRBqU1gOovxRm1vRXPItSMPBmEFqrfTqdPTRtzOILV4jPSueFz6pES5hpb4LRlkFwCPRmv3nQJ5N625V2Xrg==}
451
+ engines: {node: '>=20.0.0'}
804
452
 
805
- '@smithy/util-utf8@4.2.0':
806
- resolution: {integrity: sha512-zBPfuzoI8xyBtR2P6WQj63Rz8i3AmfAaJLuNG8dWsfvPe8lO4aCPYLn879mEgHndZH1zQ2oXmG8O1GGzzaoZiw==}
807
- engines: {node: '>=18.0.0'}
453
+ '@supabase/realtime-js@2.95.3':
454
+ resolution: {integrity: sha512-D7EAtfU3w6BEUxDACjowWNJo/ZRo7sDIuhuOGKHIm9FHieGeoJV5R6GKTLtga/5l/6fDr2u+WcW/m8I9SYmaIw==}
455
+ engines: {node: '>=20.0.0'}
808
456
 
809
- '@smithy/util-waiter@4.2.8':
810
- resolution: {integrity: sha512-n+lahlMWk+aejGuax7DPWtqav8HYnWxQwR+LCG2BgCUmaGcTe9qZCFsmw8TMg9iG75HOwhrJCX9TCJRLH+Yzqg==}
811
- engines: {node: '>=18.0.0'}
457
+ '@supabase/storage-js@2.95.3':
458
+ resolution: {integrity: sha512-4GxkJiXI3HHWjxpC3sDx1BVrV87O0hfX+wvJdqGv67KeCu+g44SPnII8y0LL/Wr677jB7tpjAxKdtVWf+xhc9A==}
459
+ engines: {node: '>=20.0.0'}
812
460
 
813
- '@smithy/uuid@1.1.0':
814
- resolution: {integrity: sha512-4aUIteuyxtBUhVdiQqcDhKFitwfd9hqoSDYY2KRXiWtgoWJ9Bmise+KfEPDiVHWeJepvF8xJO9/9+WDIciMFFw==}
815
- engines: {node: '>=18.0.0'}
461
+ '@supabase/supabase-js@2.95.3':
462
+ resolution: {integrity: sha512-Fukw1cUTQ6xdLiHDJhKKPu6svEPaCEDvThqCne3OaQyZvuq2qjhJAd91kJu3PXLG18aooCgYBaB6qQz35hhABg==}
463
+ engines: {node: '>=20.0.0'}
816
464
 
817
465
  '@types/estree@1.0.8':
818
466
  resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
@@ -820,9 +468,18 @@ packages:
820
468
  '@types/json-schema@7.0.15':
821
469
  resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
822
470
 
471
+ '@types/node@25.2.3':
472
+ resolution: {integrity: sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==}
473
+
474
+ '@types/phoenix@1.6.7':
475
+ resolution: {integrity: sha512-oN9ive//QSBkf19rfDv45M7eZPi0eEXylht2OLEXicu5b4KoQ1OzXIw+xDSGWxSxe1JmepRR/ZH283vsu518/Q==}
476
+
823
477
  '@types/uuid@10.0.0':
824
478
  resolution: {integrity: sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==}
825
479
 
480
+ '@types/ws@8.18.1':
481
+ resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
482
+
826
483
  '@typescript-eslint/eslint-plugin@8.53.1':
827
484
  resolution: {integrity: sha512-cFYYFZ+oQFi6hUnBTbLRXfTJiaQtYE3t4O692agbBl+2Zy+eqSKWtPjhPXJu1G7j4RLjKgeJPDdq3EqOwmX5Ag==}
828
485
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -895,10 +552,6 @@ packages:
895
552
  ajv@6.12.6:
896
553
  resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
897
554
 
898
- ansi-regex@6.2.2:
899
- resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
900
- engines: {node: '>=12'}
901
-
902
555
  ansi-styles@4.3.0:
903
556
  resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
904
557
  engines: {node: '>=8'}
@@ -947,9 +600,6 @@ packages:
947
600
  resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
948
601
  engines: {node: '>=8'}
949
602
 
950
- bowser@2.13.1:
951
- resolution: {integrity: sha512-OHawaAbjwx6rqICCKgSG0SAnT05bzd7ppyKLVUITZpANBaaMFBAsaNkto3LoQ31tyFP5kNujE8Cdx85G9VzOkw==}
952
-
953
603
  brace-expansion@1.1.12:
954
604
  resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
955
605
 
@@ -965,12 +615,6 @@ packages:
965
615
  engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
966
616
  hasBin: true
967
617
 
968
- buffer-from@1.1.2:
969
- resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
970
-
971
- buffer@5.6.0:
972
- resolution: {integrity: sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==}
973
-
974
618
  call-bind-apply-helpers@1.0.2:
975
619
  resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
976
620
  engines: {node: '>= 0.4'}
@@ -994,22 +638,10 @@ packages:
994
638
  resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
995
639
  engines: {node: '>=10'}
996
640
 
997
- chalk@5.6.2:
998
- resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==}
999
- engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
1000
-
1001
641
  chokidar@3.6.0:
1002
642
  resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
1003
643
  engines: {node: '>= 8.10.0'}
1004
644
 
1005
- cli-cursor@5.0.0:
1006
- resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==}
1007
- engines: {node: '>=18'}
1008
-
1009
- cli-spinners@3.4.0:
1010
- resolution: {integrity: sha512-bXfOC4QcT1tKXGorxL3wbJm6XJPDqEnij2gQ2m7ESQuE+/z9YFIWnl/5RpTiKWbMq3EVKR4fRLJGn6DVfu0mpw==}
1011
- engines: {node: '>=18.20'}
1012
-
1013
645
  color-convert@2.0.1:
1014
646
  resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
1015
647
  engines: {node: '>=7.0.0'}
@@ -1021,10 +653,6 @@ packages:
1021
653
  resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
1022
654
  engines: {node: '>= 0.8'}
1023
655
 
1024
- commander@14.0.2:
1025
- resolution: {integrity: sha512-TywoWNNRbhoD0BXs1P3ZEScW8W5iKrnbithIl0YH+uCmBd0QpPOA8yc82DS3BIE5Ma6FnBVUsJ7wVUDz4dvOWQ==}
1026
- engines: {node: '>=20'}
1027
-
1028
656
  commander@4.1.1:
1029
657
  resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
1030
658
  engines: {node: '>= 6'}
@@ -1035,8 +663,8 @@ packages:
1035
663
  console-table-printer@2.15.0:
1036
664
  resolution: {integrity: sha512-SrhBq4hYVjLCkBVOWaTzceJalvn5K1Zq5aQA6wXC/cYjI3frKWNPEMK3sZsJfNNQApvCQmgBcc13ZKmFj8qExw==}
1037
665
 
1038
- coze-coding-dev-sdk@0.7.3:
1039
- resolution: {integrity: sha512-BLOjwSjAHW/LL6l/KMbsKJt7xJCrFJfEUkGvlafjpYrsZ8w/xlyQMbAv5lwk+9En60quX93wpK6AsX3eMcw/Jw==}
666
+ coze-coding-dev-sdk@0.7.16:
667
+ resolution: {integrity: sha512-B7gRPBa+sfrZL8ur0+F/92SOgZgFaWD/fOnCN2DjthnHSdmCYhAJWCfqzG2oO2vwTiYCXkKUuTBZ3MJLMj886g==}
1040
668
  engines: {node: '>=18.0.0'}
1041
669
  hasBin: true
1042
670
 
@@ -1075,101 +703,9 @@ packages:
1075
703
  dlv@1.1.3:
1076
704
  resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
1077
705
 
1078
- drizzle-kit@0.31.8:
1079
- resolution: {integrity: sha512-O9EC/miwdnRDY10qRxM8P3Pg8hXe3LyU4ZipReKOgTwn4OqANmftj8XJz1UPUAS6NMHf0E2htjsbQujUTkncCg==}
1080
- hasBin: true
1081
-
1082
- drizzle-orm@0.45.1:
1083
- resolution: {integrity: sha512-Te0FOdKIistGNPMq2jscdqngBRfBpC8uMFVwqjf6gtTVJHIQ/dosgV/CLBU2N4ZJBsXL5savCba9b0YJskKdcA==}
1084
- peerDependencies:
1085
- '@aws-sdk/client-rds-data': '>=3'
1086
- '@cloudflare/workers-types': '>=4'
1087
- '@electric-sql/pglite': '>=0.2.0'
1088
- '@libsql/client': '>=0.10.0'
1089
- '@libsql/client-wasm': '>=0.10.0'
1090
- '@neondatabase/serverless': '>=0.10.0'
1091
- '@op-engineering/op-sqlite': '>=2'
1092
- '@opentelemetry/api': ^1.4.1
1093
- '@planetscale/database': '>=1.13'
1094
- '@prisma/client': '*'
1095
- '@tidbcloud/serverless': '*'
1096
- '@types/better-sqlite3': '*'
1097
- '@types/pg': '*'
1098
- '@types/sql.js': '*'
1099
- '@upstash/redis': '>=1.34.7'
1100
- '@vercel/postgres': '>=0.8.0'
1101
- '@xata.io/client': '*'
1102
- better-sqlite3: '>=7'
1103
- bun-types: '*'
1104
- expo-sqlite: '>=14.0.0'
1105
- gel: '>=2'
1106
- knex: '*'
1107
- kysely: '*'
1108
- mysql2: '>=2'
1109
- pg: '>=8'
1110
- postgres: '>=3'
1111
- prisma: '*'
1112
- sql.js: '>=1'
1113
- sqlite3: '>=5'
1114
- peerDependenciesMeta:
1115
- '@aws-sdk/client-rds-data':
1116
- optional: true
1117
- '@cloudflare/workers-types':
1118
- optional: true
1119
- '@electric-sql/pglite':
1120
- optional: true
1121
- '@libsql/client':
1122
- optional: true
1123
- '@libsql/client-wasm':
1124
- optional: true
1125
- '@neondatabase/serverless':
1126
- optional: true
1127
- '@op-engineering/op-sqlite':
1128
- optional: true
1129
- '@opentelemetry/api':
1130
- optional: true
1131
- '@planetscale/database':
1132
- optional: true
1133
- '@prisma/client':
1134
- optional: true
1135
- '@tidbcloud/serverless':
1136
- optional: true
1137
- '@types/better-sqlite3':
1138
- optional: true
1139
- '@types/pg':
1140
- optional: true
1141
- '@types/sql.js':
1142
- optional: true
1143
- '@upstash/redis':
1144
- optional: true
1145
- '@vercel/postgres':
1146
- optional: true
1147
- '@xata.io/client':
1148
- optional: true
1149
- better-sqlite3:
1150
- optional: true
1151
- bun-types:
1152
- optional: true
1153
- expo-sqlite:
1154
- optional: true
1155
- gel:
1156
- optional: true
1157
- knex:
1158
- optional: true
1159
- kysely:
1160
- optional: true
1161
- mysql2:
1162
- optional: true
1163
- pg:
1164
- optional: true
1165
- postgres:
1166
- optional: true
1167
- prisma:
1168
- optional: true
1169
- sql.js:
1170
- optional: true
1171
- sqlite3:
1172
- optional: true
706
+ dotenv@17.2.4:
707
+ resolution: {integrity: sha512-mudtfb4zRB4bVvdj0xRo+e6duH1csJRM8IukBqfTRvHotn9+LBXB8ynAidP9zHqoRC/fsllXgk4kCKlR21fIhw==}
708
+ engines: {node: '>=12'}
1173
709
 
1174
710
  dunder-proto@1.0.1:
1175
711
  resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
@@ -1194,11 +730,6 @@ packages:
1194
730
  resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
1195
731
  engines: {node: '>= 0.4'}
1196
732
 
1197
- esbuild-register@3.6.0:
1198
- resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==}
1199
- peerDependencies:
1200
- esbuild: ^0.27.2
1201
-
1202
733
  esbuild@0.27.2:
1203
734
  resolution: {integrity: sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==}
1204
735
  engines: {node: '>=18'}
@@ -1257,10 +788,6 @@ packages:
1257
788
  eventemitter3@4.0.7:
1258
789
  resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
1259
790
 
1260
- events@3.3.0:
1261
- resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
1262
- engines: {node: '>=0.8.x'}
1263
-
1264
791
  fast-deep-equal@3.1.3:
1265
792
  resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
1266
793
 
@@ -1274,10 +801,6 @@ packages:
1274
801
  fast-levenshtein@2.0.6:
1275
802
  resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
1276
803
 
1277
- fast-xml-parser@5.2.5:
1278
- resolution: {integrity: sha512-pfX9uG9Ki0yekDHx2SiuRIyFdyAr1kMIMitPvb0YBo8SUfKvia7w7FIyd/l6av85pFYRhZscS75MwMnbvY+hcQ==}
1279
- hasBin: true
1280
-
1281
804
  fastq@1.20.1:
1282
805
  resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==}
1283
806
 
@@ -1333,10 +856,6 @@ packages:
1333
856
  function-bind@1.1.2:
1334
857
  resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
1335
858
 
1336
- get-east-asian-width@1.4.0:
1337
- resolution: {integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==}
1338
- engines: {node: '>=18'}
1339
-
1340
859
  get-intrinsic@1.3.0:
1341
860
  resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
1342
861
  engines: {node: '>= 0.4'}
@@ -1345,9 +864,6 @@ packages:
1345
864
  resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
1346
865
  engines: {node: '>= 0.4'}
1347
866
 
1348
- get-tsconfig@4.13.0:
1349
- resolution: {integrity: sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==}
1350
-
1351
867
  glob-parent@5.1.2:
1352
868
  resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
1353
869
  engines: {node: '>= 6'}
@@ -1380,8 +896,9 @@ packages:
1380
896
  resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
1381
897
  engines: {node: '>= 0.4'}
1382
898
 
1383
- ieee754@1.2.1:
1384
- resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
899
+ iceberg-js@0.8.1:
900
+ resolution: {integrity: sha512-1dhVQZXhcHje7798IVM+xoo/1ZdVfzOMIc8/rgVSijRK38EDqOJoGula9N/8ZI5RD8QTxNQtK/Gozpr+qUqRRA==}
901
+ engines: {node: '>=20.0.0'}
1385
902
 
1386
903
  ignore@5.3.2:
1387
904
  resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
@@ -1399,9 +916,6 @@ packages:
1399
916
  resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
1400
917
  engines: {node: '>=0.8.19'}
1401
918
 
1402
- inherits@2.0.4:
1403
- resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
1404
-
1405
919
  is-binary-path@2.1.0:
1406
920
  resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
1407
921
  engines: {node: '>=8'}
@@ -1418,18 +932,10 @@ packages:
1418
932
  resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
1419
933
  engines: {node: '>=0.10.0'}
1420
934
 
1421
- is-interactive@2.0.0:
1422
- resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==}
1423
- engines: {node: '>=12'}
1424
-
1425
935
  is-number@7.0.0:
1426
936
  resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
1427
937
  engines: {node: '>=0.12.0'}
1428
938
 
1429
- is-unicode-supported@2.1.0:
1430
- resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
1431
- engines: {node: '>=18'}
1432
-
1433
939
  isexe@2.0.0:
1434
940
  resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
1435
941
 
@@ -1491,10 +997,6 @@ packages:
1491
997
  lodash.merge@4.6.2:
1492
998
  resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
1493
999
 
1494
- log-symbols@7.0.1:
1495
- resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==}
1496
- engines: {node: '>=18'}
1497
-
1498
1000
  math-intrinsics@1.1.0:
1499
1001
  resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
1500
1002
  engines: {node: '>= 0.4'}
@@ -1515,10 +1017,6 @@ packages:
1515
1017
  resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
1516
1018
  engines: {node: '>= 0.6'}
1517
1019
 
1518
- mimic-function@5.0.1:
1519
- resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
1520
- engines: {node: '>=18'}
1521
-
1522
1020
  minimatch@3.1.2:
1523
1021
  resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
1524
1022
 
@@ -1559,10 +1057,6 @@ packages:
1559
1057
  resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
1560
1058
  engines: {node: '>= 6'}
1561
1059
 
1562
- onetime@7.0.0:
1563
- resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
1564
- engines: {node: '>=18'}
1565
-
1566
1060
  only-allow@1.2.2:
1567
1061
  resolution: {integrity: sha512-uxyNYDsCh5YIJ780G7hC5OHjVUr9reHsbZNMM80L9tZlTpb3hUzb36KXgW4ZUGtJKQnGA3xegmWg1BxhWV0jJA==}
1568
1062
  hasBin: true
@@ -1583,10 +1077,6 @@ packages:
1583
1077
  resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
1584
1078
  engines: {node: '>= 0.8.0'}
1585
1079
 
1586
- ora@9.1.0:
1587
- resolution: {integrity: sha512-53uuLsXHOAJl5zLrUrzY9/kE+uIFEx7iaH4g2BIJQK4LZjY4LpCCYZVKDWIkL+F01wAaCg93duQ1whnK/AmY1A==}
1588
- engines: {node: '>=20'}
1589
-
1590
1080
  p-finally@1.0.0:
1591
1081
  resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
1592
1082
  engines: {node: '>=4'}
@@ -1622,9 +1112,6 @@ packages:
1622
1112
  path-parse@1.0.7:
1623
1113
  resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
1624
1114
 
1625
- pg-cloudflare@1.3.0:
1626
- resolution: {integrity: sha512-6lswVVSztmHiRtD6I8hw4qP/nDm1EJbKMRhf3HCYaqud7frGysPv7FYJ5noZQdhQtN2xJnimfMtvQq21pdbzyQ==}
1627
-
1628
1115
  pg-connection-string@2.10.1:
1629
1116
  resolution: {integrity: sha512-iNzslsoeSH2/gmDDKiyMqF64DATUCWj3YJ0wP14kqcsf2TUklwimd+66yYojKwZCA7h2yRNLGug71hCBA2a4sw==}
1630
1117
 
@@ -1755,10 +1242,6 @@ packages:
1755
1242
  read-cache@1.0.0:
1756
1243
  resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
1757
1244
 
1758
- readable-stream@3.6.2:
1759
- resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
1760
- engines: {node: '>= 6'}
1761
-
1762
1245
  readdirp@3.6.0:
1763
1246
  resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
1764
1247
  engines: {node: '>=8.10.0'}
@@ -1767,18 +1250,11 @@ packages:
1767
1250
  resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
1768
1251
  engines: {node: '>=4'}
1769
1252
 
1770
- resolve-pkg-maps@1.0.0:
1771
- resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
1772
-
1773
1253
  resolve@1.22.11:
1774
1254
  resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
1775
1255
  engines: {node: '>= 0.4'}
1776
1256
  hasBin: true
1777
1257
 
1778
- restore-cursor@5.1.0:
1779
- resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
1780
- engines: {node: '>=18'}
1781
-
1782
1258
  reusify@1.1.0:
1783
1259
  resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
1784
1260
  engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
@@ -1791,9 +1267,6 @@ packages:
1791
1267
  run-parallel@1.2.0:
1792
1268
  resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
1793
1269
 
1794
- safe-buffer@5.2.1:
1795
- resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
1796
-
1797
1270
  semver@7.7.3:
1798
1271
  resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
1799
1272
  engines: {node: '>=10'}
@@ -1807,10 +1280,6 @@ packages:
1807
1280
  resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
1808
1281
  engines: {node: '>=8'}
1809
1282
 
1810
- signal-exit@4.1.0:
1811
- resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
1812
- engines: {node: '>=14'}
1813
-
1814
1283
  simple-wcswidth@1.1.2:
1815
1284
  resolution: {integrity: sha512-j7piyCjAeTDSjzTSQ7DokZtMNwNlEAyxqSZeCS+CXH7fJ4jx3FuJ/mTW3mE+6JLs4VJBbcll0Kjn+KXI5t21Iw==}
1816
1285
 
@@ -1818,42 +1287,14 @@ packages:
1818
1287
  resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
1819
1288
  engines: {node: '>=0.10.0'}
1820
1289
 
1821
- source-map-support@0.5.21:
1822
- resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
1823
-
1824
- source-map@0.6.1:
1825
- resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
1826
- engines: {node: '>=0.10.0'}
1827
-
1828
1290
  split2@4.2.0:
1829
1291
  resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
1830
1292
  engines: {node: '>= 10.x'}
1831
1293
 
1832
- stdin-discarder@0.2.2:
1833
- resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
1834
- engines: {node: '>=18'}
1835
-
1836
- stream-browserify@3.0.0:
1837
- resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==}
1838
-
1839
- string-width@8.1.0:
1840
- resolution: {integrity: sha512-Kxl3KJGb/gxkaUMOjRsQ8IrXiGW75O4E3RPjFIINOVH8AMl2SQ/yWdTzWwF3FevIX9LcMAjJW+GRwAlAbTSXdg==}
1841
- engines: {node: '>=20'}
1842
-
1843
- string_decoder@1.3.0:
1844
- resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
1845
-
1846
- strip-ansi@7.1.2:
1847
- resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==}
1848
- engines: {node: '>=12'}
1849
-
1850
1294
  strip-json-comments@3.1.1:
1851
1295
  resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
1852
1296
  engines: {node: '>=8'}
1853
1297
 
1854
- strnum@2.1.2:
1855
- resolution: {integrity: sha512-l63NF9y/cLROq/yqKXSLtcMeeyOfnSQlfMSlzFt/K73oIaD8DGaQWd7Z34X9GPiKqP5rbSh84Hl4bOlLcjiSrQ==}
1856
-
1857
1298
  sucrase@3.35.1:
1858
1299
  resolution: {integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==}
1859
1300
  engines: {node: '>=16 || 14 >=14.17'}
@@ -1887,11 +1328,6 @@ packages:
1887
1328
  resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
1888
1329
  engines: {node: '>=8.0'}
1889
1330
 
1890
- transliteration@2.6.1:
1891
- resolution: {integrity: sha512-hJ9BhrQAOnNTbpOr1MxsNjZISkn7ppvF5TKUeFmTE1mG4ZPD/XVxF0L0LUoIUCWmQyxH0gJpVtfYLAWf298U9w==}
1892
- engines: {node: '>=20.0.0'}
1893
- hasBin: true
1894
-
1895
1331
  ts-api-utils@2.4.0:
1896
1332
  resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
1897
1333
  engines: {node: '>=18.12'}
@@ -1920,6 +1356,9 @@ packages:
1920
1356
  engines: {node: '>=14.17'}
1921
1357
  hasBin: true
1922
1358
 
1359
+ undici-types@7.16.0:
1360
+ resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}
1361
+
1923
1362
  update-browserslist-db@1.2.3:
1924
1363
  resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
1925
1364
  hasBin: true
@@ -1974,549 +1413,49 @@ packages:
1974
1413
  tsx:
1975
1414
  optional: true
1976
1415
  yaml:
1977
- optional: true
1978
-
1979
- which-pm-runs@1.1.0:
1980
- resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==}
1981
- engines: {node: '>=4'}
1982
-
1983
- which@2.0.2:
1984
- resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
1985
- engines: {node: '>= 8'}
1986
- hasBin: true
1987
-
1988
- word-wrap@1.2.5:
1989
- resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
1990
- engines: {node: '>=0.10.0'}
1991
-
1992
- xtend@4.0.2:
1993
- resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
1994
- engines: {node: '>=0.4'}
1995
-
1996
- yocto-queue@0.1.0:
1997
- resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
1998
- engines: {node: '>=10'}
1999
-
2000
- yoctocolors@2.1.2:
2001
- resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==}
2002
- engines: {node: '>=18'}
2003
-
2004
- zod@4.3.5:
2005
- resolution: {integrity: sha512-k7Nwx6vuWx1IJ9Bjuf4Zt1PEllcwe7cls3VNzm4CQ1/hgtFUK2bRNG3rvnpPUhFjmqJKAKtjV576KnUkHocg/g==}
2006
-
2007
- snapshots:
2008
-
2009
- '@alloc/quick-lru@5.2.0': {}
2010
-
2011
- '@aws-crypto/crc32@5.2.0':
2012
- dependencies:
2013
- '@aws-crypto/util': 5.2.0
2014
- '@aws-sdk/types': 3.972.0
2015
- tslib: 2.8.1
2016
-
2017
- '@aws-crypto/crc32c@5.2.0':
2018
- dependencies:
2019
- '@aws-crypto/util': 5.2.0
2020
- '@aws-sdk/types': 3.972.0
2021
- tslib: 2.8.1
2022
-
2023
- '@aws-crypto/sha1-browser@5.2.0':
2024
- dependencies:
2025
- '@aws-crypto/supports-web-crypto': 5.2.0
2026
- '@aws-crypto/util': 5.2.0
2027
- '@aws-sdk/types': 3.972.0
2028
- '@aws-sdk/util-locate-window': 3.965.3
2029
- '@smithy/util-utf8': 2.3.0
2030
- tslib: 2.8.1
2031
-
2032
- '@aws-crypto/sha256-browser@5.2.0':
2033
- dependencies:
2034
- '@aws-crypto/sha256-js': 5.2.0
2035
- '@aws-crypto/supports-web-crypto': 5.2.0
2036
- '@aws-crypto/util': 5.2.0
2037
- '@aws-sdk/types': 3.972.0
2038
- '@aws-sdk/util-locate-window': 3.965.3
2039
- '@smithy/util-utf8': 2.3.0
2040
- tslib: 2.8.1
2041
-
2042
- '@aws-crypto/sha256-js@5.2.0':
2043
- dependencies:
2044
- '@aws-crypto/util': 5.2.0
2045
- '@aws-sdk/types': 3.972.0
2046
- tslib: 2.8.1
2047
-
2048
- '@aws-crypto/supports-web-crypto@5.2.0':
2049
- dependencies:
2050
- tslib: 2.8.1
2051
-
2052
- '@aws-crypto/util@5.2.0':
2053
- dependencies:
2054
- '@aws-sdk/types': 3.972.0
2055
- '@smithy/util-utf8': 2.3.0
2056
- tslib: 2.8.1
2057
-
2058
- '@aws-sdk/client-s3@3.972.0':
2059
- dependencies:
2060
- '@aws-crypto/sha1-browser': 5.2.0
2061
- '@aws-crypto/sha256-browser': 5.2.0
2062
- '@aws-crypto/sha256-js': 5.2.0
2063
- '@aws-sdk/core': 3.972.0
2064
- '@aws-sdk/credential-provider-node': 3.972.0
2065
- '@aws-sdk/middleware-bucket-endpoint': 3.972.0
2066
- '@aws-sdk/middleware-expect-continue': 3.972.0
2067
- '@aws-sdk/middleware-flexible-checksums': 3.972.0
2068
- '@aws-sdk/middleware-host-header': 3.972.0
2069
- '@aws-sdk/middleware-location-constraint': 3.972.0
2070
- '@aws-sdk/middleware-logger': 3.972.0
2071
- '@aws-sdk/middleware-recursion-detection': 3.972.0
2072
- '@aws-sdk/middleware-sdk-s3': 3.972.0
2073
- '@aws-sdk/middleware-ssec': 3.972.0
2074
- '@aws-sdk/middleware-user-agent': 3.972.0
2075
- '@aws-sdk/region-config-resolver': 3.972.0
2076
- '@aws-sdk/signature-v4-multi-region': 3.972.0
2077
- '@aws-sdk/types': 3.972.0
2078
- '@aws-sdk/util-endpoints': 3.972.0
2079
- '@aws-sdk/util-user-agent-browser': 3.972.0
2080
- '@aws-sdk/util-user-agent-node': 3.972.0
2081
- '@smithy/config-resolver': 4.4.6
2082
- '@smithy/core': 3.21.0
2083
- '@smithy/eventstream-serde-browser': 4.2.8
2084
- '@smithy/eventstream-serde-config-resolver': 4.3.8
2085
- '@smithy/eventstream-serde-node': 4.2.8
2086
- '@smithy/fetch-http-handler': 5.3.9
2087
- '@smithy/hash-blob-browser': 4.2.9
2088
- '@smithy/hash-node': 4.2.8
2089
- '@smithy/hash-stream-node': 4.2.8
2090
- '@smithy/invalid-dependency': 4.2.8
2091
- '@smithy/md5-js': 4.2.8
2092
- '@smithy/middleware-content-length': 4.2.8
2093
- '@smithy/middleware-endpoint': 4.4.10
2094
- '@smithy/middleware-retry': 4.4.26
2095
- '@smithy/middleware-serde': 4.2.9
2096
- '@smithy/middleware-stack': 4.2.8
2097
- '@smithy/node-config-provider': 4.3.8
2098
- '@smithy/node-http-handler': 4.4.8
2099
- '@smithy/protocol-http': 5.3.8
2100
- '@smithy/smithy-client': 4.10.11
2101
- '@smithy/types': 4.12.0
2102
- '@smithy/url-parser': 4.2.8
2103
- '@smithy/util-base64': 4.3.0
2104
- '@smithy/util-body-length-browser': 4.2.0
2105
- '@smithy/util-body-length-node': 4.2.1
2106
- '@smithy/util-defaults-mode-browser': 4.3.25
2107
- '@smithy/util-defaults-mode-node': 4.2.28
2108
- '@smithy/util-endpoints': 3.2.8
2109
- '@smithy/util-middleware': 4.2.8
2110
- '@smithy/util-retry': 4.2.8
2111
- '@smithy/util-stream': 4.5.10
2112
- '@smithy/util-utf8': 4.2.0
2113
- '@smithy/util-waiter': 4.2.8
2114
- tslib: 2.8.1
2115
- transitivePeerDependencies:
2116
- - aws-crt
2117
-
2118
- '@aws-sdk/client-sso@3.972.0':
2119
- dependencies:
2120
- '@aws-crypto/sha256-browser': 5.2.0
2121
- '@aws-crypto/sha256-js': 5.2.0
2122
- '@aws-sdk/core': 3.972.0
2123
- '@aws-sdk/middleware-host-header': 3.972.0
2124
- '@aws-sdk/middleware-logger': 3.972.0
2125
- '@aws-sdk/middleware-recursion-detection': 3.972.0
2126
- '@aws-sdk/middleware-user-agent': 3.972.0
2127
- '@aws-sdk/region-config-resolver': 3.972.0
2128
- '@aws-sdk/types': 3.972.0
2129
- '@aws-sdk/util-endpoints': 3.972.0
2130
- '@aws-sdk/util-user-agent-browser': 3.972.0
2131
- '@aws-sdk/util-user-agent-node': 3.972.0
2132
- '@smithy/config-resolver': 4.4.6
2133
- '@smithy/core': 3.21.0
2134
- '@smithy/fetch-http-handler': 5.3.9
2135
- '@smithy/hash-node': 4.2.8
2136
- '@smithy/invalid-dependency': 4.2.8
2137
- '@smithy/middleware-content-length': 4.2.8
2138
- '@smithy/middleware-endpoint': 4.4.10
2139
- '@smithy/middleware-retry': 4.4.26
2140
- '@smithy/middleware-serde': 4.2.9
2141
- '@smithy/middleware-stack': 4.2.8
2142
- '@smithy/node-config-provider': 4.3.8
2143
- '@smithy/node-http-handler': 4.4.8
2144
- '@smithy/protocol-http': 5.3.8
2145
- '@smithy/smithy-client': 4.10.11
2146
- '@smithy/types': 4.12.0
2147
- '@smithy/url-parser': 4.2.8
2148
- '@smithy/util-base64': 4.3.0
2149
- '@smithy/util-body-length-browser': 4.2.0
2150
- '@smithy/util-body-length-node': 4.2.1
2151
- '@smithy/util-defaults-mode-browser': 4.3.25
2152
- '@smithy/util-defaults-mode-node': 4.2.28
2153
- '@smithy/util-endpoints': 3.2.8
2154
- '@smithy/util-middleware': 4.2.8
2155
- '@smithy/util-retry': 4.2.8
2156
- '@smithy/util-utf8': 4.2.0
2157
- tslib: 2.8.1
2158
- transitivePeerDependencies:
2159
- - aws-crt
2160
-
2161
- '@aws-sdk/core@3.972.0':
2162
- dependencies:
2163
- '@aws-sdk/types': 3.972.0
2164
- '@aws-sdk/xml-builder': 3.972.0
2165
- '@smithy/core': 3.21.0
2166
- '@smithy/node-config-provider': 4.3.8
2167
- '@smithy/property-provider': 4.2.8
2168
- '@smithy/protocol-http': 5.3.8
2169
- '@smithy/signature-v4': 5.3.8
2170
- '@smithy/smithy-client': 4.10.11
2171
- '@smithy/types': 4.12.0
2172
- '@smithy/util-base64': 4.3.0
2173
- '@smithy/util-middleware': 4.2.8
2174
- '@smithy/util-utf8': 4.2.0
2175
- tslib: 2.8.1
2176
-
2177
- '@aws-sdk/crc64-nvme@3.972.0':
2178
- dependencies:
2179
- '@smithy/types': 4.12.0
2180
- tslib: 2.8.1
2181
-
2182
- '@aws-sdk/credential-provider-env@3.972.0':
2183
- dependencies:
2184
- '@aws-sdk/core': 3.972.0
2185
- '@aws-sdk/types': 3.972.0
2186
- '@smithy/property-provider': 4.2.8
2187
- '@smithy/types': 4.12.0
2188
- tslib: 2.8.1
2189
-
2190
- '@aws-sdk/credential-provider-http@3.972.0':
2191
- dependencies:
2192
- '@aws-sdk/core': 3.972.0
2193
- '@aws-sdk/types': 3.972.0
2194
- '@smithy/fetch-http-handler': 5.3.9
2195
- '@smithy/node-http-handler': 4.4.8
2196
- '@smithy/property-provider': 4.2.8
2197
- '@smithy/protocol-http': 5.3.8
2198
- '@smithy/smithy-client': 4.10.11
2199
- '@smithy/types': 4.12.0
2200
- '@smithy/util-stream': 4.5.10
2201
- tslib: 2.8.1
2202
-
2203
- '@aws-sdk/credential-provider-ini@3.972.0':
2204
- dependencies:
2205
- '@aws-sdk/core': 3.972.0
2206
- '@aws-sdk/credential-provider-env': 3.972.0
2207
- '@aws-sdk/credential-provider-http': 3.972.0
2208
- '@aws-sdk/credential-provider-login': 3.972.0
2209
- '@aws-sdk/credential-provider-process': 3.972.0
2210
- '@aws-sdk/credential-provider-sso': 3.972.0
2211
- '@aws-sdk/credential-provider-web-identity': 3.972.0
2212
- '@aws-sdk/nested-clients': 3.972.0
2213
- '@aws-sdk/types': 3.972.0
2214
- '@smithy/credential-provider-imds': 4.2.8
2215
- '@smithy/property-provider': 4.2.8
2216
- '@smithy/shared-ini-file-loader': 4.4.3
2217
- '@smithy/types': 4.12.0
2218
- tslib: 2.8.1
2219
- transitivePeerDependencies:
2220
- - aws-crt
2221
-
2222
- '@aws-sdk/credential-provider-login@3.972.0':
2223
- dependencies:
2224
- '@aws-sdk/core': 3.972.0
2225
- '@aws-sdk/nested-clients': 3.972.0
2226
- '@aws-sdk/types': 3.972.0
2227
- '@smithy/property-provider': 4.2.8
2228
- '@smithy/protocol-http': 5.3.8
2229
- '@smithy/shared-ini-file-loader': 4.4.3
2230
- '@smithy/types': 4.12.0
2231
- tslib: 2.8.1
2232
- transitivePeerDependencies:
2233
- - aws-crt
2234
-
2235
- '@aws-sdk/credential-provider-node@3.972.0':
2236
- dependencies:
2237
- '@aws-sdk/credential-provider-env': 3.972.0
2238
- '@aws-sdk/credential-provider-http': 3.972.0
2239
- '@aws-sdk/credential-provider-ini': 3.972.0
2240
- '@aws-sdk/credential-provider-process': 3.972.0
2241
- '@aws-sdk/credential-provider-sso': 3.972.0
2242
- '@aws-sdk/credential-provider-web-identity': 3.972.0
2243
- '@aws-sdk/types': 3.972.0
2244
- '@smithy/credential-provider-imds': 4.2.8
2245
- '@smithy/property-provider': 4.2.8
2246
- '@smithy/shared-ini-file-loader': 4.4.3
2247
- '@smithy/types': 4.12.0
2248
- tslib: 2.8.1
2249
- transitivePeerDependencies:
2250
- - aws-crt
2251
-
2252
- '@aws-sdk/credential-provider-process@3.972.0':
2253
- dependencies:
2254
- '@aws-sdk/core': 3.972.0
2255
- '@aws-sdk/types': 3.972.0
2256
- '@smithy/property-provider': 4.2.8
2257
- '@smithy/shared-ini-file-loader': 4.4.3
2258
- '@smithy/types': 4.12.0
2259
- tslib: 2.8.1
2260
-
2261
- '@aws-sdk/credential-provider-sso@3.972.0':
2262
- dependencies:
2263
- '@aws-sdk/client-sso': 3.972.0
2264
- '@aws-sdk/core': 3.972.0
2265
- '@aws-sdk/token-providers': 3.972.0
2266
- '@aws-sdk/types': 3.972.0
2267
- '@smithy/property-provider': 4.2.8
2268
- '@smithy/shared-ini-file-loader': 4.4.3
2269
- '@smithy/types': 4.12.0
2270
- tslib: 2.8.1
2271
- transitivePeerDependencies:
2272
- - aws-crt
2273
-
2274
- '@aws-sdk/credential-provider-web-identity@3.972.0':
2275
- dependencies:
2276
- '@aws-sdk/core': 3.972.0
2277
- '@aws-sdk/nested-clients': 3.972.0
2278
- '@aws-sdk/types': 3.972.0
2279
- '@smithy/property-provider': 4.2.8
2280
- '@smithy/shared-ini-file-loader': 4.4.3
2281
- '@smithy/types': 4.12.0
2282
- tslib: 2.8.1
2283
- transitivePeerDependencies:
2284
- - aws-crt
2285
-
2286
- '@aws-sdk/lib-storage@3.972.0(@aws-sdk/client-s3@3.972.0)':
2287
- dependencies:
2288
- '@aws-sdk/client-s3': 3.972.0
2289
- '@smithy/abort-controller': 4.2.8
2290
- '@smithy/middleware-endpoint': 4.4.10
2291
- '@smithy/smithy-client': 4.10.11
2292
- buffer: 5.6.0
2293
- events: 3.3.0
2294
- stream-browserify: 3.0.0
2295
- tslib: 2.8.1
2296
-
2297
- '@aws-sdk/middleware-bucket-endpoint@3.972.0':
2298
- dependencies:
2299
- '@aws-sdk/types': 3.972.0
2300
- '@aws-sdk/util-arn-parser': 3.972.0
2301
- '@smithy/node-config-provider': 4.3.8
2302
- '@smithy/protocol-http': 5.3.8
2303
- '@smithy/types': 4.12.0
2304
- '@smithy/util-config-provider': 4.2.0
2305
- tslib: 2.8.1
2306
-
2307
- '@aws-sdk/middleware-expect-continue@3.972.0':
2308
- dependencies:
2309
- '@aws-sdk/types': 3.972.0
2310
- '@smithy/protocol-http': 5.3.8
2311
- '@smithy/types': 4.12.0
2312
- tslib: 2.8.1
2313
-
2314
- '@aws-sdk/middleware-flexible-checksums@3.972.0':
2315
- dependencies:
2316
- '@aws-crypto/crc32': 5.2.0
2317
- '@aws-crypto/crc32c': 5.2.0
2318
- '@aws-crypto/util': 5.2.0
2319
- '@aws-sdk/core': 3.972.0
2320
- '@aws-sdk/crc64-nvme': 3.972.0
2321
- '@aws-sdk/types': 3.972.0
2322
- '@smithy/is-array-buffer': 4.2.0
2323
- '@smithy/node-config-provider': 4.3.8
2324
- '@smithy/protocol-http': 5.3.8
2325
- '@smithy/types': 4.12.0
2326
- '@smithy/util-middleware': 4.2.8
2327
- '@smithy/util-stream': 4.5.10
2328
- '@smithy/util-utf8': 4.2.0
2329
- tslib: 2.8.1
2330
-
2331
- '@aws-sdk/middleware-host-header@3.972.0':
2332
- dependencies:
2333
- '@aws-sdk/types': 3.972.0
2334
- '@smithy/protocol-http': 5.3.8
2335
- '@smithy/types': 4.12.0
2336
- tslib: 2.8.1
2337
-
2338
- '@aws-sdk/middleware-location-constraint@3.972.0':
2339
- dependencies:
2340
- '@aws-sdk/types': 3.972.0
2341
- '@smithy/types': 4.12.0
2342
- tslib: 2.8.1
2343
-
2344
- '@aws-sdk/middleware-logger@3.972.0':
2345
- dependencies:
2346
- '@aws-sdk/types': 3.972.0
2347
- '@smithy/types': 4.12.0
2348
- tslib: 2.8.1
2349
-
2350
- '@aws-sdk/middleware-recursion-detection@3.972.0':
2351
- dependencies:
2352
- '@aws-sdk/types': 3.972.0
2353
- '@aws/lambda-invoke-store': 0.2.3
2354
- '@smithy/protocol-http': 5.3.8
2355
- '@smithy/types': 4.12.0
2356
- tslib: 2.8.1
2357
-
2358
- '@aws-sdk/middleware-sdk-s3@3.972.0':
2359
- dependencies:
2360
- '@aws-sdk/core': 3.972.0
2361
- '@aws-sdk/types': 3.972.0
2362
- '@aws-sdk/util-arn-parser': 3.972.0
2363
- '@smithy/core': 3.21.0
2364
- '@smithy/node-config-provider': 4.3.8
2365
- '@smithy/protocol-http': 5.3.8
2366
- '@smithy/signature-v4': 5.3.8
2367
- '@smithy/smithy-client': 4.10.11
2368
- '@smithy/types': 4.12.0
2369
- '@smithy/util-config-provider': 4.2.0
2370
- '@smithy/util-middleware': 4.2.8
2371
- '@smithy/util-stream': 4.5.10
2372
- '@smithy/util-utf8': 4.2.0
2373
- tslib: 2.8.1
2374
-
2375
- '@aws-sdk/middleware-ssec@3.972.0':
2376
- dependencies:
2377
- '@aws-sdk/types': 3.972.0
2378
- '@smithy/types': 4.12.0
2379
- tslib: 2.8.1
2380
-
2381
- '@aws-sdk/middleware-user-agent@3.972.0':
2382
- dependencies:
2383
- '@aws-sdk/core': 3.972.0
2384
- '@aws-sdk/types': 3.972.0
2385
- '@aws-sdk/util-endpoints': 3.972.0
2386
- '@smithy/core': 3.21.0
2387
- '@smithy/protocol-http': 5.3.8
2388
- '@smithy/types': 4.12.0
2389
- tslib: 2.8.1
2390
-
2391
- '@aws-sdk/nested-clients@3.972.0':
2392
- dependencies:
2393
- '@aws-crypto/sha256-browser': 5.2.0
2394
- '@aws-crypto/sha256-js': 5.2.0
2395
- '@aws-sdk/core': 3.972.0
2396
- '@aws-sdk/middleware-host-header': 3.972.0
2397
- '@aws-sdk/middleware-logger': 3.972.0
2398
- '@aws-sdk/middleware-recursion-detection': 3.972.0
2399
- '@aws-sdk/middleware-user-agent': 3.972.0
2400
- '@aws-sdk/region-config-resolver': 3.972.0
2401
- '@aws-sdk/types': 3.972.0
2402
- '@aws-sdk/util-endpoints': 3.972.0
2403
- '@aws-sdk/util-user-agent-browser': 3.972.0
2404
- '@aws-sdk/util-user-agent-node': 3.972.0
2405
- '@smithy/config-resolver': 4.4.6
2406
- '@smithy/core': 3.21.0
2407
- '@smithy/fetch-http-handler': 5.3.9
2408
- '@smithy/hash-node': 4.2.8
2409
- '@smithy/invalid-dependency': 4.2.8
2410
- '@smithy/middleware-content-length': 4.2.8
2411
- '@smithy/middleware-endpoint': 4.4.10
2412
- '@smithy/middleware-retry': 4.4.26
2413
- '@smithy/middleware-serde': 4.2.9
2414
- '@smithy/middleware-stack': 4.2.8
2415
- '@smithy/node-config-provider': 4.3.8
2416
- '@smithy/node-http-handler': 4.4.8
2417
- '@smithy/protocol-http': 5.3.8
2418
- '@smithy/smithy-client': 4.10.11
2419
- '@smithy/types': 4.12.0
2420
- '@smithy/url-parser': 4.2.8
2421
- '@smithy/util-base64': 4.3.0
2422
- '@smithy/util-body-length-browser': 4.2.0
2423
- '@smithy/util-body-length-node': 4.2.1
2424
- '@smithy/util-defaults-mode-browser': 4.3.25
2425
- '@smithy/util-defaults-mode-node': 4.2.28
2426
- '@smithy/util-endpoints': 3.2.8
2427
- '@smithy/util-middleware': 4.2.8
2428
- '@smithy/util-retry': 4.2.8
2429
- '@smithy/util-utf8': 4.2.0
2430
- tslib: 2.8.1
2431
- transitivePeerDependencies:
2432
- - aws-crt
2433
-
2434
- '@aws-sdk/region-config-resolver@3.972.0':
2435
- dependencies:
2436
- '@aws-sdk/types': 3.972.0
2437
- '@smithy/config-resolver': 4.4.6
2438
- '@smithy/node-config-provider': 4.3.8
2439
- '@smithy/types': 4.12.0
2440
- tslib: 2.8.1
2441
-
2442
- '@aws-sdk/signature-v4-multi-region@3.972.0':
2443
- dependencies:
2444
- '@aws-sdk/middleware-sdk-s3': 3.972.0
2445
- '@aws-sdk/types': 3.972.0
2446
- '@smithy/protocol-http': 5.3.8
2447
- '@smithy/signature-v4': 5.3.8
2448
- '@smithy/types': 4.12.0
2449
- tslib: 2.8.1
2450
-
2451
- '@aws-sdk/token-providers@3.972.0':
2452
- dependencies:
2453
- '@aws-sdk/core': 3.972.0
2454
- '@aws-sdk/nested-clients': 3.972.0
2455
- '@aws-sdk/types': 3.972.0
2456
- '@smithy/property-provider': 4.2.8
2457
- '@smithy/shared-ini-file-loader': 4.4.3
2458
- '@smithy/types': 4.12.0
2459
- tslib: 2.8.1
2460
- transitivePeerDependencies:
2461
- - aws-crt
2462
-
2463
- '@aws-sdk/types@3.972.0':
2464
- dependencies:
2465
- '@smithy/types': 4.12.0
2466
- tslib: 2.8.1
2467
-
2468
- '@aws-sdk/util-arn-parser@3.972.0':
2469
- dependencies:
2470
- tslib: 2.8.1
1416
+ optional: true
2471
1417
 
2472
- '@aws-sdk/util-endpoints@3.972.0':
2473
- dependencies:
2474
- '@aws-sdk/types': 3.972.0
2475
- '@smithy/types': 4.12.0
2476
- '@smithy/url-parser': 4.2.8
2477
- '@smithy/util-endpoints': 3.2.8
2478
- tslib: 2.8.1
1418
+ which-pm-runs@1.1.0:
1419
+ resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==}
1420
+ engines: {node: '>=4'}
2479
1421
 
2480
- '@aws-sdk/util-locate-window@3.965.3':
2481
- dependencies:
2482
- tslib: 2.8.1
1422
+ which@2.0.2:
1423
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
1424
+ engines: {node: '>= 8'}
1425
+ hasBin: true
2483
1426
 
2484
- '@aws-sdk/util-user-agent-browser@3.972.0':
2485
- dependencies:
2486
- '@aws-sdk/types': 3.972.0
2487
- '@smithy/types': 4.12.0
2488
- bowser: 2.13.1
2489
- tslib: 2.8.1
1427
+ word-wrap@1.2.5:
1428
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
1429
+ engines: {node: '>=0.10.0'}
2490
1430
 
2491
- '@aws-sdk/util-user-agent-node@3.972.0':
2492
- dependencies:
2493
- '@aws-sdk/middleware-user-agent': 3.972.0
2494
- '@aws-sdk/types': 3.972.0
2495
- '@smithy/node-config-provider': 4.3.8
2496
- '@smithy/types': 4.12.0
2497
- tslib: 2.8.1
1431
+ ws@8.19.0:
1432
+ resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
1433
+ engines: {node: '>=10.0.0'}
1434
+ peerDependencies:
1435
+ bufferutil: ^4.0.1
1436
+ utf-8-validate: '>=5.0.2'
1437
+ peerDependenciesMeta:
1438
+ bufferutil:
1439
+ optional: true
1440
+ utf-8-validate:
1441
+ optional: true
2498
1442
 
2499
- '@aws-sdk/xml-builder@3.972.0':
2500
- dependencies:
2501
- '@smithy/types': 4.12.0
2502
- fast-xml-parser: 5.2.5
2503
- tslib: 2.8.1
1443
+ xtend@4.0.2:
1444
+ resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
1445
+ engines: {node: '>=0.4'}
2504
1446
 
2505
- '@aws/lambda-invoke-store@0.2.3': {}
1447
+ yocto-queue@0.1.0:
1448
+ resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
1449
+ engines: {node: '>=10'}
2506
1450
 
2507
- '@cfworker/json-schema@4.1.1': {}
1451
+ zod@4.3.5:
1452
+ resolution: {integrity: sha512-k7Nwx6vuWx1IJ9Bjuf4Zt1PEllcwe7cls3VNzm4CQ1/hgtFUK2bRNG3rvnpPUhFjmqJKAKtjV576KnUkHocg/g==}
2508
1453
 
2509
- '@drizzle-team/brocli@0.10.2': {}
1454
+ snapshots:
2510
1455
 
2511
- '@esbuild-kit/core-utils@3.3.2':
2512
- dependencies:
2513
- esbuild: 0.27.2
2514
- source-map-support: 0.5.21
1456
+ '@alloc/quick-lru@5.2.0': {}
2515
1457
 
2516
- '@esbuild-kit/esm-loader@2.6.5':
2517
- dependencies:
2518
- '@esbuild-kit/core-utils': 3.3.2
2519
- get-tsconfig: 4.13.0
1458
+ '@cfworker/json-schema@4.1.1': {}
2520
1459
 
2521
1460
  '@esbuild/aix-ppc64@0.27.2':
2522
1461
  optional: true
@@ -2667,14 +1606,14 @@ snapshots:
2667
1606
  '@jridgewell/resolve-uri': 3.1.2
2668
1607
  '@jridgewell/sourcemap-codec': 1.5.5
2669
1608
 
2670
- '@langchain/core@1.1.16(openai@6.16.0(zod@4.3.5))':
1609
+ '@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))':
2671
1610
  dependencies:
2672
1611
  '@cfworker/json-schema': 4.1.1
2673
1612
  ansi-styles: 5.2.0
2674
1613
  camelcase: 6.3.0
2675
1614
  decamelize: 1.2.0
2676
1615
  js-tiktoken: 1.0.21
2677
- langsmith: 0.4.7(openai@6.16.0(zod@4.3.5))
1616
+ langsmith: 0.4.7(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
2678
1617
  mustache: 4.2.0
2679
1618
  p-queue: 6.6.2
2680
1619
  uuid: 10.0.0
@@ -2685,11 +1624,11 @@ snapshots:
2685
1624
  - '@opentelemetry/sdk-trace-base'
2686
1625
  - openai
2687
1626
 
2688
- '@langchain/openai@1.2.3(@langchain/core@1.1.16(openai@6.16.0(zod@4.3.5)))':
1627
+ '@langchain/openai@1.2.3(@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5)))(ws@8.19.0)':
2689
1628
  dependencies:
2690
- '@langchain/core': 1.1.16(openai@6.16.0(zod@4.3.5))
1629
+ '@langchain/core': 1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
2691
1630
  js-tiktoken: 1.0.21
2692
- openai: 6.16.0(zod@4.3.5)
1631
+ openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
2693
1632
  zod: 4.3.5
2694
1633
  transitivePeerDependencies:
2695
1634
  - ws
@@ -2781,349 +1720,59 @@ snapshots:
2781
1720
  '@rollup/rollup-win32-x64-msvc@4.55.3':
2782
1721
  optional: true
2783
1722
 
2784
- '@smithy/abort-controller@4.2.8':
2785
- dependencies:
2786
- '@smithy/types': 4.12.0
2787
- tslib: 2.8.1
2788
-
2789
- '@smithy/chunked-blob-reader-native@4.2.1':
2790
- dependencies:
2791
- '@smithy/util-base64': 4.3.0
2792
- tslib: 2.8.1
2793
-
2794
- '@smithy/chunked-blob-reader@5.2.0':
2795
- dependencies:
2796
- tslib: 2.8.1
2797
-
2798
- '@smithy/config-resolver@4.4.6':
2799
- dependencies:
2800
- '@smithy/node-config-provider': 4.3.8
2801
- '@smithy/types': 4.12.0
2802
- '@smithy/util-config-provider': 4.2.0
2803
- '@smithy/util-endpoints': 3.2.8
2804
- '@smithy/util-middleware': 4.2.8
2805
- tslib: 2.8.1
2806
-
2807
- '@smithy/core@3.21.0':
2808
- dependencies:
2809
- '@smithy/middleware-serde': 4.2.9
2810
- '@smithy/protocol-http': 5.3.8
2811
- '@smithy/types': 4.12.0
2812
- '@smithy/util-base64': 4.3.0
2813
- '@smithy/util-body-length-browser': 4.2.0
2814
- '@smithy/util-middleware': 4.2.8
2815
- '@smithy/util-stream': 4.5.10
2816
- '@smithy/util-utf8': 4.2.0
2817
- '@smithy/uuid': 1.1.0
2818
- tslib: 2.8.1
2819
-
2820
- '@smithy/credential-provider-imds@4.2.8':
2821
- dependencies:
2822
- '@smithy/node-config-provider': 4.3.8
2823
- '@smithy/property-provider': 4.2.8
2824
- '@smithy/types': 4.12.0
2825
- '@smithy/url-parser': 4.2.8
2826
- tslib: 2.8.1
2827
-
2828
- '@smithy/eventstream-codec@4.2.8':
2829
- dependencies:
2830
- '@aws-crypto/crc32': 5.2.0
2831
- '@smithy/types': 4.12.0
2832
- '@smithy/util-hex-encoding': 4.2.0
2833
- tslib: 2.8.1
2834
-
2835
- '@smithy/eventstream-serde-browser@4.2.8':
2836
- dependencies:
2837
- '@smithy/eventstream-serde-universal': 4.2.8
2838
- '@smithy/types': 4.12.0
2839
- tslib: 2.8.1
2840
-
2841
- '@smithy/eventstream-serde-config-resolver@4.3.8':
2842
- dependencies:
2843
- '@smithy/types': 4.12.0
2844
- tslib: 2.8.1
2845
-
2846
- '@smithy/eventstream-serde-node@4.2.8':
2847
- dependencies:
2848
- '@smithy/eventstream-serde-universal': 4.2.8
2849
- '@smithy/types': 4.12.0
2850
- tslib: 2.8.1
2851
-
2852
- '@smithy/eventstream-serde-universal@4.2.8':
2853
- dependencies:
2854
- '@smithy/eventstream-codec': 4.2.8
2855
- '@smithy/types': 4.12.0
2856
- tslib: 2.8.1
2857
-
2858
- '@smithy/fetch-http-handler@5.3.9':
2859
- dependencies:
2860
- '@smithy/protocol-http': 5.3.8
2861
- '@smithy/querystring-builder': 4.2.8
2862
- '@smithy/types': 4.12.0
2863
- '@smithy/util-base64': 4.3.0
2864
- tslib: 2.8.1
2865
-
2866
- '@smithy/hash-blob-browser@4.2.9':
2867
- dependencies:
2868
- '@smithy/chunked-blob-reader': 5.2.0
2869
- '@smithy/chunked-blob-reader-native': 4.2.1
2870
- '@smithy/types': 4.12.0
2871
- tslib: 2.8.1
2872
-
2873
- '@smithy/hash-node@4.2.8':
2874
- dependencies:
2875
- '@smithy/types': 4.12.0
2876
- '@smithy/util-buffer-from': 4.2.0
2877
- '@smithy/util-utf8': 4.2.0
2878
- tslib: 2.8.1
2879
-
2880
- '@smithy/hash-stream-node@4.2.8':
2881
- dependencies:
2882
- '@smithy/types': 4.12.0
2883
- '@smithy/util-utf8': 4.2.0
2884
- tslib: 2.8.1
2885
-
2886
- '@smithy/invalid-dependency@4.2.8':
2887
- dependencies:
2888
- '@smithy/types': 4.12.0
2889
- tslib: 2.8.1
2890
-
2891
- '@smithy/is-array-buffer@2.2.0':
2892
- dependencies:
2893
- tslib: 2.8.1
2894
-
2895
- '@smithy/is-array-buffer@4.2.0':
2896
- dependencies:
2897
- tslib: 2.8.1
2898
-
2899
- '@smithy/md5-js@4.2.8':
2900
- dependencies:
2901
- '@smithy/types': 4.12.0
2902
- '@smithy/util-utf8': 4.2.0
2903
- tslib: 2.8.1
2904
-
2905
- '@smithy/middleware-content-length@4.2.8':
2906
- dependencies:
2907
- '@smithy/protocol-http': 5.3.8
2908
- '@smithy/types': 4.12.0
2909
- tslib: 2.8.1
2910
-
2911
- '@smithy/middleware-endpoint@4.4.10':
2912
- dependencies:
2913
- '@smithy/core': 3.21.0
2914
- '@smithy/middleware-serde': 4.2.9
2915
- '@smithy/node-config-provider': 4.3.8
2916
- '@smithy/shared-ini-file-loader': 4.4.3
2917
- '@smithy/types': 4.12.0
2918
- '@smithy/url-parser': 4.2.8
2919
- '@smithy/util-middleware': 4.2.8
2920
- tslib: 2.8.1
2921
-
2922
- '@smithy/middleware-retry@4.4.26':
2923
- dependencies:
2924
- '@smithy/node-config-provider': 4.3.8
2925
- '@smithy/protocol-http': 5.3.8
2926
- '@smithy/service-error-classification': 4.2.8
2927
- '@smithy/smithy-client': 4.10.11
2928
- '@smithy/types': 4.12.0
2929
- '@smithy/util-middleware': 4.2.8
2930
- '@smithy/util-retry': 4.2.8
2931
- '@smithy/uuid': 1.1.0
2932
- tslib: 2.8.1
2933
-
2934
- '@smithy/middleware-serde@4.2.9':
2935
- dependencies:
2936
- '@smithy/protocol-http': 5.3.8
2937
- '@smithy/types': 4.12.0
2938
- tslib: 2.8.1
2939
-
2940
- '@smithy/middleware-stack@4.2.8':
2941
- dependencies:
2942
- '@smithy/types': 4.12.0
2943
- tslib: 2.8.1
2944
-
2945
- '@smithy/node-config-provider@4.3.8':
2946
- dependencies:
2947
- '@smithy/property-provider': 4.2.8
2948
- '@smithy/shared-ini-file-loader': 4.4.3
2949
- '@smithy/types': 4.12.0
2950
- tslib: 2.8.1
2951
-
2952
- '@smithy/node-http-handler@4.4.8':
2953
- dependencies:
2954
- '@smithy/abort-controller': 4.2.8
2955
- '@smithy/protocol-http': 5.3.8
2956
- '@smithy/querystring-builder': 4.2.8
2957
- '@smithy/types': 4.12.0
2958
- tslib: 2.8.1
2959
-
2960
- '@smithy/property-provider@4.2.8':
2961
- dependencies:
2962
- '@smithy/types': 4.12.0
2963
- tslib: 2.8.1
2964
-
2965
- '@smithy/protocol-http@5.3.8':
2966
- dependencies:
2967
- '@smithy/types': 4.12.0
2968
- tslib: 2.8.1
2969
-
2970
- '@smithy/querystring-builder@4.2.8':
2971
- dependencies:
2972
- '@smithy/types': 4.12.0
2973
- '@smithy/util-uri-escape': 4.2.0
2974
- tslib: 2.8.1
2975
-
2976
- '@smithy/querystring-parser@4.2.8':
2977
- dependencies:
2978
- '@smithy/types': 4.12.0
2979
- tslib: 2.8.1
2980
-
2981
- '@smithy/service-error-classification@4.2.8':
2982
- dependencies:
2983
- '@smithy/types': 4.12.0
2984
-
2985
- '@smithy/shared-ini-file-loader@4.4.3':
2986
- dependencies:
2987
- '@smithy/types': 4.12.0
2988
- tslib: 2.8.1
2989
-
2990
- '@smithy/signature-v4@5.3.8':
2991
- dependencies:
2992
- '@smithy/is-array-buffer': 4.2.0
2993
- '@smithy/protocol-http': 5.3.8
2994
- '@smithy/types': 4.12.0
2995
- '@smithy/util-hex-encoding': 4.2.0
2996
- '@smithy/util-middleware': 4.2.8
2997
- '@smithy/util-uri-escape': 4.2.0
2998
- '@smithy/util-utf8': 4.2.0
2999
- tslib: 2.8.1
3000
-
3001
- '@smithy/smithy-client@4.10.11':
3002
- dependencies:
3003
- '@smithy/core': 3.21.0
3004
- '@smithy/middleware-endpoint': 4.4.10
3005
- '@smithy/middleware-stack': 4.2.8
3006
- '@smithy/protocol-http': 5.3.8
3007
- '@smithy/types': 4.12.0
3008
- '@smithy/util-stream': 4.5.10
3009
- tslib: 2.8.1
3010
-
3011
- '@smithy/types@4.12.0':
3012
- dependencies:
3013
- tslib: 2.8.1
3014
-
3015
- '@smithy/url-parser@4.2.8':
3016
- dependencies:
3017
- '@smithy/querystring-parser': 4.2.8
3018
- '@smithy/types': 4.12.0
3019
- tslib: 2.8.1
3020
-
3021
- '@smithy/util-base64@4.3.0':
3022
- dependencies:
3023
- '@smithy/util-buffer-from': 4.2.0
3024
- '@smithy/util-utf8': 4.2.0
3025
- tslib: 2.8.1
3026
-
3027
- '@smithy/util-body-length-browser@4.2.0':
3028
- dependencies:
3029
- tslib: 2.8.1
3030
-
3031
- '@smithy/util-body-length-node@4.2.1':
3032
- dependencies:
3033
- tslib: 2.8.1
3034
-
3035
- '@smithy/util-buffer-from@2.2.0':
3036
- dependencies:
3037
- '@smithy/is-array-buffer': 2.2.0
3038
- tslib: 2.8.1
3039
-
3040
- '@smithy/util-buffer-from@4.2.0':
3041
- dependencies:
3042
- '@smithy/is-array-buffer': 4.2.0
3043
- tslib: 2.8.1
3044
-
3045
- '@smithy/util-config-provider@4.2.0':
3046
- dependencies:
3047
- tslib: 2.8.1
3048
-
3049
- '@smithy/util-defaults-mode-browser@4.3.25':
1723
+ '@supabase/auth-js@2.95.3':
3050
1724
  dependencies:
3051
- '@smithy/property-provider': 4.2.8
3052
- '@smithy/smithy-client': 4.10.11
3053
- '@smithy/types': 4.12.0
3054
1725
  tslib: 2.8.1
3055
1726
 
3056
- '@smithy/util-defaults-mode-node@4.2.28':
1727
+ '@supabase/functions-js@2.95.3':
3057
1728
  dependencies:
3058
- '@smithy/config-resolver': 4.4.6
3059
- '@smithy/credential-provider-imds': 4.2.8
3060
- '@smithy/node-config-provider': 4.3.8
3061
- '@smithy/property-provider': 4.2.8
3062
- '@smithy/smithy-client': 4.10.11
3063
- '@smithy/types': 4.12.0
3064
1729
  tslib: 2.8.1
3065
1730
 
3066
- '@smithy/util-endpoints@3.2.8':
1731
+ '@supabase/postgrest-js@2.95.3':
3067
1732
  dependencies:
3068
- '@smithy/node-config-provider': 4.3.8
3069
- '@smithy/types': 4.12.0
3070
1733
  tslib: 2.8.1
3071
1734
 
3072
- '@smithy/util-hex-encoding@4.2.0':
1735
+ '@supabase/realtime-js@2.95.3':
3073
1736
  dependencies:
1737
+ '@types/phoenix': 1.6.7
1738
+ '@types/ws': 8.18.1
3074
1739
  tslib: 2.8.1
1740
+ ws: 8.19.0
1741
+ transitivePeerDependencies:
1742
+ - bufferutil
1743
+ - utf-8-validate
3075
1744
 
3076
- '@smithy/util-middleware@4.2.8':
1745
+ '@supabase/storage-js@2.95.3':
3077
1746
  dependencies:
3078
- '@smithy/types': 4.12.0
1747
+ iceberg-js: 0.8.1
3079
1748
  tslib: 2.8.1
3080
1749
 
3081
- '@smithy/util-retry@4.2.8':
1750
+ '@supabase/supabase-js@2.95.3':
3082
1751
  dependencies:
3083
- '@smithy/service-error-classification': 4.2.8
3084
- '@smithy/types': 4.12.0
3085
- tslib: 2.8.1
1752
+ '@supabase/auth-js': 2.95.3
1753
+ '@supabase/functions-js': 2.95.3
1754
+ '@supabase/postgrest-js': 2.95.3
1755
+ '@supabase/realtime-js': 2.95.3
1756
+ '@supabase/storage-js': 2.95.3
1757
+ transitivePeerDependencies:
1758
+ - bufferutil
1759
+ - utf-8-validate
3086
1760
 
3087
- '@smithy/util-stream@4.5.10':
3088
- dependencies:
3089
- '@smithy/fetch-http-handler': 5.3.9
3090
- '@smithy/node-http-handler': 4.4.8
3091
- '@smithy/types': 4.12.0
3092
- '@smithy/util-base64': 4.3.0
3093
- '@smithy/util-buffer-from': 4.2.0
3094
- '@smithy/util-hex-encoding': 4.2.0
3095
- '@smithy/util-utf8': 4.2.0
3096
- tslib: 2.8.1
1761
+ '@types/estree@1.0.8': {}
3097
1762
 
3098
- '@smithy/util-uri-escape@4.2.0':
3099
- dependencies:
3100
- tslib: 2.8.1
1763
+ '@types/json-schema@7.0.15': {}
3101
1764
 
3102
- '@smithy/util-utf8@2.3.0':
1765
+ '@types/node@25.2.3':
3103
1766
  dependencies:
3104
- '@smithy/util-buffer-from': 2.2.0
3105
- tslib: 2.8.1
1767
+ undici-types: 7.16.0
3106
1768
 
3107
- '@smithy/util-utf8@4.2.0':
3108
- dependencies:
3109
- '@smithy/util-buffer-from': 4.2.0
3110
- tslib: 2.8.1
1769
+ '@types/phoenix@1.6.7': {}
3111
1770
 
3112
- '@smithy/util-waiter@4.2.8':
3113
- dependencies:
3114
- '@smithy/abort-controller': 4.2.8
3115
- '@smithy/types': 4.12.0
3116
- tslib: 2.8.1
1771
+ '@types/uuid@10.0.0': {}
3117
1772
 
3118
- '@smithy/uuid@1.1.0':
1773
+ '@types/ws@8.18.1':
3119
1774
  dependencies:
3120
- tslib: 2.8.1
3121
-
3122
- '@types/estree@1.0.8': {}
3123
-
3124
- '@types/json-schema@7.0.15': {}
3125
-
3126
- '@types/uuid@10.0.0': {}
1775
+ '@types/node': 25.2.3
3127
1776
 
3128
1777
  '@typescript-eslint/eslint-plugin@8.53.1(@typescript-eslint/parser@8.53.1(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.2(jiti@1.21.7))(typescript@5.9.3)':
3129
1778
  dependencies:
@@ -3229,8 +1878,6 @@ snapshots:
3229
1878
  json-schema-traverse: 0.4.1
3230
1879
  uri-js: 4.4.1
3231
1880
 
3232
- ansi-regex@6.2.2: {}
3233
-
3234
1881
  ansi-styles@4.3.0:
3235
1882
  dependencies:
3236
1883
  color-convert: 2.0.1
@@ -3275,8 +1922,6 @@ snapshots:
3275
1922
 
3276
1923
  binary-extensions@2.3.0: {}
3277
1924
 
3278
- bowser@2.13.1: {}
3279
-
3280
1925
  brace-expansion@1.1.12:
3281
1926
  dependencies:
3282
1927
  balanced-match: 1.0.2
@@ -3298,13 +1943,6 @@ snapshots:
3298
1943
  node-releases: 2.0.27
3299
1944
  update-browserslist-db: 1.2.3(browserslist@4.28.1)
3300
1945
 
3301
- buffer-from@1.1.2: {}
3302
-
3303
- buffer@5.6.0:
3304
- dependencies:
3305
- base64-js: 1.5.1
3306
- ieee754: 1.2.1
3307
-
3308
1946
  call-bind-apply-helpers@1.0.2:
3309
1947
  dependencies:
3310
1948
  es-errors: 1.3.0
@@ -3323,8 +1961,6 @@ snapshots:
3323
1961
  ansi-styles: 4.3.0
3324
1962
  supports-color: 7.2.0
3325
1963
 
3326
- chalk@5.6.2: {}
3327
-
3328
1964
  chokidar@3.6.0:
3329
1965
  dependencies:
3330
1966
  anymatch: 3.1.3
@@ -3337,12 +1973,6 @@ snapshots:
3337
1973
  optionalDependencies:
3338
1974
  fsevents: 2.3.3
3339
1975
 
3340
- cli-cursor@5.0.0:
3341
- dependencies:
3342
- restore-cursor: 5.1.0
3343
-
3344
- cli-spinners@3.4.0: {}
3345
-
3346
1976
  color-convert@2.0.1:
3347
1977
  dependencies:
3348
1978
  color-name: 1.1.4
@@ -3353,8 +1983,6 @@ snapshots:
3353
1983
  dependencies:
3354
1984
  delayed-stream: 1.0.0
3355
1985
 
3356
- commander@14.0.2: {}
3357
-
3358
1986
  commander@4.1.1: {}
3359
1987
 
3360
1988
  concat-map@0.0.1: {}
@@ -3363,56 +1991,22 @@ snapshots:
3363
1991
  dependencies:
3364
1992
  simple-wcswidth: 1.1.2
3365
1993
 
3366
- coze-coding-dev-sdk@0.7.3(openai@6.16.0(zod@4.3.5)):
1994
+ coze-coding-dev-sdk@0.7.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))(ws@8.19.0):
3367
1995
  dependencies:
3368
- '@aws-sdk/client-s3': 3.972.0
3369
- '@aws-sdk/lib-storage': 3.972.0(@aws-sdk/client-s3@3.972.0)
3370
- '@langchain/core': 1.1.16(openai@6.16.0(zod@4.3.5))
3371
- '@langchain/openai': 1.2.3(@langchain/core@1.1.16(openai@6.16.0(zod@4.3.5)))
1996
+ '@langchain/core': 1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5))
1997
+ '@langchain/openai': 1.2.3(@langchain/core@1.1.16(openai@6.16.0(ws@8.19.0)(zod@4.3.5)))(ws@8.19.0)
1998
+ '@supabase/supabase-js': 2.95.3
3372
1999
  axios: 1.13.2
3373
- chalk: 5.6.2
3374
- commander: 14.0.2
3375
- drizzle-kit: 0.31.8
3376
- drizzle-orm: 0.45.1(pg@8.17.2)
3377
- ora: 9.1.0
3378
2000
  pg: 8.17.2
3379
- transliteration: 2.6.1
3380
2001
  transitivePeerDependencies:
3381
- - '@aws-sdk/client-rds-data'
3382
- - '@cloudflare/workers-types'
3383
- - '@electric-sql/pglite'
3384
- - '@libsql/client'
3385
- - '@libsql/client-wasm'
3386
- - '@neondatabase/serverless'
3387
- - '@op-engineering/op-sqlite'
3388
2002
  - '@opentelemetry/api'
3389
2003
  - '@opentelemetry/exporter-trace-otlp-proto'
3390
2004
  - '@opentelemetry/sdk-trace-base'
3391
- - '@planetscale/database'
3392
- - '@prisma/client'
3393
- - '@tidbcloud/serverless'
3394
- - '@types/better-sqlite3'
3395
- - '@types/pg'
3396
- - '@types/sql.js'
3397
- - '@upstash/redis'
3398
- - '@vercel/postgres'
3399
- - '@xata.io/client'
3400
- - aws-crt
3401
- - better-sqlite3
3402
- - bun-types
2005
+ - bufferutil
3403
2006
  - debug
3404
- - expo-sqlite
3405
- - gel
3406
- - knex
3407
- - kysely
3408
- - mysql2
3409
2007
  - openai
3410
2008
  - pg-native
3411
- - postgres
3412
- - prisma
3413
- - sql.js
3414
- - sqlite3
3415
- - supports-color
2009
+ - utf-8-validate
3416
2010
  - ws
3417
2011
 
3418
2012
  cross-spawn@7.0.6:
@@ -3437,18 +2031,7 @@ snapshots:
3437
2031
 
3438
2032
  dlv@1.1.3: {}
3439
2033
 
3440
- drizzle-kit@0.31.8:
3441
- dependencies:
3442
- '@drizzle-team/brocli': 0.10.2
3443
- '@esbuild-kit/esm-loader': 2.6.5
3444
- esbuild: 0.27.2
3445
- esbuild-register: 3.6.0(esbuild@0.27.2)
3446
- transitivePeerDependencies:
3447
- - supports-color
3448
-
3449
- drizzle-orm@0.45.1(pg@8.17.2):
3450
- optionalDependencies:
3451
- pg: 8.17.2
2034
+ dotenv@17.2.4: {}
3452
2035
 
3453
2036
  dunder-proto@1.0.1:
3454
2037
  dependencies:
@@ -3473,13 +2056,6 @@ snapshots:
3473
2056
  has-tostringtag: 1.0.2
3474
2057
  hasown: 2.0.2
3475
2058
 
3476
- esbuild-register@3.6.0(esbuild@0.27.2):
3477
- dependencies:
3478
- debug: 4.4.3
3479
- esbuild: 0.27.2
3480
- transitivePeerDependencies:
3481
- - supports-color
3482
-
3483
2059
  esbuild@0.27.2:
3484
2060
  optionalDependencies:
3485
2061
  '@esbuild/aix-ppc64': 0.27.2
@@ -3583,8 +2159,6 @@ snapshots:
3583
2159
 
3584
2160
  eventemitter3@4.0.7: {}
3585
2161
 
3586
- events@3.3.0: {}
3587
-
3588
2162
  fast-deep-equal@3.1.3: {}
3589
2163
 
3590
2164
  fast-glob@3.3.3:
@@ -3599,10 +2173,6 @@ snapshots:
3599
2173
 
3600
2174
  fast-levenshtein@2.0.6: {}
3601
2175
 
3602
- fast-xml-parser@5.2.5:
3603
- dependencies:
3604
- strnum: 2.1.2
3605
-
3606
2176
  fastq@1.20.1:
3607
2177
  dependencies:
3608
2178
  reusify: 1.1.0
@@ -3648,8 +2218,6 @@ snapshots:
3648
2218
 
3649
2219
  function-bind@1.1.2: {}
3650
2220
 
3651
- get-east-asian-width@1.4.0: {}
3652
-
3653
2221
  get-intrinsic@1.3.0:
3654
2222
  dependencies:
3655
2223
  call-bind-apply-helpers: 1.0.2
@@ -3668,10 +2236,6 @@ snapshots:
3668
2236
  dunder-proto: 1.0.1
3669
2237
  es-object-atoms: 1.1.1
3670
2238
 
3671
- get-tsconfig@4.13.0:
3672
- dependencies:
3673
- resolve-pkg-maps: 1.0.0
3674
-
3675
2239
  glob-parent@5.1.2:
3676
2240
  dependencies:
3677
2241
  is-glob: 4.0.3
@@ -3696,7 +2260,7 @@ snapshots:
3696
2260
  dependencies:
3697
2261
  function-bind: 1.1.2
3698
2262
 
3699
- ieee754@1.2.1: {}
2263
+ iceberg-js@0.8.1: {}
3700
2264
 
3701
2265
  ignore@5.3.2: {}
3702
2266
 
@@ -3709,8 +2273,6 @@ snapshots:
3709
2273
 
3710
2274
  imurmurhash@0.1.4: {}
3711
2275
 
3712
- inherits@2.0.4: {}
3713
-
3714
2276
  is-binary-path@2.1.0:
3715
2277
  dependencies:
3716
2278
  binary-extensions: 2.3.0
@@ -3725,12 +2287,8 @@ snapshots:
3725
2287
  dependencies:
3726
2288
  is-extglob: 2.1.1
3727
2289
 
3728
- is-interactive@2.0.0: {}
3729
-
3730
2290
  is-number@7.0.0: {}
3731
2291
 
3732
- is-unicode-supported@2.1.0: {}
3733
-
3734
2292
  isexe@2.0.0: {}
3735
2293
 
3736
2294
  jiti@1.21.7: {}
@@ -3753,7 +2311,7 @@ snapshots:
3753
2311
  dependencies:
3754
2312
  json-buffer: 3.0.1
3755
2313
 
3756
- langsmith@0.4.7(openai@6.16.0(zod@4.3.5)):
2314
+ langsmith@0.4.7(openai@6.16.0(ws@8.19.0)(zod@4.3.5)):
3757
2315
  dependencies:
3758
2316
  '@types/uuid': 10.0.0
3759
2317
  chalk: 4.1.2
@@ -3762,7 +2320,7 @@ snapshots:
3762
2320
  semver: 7.7.3
3763
2321
  uuid: 10.0.0
3764
2322
  optionalDependencies:
3765
- openai: 6.16.0(zod@4.3.5)
2323
+ openai: 6.16.0(ws@8.19.0)(zod@4.3.5)
3766
2324
 
3767
2325
  levn@0.4.1:
3768
2326
  dependencies:
@@ -3779,11 +2337,6 @@ snapshots:
3779
2337
 
3780
2338
  lodash.merge@4.6.2: {}
3781
2339
 
3782
- log-symbols@7.0.1:
3783
- dependencies:
3784
- is-unicode-supported: 2.1.0
3785
- yoctocolors: 2.1.2
3786
-
3787
2340
  math-intrinsics@1.1.0: {}
3788
2341
 
3789
2342
  merge2@1.4.1: {}
@@ -3799,8 +2352,6 @@ snapshots:
3799
2352
  dependencies:
3800
2353
  mime-db: 1.52.0
3801
2354
 
3802
- mimic-function@5.0.1: {}
3803
-
3804
2355
  minimatch@3.1.2:
3805
2356
  dependencies:
3806
2357
  brace-expansion: 1.1.12
@@ -3831,16 +2382,13 @@ snapshots:
3831
2382
 
3832
2383
  object-hash@3.0.0: {}
3833
2384
 
3834
- onetime@7.0.0:
3835
- dependencies:
3836
- mimic-function: 5.0.1
3837
-
3838
2385
  only-allow@1.2.2:
3839
2386
  dependencies:
3840
2387
  which-pm-runs: 1.1.0
3841
2388
 
3842
- openai@6.16.0(zod@4.3.5):
2389
+ openai@6.16.0(ws@8.19.0)(zod@4.3.5):
3843
2390
  optionalDependencies:
2391
+ ws: 8.19.0
3844
2392
  zod: 4.3.5
3845
2393
 
3846
2394
  optionator@0.9.4:
@@ -3852,17 +2400,6 @@ snapshots:
3852
2400
  type-check: 0.4.0
3853
2401
  word-wrap: 1.2.5
3854
2402
 
3855
- ora@9.1.0:
3856
- dependencies:
3857
- chalk: 5.6.2
3858
- cli-cursor: 5.0.0
3859
- cli-spinners: 3.4.0
3860
- is-interactive: 2.0.0
3861
- is-unicode-supported: 2.1.0
3862
- log-symbols: 7.0.1
3863
- stdin-discarder: 0.2.2
3864
- string-width: 8.1.0
3865
-
3866
2403
  p-finally@1.0.0: {}
3867
2404
 
3868
2405
  p-limit@3.1.0:
@@ -3892,9 +2429,6 @@ snapshots:
3892
2429
 
3893
2430
  path-parse@1.0.7: {}
3894
2431
 
3895
- pg-cloudflare@1.3.0:
3896
- optional: true
3897
-
3898
2432
  pg-connection-string@2.10.1: {}
3899
2433
 
3900
2434
  pg-int8@1.0.1: {}
@@ -3920,8 +2454,6 @@ snapshots:
3920
2454
  pg-protocol: 1.11.0
3921
2455
  pg-types: 2.2.0
3922
2456
  pgpass: 1.0.5
3923
- optionalDependencies:
3924
- pg-cloudflare: 1.3.0
3925
2457
 
3926
2458
  pgpass@1.0.5:
3927
2459
  dependencies:
@@ -3996,31 +2528,18 @@ snapshots:
3996
2528
  dependencies:
3997
2529
  pify: 2.3.0
3998
2530
 
3999
- readable-stream@3.6.2:
4000
- dependencies:
4001
- inherits: 2.0.4
4002
- string_decoder: 1.3.0
4003
- util-deprecate: 1.0.2
4004
-
4005
2531
  readdirp@3.6.0:
4006
2532
  dependencies:
4007
2533
  picomatch: 2.3.1
4008
2534
 
4009
2535
  resolve-from@4.0.0: {}
4010
2536
 
4011
- resolve-pkg-maps@1.0.0: {}
4012
-
4013
2537
  resolve@1.22.11:
4014
2538
  dependencies:
4015
2539
  is-core-module: 2.16.1
4016
2540
  path-parse: 1.0.7
4017
2541
  supports-preserve-symlinks-flag: 1.0.0
4018
2542
 
4019
- restore-cursor@5.1.0:
4020
- dependencies:
4021
- onetime: 7.0.0
4022
- signal-exit: 4.1.0
4023
-
4024
2543
  reusify@1.1.0: {}
4025
2544
 
4026
2545
  rollup@4.55.3:
@@ -4058,8 +2577,6 @@ snapshots:
4058
2577
  dependencies:
4059
2578
  queue-microtask: 1.2.3
4060
2579
 
4061
- safe-buffer@5.2.1: {}
4062
-
4063
2580
  semver@7.7.3: {}
4064
2581
 
4065
2582
  shebang-command@2.0.0:
@@ -4068,45 +2585,14 @@ snapshots:
4068
2585
 
4069
2586
  shebang-regex@3.0.0: {}
4070
2587
 
4071
- signal-exit@4.1.0: {}
4072
-
4073
2588
  simple-wcswidth@1.1.2: {}
4074
2589
 
4075
2590
  source-map-js@1.2.1: {}
4076
2591
 
4077
- source-map-support@0.5.21:
4078
- dependencies:
4079
- buffer-from: 1.1.2
4080
- source-map: 0.6.1
4081
-
4082
- source-map@0.6.1: {}
4083
-
4084
2592
  split2@4.2.0: {}
4085
2593
 
4086
- stdin-discarder@0.2.2: {}
4087
-
4088
- stream-browserify@3.0.0:
4089
- dependencies:
4090
- inherits: 2.0.4
4091
- readable-stream: 3.6.2
4092
-
4093
- string-width@8.1.0:
4094
- dependencies:
4095
- get-east-asian-width: 1.4.0
4096
- strip-ansi: 7.1.2
4097
-
4098
- string_decoder@1.3.0:
4099
- dependencies:
4100
- safe-buffer: 5.2.1
4101
-
4102
- strip-ansi@7.1.2:
4103
- dependencies:
4104
- ansi-regex: 6.2.2
4105
-
4106
2594
  strip-json-comments@3.1.1: {}
4107
2595
 
4108
- strnum@2.1.2: {}
4109
-
4110
2596
  sucrase@3.35.1:
4111
2597
  dependencies:
4112
2598
  '@jridgewell/gen-mapping': 0.3.13
@@ -4168,8 +2654,6 @@ snapshots:
4168
2654
  dependencies:
4169
2655
  is-number: 7.0.0
4170
2656
 
4171
- transliteration@2.6.1: {}
4172
-
4173
2657
  ts-api-utils@2.4.0(typescript@5.9.3):
4174
2658
  dependencies:
4175
2659
  typescript: 5.9.3
@@ -4195,6 +2679,8 @@ snapshots:
4195
2679
 
4196
2680
  typescript@5.9.3: {}
4197
2681
 
2682
+ undici-types@7.16.0: {}
2683
+
4198
2684
  update-browserslist-db@1.2.3(browserslist@4.28.1):
4199
2685
  dependencies:
4200
2686
  browserslist: 4.28.1
@@ -4209,7 +2695,7 @@ snapshots:
4209
2695
 
4210
2696
  uuid@10.0.0: {}
4211
2697
 
4212
- vite@7.3.1(jiti@1.21.7):
2698
+ vite@7.3.1(@types/node@25.2.3)(jiti@1.21.7):
4213
2699
  dependencies:
4214
2700
  esbuild: 0.27.2
4215
2701
  fdir: 6.5.0(picomatch@4.0.3)
@@ -4218,6 +2704,7 @@ snapshots:
4218
2704
  rollup: 4.55.3
4219
2705
  tinyglobby: 0.2.15
4220
2706
  optionalDependencies:
2707
+ '@types/node': 25.2.3
4221
2708
  fsevents: 2.3.3
4222
2709
  jiti: 1.21.7
4223
2710
 
@@ -4229,10 +2716,10 @@ snapshots:
4229
2716
 
4230
2717
  word-wrap@1.2.5: {}
4231
2718
 
2719
+ ws@8.19.0: {}
2720
+
4232
2721
  xtend@4.0.2: {}
4233
2722
 
4234
2723
  yocto-queue@0.1.0: {}
4235
2724
 
4236
- yoctocolors@2.1.2: {}
4237
-
4238
2725
  zod@4.3.5: {}