@mangostudio/cli-darwin-arm64 0.1.0 → 0.1.1-canary.00a342c

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 (1844) hide show
  1. package/cursor-sidecar/node_modules/@bufbuild/protobuf/README.md +43 -0
  2. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/binary-encoding.d.ts +422 -0
  3. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/binary-encoding.js +444 -0
  4. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/binary-format.d.ts +113 -0
  5. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/binary-format.js +15 -0
  6. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/codegen-info.d.ts +33 -0
  7. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/codegen-info.js +69 -0
  8. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/create-descriptor-set.d.ts +36 -0
  9. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/create-descriptor-set.js +910 -0
  10. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/create-registry-from-desc.d.ts +15 -0
  11. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/create-registry-from-desc.js +264 -0
  12. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/create-registry.d.ts +9 -0
  13. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/create-registry.js +94 -0
  14. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/descriptor-set.d.ts +672 -0
  15. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/descriptor-set.js +15 -0
  16. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/enum.d.ts +35 -0
  17. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/enum.js +15 -0
  18. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/extension-accessor.d.ts +35 -0
  19. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/extension-accessor.js +114 -0
  20. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/extension.d.ts +24 -0
  21. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/extension.js +15 -0
  22. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/field-list.d.ts +27 -0
  23. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/field-list.js +15 -0
  24. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/field.d.ts +314 -0
  25. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/field.js +15 -0
  26. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/any_pb.d.ts +157 -0
  27. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/any_pb.js +273 -0
  28. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/api_pb.d.ts +256 -0
  29. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/api_pb.js +316 -0
  30. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/compiler/plugin_pb.d.ts +271 -0
  31. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/compiler/plugin_pb.js +219 -0
  32. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/descriptor_pb.d.ts +2277 -0
  33. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/descriptor_pb.js +2077 -0
  34. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/duration_pb.d.ts +100 -0
  35. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/duration_pb.js +169 -0
  36. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/empty_pb.d.ts +28 -0
  37. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/empty_pb.js +52 -0
  38. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/field_mask_pb.d.ts +227 -0
  39. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/field_mask_pb.js +311 -0
  40. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/source_context_pb.d.ts +29 -0
  41. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/source_context_pb.js +55 -0
  42. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/struct_pb.d.ts +158 -0
  43. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/struct_pb.js +240 -0
  44. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/timestamp_pb.d.ts +132 -0
  45. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/timestamp_pb.js +213 -0
  46. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/type_pb.d.ts +437 -0
  47. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/type_pb.js +562 -0
  48. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/wrappers_pb.d.ts +267 -0
  49. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/wrappers_pb.js +569 -0
  50. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/varint.d.ts +70 -0
  51. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/varint.js +323 -0
  52. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/index.d.ts +42 -0
  53. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/index.js +84 -0
  54. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/is-message.d.ts +22 -0
  55. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/is-message.js +52 -0
  56. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/json-format.d.ts +111 -0
  57. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/json-format.js +15 -0
  58. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/message-type.d.ts +51 -0
  59. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/message-type.js +15 -0
  60. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/message.d.ts +131 -0
  61. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/message.js +129 -0
  62. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/package.json +1 -0
  63. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/assert.d.ts +16 -0
  64. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/assert.js +59 -0
  65. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/binary-format.d.ts +7 -0
  66. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/binary-format.js +431 -0
  67. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/enum.d.ts +27 -0
  68. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/enum.js +94 -0
  69. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/extensions.d.ts +34 -0
  70. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/extensions.js +86 -0
  71. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/feature-set.d.ts +19 -0
  72. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/feature-set.js +120 -0
  73. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/field-list.d.ts +18 -0
  74. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/field-list.js +76 -0
  75. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/field-normalize.d.ts +9 -0
  76. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/field-normalize.js +69 -0
  77. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/field-wrapper.d.ts +25 -0
  78. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/field-wrapper.js +57 -0
  79. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/field.d.ts +16 -0
  80. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/field.js +45 -0
  81. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/json-format.d.ts +2 -0
  82. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/json-format.js +626 -0
  83. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/message-type.d.ts +18 -0
  84. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/message-type.js +50 -0
  85. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/names.d.ts +43 -0
  86. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/names.js +278 -0
  87. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/options-map.d.ts +7 -0
  88. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/options-map.js +15 -0
  89. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/proto-runtime.d.ts +53 -0
  90. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/proto-runtime.js +41 -0
  91. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/reflect.d.ts +9 -0
  92. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/reflect.js +79 -0
  93. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/reify-wkt.d.ts +102 -0
  94. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/reify-wkt.js +172 -0
  95. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/scalars.d.ts +18 -0
  96. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/scalars.js +105 -0
  97. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/text-format.d.ts +4 -0
  98. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/text-format.js +189 -0
  99. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/util-common.d.ts +2 -0
  100. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/util-common.js +237 -0
  101. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/util.d.ts +38 -0
  102. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/util.js +15 -0
  103. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto-base64.d.ts +18 -0
  104. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto-base64.js +128 -0
  105. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto-delimited.d.ts +54 -0
  106. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto-delimited.js +155 -0
  107. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto-double.d.ts +5 -0
  108. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto-double.js +29 -0
  109. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto-int64.d.ts +95 -0
  110. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto-int64.js +116 -0
  111. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto2.d.ts +4 -0
  112. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto2.js +53 -0
  113. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto3.d.ts +4 -0
  114. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto3.js +56 -0
  115. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/scalar.d.ts +53 -0
  116. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/scalar.js +81 -0
  117. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/service-type.d.ts +96 -0
  118. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/service-type.js +53 -0
  119. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/to-plain-message.d.ts +12 -0
  120. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/to-plain-message.js +72 -0
  121. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/type-registry.d.ts +57 -0
  122. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/type-registry.js +15 -0
  123. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/binary-encoding.d.ts +422 -0
  124. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/binary-encoding.js +439 -0
  125. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/binary-format.d.ts +113 -0
  126. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/binary-format.js +14 -0
  127. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/codegen-info.d.ts +33 -0
  128. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/codegen-info.js +67 -0
  129. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/create-descriptor-set.d.ts +36 -0
  130. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/create-descriptor-set.js +906 -0
  131. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/create-registry-from-desc.d.ts +15 -0
  132. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/create-registry-from-desc.js +261 -0
  133. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/create-registry.d.ts +9 -0
  134. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/create-registry.js +90 -0
  135. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/descriptor-set.d.ts +672 -0
  136. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/descriptor-set.js +14 -0
  137. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/enum.d.ts +35 -0
  138. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/enum.js +14 -0
  139. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/extension-accessor.d.ts +35 -0
  140. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/extension-accessor.js +107 -0
  141. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/extension.d.ts +24 -0
  142. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/extension.js +14 -0
  143. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/field-list.d.ts +27 -0
  144. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/field-list.js +14 -0
  145. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/field.d.ts +314 -0
  146. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/field.js +14 -0
  147. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/any_pb.d.ts +157 -0
  148. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/any_pb.js +269 -0
  149. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/api_pb.d.ts +256 -0
  150. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/api_pb.js +310 -0
  151. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/compiler/plugin_pb.d.ts +271 -0
  152. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/compiler/plugin_pb.js +212 -0
  153. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/descriptor_pb.d.ts +2277 -0
  154. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/descriptor_pb.js +2041 -0
  155. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/duration_pb.d.ts +100 -0
  156. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/duration_pb.js +165 -0
  157. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/empty_pb.d.ts +28 -0
  158. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/empty_pb.js +48 -0
  159. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/field_mask_pb.d.ts +227 -0
  160. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/field_mask_pb.js +307 -0
  161. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/source_context_pb.d.ts +29 -0
  162. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/source_context_pb.js +51 -0
  163. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/struct_pb.d.ts +158 -0
  164. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/struct_pb.js +234 -0
  165. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/timestamp_pb.d.ts +132 -0
  166. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/timestamp_pb.js +209 -0
  167. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/type_pb.d.ts +437 -0
  168. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/type_pb.js +554 -0
  169. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/wrappers_pb.d.ts +267 -0
  170. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/wrappers_pb.js +557 -0
  171. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/varint.d.ts +70 -0
  172. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/varint.js +313 -0
  173. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/index.d.ts +42 -0
  174. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/index.js +43 -0
  175. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/is-message.d.ts +22 -0
  176. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/is-message.js +48 -0
  177. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/json-format.d.ts +111 -0
  178. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/json-format.js +14 -0
  179. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/message-type.d.ts +51 -0
  180. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/message-type.js +14 -0
  181. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/message.d.ts +131 -0
  182. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/message.js +125 -0
  183. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/assert.d.ts +16 -0
  184. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/assert.js +52 -0
  185. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/binary-format.d.ts +7 -0
  186. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/binary-format.js +427 -0
  187. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/enum.d.ts +27 -0
  188. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/enum.js +87 -0
  189. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/extensions.d.ts +34 -0
  190. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/extensions.js +81 -0
  191. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/feature-set.d.ts +19 -0
  192. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/feature-set.js +116 -0
  193. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/field-list.d.ts +18 -0
  194. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/field-list.js +72 -0
  195. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/field-normalize.d.ts +9 -0
  196. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/field-normalize.js +65 -0
  197. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/field-wrapper.d.ts +25 -0
  198. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/field-wrapper.js +53 -0
  199. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/field.d.ts +16 -0
  200. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/field.js +41 -0
  201. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/json-format.d.ts +2 -0
  202. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/json-format.js +623 -0
  203. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/message-type.d.ts +18 -0
  204. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/message-type.js +46 -0
  205. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/names.d.ts +43 -0
  206. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/names.js +269 -0
  207. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/options-map.d.ts +7 -0
  208. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/options-map.js +14 -0
  209. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/proto-runtime.d.ts +53 -0
  210. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/proto-runtime.js +37 -0
  211. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/reflect.d.ts +9 -0
  212. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/reflect.js +74 -0
  213. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/reify-wkt.d.ts +102 -0
  214. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/reify-wkt.js +168 -0
  215. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/scalars.d.ts +18 -0
  216. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/scalars.js +99 -0
  217. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/text-format.d.ts +4 -0
  218. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/text-format.js +184 -0
  219. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/util-common.d.ts +2 -0
  220. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/util-common.js +234 -0
  221. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/util.d.ts +38 -0
  222. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/util.js +14 -0
  223. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto-base64.d.ts +18 -0
  224. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto-base64.js +125 -0
  225. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto-delimited.d.ts +54 -0
  226. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto-delimited.js +152 -0
  227. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto-double.d.ts +5 -0
  228. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto-double.js +26 -0
  229. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto-int64.d.ts +95 -0
  230. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto-int64.js +113 -0
  231. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto2.d.ts +4 -0
  232. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto2.js +50 -0
  233. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto3.d.ts +4 -0
  234. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto3.js +53 -0
  235. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/scalar.d.ts +53 -0
  236. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/scalar.js +78 -0
  237. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/service-type.d.ts +96 -0
  238. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/service-type.js +50 -0
  239. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/to-plain-message.d.ts +12 -0
  240. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/to-plain-message.js +70 -0
  241. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/type-registry.d.ts +57 -0
  242. package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/type-registry.js +14 -0
  243. package/cursor-sidecar/node_modules/@bufbuild/protobuf/package.json +34 -0
  244. package/cursor-sidecar/node_modules/@connectrpc/connect/README.md +62 -0
  245. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/any-client.d.ts +22 -0
  246. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/any-client.js +34 -0
  247. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/call-options.d.ts +34 -0
  248. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/call-options.js +15 -0
  249. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/callback-client.d.ts +31 -0
  250. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/callback-client.js +116 -0
  251. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/code.d.ts +75 -0
  252. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/code.js +92 -0
  253. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/connect-error.d.ts +90 -0
  254. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/connect-error.js +134 -0
  255. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/context-values.d.ts +34 -0
  256. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/context-values.js +41 -0
  257. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/cors.d.ts +45 -0
  258. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/cors.js +82 -0
  259. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/http-headers.d.ts +36 -0
  260. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/http-headers.js +68 -0
  261. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/implementation.d.ts +165 -0
  262. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/implementation.js +79 -0
  263. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/index.d.ts +22 -0
  264. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/index.js +47 -0
  265. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/interceptor.d.ts +155 -0
  266. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/interceptor.js +27 -0
  267. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/method-type.d.ts +43 -0
  268. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/method-type.js +15 -0
  269. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/package.json +1 -0
  270. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/promise-client.d.ts +49 -0
  271. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/promise-client.js +147 -0
  272. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/async-iterable.d.ts +527 -0
  273. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/async-iterable.js +959 -0
  274. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/compression.d.ts +48 -0
  275. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/compression.js +75 -0
  276. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/content-type-matcher.d.ts +16 -0
  277. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/content-type-matcher.js +43 -0
  278. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/create-method-url.d.ts +17 -0
  279. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/create-method-url.js +36 -0
  280. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/envelope.d.ts +59 -0
  281. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/envelope.js +152 -0
  282. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/index.d.ts +24 -0
  283. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/index.js +93 -0
  284. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/invoke-implementation.d.ts +21 -0
  285. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/invoke-implementation.js +250 -0
  286. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/limit-io.d.ts +24 -0
  287. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/limit-io.js +80 -0
  288. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/normalize.d.ts +12 -0
  289. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/normalize.js +56 -0
  290. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/protocol-handler-factory.d.ts +18 -0
  291. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/protocol-handler-factory.js +15 -0
  292. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/run-call.d.ts +45 -0
  293. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/run-call.js +119 -0
  294. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/serialization.d.ts +104 -0
  295. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/serialization.js +148 -0
  296. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/signals.d.ts +36 -0
  297. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/signals.js +100 -0
  298. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/transport-options.d.ts +98 -0
  299. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/transport-options.js +15 -0
  300. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-fetch.d.ts +35 -0
  301. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-fetch.js +150 -0
  302. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-handler-client.d.ts +7 -0
  303. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-handler-client.js +90 -0
  304. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-handler.d.ts +155 -0
  305. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-handler.js +131 -0
  306. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/universal.d.ts +102 -0
  307. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/universal.js +78 -0
  308. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/code-string.d.ts +16 -0
  309. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/code-string.js +52 -0
  310. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/content-type.d.ts +40 -0
  311. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/content-type.js +71 -0
  312. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/end-stream.d.ts +44 -0
  313. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/end-stream.js +132 -0
  314. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/error-json.d.ts +36 -0
  315. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/error-json.js +163 -0
  316. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/get-request.d.ts +7 -0
  317. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/get-request.js +68 -0
  318. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/handler-factory.d.ts +6 -0
  319. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/handler-factory.js +281 -0
  320. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/headers.d.ts +12 -0
  321. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/headers.js +28 -0
  322. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/http-status.d.ts +15 -0
  323. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/http-status.js +90 -0
  324. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/index.d.ts +16 -0
  325. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/index.js +81 -0
  326. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/parse-timeout.d.ts +13 -0
  327. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/parse-timeout.js +44 -0
  328. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/query-params.d.ts +8 -0
  329. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/query-params.js +24 -0
  330. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/request-header.d.ts +19 -0
  331. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/request-header.js +70 -0
  332. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/trailer-mux.d.ts +19 -0
  333. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/trailer-mux.js +53 -0
  334. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/transport.d.ts +6 -0
  335. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/transport.js +214 -0
  336. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/validate-response.d.ts +30 -0
  337. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/validate-response.js +72 -0
  338. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/version.d.ts +20 -0
  339. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/version.js +58 -0
  340. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/content-type.d.ts +16 -0
  341. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/content-type.js +38 -0
  342. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/gen/status_pb.d.ts +89 -0
  343. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/gen/status_pb.js +120 -0
  344. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/handler-factory.d.ts +6 -0
  345. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/handler-factory.js +122 -0
  346. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/headers.d.ts +12 -0
  347. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/headers.js +28 -0
  348. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/http-status.d.ts +8 -0
  349. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/http-status.js +46 -0
  350. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/index.d.ts +10 -0
  351. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/index.js +61 -0
  352. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/parse-timeout.d.ts +13 -0
  353. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/parse-timeout.js +53 -0
  354. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/request-header.d.ts +13 -0
  355. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/request-header.js +56 -0
  356. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/trailer-status.d.ts +28 -0
  357. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/trailer-status.js +104 -0
  358. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/transport.d.ts +6 -0
  359. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/transport.js +185 -0
  360. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/validate-response.d.ts +33 -0
  361. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/validate-response.js +75 -0
  362. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/validate-trailer.d.ts +13 -0
  363. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/validate-trailer.js +44 -0
  364. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/content-type.d.ts +19 -0
  365. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/content-type.js +41 -0
  366. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/handler-factory.d.ts +6 -0
  367. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/handler-factory.js +128 -0
  368. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/headers.d.ts +20 -0
  369. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/headers.js +44 -0
  370. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/index.d.ts +8 -0
  371. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/index.js +61 -0
  372. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/request-header.d.ts +13 -0
  373. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/request-header.js +59 -0
  374. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/trailer.d.ts +27 -0
  375. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/trailer.js +71 -0
  376. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/transport.d.ts +6 -0
  377. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/transport.js +238 -0
  378. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/validate-response.d.ts +34 -0
  379. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/validate-response.js +73 -0
  380. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/router-transport.d.ts +13 -0
  381. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/router-transport.js +32 -0
  382. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/router.d.ts +88 -0
  383. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/router.js +83 -0
  384. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/transport.d.ts +20 -0
  385. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/transport.js +15 -0
  386. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/any-client.d.ts +22 -0
  387. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/any-client.js +31 -0
  388. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/call-options.d.ts +34 -0
  389. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/call-options.js +14 -0
  390. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/callback-client.d.ts +31 -0
  391. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/callback-client.js +113 -0
  392. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/code.d.ts +75 -0
  393. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/code.js +89 -0
  394. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/connect-error.d.ts +90 -0
  395. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/connect-error.js +130 -0
  396. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/context-values.d.ts +34 -0
  397. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/context-values.js +37 -0
  398. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/cors.d.ts +45 -0
  399. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/cors.js +79 -0
  400. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/http-headers.d.ts +36 -0
  401. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/http-headers.js +63 -0
  402. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/implementation.d.ts +165 -0
  403. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/implementation.js +75 -0
  404. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/index.d.ts +22 -0
  405. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/index.js +27 -0
  406. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/interceptor.d.ts +155 -0
  407. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/interceptor.js +24 -0
  408. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/method-type.d.ts +43 -0
  409. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/method-type.js +14 -0
  410. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/promise-client.d.ts +49 -0
  411. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/promise-client.js +139 -0
  412. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/async-iterable.d.ts +527 -0
  413. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/async-iterable.js +937 -0
  414. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/compression.d.ts +48 -0
  415. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/compression.js +71 -0
  416. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/content-type-matcher.d.ts +16 -0
  417. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/content-type-matcher.js +40 -0
  418. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/create-method-url.d.ts +17 -0
  419. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/create-method-url.js +33 -0
  420. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/envelope.d.ts +59 -0
  421. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/envelope.js +145 -0
  422. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/index.d.ts +24 -0
  423. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/index.js +32 -0
  424. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/invoke-implementation.d.ts +21 -0
  425. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/invoke-implementation.js +246 -0
  426. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/limit-io.d.ts +24 -0
  427. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/limit-io.js +75 -0
  428. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/normalize.d.ts +12 -0
  429. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/normalize.js +53 -0
  430. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/protocol-handler-factory.d.ts +18 -0
  431. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/protocol-handler-factory.js +14 -0
  432. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/run-call.d.ts +45 -0
  433. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/run-call.js +115 -0
  434. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/serialization.d.ts +104 -0
  435. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/serialization.js +140 -0
  436. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/signals.d.ts +36 -0
  437. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/signals.js +95 -0
  438. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/transport-options.d.ts +98 -0
  439. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/transport-options.js +14 -0
  440. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/universal-fetch.d.ts +35 -0
  441. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/universal-fetch.js +142 -0
  442. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/universal-handler-client.d.ts +7 -0
  443. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/universal-handler-client.js +87 -0
  444. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/universal-handler.d.ts +155 -0
  445. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/universal-handler.js +125 -0
  446. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/universal.d.ts +102 -0
  447. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/universal.js +74 -0
  448. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/code-string.d.ts +16 -0
  449. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/code-string.js +48 -0
  450. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/content-type.d.ts +40 -0
  451. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/content-type.js +66 -0
  452. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/end-stream.d.ts +44 -0
  453. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/end-stream.js +126 -0
  454. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/error-json.d.ts +36 -0
  455. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/error-json.js +157 -0
  456. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/get-request.d.ts +7 -0
  457. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/get-request.js +65 -0
  458. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/handler-factory.d.ts +6 -0
  459. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/handler-factory.js +278 -0
  460. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/headers.d.ts +12 -0
  461. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/headers.js +25 -0
  462. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/http-status.d.ts +15 -0
  463. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/http-status.js +86 -0
  464. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/index.d.ts +16 -0
  465. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/index.js +33 -0
  466. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/parse-timeout.d.ts +13 -0
  467. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/parse-timeout.js +41 -0
  468. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/query-params.d.ts +8 -0
  469. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/query-params.js +21 -0
  470. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/request-header.d.ts +19 -0
  471. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/request-header.js +66 -0
  472. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/trailer-mux.d.ts +19 -0
  473. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/trailer-mux.js +49 -0
  474. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/transport.d.ts +6 -0
  475. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/transport.js +211 -0
  476. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/validate-response.d.ts +30 -0
  477. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/validate-response.js +68 -0
  478. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/version.d.ts +20 -0
  479. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/version.js +53 -0
  480. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/content-type.d.ts +16 -0
  481. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/content-type.js +34 -0
  482. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/gen/status_pb.d.ts +89 -0
  483. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/gen/status_pb.js +116 -0
  484. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/handler-factory.d.ts +6 -0
  485. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/handler-factory.js +119 -0
  486. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/headers.d.ts +12 -0
  487. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/headers.js +25 -0
  488. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/http-status.d.ts +8 -0
  489. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/http-status.js +43 -0
  490. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/index.d.ts +10 -0
  491. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/index.js +28 -0
  492. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/parse-timeout.d.ts +13 -0
  493. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/parse-timeout.js +50 -0
  494. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/request-header.d.ts +13 -0
  495. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/request-header.js +52 -0
  496. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/trailer-status.d.ts +28 -0
  497. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/trailer-status.js +99 -0
  498. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/transport.d.ts +6 -0
  499. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/transport.js +182 -0
  500. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/validate-response.d.ts +33 -0
  501. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/validate-response.js +71 -0
  502. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/validate-trailer.d.ts +13 -0
  503. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/validate-trailer.js +41 -0
  504. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/content-type.d.ts +19 -0
  505. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/content-type.js +37 -0
  506. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/handler-factory.d.ts +6 -0
  507. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/handler-factory.js +125 -0
  508. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/headers.d.ts +20 -0
  509. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/headers.js +33 -0
  510. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/index.d.ts +8 -0
  511. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/index.js +26 -0
  512. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/request-header.d.ts +13 -0
  513. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/request-header.js +55 -0
  514. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/trailer.d.ts +27 -0
  515. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/trailer.js +65 -0
  516. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/transport.d.ts +6 -0
  517. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/transport.js +235 -0
  518. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/validate-response.d.ts +34 -0
  519. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/validate-response.js +69 -0
  520. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/router-transport.d.ts +13 -0
  521. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/router-transport.js +29 -0
  522. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/router.d.ts +88 -0
  523. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/router.js +80 -0
  524. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/transport.d.ts +20 -0
  525. package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/transport.js +14 -0
  526. package/cursor-sidecar/node_modules/@connectrpc/connect/package.json +75 -0
  527. package/cursor-sidecar/node_modules/@connectrpc/connect/protocol-connect.js +16 -0
  528. package/cursor-sidecar/node_modules/@connectrpc/connect/protocol-grpc-web.js +16 -0
  529. package/cursor-sidecar/node_modules/@connectrpc/connect/protocol-grpc.js +16 -0
  530. package/cursor-sidecar/node_modules/@connectrpc/connect/protocol.js +16 -0
  531. package/cursor-sidecar/node_modules/@connectrpc/connect-node/README.md +141 -0
  532. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/compression.d.ts +15 -0
  533. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/compression.js +89 -0
  534. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/connect-node-adapter.d.ts +42 -0
  535. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/connect-node-adapter.js +61 -0
  536. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/connect-transport.d.ts +100 -0
  537. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/connect-transport.js +25 -0
  538. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/grpc-transport.d.ts +96 -0
  539. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/grpc-transport.js +25 -0
  540. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/grpc-web-transport.d.ts +96 -0
  541. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/grpc-web-transport.js +25 -0
  542. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/http2-session-manager.d.ts +146 -0
  543. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/http2-session-manager.js +536 -0
  544. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/index.d.ts +15 -0
  545. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/index.js +36 -0
  546. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-error.d.ts +45 -0
  547. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-error.js +154 -0
  548. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-headers-polyfill.d.ts +1 -0
  549. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-headers-polyfill.js +29 -0
  550. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-transport-options.d.ts +89 -0
  551. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-transport-options.js +58 -0
  552. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-client.d.ts +54 -0
  553. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-client.js +326 -0
  554. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-handler.d.ts +41 -0
  555. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-handler.js +234 -0
  556. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-header.d.ts +19 -0
  557. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-header.js +97 -0
  558. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/package.json +1 -0
  559. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/compression.d.ts +15 -0
  560. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/compression.js +86 -0
  561. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/connect-node-adapter.d.ts +42 -0
  562. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/connect-node-adapter.js +58 -0
  563. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/connect-transport.d.ts +100 -0
  564. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/connect-transport.js +22 -0
  565. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/grpc-transport.d.ts +96 -0
  566. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/grpc-transport.js +22 -0
  567. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/grpc-web-transport.d.ts +96 -0
  568. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/grpc-web-transport.js +22 -0
  569. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/http2-session-manager.d.ts +146 -0
  570. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/http2-session-manager.js +532 -0
  571. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/index.d.ts +15 -0
  572. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/index.js +23 -0
  573. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-error.d.ts +45 -0
  574. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-error.js +147 -0
  575. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-headers-polyfill.d.ts +1 -0
  576. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-headers-polyfill.js +27 -0
  577. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-transport-options.d.ts +89 -0
  578. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-transport-options.js +58 -0
  579. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-universal-client.d.ts +54 -0
  580. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-universal-client.js +324 -0
  581. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-universal-handler.d.ts +41 -0
  582. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-universal-handler.js +230 -0
  583. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-universal-header.d.ts +19 -0
  584. package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-universal-header.js +93 -0
  585. package/cursor-sidecar/node_modules/@connectrpc/connect-node/package.json +46 -0
  586. package/cursor-sidecar/node_modules/@connectrpc/connect-web/README.md +54 -0
  587. package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/cjs/assert-fetch-api.d.ts +4 -0
  588. package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/cjs/assert-fetch-api.js +27 -0
  589. package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/cjs/connect-transport.d.ts +68 -0
  590. package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/cjs/connect-transport.js +200 -0
  591. package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/cjs/grpc-web-transport.d.ts +69 -0
  592. package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/cjs/grpc-web-transport.js +247 -0
  593. package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/cjs/index.d.ts +4 -0
  594. package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/cjs/index.js +20 -0
  595. package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/cjs/package.json +1 -0
  596. package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/esm/assert-fetch-api.d.ts +4 -0
  597. package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/esm/assert-fetch-api.js +24 -0
  598. package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/esm/connect-transport.d.ts +68 -0
  599. package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/esm/connect-transport.js +197 -0
  600. package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/esm/grpc-web-transport.d.ts +69 -0
  601. package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/esm/grpc-web-transport.js +244 -0
  602. package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/esm/index.d.ts +4 -0
  603. package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/esm/index.js +15 -0
  604. package/cursor-sidecar/node_modules/@connectrpc/connect-web/package.json +58 -0
  605. package/cursor-sidecar/node_modules/@cursor/sdk/LICENSE.md +3 -0
  606. package/cursor-sidecar/node_modules/@cursor/sdk/README.md +5 -0
  607. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/162.js +1 -0
  608. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/174.js +1 -0
  609. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/18.js +1 -0
  610. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/181.js +1 -0
  611. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/19.js +1 -0
  612. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/250.js +2 -0
  613. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/250.js.LICENSE.txt +1 -0
  614. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/284.js +1 -0
  615. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/295.js +1 -0
  616. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/343.js +1 -0
  617. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/400.js +1 -0
  618. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/642.js +1 -0
  619. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/656.js +1 -0
  620. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/690.js +1 -0
  621. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/730.js +1 -0
  622. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/731.js +1 -0
  623. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/745.js +8 -0
  624. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/745.js.LICENSE.txt +30 -0
  625. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/796.js +1 -0
  626. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/831.js +1 -0
  627. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/856.js +1 -0
  628. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/914.js +1 -0
  629. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/986.js +1 -0
  630. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/996.js +1 -0
  631. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/options.d.ts +242 -0
  632. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/options.d.ts.map +1 -0
  633. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/run-event-notifier-api.d.ts +120 -0
  634. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/run-event-notifier-api.d.ts.map +1 -0
  635. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/run-store-public-types.d.ts +183 -0
  636. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/run-store-public-types.d.ts.map +1 -0
  637. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/store/local-agent-record-conversion.d.ts +7 -0
  638. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/store/local-agent-record-conversion.d.ts.map +1 -0
  639. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/store/local-agent-store.d.ts +292 -0
  640. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/store/local-agent-store.d.ts.map +1 -0
  641. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/store/sdk-state-root.d.ts +6 -0
  642. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/store/sdk-state-root.d.ts.map +1 -0
  643. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/store/sqlite-local-agent-store.d.ts +30 -0
  644. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/store/sqlite-local-agent-store.d.ts.map +1 -0
  645. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/usage-types.d.ts +21 -0
  646. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/usage-types.d.ts.map +1 -0
  647. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent.d.ts +172 -0
  648. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent.d.ts.map +1 -0
  649. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/analytics.d.ts +16 -0
  650. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/analytics.d.ts.map +1 -0
  651. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/artifacts.d.ts +6 -0
  652. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/artifacts.d.ts.map +1 -0
  653. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/cloud-agent.d.ts +47 -0
  654. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/cloud-agent.d.ts.map +1 -0
  655. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/cloud-api-client.d.ts +200 -0
  656. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/cloud-api-client.d.ts.map +1 -0
  657. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/cloud-executor.d.ts +14 -0
  658. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/cloud-executor.d.ts.map +1 -0
  659. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/cloud-mcp-utils.d.ts +4 -0
  660. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/cloud-mcp-utils.d.ts.map +1 -0
  661. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/core-adapter.d.ts +2 -0
  662. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/core-adapter.d.ts.map +1 -0
  663. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/custom-tools.d.ts +29 -0
  664. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/custom-tools.d.ts.map +1 -0
  665. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/errors.d.ts +145 -0
  666. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/errors.d.ts.map +1 -0
  667. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/executor-common.d.ts +20 -0
  668. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/executor-common.d.ts.map +1 -0
  669. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/executor-types.d.ts +67 -0
  670. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/executor-types.d.ts.map +1 -0
  671. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/index.d.ts +18 -0
  672. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/index.d.ts.map +1 -0
  673. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/index.js +1 -0
  674. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/local-executor.d.ts +21 -0
  675. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/local-executor.d.ts.map +1 -0
  676. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/local-model-validation.d.ts +6 -0
  677. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/local-model-validation.d.ts.map +1 -0
  678. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/messages.d.ts +118 -0
  679. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/messages.d.ts.map +1 -0
  680. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/options.d.ts +242 -0
  681. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/options.d.ts.map +1 -0
  682. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/package.json +3 -0
  683. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/platform.d.ts +73 -0
  684. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/platform.d.ts.map +1 -0
  685. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/prefetched-blobs.d.ts +13 -0
  686. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/prefetched-blobs.d.ts.map +1 -0
  687. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/public-api.d.ts +18 -0
  688. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/public-api.d.ts.map +1 -0
  689. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/run-event-notifier-api.d.ts +120 -0
  690. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/run-event-notifier-api.d.ts.map +1 -0
  691. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/run-event-tailer.d.ts +33 -0
  692. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/run-event-tailer.d.ts.map +1 -0
  693. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/run-interaction-accumulator.d.ts +37 -0
  694. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/run-interaction-accumulator.d.ts.map +1 -0
  695. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/run-store-public-types.d.ts +183 -0
  696. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/run-store-public-types.d.ts.map +1 -0
  697. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/run.d.ts +51 -0
  698. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/run.d.ts.map +1 -0
  699. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/safe-connect-transport.d.ts +9 -0
  700. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/safe-connect-transport.d.ts.map +1 -0
  701. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/safe-node-http-client.d.ts +11 -0
  702. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/safe-node-http-client.d.ts.map +1 -0
  703. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/sdk-config.d.ts +25 -0
  704. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/sdk-config.d.ts.map +1 -0
  705. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/sdk-statsig.d.ts +14 -0
  706. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/sdk-statsig.d.ts.map +1 -0
  707. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/sqlite.d.ts +8 -0
  708. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/sqlite.d.ts.map +1 -0
  709. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/sqlite.js +1 -0
  710. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/index.d.ts +7 -0
  711. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/index.d.ts.map +1 -0
  712. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/jsonl-local-agent-store.d.ts +34 -0
  713. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/jsonl-local-agent-store.d.ts.map +1 -0
  714. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/local-agent-record-conversion.d.ts +7 -0
  715. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/local-agent-record-conversion.d.ts.map +1 -0
  716. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/local-agent-store.d.ts +292 -0
  717. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/local-agent-store.d.ts.map +1 -0
  718. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/open-default-local-agent-store.d.ts +4 -0
  719. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/open-default-local-agent-store.d.ts.map +1 -0
  720. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/sdk-local-defaults.d.ts +15 -0
  721. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/sdk-local-defaults.d.ts.map +1 -0
  722. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/sdk-state-root.d.ts +6 -0
  723. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/sdk-state-root.d.ts.map +1 -0
  724. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/sqlite-local-agent-store.d.ts +30 -0
  725. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/sqlite-local-agent-store.d.ts.map +1 -0
  726. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/sqlite-storage-unavailable.d.ts +6 -0
  727. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/sqlite-storage-unavailable.d.ts.map +1 -0
  728. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/stubs.d.ts +105 -0
  729. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/stubs.d.ts.map +1 -0
  730. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/subagent-conversion.d.ts +22 -0
  731. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/subagent-conversion.d.ts.map +1 -0
  732. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/tool-call-utils.d.ts +7 -0
  733. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/tool-call-utils.d.ts.map +1 -0
  734. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/transport.d.ts +47 -0
  735. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/transport.d.ts.map +1 -0
  736. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/types/conversation-types.d.ts +12062 -0
  737. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/types/conversation-types.d.ts.map +1 -0
  738. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/types/delta-types.d.ts +2 -0
  739. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/types/delta-types.d.ts.map +1 -0
  740. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/types/tool-call-types.d.ts +2 -0
  741. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/types/tool-call-types.d.ts.map +1 -0
  742. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/usage-types.d.ts +21 -0
  743. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/usage-types.d.ts.map +1 -0
  744. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/utils/conversation-utils.d.ts +3 -0
  745. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/utils/conversation-utils.d.ts.map +1 -0
  746. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/utils/logger.d.ts +12 -0
  747. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/utils/logger.d.ts.map +1 -0
  748. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/utils/message-schemas.d.ts +2 -0
  749. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/utils/message-schemas.d.ts.map +1 -0
  750. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/vendor/cursor-sdk-shared/core-adapter.d.ts +3 -0
  751. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/vendor/cursor-sdk-shared/core-adapter.test.d.ts +1 -0
  752. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/vendor/cursor-sdk-shared/delta-types.d.ts +19196 -0
  753. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/vendor/cursor-sdk-shared/index.d.ts +4 -0
  754. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/vendor/cursor-sdk-shared/message-schemas.d.ts +105 -0
  755. package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/vendor/cursor-sdk-shared/tool-call-types.d.ts +7894 -0
  756. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/162.js +1 -0
  757. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/18.js +1 -0
  758. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/181.js +1 -0
  759. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/19.js +1 -0
  760. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/250.js +2 -0
  761. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/250.js.LICENSE.txt +1 -0
  762. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/284.js +1 -0
  763. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/295.js +1 -0
  764. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/343.js +1 -0
  765. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/357.js +1 -0
  766. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/400.js +1 -0
  767. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/642.js +1 -0
  768. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/656.js +1 -0
  769. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/690.js +1 -0
  770. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/730.js +1 -0
  771. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/731.js +1 -0
  772. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/745.js +8 -0
  773. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/745.js.LICENSE.txt +30 -0
  774. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/831.js +1 -0
  775. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/856.js +1 -0
  776. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/914.js +1 -0
  777. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/986.js +1 -0
  778. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/988.js +1 -0
  779. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/996.js +1 -0
  780. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/options.d.ts +242 -0
  781. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/options.d.ts.map +1 -0
  782. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/run-event-notifier-api.d.ts +120 -0
  783. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/run-event-notifier-api.d.ts.map +1 -0
  784. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/run-store-public-types.d.ts +183 -0
  785. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/run-store-public-types.d.ts.map +1 -0
  786. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/store/local-agent-record-conversion.d.ts +7 -0
  787. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/store/local-agent-record-conversion.d.ts.map +1 -0
  788. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/store/local-agent-store.d.ts +292 -0
  789. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/store/local-agent-store.d.ts.map +1 -0
  790. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/store/sdk-state-root.d.ts +6 -0
  791. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/store/sdk-state-root.d.ts.map +1 -0
  792. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/store/sqlite-local-agent-store.d.ts +30 -0
  793. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/store/sqlite-local-agent-store.d.ts.map +1 -0
  794. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/usage-types.d.ts +21 -0
  795. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/usage-types.d.ts.map +1 -0
  796. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent.d.ts +172 -0
  797. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent.d.ts.map +1 -0
  798. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/analytics.d.ts +16 -0
  799. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/analytics.d.ts.map +1 -0
  800. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/artifacts.d.ts +6 -0
  801. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/artifacts.d.ts.map +1 -0
  802. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/cloud-agent.d.ts +47 -0
  803. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/cloud-agent.d.ts.map +1 -0
  804. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/cloud-api-client.d.ts +200 -0
  805. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/cloud-api-client.d.ts.map +1 -0
  806. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/cloud-executor.d.ts +14 -0
  807. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/cloud-executor.d.ts.map +1 -0
  808. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/cloud-mcp-utils.d.ts +4 -0
  809. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/cloud-mcp-utils.d.ts.map +1 -0
  810. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/core-adapter.d.ts +2 -0
  811. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/core-adapter.d.ts.map +1 -0
  812. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/custom-tools.d.ts +29 -0
  813. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/custom-tools.d.ts.map +1 -0
  814. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/errors.d.ts +145 -0
  815. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/errors.d.ts.map +1 -0
  816. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/executor-common.d.ts +20 -0
  817. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/executor-common.d.ts.map +1 -0
  818. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/executor-types.d.ts +67 -0
  819. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/executor-types.d.ts.map +1 -0
  820. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/index.d.ts +18 -0
  821. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/index.d.ts.map +1 -0
  822. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/index.js +1 -0
  823. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/local-executor.d.ts +21 -0
  824. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/local-executor.d.ts.map +1 -0
  825. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/local-model-validation.d.ts +6 -0
  826. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/local-model-validation.d.ts.map +1 -0
  827. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/messages.d.ts +118 -0
  828. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/messages.d.ts.map +1 -0
  829. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/options.d.ts +242 -0
  830. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/options.d.ts.map +1 -0
  831. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/platform.d.ts +73 -0
  832. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/platform.d.ts.map +1 -0
  833. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/prefetched-blobs.d.ts +13 -0
  834. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/prefetched-blobs.d.ts.map +1 -0
  835. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/public-api.d.ts +18 -0
  836. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/public-api.d.ts.map +1 -0
  837. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/run-event-notifier-api.d.ts +120 -0
  838. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/run-event-notifier-api.d.ts.map +1 -0
  839. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/run-event-tailer.d.ts +33 -0
  840. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/run-event-tailer.d.ts.map +1 -0
  841. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/run-interaction-accumulator.d.ts +37 -0
  842. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/run-interaction-accumulator.d.ts.map +1 -0
  843. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/run-store-public-types.d.ts +183 -0
  844. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/run-store-public-types.d.ts.map +1 -0
  845. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/run.d.ts +51 -0
  846. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/run.d.ts.map +1 -0
  847. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/safe-connect-transport.d.ts +9 -0
  848. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/safe-connect-transport.d.ts.map +1 -0
  849. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/safe-node-http-client.d.ts +11 -0
  850. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/safe-node-http-client.d.ts.map +1 -0
  851. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/sdk-config.d.ts +25 -0
  852. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/sdk-config.d.ts.map +1 -0
  853. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/sdk-statsig.d.ts +14 -0
  854. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/sdk-statsig.d.ts.map +1 -0
  855. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/sqlite.d.ts +8 -0
  856. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/sqlite.d.ts.map +1 -0
  857. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/sqlite.js +1 -0
  858. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/index.d.ts +7 -0
  859. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/index.d.ts.map +1 -0
  860. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/jsonl-local-agent-store.d.ts +34 -0
  861. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/jsonl-local-agent-store.d.ts.map +1 -0
  862. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/local-agent-record-conversion.d.ts +7 -0
  863. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/local-agent-record-conversion.d.ts.map +1 -0
  864. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/local-agent-store.d.ts +292 -0
  865. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/local-agent-store.d.ts.map +1 -0
  866. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/open-default-local-agent-store.d.ts +4 -0
  867. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/open-default-local-agent-store.d.ts.map +1 -0
  868. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/sdk-local-defaults.d.ts +15 -0
  869. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/sdk-local-defaults.d.ts.map +1 -0
  870. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/sdk-state-root.d.ts +6 -0
  871. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/sdk-state-root.d.ts.map +1 -0
  872. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/sqlite-local-agent-store.d.ts +30 -0
  873. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/sqlite-local-agent-store.d.ts.map +1 -0
  874. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/sqlite-storage-unavailable.d.ts +6 -0
  875. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/sqlite-storage-unavailable.d.ts.map +1 -0
  876. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/stubs.d.ts +105 -0
  877. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/stubs.d.ts.map +1 -0
  878. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/subagent-conversion.d.ts +22 -0
  879. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/subagent-conversion.d.ts.map +1 -0
  880. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/tool-call-utils.d.ts +7 -0
  881. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/tool-call-utils.d.ts.map +1 -0
  882. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/transport.d.ts +47 -0
  883. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/transport.d.ts.map +1 -0
  884. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/types/conversation-types.d.ts +12062 -0
  885. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/types/conversation-types.d.ts.map +1 -0
  886. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/types/delta-types.d.ts +2 -0
  887. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/types/delta-types.d.ts.map +1 -0
  888. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/types/tool-call-types.d.ts +2 -0
  889. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/types/tool-call-types.d.ts.map +1 -0
  890. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/usage-types.d.ts +21 -0
  891. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/usage-types.d.ts.map +1 -0
  892. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/utils/conversation-utils.d.ts +3 -0
  893. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/utils/conversation-utils.d.ts.map +1 -0
  894. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/utils/logger.d.ts +12 -0
  895. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/utils/logger.d.ts.map +1 -0
  896. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/utils/message-schemas.d.ts +2 -0
  897. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/utils/message-schemas.d.ts.map +1 -0
  898. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/vendor/cursor-sdk-shared/core-adapter.d.ts +3 -0
  899. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/vendor/cursor-sdk-shared/core-adapter.test.d.ts +1 -0
  900. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/vendor/cursor-sdk-shared/delta-types.d.ts +19196 -0
  901. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/vendor/cursor-sdk-shared/index.d.ts +4 -0
  902. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/vendor/cursor-sdk-shared/message-schemas.d.ts +105 -0
  903. package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/vendor/cursor-sdk-shared/tool-call-types.d.ts +7894 -0
  904. package/cursor-sidecar/node_modules/@cursor/sdk/package.json +119 -0
  905. package/cursor-sidecar/node_modules/@cursor/sdk-darwin-arm64/README.md +5 -0
  906. package/cursor-sidecar/node_modules/@cursor/sdk-darwin-arm64/bin/cursorsandbox +0 -0
  907. package/cursor-sidecar/node_modules/@cursor/sdk-darwin-arm64/bin/rg +0 -0
  908. package/cursor-sidecar/node_modules/@cursor/sdk-darwin-arm64/package.json +28 -0
  909. package/cursor-sidecar/node_modules/@fastify/busboy/LICENSE +19 -0
  910. package/cursor-sidecar/node_modules/@fastify/busboy/README.md +271 -0
  911. package/cursor-sidecar/node_modules/@fastify/busboy/deps/dicer/LICENSE +19 -0
  912. package/cursor-sidecar/node_modules/@fastify/busboy/deps/dicer/lib/Dicer.js +213 -0
  913. package/cursor-sidecar/node_modules/@fastify/busboy/deps/dicer/lib/HeaderParser.js +100 -0
  914. package/cursor-sidecar/node_modules/@fastify/busboy/deps/dicer/lib/PartStream.js +13 -0
  915. package/cursor-sidecar/node_modules/@fastify/busboy/deps/dicer/lib/dicer.d.ts +164 -0
  916. package/cursor-sidecar/node_modules/@fastify/busboy/deps/streamsearch/sbmh.js +228 -0
  917. package/cursor-sidecar/node_modules/@fastify/busboy/lib/main.d.ts +196 -0
  918. package/cursor-sidecar/node_modules/@fastify/busboy/lib/main.js +85 -0
  919. package/cursor-sidecar/node_modules/@fastify/busboy/lib/types/multipart.js +306 -0
  920. package/cursor-sidecar/node_modules/@fastify/busboy/lib/types/urlencoded.js +190 -0
  921. package/cursor-sidecar/node_modules/@fastify/busboy/lib/utils/Decoder.js +54 -0
  922. package/cursor-sidecar/node_modules/@fastify/busboy/lib/utils/basename.js +14 -0
  923. package/cursor-sidecar/node_modules/@fastify/busboy/lib/utils/decodeText.js +114 -0
  924. package/cursor-sidecar/node_modules/@fastify/busboy/lib/utils/getLimit.js +16 -0
  925. package/cursor-sidecar/node_modules/@fastify/busboy/lib/utils/parseParams.js +196 -0
  926. package/cursor-sidecar/node_modules/@fastify/busboy/package.json +86 -0
  927. package/cursor-sidecar/node_modules/@statsig/client-core/package.json +15 -0
  928. package/cursor-sidecar/node_modules/@statsig/client-core/src/$_StatsigGlobal.d.ts +19 -0
  929. package/cursor-sidecar/node_modules/@statsig/client-core/src/$_StatsigGlobal.js +41 -0
  930. package/cursor-sidecar/node_modules/@statsig/client-core/src/CacheKey.d.ts +4 -0
  931. package/cursor-sidecar/node_modules/@statsig/client-core/src/CacheKey.js +28 -0
  932. package/cursor-sidecar/node_modules/@statsig/client-core/src/ClientInterfaces.d.ts +62 -0
  933. package/cursor-sidecar/node_modules/@statsig/client-core/src/ClientInterfaces.js +2 -0
  934. package/cursor-sidecar/node_modules/@statsig/client-core/src/DataAdapterCore.d.ts +29 -0
  935. package/cursor-sidecar/node_modules/@statsig/client-core/src/DataAdapterCore.js +216 -0
  936. package/cursor-sidecar/node_modules/@statsig/client-core/src/Diagnostics.d.ts +67 -0
  937. package/cursor-sidecar/node_modules/@statsig/client-core/src/Diagnostics.js +100 -0
  938. package/cursor-sidecar/node_modules/@statsig/client-core/src/DnsTxtQuery.d.ts +2 -0
  939. package/cursor-sidecar/node_modules/@statsig/client-core/src/DnsTxtQuery.js +63 -0
  940. package/cursor-sidecar/node_modules/@statsig/client-core/src/DownloadConfigSpecsResponse.d.ts +61 -0
  941. package/cursor-sidecar/node_modules/@statsig/client-core/src/DownloadConfigSpecsResponse.js +2 -0
  942. package/cursor-sidecar/node_modules/@statsig/client-core/src/ErrorBoundary.d.ts +17 -0
  943. package/cursor-sidecar/node_modules/@statsig/client-core/src/ErrorBoundary.js +197 -0
  944. package/cursor-sidecar/node_modules/@statsig/client-core/src/EvaluationOptions.d.ts +30 -0
  945. package/cursor-sidecar/node_modules/@statsig/client-core/src/EvaluationOptions.js +2 -0
  946. package/cursor-sidecar/node_modules/@statsig/client-core/src/EvaluationTypes.d.ts +49 -0
  947. package/cursor-sidecar/node_modules/@statsig/client-core/src/EvaluationTypes.js +2 -0
  948. package/cursor-sidecar/node_modules/@statsig/client-core/src/EvaluationTypesV2.d.ts +30 -0
  949. package/cursor-sidecar/node_modules/@statsig/client-core/src/EvaluationTypesV2.js +2 -0
  950. package/cursor-sidecar/node_modules/@statsig/client-core/src/EventBatch.d.ts +8 -0
  951. package/cursor-sidecar/node_modules/@statsig/client-core/src/EventBatch.js +14 -0
  952. package/cursor-sidecar/node_modules/@statsig/client-core/src/EventLogger.d.ts +48 -0
  953. package/cursor-sidecar/node_modules/@statsig/client-core/src/EventLogger.js +349 -0
  954. package/cursor-sidecar/node_modules/@statsig/client-core/src/EventRetryConstants.d.ts +7 -0
  955. package/cursor-sidecar/node_modules/@statsig/client-core/src/EventRetryConstants.js +12 -0
  956. package/cursor-sidecar/node_modules/@statsig/client-core/src/Hashing.d.ts +3 -0
  957. package/cursor-sidecar/node_modules/@statsig/client-core/src/Hashing.js +35 -0
  958. package/cursor-sidecar/node_modules/@statsig/client-core/src/InitializeResponse.d.ts +66 -0
  959. package/cursor-sidecar/node_modules/@statsig/client-core/src/InitializeResponse.js +2 -0
  960. package/cursor-sidecar/node_modules/@statsig/client-core/src/Log.d.ts +15 -0
  961. package/cursor-sidecar/node_modules/@statsig/client-core/src/Log.js +44 -0
  962. package/cursor-sidecar/node_modules/@statsig/client-core/src/MemoKey.d.ts +11 -0
  963. package/cursor-sidecar/node_modules/@statsig/client-core/src/MemoKey.js +37 -0
  964. package/cursor-sidecar/node_modules/@statsig/client-core/src/NetworkConfig.d.ts +26 -0
  965. package/cursor-sidecar/node_modules/@statsig/client-core/src/NetworkConfig.js +23 -0
  966. package/cursor-sidecar/node_modules/@statsig/client-core/src/NetworkCore.d.ts +55 -0
  967. package/cursor-sidecar/node_modules/@statsig/client-core/src/NetworkCore.js +371 -0
  968. package/cursor-sidecar/node_modules/@statsig/client-core/src/NetworkFallbackResolver.d.ts +21 -0
  969. package/cursor-sidecar/node_modules/@statsig/client-core/src/NetworkFallbackResolver.js +198 -0
  970. package/cursor-sidecar/node_modules/@statsig/client-core/src/OverrideAdapter.d.ts +16 -0
  971. package/cursor-sidecar/node_modules/@statsig/client-core/src/OverrideAdapter.js +2 -0
  972. package/cursor-sidecar/node_modules/@statsig/client-core/src/ParamStoreTypes.d.ts +65 -0
  973. package/cursor-sidecar/node_modules/@statsig/client-core/src/ParamStoreTypes.js +2 -0
  974. package/cursor-sidecar/node_modules/@statsig/client-core/src/SDKFlags.d.ts +4 -0
  975. package/cursor-sidecar/node_modules/@statsig/client-core/src/SDKFlags.js +13 -0
  976. package/cursor-sidecar/node_modules/@statsig/client-core/src/SDKType.d.ts +8 -0
  977. package/cursor-sidecar/node_modules/@statsig/client-core/src/SDKType.js +19 -0
  978. package/cursor-sidecar/node_modules/@statsig/client-core/src/SafeJs.d.ts +8 -0
  979. package/cursor-sidecar/node_modules/@statsig/client-core/src/SafeJs.js +68 -0
  980. package/cursor-sidecar/node_modules/@statsig/client-core/src/SessionID.d.ts +20 -0
  981. package/cursor-sidecar/node_modules/@statsig/client-core/src/SessionID.js +106 -0
  982. package/cursor-sidecar/node_modules/@statsig/client-core/src/SizeOf.d.ts +1 -0
  983. package/cursor-sidecar/node_modules/@statsig/client-core/src/SizeOf.js +26 -0
  984. package/cursor-sidecar/node_modules/@statsig/client-core/src/StableID.d.ts +9 -0
  985. package/cursor-sidecar/node_modules/@statsig/client-core/src/StableID.js +90 -0
  986. package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigClientBase.d.ts +74 -0
  987. package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigClientBase.js +207 -0
  988. package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigClientEventEmitter.d.ts +100 -0
  989. package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigClientEventEmitter.js +6 -0
  990. package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigDataAdapter.d.ts +131 -0
  991. package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigDataAdapter.js +4 -0
  992. package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigEvent.d.ts +28 -0
  993. package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigEvent.js +98 -0
  994. package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigMetadata.d.ts +18 -0
  995. package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigMetadata.js +14 -0
  996. package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigOptionsCommon.d.ts +180 -0
  997. package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigOptionsCommon.js +16 -0
  998. package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigPlugin.d.ts +5 -0
  999. package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigPlugin.js +2 -0
  1000. package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigTypeFactories.d.ts +8 -0
  1001. package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigTypeFactories.js +57 -0
  1002. package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigTypes.d.ts +43 -0
  1003. package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigTypes.js +2 -0
  1004. package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigUpdateDetails.d.ts +14 -0
  1005. package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigUpdateDetails.js +17 -0
  1006. package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigUser.d.ts +24 -0
  1007. package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigUser.js +25 -0
  1008. package/cursor-sidecar/node_modules/@statsig/client-core/src/StorageProvider.d.ts +17 -0
  1009. package/cursor-sidecar/node_modules/@statsig/client-core/src/StorageProvider.js +90 -0
  1010. package/cursor-sidecar/node_modules/@statsig/client-core/src/TypedJsonParse.d.ts +8 -0
  1011. package/cursor-sidecar/node_modules/@statsig/client-core/src/TypedJsonParse.js +27 -0
  1012. package/cursor-sidecar/node_modules/@statsig/client-core/src/TypingUtils.d.ts +7 -0
  1013. package/cursor-sidecar/node_modules/@statsig/client-core/src/TypingUtils.js +12 -0
  1014. package/cursor-sidecar/node_modules/@statsig/client-core/src/UUID.d.ts +1 -0
  1015. package/cursor-sidecar/node_modules/@statsig/client-core/src/UUID.js +28 -0
  1016. package/cursor-sidecar/node_modules/@statsig/client-core/src/UrlConfiguration.d.ts +12 -0
  1017. package/cursor-sidecar/node_modules/@statsig/client-core/src/UrlConfiguration.js +41 -0
  1018. package/cursor-sidecar/node_modules/@statsig/client-core/src/VisibilityObserving.d.ts +9 -0
  1019. package/cursor-sidecar/node_modules/@statsig/client-core/src/VisibilityObserving.js +39 -0
  1020. package/cursor-sidecar/node_modules/@statsig/client-core/src/__tests__/MockOverrideAdapter.d.ts +16 -0
  1021. package/cursor-sidecar/node_modules/@statsig/client-core/src/__tests__/MockOverrideAdapter.js +21 -0
  1022. package/cursor-sidecar/node_modules/@statsig/client-core/src/index.d.ts +47 -0
  1023. package/cursor-sidecar/node_modules/@statsig/client-core/src/index.js +70 -0
  1024. package/cursor-sidecar/node_modules/@statsig/js-client/LICENSE +14 -0
  1025. package/cursor-sidecar/node_modules/@statsig/js-client/README.md +49 -0
  1026. package/cursor-sidecar/node_modules/@statsig/js-client/build/statsig-js-client+session-replay+web-analytics.min.js +2 -0
  1027. package/cursor-sidecar/node_modules/@statsig/js-client/build/statsig-js-client+session-replay.min.js +1 -0
  1028. package/cursor-sidecar/node_modules/@statsig/js-client/build/statsig-js-client+web-analytics.min.js +2 -0
  1029. package/cursor-sidecar/node_modules/@statsig/js-client/build/statsig-js-client.min.js +1 -0
  1030. package/cursor-sidecar/node_modules/@statsig/js-client/package.json +18 -0
  1031. package/cursor-sidecar/node_modules/@statsig/js-client/src/EvaluationResponseDeltas.d.ts +10 -0
  1032. package/cursor-sidecar/node_modules/@statsig/js-client/src/EvaluationResponseDeltas.js +49 -0
  1033. package/cursor-sidecar/node_modules/@statsig/js-client/src/EvaluationStore.d.ts +29 -0
  1034. package/cursor-sidecar/node_modules/@statsig/js-client/src/EvaluationStore.js +175 -0
  1035. package/cursor-sidecar/node_modules/@statsig/js-client/src/InitializeContainer.d.ts +9 -0
  1036. package/cursor-sidecar/node_modules/@statsig/js-client/src/InitializeContainer.js +2 -0
  1037. package/cursor-sidecar/node_modules/@statsig/js-client/src/Network.d.ts +9 -0
  1038. package/cursor-sidecar/node_modules/@statsig/js-client/src/Network.js +74 -0
  1039. package/cursor-sidecar/node_modules/@statsig/js-client/src/ParamStoreGetterFactory.d.ts +3 -0
  1040. package/cursor-sidecar/node_modules/@statsig/js-client/src/ParamStoreGetterFactory.js +74 -0
  1041. package/cursor-sidecar/node_modules/@statsig/js-client/src/StatsigClient.d.ts +244 -0
  1042. package/cursor-sidecar/node_modules/@statsig/js-client/src/StatsigClient.js +418 -0
  1043. package/cursor-sidecar/node_modules/@statsig/js-client/src/StatsigEvaluationsDataAdapter.d.ts +15 -0
  1044. package/cursor-sidecar/node_modules/@statsig/js-client/src/StatsigEvaluationsDataAdapter.js +65 -0
  1045. package/cursor-sidecar/node_modules/@statsig/js-client/src/StatsigOptions.d.ts +42 -0
  1046. package/cursor-sidecar/node_modules/@statsig/js-client/src/StatsigOptions.js +2 -0
  1047. package/cursor-sidecar/node_modules/@statsig/js-client/src/V1InitializeContainer.d.ts +13 -0
  1048. package/cursor-sidecar/node_modules/@statsig/js-client/src/V1InitializeContainer.js +35 -0
  1049. package/cursor-sidecar/node_modules/@statsig/js-client/src/V2InitializeContainer.d.ts +13 -0
  1050. package/cursor-sidecar/node_modules/@statsig/js-client/src/V2InitializeContainer.js +82 -0
  1051. package/cursor-sidecar/node_modules/@statsig/js-client/src/index.d.ts +9 -0
  1052. package/cursor-sidecar/node_modules/@statsig/js-client/src/index.js +25 -0
  1053. package/cursor-sidecar/node_modules/undici/LICENSE +21 -0
  1054. package/cursor-sidecar/node_modules/undici/README.md +443 -0
  1055. package/cursor-sidecar/node_modules/undici/docs/api/Agent.md +80 -0
  1056. package/cursor-sidecar/node_modules/undici/docs/api/BalancedPool.md +99 -0
  1057. package/cursor-sidecar/node_modules/undici/docs/api/CacheStorage.md +30 -0
  1058. package/cursor-sidecar/node_modules/undici/docs/api/Client.md +273 -0
  1059. package/cursor-sidecar/node_modules/undici/docs/api/Connector.md +115 -0
  1060. package/cursor-sidecar/node_modules/undici/docs/api/ContentType.md +57 -0
  1061. package/cursor-sidecar/node_modules/undici/docs/api/Cookies.md +101 -0
  1062. package/cursor-sidecar/node_modules/undici/docs/api/DiagnosticsChannel.md +204 -0
  1063. package/cursor-sidecar/node_modules/undici/docs/api/DispatchInterceptor.md +60 -0
  1064. package/cursor-sidecar/node_modules/undici/docs/api/Dispatcher.md +887 -0
  1065. package/cursor-sidecar/node_modules/undici/docs/api/Errors.md +47 -0
  1066. package/cursor-sidecar/node_modules/undici/docs/api/Fetch.md +27 -0
  1067. package/cursor-sidecar/node_modules/undici/docs/api/MockAgent.md +540 -0
  1068. package/cursor-sidecar/node_modules/undici/docs/api/MockClient.md +77 -0
  1069. package/cursor-sidecar/node_modules/undici/docs/api/MockErrors.md +12 -0
  1070. package/cursor-sidecar/node_modules/undici/docs/api/MockPool.md +547 -0
  1071. package/cursor-sidecar/node_modules/undici/docs/api/Pool.md +84 -0
  1072. package/cursor-sidecar/node_modules/undici/docs/api/PoolStats.md +35 -0
  1073. package/cursor-sidecar/node_modules/undici/docs/api/ProxyAgent.md +126 -0
  1074. package/cursor-sidecar/node_modules/undici/docs/api/RetryHandler.md +108 -0
  1075. package/cursor-sidecar/node_modules/undici/docs/api/WebSocket.md +43 -0
  1076. package/cursor-sidecar/node_modules/undici/docs/api/api-lifecycle.md +62 -0
  1077. package/cursor-sidecar/node_modules/undici/docs/assets/lifecycle-diagram.png +0 -0
  1078. package/cursor-sidecar/node_modules/undici/docs/best-practices/client-certificate.md +64 -0
  1079. package/cursor-sidecar/node_modules/undici/docs/best-practices/mocking-request.md +136 -0
  1080. package/cursor-sidecar/node_modules/undici/docs/best-practices/proxy.md +127 -0
  1081. package/cursor-sidecar/node_modules/undici/docs/best-practices/writing-tests.md +20 -0
  1082. package/cursor-sidecar/node_modules/undici/index-fetch.js +15 -0
  1083. package/cursor-sidecar/node_modules/undici/index.d.ts +3 -0
  1084. package/cursor-sidecar/node_modules/undici/index.js +167 -0
  1085. package/cursor-sidecar/node_modules/undici/lib/agent.js +148 -0
  1086. package/cursor-sidecar/node_modules/undici/lib/api/abort-signal.js +54 -0
  1087. package/cursor-sidecar/node_modules/undici/lib/api/api-connect.js +104 -0
  1088. package/cursor-sidecar/node_modules/undici/lib/api/api-pipeline.js +249 -0
  1089. package/cursor-sidecar/node_modules/undici/lib/api/api-request.js +180 -0
  1090. package/cursor-sidecar/node_modules/undici/lib/api/api-stream.js +220 -0
  1091. package/cursor-sidecar/node_modules/undici/lib/api/api-upgrade.js +105 -0
  1092. package/cursor-sidecar/node_modules/undici/lib/api/index.js +7 -0
  1093. package/cursor-sidecar/node_modules/undici/lib/api/readable.js +322 -0
  1094. package/cursor-sidecar/node_modules/undici/lib/api/util.js +46 -0
  1095. package/cursor-sidecar/node_modules/undici/lib/balanced-pool.js +190 -0
  1096. package/cursor-sidecar/node_modules/undici/lib/cache/cache.js +838 -0
  1097. package/cursor-sidecar/node_modules/undici/lib/cache/cachestorage.js +144 -0
  1098. package/cursor-sidecar/node_modules/undici/lib/cache/symbols.js +5 -0
  1099. package/cursor-sidecar/node_modules/undici/lib/cache/util.js +49 -0
  1100. package/cursor-sidecar/node_modules/undici/lib/client.js +2283 -0
  1101. package/cursor-sidecar/node_modules/undici/lib/compat/dispatcher-weakref.js +48 -0
  1102. package/cursor-sidecar/node_modules/undici/lib/cookies/constants.js +12 -0
  1103. package/cursor-sidecar/node_modules/undici/lib/cookies/index.js +183 -0
  1104. package/cursor-sidecar/node_modules/undici/lib/cookies/parse.js +317 -0
  1105. package/cursor-sidecar/node_modules/undici/lib/cookies/util.js +274 -0
  1106. package/cursor-sidecar/node_modules/undici/lib/core/connect.js +189 -0
  1107. package/cursor-sidecar/node_modules/undici/lib/core/constants.js +118 -0
  1108. package/cursor-sidecar/node_modules/undici/lib/core/errors.js +230 -0
  1109. package/cursor-sidecar/node_modules/undici/lib/core/request.js +499 -0
  1110. package/cursor-sidecar/node_modules/undici/lib/core/symbols.js +63 -0
  1111. package/cursor-sidecar/node_modules/undici/lib/core/util.js +522 -0
  1112. package/cursor-sidecar/node_modules/undici/lib/dispatcher-base.js +192 -0
  1113. package/cursor-sidecar/node_modules/undici/lib/dispatcher.js +19 -0
  1114. package/cursor-sidecar/node_modules/undici/lib/fetch/LICENSE +21 -0
  1115. package/cursor-sidecar/node_modules/undici/lib/fetch/body.js +613 -0
  1116. package/cursor-sidecar/node_modules/undici/lib/fetch/constants.js +151 -0
  1117. package/cursor-sidecar/node_modules/undici/lib/fetch/dataURL.js +627 -0
  1118. package/cursor-sidecar/node_modules/undici/lib/fetch/file.js +344 -0
  1119. package/cursor-sidecar/node_modules/undici/lib/fetch/formdata.js +265 -0
  1120. package/cursor-sidecar/node_modules/undici/lib/fetch/global.js +40 -0
  1121. package/cursor-sidecar/node_modules/undici/lib/fetch/headers.js +593 -0
  1122. package/cursor-sidecar/node_modules/undici/lib/fetch/index.js +2148 -0
  1123. package/cursor-sidecar/node_modules/undici/lib/fetch/request.js +946 -0
  1124. package/cursor-sidecar/node_modules/undici/lib/fetch/response.js +571 -0
  1125. package/cursor-sidecar/node_modules/undici/lib/fetch/symbols.js +10 -0
  1126. package/cursor-sidecar/node_modules/undici/lib/fetch/util.js +1144 -0
  1127. package/cursor-sidecar/node_modules/undici/lib/fetch/webidl.js +646 -0
  1128. package/cursor-sidecar/node_modules/undici/lib/fileapi/encoding.js +290 -0
  1129. package/cursor-sidecar/node_modules/undici/lib/fileapi/filereader.js +344 -0
  1130. package/cursor-sidecar/node_modules/undici/lib/fileapi/progressevent.js +78 -0
  1131. package/cursor-sidecar/node_modules/undici/lib/fileapi/symbols.js +10 -0
  1132. package/cursor-sidecar/node_modules/undici/lib/fileapi/util.js +392 -0
  1133. package/cursor-sidecar/node_modules/undici/lib/global.js +32 -0
  1134. package/cursor-sidecar/node_modules/undici/lib/handler/DecoratorHandler.js +35 -0
  1135. package/cursor-sidecar/node_modules/undici/lib/handler/RedirectHandler.js +221 -0
  1136. package/cursor-sidecar/node_modules/undici/lib/handler/RetryHandler.js +336 -0
  1137. package/cursor-sidecar/node_modules/undici/lib/interceptor/redirectInterceptor.js +21 -0
  1138. package/cursor-sidecar/node_modules/undici/lib/llhttp/constants.d.ts +199 -0
  1139. package/cursor-sidecar/node_modules/undici/lib/llhttp/constants.js +278 -0
  1140. package/cursor-sidecar/node_modules/undici/lib/llhttp/constants.js.map +1 -0
  1141. package/cursor-sidecar/node_modules/undici/lib/llhttp/llhttp-wasm.js +1 -0
  1142. package/cursor-sidecar/node_modules/undici/lib/llhttp/llhttp.wasm +0 -0
  1143. package/cursor-sidecar/node_modules/undici/lib/llhttp/llhttp_simd-wasm.js +1 -0
  1144. package/cursor-sidecar/node_modules/undici/lib/llhttp/llhttp_simd.wasm +0 -0
  1145. package/cursor-sidecar/node_modules/undici/lib/llhttp/utils.d.ts +4 -0
  1146. package/cursor-sidecar/node_modules/undici/lib/llhttp/utils.js +15 -0
  1147. package/cursor-sidecar/node_modules/undici/lib/llhttp/utils.js.map +1 -0
  1148. package/cursor-sidecar/node_modules/undici/lib/llhttp/wasm_build_env.txt +32 -0
  1149. package/cursor-sidecar/node_modules/undici/lib/mock/mock-agent.js +171 -0
  1150. package/cursor-sidecar/node_modules/undici/lib/mock/mock-client.js +59 -0
  1151. package/cursor-sidecar/node_modules/undici/lib/mock/mock-errors.js +17 -0
  1152. package/cursor-sidecar/node_modules/undici/lib/mock/mock-interceptor.js +206 -0
  1153. package/cursor-sidecar/node_modules/undici/lib/mock/mock-pool.js +59 -0
  1154. package/cursor-sidecar/node_modules/undici/lib/mock/mock-symbols.js +23 -0
  1155. package/cursor-sidecar/node_modules/undici/lib/mock/mock-utils.js +351 -0
  1156. package/cursor-sidecar/node_modules/undici/lib/mock/pending-interceptors-formatter.js +40 -0
  1157. package/cursor-sidecar/node_modules/undici/lib/mock/pluralizer.js +29 -0
  1158. package/cursor-sidecar/node_modules/undici/lib/node/fixed-queue.js +117 -0
  1159. package/cursor-sidecar/node_modules/undici/lib/pool-base.js +194 -0
  1160. package/cursor-sidecar/node_modules/undici/lib/pool-stats.js +34 -0
  1161. package/cursor-sidecar/node_modules/undici/lib/pool.js +108 -0
  1162. package/cursor-sidecar/node_modules/undici/lib/proxy-agent.js +189 -0
  1163. package/cursor-sidecar/node_modules/undici/lib/timers.js +97 -0
  1164. package/cursor-sidecar/node_modules/undici/lib/websocket/connection.js +291 -0
  1165. package/cursor-sidecar/node_modules/undici/lib/websocket/constants.js +51 -0
  1166. package/cursor-sidecar/node_modules/undici/lib/websocket/events.js +303 -0
  1167. package/cursor-sidecar/node_modules/undici/lib/websocket/frame.js +73 -0
  1168. package/cursor-sidecar/node_modules/undici/lib/websocket/receiver.js +344 -0
  1169. package/cursor-sidecar/node_modules/undici/lib/websocket/symbols.js +12 -0
  1170. package/cursor-sidecar/node_modules/undici/lib/websocket/util.js +200 -0
  1171. package/cursor-sidecar/node_modules/undici/lib/websocket/websocket.js +641 -0
  1172. package/cursor-sidecar/node_modules/undici/package.json +167 -0
  1173. package/cursor-sidecar/node_modules/undici/types/README.md +6 -0
  1174. package/cursor-sidecar/node_modules/undici/types/agent.d.ts +31 -0
  1175. package/cursor-sidecar/node_modules/undici/types/api.d.ts +43 -0
  1176. package/cursor-sidecar/node_modules/undici/types/balanced-pool.d.ts +18 -0
  1177. package/cursor-sidecar/node_modules/undici/types/cache.d.ts +36 -0
  1178. package/cursor-sidecar/node_modules/undici/types/client.d.ts +97 -0
  1179. package/cursor-sidecar/node_modules/undici/types/connector.d.ts +34 -0
  1180. package/cursor-sidecar/node_modules/undici/types/content-type.d.ts +21 -0
  1181. package/cursor-sidecar/node_modules/undici/types/cookies.d.ts +28 -0
  1182. package/cursor-sidecar/node_modules/undici/types/diagnostics-channel.d.ts +67 -0
  1183. package/cursor-sidecar/node_modules/undici/types/dispatcher.d.ts +241 -0
  1184. package/cursor-sidecar/node_modules/undici/types/errors.d.ts +128 -0
  1185. package/cursor-sidecar/node_modules/undici/types/fetch.d.ts +209 -0
  1186. package/cursor-sidecar/node_modules/undici/types/file.d.ts +39 -0
  1187. package/cursor-sidecar/node_modules/undici/types/filereader.d.ts +54 -0
  1188. package/cursor-sidecar/node_modules/undici/types/formdata.d.ts +108 -0
  1189. package/cursor-sidecar/node_modules/undici/types/global-dispatcher.d.ts +9 -0
  1190. package/cursor-sidecar/node_modules/undici/types/global-origin.d.ts +7 -0
  1191. package/cursor-sidecar/node_modules/undici/types/handlers.d.ts +9 -0
  1192. package/cursor-sidecar/node_modules/undici/types/header.d.ts +4 -0
  1193. package/cursor-sidecar/node_modules/undici/types/index.d.ts +65 -0
  1194. package/cursor-sidecar/node_modules/undici/types/interceptors.d.ts +5 -0
  1195. package/cursor-sidecar/node_modules/undici/types/mock-agent.d.ts +50 -0
  1196. package/cursor-sidecar/node_modules/undici/types/mock-client.d.ts +25 -0
  1197. package/cursor-sidecar/node_modules/undici/types/mock-errors.d.ts +12 -0
  1198. package/cursor-sidecar/node_modules/undici/types/mock-interceptor.d.ts +93 -0
  1199. package/cursor-sidecar/node_modules/undici/types/mock-pool.d.ts +25 -0
  1200. package/cursor-sidecar/node_modules/undici/types/patch.d.ts +71 -0
  1201. package/cursor-sidecar/node_modules/undici/types/pool-stats.d.ts +19 -0
  1202. package/cursor-sidecar/node_modules/undici/types/pool.d.ts +28 -0
  1203. package/cursor-sidecar/node_modules/undici/types/proxy-agent.d.ts +30 -0
  1204. package/cursor-sidecar/node_modules/undici/types/readable.d.ts +61 -0
  1205. package/cursor-sidecar/node_modules/undici/types/retry-handler.d.ts +116 -0
  1206. package/cursor-sidecar/node_modules/undici/types/webidl.d.ts +220 -0
  1207. package/cursor-sidecar/node_modules/undici/types/websocket.d.ts +131 -0
  1208. package/cursor-sidecar/node_modules/zod/LICENSE +21 -0
  1209. package/cursor-sidecar/node_modules/zod/README.md +208 -0
  1210. package/cursor-sidecar/node_modules/zod/index.cjs +33 -0
  1211. package/cursor-sidecar/node_modules/zod/index.d.cts +4 -0
  1212. package/cursor-sidecar/node_modules/zod/index.d.ts +4 -0
  1213. package/cursor-sidecar/node_modules/zod/index.js +4 -0
  1214. package/cursor-sidecar/node_modules/zod/package.json +118 -0
  1215. package/cursor-sidecar/node_modules/zod/src/index.ts +4 -0
  1216. package/cursor-sidecar/node_modules/zod/src/v3/ZodError.ts +330 -0
  1217. package/cursor-sidecar/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
  1218. package/cursor-sidecar/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
  1219. package/cursor-sidecar/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
  1220. package/cursor-sidecar/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
  1221. package/cursor-sidecar/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
  1222. package/cursor-sidecar/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
  1223. package/cursor-sidecar/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
  1224. package/cursor-sidecar/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
  1225. package/cursor-sidecar/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
  1226. package/cursor-sidecar/node_modules/zod/src/v3/errors.ts +13 -0
  1227. package/cursor-sidecar/node_modules/zod/src/v3/external.ts +6 -0
  1228. package/cursor-sidecar/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
  1229. package/cursor-sidecar/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
  1230. package/cursor-sidecar/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
  1231. package/cursor-sidecar/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
  1232. package/cursor-sidecar/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
  1233. package/cursor-sidecar/node_modules/zod/src/v3/helpers/util.ts +224 -0
  1234. package/cursor-sidecar/node_modules/zod/src/v3/index.ts +4 -0
  1235. package/cursor-sidecar/node_modules/zod/src/v3/locales/en.ts +124 -0
  1236. package/cursor-sidecar/node_modules/zod/src/v3/standard-schema.ts +113 -0
  1237. package/cursor-sidecar/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
  1238. package/cursor-sidecar/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
  1239. package/cursor-sidecar/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
  1240. package/cursor-sidecar/node_modules/zod/src/v3/tests/array.test.ts +71 -0
  1241. package/cursor-sidecar/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
  1242. package/cursor-sidecar/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
  1243. package/cursor-sidecar/node_modules/zod/src/v3/tests/base.test.ts +29 -0
  1244. package/cursor-sidecar/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
  1245. package/cursor-sidecar/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
  1246. package/cursor-sidecar/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
  1247. package/cursor-sidecar/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
  1248. package/cursor-sidecar/node_modules/zod/src/v3/tests/complex.test.ts +56 -0
  1249. package/cursor-sidecar/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
  1250. package/cursor-sidecar/node_modules/zod/src/v3/tests/date.test.ts +32 -0
  1251. package/cursor-sidecar/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
  1252. package/cursor-sidecar/node_modules/zod/src/v3/tests/default.test.ts +112 -0
  1253. package/cursor-sidecar/node_modules/zod/src/v3/tests/description.test.ts +33 -0
  1254. package/cursor-sidecar/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
  1255. package/cursor-sidecar/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
  1256. package/cursor-sidecar/node_modules/zod/src/v3/tests/error.test.ts +551 -0
  1257. package/cursor-sidecar/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
  1258. package/cursor-sidecar/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
  1259. package/cursor-sidecar/node_modules/zod/src/v3/tests/function.test.ts +257 -0
  1260. package/cursor-sidecar/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
  1261. package/cursor-sidecar/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
  1262. package/cursor-sidecar/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
  1263. package/cursor-sidecar/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
  1264. package/cursor-sidecar/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
  1265. package/cursor-sidecar/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
  1266. package/cursor-sidecar/node_modules/zod/src/v3/tests/map.test.ts +110 -0
  1267. package/cursor-sidecar/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
  1268. package/cursor-sidecar/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
  1269. package/cursor-sidecar/node_modules/zod/src/v3/tests/nan.test.ts +21 -0
  1270. package/cursor-sidecar/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
  1271. package/cursor-sidecar/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
  1272. package/cursor-sidecar/node_modules/zod/src/v3/tests/number.test.ts +176 -0
  1273. package/cursor-sidecar/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
  1274. package/cursor-sidecar/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
  1275. package/cursor-sidecar/node_modules/zod/src/v3/tests/object.test.ts +434 -0
  1276. package/cursor-sidecar/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
  1277. package/cursor-sidecar/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
  1278. package/cursor-sidecar/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
  1279. package/cursor-sidecar/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
  1280. package/cursor-sidecar/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
  1281. package/cursor-sidecar/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
  1282. package/cursor-sidecar/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
  1283. package/cursor-sidecar/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
  1284. package/cursor-sidecar/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
  1285. package/cursor-sidecar/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
  1286. package/cursor-sidecar/node_modules/zod/src/v3/tests/record.test.ts +171 -0
  1287. package/cursor-sidecar/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
  1288. package/cursor-sidecar/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
  1289. package/cursor-sidecar/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
  1290. package/cursor-sidecar/node_modules/zod/src/v3/tests/set.test.ts +142 -0
  1291. package/cursor-sidecar/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
  1292. package/cursor-sidecar/node_modules/zod/src/v3/tests/string.test.ts +916 -0
  1293. package/cursor-sidecar/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
  1294. package/cursor-sidecar/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
  1295. package/cursor-sidecar/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
  1296. package/cursor-sidecar/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
  1297. package/cursor-sidecar/node_modules/zod/src/v3/tests/void.test.ts +15 -0
  1298. package/cursor-sidecar/node_modules/zod/src/v3/types.ts +5136 -0
  1299. package/cursor-sidecar/node_modules/zod/src/v4/classic/checks.ts +30 -0
  1300. package/cursor-sidecar/node_modules/zod/src/v4/classic/coerce.ts +27 -0
  1301. package/cursor-sidecar/node_modules/zod/src/v4/classic/compat.ts +66 -0
  1302. package/cursor-sidecar/node_modules/zod/src/v4/classic/errors.ts +75 -0
  1303. package/cursor-sidecar/node_modules/zod/src/v4/classic/external.ts +50 -0
  1304. package/cursor-sidecar/node_modules/zod/src/v4/classic/index.ts +5 -0
  1305. package/cursor-sidecar/node_modules/zod/src/v4/classic/iso.ts +90 -0
  1306. package/cursor-sidecar/node_modules/zod/src/v4/classic/parse.ts +33 -0
  1307. package/cursor-sidecar/node_modules/zod/src/v4/classic/schemas.ts +2054 -0
  1308. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
  1309. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
  1310. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/assignability.test.ts +210 -0
  1311. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
  1312. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
  1313. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
  1314. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
  1315. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/brand.test.ts +63 -0
  1316. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/catch.test.ts +252 -0
  1317. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
  1318. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
  1319. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/continuability.test.ts +352 -0
  1320. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
  1321. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/date.test.ts +31 -0
  1322. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/datetime.test.ts +296 -0
  1323. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/default.test.ts +313 -0
  1324. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
  1325. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +619 -0
  1326. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
  1327. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +527 -0
  1328. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
  1329. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/file.test.ts +91 -0
  1330. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +175 -0
  1331. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/function.test.ts +268 -0
  1332. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
  1333. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/index.test.ts +829 -0
  1334. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +34 -0
  1335. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/intersection.test.ts +171 -0
  1336. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/json.test.ts +108 -0
  1337. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
  1338. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/literal.test.ts +92 -0
  1339. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/map.test.ts +196 -0
  1340. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
  1341. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
  1342. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +86 -0
  1343. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
  1344. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/number.test.ts +247 -0
  1345. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/object.test.ts +563 -0
  1346. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/optional.test.ts +123 -0
  1347. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/partial.test.ts +147 -0
  1348. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +127 -0
  1349. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/pipe.test.ts +81 -0
  1350. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/prefault.test.ts +37 -0
  1351. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +298 -0
  1352. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
  1353. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
  1354. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
  1355. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
  1356. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/record.test.ts +342 -0
  1357. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +356 -0
  1358. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/refine.test.ts +532 -0
  1359. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/registries.test.ts +204 -0
  1360. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/set.test.ts +179 -0
  1361. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +57 -0
  1362. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +109 -0
  1363. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/string.test.ts +881 -0
  1364. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +66 -0
  1365. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +758 -0
  1366. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +2314 -0
  1367. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/transform.test.ts +250 -0
  1368. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/tuple.test.ts +163 -0
  1369. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/union.test.ts +94 -0
  1370. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
  1371. package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
  1372. package/cursor-sidecar/node_modules/zod/src/v4/core/api.ts +1594 -0
  1373. package/cursor-sidecar/node_modules/zod/src/v4/core/checks.ts +1283 -0
  1374. package/cursor-sidecar/node_modules/zod/src/v4/core/config.ts +15 -0
  1375. package/cursor-sidecar/node_modules/zod/src/v4/core/core.ts +134 -0
  1376. package/cursor-sidecar/node_modules/zod/src/v4/core/doc.ts +44 -0
  1377. package/cursor-sidecar/node_modules/zod/src/v4/core/errors.ts +424 -0
  1378. package/cursor-sidecar/node_modules/zod/src/v4/core/function.ts +176 -0
  1379. package/cursor-sidecar/node_modules/zod/src/v4/core/index.ts +15 -0
  1380. package/cursor-sidecar/node_modules/zod/src/v4/core/json-schema.ts +143 -0
  1381. package/cursor-sidecar/node_modules/zod/src/v4/core/parse.ts +94 -0
  1382. package/cursor-sidecar/node_modules/zod/src/v4/core/regexes.ts +135 -0
  1383. package/cursor-sidecar/node_modules/zod/src/v4/core/registries.ts +96 -0
  1384. package/cursor-sidecar/node_modules/zod/src/v4/core/schemas.ts +3842 -0
  1385. package/cursor-sidecar/node_modules/zod/src/v4/core/standard-schema.ts +64 -0
  1386. package/cursor-sidecar/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
  1387. package/cursor-sidecar/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
  1388. package/cursor-sidecar/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
  1389. package/cursor-sidecar/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
  1390. package/cursor-sidecar/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
  1391. package/cursor-sidecar/node_modules/zod/src/v4/core/to-json-schema.ts +977 -0
  1392. package/cursor-sidecar/node_modules/zod/src/v4/core/util.ts +775 -0
  1393. package/cursor-sidecar/node_modules/zod/src/v4/core/versions.ts +5 -0
  1394. package/cursor-sidecar/node_modules/zod/src/v4/core/zsf.ts +323 -0
  1395. package/cursor-sidecar/node_modules/zod/src/v4/index.ts +4 -0
  1396. package/cursor-sidecar/node_modules/zod/src/v4/locales/ar.ts +125 -0
  1397. package/cursor-sidecar/node_modules/zod/src/v4/locales/az.ts +121 -0
  1398. package/cursor-sidecar/node_modules/zod/src/v4/locales/be.ts +184 -0
  1399. package/cursor-sidecar/node_modules/zod/src/v4/locales/ca.ts +127 -0
  1400. package/cursor-sidecar/node_modules/zod/src/v4/locales/cs.ts +142 -0
  1401. package/cursor-sidecar/node_modules/zod/src/v4/locales/de.ts +124 -0
  1402. package/cursor-sidecar/node_modules/zod/src/v4/locales/en.ts +127 -0
  1403. package/cursor-sidecar/node_modules/zod/src/v4/locales/eo.ts +125 -0
  1404. package/cursor-sidecar/node_modules/zod/src/v4/locales/es.ts +125 -0
  1405. package/cursor-sidecar/node_modules/zod/src/v4/locales/fa.ts +134 -0
  1406. package/cursor-sidecar/node_modules/zod/src/v4/locales/fi.ts +131 -0
  1407. package/cursor-sidecar/node_modules/zod/src/v4/locales/fr-CA.ts +126 -0
  1408. package/cursor-sidecar/node_modules/zod/src/v4/locales/fr.ts +124 -0
  1409. package/cursor-sidecar/node_modules/zod/src/v4/locales/he.ts +125 -0
  1410. package/cursor-sidecar/node_modules/zod/src/v4/locales/hu.ts +126 -0
  1411. package/cursor-sidecar/node_modules/zod/src/v4/locales/id.ts +125 -0
  1412. package/cursor-sidecar/node_modules/zod/src/v4/locales/index.ts +39 -0
  1413. package/cursor-sidecar/node_modules/zod/src/v4/locales/it.ts +125 -0
  1414. package/cursor-sidecar/node_modules/zod/src/v4/locales/ja.ts +122 -0
  1415. package/cursor-sidecar/node_modules/zod/src/v4/locales/kh.ts +126 -0
  1416. package/cursor-sidecar/node_modules/zod/src/v4/locales/ko.ts +131 -0
  1417. package/cursor-sidecar/node_modules/zod/src/v4/locales/mk.ts +127 -0
  1418. package/cursor-sidecar/node_modules/zod/src/v4/locales/ms.ts +124 -0
  1419. package/cursor-sidecar/node_modules/zod/src/v4/locales/nl.ts +126 -0
  1420. package/cursor-sidecar/node_modules/zod/src/v4/locales/no.ts +124 -0
  1421. package/cursor-sidecar/node_modules/zod/src/v4/locales/ota.ts +125 -0
  1422. package/cursor-sidecar/node_modules/zod/src/v4/locales/pl.ts +126 -0
  1423. package/cursor-sidecar/node_modules/zod/src/v4/locales/ps.ts +133 -0
  1424. package/cursor-sidecar/node_modules/zod/src/v4/locales/pt.ts +123 -0
  1425. package/cursor-sidecar/node_modules/zod/src/v4/locales/ru.ts +184 -0
  1426. package/cursor-sidecar/node_modules/zod/src/v4/locales/sl.ts +126 -0
  1427. package/cursor-sidecar/node_modules/zod/src/v4/locales/sv.ts +127 -0
  1428. package/cursor-sidecar/node_modules/zod/src/v4/locales/ta.ts +125 -0
  1429. package/cursor-sidecar/node_modules/zod/src/v4/locales/th.ts +126 -0
  1430. package/cursor-sidecar/node_modules/zod/src/v4/locales/tr.ts +121 -0
  1431. package/cursor-sidecar/node_modules/zod/src/v4/locales/ua.ts +126 -0
  1432. package/cursor-sidecar/node_modules/zod/src/v4/locales/ur.ts +126 -0
  1433. package/cursor-sidecar/node_modules/zod/src/v4/locales/vi.ts +125 -0
  1434. package/cursor-sidecar/node_modules/zod/src/v4/locales/zh-CN.ts +123 -0
  1435. package/cursor-sidecar/node_modules/zod/src/v4/locales/zh-TW.ts +125 -0
  1436. package/cursor-sidecar/node_modules/zod/src/v4/mini/checks.ts +32 -0
  1437. package/cursor-sidecar/node_modules/zod/src/v4/mini/coerce.ts +22 -0
  1438. package/cursor-sidecar/node_modules/zod/src/v4/mini/external.ts +40 -0
  1439. package/cursor-sidecar/node_modules/zod/src/v4/mini/index.ts +3 -0
  1440. package/cursor-sidecar/node_modules/zod/src/v4/mini/iso.ts +62 -0
  1441. package/cursor-sidecar/node_modules/zod/src/v4/mini/parse.ts +1 -0
  1442. package/cursor-sidecar/node_modules/zod/src/v4/mini/schemas.ts +1579 -0
  1443. package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
  1444. package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/brand.test.ts +51 -0
  1445. package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
  1446. package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
  1447. package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
  1448. package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/functions.test.ts +43 -0
  1449. package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/index.test.ts +871 -0
  1450. package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
  1451. package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/object.test.ts +185 -0
  1452. package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
  1453. package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +275 -0
  1454. package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/string.test.ts +299 -0
  1455. package/cursor-sidecar/node_modules/zod/src/v4-mini/index.ts +1 -0
  1456. package/cursor-sidecar/node_modules/zod/v3/ZodError.cjs +138 -0
  1457. package/cursor-sidecar/node_modules/zod/v3/ZodError.d.cts +164 -0
  1458. package/cursor-sidecar/node_modules/zod/v3/ZodError.d.ts +164 -0
  1459. package/cursor-sidecar/node_modules/zod/v3/ZodError.js +133 -0
  1460. package/cursor-sidecar/node_modules/zod/v3/errors.cjs +17 -0
  1461. package/cursor-sidecar/node_modules/zod/v3/errors.d.cts +5 -0
  1462. package/cursor-sidecar/node_modules/zod/v3/errors.d.ts +5 -0
  1463. package/cursor-sidecar/node_modules/zod/v3/errors.js +9 -0
  1464. package/cursor-sidecar/node_modules/zod/v3/external.cjs +22 -0
  1465. package/cursor-sidecar/node_modules/zod/v3/external.d.cts +6 -0
  1466. package/cursor-sidecar/node_modules/zod/v3/external.d.ts +6 -0
  1467. package/cursor-sidecar/node_modules/zod/v3/external.js +6 -0
  1468. package/cursor-sidecar/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
  1469. package/cursor-sidecar/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
  1470. package/cursor-sidecar/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
  1471. package/cursor-sidecar/node_modules/zod/v3/helpers/enumUtil.js +1 -0
  1472. package/cursor-sidecar/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
  1473. package/cursor-sidecar/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
  1474. package/cursor-sidecar/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
  1475. package/cursor-sidecar/node_modules/zod/v3/helpers/errorUtil.js +6 -0
  1476. package/cursor-sidecar/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
  1477. package/cursor-sidecar/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
  1478. package/cursor-sidecar/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
  1479. package/cursor-sidecar/node_modules/zod/v3/helpers/parseUtil.js +109 -0
  1480. package/cursor-sidecar/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
  1481. package/cursor-sidecar/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
  1482. package/cursor-sidecar/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
  1483. package/cursor-sidecar/node_modules/zod/v3/helpers/partialUtil.js +1 -0
  1484. package/cursor-sidecar/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
  1485. package/cursor-sidecar/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
  1486. package/cursor-sidecar/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
  1487. package/cursor-sidecar/node_modules/zod/v3/helpers/typeAliases.js +1 -0
  1488. package/cursor-sidecar/node_modules/zod/v3/helpers/util.cjs +137 -0
  1489. package/cursor-sidecar/node_modules/zod/v3/helpers/util.d.cts +85 -0
  1490. package/cursor-sidecar/node_modules/zod/v3/helpers/util.d.ts +85 -0
  1491. package/cursor-sidecar/node_modules/zod/v3/helpers/util.js +133 -0
  1492. package/cursor-sidecar/node_modules/zod/v3/index.cjs +33 -0
  1493. package/cursor-sidecar/node_modules/zod/v3/index.d.cts +4 -0
  1494. package/cursor-sidecar/node_modules/zod/v3/index.d.ts +4 -0
  1495. package/cursor-sidecar/node_modules/zod/v3/index.js +4 -0
  1496. package/cursor-sidecar/node_modules/zod/v3/locales/en.cjs +111 -0
  1497. package/cursor-sidecar/node_modules/zod/v3/locales/en.d.cts +3 -0
  1498. package/cursor-sidecar/node_modules/zod/v3/locales/en.d.ts +3 -0
  1499. package/cursor-sidecar/node_modules/zod/v3/locales/en.js +109 -0
  1500. package/cursor-sidecar/node_modules/zod/v3/standard-schema.cjs +2 -0
  1501. package/cursor-sidecar/node_modules/zod/v3/standard-schema.d.cts +102 -0
  1502. package/cursor-sidecar/node_modules/zod/v3/standard-schema.d.ts +102 -0
  1503. package/cursor-sidecar/node_modules/zod/v3/standard-schema.js +1 -0
  1504. package/cursor-sidecar/node_modules/zod/v3/types.cjs +3775 -0
  1505. package/cursor-sidecar/node_modules/zod/v3/types.d.cts +1031 -0
  1506. package/cursor-sidecar/node_modules/zod/v3/types.d.ts +1031 -0
  1507. package/cursor-sidecar/node_modules/zod/v3/types.js +3693 -0
  1508. package/cursor-sidecar/node_modules/zod/v4/classic/checks.cjs +32 -0
  1509. package/cursor-sidecar/node_modules/zod/v4/classic/checks.d.cts +1 -0
  1510. package/cursor-sidecar/node_modules/zod/v4/classic/checks.d.ts +1 -0
  1511. package/cursor-sidecar/node_modules/zod/v4/classic/checks.js +1 -0
  1512. package/cursor-sidecar/node_modules/zod/v4/classic/coerce.cjs +47 -0
  1513. package/cursor-sidecar/node_modules/zod/v4/classic/coerce.d.cts +17 -0
  1514. package/cursor-sidecar/node_modules/zod/v4/classic/coerce.d.ts +17 -0
  1515. package/cursor-sidecar/node_modules/zod/v4/classic/coerce.js +17 -0
  1516. package/cursor-sidecar/node_modules/zod/v4/classic/compat.cjs +57 -0
  1517. package/cursor-sidecar/node_modules/zod/v4/classic/compat.d.cts +46 -0
  1518. package/cursor-sidecar/node_modules/zod/v4/classic/compat.d.ts +46 -0
  1519. package/cursor-sidecar/node_modules/zod/v4/classic/compat.js +27 -0
  1520. package/cursor-sidecar/node_modules/zod/v4/classic/errors.cjs +67 -0
  1521. package/cursor-sidecar/node_modules/zod/v4/classic/errors.d.cts +30 -0
  1522. package/cursor-sidecar/node_modules/zod/v4/classic/errors.d.ts +30 -0
  1523. package/cursor-sidecar/node_modules/zod/v4/classic/errors.js +41 -0
  1524. package/cursor-sidecar/node_modules/zod/v4/classic/external.cjs +70 -0
  1525. package/cursor-sidecar/node_modules/zod/v4/classic/external.d.cts +13 -0
  1526. package/cursor-sidecar/node_modules/zod/v4/classic/external.d.ts +13 -0
  1527. package/cursor-sidecar/node_modules/zod/v4/classic/external.js +18 -0
  1528. package/cursor-sidecar/node_modules/zod/v4/classic/index.cjs +33 -0
  1529. package/cursor-sidecar/node_modules/zod/v4/classic/index.d.cts +4 -0
  1530. package/cursor-sidecar/node_modules/zod/v4/classic/index.d.ts +4 -0
  1531. package/cursor-sidecar/node_modules/zod/v4/classic/index.js +4 -0
  1532. package/cursor-sidecar/node_modules/zod/v4/classic/iso.cjs +60 -0
  1533. package/cursor-sidecar/node_modules/zod/v4/classic/iso.d.cts +22 -0
  1534. package/cursor-sidecar/node_modules/zod/v4/classic/iso.d.ts +22 -0
  1535. package/cursor-sidecar/node_modules/zod/v4/classic/iso.js +30 -0
  1536. package/cursor-sidecar/node_modules/zod/v4/classic/parse.cjs +32 -0
  1537. package/cursor-sidecar/node_modules/zod/v4/classic/parse.d.cts +23 -0
  1538. package/cursor-sidecar/node_modules/zod/v4/classic/parse.d.ts +23 -0
  1539. package/cursor-sidecar/node_modules/zod/v4/classic/parse.js +6 -0
  1540. package/cursor-sidecar/node_modules/zod/v4/classic/schemas.cjs +1109 -0
  1541. package/cursor-sidecar/node_modules/zod/v4/classic/schemas.d.cts +630 -0
  1542. package/cursor-sidecar/node_modules/zod/v4/classic/schemas.d.ts +630 -0
  1543. package/cursor-sidecar/node_modules/zod/v4/classic/schemas.js +1006 -0
  1544. package/cursor-sidecar/node_modules/zod/v4/core/api.cjs +1039 -0
  1545. package/cursor-sidecar/node_modules/zod/v4/core/api.d.cts +284 -0
  1546. package/cursor-sidecar/node_modules/zod/v4/core/api.d.ts +284 -0
  1547. package/cursor-sidecar/node_modules/zod/v4/core/api.js +906 -0
  1548. package/cursor-sidecar/node_modules/zod/v4/core/checks.cjs +591 -0
  1549. package/cursor-sidecar/node_modules/zod/v4/core/checks.d.cts +278 -0
  1550. package/cursor-sidecar/node_modules/zod/v4/core/checks.d.ts +278 -0
  1551. package/cursor-sidecar/node_modules/zod/v4/core/checks.js +565 -0
  1552. package/cursor-sidecar/node_modules/zod/v4/core/core.cjs +67 -0
  1553. package/cursor-sidecar/node_modules/zod/v4/core/core.d.cts +49 -0
  1554. package/cursor-sidecar/node_modules/zod/v4/core/core.d.ts +49 -0
  1555. package/cursor-sidecar/node_modules/zod/v4/core/core.js +61 -0
  1556. package/cursor-sidecar/node_modules/zod/v4/core/doc.cjs +39 -0
  1557. package/cursor-sidecar/node_modules/zod/v4/core/doc.d.cts +14 -0
  1558. package/cursor-sidecar/node_modules/zod/v4/core/doc.d.ts +14 -0
  1559. package/cursor-sidecar/node_modules/zod/v4/core/doc.js +35 -0
  1560. package/cursor-sidecar/node_modules/zod/v4/core/errors.cjs +226 -0
  1561. package/cursor-sidecar/node_modules/zod/v4/core/errors.d.cts +208 -0
  1562. package/cursor-sidecar/node_modules/zod/v4/core/errors.d.ts +208 -0
  1563. package/cursor-sidecar/node_modules/zod/v4/core/errors.js +195 -0
  1564. package/cursor-sidecar/node_modules/zod/v4/core/function.cjs +102 -0
  1565. package/cursor-sidecar/node_modules/zod/v4/core/function.d.cts +52 -0
  1566. package/cursor-sidecar/node_modules/zod/v4/core/function.d.ts +52 -0
  1567. package/cursor-sidecar/node_modules/zod/v4/core/function.js +75 -0
  1568. package/cursor-sidecar/node_modules/zod/v4/core/index.cjs +44 -0
  1569. package/cursor-sidecar/node_modules/zod/v4/core/index.d.cts +15 -0
  1570. package/cursor-sidecar/node_modules/zod/v4/core/index.d.ts +15 -0
  1571. package/cursor-sidecar/node_modules/zod/v4/core/index.js +15 -0
  1572. package/cursor-sidecar/node_modules/zod/v4/core/json-schema.cjs +2 -0
  1573. package/cursor-sidecar/node_modules/zod/v4/core/json-schema.d.cts +87 -0
  1574. package/cursor-sidecar/node_modules/zod/v4/core/json-schema.d.ts +87 -0
  1575. package/cursor-sidecar/node_modules/zod/v4/core/json-schema.js +1 -0
  1576. package/cursor-sidecar/node_modules/zod/v4/core/parse.cjs +87 -0
  1577. package/cursor-sidecar/node_modules/zod/v4/core/parse.d.cts +25 -0
  1578. package/cursor-sidecar/node_modules/zod/v4/core/parse.d.ts +25 -0
  1579. package/cursor-sidecar/node_modules/zod/v4/core/parse.js +57 -0
  1580. package/cursor-sidecar/node_modules/zod/v4/core/regexes.cjs +103 -0
  1581. package/cursor-sidecar/node_modules/zod/v4/core/regexes.d.cts +62 -0
  1582. package/cursor-sidecar/node_modules/zod/v4/core/regexes.d.ts +62 -0
  1583. package/cursor-sidecar/node_modules/zod/v4/core/regexes.js +95 -0
  1584. package/cursor-sidecar/node_modules/zod/v4/core/registries.cjs +56 -0
  1585. package/cursor-sidecar/node_modules/zod/v4/core/registries.d.cts +35 -0
  1586. package/cursor-sidecar/node_modules/zod/v4/core/registries.d.ts +35 -0
  1587. package/cursor-sidecar/node_modules/zod/v4/core/registries.js +51 -0
  1588. package/cursor-sidecar/node_modules/zod/v4/core/schemas.cjs +1748 -0
  1589. package/cursor-sidecar/node_modules/zod/v4/core/schemas.d.cts +1041 -0
  1590. package/cursor-sidecar/node_modules/zod/v4/core/schemas.d.ts +1041 -0
  1591. package/cursor-sidecar/node_modules/zod/v4/core/schemas.js +1717 -0
  1592. package/cursor-sidecar/node_modules/zod/v4/core/standard-schema.cjs +2 -0
  1593. package/cursor-sidecar/node_modules/zod/v4/core/standard-schema.d.cts +55 -0
  1594. package/cursor-sidecar/node_modules/zod/v4/core/standard-schema.d.ts +55 -0
  1595. package/cursor-sidecar/node_modules/zod/v4/core/standard-schema.js +1 -0
  1596. package/cursor-sidecar/node_modules/zod/v4/core/to-json-schema.cjs +854 -0
  1597. package/cursor-sidecar/node_modules/zod/v4/core/to-json-schema.d.cts +88 -0
  1598. package/cursor-sidecar/node_modules/zod/v4/core/to-json-schema.d.ts +88 -0
  1599. package/cursor-sidecar/node_modules/zod/v4/core/to-json-schema.js +849 -0
  1600. package/cursor-sidecar/node_modules/zod/v4/core/util.cjs +539 -0
  1601. package/cursor-sidecar/node_modules/zod/v4/core/util.d.cts +183 -0
  1602. package/cursor-sidecar/node_modules/zod/v4/core/util.d.ts +183 -0
  1603. package/cursor-sidecar/node_modules/zod/v4/core/util.js +493 -0
  1604. package/cursor-sidecar/node_modules/zod/v4/core/versions.cjs +8 -0
  1605. package/cursor-sidecar/node_modules/zod/v4/core/versions.d.cts +5 -0
  1606. package/cursor-sidecar/node_modules/zod/v4/core/versions.d.ts +5 -0
  1607. package/cursor-sidecar/node_modules/zod/v4/core/versions.js +5 -0
  1608. package/cursor-sidecar/node_modules/zod/v4/index.cjs +22 -0
  1609. package/cursor-sidecar/node_modules/zod/v4/index.d.cts +3 -0
  1610. package/cursor-sidecar/node_modules/zod/v4/index.d.ts +3 -0
  1611. package/cursor-sidecar/node_modules/zod/v4/index.js +3 -0
  1612. package/cursor-sidecar/node_modules/zod/v4/locales/ar.cjs +142 -0
  1613. package/cursor-sidecar/node_modules/zod/v4/locales/ar.d.cts +4 -0
  1614. package/cursor-sidecar/node_modules/zod/v4/locales/ar.d.ts +4 -0
  1615. package/cursor-sidecar/node_modules/zod/v4/locales/ar.js +116 -0
  1616. package/cursor-sidecar/node_modules/zod/v4/locales/az.cjs +141 -0
  1617. package/cursor-sidecar/node_modules/zod/v4/locales/az.d.cts +4 -0
  1618. package/cursor-sidecar/node_modules/zod/v4/locales/az.d.ts +4 -0
  1619. package/cursor-sidecar/node_modules/zod/v4/locales/az.js +115 -0
  1620. package/cursor-sidecar/node_modules/zod/v4/locales/be.cjs +190 -0
  1621. package/cursor-sidecar/node_modules/zod/v4/locales/be.d.cts +4 -0
  1622. package/cursor-sidecar/node_modules/zod/v4/locales/be.d.ts +4 -0
  1623. package/cursor-sidecar/node_modules/zod/v4/locales/be.js +164 -0
  1624. package/cursor-sidecar/node_modules/zod/v4/locales/ca.cjs +144 -0
  1625. package/cursor-sidecar/node_modules/zod/v4/locales/ca.d.cts +4 -0
  1626. package/cursor-sidecar/node_modules/zod/v4/locales/ca.d.ts +4 -0
  1627. package/cursor-sidecar/node_modules/zod/v4/locales/ca.js +118 -0
  1628. package/cursor-sidecar/node_modules/zod/v4/locales/cs.cjs +161 -0
  1629. package/cursor-sidecar/node_modules/zod/v4/locales/cs.d.cts +4 -0
  1630. package/cursor-sidecar/node_modules/zod/v4/locales/cs.d.ts +4 -0
  1631. package/cursor-sidecar/node_modules/zod/v4/locales/cs.js +135 -0
  1632. package/cursor-sidecar/node_modules/zod/v4/locales/de.cjs +142 -0
  1633. package/cursor-sidecar/node_modules/zod/v4/locales/de.d.cts +4 -0
  1634. package/cursor-sidecar/node_modules/zod/v4/locales/de.d.ts +4 -0
  1635. package/cursor-sidecar/node_modules/zod/v4/locales/de.js +116 -0
  1636. package/cursor-sidecar/node_modules/zod/v4/locales/en.cjs +145 -0
  1637. package/cursor-sidecar/node_modules/zod/v4/locales/en.d.cts +5 -0
  1638. package/cursor-sidecar/node_modules/zod/v4/locales/en.d.ts +5 -0
  1639. package/cursor-sidecar/node_modules/zod/v4/locales/en.js +117 -0
  1640. package/cursor-sidecar/node_modules/zod/v4/locales/eo.cjs +144 -0
  1641. package/cursor-sidecar/node_modules/zod/v4/locales/eo.d.cts +5 -0
  1642. package/cursor-sidecar/node_modules/zod/v4/locales/eo.d.ts +5 -0
  1643. package/cursor-sidecar/node_modules/zod/v4/locales/eo.js +116 -0
  1644. package/cursor-sidecar/node_modules/zod/v4/locales/es.cjs +143 -0
  1645. package/cursor-sidecar/node_modules/zod/v4/locales/es.d.cts +4 -0
  1646. package/cursor-sidecar/node_modules/zod/v4/locales/es.d.ts +4 -0
  1647. package/cursor-sidecar/node_modules/zod/v4/locales/es.js +117 -0
  1648. package/cursor-sidecar/node_modules/zod/v4/locales/fa.cjs +148 -0
  1649. package/cursor-sidecar/node_modules/zod/v4/locales/fa.d.cts +4 -0
  1650. package/cursor-sidecar/node_modules/zod/v4/locales/fa.d.ts +4 -0
  1651. package/cursor-sidecar/node_modules/zod/v4/locales/fa.js +122 -0
  1652. package/cursor-sidecar/node_modules/zod/v4/locales/fi.cjs +148 -0
  1653. package/cursor-sidecar/node_modules/zod/v4/locales/fi.d.cts +4 -0
  1654. package/cursor-sidecar/node_modules/zod/v4/locales/fi.d.ts +4 -0
  1655. package/cursor-sidecar/node_modules/zod/v4/locales/fi.js +122 -0
  1656. package/cursor-sidecar/node_modules/zod/v4/locales/fr-CA.cjs +143 -0
  1657. package/cursor-sidecar/node_modules/zod/v4/locales/fr-CA.d.cts +4 -0
  1658. package/cursor-sidecar/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
  1659. package/cursor-sidecar/node_modules/zod/v4/locales/fr-CA.js +117 -0
  1660. package/cursor-sidecar/node_modules/zod/v4/locales/fr.cjs +142 -0
  1661. package/cursor-sidecar/node_modules/zod/v4/locales/fr.d.cts +4 -0
  1662. package/cursor-sidecar/node_modules/zod/v4/locales/fr.d.ts +4 -0
  1663. package/cursor-sidecar/node_modules/zod/v4/locales/fr.js +116 -0
  1664. package/cursor-sidecar/node_modules/zod/v4/locales/he.cjs +143 -0
  1665. package/cursor-sidecar/node_modules/zod/v4/locales/he.d.cts +4 -0
  1666. package/cursor-sidecar/node_modules/zod/v4/locales/he.d.ts +4 -0
  1667. package/cursor-sidecar/node_modules/zod/v4/locales/he.js +117 -0
  1668. package/cursor-sidecar/node_modules/zod/v4/locales/hu.cjs +143 -0
  1669. package/cursor-sidecar/node_modules/zod/v4/locales/hu.d.cts +4 -0
  1670. package/cursor-sidecar/node_modules/zod/v4/locales/hu.d.ts +4 -0
  1671. package/cursor-sidecar/node_modules/zod/v4/locales/hu.js +117 -0
  1672. package/cursor-sidecar/node_modules/zod/v4/locales/id.cjs +142 -0
  1673. package/cursor-sidecar/node_modules/zod/v4/locales/id.d.cts +4 -0
  1674. package/cursor-sidecar/node_modules/zod/v4/locales/id.d.ts +4 -0
  1675. package/cursor-sidecar/node_modules/zod/v4/locales/id.js +116 -0
  1676. package/cursor-sidecar/node_modules/zod/v4/locales/index.cjs +84 -0
  1677. package/cursor-sidecar/node_modules/zod/v4/locales/index.d.cts +39 -0
  1678. package/cursor-sidecar/node_modules/zod/v4/locales/index.d.ts +39 -0
  1679. package/cursor-sidecar/node_modules/zod/v4/locales/index.js +39 -0
  1680. package/cursor-sidecar/node_modules/zod/v4/locales/it.cjs +143 -0
  1681. package/cursor-sidecar/node_modules/zod/v4/locales/it.d.cts +4 -0
  1682. package/cursor-sidecar/node_modules/zod/v4/locales/it.d.ts +4 -0
  1683. package/cursor-sidecar/node_modules/zod/v4/locales/it.js +117 -0
  1684. package/cursor-sidecar/node_modules/zod/v4/locales/ja.cjs +141 -0
  1685. package/cursor-sidecar/node_modules/zod/v4/locales/ja.d.cts +4 -0
  1686. package/cursor-sidecar/node_modules/zod/v4/locales/ja.d.ts +4 -0
  1687. package/cursor-sidecar/node_modules/zod/v4/locales/ja.js +115 -0
  1688. package/cursor-sidecar/node_modules/zod/v4/locales/kh.cjs +143 -0
  1689. package/cursor-sidecar/node_modules/zod/v4/locales/kh.d.cts +4 -0
  1690. package/cursor-sidecar/node_modules/zod/v4/locales/kh.d.ts +4 -0
  1691. package/cursor-sidecar/node_modules/zod/v4/locales/kh.js +117 -0
  1692. package/cursor-sidecar/node_modules/zod/v4/locales/ko.cjs +147 -0
  1693. package/cursor-sidecar/node_modules/zod/v4/locales/ko.d.cts +4 -0
  1694. package/cursor-sidecar/node_modules/zod/v4/locales/ko.d.ts +4 -0
  1695. package/cursor-sidecar/node_modules/zod/v4/locales/ko.js +121 -0
  1696. package/cursor-sidecar/node_modules/zod/v4/locales/mk.cjs +144 -0
  1697. package/cursor-sidecar/node_modules/zod/v4/locales/mk.d.cts +4 -0
  1698. package/cursor-sidecar/node_modules/zod/v4/locales/mk.d.ts +4 -0
  1699. package/cursor-sidecar/node_modules/zod/v4/locales/mk.js +118 -0
  1700. package/cursor-sidecar/node_modules/zod/v4/locales/ms.cjs +142 -0
  1701. package/cursor-sidecar/node_modules/zod/v4/locales/ms.d.cts +4 -0
  1702. package/cursor-sidecar/node_modules/zod/v4/locales/ms.d.ts +4 -0
  1703. package/cursor-sidecar/node_modules/zod/v4/locales/ms.js +116 -0
  1704. package/cursor-sidecar/node_modules/zod/v4/locales/nl.cjs +143 -0
  1705. package/cursor-sidecar/node_modules/zod/v4/locales/nl.d.cts +4 -0
  1706. package/cursor-sidecar/node_modules/zod/v4/locales/nl.d.ts +4 -0
  1707. package/cursor-sidecar/node_modules/zod/v4/locales/nl.js +117 -0
  1708. package/cursor-sidecar/node_modules/zod/v4/locales/no.cjs +142 -0
  1709. package/cursor-sidecar/node_modules/zod/v4/locales/no.d.cts +4 -0
  1710. package/cursor-sidecar/node_modules/zod/v4/locales/no.d.ts +4 -0
  1711. package/cursor-sidecar/node_modules/zod/v4/locales/no.js +116 -0
  1712. package/cursor-sidecar/node_modules/zod/v4/locales/ota.cjs +143 -0
  1713. package/cursor-sidecar/node_modules/zod/v4/locales/ota.d.cts +4 -0
  1714. package/cursor-sidecar/node_modules/zod/v4/locales/ota.d.ts +4 -0
  1715. package/cursor-sidecar/node_modules/zod/v4/locales/ota.js +117 -0
  1716. package/cursor-sidecar/node_modules/zod/v4/locales/pl.cjs +143 -0
  1717. package/cursor-sidecar/node_modules/zod/v4/locales/pl.d.cts +4 -0
  1718. package/cursor-sidecar/node_modules/zod/v4/locales/pl.d.ts +4 -0
  1719. package/cursor-sidecar/node_modules/zod/v4/locales/pl.js +117 -0
  1720. package/cursor-sidecar/node_modules/zod/v4/locales/ps.cjs +148 -0
  1721. package/cursor-sidecar/node_modules/zod/v4/locales/ps.d.cts +4 -0
  1722. package/cursor-sidecar/node_modules/zod/v4/locales/ps.d.ts +4 -0
  1723. package/cursor-sidecar/node_modules/zod/v4/locales/ps.js +122 -0
  1724. package/cursor-sidecar/node_modules/zod/v4/locales/pt.cjs +142 -0
  1725. package/cursor-sidecar/node_modules/zod/v4/locales/pt.d.cts +4 -0
  1726. package/cursor-sidecar/node_modules/zod/v4/locales/pt.d.ts +4 -0
  1727. package/cursor-sidecar/node_modules/zod/v4/locales/pt.js +116 -0
  1728. package/cursor-sidecar/node_modules/zod/v4/locales/ru.cjs +190 -0
  1729. package/cursor-sidecar/node_modules/zod/v4/locales/ru.d.cts +4 -0
  1730. package/cursor-sidecar/node_modules/zod/v4/locales/ru.d.ts +4 -0
  1731. package/cursor-sidecar/node_modules/zod/v4/locales/ru.js +164 -0
  1732. package/cursor-sidecar/node_modules/zod/v4/locales/sl.cjs +143 -0
  1733. package/cursor-sidecar/node_modules/zod/v4/locales/sl.d.cts +4 -0
  1734. package/cursor-sidecar/node_modules/zod/v4/locales/sl.d.ts +4 -0
  1735. package/cursor-sidecar/node_modules/zod/v4/locales/sl.js +117 -0
  1736. package/cursor-sidecar/node_modules/zod/v4/locales/sv.cjs +144 -0
  1737. package/cursor-sidecar/node_modules/zod/v4/locales/sv.d.cts +4 -0
  1738. package/cursor-sidecar/node_modules/zod/v4/locales/sv.d.ts +4 -0
  1739. package/cursor-sidecar/node_modules/zod/v4/locales/sv.js +118 -0
  1740. package/cursor-sidecar/node_modules/zod/v4/locales/ta.cjs +143 -0
  1741. package/cursor-sidecar/node_modules/zod/v4/locales/ta.d.cts +4 -0
  1742. package/cursor-sidecar/node_modules/zod/v4/locales/ta.d.ts +4 -0
  1743. package/cursor-sidecar/node_modules/zod/v4/locales/ta.js +117 -0
  1744. package/cursor-sidecar/node_modules/zod/v4/locales/th.cjs +143 -0
  1745. package/cursor-sidecar/node_modules/zod/v4/locales/th.d.cts +4 -0
  1746. package/cursor-sidecar/node_modules/zod/v4/locales/th.d.ts +4 -0
  1747. package/cursor-sidecar/node_modules/zod/v4/locales/th.js +117 -0
  1748. package/cursor-sidecar/node_modules/zod/v4/locales/tr.cjs +143 -0
  1749. package/cursor-sidecar/node_modules/zod/v4/locales/tr.d.cts +5 -0
  1750. package/cursor-sidecar/node_modules/zod/v4/locales/tr.d.ts +5 -0
  1751. package/cursor-sidecar/node_modules/zod/v4/locales/tr.js +115 -0
  1752. package/cursor-sidecar/node_modules/zod/v4/locales/ua.cjs +143 -0
  1753. package/cursor-sidecar/node_modules/zod/v4/locales/ua.d.cts +4 -0
  1754. package/cursor-sidecar/node_modules/zod/v4/locales/ua.d.ts +4 -0
  1755. package/cursor-sidecar/node_modules/zod/v4/locales/ua.js +117 -0
  1756. package/cursor-sidecar/node_modules/zod/v4/locales/ur.cjs +143 -0
  1757. package/cursor-sidecar/node_modules/zod/v4/locales/ur.d.cts +4 -0
  1758. package/cursor-sidecar/node_modules/zod/v4/locales/ur.d.ts +4 -0
  1759. package/cursor-sidecar/node_modules/zod/v4/locales/ur.js +117 -0
  1760. package/cursor-sidecar/node_modules/zod/v4/locales/vi.cjs +142 -0
  1761. package/cursor-sidecar/node_modules/zod/v4/locales/vi.d.cts +4 -0
  1762. package/cursor-sidecar/node_modules/zod/v4/locales/vi.d.ts +4 -0
  1763. package/cursor-sidecar/node_modules/zod/v4/locales/vi.js +116 -0
  1764. package/cursor-sidecar/node_modules/zod/v4/locales/zh-CN.cjs +142 -0
  1765. package/cursor-sidecar/node_modules/zod/v4/locales/zh-CN.d.cts +4 -0
  1766. package/cursor-sidecar/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
  1767. package/cursor-sidecar/node_modules/zod/v4/locales/zh-CN.js +116 -0
  1768. package/cursor-sidecar/node_modules/zod/v4/locales/zh-TW.cjs +143 -0
  1769. package/cursor-sidecar/node_modules/zod/v4/locales/zh-TW.d.cts +4 -0
  1770. package/cursor-sidecar/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
  1771. package/cursor-sidecar/node_modules/zod/v4/locales/zh-TW.js +117 -0
  1772. package/cursor-sidecar/node_modules/zod/v4/mini/checks.cjs +34 -0
  1773. package/cursor-sidecar/node_modules/zod/v4/mini/checks.d.cts +1 -0
  1774. package/cursor-sidecar/node_modules/zod/v4/mini/checks.d.ts +1 -0
  1775. package/cursor-sidecar/node_modules/zod/v4/mini/checks.js +1 -0
  1776. package/cursor-sidecar/node_modules/zod/v4/mini/coerce.cjs +47 -0
  1777. package/cursor-sidecar/node_modules/zod/v4/mini/coerce.d.cts +7 -0
  1778. package/cursor-sidecar/node_modules/zod/v4/mini/coerce.d.ts +7 -0
  1779. package/cursor-sidecar/node_modules/zod/v4/mini/coerce.js +17 -0
  1780. package/cursor-sidecar/node_modules/zod/v4/mini/external.cjs +62 -0
  1781. package/cursor-sidecar/node_modules/zod/v4/mini/external.d.cts +11 -0
  1782. package/cursor-sidecar/node_modules/zod/v4/mini/external.d.ts +11 -0
  1783. package/cursor-sidecar/node_modules/zod/v4/mini/external.js +13 -0
  1784. package/cursor-sidecar/node_modules/zod/v4/mini/index.cjs +32 -0
  1785. package/cursor-sidecar/node_modules/zod/v4/mini/index.d.cts +3 -0
  1786. package/cursor-sidecar/node_modules/zod/v4/mini/index.d.ts +3 -0
  1787. package/cursor-sidecar/node_modules/zod/v4/mini/index.js +3 -0
  1788. package/cursor-sidecar/node_modules/zod/v4/mini/iso.cjs +60 -0
  1789. package/cursor-sidecar/node_modules/zod/v4/mini/iso.d.cts +22 -0
  1790. package/cursor-sidecar/node_modules/zod/v4/mini/iso.d.ts +22 -0
  1791. package/cursor-sidecar/node_modules/zod/v4/mini/iso.js +30 -0
  1792. package/cursor-sidecar/node_modules/zod/v4/mini/parse.cjs +8 -0
  1793. package/cursor-sidecar/node_modules/zod/v4/mini/parse.d.cts +1 -0
  1794. package/cursor-sidecar/node_modules/zod/v4/mini/parse.d.ts +1 -0
  1795. package/cursor-sidecar/node_modules/zod/v4/mini/parse.js +1 -0
  1796. package/cursor-sidecar/node_modules/zod/v4/mini/schemas.cjs +839 -0
  1797. package/cursor-sidecar/node_modules/zod/v4/mini/schemas.d.cts +356 -0
  1798. package/cursor-sidecar/node_modules/zod/v4/mini/schemas.d.ts +356 -0
  1799. package/cursor-sidecar/node_modules/zod/v4/mini/schemas.js +732 -0
  1800. package/cursor-sidecar/node_modules/zod/v4-mini/index.cjs +17 -0
  1801. package/cursor-sidecar/node_modules/zod/v4-mini/index.d.cts +1 -0
  1802. package/cursor-sidecar/node_modules/zod/v4-mini/index.d.ts +1 -0
  1803. package/cursor-sidecar/node_modules/zod/v4-mini/index.js +1 -0
  1804. package/cursor-sidecar/run-agent.mjs +282 -0
  1805. package/cursor-sidecar/sidecar-runtime.mjs +145 -0
  1806. package/mangostudio +0 -0
  1807. package/package.json +2 -2
  1808. package/public/assets/MarkdownContentRenderer-BR_xaZT1.js +0 -4
  1809. package/public/assets/bash-DKfk-jqG.js +0 -1
  1810. package/public/assets/c-6LDlXRu0.js +0 -1
  1811. package/public/assets/cpp-u2b-vpJ9.js +0 -1
  1812. package/public/assets/csharp-Ceix8dHH.js +0 -1
  1813. package/public/assets/css-Dc0OpoBJ.js +0 -1
  1814. package/public/assets/go-PnJdfxiR.js +0 -1
  1815. package/public/assets/html-UIM7GmnP.js +0 -1
  1816. package/public/assets/index-BFmJdqP5.css +0 -2
  1817. package/public/assets/index-BVWRnZBA.js +0 -90
  1818. package/public/assets/java-B8S38LsY.js +0 -1
  1819. package/public/assets/javascript-okWskhVA.js +0 -1
  1820. package/public/assets/json-BjaDPSOc.js +0 -1
  1821. package/public/assets/jsx-DjqxE-UL.js +0 -1
  1822. package/public/assets/logo-Cb9ic_TX.webp +0 -0
  1823. package/public/assets/markdown-YiYqiPes.js +0 -1
  1824. package/public/assets/markdown-parser-B0W8Yv4o.js +0 -64
  1825. package/public/assets/php-D9TzMTdN.js +0 -1
  1826. package/public/assets/powershell-Dvslkh7q.js +0 -1
  1827. package/public/assets/python-DaRRuALo.js +0 -1
  1828. package/public/assets/rolldown-runtime-BYbx6iT9.js +0 -1
  1829. package/public/assets/ruby-DjRoLTaK.js +0 -1
  1830. package/public/assets/rust-CR5Dd4HD.js +0 -1
  1831. package/public/assets/shellscript-Cd3e2TuR.js +0 -1
  1832. package/public/assets/shiki-qzSzbvts.js +0 -2
  1833. package/public/assets/sql-D3oCX4qf.js +0 -1
  1834. package/public/assets/swift-CJSMoxIm.js +0 -1
  1835. package/public/assets/syntax-core-BoMshe5A.js +0 -152
  1836. package/public/assets/syntax-themes-Dq65SZkH.js +0 -1
  1837. package/public/assets/tsx-DcRFScAN.js +0 -1
  1838. package/public/assets/typescript-ButPIGrc.js +0 -1
  1839. package/public/assets/ui-BEql6gkw.js +0 -9
  1840. package/public/assets/vendor-TU_R2f75.js +0 -11
  1841. package/public/assets/vendor-deps-C4ULb-aw.js +0 -4
  1842. package/public/assets/xml-Lpki4g8-.js +0 -1
  1843. package/public/assets/yaml-sdi5CfWK.js +0 -1
  1844. package/public/index.html +0 -46
@@ -0,0 +1,30 @@
1
+ /*!
2
+ * is-extendable <https://github.com/jonschlinkert/is-extendable>
3
+ *
4
+ * Copyright (c) 2015, Jon Schlinkert.
5
+ * Licensed under the MIT License.
6
+ */
7
+
8
+ /*!
9
+ * re2js
10
+ * RE2JS is the JavaScript port of RE2, a regular expression engine that provides linear time matching
11
+ *
12
+ * @version v1.2.2
13
+ * @author Alexey Vasiliev
14
+ * @homepage https://github.com/le0pard/re2js#readme
15
+ * @repository github:le0pard/re2js
16
+ * @license MIT
17
+ */
18
+
19
+ /*!
20
+ * strip-bom-string <https://github.com/jonschlinkert/strip-bom-string>
21
+ *
22
+ * Copyright (c) 2015, 2017, Jon Schlinkert.
23
+ * Released under the MIT License.
24
+ */
25
+
26
+ /*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */
27
+
28
+ /*! js-yaml 4.1.0 https://github.com/nodeca/js-yaml @license MIT */
29
+
30
+ /*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> */
@@ -0,0 +1 @@
1
+ "use strict";exports.id=796,exports.ids=[796],exports.modules={"./src/agent/safe-connect-transport.ts"(n,e,o){o.r(e),o.d(e,{createSafeConnectTransport:()=>r});var t=o("../../node_modules/.pnpm/@connectrpc+connect@1.6.1_patch_hash=a4b9a5e69295313832387f25b708426bcf53041a2f50bc7b95_d0a2f6c9e28298af3d10922a7e4db69f/node_modules/@connectrpc/connect/dist/esm/protocol/limit-io.js"),s=o("../../node_modules/.pnpm/@connectrpc+connect@1.6.1_patch_hash=a4b9a5e69295313832387f25b708426bcf53041a2f50bc7b95_d0a2f6c9e28298af3d10922a7e4db69f/node_modules/@connectrpc/connect/dist/esm/protocol-connect/transport.js"),i=o("@connectrpc/connect-node");function c(n){const e=(0,i.createNodeHttpClient)(n);return n=>e(function(n){return void 0!==n.signal?n:Object.assign(Object.assign({},n),{signal:(new AbortController).signal})}(n))}function r(n){var e,o,r,a,p;let d;if("2"===n.httpVersion){const o=null!==(e=n.sessionManager)&&void 0!==e?e:new i.Http2SessionManager(n.baseUrl,{pingIntervalMs:n.pingIntervalMs,pingIdleConnection:n.pingIdleConnection,pingTimeoutMs:n.pingTimeoutMs,idleConnectionTimeoutMs:n.idleConnectionTimeoutMs},n.nodeOptions);d=c({httpVersion:"2",sessionProvider:()=>o})}else d=c({httpVersion:"1.1",nodeOptions:n.nodeOptions});return(0,s.o)(Object.assign(Object.assign(Object.assign({},n),{httpClient:d,useBinaryFormat:null===(o=n.useBinaryFormat)||void 0===o||o,interceptors:null!==(r=n.interceptors)&&void 0!==r?r:[],sendCompression:null!==(a=n.sendCompression)&&void 0!==a?a:null,acceptCompression:null!==(p=n.acceptCompression)&&void 0!==p?p:[i.compressionGzip,i.compressionBrotli]}),(0,t.NL)(n.readMaxBytes,n.writeMaxBytes,n.compressMinBytes)))}}};
@@ -0,0 +1 @@
1
+ exports.id=831,exports.ids=[831],exports.modules={"../../node_modules/.pnpm/jpeg-js@0.4.4/node_modules/jpeg-js/index.js"(e,r,n){var o=n("../../node_modules/.pnpm/jpeg-js@0.4.4/node_modules/jpeg-js/lib/encoder.js"),a=n("../../node_modules/.pnpm/jpeg-js@0.4.4/node_modules/jpeg-js/lib/decoder.js");e.exports={encode:o,decode:a}},"../../node_modules/.pnpm/jpeg-js@0.4.4/node_modules/jpeg-js/lib/decoder.js"(e){var r=function(){"use strict";var e=new Int32Array([0,1,8,16,9,2,3,10,17,24,32,25,18,11,4,5,12,19,26,33,40,48,41,34,27,20,13,6,7,14,21,28,35,42,49,56,57,50,43,36,29,22,15,23,30,37,44,51,58,59,52,45,38,31,39,46,53,60,61,54,47,55,62,63]),r=4017,n=799,o=3406,a=2276,t=1567,s=3784,i=5793,f=2896;function c(){}function l(e,r){for(var n,o,a=0,t=[],s=16;s>0&&!e[s-1];)s--;t.push({children:[],index:0});var i,f=t[0];for(n=0;n<s;n++){for(o=0;o<e[n];o++){for((f=t.pop()).children[f.index]=r[a];f.index>0;){if(0===t.length)throw new Error("Could not recreate Huffman Table");f=t.pop()}for(f.index++,t.push(f);t.length<=n;)t.push(i={children:[],index:0}),f.children[f.index]=i.children,f=i;a++}n+1<s&&(t.push(i={children:[],index:0}),f.children[f.index]=i.children,f=i)}return t[0].children}function u(r,n,o,a,t,s,i,f,c,l){o.precision,o.samplesPerLine,o.scanLines;var u=o.mcusPerLine,h=o.progressive,d=(o.maxH,o.maxV,n),m=0,v=0;function p(){if(v>0)return v--,m>>v&1;if(255==(m=r[n++])){var e=r[n++];if(e)throw new Error("unexpected marker: "+(m<<8|e).toString(16))}return v=7,m>>>7}function w(e){for(var r,n=e;null!==(r=p());){if("number"==typeof(n=n[r]))return n;if("object"!=typeof n)throw new Error("invalid huffman sequence")}return null}function g(e){for(var r=0;e>0;){var n=p();if(null===n)return;r=r<<1|n,e--}return r}function b(e){var r=g(e);return r>=1<<e-1?r:r+(-1<<e)+1}var y,k=0,A=0;function x(e,r,n,o,a){var t=n%u,s=(n/u|0)*e.v+o,i=t*e.h+a;void 0===e.blocks[s]&&l.tolerantDecoding||r(e,e.blocks[s][i])}function j(e,r,n){var o=n/e.blocksPerLine|0,a=n%e.blocksPerLine;void 0===e.blocks[o]&&l.tolerantDecoding||r(e,e.blocks[o][a])}var M,P,E,T,C,L,X=a.length;L=h?0===s?0===f?function(e,r){var n=w(e.huffmanTableDC),o=0===n?0:b(n)<<c;r[0]=e.pred+=o}:function(e,r){r[0]|=p()<<c}:0===f?function(r,n){if(k>0)k--;else for(var o=s,a=i;o<=a;){var t=w(r.huffmanTableAC),f=15&t,l=t>>4;if(0!==f)n[e[o+=l]]=b(f)*(1<<c),o++;else{if(l<15){k=g(l)+(1<<l)-1;break}o+=16}}}:function(r,n){for(var o=s,a=i,t=0;o<=a;){var f=e[o],l=n[f]<0?-1:1;switch(A){case 0:var u=w(r.huffmanTableAC),h=15&u;if(t=u>>4,0===h)t<15?(k=g(t)+(1<<t),A=4):(t=16,A=1);else{if(1!==h)throw new Error("invalid ACn encoding");y=b(h),A=t?2:3}continue;case 1:case 2:n[f]?n[f]+=(p()<<c)*l:0==--t&&(A=2==A?3:0);break;case 3:n[f]?n[f]+=(p()<<c)*l:(n[f]=y<<c,A=0);break;case 4:n[f]&&(n[f]+=(p()<<c)*l)}o++}4===A&&0==--k&&(A=0)}:function(r,n){var o=w(r.huffmanTableDC),a=0===o?0:b(o);n[0]=r.pred+=a;for(var t=1;t<64;){var s=w(r.huffmanTableAC),i=15&s,f=s>>4;if(0!==i)n[e[t+=f]]=b(i),t++;else{if(f<15)break;t+=16}}};var B,D,I,U,_=0;for(D=1==X?a[0].blocksPerLine*a[0].blocksPerColumn:u*o.mcusPerColumn,t||(t=D);_<D;){for(P=0;P<X;P++)a[P].pred=0;if(k=0,1==X)for(M=a[0],C=0;C<t;C++)j(M,L,_),_++;else for(C=0;C<t;C++){for(P=0;P<X;P++)for(I=(M=a[P]).h,U=M.v,E=0;E<U;E++)for(T=0;T<I;T++)x(M,L,_,E,T);if(++_===D)break}if(_===D)do{if(255===r[n]&&0!==r[n+1])break;n+=1}while(n<r.length-2);if(v=0,(B=r[n]<<8|r[n+1])<65280)throw new Error("marker was not found");if(!(B>=65488&&B<=65495))break;n+=2}return n-d}function h(e,c){var l,u,h=[],d=c.blocksPerLine,m=c.blocksPerColumn,v=d<<3,w=new Int32Array(64),g=new Uint8Array(64);function b(e,l,u){var h,d,m,v,p,w,g,b,y,k,A=c.quantizationTable,x=u;for(k=0;k<64;k++)x[k]=e[k]*A[k];for(k=0;k<8;++k){var j=8*k;0!=x[1+j]||0!=x[2+j]||0!=x[3+j]||0!=x[4+j]||0!=x[5+j]||0!=x[6+j]||0!=x[7+j]?(h=i*x[0+j]+128>>8,d=i*x[4+j]+128>>8,m=x[2+j],v=x[6+j],p=f*(x[1+j]-x[7+j])+128>>8,b=f*(x[1+j]+x[7+j])+128>>8,w=x[3+j]<<4,g=x[5+j]<<4,y=h-d+1>>1,h=h+d+1>>1,d=y,y=m*s+v*t+128>>8,m=m*t-v*s+128>>8,v=y,y=p-g+1>>1,p=p+g+1>>1,g=y,y=b+w+1>>1,w=b-w+1>>1,b=y,y=h-v+1>>1,h=h+v+1>>1,v=y,y=d-m+1>>1,d=d+m+1>>1,m=y,y=p*a+b*o+2048>>12,p=p*o-b*a+2048>>12,b=y,y=w*n+g*r+2048>>12,w=w*r-g*n+2048>>12,g=y,x[0+j]=h+b,x[7+j]=h-b,x[1+j]=d+g,x[6+j]=d-g,x[2+j]=m+w,x[5+j]=m-w,x[3+j]=v+p,x[4+j]=v-p):(y=i*x[0+j]+512>>10,x[0+j]=y,x[1+j]=y,x[2+j]=y,x[3+j]=y,x[4+j]=y,x[5+j]=y,x[6+j]=y,x[7+j]=y)}for(k=0;k<8;++k){var M=k;0!=x[8+M]||0!=x[16+M]||0!=x[24+M]||0!=x[32+M]||0!=x[40+M]||0!=x[48+M]||0!=x[56+M]?(h=i*x[0+M]+2048>>12,d=i*x[32+M]+2048>>12,m=x[16+M],v=x[48+M],p=f*(x[8+M]-x[56+M])+2048>>12,b=f*(x[8+M]+x[56+M])+2048>>12,w=x[24+M],g=x[40+M],y=h-d+1>>1,h=h+d+1>>1,d=y,y=m*s+v*t+2048>>12,m=m*t-v*s+2048>>12,v=y,y=p-g+1>>1,p=p+g+1>>1,g=y,y=b+w+1>>1,w=b-w+1>>1,b=y,y=h-v+1>>1,h=h+v+1>>1,v=y,y=d-m+1>>1,d=d+m+1>>1,m=y,y=p*a+b*o+2048>>12,p=p*o-b*a+2048>>12,b=y,y=w*n+g*r+2048>>12,w=w*r-g*n+2048>>12,g=y,x[0+M]=h+b,x[56+M]=h-b,x[8+M]=d+g,x[48+M]=d-g,x[16+M]=m+w,x[40+M]=m-w,x[24+M]=v+p,x[32+M]=v-p):(y=i*u[k+0]+8192>>14,x[0+M]=y,x[8+M]=y,x[16+M]=y,x[24+M]=y,x[32+M]=y,x[40+M]=y,x[48+M]=y,x[56+M]=y)}for(k=0;k<64;++k){var P=128+(x[k]+8>>4);l[k]=P<0?0:P>255?255:P}}p(v*m*8);for(var y=0;y<m;y++){var k=y<<3;for(l=0;l<8;l++)h.push(new Uint8Array(v));for(var A=0;A<d;A++){b(c.blocks[y][A],g,w);var x=0,j=A<<3;for(u=0;u<8;u++){var M=h[k+u];for(l=0;l<8;l++)M[j+l]=g[x++]}}}return h}function d(e){return e<0?0:e>255?255:e}c.prototype={load:function(e){var r=new XMLHttpRequest;r.open("GET",e,!0),r.responseType="arraybuffer",r.onload=function(){var e=new Uint8Array(r.response||r.mozResponseArrayBuffer);this.parse(e),this.onload&&this.onload()}.bind(this),r.send(null)},parse:function(r){var n=1e3*this.opts.maxResolutionInMP*1e3,o=0;function a(){var e=r[o]<<8|r[o+1];return o+=2,e}function t(e){var r,n,o=1,a=1;for(n in e.components)e.components.hasOwnProperty(n)&&(o<(r=e.components[n]).h&&(o=r.h),a<r.v&&(a=r.v));var t=Math.ceil(e.samplesPerLine/8/o),s=Math.ceil(e.scanLines/8/a);for(n in e.components)if(e.components.hasOwnProperty(n)){r=e.components[n];var i=Math.ceil(Math.ceil(e.samplesPerLine/8)*r.h/o),f=Math.ceil(Math.ceil(e.scanLines/8)*r.v/a),c=t*r.h,l=s*r.v,u=[];p(l*c*256);for(var h=0;h<l;h++){for(var d=[],m=0;m<c;m++)d.push(new Int32Array(64));u.push(d)}r.blocksPerLine=i,r.blocksPerColumn=f,r.blocks=u}e.maxH=o,e.maxV=a,e.mcusPerLine=t,e.mcusPerColumn=s}r.length;var s,i,f,c,d=null,m=null,v=[],w=[],g=[],b=[],y=a(),k=-1;if(this.comments=[],65496!=y)throw new Error("SOI not found");for(y=a();65497!=y;){switch(y){case 65280:break;case 65504:case 65505:case 65506:case 65507:case 65508:case 65509:case 65510:case 65511:case 65512:case 65513:case 65514:case 65515:case 65516:case 65517:case 65518:case 65519:case 65534:var A=(f=void 0,c=void 0,f=a(),c=r.subarray(o,o+f-2),o+=c.length,c);if(65534===y){var x=String.fromCharCode.apply(null,A);this.comments.push(x)}65504===y&&74===A[0]&&70===A[1]&&73===A[2]&&70===A[3]&&0===A[4]&&(d={version:{major:A[5],minor:A[6]},densityUnits:A[7],xDensity:A[8]<<8|A[9],yDensity:A[10]<<8|A[11],thumbWidth:A[12],thumbHeight:A[13],thumbData:A.subarray(14,14+3*A[12]*A[13])}),65505===y&&69===A[0]&&120===A[1]&&105===A[2]&&102===A[3]&&0===A[4]&&(this.exifBuffer=A.subarray(5,A.length)),65518===y&&65===A[0]&&100===A[1]&&111===A[2]&&98===A[3]&&101===A[4]&&0===A[5]&&(m={version:A[6],flags0:A[7]<<8|A[8],flags1:A[9]<<8|A[10],transformCode:A[11]});break;case 65499:for(var j=a()+o-2;o<j;){var M=r[o++];p(256);var P=new Int32Array(64);if(M>>4){if(M>>4!=1)throw new Error("DQT: invalid table spec");for(N=0;N<64;N++)P[e[N]]=a()}else for(N=0;N<64;N++)P[e[N]]=r[o++];v[15&M]=P}break;case 65472:case 65473:case 65474:a(),(s={}).extended=65473===y,s.progressive=65474===y,s.precision=r[o++],s.scanLines=a(),s.samplesPerLine=a(),s.components={},s.componentsOrder=[];var E=s.scanLines*s.samplesPerLine;if(E>n){var T=Math.ceil((E-n)/1e6);throw new Error(`maxResolutionInMP limit exceeded by ${T}MP`)}var C,L=r[o++];for(J=0;J<L;J++){C=r[o];var X=r[o+1]>>4,B=15&r[o+1],D=r[o+2];if(X<=0||B<=0)throw new Error("Invalid sampling factor, expected values above 0");s.componentsOrder.push(C),s.components[C]={h:X,v:B,quantizationIdx:D},o+=3}t(s),w.push(s);break;case 65476:var I=a();for(J=2;J<I;){var U=r[o++],_=new Uint8Array(16),q=0;for(N=0;N<16;N++,o++)q+=_[N]=r[o];p(16+q);var R=new Uint8Array(q);for(N=0;N<q;N++,o++)R[N]=r[o];J+=17+q,(U>>4?g:b)[15&U]=l(_,R)}break;case 65501:a(),i=a();break;case 65500:a(),a();break;case 65498:a();var Y=r[o++],G=[];for(J=0;J<Y;J++){Q=s.components[r[o++]];var S=r[o++];Q.huffmanTableDC=b[S>>4],Q.huffmanTableAC=g[15&S],G.push(Q)}var O=r[o++],z=r[o++],H=r[o++],$=u(r,o,s,G,i,O,z,H>>4,15&H,this.opts);o+=$;break;case 65535:255!==r[o]&&o--;break;default:if(255==r[o-3]&&r[o-2]>=192&&r[o-2]<=254){o-=3;break}if(224===y||225==y){if(-1!==k)throw new Error(`first unknown JPEG marker at offset ${k.toString(16)}, second unknown JPEG marker ${y.toString(16)} at offset ${(o-1).toString(16)}`);k=o-1;const e=a();if(255===r[o+e-2]){o+=e-2;break}}throw new Error("unknown JPEG marker "+y.toString(16))}y=a()}if(1!=w.length)throw new Error("only single frame JPEGs supported");for(var J=0;J<w.length;J++){var V=w[J].components;for(var N in V)V[N].quantizationTable=v[V[N].quantizationIdx],delete V[N].quantizationIdx}for(this.width=s.samplesPerLine,this.height=s.scanLines,this.jfif=d,this.adobe=m,this.components=[],J=0;J<s.componentsOrder.length;J++){var Q=s.components[s.componentsOrder[J]];this.components.push({lines:h(0,Q),scaleX:Q.h/s.maxH,scaleY:Q.v/s.maxV})}},getData:function(e,r){var n,o,a,t,s,i,f,c,l,u,h,m,v,w,g,b,y,k,A,x,j,M=this.width/e,P=this.height/r,E=0,T=e*r*this.components.length;p(T);var C=new Uint8Array(T);switch(this.components.length){case 1:for(n=this.components[0],u=0;u<r;u++)for(s=n.lines[0|u*n.scaleY*P],l=0;l<e;l++)h=s[0|l*n.scaleX*M],C[E++]=h;break;case 2:for(n=this.components[0],o=this.components[1],u=0;u<r;u++)for(s=n.lines[0|u*n.scaleY*P],i=o.lines[0|u*o.scaleY*P],l=0;l<e;l++)h=s[0|l*n.scaleX*M],C[E++]=h,h=i[0|l*o.scaleX*M],C[E++]=h;break;case 3:for(j=!0,this.adobe&&this.adobe.transformCode?j=!0:void 0!==this.opts.colorTransform&&(j=!!this.opts.colorTransform),n=this.components[0],o=this.components[1],a=this.components[2],u=0;u<r;u++)for(s=n.lines[0|u*n.scaleY*P],i=o.lines[0|u*o.scaleY*P],f=a.lines[0|u*a.scaleY*P],l=0;l<e;l++)j?(h=s[0|l*n.scaleX*M],m=i[0|l*o.scaleX*M],k=d(h+1.402*((v=f[0|l*a.scaleX*M])-128)),A=d(h-.3441363*(m-128)-.71413636*(v-128)),x=d(h+1.772*(m-128))):(k=s[0|l*n.scaleX*M],A=i[0|l*o.scaleX*M],x=f[0|l*a.scaleX*M]),C[E++]=k,C[E++]=A,C[E++]=x;break;case 4:if(!this.adobe)throw new Error("Unsupported color mode (4 components)");for(j=!1,this.adobe&&this.adobe.transformCode?j=!0:void 0!==this.opts.colorTransform&&(j=!!this.opts.colorTransform),n=this.components[0],o=this.components[1],a=this.components[2],t=this.components[3],u=0;u<r;u++)for(s=n.lines[0|u*n.scaleY*P],i=o.lines[0|u*o.scaleY*P],f=a.lines[0|u*a.scaleY*P],c=t.lines[0|u*t.scaleY*P],l=0;l<e;l++)j?(h=s[0|l*n.scaleX*M],m=i[0|l*o.scaleX*M],v=f[0|l*a.scaleX*M],w=c[0|l*t.scaleX*M],g=255-d(h+1.402*(v-128)),b=255-d(h-.3441363*(m-128)-.71413636*(v-128)),y=255-d(h+1.772*(m-128))):(g=s[0|l*n.scaleX*M],b=i[0|l*o.scaleX*M],y=f[0|l*a.scaleX*M],w=c[0|l*t.scaleX*M]),C[E++]=255-g,C[E++]=255-b,C[E++]=255-y,C[E++]=255-w;break;default:throw new Error("Unsupported color mode")}return C},copyToImageData:function(e,r){var n,o,a,t,s,i,f,c,l,u=e.width,h=e.height,m=e.data,v=this.getData(u,h),p=0,w=0;switch(this.components.length){case 1:for(o=0;o<h;o++)for(n=0;n<u;n++)a=v[p++],m[w++]=a,m[w++]=a,m[w++]=a,r&&(m[w++]=255);break;case 3:for(o=0;o<h;o++)for(n=0;n<u;n++)f=v[p++],c=v[p++],l=v[p++],m[w++]=f,m[w++]=c,m[w++]=l,r&&(m[w++]=255);break;case 4:for(o=0;o<h;o++)for(n=0;n<u;n++)s=v[p++],i=v[p++],a=v[p++],f=255-d(s*(1-(t=v[p++])/255)+t),c=255-d(i*(1-t/255)+t),l=255-d(a*(1-t/255)+t),m[w++]=f,m[w++]=c,m[w++]=l,r&&(m[w++]=255);break;default:throw new Error("Unsupported color mode")}}};var m=0,v=0;function p(e=0){var r=m+e;if(r>v){var n=Math.ceil((r-v)/1024/1024);throw new Error(`maxMemoryUsageInMB limit exceeded by at least ${n}MB`)}m=r}return c.resetMaxMemoryUsage=function(e){m=0,v=e},c.getBytesAllocated=function(){return m},c.requestMemoryAllocation=p,c}();e.exports=function(e,n={}){var o={colorTransform:void 0,useTArray:!1,formatAsRGBA:!0,tolerantDecoding:!0,maxResolutionInMP:100,maxMemoryUsageInMB:512,...n},a=new Uint8Array(e),t=new r;t.opts=o,r.resetMaxMemoryUsage(1024*o.maxMemoryUsageInMB*1024),t.parse(a);var s=o.formatAsRGBA?4:3,i=t.width*t.height*s;try{r.requestMemoryAllocation(i);var f={width:t.width,height:t.height,exifBuffer:t.exifBuffer,data:o.useTArray?new Uint8Array(i):Buffer.alloc(i)};t.comments.length>0&&(f.comments=t.comments)}catch(e){if(e instanceof RangeError)throw new Error("Could not allocate enough memory for the image. Required: "+i);if(e instanceof ReferenceError&&"Buffer is not defined"===e.message)throw new Error("Buffer is not globally defined in this environment. Consider setting useTArray to true");throw e}return t.copyToImageData(f,o.formatAsRGBA),f}},"../../node_modules/.pnpm/jpeg-js@0.4.4/node_modules/jpeg-js/lib/encoder.js"(e){function r(e){Math.round;var r,n,o,a,t,s=Math.floor,i=new Array(64),f=new Array(64),c=new Array(64),l=new Array(64),u=new Array(65535),h=new Array(65535),d=new Array(64),m=new Array(64),v=[],p=0,w=7,g=new Array(64),b=new Array(64),y=new Array(64),k=new Array(256),A=new Array(2048),x=[0,1,5,6,14,15,27,28,2,4,7,13,16,26,29,42,3,8,12,17,25,30,41,43,9,11,18,24,31,40,44,53,10,19,23,32,39,45,52,54,20,22,33,38,46,51,55,60,21,34,37,47,50,56,59,61,35,36,48,49,57,58,62,63],j=[0,0,1,5,1,1,1,1,1,1,0,0,0,0,0,0,0],M=[0,1,2,3,4,5,6,7,8,9,10,11],P=[0,0,2,1,3,3,2,4,3,5,5,4,4,0,0,1,125],E=[1,2,3,0,4,17,5,18,33,49,65,6,19,81,97,7,34,113,20,50,129,145,161,8,35,66,177,193,21,82,209,240,36,51,98,114,130,9,10,22,23,24,25,26,37,38,39,40,41,42,52,53,54,55,56,57,58,67,68,69,70,71,72,73,74,83,84,85,86,87,88,89,90,99,100,101,102,103,104,105,106,115,116,117,118,119,120,121,122,131,132,133,134,135,136,137,138,146,147,148,149,150,151,152,153,154,162,163,164,165,166,167,168,169,170,178,179,180,181,182,183,184,185,186,194,195,196,197,198,199,200,201,202,210,211,212,213,214,215,216,217,218,225,226,227,228,229,230,231,232,233,234,241,242,243,244,245,246,247,248,249,250],T=[0,0,3,1,1,1,1,1,1,1,1,1,0,0,0,0,0],C=[0,1,2,3,4,5,6,7,8,9,10,11],L=[0,0,2,1,2,4,4,3,4,7,5,4,4,0,1,2,119],X=[0,1,2,3,17,4,5,33,49,6,18,65,81,7,97,113,19,34,50,129,8,20,66,145,161,177,193,9,35,51,82,240,21,98,114,209,10,22,36,52,225,37,241,23,24,25,26,38,39,40,41,42,53,54,55,56,57,58,67,68,69,70,71,72,73,74,83,84,85,86,87,88,89,90,99,100,101,102,103,104,105,106,115,116,117,118,119,120,121,122,130,131,132,133,134,135,136,137,138,146,147,148,149,150,151,152,153,154,162,163,164,165,166,167,168,169,170,178,179,180,181,182,183,184,185,186,194,195,196,197,198,199,200,201,202,210,211,212,213,214,215,216,217,218,226,227,228,229,230,231,232,233,234,242,243,244,245,246,247,248,249,250];function B(e,r){for(var n=0,o=0,a=new Array,t=1;t<=16;t++){for(var s=1;s<=e[t];s++)a[r[o]]=[],a[r[o]][0]=n,a[r[o]][1]=t,o++,n++;n*=2}return a}function D(e){for(var r=e[0],n=e[1]-1;n>=0;)r&1<<n&&(p|=1<<w),n--,--w<0&&(255==p?(I(255),I(0)):I(p),w=7,p=0)}function I(e){v.push(e)}function U(e){I(e>>8&255),I(255&e)}function _(e,r,n,o,a){for(var t,s=a[0],i=a[240],f=function(e,r){var n,o,a,t,s,i,f,c,l,u,h=0;for(l=0;l<8;++l){n=e[h],o=e[h+1],a=e[h+2],t=e[h+3],s=e[h+4],i=e[h+5],f=e[h+6];var m=n+(c=e[h+7]),v=n-c,p=o+f,w=o-f,g=a+i,b=a-i,y=t+s,k=t-s,A=m+y,x=m-y,j=p+g,M=p-g;e[h]=A+j,e[h+4]=A-j;var P=.707106781*(M+x);e[h+2]=x+P,e[h+6]=x-P;var E=.382683433*((A=k+b)-(M=w+v)),T=.5411961*A+E,C=1.306562965*M+E,L=.707106781*(j=b+w),X=v+L,B=v-L;e[h+5]=B+T,e[h+3]=B-T,e[h+1]=X+C,e[h+7]=X-C,h+=8}for(h=0,l=0;l<8;++l){n=e[h],o=e[h+8],a=e[h+16],t=e[h+24],s=e[h+32],i=e[h+40],f=e[h+48];var D=n+(c=e[h+56]),I=n-c,U=o+f,_=o-f,q=a+i,R=a-i,Y=t+s,G=t-s,S=D+Y,O=D-Y,z=U+q,H=U-q;e[h]=S+z,e[h+32]=S-z;var $=.707106781*(H+O);e[h+16]=O+$,e[h+48]=O-$;var J=.382683433*((S=G+R)-(H=_+I)),V=.5411961*S+J,N=1.306562965*H+J,Q=.707106781*(z=R+_),W=I+Q,F=I-Q;e[h+40]=F+V,e[h+24]=F-V,e[h+8]=W+N,e[h+56]=W-N,h++}for(l=0;l<64;++l)u=e[l]*r[l],d[l]=u>0?u+.5|0:u-.5|0;return d}(e,r),c=0;c<64;++c)m[x[c]]=f[c];var l=m[0]-n;n=m[0],0==l?D(o[0]):(D(o[h[t=32767+l]]),D(u[t]));for(var v=63;v>0&&0==m[v];v--);if(0==v)return D(s),n;for(var p,w=1;w<=v;){for(var g=w;0==m[w]&&w<=v;++w);var b=w-g;if(b>=16){p=b>>4;for(var y=1;y<=p;++y)D(i);b&=15}t=32767+m[w],D(a[(b<<4)+h[t]]),D(u[t]),w++}return 63!=v&&D(s),n}function q(e){e<=0&&(e=1),e>100&&(e=100),t!=e&&(function(e){for(var r=[16,11,10,16,24,40,51,61,12,12,14,19,26,58,60,55,14,13,16,24,40,57,69,56,14,17,22,29,51,87,80,62,18,22,37,56,68,109,103,77,24,35,55,64,81,104,113,92,49,64,78,87,103,121,120,101,72,92,95,98,112,100,103,99],n=0;n<64;n++){var o=s((r[n]*e+50)/100);o<1?o=1:o>255&&(o=255),i[x[n]]=o}for(var a=[17,18,24,47,99,99,99,99,18,21,26,66,99,99,99,99,24,26,56,99,99,99,99,99,47,66,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99],t=0;t<64;t++){var u=s((a[t]*e+50)/100);u<1?u=1:u>255&&(u=255),f[x[t]]=u}for(var h=[1,1.387039845,1.306562965,1.175875602,1,.785694958,.5411961,.275899379],d=0,m=0;m<8;m++)for(var v=0;v<8;v++)c[d]=1/(i[x[d]]*h[m]*h[v]*8),l[d]=1/(f[x[d]]*h[m]*h[v]*8),d++}(e<50?Math.floor(5e3/e):Math.floor(200-2*e)),t=e)}this.encode=function(e,t){var s;(new Date).getTime(),t&&q(t),v=new Array,p=0,w=7,U(65496),U(65504),U(16),I(74),I(70),I(73),I(70),I(0),I(1),I(1),I(0),U(1),U(1),I(0),I(0),void 0!==(s=e.comments)&&s.constructor===Array&&s.forEach((e=>{if("string"==typeof e){U(65534);var r,n=e.length;for(U(n+2),r=0;r<n;r++)I(e.charCodeAt(r))}})),function(e){if(e){U(65505),69===e[0]&&120===e[1]&&105===e[2]&&102===e[3]?U(e.length+2):(U(e.length+5+2),I(69),I(120),I(105),I(102),I(0));for(var r=0;r<e.length;r++)I(e[r])}}(e.exifBuffer),function(){U(65499),U(132),I(0);for(var e=0;e<64;e++)I(i[e]);I(1);for(var r=0;r<64;r++)I(f[r])}(),function(e,r){U(65472),U(17),I(8),U(r),U(e),I(3),I(1),I(17),I(0),I(2),I(17),I(1),I(3),I(17),I(1)}(e.width,e.height),function(){U(65476),U(418),I(0);for(var e=0;e<16;e++)I(j[e+1]);for(var r=0;r<=11;r++)I(M[r]);I(16);for(var n=0;n<16;n++)I(P[n+1]);for(var o=0;o<=161;o++)I(E[o]);I(1);for(var a=0;a<16;a++)I(T[a+1]);for(var t=0;t<=11;t++)I(C[t]);I(17);for(var s=0;s<16;s++)I(L[s+1]);for(var i=0;i<=161;i++)I(X[i])}(),U(65498),U(12),I(3),I(1),I(0),I(2),I(17),I(3),I(17),I(0),I(63),I(0);var u=0,h=0,d=0;p=0,w=7,this.encode.displayName="_encode_";for(var m,k,x,B,R,Y,G,S,O,z=e.data,H=e.width,$=e.height,J=4*H,V=0;V<$;){for(m=0;m<J;){for(Y=R=J*V+m,G=-1,S=0,O=0;O<64;O++)Y=R+(S=O>>3)*J+(G=4*(7&O)),V+S>=$&&(Y-=J*(V+1+S-$)),m+G>=J&&(Y-=m+G-J+4),k=z[Y++],x=z[Y++],B=z[Y++],g[O]=(A[k]+A[x+256|0]+A[B+512|0]>>16)-128,b[O]=(A[k+768|0]+A[x+1024|0]+A[B+1280|0]>>16)-128,y[O]=(A[k+1280|0]+A[x+1536|0]+A[B+1792|0]>>16)-128;u=_(g,c,u,r,o),h=_(b,l,h,n,a),d=_(y,l,d,n,a),m+=32}V+=8}if(w>=0){var N=[];N[1]=w+1,N[0]=(1<<w+1)-1,D(N)}return U(65497),Buffer.from(v)},(new Date).getTime(),e||(e=50),function(){for(var e=String.fromCharCode,r=0;r<256;r++)k[r]=e(r)}(),r=B(j,M),n=B(T,C),o=B(P,E),a=B(L,X),function(){for(var e=1,r=2,n=1;n<=15;n++){for(var o=e;o<r;o++)h[32767+o]=n,u[32767+o]=[],u[32767+o][1]=n,u[32767+o][0]=o;for(var a=-(r-1);a<=-e;a++)h[32767+a]=n,u[32767+a]=[],u[32767+a][1]=n,u[32767+a][0]=r-1+a;e<<=1,r<<=1}}(),function(){for(var e=0;e<256;e++)A[e]=19595*e,A[e+256|0]=38470*e,A[e+512|0]=7471*e+32768,A[e+768|0]=-11059*e,A[e+1024|0]=-21709*e,A[e+1280|0]=32768*e+8421375,A[e+1536|0]=-27439*e,A[e+1792|0]=-5329*e}(),q(e),(new Date).getTime()}e.exports=function(e,n){return void 0===n&&(n=50),{data:new r(n).encode(e,n),width:e.width,height:e.height}}},"../../node_modules/.pnpm/@jimp+js-jpeg@1.6.0/node_modules/@jimp/js-jpeg/dist/esm/index.js"(e,r,n){"use strict";n.r(r),n.d(r,{default:()=>a});var o=n("../../node_modules/.pnpm/jpeg-js@0.4.4/node_modules/jpeg-js/index.js");function a(){return{mime:"image/jpeg",encode:(e,{quality:r=100}={})=>o.encode(e,r).data,decode:(e,r)=>o.decode(e,r)}}}};
@@ -0,0 +1 @@
1
+ "use strict";exports.id=856,exports.ids=[856],exports.modules={"../cursor-sdk-local-runtime/dist/run-store/id.js"(t,e,n){n.d(e,{M2:()=>a,WQ:()=>s,nq:()=>i});var r=n("node:crypto");function s(){return`agent-${(0,r.randomUUID)()}`}function a(){return`bc-${(0,r.randomUUID)()}`}function i(){return`run-${(0,r.randomUUID)()}`}},"../cursor-sdk-local-runtime/dist/run-store/private-directory.js"(t,e,n){n.d(e,{V:()=>s});var r=n("node:fs");function s(t){(0,r.existsSync)(t)||(0,r.mkdirSync)(t,{recursive:!0,mode:448});try{(0,r.chmodSync)(t,448)}catch(t){}}},"../cursor-sdk-local-runtime/dist/run-store/sqlite-agent-run-store.js"(t,e,n){n.d(e,{SqliteAgentRunStore:()=>R});var r=n("node:path"),s=n("../cursor-sdk-local-runtime/dist/run-store/id.js"),a=n("../cursor-sdk-local-runtime/dist/run-store/private-directory.js"),i=n("../cursor-sdk-local-runtime/dist/run-store/sqlite/open-sqlite-driver.js"),o=n("../cursor-sdk-local-runtime/dist/run-store/status.js");function u(t){if(0===t.length)return[];const e=[];for(let n=0;n<t.length;n+=100)e.push(t.slice(n,n+100));return e}function d(){return(new Date).toISOString()}function l(t){return t?new Date(t):null}function c(t,e){return t?JSON.parse(t):e}function _(t){return JSON.stringify(t)}function E(t){return t?_(t):null}function g(t){const e=null==t?void 0:t.params;return e&&e.length>0?_(e):null}function T(t){return{agentId:t.agent_id,workspaceRef:t.workspace_ref,status:t.status,activeRunId:t.active_run_id,latestCheckpointRef:c(t.latest_checkpoint_ref_json,null),name:t.name,createdAt:new Date(t.created_at),updatedAt:new Date(t.updated_at),metadata:c(t.metadata_json,{})}}function h(t){var e,n,r;return{runId:t.run_id,requestId:t.request_id,agentId:t.agent_id,turnNumber:t.turn_number,status:t.status,model:(n=t.model,r=t.model_params_json,null===n?null:null===r?{id:n}:{id:n,params:c(r,[])}),startCheckpointRef:c(t.start_checkpoint_ref_json,null),latestCheckpointRef:c(t.latest_checkpoint_ref_json,null),errorCode:t.error_code,usageRef:t.usage_ref,usage:c(null!==(e=t.usage_json)&&void 0!==e?e:null,null),result:t.result,createdAt:new Date(t.created_at),updatedAt:new Date(t.updated_at),startedAt:l(t.started_at),finishedAt:l(t.finished_at),cancelledAt:l(t.cancelled_at),expiredAt:l(t.expired_at)}}function m(t){var e;const n=null!==(e=null==t?void 0:t.limit)&&void 0!==e?e:50,r=(null==t?void 0:t.cursor)?Number.parseInt(t.cursor,10):0;return{limit:n,offset:Number.isFinite(r)&&r>0?r:0}}class R{options;driverPromise;disposed=!1;static async open(t){const e=new R(t);return await e.getDriver(),e}constructor(t){this.options=t}get stateRoot(){return this.options.stateRoot}get dbPath(){return(0,r.join)(this.options.stateRoot,"index.db")}async createAgent(t){const e=await this.getDriver();return f(e,(()=>{var n,r,a,i,o,u;const l=null!==(r=t.agentId)&&void 0!==r?r:(0,s.WQ)(),c=(0,s.nq)(),E=d();e.run("INSERT INTO agents (\n agent_id, workspace_ref, status, active_run_id,\n latest_checkpoint_ref_json, name,\n metadata_json, created_at, updated_at\n ) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)",[l,t.workspaceRef,"IDLE",c,null,null!==(a=t.name)&&void 0!==a?a:null,_(null!==(i=t.metadata)&&void 0!==i?i:{}),E,E]),e.run("INSERT INTO runs (\n run_id, request_id, agent_id, turn_number, status, model, model_params_json,\n start_checkpoint_ref_json, latest_checkpoint_ref_json,\n error_code, usage_ref, usage_json, result,\n created_at, updated_at, started_at, finished_at,\n cancelled_at, expired_at\n ) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",[c,null!==(o=t.requestId)&&void 0!==o?o:null,l,1,"QUEUED",null!==(u=null===(n=t.model)||void 0===n?void 0:n.id)&&void 0!==u?u:null,g(t.model),null,null,null,null,null,null,E,E,null,null,null,null]);const T=this.getAgentFromDb(e,l),h=this.getRunFromDb(e,l,c);if(!T||!h)throw new Error(`Failed to create agent ${l}`);return{agent:T,run:h}}))}async createFollowUpRun(t,e){const n=await this.getDriver();return f(n,(()=>{var r,a,i,u;const l=this.getAgentFromDb(n,t);if(!l)throw new Error(`Agent ${t} not found`);if("ARCHIVED"===l.status)throw new Error(`Cannot create follow-up run on archived agent ${t}. Unarchive it first.`);if(l.activeRunId){const e=this.getRunFromDb(n,t,l.activeRunId);if(e&&!(0,o.Qb)(e.status))throw new Error(`Agent ${t} already has active run`)}const c=n.get("SELECT COUNT(*) as count FROM runs WHERE agent_id = ?",[t]),_=(0,s.nq)(),T=d();n.run("INSERT INTO runs (\n run_id, request_id, agent_id, turn_number, status, model, model_params_json,\n start_checkpoint_ref_json, latest_checkpoint_ref_json,\n error_code, usage_ref, usage_json, result,\n created_at, updated_at, started_at, finished_at,\n cancelled_at, expired_at\n ) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",[_,null!==(a=e.requestId)&&void 0!==a?a:null,t,(null!==(i=null==c?void 0:c.count)&&void 0!==i?i:0)+1,"QUEUED",null!==(u=null===(r=e.model)||void 0===r?void 0:r.id)&&void 0!==u?u:null,g(e.model),E(l.latestCheckpointRef),l.latestCheckpointRef?E(l.latestCheckpointRef):null,null,null,null,null,T,T,null,null,null,null]),n.run("UPDATE agents SET active_run_id = ?, status = ?, updated_at = ? WHERE agent_id = ?",[_,"IDLE",T,t]);const h=this.getRunFromDb(n,t,_);if(!h)throw new Error(`Failed to create run ${_}`);return h}))}async listAgents(t){const e=await this.getDriver(),{limit:n,offset:r}=m(t),s=e.all("SELECT * FROM agents ORDER BY updated_at DESC LIMIT ? OFFSET ?",[n+1,r]),a=s.slice(0,n),i=s.length>n?String(r+n):void 0;return Object.assign({items:a.map(T)},i?{nextCursor:i}:{})}async getAgent(t){const e=await this.getDriver();return this.getAgentFromDb(e,t)}async listRuns(t,e){const n=await this.getDriver(),{limit:r,offset:s}=m(e),a=n.all("SELECT * FROM runs WHERE agent_id = ? ORDER BY turn_number ASC LIMIT ? OFFSET ?",[t,r+1,s]),i=a.slice(0,r),o=a.length>r?String(s+r):void 0;return Object.assign({items:i.map(h)},o?{nextCursor:o}:{})}async getRun(t,e){const n=await this.getDriver();return this.getRunFromDb(n,t,e)}async markRunStarting(t,e,n){const r=await this.getDriver();f(r,(()=>{var s;const a=this.requireRunFromDb(r,t,e);if((0,o.Qb)(a.status))throw new Error(`Cannot start terminal run ${e}`);const i=d();r.run("UPDATE runs SET request_id = COALESCE(?, request_id), status = ?, started_at = COALESCE(started_at, ?), updated_at = ? WHERE run_id = ? AND agent_id = ?",[null!==(s=null==n?void 0:n.requestId)&&void 0!==s?s:null,"RUNNING",i,i,e,t]),r.run("UPDATE agents\n SET active_run_id = ?,\n status = CASE\n WHEN status = 'ARCHIVED' THEN status\n ELSE 'RUNNING'\n END,\n updated_at = ?\n WHERE agent_id = ?",[e,i,t])}))}async patchCheckpoint(t,e,n){const r=await this.getDriver();f(r,(()=>{this.requireRunFromDb(r,t,e);const s=d();r.run("UPDATE runs\n SET latest_checkpoint_ref_json = ?,\n updated_at = ?\n WHERE run_id = ? AND agent_id = ?",[E(n),s,e,t]),r.run("UPDATE agents\n SET latest_checkpoint_ref_json = ?,\n updated_at = ?\n WHERE agent_id = ?",[E(n),s,t])}))}async markRunTerminal(t,e,n){const r=await this.getDriver();f(r,(()=>{var s,a,i,u;const l=this.requireRunFromDb(r,t,e);if((0,o.Qb)(l.status)){if(void 0!==n.usage&&(null===l.usage||void 0===l.usage)){const s=null===n.usage?null:JSON.stringify(n.usage);r.run("UPDATE runs SET usage_json = ? WHERE run_id = ? AND agent_id = ?",[s,e,t])}return}const c=d(),_=void 0!==n.usage?n.usage:null!==(s=l.usage)&&void 0!==s?s:null,E=null==_?null:JSON.stringify(_);r.run("UPDATE runs\n SET status = ?,\n error_code = COALESCE(?, error_code),\n usage_ref = COALESCE(?, usage_ref),\n usage_json = ?,\n result = COALESCE(?, result),\n updated_at = ?,\n finished_at = CASE WHEN ? = 'FINISHED' THEN ? ELSE finished_at END,\n cancelled_at = CASE WHEN ? = 'CANCELLED' THEN ? ELSE cancelled_at END,\n expired_at = CASE WHEN ? = 'EXPIRED' THEN ? ELSE expired_at END\n WHERE run_id = ? AND agent_id = ?",[n.status,null!==(a=n.errorCode)&&void 0!==a?a:null,null!==(i=n.usageRef)&&void 0!==i?i:null,E,null!==(u=n.result)&&void 0!==u?u:null,c,n.status,c,n.status,c,n.status,c,e,t]),r.run("UPDATE agents\n SET active_run_id = NULL,\n status = CASE\n WHEN status = 'ARCHIVED' THEN status\n WHEN ? = 'ERROR' THEN 'ERROR'\n ELSE 'IDLE'\n END,\n updated_at = ?\n WHERE agent_id = ?",[n.status,c,t])}))}async cancelRun(t,e){await this.markRunTerminal(t,e,{status:"CANCELLED"})}async archiveAgent(t){const e=await this.getDriver();f(e,(()=>{if(!this.getAgentFromDb(e,t))throw new Error(`Agent ${t} not found`);const n=d();e.run("UPDATE agents SET status = 'ARCHIVED', updated_at = ? WHERE agent_id = ?",[n,t])}))}async unarchiveAgent(t){const e=await this.getDriver();f(e,(()=>{if(!this.getAgentFromDb(e,t))throw new Error(`Agent ${t} not found`);const n=d();e.run("UPDATE agents SET status = 'IDLE', updated_at = ? WHERE agent_id = ?",[n,t])}))}async deleteAgent(t){const e=await this.getDriver();f(e,(()=>{const n=this.getAgentFromDb(e,t);if(!n)throw new Error(`Agent ${t} not found`);if(n.activeRunId){const r=this.getRunFromDb(e,t,n.activeRunId);if(r&&!(0,o.Qb)(r.status))throw new Error(`Cannot delete agent ${t}: active run ${n.activeRunId} is not terminal. Call run.cancel() first.`)}e.run("DELETE FROM runs WHERE agent_id = ?",[t]),e.run("DELETE FROM agents WHERE agent_id = ?",[t])}))}async upsertAgentRecord(t){const e=await this.getDriver();f(e,(()=>{const n=this.getAgentFromDb(e,t.agentId),r=t.createdAt.toISOString(),s=t.updatedAt.toISOString();n?e.run("UPDATE agents SET\n workspace_ref = ?,\n status = ?,\n active_run_id = ?,\n latest_checkpoint_ref_json = ?,\n name = ?,\n metadata_json = ?,\n updated_at = ?\n WHERE agent_id = ?",[t.workspaceRef,t.status,t.activeRunId,E(t.latestCheckpointRef),t.name,_(t.metadata),s,t.agentId]):e.run("INSERT INTO agents (\n agent_id, workspace_ref, status, active_run_id,\n latest_checkpoint_ref_json, name,\n metadata_json, created_at, updated_at\n ) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)",[t.agentId,t.workspaceRef,t.status,t.activeRunId,E(t.latestCheckpointRef),t.name,_(t.metadata),r,s])}))}async upsertRunRecord(t){const e=await this.getDriver();f(e,(()=>{var n,r,s,a,i,o,u,d,l,c,_;const T=this.getRunFromDb(e,t.agentId,t.runId),h=t.createdAt.toISOString(),m=t.updatedAt.toISOString(),R=null!==(o=null===(n=t.startedAt)||void 0===n?void 0:n.toISOString())&&void 0!==o?o:null,f=null!==(u=null===(r=t.finishedAt)||void 0===r?void 0:r.toISOString())&&void 0!==u?u:null,p=null!==(d=null===(s=t.cancelledAt)||void 0===s?void 0:s.toISOString())&&void 0!==d?d:null,v=null!==(l=null===(a=t.expiredAt)||void 0===a?void 0:a.toISOString())&&void 0!==l?l:null,A=null===t.usage||void 0===t.usage?null:JSON.stringify(t.usage),D=[null!==(c=t.requestId)&&void 0!==c?c:null,t.turnNumber,t.status,null!==(_=null===(i=t.model)||void 0===i?void 0:i.id)&&void 0!==_?_:null,g(t.model),E(t.startCheckpointRef),E(t.latestCheckpointRef),t.errorCode,t.usageRef,A,t.result,m,R,f,p,v];T?e.run("UPDATE runs SET\n request_id = ?,\n turn_number = ?,\n status = ?,\n model = ?,\n model_params_json = ?,\n start_checkpoint_ref_json = ?,\n latest_checkpoint_ref_json = ?,\n error_code = ?,\n usage_ref = ?,\n usage_json = ?,\n result = ?,\n updated_at = ?,\n started_at = ?,\n finished_at = ?,\n cancelled_at = ?,\n expired_at = ?\n WHERE run_id = ? AND agent_id = ?",[...D,t.runId,t.agentId]):e.run("INSERT INTO runs (\n run_id, request_id, agent_id, turn_number, status, model, model_params_json,\n start_checkpoint_ref_json, latest_checkpoint_ref_json,\n error_code, usage_ref, usage_json, result,\n created_at, updated_at, started_at, finished_at,\n cancelled_at, expired_at\n ) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",[t.runId,...D.slice(0,1),t.agentId,...D.slice(1,11),h,...D.slice(11)])}))}async listAllAgentRecords(){return(await this.getDriver()).all("SELECT * FROM agents",[]).map(T)}async listAllRunRecords(t){const e=await this.getDriver();if(t&&t.length>0){const n=[];for(const r of u(t)){const t=r.map((()=>"?")).join(", "),s=e.all(`SELECT * FROM runs WHERE agent_id IN (${t})`,[...r]);n.push(...s.map(h))}return n}return e.all("SELECT * FROM runs",[]).map(h)}async deleteRunRecordsForAgents(t){if(0===t.length)return;const e=await this.getDriver();f(e,(()=>{for(const n of u(t)){const t=n.map((()=>"?")).join(", ");e.run(`DELETE FROM runs WHERE agent_id IN (${t})`,[...n])}}))}async deleteRunRecordsByKeys(t){if(0===t.length)return;const e=await this.getDriver();f(e,(()=>{for(const{agentId:n,runId:r}of t)e.run("DELETE FROM runs WHERE agent_id = ? AND run_id = ?",[n,r])}))}async dispose(){if(this.disposed=!0,!this.driverPromise)return;const t=await this.driverPromise.catch((()=>{}));t&&t.close(),this.driverPromise=void 0}async getDriver(){if(this.disposed)throw new Error("SqliteAgentRunStore has been disposed");if(this.driverPromise)return this.driverPromise;const t=(async()=>{const t=(0,r.dirname)(this.dbPath);(0,a.V)(t);const e=await(0,i.d)(this.dbPath);try{!function(t){t.exec("PRAGMA journal_mode = WAL;\n PRAGMA synchronous = NORMAL;\n PRAGMA busy_timeout = 5000;\n PRAGMA foreign_keys = ON;\n CREATE TABLE IF NOT EXISTS agents (\n agent_id TEXT PRIMARY KEY,\n workspace_ref TEXT NOT NULL,\n status TEXT NOT NULL,\n active_run_id TEXT,\n latest_checkpoint_ref_json TEXT,\n name TEXT,\n metadata_json TEXT NOT NULL DEFAULT '{}',\n created_at TEXT NOT NULL,\n updated_at TEXT NOT NULL\n );\n CREATE TABLE IF NOT EXISTS runs (\n run_id TEXT PRIMARY KEY,\n request_id TEXT,\n agent_id TEXT NOT NULL REFERENCES agents(agent_id),\n turn_number INTEGER NOT NULL,\n status TEXT NOT NULL,\n model TEXT,\n model_params_json TEXT,\n start_checkpoint_ref_json TEXT,\n latest_checkpoint_ref_json TEXT,\n error_code TEXT,\n usage_ref TEXT,\n usage_json TEXT,\n result TEXT,\n created_at TEXT NOT NULL,\n updated_at TEXT NOT NULL,\n started_at TEXT,\n finished_at TEXT,\n cancelled_at TEXT,\n expired_at TEXT,\n UNIQUE(agent_id, turn_number)\n );");const e=t.all("PRAGMA table_info(runs)");e.some((t=>"request_id"===t.name))||t.exec("ALTER TABLE runs ADD COLUMN request_id TEXT"),e.some((t=>"model_params_json"===t.name))||t.exec("ALTER TABLE runs ADD COLUMN model_params_json TEXT"),e.some((t=>"result"===t.name))||t.exec("ALTER TABLE runs ADD COLUMN result TEXT"),e.some((t=>"usage_json"===t.name))||t.exec("ALTER TABLE runs ADD COLUMN usage_json TEXT")}(e)}catch(t){throw e.close(),t}return e})().catch((e=>{throw this.driverPromise===t&&(this.driverPromise=void 0),e}));return this.driverPromise=t,t}getAgentFromDb(t,e){const n=t.get("SELECT * FROM agents WHERE agent_id = ?",[e]);return n?T(n):null}getRunFromDb(t,e,n){const r=t.get("SELECT * FROM runs WHERE run_id = ? AND agent_id = ?",[n,e]);return r?h(r):null}requireRunFromDb(t,e,n){const r=this.getRunFromDb(t,e,n);if(!r)throw new Error(`Run ${n} not found for agent ${e}`);return r}}function f(t,e){t.exec("BEGIN IMMEDIATE");try{const n=e();return t.exec("COMMIT"),n}catch(e){try{t.exec("ROLLBACK")}catch(t){}throw e}}},"../cursor-sdk-local-runtime/dist/run-store/sqlite/open-sqlite-driver.js"(t,e,n){n.d(e,{d:()=>s});class r extends Error{constructor(t,e){super(t,e),this.name="NoSqliteDriverError"}}async function s(t){if(void 0!==globalThis.Bun)return(await n.e(914).then(n.bind(n,"../cursor-sdk-local-runtime/dist/run-store/sqlite/bun-sqlite-driver.js"))).openBunSqliteDriver(t);let e;try{e=await n.e(343).then(n.bind(n,"../cursor-sdk-local-runtime/dist/run-store/sqlite/node-sqlite-driver.js"))}catch(t){if(function(t){return"ERR_UNKNOWN_BUILTIN_MODULE"===("object"==typeof t&&null!==t&&"code"in t&&"string"==typeof t.code?t.code:void 0)||(t instanceof Error?t.message.toLowerCase():String(t).toLowerCase()).includes("node:sqlite")}(t))throw new r("node:sqlite is not available in this runtime. The default local agent store requires Node >= 22.13 (or another runtime that implements node:sqlite). Configure a JsonlLocalAgentStore instead.",{cause:t});throw t}return e.openNodeSqliteDriver(t)}},"../cursor-sdk-local-runtime/dist/run-store/status.js"(t,e,n){n.d(e,{Qb:()=>s});const r=new Set(["FINISHED","ERROR","CANCELLED","EXPIRED"]);function s(t){return r.has(t)}}};
@@ -0,0 +1 @@
1
+ "use strict";exports.id=914,exports.ids=[914],exports.modules={"../cursor-sdk-local-runtime/dist/run-store/sqlite/bun-sqlite-driver.js"(e,t,s){s.d(t,{openBunSqliteDriver:()=>i});var r=s("bun:sqlite");class n{db;statements=new Map;constructor(e){this.db=e}exec(e){this.db.run(e)}run(e,t=[]){const{changes:s}=this.prepare(e).run(...t);return{changes:Number(s)}}get(e,t=[]){const s=this.prepare(e).get(...t);return null!=s?s:void 0}all(e,t=[]){return this.prepare(e).all(...t)}close(){this.statements.clear(),this.db.close()}prepare(e){let t=this.statements.get(e);return t||(t=this.db.prepare(e),this.statements.set(e,t)),t}}function i(e){return new n(new r.Database(e,{create:!0}))}}};
@@ -0,0 +1 @@
1
+ "use strict";exports.id=986,exports.ids=[986],exports.modules={"./src/agent/store/sqlite-local-agent-store.ts"(e,t,n){n.r(t),n.d(t,{SqliteLocalAgentStore:()=>f});var o=n("../agent-kv/dist/index.js"),r=n("../context/dist/index.js"),i=n("./src/agent/store/local-agent-record-conversion.ts"),d=n("./src/agent/store/local-agent-store.ts"),l=n("./src/agent/store/sdk-state-root.ts"),s=function(e,t,n,o){return new(n||(n=Promise))((function(r,i){function d(e){try{s(o.next(e))}catch(e){i(e)}}function l(e){try{s(o.throw(e))}catch(e){i(e)}}function s(e){var t;e.done?r(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(d,l)}s((o=o.apply(e,t||[])).next())}))};function u(e){var t,n,o;return{runId:e.runId,seq:e.seq,offset:e.offset,eventType:e.eventType,payload:null!==(t=e.payload)&&void 0!==t?t:null,payloadRef:null!==(n=e.payloadRef)&&void 0!==n?n:null,idempotencyKey:null!==(o=e.idempotencyKey)&&void 0!==o?o:null,createdAt:e.createdAt.getTime()}}function a(e){return s(this,void 0,void 0,(function*(){return(yield e.listAllAgentRecords()).map((e=>e.agentId))}))}function c(e,t){return s(this,void 0,void 0,(function*(){return(yield e.runStore.listAllRunRecords([t])).map((e=>e.runId))}))}class f{static open(e){return s(this,void 0,void 0,(function*(){var t;const o=null!==(t=e.stateRoot)&&void 0!==t?t:(0,l.V)(e.workspaceRef),{createDefaultLocalAgentStores:r}=yield n.e(19).then(n.bind(n,"../cursor-sdk-local-runtime/dist/run-store/default-local-agent-stores.js")),i=yield r({stateRoot:o,workspaceRef:e.workspaceRef}),d=i.store,s=i.eventStore,u=i.checkpointStore;return function(e,t,n){if("function"!=typeof e.upsertAgentRecord)throw new Error("SqliteLocalAgentStore requires SqliteAgentRunStore from local runtime");if("function"!=typeof n.appendRunEvent)throw new Error("SqliteLocalAgentStore requires SqliteRunEventStore from local runtime");if("function"!=typeof t.listCheckpointBlobIds)throw new Error("SqliteLocalAgentStore requires LocalAgentCheckpointStore from local runtime")}(d,u,s),new f({stateRoot:o,workspaceRef:e.workspaceRef,runStore:d,checkpointStore:u,eventStore:s})}))}constructor(e){this.stateRoot=e.stateRoot,this.workspaceRef=e.workspaceRef,this.deps={runStore:e.runStore,checkpointStore:e.checkpointStore,eventStore:e.eventStore},this.agents=function(e){return{get:t=>s(this,[t],void 0,(function*({agentId:t}){const n=yield e.runStore.getAgent(t);return n?(0,i.EB)(n):null})),create:t=>s(this,[t],void 0,(function*({agent:t}){if(yield e.runStore.getAgent(t.agentId))throw new Error(`Agent ${t.agentId} already exists`);yield e.runStore.upsertAgentRecord((0,i.UY)(t));const n=yield e.runStore.getAgent(t.agentId);if(!n)throw new Error(`Failed to create agent ${t.agentId}`);return(0,i.EB)(n)})),update:t=>s(this,[t],void 0,(function*({agent:t}){if(!(yield e.runStore.getAgent(t.agentId)))throw new Error(`Agent ${t.agentId} not found`);yield e.runStore.upsertAgentRecord((0,i.UY)(t));const n=yield e.runStore.getAgent(t.agentId);if(!n)throw new Error(`Failed to update agent ${t.agentId}`);return(0,i.EB)(n)})),delete:t=>s(this,[t],void 0,(function*({filter:t}){const n=(yield e.runStore.listAllAgentRecords()).map(i.EB).filter((e=>(0,d.HL)(e,t)));if(0===n.length)throw new Error("No agents matched delete filter");for(const t of n){const n=yield c(e,t.agentId);for(const t of n)yield e.eventStore.deleteRunEvents({runId:t});yield e.checkpointStore.deleteAgent(t.agentId),yield e.runStore.deleteAgent(t.agentId)}})),list:t=>s(this,void 0,void 0,(function*(){const n=(yield e.runStore.listAllAgentRecords()).map(i.EB);return(0,d.tg)(n,null==t?void 0:t.filter)}))}}(this.deps),this.checkpoints=function(e){const t=(0,r.q6)();return{get:n=>s(this,[n],void 0,(function*({agentId:n,blobId:r}){const i=yield e.checkpointStore.getBlobStore(n),d=yield i.getBlob(t,(0,o.aD)(r));return d?function(e){const t=new Uint8Array(e.length);return t.set(e),t}(d):null})),create:n=>s(this,[n],void 0,(function*({agentId:n,blobId:r,data:i}){const d=yield e.checkpointStore.getBlobStore(n);if(yield d.getBlob(t,(0,o.aD)(r)))throw new Error(`Checkpoint blob ${r} already exists for agent ${n}`);yield d.setBlob(t,(0,o.aD)(r),i)})),update:n=>s(this,[n],void 0,(function*({agentId:n,blobId:r,data:i}){const d=yield e.checkpointStore.getBlobStore(n);if(!(yield d.getBlob(t,(0,o.aD)(r))))throw new Error(`Checkpoint blob ${r} not found for agent ${n}`);yield d.setBlob(t,(0,o.aD)(r),i)})),delete:t=>s(this,void 0,void 0,(function*(){const n=t.filter.agentIds&&t.filter.agentIds.length>0?t.filter.agentIds:yield a(e.runStore),o=t.filter.blobIds;for(const t of n)if(null==o?void 0:o.length){const n=yield e.checkpointStore.getBlobStore(t);for(const e of o)yield n.deleteBlob(e)}else yield e.checkpointStore.deleteAgent(t)})),list:t=>s(this,void 0,void 0,(function*(){const n=null==t?void 0:t.filter,o=(null==n?void 0:n.agentIds)&&n.agentIds.length>0?n.agentIds:yield a(e.runStore),r=[];for(const t of o){const o=yield e.checkpointStore.listCheckpointBlobIds(t);for(const e of o)(0,d.S$)({agentId:t,blobId:e},n)&&r.push(e)}return(0,d.Jg)(r,n)}))}}(this.deps),this.runs=function(e){return{get:t=>s(this,[t],void 0,(function*({agentId:t,runId:n}){const o=yield e.runStore.getRun(t,n);return o?(0,i.xu)(o):null})),create:t=>s(this,[t],void 0,(function*({run:t}){if(yield e.runStore.getRun(t.agentId,t.runId))throw new Error(`Run ${t.runId} already exists for agent ${t.agentId}`);yield e.runStore.upsertRunRecord((0,i.R)(t));const n=yield e.runStore.getRun(t.agentId,t.runId);if(!n)throw new Error(`Failed to create run ${t.runId} for agent ${t.agentId}`);return(0,i.xu)(n)})),update:t=>s(this,[t],void 0,(function*({run:t}){if(!(yield e.runStore.getRun(t.agentId,t.runId)))throw new Error(`Run ${t.runId} not found for agent ${t.agentId}`);yield e.runStore.upsertRunRecord((0,i.R)(t));const n=yield e.runStore.getRun(t.agentId,t.runId);if(!n)throw new Error(`Failed to update run ${t.runId} for agent ${t.agentId}`);return(0,i.xu)(n)})),delete:t=>s(this,void 0,void 0,(function*(){const n=t.filter,o=(null==n?void 0:n.agentIds)&&n.agentIds.length>0?n.agentIds:void 0,r=(yield e.runStore.listAllRunRecords(o)).map(i.xu).filter((e=>(0,d.hA)(e,n)));if(0!==r.length){for(const t of r)yield e.eventStore.deleteRunEvents({runId:t.runId});yield e.runStore.deleteRunRecordsByKeys(r.map((e=>({agentId:e.agentId,runId:e.runId}))))}})),list:t=>s(this,void 0,void 0,(function*(){const n=null==t?void 0:t.filter,o=(yield e.runStore.listAllRunRecords(null==n?void 0:n.agentIds)).map(i.xu).filter((e=>(0,d.hA)(e,n)));return(0,d.f1)(o,n)}))}}(this.deps),this.runEvents=function(e){return{append:t=>s(this,void 0,void 0,(function*(){return u(yield e.appendRunEvent({runId:t.runId,eventType:t.eventType,payload:t.payload,payloadRef:t.payloadRef,idempotencyKey:t.idempotencyKey}))})),list:t=>s(this,void 0,void 0,(function*(){var n;const o=yield e.listRunEvents({runId:t.runId,afterOffset:null!==(n=t.afterOffset)&&void 0!==n?n:void 0,limit:t.limit});return Object.assign({items:o.events.map(u)},void 0!==o.nextOffset?{nextOffset:o.nextOffset}:{})})),delete:t=>s(this,void 0,void 0,(function*(){var n;const o=null!==(n=t.filter.runIds)&&void 0!==n?n:[];for(const t of o)yield e.deleteRunEvents({runId:t})}))}}(e.eventStore)}dispose(){return s(this,void 0,void 0,(function*(){yield Promise.all([this.deps.runStore.dispose(),this.deps.eventStore.dispose(),this.deps.checkpointStore.dispose()])}))}}}};
@@ -0,0 +1 @@
1
+ "use strict";exports.id=996,exports.ids=[996],exports.modules={"../../node_modules/.pnpm/@connectrpc+connect@1.6.1_patch_hash=a4b9a5e69295313832387f25b708426bcf53041a2f50bc7b95_d0a2f6c9e28298af3d10922a7e4db69f/node_modules/@connectrpc/connect/dist/esm/protocol-connect/transport.js"(e,n,t){t.d(n,{o:()=>U});var r=t("@bufbuild/protobuf");const o="Content-Type",a="Content-Length",s="Content-Encoding",c="Connect-Content-Encoding",i="Accept-Encoding",d="Connect-Protocol-Version",u=/^application\/(connect\+)?(?:(json)(?:; ?charset=utf-?8)?|(proto))$|^text\/event-stream$/i;function l(e,n,t,a,u,l,f){const p=function(e,n,t,a,s){const c=new Headers(null!=a?a:{});return void 0!==t&&c.set("Connect-Timeout-Ms",`${t}`),c.set(o,e==r.MethodKind.Unary?n?"application/proto":"application/json":n?"application/connect+proto":"application/connect+json"),c.set(d,"1"),s&&c.set("User-Agent","connect-es/1.6.1"),c}(e,n,t,a,f);if(null!=l){const n=e==r.MethodKind.Unary?s:c;p.set(n,l.name)}if(u.length>0){const n=e==r.MethodKind.Unary?i:"Connect-Accept-Encoding";p.set(n,u.map((e=>e.name)).join(","))}return p}var f=t("../../node_modules/.pnpm/@connectrpc+connect@1.6.1_patch_hash=a4b9a5e69295313832387f25b708426bcf53041a2f50bc7b95_d0a2f6c9e28298af3d10922a7e4db69f/node_modules/@connectrpc/connect/dist/esm/code.js"),p=t("../../node_modules/.pnpm/@connectrpc+connect@1.6.1_patch_hash=a4b9a5e69295313832387f25b708426bcf53041a2f50bc7b95_d0a2f6c9e28298af3d10922a7e4db69f/node_modules/@connectrpc/connect/dist/esm/connect-error.js");function m(e,n,t,a,i){let d;const l=i.get(e==r.MethodKind.Unary?s:c);if(null!=l&&"identity"!==l.toLowerCase()&&(d=n.find((e=>e.name===l)),!d))throw new p.T(`unsupported response encoding "${l}"`,f.C.Internal,i);return Object.assign({compression:d},function(e,n,t,a){const s=a.get(o),c=function(e){if("text/event-stream"===e)return{stream:!0,binary:!0};const n=null==e?void 0:e.match(u);return n?{stream:!!n[1],binary:!!n[3]}:void 0}(s);if(200!==t){const n=new p.T(`HTTP ${t}`,function(e){switch(e){case 400:return f.C.Internal;case 401:return f.C.Unauthenticated;case 403:return f.C.PermissionDenied;case 404:return f.C.Unimplemented;case 429:case 502:case 503:case 504:return f.C.Unavailable;default:return f.C.Unknown}}(t),a);if(e==r.MethodKind.Unary&&c&&!c.binary)return{isUnaryError:!0,unaryError:n};throw n}const i=n,d=e!==r.MethodKind.Unary;if((null==c?void 0:c.binary)!==i||c.stream!==d)throw new p.T(`unsupported content type ${s}`,void 0===c?f.C.Unknown:f.C.Internal,a);return{isUnaryError:!1}}(e,t,a,i))}var h=t("../../node_modules/.pnpm/@connectrpc+connect@1.6.1_patch_hash=a4b9a5e69295313832387f25b708426bcf53041a2f50bc7b95_d0a2f6c9e28298af3d10922a7e4db69f/node_modules/@connectrpc/connect/dist/esm/protocol-connect/code-string.js");function y(e,n,t){var o;if(n&&new Headers(n).forEach(((e,n)=>t.metadata.append(n,e))),"object"!=typeof e||null==e||Array.isArray(e))throw t;let a=t.code;"code"in e&&"string"==typeof e.code&&(a=null!==(o=(0,h.X)(e.code))&&void 0!==o?o:a);const s=e.message;if(null!=s&&"string"!=typeof s)throw t;const c=new p.T(null!=s?s:"",a,n);if("details"in e&&Array.isArray(e.details))for(const n of e.details){if(null===n||"object"!=typeof n||Array.isArray(n)||"string"!=typeof n.type||"string"!=typeof n.value)throw t;try{c.details.push({type:n.type,value:r.protoBase64.dec(n.value),debug:n.debug})}catch(e){throw t}}return c}function g(e,n){const t={code:(0,h.s)(e.code)};return e.rawMessage.length>0&&(t.message=e.rawMessage),e.details.length>0&&(t.details=e.details.map((e=>{if("getType"in e){const t={type:e.getType().typeName,value:e.toBinary()};try{t.debug=e.toJson(n)}catch(e){}return t}return e})).map((e=>{var{value:n}=e,t=function(e,n){var t={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&n.indexOf(r)<0&&(t[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o<r.length;o++)n.indexOf(r[o])<0&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(t[r[o]]=e[r[o]])}return t}(e,["value"]);return Object.assign(Object.assign({},t),{value:r.protoBase64.enc(n).replace(/=+$/,"")})}))),t}function b(...e){const n=new Headers;for(const t of e)t.forEach(((e,t)=>{n.append(t,e)}));return n}var v=t("../../node_modules/.pnpm/@connectrpc+connect@1.6.1_patch_hash=a4b9a5e69295313832387f25b708426bcf53041a2f50bc7b95_d0a2f6c9e28298af3d10922a7e4db69f/node_modules/@connectrpc/connect/dist/esm/protocol/async-iterable.js");function w(e,n,t){const r="string"==typeof n?n:n.typeName,o="string"==typeof t?t:t.name;return e.toString().replace(/\/?$/,`/${r}/${o}`)}function C(e,n){var t;return null!==(t=null==n?void 0:n.concat().reverse().reduce(((e,n)=>n(e)),e))&&void 0!==t?t:e}function O(e){if(!e.aborted)return;if(void 0!==e.reason)return e.reason;const n=new Error("This operation was aborted");return n.name="AbortError",n}function E(e,n){return n instanceof e?n:new e(n)}function T(e,n){function t(n){return!0===n.done?n:{done:n.done,value:E(e,n.value)}}return{[Symbol.asyncIterator](){const e=n[Symbol.asyncIterator](),r={next:()=>e.next().then(t)};return void 0!==e.throw&&(r.throw=n=>e.throw(n).then(t)),void 0!==e.return&&(r.return=n=>e.return(n).then(t)),r}}}function j(e){const{signal:n,cleanup:t}=function(e){const n=new AbortController,t=()=>{n.abort(new p.T("the operation timed out",f.C.DeadlineExceeded))};let r;return void 0!==e&&(e<=0?t():r=setTimeout(t,e)),{signal:n.signal,cleanup:()=>clearTimeout(r)}}(e.timeoutMs),r=function(...e){const n=new AbortController,t=e.filter((e=>void 0!==e)).concat(n.signal);for(const e of t){if(e.aborted){r.apply(e);break}e.addEventListener("abort",r)}function r(){n.signal.aborted||n.abort(O(this));for(const e of t)e.removeEventListener("abort",r)}return n}(e.signal,n);return[r.signal,function(e){const o=p.T.from(n.aborted?O(n):e);return r.abort(o),t(),Promise.reject(o)},function(){t(),r.abort()}]}var x=t("../../node_modules/.pnpm/@connectrpc+connect@1.6.1_patch_hash=a4b9a5e69295313832387f25b708426bcf53041a2f50bc7b95_d0a2f6c9e28298af3d10922a7e4db69f/node_modules/@connectrpc/connect/dist/esm/protocol/limit-io.js");function S(e,n,t,r){const o=I(_(e.I,n),r),a=I(M(e.I,t),r),s=I(_(e.O,n),r),c=I(M(e.O,t),r);return{getI:e=>e?o:a,getO:e=>e?s:c}}function I(e,n){return{serialize(t){const r=e.serialize(t);return(0,x.Tw)(n.writeMaxBytes,r.byteLength),r},parse:t=>((0,x.kk)(n.readMaxBytes,t.byteLength,!0),e.parse(t))}}function _(e,n){return{parse(t){try{return e.fromBinary(t,n)}catch(e){const n=e instanceof Error?e.message:String(e);throw new p.T(`parse binary: ${n}`,f.C.Internal)}},serialize(e){try{return e.toBinary(n)}catch(e){const n=e instanceof Error?e.message:String(e);throw new p.T(`serialize binary: ${n}`,f.C.Internal)}}}}function M(e,n){var t,r;const o=null!==(t=null==n?void 0:n.textEncoder)&&void 0!==t?t:new TextEncoder,a=null!==(r=null==n?void 0:n.textDecoder)&&void 0!==r?r:new TextDecoder,s=function(e){var n;const t=Object.assign({},e);return null!==(n=t.ignoreUnknownFields)&&void 0!==n||(t.ignoreUnknownFields=!0),t}(n);return{parse(n){try{const t=a.decode(n);return e.fromJsonString(t,s)}catch(e){throw p.T.from(e,f.C.InvalidArgument)}},serialize(e){try{const n=e.toJsonString(s);return o.encode(n)}catch(e){throw p.T.from(e,f.C.Internal)}}}}function A(){return{get(e){return e.id in this?this[e.id]:e.defaultValue},set(e,n){return this[e.id]=n,this},delete(e){return delete this[e.id],this}}}var B=function(e){return this instanceof B?(this.v=e,this):new B(e)};function U(e){return{async unary(n,t,c,u,f,p,h){const g=S(t,e.binaryOptions,e.jsonOptions,e);return u=void 0===u?e.defaultTimeoutMs:u<=0?void 0:u,await function(e){const n=C(e.next,e.interceptors),[t,r,o]=j(e);return n(Object.assign(Object.assign({},e.req),{message:E(e.req.method.I,e.req.message),signal:t})).then((e=>(o(),e)),r)}({interceptors:e.interceptors,signal:c,timeoutMs:u,req:{stream:!1,service:n,method:t,url:w(e.baseUrl,n,t),init:{},header:l(t.kind,e.useBinaryFormat,u,f,e.acceptCompression,e.sendCompression,!0),contextValues:null!=h?h:A(),message:p},next:async c=>{var u;let l,f=g.getI(e.useBinaryFormat).serialize(c.message);e.sendCompression&&f.byteLength>e.compressMinBytes?(f=await e.sendCompression.compress(f),c.header.set(s,e.sendCompression.name)):c.header.delete(s),!0===e.useHttpGet&&t.idempotency===r.MethodIdempotency.NoSideEffects?c=function(e,n,t){let c="?connect=v1";const u=e.header.get(o);0===(null==u?void 0:u.indexOf("application/"))&&(c+="&encoding="+encodeURIComponent(u.slice(12)));const l=e.header.get(s);null!==l&&"identity"!==l&&(c+="&compression="+encodeURIComponent(l),t=!0),t&&(c+="&base64=1"),c+="&message="+function(e,n){return n?r.protoBase64.enc(e).replace(/\+/g,"-").replace(/\//g,"_").replace(/=+$/,""):encodeURIComponent((new TextDecoder).decode(e))}(n,t);const f=e.url+c,p=new Headers(e.header);return[d,o,a,s,i].forEach((e=>p.delete(e))),Object.assign(Object.assign({},e),{init:Object.assign(Object.assign({},e.init),{method:"GET"}),url:f,header:p})}(c,f,e.useBinaryFormat):(l=(0,v.T$)([f]),0===f.length&&c.header.set("Content-Length","0"));const p=await e.httpClient({url:c.url,method:null!==(u=c.init.method)&&void 0!==u?u:"POST",header:c.header,signal:c.signal,body:l}),{compression:h,isUnaryError:w,unaryError:C}=m(t.kind,e.acceptCompression,e.useBinaryFormat,p.status,p.header),[O,E]=function(e){const n=new Headers,t=new Headers;return e.forEach(((e,r)=>{r.toLowerCase().startsWith("trailer-")?t.append(r.substring(8),e):n.append(r,e)})),[n,t]}(p.header);let T=await(0,v.WK)(p.body,(0,v.SM)(e.readMaxBytes,p.header.get(a)),{propagateDownStreamError:!1});if(h&&(T=await h.decompress(T,e.readMaxBytes)),w)throw function(e,n,t){let r;try{r=JSON.parse((new TextDecoder).decode(e))}catch(e){throw t}return y(r,n,t)}(T,b(O,E),C);return{stream:!1,service:n,method:t,header:O,message:g.getO(e.useBinaryFormat).parse(T),trailer:E}}})},async stream(n,t,r,o,a,s,c){const i=S(t,e.binaryOptions,e.jsonOptions,e),d=function(e){const n=new TextEncoder;return{serialize(t){try{const r=function(e,n,t){const r={};void 0!==n&&(r.error=g(n,t),e=b(e,n.metadata));let o=!1;const a={};return e.forEach(((e,n)=>{o=!0,a[n]=[e]})),o&&(r.metadata=a),r}(t.metadata,t.error,e),o=JSON.stringify(r);return n.encode(o)}catch(e){const n=e instanceof Error?e.message:String(e);throw new p.T(`failed to serialize EndStreamResponse: ${n}`,f.C.Internal)}},parse(e){try{return function(e){const n=new p.T("invalid end stream",f.C.Unknown);let t;try{t=JSON.parse("string"==typeof e?e:(new TextDecoder).decode(e))}catch(e){throw n}if("object"!=typeof t||null==t||Array.isArray(t))throw n;const r=new Headers;if("metadata"in t){if("object"!=typeof t.metadata||null==t.metadata||Array.isArray(t.metadata))throw n;for(const[e,o]of Object.entries(t.metadata)){if(!Array.isArray(o)||o.some((e=>"string"!=typeof e)))throw n;for(const n of o)r.append(e,n)}}return{metadata:r,error:"error"in t&&null!=t.error?y(t.error,r,n):void 0}}(e)}catch(e){const n=e instanceof Error?e.message:String(e);throw new p.T(`failed to parse EndStreamResponse: ${n}`,f.C.InvalidArgument)}}}}(e.jsonOptions);return o=void 0===o?e.defaultTimeoutMs:o<=0?void 0:o,function(e){const n=C(e.next,e.interceptors),[t,r,o]=j(e),a=Object.assign(Object.assign({},e.req),{message:T(e.req.method.I,e.req.message),signal:t});let s=!1;return t.addEventListener("abort",(function(){var n,t;const r=e.req.message[Symbol.asyncIterator]();s||null===(n=r.throw)||void 0===n||n.call(r,this.reason).catch((()=>{})),null===(t=r.return)||void 0===t||t.call(r).catch((()=>{}))})),n(a).then((e=>Object.assign(Object.assign({},e),{message:{[Symbol.asyncIterator](){const n=e.message[Symbol.asyncIterator]();return{next:()=>n.next().then((e=>(1==e.done&&(s=!0,o()),e)),r)}}}})),r)}({interceptors:e.interceptors,signal:r,timeoutMs:o,req:{stream:!0,service:n,method:t,url:w(e.baseUrl,n,t),init:{method:"POST",redirect:"error",mode:"cors"},header:l(t.kind,e.useBinaryFormat,o,a,e.acceptCompression,e.sendCompression,!0),contextValues:null!=c?c:A(),message:s},next:async n=>{const r=await e.httpClient({url:n.url,method:"POST",header:n.header,signal:n.signal,body:(0,v.Fs)(n.message,(0,v.XO)(i.getI(e.useBinaryFormat)),(0,v.fM)(e.sendCompression,e.compressMinBytes),(0,v.yQ)(),{propagateDownStreamError:!0})}),{compression:o}=m(t.kind,e.acceptCompression,e.useBinaryFormat,r.status,r.header),a=Object.assign(Object.assign({},n),{header:r.header,trailer:new Headers,message:(0,v.Fs)(r.body,(0,v.pY)(e.readMaxBytes),(0,v.ew)(null!=o?o:null,e.readMaxBytes),(0,v.uv)(i.getO(e.useBinaryFormat),2,d),(function(e){return function(e,n,t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r,o=t.apply(e,n||[]),a=[];return r={},s("next"),s("throw"),s("return",(function(e){return function(n){return Promise.resolve(n).then(e,d)}})),r[Symbol.asyncIterator]=function(){return this},r;function s(e,n){o[e]&&(r[e]=function(n){return new Promise((function(t,r){a.push([e,n,t,r])>1||c(e,n)}))},n&&(r[e]=n(r[e])))}function c(e,n){try{(t=o[e](n)).value instanceof B?Promise.resolve(t.value.v).then(i,d):u(a[0][2],t)}catch(e){u(a[0][3],e)}var t}function i(e){c("next",e)}function d(e){c("throw",e)}function u(e,n){e(n),a.shift(),a.length&&c(a[0][0],a[0][1])}}(this,arguments,(function*(){var n,t,o,s;let c=!1;try{for(var i,d=!0,u=function(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var n,t=e[Symbol.asyncIterator];return t?t.call(e):(e="function"==typeof __values?__values(e):e[Symbol.iterator](),n={},r("next"),r("throw"),r("return"),n[Symbol.asyncIterator]=function(){return this},n);function r(t){n[t]=e[t]&&function(n){return new Promise((function(r,o){!function(e,n,t,r){Promise.resolve(r).then((function(n){e({value:n,done:t})}),n)}(r,o,(n=e[t](n)).done,n.value)}))}}}(e);!(n=(i=yield B(u.next())).done);d=!0){s=i.value,d=!1;const e=s;if(e.end){if(c)throw new p.T("protocol error: received extra EndStreamResponse",f.C.InvalidArgument);if(c=!0,e.value.error){const n=e.value.error;throw r.header.forEach(((e,t)=>{n.metadata.append(t,e)})),n}e.value.metadata.forEach(((e,n)=>a.trailer.set(n,e)))}else{if(c)throw new p.T("protocol error: received extra message after EndStreamResponse",f.C.InvalidArgument);yield yield B(e.value)}}}catch(e){t={error:e}}finally{try{d||n||!(o=u.return)||(yield B(o.call(u)))}finally{if(t)throw t.error}}if(!c)throw new p.T("protocol error: missing EndStreamResponse",f.C.InvalidArgument)}))}),{propagateDownStreamError:!0})});return a}})}}}}};
@@ -0,0 +1,242 @@
1
+ import type { AgentCheckpointStore, AgentRunStore, RunEventNotifier, RunEventStore } from "./run-store-public-types.js";
2
+ import type { LocalAgentStore } from "./store/local-agent-store.js";
3
+ /** Conversation mode for agent runs. */
4
+ export type AgentModeOption = "agent" | "plan";
5
+ export interface SDKImageDimension {
6
+ width: number;
7
+ height: number;
8
+ }
9
+ export type SDKImage = {
10
+ url: string;
11
+ dimension?: SDKImageDimension;
12
+ } | {
13
+ data: string;
14
+ mimeType: string;
15
+ dimension?: SDKImageDimension;
16
+ };
17
+ export interface SDKUserMessage {
18
+ text: string;
19
+ images?: SDKImage[];
20
+ }
21
+ export type McpServerConfig = {
22
+ type?: "stdio";
23
+ command: string;
24
+ args?: string[];
25
+ env?: Record<string, string>;
26
+ cwd?: string;
27
+ } | {
28
+ type?: "http" | "sse";
29
+ url: string;
30
+ headers?: Record<string, string>;
31
+ auth?: {
32
+ CLIENT_ID: string;
33
+ CLIENT_SECRET?: string;
34
+ scopes?: string[];
35
+ };
36
+ };
37
+ export type SettingSource = "project" | "user" | "team" | "mdm" | "plugins" | "all";
38
+ export type SDKJsonPrimitive = string | number | boolean | null;
39
+ export type SDKJsonValue = SDKJsonPrimitive | {
40
+ [key: string]: SDKJsonValue;
41
+ } | SDKJsonValue[];
42
+ export type SDKCustomToolContent = {
43
+ type: "text";
44
+ text: string;
45
+ } | {
46
+ type: "image";
47
+ data: string;
48
+ mimeType?: string;
49
+ };
50
+ export type SDKCustomToolResult = string | SDKJsonValue | {
51
+ content: SDKCustomToolContent[];
52
+ isError?: boolean;
53
+ structuredContent?: Record<string, SDKJsonValue>;
54
+ };
55
+ export interface SDKCustomToolContext {
56
+ toolCallId?: string;
57
+ }
58
+ export interface SDKCustomTool {
59
+ description?: string;
60
+ inputSchema?: Record<string, SDKJsonValue>;
61
+ execute: (args: Record<string, SDKJsonValue>, context: SDKCustomToolContext) => SDKCustomToolResult | Promise<SDKCustomToolResult>;
62
+ }
63
+ export interface SandboxOptions {
64
+ enabled: boolean;
65
+ }
66
+ export interface ModelParameterValue {
67
+ id: string;
68
+ value: string;
69
+ }
70
+ export interface ModelSelection {
71
+ id: string;
72
+ params?: ModelParameterValue[];
73
+ }
74
+ export interface ModelParameterDefinition {
75
+ id: string;
76
+ displayName?: string;
77
+ values: Array<{
78
+ value: string;
79
+ displayName?: string;
80
+ }>;
81
+ }
82
+ export interface ModelVariant {
83
+ params: ModelParameterValue[];
84
+ displayName: string;
85
+ description?: string;
86
+ isDefault?: boolean;
87
+ }
88
+ export interface ModelListItem {
89
+ id: string;
90
+ displayName: string;
91
+ description?: string;
92
+ aliases?: string[];
93
+ parameters?: ModelParameterDefinition[];
94
+ variants?: ModelVariant[];
95
+ }
96
+ export interface AgentDefinition {
97
+ description: string;
98
+ prompt: string;
99
+ model?: ModelSelection | "inherit";
100
+ mcpServers?: Array<string | Record<string, McpServerConfig>>;
101
+ }
102
+ /**
103
+ * Options that only apply to local agents. Exported as a standalone type so
104
+ * users can reference it directly (e.g. `Partial<LocalAgentOptions>`) instead
105
+ * of having to unwrap the optional `local` field on `AgentOptions` with
106
+ * `Partial<NonNullable<AgentOptions["local"]>>`.
107
+ */
108
+ export interface LocalAgentOptions {
109
+ cwd?: string | string[];
110
+ /**
111
+ * Enable Cursor's Auto-review for local tool calls. When this is true,
112
+ * local runs select the classifier-backed Auto mode whenever the connected
113
+ * backend has the Auto-review classifier feature enabled.
114
+ */
115
+ autoReview?: boolean;
116
+ /**
117
+ * Custom {@link LocalAgentStore} for this call. When omitted, uses
118
+ * `Cursor.configure({ local: { store } })` if set; otherwise the default
119
+ * SQLite backend when `sqlite3` is installed (`@cursor/sdk/sqlite`), or
120
+ * {@link JsonlLocalAgentStore} when running without native SQLite.
121
+ * Agent rows hold a slim checkpoint ref (`latestCheckpoint.rootBlobId`);
122
+ * blob bytes live on `store.checkpoints`.
123
+ */
124
+ store?: LocalAgentStore;
125
+ /**
126
+ * Ambient Cursor settings layers to load from the local filesystem.
127
+ * Local agents only. On cloud, `project` / `team` / `plugins` are
128
+ * always on and `user` / `mdm` / `local` have no VM equivalent, so
129
+ * this field is gated to the local shape.
130
+ */
131
+ settingSources?: SettingSource[];
132
+ sandboxOptions?: SandboxOptions;
133
+ /**
134
+ * In-process callback tools for this agent, exposed as the
135
+ * `custom-user-tools` MCP server (`GetMcpTools` / `CallMcpTool`). Applied on
136
+ * every `send` unless overridden by {@link LocalSendOptions.customTools}.
137
+ * Local agents only; not supported on cloud agents.
138
+ */
139
+ customTools?: Record<string, SDKCustomTool>;
140
+ /**
141
+ * Enable transport and stall auto-retry for local agent runs. Defaults to
142
+ * true for headless embedders; set false to surface transport errors on the
143
+ * first failure (legacy SDK behavior).
144
+ */
145
+ enableAgentRetries?: boolean;
146
+ }
147
+ /**
148
+ * Per-send local overrides. Use with `Agent.send(..., { local })`. Agent-level
149
+ * defaults live on {@link LocalAgentOptions} (`Agent.create({ local })`).
150
+ */
151
+ export interface LocalSendOptions {
152
+ /**
153
+ * Expire the currently active persisted run, if any, before starting this
154
+ * message as a new follow-up run. Recovery path for local agents left wedged
155
+ * after a crashed CLI process.
156
+ */
157
+ force?: boolean;
158
+ /**
159
+ * Custom tools for this send only. When set, replaces
160
+ * {@link LocalAgentOptions.customTools} for that run.
161
+ */
162
+ customTools?: Record<string, SDKCustomTool>;
163
+ }
164
+ /**
165
+ * Options that only apply to cloud agents. Exported as a standalone type so
166
+ * users can reference it directly (e.g. `Partial<CloudAgentOptions>`) instead
167
+ * of having to unwrap the optional `cloud` field on `AgentOptions` with
168
+ * `Partial<NonNullable<AgentOptions["cloud"]>>`.
169
+ */
170
+ export interface CloudAgentOptions {
171
+ env?: {
172
+ type: "cloud";
173
+ name?: string;
174
+ } | {
175
+ type: "pool";
176
+ name?: string;
177
+ } | {
178
+ type: "machine";
179
+ name?: string;
180
+ };
181
+ repos?: Array<{
182
+ url: string;
183
+ startingRef?: string;
184
+ prUrl?: string;
185
+ }>;
186
+ workOnCurrentBranch?: boolean;
187
+ autoCreatePR?: boolean;
188
+ skipReviewerRequest?: boolean;
189
+ /**
190
+ * Per-session env vars injected into the cloud agent's shell, e.g. for
191
+ * caller-minted credentials. Encrypted at rest; deleted with the agent.
192
+ */
193
+ envVars?: Record<string, string>;
194
+ }
195
+ export interface CursorAgentPlatformOptions {
196
+ /**
197
+ * Custom {@link LocalAgentStore}. Prefer `local.store` on `Agent.create` /
198
+ * `Agent.resume` unless constructing a platform directly. When omitted, the
199
+ * platform uses built-in SQLite under `stateRoot` — implement
200
+ * {@link LocalAgentStore} only to replace that default path.
201
+ */
202
+ localStore?: LocalAgentStore;
203
+ stateRoot?: string;
204
+ workspaceRef?: string;
205
+ /**
206
+ * When set, custom-store reads filter to agents whose `cwd` matches. Populated
207
+ * from an explicit caller `cwd`; omitted when the caller did not pass one.
208
+ */
209
+ scopedWorkspaceRef?: string;
210
+ /**
211
+ * Internal storage hooks retained for existing advanced callers.
212
+ */
213
+ store?: AgentRunStore;
214
+ checkpointStore?: AgentCheckpointStore;
215
+ eventStore?: RunEventStore;
216
+ eventNotifier?: RunEventNotifier;
217
+ }
218
+ export interface AgentOptions {
219
+ /**
220
+ * Model selection (`{ id, params? }`). Required for local agents; optional
221
+ * for cloud (the server resolves the caller's configured default when
222
+ * omitted). Use `Cursor.models.list()` to discover valid selections.
223
+ */
224
+ model?: ModelSelection;
225
+ apiKey?: string;
226
+ /**
227
+ * Optional human-readable name for the agent, surfaced as the `title` in
228
+ * `Agent.list()` / `Agent.get()`. Cloud agents auto-generate a name from
229
+ * the first prompt when this is omitted; local agents fall back to a
230
+ * generic default.
231
+ */
232
+ name?: string;
233
+ local?: LocalAgentOptions;
234
+ cloud?: CloudAgentOptions;
235
+ mcpServers?: Record<string, McpServerConfig>;
236
+ agents?: Record<string, AgentDefinition>;
237
+ agentId?: string;
238
+ idempotencyKey?: string;
239
+ /** Initial conversation mode for this agent. */
240
+ mode?: AgentModeOption;
241
+ }
242
+ //# sourceMappingURL=options.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"options.d.ts","sourceRoot":"","sources":["../../../src/agent/options.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,oBAAoB,EACpB,aAAa,EACb,gBAAgB,EAChB,aAAa,EACd,MAAM,6BAA6B,CAAC;AACrC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAEpE,wCAAwC;AACxC,MAAM,MAAM,eAAe,GAAG,OAAO,GAAG,MAAM,CAAC;AAE/C,MAAM,WAAW,iBAAiB;IAChC,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,MAAM,QAAQ,GAChB;IACE,GAAG,EAAE,MAAM,CAAC;IACZ,SAAS,CAAC,EAAE,iBAAiB,CAAC;CAC/B,GACD;IACE,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,iBAAiB,CAAC;CAC/B,CAAC;AAEN,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAC;CACrB;AAED,MAAM,MAAM,eAAe,GACvB;IACE,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;IAChB,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC7B,GAAG,CAAC,EAAE,MAAM,CAAC;CACd,GACD;IACE,IAAI,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC;IACtB,GAAG,EAAE,MAAM,CAAC;IACZ,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACjC,IAAI,CAAC,EAAE;QACL,SAAS,EAAE,MAAM,CAAC;QAClB,aAAa,CAAC,EAAE,MAAM,CAAC;QACvB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;KACnB,CAAC;CACH,CAAC;AAEN,MAAM,MAAM,aAAa,GACrB,SAAS,GACT,MAAM,GACN,MAAM,GACN,KAAK,GACL,SAAS,GACT,KAAK,CAAC;AAEV,MAAM,MAAM,gBAAgB,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,IAAI,CAAC;AAChE,MAAM,MAAM,YAAY,GACpB,gBAAgB,GAChB;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,YAAY,CAAA;CAAE,GAC/B,YAAY,EAAE,CAAC;AAEnB,MAAM,MAAM,oBAAoB,GAC5B;IACE,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;CACd,GACD;IACE,IAAI,EAAE,OAAO,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAEN,MAAM,MAAM,mBAAmB,GAC3B,MAAM,GACN,YAAY,GACZ;IACE,OAAO,EAAE,oBAAoB,EAAE,CAAC;IAChC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,iBAAiB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,YAAY,CAAC,CAAC;CAClD,CAAC;AAEN,MAAM,WAAW,oBAAoB;IACnC,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,aAAa;IAC5B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,YAAY,CAAC,CAAC;IAC3C,OAAO,EAAE,CACP,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,YAAY,CAAC,EAClC,OAAO,EAAE,oBAAoB,KAC1B,mBAAmB,GAAG,OAAO,CAAC,mBAAmB,CAAC,CAAC;CACzD;AAED,MAAM,WAAW,cAAc;IAC7B,OAAO,EAAE,OAAO,CAAC;CAClB;AAED,MAAM,WAAW,mBAAmB;IAClC,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,cAAc;IAC7B,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,CAAC,EAAE,mBAAmB,EAAE,CAAC;CAChC;AAED,MAAM,WAAW,wBAAwB;IACvC,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,EAAE,KAAK,CAAC;QACZ,KAAK,EAAE,MAAM,CAAC;QACd,WAAW,CAAC,EAAE,MAAM,CAAC;KACtB,CAAC,CAAC;CACJ;AAED,MAAM,WAAW,YAAY;IAC3B,MAAM,EAAE,mBAAmB,EAAE,CAAC;IAC9B,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED,MAAM,WAAW,aAAa;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,UAAU,CAAC,EAAE,wBAAwB,EAAE,CAAC;IACxC,QAAQ,CAAC,EAAE,YAAY,EAAE,CAAC;CAC3B;AAED,MAAM,WAAW,eAAe;IAC9B,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IAGf,KAAK,CAAC,EAAE,cAAc,GAAG,SAAS,CAAC;IACnC,UAAU,CAAC,EAAE,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC,CAAC;CAE9D;AAED;;;;;GAKG;AACH,MAAM,WAAW,iBAAiB;IAChC,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IACxB;;;;OAIG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;;;;;;OAOG;IACH,KAAK,CAAC,EAAE,eAAe,CAAC;IACxB;;;;;OAKG;IACH,cAAc,CAAC,EAAE,aAAa,EAAE,CAAC;IACjC,cAAc,CAAC,EAAE,cAAc,CAAC;IAChC;;;;;OAKG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,aAAa,CAAC,CAAC;IAC5C;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAC9B;AAED;;;GAGG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;;;OAIG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,aAAa,CAAC,CAAC;CAC7C;AAED;;;;;GAKG;AACH,MAAM,WAAW,iBAAiB;IAChC,GAAG,CAAC,EACA;QAAE,IAAI,EAAE,OAAO,CAAC;QAAC,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,GAChC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,GAC/B;QAAE,IAAI,EAAE,SAAS,CAAC;QAAC,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACvC,KAAK,CAAC,EAAE,KAAK,CAAC;QACZ,GAAG,EAAE,MAAM,CAAC;QACZ,WAAW,CAAC,EAAE,MAAM,CAAC;QACrB,KAAK,CAAC,EAAE,MAAM,CAAC;KAChB,CAAC,CAAC;IACH,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAClC;AAED,MAAM,WAAW,0BAA0B;IACzC;;;;;OAKG;IACH,UAAU,CAAC,EAAE,eAAe,CAAC;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;OAGG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAE5B;;OAEG;IACH,KAAK,CAAC,EAAE,aAAa,CAAC;IACtB,eAAe,CAAC,EAAE,oBAAoB,CAAC;IACvC,UAAU,CAAC,EAAE,aAAa,CAAC;IAC3B,aAAa,CAAC,EAAE,gBAAgB,CAAC;CAClC;AAED,MAAM,WAAW,YAAY;IAC3B;;;;OAIG;IACH,KAAK,CAAC,EAAE,cAAc,CAAC;IACvB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;;OAKG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,iBAAiB,CAAC;IAC1B,KAAK,CAAC,EAAE,iBAAiB,CAAC;IAC1B,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC;IAC7C,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC;IACzC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,gDAAgD;IAChD,IAAI,CAAC,EAAE,eAAe,CAAC;CACxB"}
@@ -0,0 +1,120 @@
1
+ /**
2
+ * Public types and implementations for run event notifiers.
3
+ *
4
+ * These types are inlined to avoid leaking internal runtime package types
5
+ * in the published SDK declaration files.
6
+ */
7
+ /**
8
+ * Opaque resume token for a run event stream.
9
+ *
10
+ * Stores own the format of this token. The default local SQLite and in-memory
11
+ * stores use numeric sequence strings, but SDK callers and custom backends
12
+ * must only persist and pass the token back as an exclusive `afterOffset`.
13
+ */
14
+ export type RunEventOffset = string;
15
+ /**
16
+ * Hint that a run's event log may have new events.
17
+ */
18
+ export interface RunEventHint {
19
+ /**
20
+ * Run whose durable event log may have advanced.
21
+ */
22
+ runId: string;
23
+ /**
24
+ * Latest appended offset known to the publisher. Hints are wakeups only:
25
+ * subscribers must always re-read the durable RunEventStore and must not
26
+ * assume every offset hint arrives exactly once.
27
+ */
28
+ offset: RunEventOffset;
29
+ }
30
+ /**
31
+ * Input for subscribing to run event hints.
32
+ */
33
+ export interface WatchRunEventsInput {
34
+ runId: string;
35
+ signal?: AbortSignal;
36
+ }
37
+ /**
38
+ * Subscription to run event hints.
39
+ */
40
+ export interface RunEventSubscription extends AsyncIterable<RunEventHint> {
41
+ readonly ready?: Promise<void>;
42
+ }
43
+ /**
44
+ * Notifier for publishing and subscribing to run event hints.
45
+ */
46
+ export interface RunEventNotifier {
47
+ /**
48
+ * Publishes a best-effort wakeup after a durable run event append. Notifiers
49
+ * may drop, duplicate, coalesce, or delay hints; correctness must come from
50
+ * replaying the RunEventStore.
51
+ */
52
+ publishRunEventAppended(input: RunEventHint): Promise<void>;
53
+ /**
54
+ * Subscribes to best-effort wakeups for one run. Consumers must tolerate
55
+ * missed hints and use each hint only as a prompt to list durable events.
56
+ * When `ready` is present on the returned subscription, it resolves after
57
+ * the subscription is armed server-side.
58
+ */
59
+ subscribeRunEvents(input: WatchRunEventsInput): RunEventSubscription;
60
+ }
61
+ /**
62
+ * Options for creating a local run event notifier client.
63
+ */
64
+ export interface LocalRunEventNotifierOptions {
65
+ socketPath: string;
66
+ connectTimeoutMs?: number;
67
+ requestTimeoutMs?: number;
68
+ }
69
+ /**
70
+ * Options for starting a local run event notifier server.
71
+ */
72
+ export interface LocalRunEventNotifierServerOptions {
73
+ socketPath: string;
74
+ }
75
+ /**
76
+ * Local run event notifier client that connects to a notifier server via Unix socket.
77
+ *
78
+ * This wrapper class ensures the public API doesn't leak internal implementation types.
79
+ */
80
+ export declare class LocalRunEventNotifier implements RunEventNotifier {
81
+ private readonly impl;
82
+ constructor(options: LocalRunEventNotifierOptions);
83
+ publishRunEventAppended(input: RunEventHint): Promise<void>;
84
+ subscribeRunEvents(input: WatchRunEventsInput): RunEventSubscription;
85
+ }
86
+ /**
87
+ * Local run event notifier server that listens on a Unix socket.
88
+ *
89
+ * This wrapper class ensures the public API doesn't leak internal implementation types.
90
+ */
91
+ export declare class LocalRunEventNotifierServer {
92
+ private readonly impl;
93
+ private constructor();
94
+ static listen(options: LocalRunEventNotifierServerOptions): Promise<LocalRunEventNotifierServer>;
95
+ close(): Promise<void>;
96
+ }
97
+ /**
98
+ * In-memory run event notifier for testing and development.
99
+ *
100
+ * This wrapper class ensures the public API doesn't leak internal implementation types.
101
+ */
102
+ export declare class InMemoryRunEventNotifier implements RunEventNotifier {
103
+ private readonly impl;
104
+ constructor();
105
+ publishRunEventAppended(input: RunEventHint): Promise<void>;
106
+ subscribeRunEvents(input: WatchRunEventsInput): RunEventSubscription;
107
+ }
108
+ /**
109
+ * Creates a local run event notifier client.
110
+ */
111
+ export declare function createLocalRunEventNotifier(options: LocalRunEventNotifierOptions): RunEventNotifier;
112
+ /**
113
+ * Starts a local run event notifier server.
114
+ */
115
+ export declare function startLocalRunEventNotifierServer(options: LocalRunEventNotifierServerOptions): Promise<LocalRunEventNotifierServer>;
116
+ /**
117
+ * Creates an in-memory run event notifier for testing and development.
118
+ */
119
+ export declare function createInMemoryRunEventNotifier(): RunEventNotifier;
120
+ //# sourceMappingURL=run-event-notifier-api.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"run-event-notifier-api.d.ts","sourceRoot":"","sources":["../../../src/agent/run-event-notifier-api.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAWH;;;;;;GAMG;AACH,MAAM,MAAM,cAAc,GAAG,MAAM,CAAC;AAEpC;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,MAAM,EAAE,cAAc,CAAC;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,WAAW,CAAC;CACtB;AAED;;GAEG;AACH,MAAM,WAAW,oBAAqB,SAAQ,aAAa,CAAC,YAAY,CAAC;IACvE,QAAQ,CAAC,KAAK,CAAC,EAAE,OAAO,CAAC,IAAI,CAAC,CAAC;CAChC;AAED;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;;;OAIG;IACH,uBAAuB,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAC5D;;;;;OAKG;IACH,kBAAkB,CAAC,KAAK,EAAE,mBAAmB,GAAG,oBAAoB,CAAC;CACtE;AAED;;GAEG;AACH,MAAM,WAAW,4BAA4B;IAC3C,UAAU,EAAE,MAAM,CAAC;IACnB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B;AAED;;GAEG;AACH,MAAM,WAAW,kCAAkC;IACjD,UAAU,EAAE,MAAM,CAAC;CACpB;AAED;;;;GAIG;AACH,qBAAa,qBAAsB,YAAW,gBAAgB;IAC5D,OAAO,CAAC,QAAQ,CAAC,IAAI,CAA4B;gBAErC,OAAO,EAAE,4BAA4B;IAI3C,uBAAuB,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO,CAAC,IAAI,CAAC;IAIjE,kBAAkB,CAAC,KAAK,EAAE,mBAAmB,GAAG,oBAAoB;CAGrE;AAED;;;;GAIG;AACH,qBAAa,2BAA2B;IACtC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAkC;IAEvD,OAAO;WAIM,MAAM,CACjB,OAAO,EAAE,kCAAkC,GAC1C,OAAO,CAAC,2BAA2B,CAAC;IAKjC,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;CAG7B;AAED;;;;GAIG;AACH,qBAAa,wBAAyB,YAAW,gBAAgB;IAC/D,OAAO,CAAC,QAAQ,CAAC,IAAI,CAA+B;;IAM9C,uBAAuB,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO,CAAC,IAAI,CAAC;IAIjE,kBAAkB,CAAC,KAAK,EAAE,mBAAmB,GAAG,oBAAoB;CAGrE;AAED;;GAEG;AACH,wBAAgB,2BAA2B,CACzC,OAAO,EAAE,4BAA4B,GACpC,gBAAgB,CAElB;AAED;;GAEG;AACH,wBAAgB,gCAAgC,CAC9C,OAAO,EAAE,kCAAkC,GAC1C,OAAO,CAAC,2BAA2B,CAAC,CAEtC;AAED;;GAEG;AACH,wBAAgB,8BAA8B,IAAI,gBAAgB,CAEjE"}