@mangostudio/cli-darwin-arm64 0.1.0 → 0.1.1-canary.10bbcc1
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.
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/README.md +43 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/binary-encoding.d.ts +422 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/binary-encoding.js +444 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/binary-format.d.ts +113 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/binary-format.js +15 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/codegen-info.d.ts +33 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/codegen-info.js +69 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/create-descriptor-set.d.ts +36 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/create-descriptor-set.js +910 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/create-registry-from-desc.d.ts +15 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/create-registry-from-desc.js +264 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/create-registry.d.ts +9 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/create-registry.js +94 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/descriptor-set.d.ts +672 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/descriptor-set.js +15 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/enum.d.ts +35 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/enum.js +15 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/extension-accessor.d.ts +35 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/extension-accessor.js +114 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/extension.d.ts +24 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/extension.js +15 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/field-list.d.ts +27 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/field-list.js +15 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/field.d.ts +314 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/field.js +15 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/any_pb.d.ts +157 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/any_pb.js +273 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/api_pb.d.ts +256 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/api_pb.js +316 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/compiler/plugin_pb.d.ts +271 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/compiler/plugin_pb.js +219 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/descriptor_pb.d.ts +2277 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/descriptor_pb.js +2077 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/duration_pb.d.ts +100 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/duration_pb.js +169 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/empty_pb.d.ts +28 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/empty_pb.js +52 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/field_mask_pb.d.ts +227 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/field_mask_pb.js +311 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/source_context_pb.d.ts +29 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/source_context_pb.js +55 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/struct_pb.d.ts +158 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/struct_pb.js +240 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/timestamp_pb.d.ts +132 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/timestamp_pb.js +213 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/type_pb.d.ts +437 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/type_pb.js +562 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/wrappers_pb.d.ts +267 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/wrappers_pb.js +569 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/varint.d.ts +70 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/google/varint.js +323 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/index.d.ts +42 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/index.js +84 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/is-message.d.ts +22 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/is-message.js +52 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/json-format.d.ts +111 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/json-format.js +15 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/message-type.d.ts +51 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/message-type.js +15 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/message.d.ts +131 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/message.js +129 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/package.json +1 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/assert.d.ts +16 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/assert.js +59 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/binary-format.d.ts +7 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/binary-format.js +431 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/enum.d.ts +27 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/enum.js +94 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/extensions.d.ts +34 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/extensions.js +86 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/feature-set.d.ts +19 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/feature-set.js +120 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/field-list.d.ts +18 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/field-list.js +76 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/field-normalize.d.ts +9 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/field-normalize.js +69 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/field-wrapper.d.ts +25 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/field-wrapper.js +57 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/field.d.ts +16 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/field.js +45 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/json-format.d.ts +2 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/json-format.js +626 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/message-type.d.ts +18 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/message-type.js +50 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/names.d.ts +43 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/names.js +278 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/options-map.d.ts +7 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/options-map.js +15 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/proto-runtime.d.ts +53 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/proto-runtime.js +41 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/reflect.d.ts +9 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/reflect.js +79 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/reify-wkt.d.ts +102 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/reify-wkt.js +172 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/scalars.d.ts +18 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/scalars.js +105 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/text-format.d.ts +4 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/text-format.js +189 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/util-common.d.ts +2 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/util-common.js +237 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/util.d.ts +38 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/private/util.js +15 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto-base64.d.ts +18 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto-base64.js +128 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto-delimited.d.ts +54 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto-delimited.js +155 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto-double.d.ts +5 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto-double.js +29 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto-int64.d.ts +95 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto-int64.js +116 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto2.d.ts +4 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto2.js +53 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto3.d.ts +4 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/proto3.js +56 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/scalar.d.ts +53 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/scalar.js +81 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/service-type.d.ts +96 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/service-type.js +53 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/to-plain-message.d.ts +12 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/to-plain-message.js +72 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/type-registry.d.ts +57 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/cjs/type-registry.js +15 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/binary-encoding.d.ts +422 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/binary-encoding.js +439 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/binary-format.d.ts +113 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/binary-format.js +14 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/codegen-info.d.ts +33 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/codegen-info.js +67 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/create-descriptor-set.d.ts +36 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/create-descriptor-set.js +906 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/create-registry-from-desc.d.ts +15 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/create-registry-from-desc.js +261 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/create-registry.d.ts +9 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/create-registry.js +90 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/descriptor-set.d.ts +672 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/descriptor-set.js +14 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/enum.d.ts +35 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/enum.js +14 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/extension-accessor.d.ts +35 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/extension-accessor.js +107 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/extension.d.ts +24 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/extension.js +14 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/field-list.d.ts +27 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/field-list.js +14 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/field.d.ts +314 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/field.js +14 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/any_pb.d.ts +157 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/any_pb.js +269 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/api_pb.d.ts +256 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/api_pb.js +310 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/compiler/plugin_pb.d.ts +271 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/compiler/plugin_pb.js +212 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/descriptor_pb.d.ts +2277 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/descriptor_pb.js +2041 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/duration_pb.d.ts +100 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/duration_pb.js +165 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/empty_pb.d.ts +28 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/empty_pb.js +48 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/field_mask_pb.d.ts +227 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/field_mask_pb.js +307 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/source_context_pb.d.ts +29 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/source_context_pb.js +51 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/struct_pb.d.ts +158 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/struct_pb.js +234 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/timestamp_pb.d.ts +132 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/timestamp_pb.js +209 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/type_pb.d.ts +437 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/type_pb.js +554 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/wrappers_pb.d.ts +267 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/wrappers_pb.js +557 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/varint.d.ts +70 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/google/varint.js +313 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/index.d.ts +42 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/index.js +43 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/is-message.d.ts +22 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/is-message.js +48 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/json-format.d.ts +111 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/json-format.js +14 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/message-type.d.ts +51 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/message-type.js +14 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/message.d.ts +131 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/message.js +125 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/assert.d.ts +16 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/assert.js +52 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/binary-format.d.ts +7 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/binary-format.js +427 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/enum.d.ts +27 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/enum.js +87 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/extensions.d.ts +34 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/extensions.js +81 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/feature-set.d.ts +19 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/feature-set.js +116 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/field-list.d.ts +18 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/field-list.js +72 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/field-normalize.d.ts +9 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/field-normalize.js +65 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/field-wrapper.d.ts +25 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/field-wrapper.js +53 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/field.d.ts +16 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/field.js +41 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/json-format.d.ts +2 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/json-format.js +623 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/message-type.d.ts +18 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/message-type.js +46 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/names.d.ts +43 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/names.js +269 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/options-map.d.ts +7 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/options-map.js +14 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/proto-runtime.d.ts +53 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/proto-runtime.js +37 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/reflect.d.ts +9 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/reflect.js +74 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/reify-wkt.d.ts +102 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/reify-wkt.js +168 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/scalars.d.ts +18 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/scalars.js +99 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/text-format.d.ts +4 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/text-format.js +184 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/util-common.d.ts +2 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/util-common.js +234 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/util.d.ts +38 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/private/util.js +14 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto-base64.d.ts +18 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto-base64.js +125 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto-delimited.d.ts +54 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto-delimited.js +152 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto-double.d.ts +5 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto-double.js +26 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto-int64.d.ts +95 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto-int64.js +113 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto2.d.ts +4 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto2.js +50 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto3.d.ts +4 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/proto3.js +53 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/scalar.d.ts +53 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/scalar.js +78 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/service-type.d.ts +96 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/service-type.js +50 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/to-plain-message.d.ts +12 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/to-plain-message.js +70 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/type-registry.d.ts +57 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/dist/esm/type-registry.js +14 -0
- package/cursor-sidecar/node_modules/@bufbuild/protobuf/package.json +34 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/README.md +62 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/any-client.d.ts +22 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/any-client.js +34 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/call-options.d.ts +34 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/call-options.js +15 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/callback-client.d.ts +31 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/callback-client.js +116 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/code.d.ts +75 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/code.js +92 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/connect-error.d.ts +90 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/connect-error.js +134 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/context-values.d.ts +34 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/context-values.js +41 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/cors.d.ts +45 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/cors.js +82 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/http-headers.d.ts +36 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/http-headers.js +68 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/implementation.d.ts +165 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/implementation.js +79 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/index.d.ts +22 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/index.js +47 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/interceptor.d.ts +155 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/interceptor.js +27 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/method-type.d.ts +43 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/method-type.js +15 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/package.json +1 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/promise-client.d.ts +49 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/promise-client.js +147 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/async-iterable.d.ts +527 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/async-iterable.js +959 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/compression.d.ts +48 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/compression.js +75 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/content-type-matcher.d.ts +16 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/content-type-matcher.js +43 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/create-method-url.d.ts +17 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/create-method-url.js +36 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/envelope.d.ts +59 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/envelope.js +152 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/index.d.ts +24 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/index.js +93 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/invoke-implementation.d.ts +21 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/invoke-implementation.js +250 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/limit-io.d.ts +24 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/limit-io.js +80 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/normalize.d.ts +12 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/normalize.js +56 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/protocol-handler-factory.d.ts +18 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/protocol-handler-factory.js +15 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/run-call.d.ts +45 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/run-call.js +119 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/serialization.d.ts +104 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/serialization.js +148 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/signals.d.ts +36 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/signals.js +100 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/transport-options.d.ts +98 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/transport-options.js +15 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-fetch.d.ts +35 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-fetch.js +150 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-handler-client.d.ts +7 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-handler-client.js +90 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-handler.d.ts +155 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-handler.js +131 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/universal.d.ts +102 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol/universal.js +78 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/code-string.d.ts +16 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/code-string.js +52 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/content-type.d.ts +40 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/content-type.js +71 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/end-stream.d.ts +44 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/end-stream.js +132 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/error-json.d.ts +36 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/error-json.js +163 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/get-request.d.ts +7 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/get-request.js +68 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/handler-factory.d.ts +6 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/handler-factory.js +281 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/headers.d.ts +12 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/headers.js +28 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/http-status.d.ts +15 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/http-status.js +90 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/index.d.ts +16 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/index.js +81 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/parse-timeout.d.ts +13 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/parse-timeout.js +44 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/query-params.d.ts +8 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/query-params.js +24 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/request-header.d.ts +19 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/request-header.js +70 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/trailer-mux.d.ts +19 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/trailer-mux.js +53 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/transport.d.ts +6 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/transport.js +214 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/validate-response.d.ts +30 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/validate-response.js +72 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/version.d.ts +20 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/version.js +58 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/content-type.d.ts +16 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/content-type.js +38 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/gen/status_pb.d.ts +89 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/gen/status_pb.js +120 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/handler-factory.d.ts +6 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/handler-factory.js +122 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/headers.d.ts +12 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/headers.js +28 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/http-status.d.ts +8 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/http-status.js +46 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/index.d.ts +10 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/index.js +61 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/parse-timeout.d.ts +13 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/parse-timeout.js +53 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/request-header.d.ts +13 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/request-header.js +56 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/trailer-status.d.ts +28 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/trailer-status.js +104 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/transport.d.ts +6 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/transport.js +185 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/validate-response.d.ts +33 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/validate-response.js +75 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/validate-trailer.d.ts +13 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/validate-trailer.js +44 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/content-type.d.ts +19 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/content-type.js +41 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/handler-factory.d.ts +6 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/handler-factory.js +128 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/headers.d.ts +20 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/headers.js +44 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/index.d.ts +8 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/index.js +61 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/request-header.d.ts +13 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/request-header.js +59 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/trailer.d.ts +27 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/trailer.js +71 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/transport.d.ts +6 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/transport.js +238 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/validate-response.d.ts +34 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/validate-response.js +73 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/router-transport.d.ts +13 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/router-transport.js +32 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/router.d.ts +88 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/router.js +83 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/transport.d.ts +20 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/cjs/transport.js +15 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/any-client.d.ts +22 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/any-client.js +31 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/call-options.d.ts +34 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/call-options.js +14 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/callback-client.d.ts +31 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/callback-client.js +113 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/code.d.ts +75 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/code.js +89 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/connect-error.d.ts +90 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/connect-error.js +130 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/context-values.d.ts +34 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/context-values.js +37 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/cors.d.ts +45 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/cors.js +79 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/http-headers.d.ts +36 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/http-headers.js +63 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/implementation.d.ts +165 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/implementation.js +75 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/index.d.ts +22 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/index.js +27 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/interceptor.d.ts +155 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/interceptor.js +24 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/method-type.d.ts +43 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/method-type.js +14 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/promise-client.d.ts +49 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/promise-client.js +139 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/async-iterable.d.ts +527 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/async-iterable.js +937 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/compression.d.ts +48 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/compression.js +71 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/content-type-matcher.d.ts +16 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/content-type-matcher.js +40 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/create-method-url.d.ts +17 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/create-method-url.js +33 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/envelope.d.ts +59 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/envelope.js +145 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/index.d.ts +24 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/index.js +32 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/invoke-implementation.d.ts +21 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/invoke-implementation.js +246 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/limit-io.d.ts +24 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/limit-io.js +75 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/normalize.d.ts +12 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/normalize.js +53 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/protocol-handler-factory.d.ts +18 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/protocol-handler-factory.js +14 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/run-call.d.ts +45 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/run-call.js +115 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/serialization.d.ts +104 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/serialization.js +140 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/signals.d.ts +36 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/signals.js +95 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/transport-options.d.ts +98 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/transport-options.js +14 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/universal-fetch.d.ts +35 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/universal-fetch.js +142 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/universal-handler-client.d.ts +7 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/universal-handler-client.js +87 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/universal-handler.d.ts +155 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/universal-handler.js +125 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/universal.d.ts +102 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol/universal.js +74 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/code-string.d.ts +16 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/code-string.js +48 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/content-type.d.ts +40 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/content-type.js +66 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/end-stream.d.ts +44 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/end-stream.js +126 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/error-json.d.ts +36 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/error-json.js +157 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/get-request.d.ts +7 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/get-request.js +65 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/handler-factory.d.ts +6 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/handler-factory.js +278 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/headers.d.ts +12 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/headers.js +25 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/http-status.d.ts +15 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/http-status.js +86 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/index.d.ts +16 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/index.js +33 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/parse-timeout.d.ts +13 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/parse-timeout.js +41 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/query-params.d.ts +8 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/query-params.js +21 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/request-header.d.ts +19 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/request-header.js +66 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/trailer-mux.d.ts +19 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/trailer-mux.js +49 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/transport.d.ts +6 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/transport.js +211 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/validate-response.d.ts +30 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/validate-response.js +68 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/version.d.ts +20 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-connect/version.js +53 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/content-type.d.ts +16 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/content-type.js +34 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/gen/status_pb.d.ts +89 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/gen/status_pb.js +116 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/handler-factory.d.ts +6 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/handler-factory.js +119 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/headers.d.ts +12 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/headers.js +25 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/http-status.d.ts +8 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/http-status.js +43 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/index.d.ts +10 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/index.js +28 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/parse-timeout.d.ts +13 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/parse-timeout.js +50 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/request-header.d.ts +13 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/request-header.js +52 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/trailer-status.d.ts +28 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/trailer-status.js +99 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/transport.d.ts +6 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/transport.js +182 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/validate-response.d.ts +33 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/validate-response.js +71 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/validate-trailer.d.ts +13 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/validate-trailer.js +41 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/content-type.d.ts +19 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/content-type.js +37 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/handler-factory.d.ts +6 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/handler-factory.js +125 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/headers.d.ts +20 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/headers.js +33 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/index.d.ts +8 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/index.js +26 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/request-header.d.ts +13 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/request-header.js +55 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/trailer.d.ts +27 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/trailer.js +65 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/transport.d.ts +6 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/transport.js +235 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/validate-response.d.ts +34 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/validate-response.js +69 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/router-transport.d.ts +13 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/router-transport.js +29 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/router.d.ts +88 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/router.js +80 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/transport.d.ts +20 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/dist/esm/transport.js +14 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/package.json +75 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/protocol-connect.js +16 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/protocol-grpc-web.js +16 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/protocol-grpc.js +16 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect/protocol.js +16 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/README.md +141 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/compression.d.ts +15 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/compression.js +89 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/connect-node-adapter.d.ts +42 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/connect-node-adapter.js +61 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/connect-transport.d.ts +100 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/connect-transport.js +25 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/grpc-transport.d.ts +96 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/grpc-transport.js +25 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/grpc-web-transport.d.ts +96 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/grpc-web-transport.js +25 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/http2-session-manager.d.ts +146 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/http2-session-manager.js +536 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/index.d.ts +15 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/index.js +36 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-error.d.ts +45 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-error.js +154 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-headers-polyfill.d.ts +1 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-headers-polyfill.js +29 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-transport-options.d.ts +89 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-transport-options.js +58 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-client.d.ts +54 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-client.js +326 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-handler.d.ts +41 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-handler.js +234 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-header.d.ts +19 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-header.js +97 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/cjs/package.json +1 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/compression.d.ts +15 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/compression.js +86 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/connect-node-adapter.d.ts +42 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/connect-node-adapter.js +58 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/connect-transport.d.ts +100 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/connect-transport.js +22 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/grpc-transport.d.ts +96 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/grpc-transport.js +22 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/grpc-web-transport.d.ts +96 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/grpc-web-transport.js +22 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/http2-session-manager.d.ts +146 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/http2-session-manager.js +532 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/index.d.ts +15 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/index.js +23 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-error.d.ts +45 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-error.js +147 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-headers-polyfill.d.ts +1 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-headers-polyfill.js +27 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-transport-options.d.ts +89 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-transport-options.js +58 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-universal-client.d.ts +54 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-universal-client.js +324 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-universal-handler.d.ts +41 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-universal-handler.js +230 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-universal-header.d.ts +19 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/dist/esm/node-universal-header.js +93 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-node/package.json +46 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-web/README.md +54 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/cjs/assert-fetch-api.d.ts +4 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/cjs/assert-fetch-api.js +27 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/cjs/connect-transport.d.ts +68 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/cjs/connect-transport.js +200 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/cjs/grpc-web-transport.d.ts +69 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/cjs/grpc-web-transport.js +247 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/cjs/index.d.ts +4 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/cjs/index.js +20 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/cjs/package.json +1 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/esm/assert-fetch-api.d.ts +4 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/esm/assert-fetch-api.js +24 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/esm/connect-transport.d.ts +68 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/esm/connect-transport.js +197 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/esm/grpc-web-transport.d.ts +69 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/esm/grpc-web-transport.js +244 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/esm/index.d.ts +4 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-web/dist/esm/index.js +15 -0
- package/cursor-sidecar/node_modules/@connectrpc/connect-web/package.json +58 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/LICENSE.md +3 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/README.md +5 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/162.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/174.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/18.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/181.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/19.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/250.js +2 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/250.js.LICENSE.txt +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/284.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/295.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/343.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/400.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/642.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/656.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/690.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/730.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/731.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/745.js +8 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/745.js.LICENSE.txt +30 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/796.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/831.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/856.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/914.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/986.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/996.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/options.d.ts +242 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/options.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/run-event-notifier-api.d.ts +120 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/run-event-notifier-api.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/run-store-public-types.d.ts +183 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/run-store-public-types.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/store/local-agent-record-conversion.d.ts +7 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/store/local-agent-record-conversion.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/store/local-agent-store.d.ts +292 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/store/local-agent-store.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/store/sdk-state-root.d.ts +6 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/store/sdk-state-root.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/store/sqlite-local-agent-store.d.ts +30 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/store/sqlite-local-agent-store.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/usage-types.d.ts +21 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent/usage-types.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent.d.ts +172 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/agent.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/analytics.d.ts +16 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/analytics.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/artifacts.d.ts +6 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/artifacts.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/cloud-agent.d.ts +47 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/cloud-agent.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/cloud-api-client.d.ts +200 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/cloud-api-client.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/cloud-executor.d.ts +14 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/cloud-executor.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/cloud-mcp-utils.d.ts +4 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/cloud-mcp-utils.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/core-adapter.d.ts +2 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/core-adapter.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/custom-tools.d.ts +29 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/custom-tools.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/errors.d.ts +145 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/errors.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/executor-common.d.ts +20 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/executor-common.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/executor-types.d.ts +67 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/executor-types.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/index.d.ts +18 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/index.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/index.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/local-executor.d.ts +21 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/local-executor.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/local-model-validation.d.ts +6 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/local-model-validation.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/messages.d.ts +118 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/messages.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/options.d.ts +242 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/options.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/package.json +3 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/platform.d.ts +73 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/platform.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/prefetched-blobs.d.ts +13 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/prefetched-blobs.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/public-api.d.ts +18 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/public-api.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/run-event-notifier-api.d.ts +120 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/run-event-notifier-api.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/run-event-tailer.d.ts +33 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/run-event-tailer.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/run-interaction-accumulator.d.ts +37 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/run-interaction-accumulator.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/run-store-public-types.d.ts +183 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/run-store-public-types.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/run.d.ts +51 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/run.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/safe-connect-transport.d.ts +9 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/safe-connect-transport.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/safe-node-http-client.d.ts +11 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/safe-node-http-client.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/sdk-config.d.ts +25 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/sdk-config.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/sdk-statsig.d.ts +14 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/sdk-statsig.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/sqlite.d.ts +8 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/sqlite.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/sqlite.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/index.d.ts +7 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/index.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/jsonl-local-agent-store.d.ts +34 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/jsonl-local-agent-store.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/local-agent-record-conversion.d.ts +7 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/local-agent-record-conversion.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/local-agent-store.d.ts +292 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/local-agent-store.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/open-default-local-agent-store.d.ts +4 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/open-default-local-agent-store.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/sdk-local-defaults.d.ts +15 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/sdk-local-defaults.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/sdk-state-root.d.ts +6 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/sdk-state-root.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/sqlite-local-agent-store.d.ts +30 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/sqlite-local-agent-store.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/sqlite-storage-unavailable.d.ts +6 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/store/sqlite-storage-unavailable.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/stubs.d.ts +105 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/stubs.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/subagent-conversion.d.ts +22 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/subagent-conversion.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/tool-call-utils.d.ts +7 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/tool-call-utils.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/transport.d.ts +47 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/transport.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/types/conversation-types.d.ts +12062 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/types/conversation-types.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/types/delta-types.d.ts +2 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/types/delta-types.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/types/tool-call-types.d.ts +2 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/types/tool-call-types.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/usage-types.d.ts +21 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/usage-types.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/utils/conversation-utils.d.ts +3 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/utils/conversation-utils.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/utils/logger.d.ts +12 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/utils/logger.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/utils/message-schemas.d.ts +2 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/utils/message-schemas.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/vendor/cursor-sdk-shared/core-adapter.d.ts +3 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/vendor/cursor-sdk-shared/core-adapter.test.d.ts +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/vendor/cursor-sdk-shared/delta-types.d.ts +19196 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/vendor/cursor-sdk-shared/index.d.ts +4 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/vendor/cursor-sdk-shared/message-schemas.d.ts +105 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/cjs/vendor/cursor-sdk-shared/tool-call-types.d.ts +7894 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/162.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/18.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/181.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/19.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/250.js +2 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/250.js.LICENSE.txt +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/284.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/295.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/343.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/357.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/400.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/642.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/656.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/690.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/730.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/731.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/745.js +8 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/745.js.LICENSE.txt +30 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/831.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/856.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/914.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/986.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/988.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/996.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/options.d.ts +242 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/options.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/run-event-notifier-api.d.ts +120 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/run-event-notifier-api.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/run-store-public-types.d.ts +183 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/run-store-public-types.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/store/local-agent-record-conversion.d.ts +7 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/store/local-agent-record-conversion.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/store/local-agent-store.d.ts +292 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/store/local-agent-store.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/store/sdk-state-root.d.ts +6 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/store/sdk-state-root.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/store/sqlite-local-agent-store.d.ts +30 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/store/sqlite-local-agent-store.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/usage-types.d.ts +21 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent/usage-types.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent.d.ts +172 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/agent.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/analytics.d.ts +16 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/analytics.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/artifacts.d.ts +6 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/artifacts.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/cloud-agent.d.ts +47 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/cloud-agent.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/cloud-api-client.d.ts +200 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/cloud-api-client.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/cloud-executor.d.ts +14 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/cloud-executor.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/cloud-mcp-utils.d.ts +4 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/cloud-mcp-utils.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/core-adapter.d.ts +2 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/core-adapter.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/custom-tools.d.ts +29 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/custom-tools.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/errors.d.ts +145 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/errors.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/executor-common.d.ts +20 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/executor-common.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/executor-types.d.ts +67 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/executor-types.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/index.d.ts +18 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/index.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/index.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/local-executor.d.ts +21 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/local-executor.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/local-model-validation.d.ts +6 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/local-model-validation.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/messages.d.ts +118 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/messages.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/options.d.ts +242 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/options.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/platform.d.ts +73 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/platform.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/prefetched-blobs.d.ts +13 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/prefetched-blobs.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/public-api.d.ts +18 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/public-api.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/run-event-notifier-api.d.ts +120 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/run-event-notifier-api.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/run-event-tailer.d.ts +33 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/run-event-tailer.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/run-interaction-accumulator.d.ts +37 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/run-interaction-accumulator.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/run-store-public-types.d.ts +183 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/run-store-public-types.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/run.d.ts +51 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/run.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/safe-connect-transport.d.ts +9 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/safe-connect-transport.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/safe-node-http-client.d.ts +11 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/safe-node-http-client.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/sdk-config.d.ts +25 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/sdk-config.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/sdk-statsig.d.ts +14 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/sdk-statsig.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/sqlite.d.ts +8 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/sqlite.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/sqlite.js +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/index.d.ts +7 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/index.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/jsonl-local-agent-store.d.ts +34 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/jsonl-local-agent-store.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/local-agent-record-conversion.d.ts +7 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/local-agent-record-conversion.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/local-agent-store.d.ts +292 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/local-agent-store.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/open-default-local-agent-store.d.ts +4 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/open-default-local-agent-store.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/sdk-local-defaults.d.ts +15 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/sdk-local-defaults.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/sdk-state-root.d.ts +6 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/sdk-state-root.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/sqlite-local-agent-store.d.ts +30 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/sqlite-local-agent-store.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/sqlite-storage-unavailable.d.ts +6 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/store/sqlite-storage-unavailable.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/stubs.d.ts +105 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/stubs.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/subagent-conversion.d.ts +22 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/subagent-conversion.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/tool-call-utils.d.ts +7 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/tool-call-utils.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/transport.d.ts +47 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/transport.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/types/conversation-types.d.ts +12062 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/types/conversation-types.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/types/delta-types.d.ts +2 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/types/delta-types.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/types/tool-call-types.d.ts +2 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/types/tool-call-types.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/usage-types.d.ts +21 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/usage-types.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/utils/conversation-utils.d.ts +3 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/utils/conversation-utils.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/utils/logger.d.ts +12 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/utils/logger.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/utils/message-schemas.d.ts +2 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/utils/message-schemas.d.ts.map +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/vendor/cursor-sdk-shared/core-adapter.d.ts +3 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/vendor/cursor-sdk-shared/core-adapter.test.d.ts +1 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/vendor/cursor-sdk-shared/delta-types.d.ts +19196 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/vendor/cursor-sdk-shared/index.d.ts +4 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/vendor/cursor-sdk-shared/message-schemas.d.ts +105 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/dist/esm/vendor/cursor-sdk-shared/tool-call-types.d.ts +7894 -0
- package/cursor-sidecar/node_modules/@cursor/sdk/package.json +119 -0
- package/cursor-sidecar/node_modules/@cursor/sdk-darwin-arm64/README.md +5 -0
- package/cursor-sidecar/node_modules/@cursor/sdk-darwin-arm64/bin/cursorsandbox +0 -0
- package/cursor-sidecar/node_modules/@cursor/sdk-darwin-arm64/bin/rg +0 -0
- package/cursor-sidecar/node_modules/@cursor/sdk-darwin-arm64/package.json +28 -0
- package/cursor-sidecar/node_modules/@fastify/busboy/LICENSE +19 -0
- package/cursor-sidecar/node_modules/@fastify/busboy/README.md +271 -0
- package/cursor-sidecar/node_modules/@fastify/busboy/deps/dicer/LICENSE +19 -0
- package/cursor-sidecar/node_modules/@fastify/busboy/deps/dicer/lib/Dicer.js +213 -0
- package/cursor-sidecar/node_modules/@fastify/busboy/deps/dicer/lib/HeaderParser.js +100 -0
- package/cursor-sidecar/node_modules/@fastify/busboy/deps/dicer/lib/PartStream.js +13 -0
- package/cursor-sidecar/node_modules/@fastify/busboy/deps/dicer/lib/dicer.d.ts +164 -0
- package/cursor-sidecar/node_modules/@fastify/busboy/deps/streamsearch/sbmh.js +228 -0
- package/cursor-sidecar/node_modules/@fastify/busboy/lib/main.d.ts +196 -0
- package/cursor-sidecar/node_modules/@fastify/busboy/lib/main.js +85 -0
- package/cursor-sidecar/node_modules/@fastify/busboy/lib/types/multipart.js +306 -0
- package/cursor-sidecar/node_modules/@fastify/busboy/lib/types/urlencoded.js +190 -0
- package/cursor-sidecar/node_modules/@fastify/busboy/lib/utils/Decoder.js +54 -0
- package/cursor-sidecar/node_modules/@fastify/busboy/lib/utils/basename.js +14 -0
- package/cursor-sidecar/node_modules/@fastify/busboy/lib/utils/decodeText.js +114 -0
- package/cursor-sidecar/node_modules/@fastify/busboy/lib/utils/getLimit.js +16 -0
- package/cursor-sidecar/node_modules/@fastify/busboy/lib/utils/parseParams.js +196 -0
- package/cursor-sidecar/node_modules/@fastify/busboy/package.json +86 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/package.json +15 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/$_StatsigGlobal.d.ts +19 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/$_StatsigGlobal.js +41 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/CacheKey.d.ts +4 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/CacheKey.js +28 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/ClientInterfaces.d.ts +62 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/ClientInterfaces.js +2 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/DataAdapterCore.d.ts +29 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/DataAdapterCore.js +216 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/Diagnostics.d.ts +67 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/Diagnostics.js +100 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/DnsTxtQuery.d.ts +2 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/DnsTxtQuery.js +63 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/DownloadConfigSpecsResponse.d.ts +61 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/DownloadConfigSpecsResponse.js +2 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/ErrorBoundary.d.ts +17 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/ErrorBoundary.js +197 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/EvaluationOptions.d.ts +30 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/EvaluationOptions.js +2 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/EvaluationTypes.d.ts +49 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/EvaluationTypes.js +2 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/EvaluationTypesV2.d.ts +30 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/EvaluationTypesV2.js +2 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/EventBatch.d.ts +8 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/EventBatch.js +14 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/EventLogger.d.ts +48 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/EventLogger.js +349 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/EventRetryConstants.d.ts +7 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/EventRetryConstants.js +12 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/Hashing.d.ts +3 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/Hashing.js +35 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/InitializeResponse.d.ts +66 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/InitializeResponse.js +2 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/Log.d.ts +15 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/Log.js +44 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/MemoKey.d.ts +11 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/MemoKey.js +37 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/NetworkConfig.d.ts +26 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/NetworkConfig.js +23 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/NetworkCore.d.ts +55 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/NetworkCore.js +371 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/NetworkFallbackResolver.d.ts +21 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/NetworkFallbackResolver.js +198 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/OverrideAdapter.d.ts +16 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/OverrideAdapter.js +2 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/ParamStoreTypes.d.ts +65 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/ParamStoreTypes.js +2 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/SDKFlags.d.ts +4 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/SDKFlags.js +13 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/SDKType.d.ts +8 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/SDKType.js +19 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/SafeJs.d.ts +8 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/SafeJs.js +68 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/SessionID.d.ts +20 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/SessionID.js +106 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/SizeOf.d.ts +1 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/SizeOf.js +26 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StableID.d.ts +9 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StableID.js +90 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigClientBase.d.ts +74 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigClientBase.js +207 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigClientEventEmitter.d.ts +100 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigClientEventEmitter.js +6 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigDataAdapter.d.ts +131 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigDataAdapter.js +4 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigEvent.d.ts +28 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigEvent.js +98 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigMetadata.d.ts +18 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigMetadata.js +14 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigOptionsCommon.d.ts +180 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigOptionsCommon.js +16 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigPlugin.d.ts +5 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigPlugin.js +2 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigTypeFactories.d.ts +8 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigTypeFactories.js +57 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigTypes.d.ts +43 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigTypes.js +2 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigUpdateDetails.d.ts +14 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigUpdateDetails.js +17 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigUser.d.ts +24 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StatsigUser.js +25 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StorageProvider.d.ts +17 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/StorageProvider.js +90 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/TypedJsonParse.d.ts +8 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/TypedJsonParse.js +27 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/TypingUtils.d.ts +7 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/TypingUtils.js +12 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/UUID.d.ts +1 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/UUID.js +28 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/UrlConfiguration.d.ts +12 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/UrlConfiguration.js +41 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/VisibilityObserving.d.ts +9 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/VisibilityObserving.js +39 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/__tests__/MockOverrideAdapter.d.ts +16 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/__tests__/MockOverrideAdapter.js +21 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/index.d.ts +47 -0
- package/cursor-sidecar/node_modules/@statsig/client-core/src/index.js +70 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/LICENSE +14 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/README.md +49 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/build/statsig-js-client+session-replay+web-analytics.min.js +2 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/build/statsig-js-client+session-replay.min.js +1 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/build/statsig-js-client+web-analytics.min.js +2 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/build/statsig-js-client.min.js +1 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/package.json +18 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/src/EvaluationResponseDeltas.d.ts +10 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/src/EvaluationResponseDeltas.js +49 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/src/EvaluationStore.d.ts +29 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/src/EvaluationStore.js +175 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/src/InitializeContainer.d.ts +9 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/src/InitializeContainer.js +2 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/src/Network.d.ts +9 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/src/Network.js +74 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/src/ParamStoreGetterFactory.d.ts +3 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/src/ParamStoreGetterFactory.js +74 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/src/StatsigClient.d.ts +244 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/src/StatsigClient.js +418 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/src/StatsigEvaluationsDataAdapter.d.ts +15 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/src/StatsigEvaluationsDataAdapter.js +65 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/src/StatsigOptions.d.ts +42 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/src/StatsigOptions.js +2 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/src/V1InitializeContainer.d.ts +13 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/src/V1InitializeContainer.js +35 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/src/V2InitializeContainer.d.ts +13 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/src/V2InitializeContainer.js +82 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/src/index.d.ts +9 -0
- package/cursor-sidecar/node_modules/@statsig/js-client/src/index.js +25 -0
- package/cursor-sidecar/node_modules/undici/LICENSE +21 -0
- package/cursor-sidecar/node_modules/undici/README.md +443 -0
- package/cursor-sidecar/node_modules/undici/docs/api/Agent.md +80 -0
- package/cursor-sidecar/node_modules/undici/docs/api/BalancedPool.md +99 -0
- package/cursor-sidecar/node_modules/undici/docs/api/CacheStorage.md +30 -0
- package/cursor-sidecar/node_modules/undici/docs/api/Client.md +273 -0
- package/cursor-sidecar/node_modules/undici/docs/api/Connector.md +115 -0
- package/cursor-sidecar/node_modules/undici/docs/api/ContentType.md +57 -0
- package/cursor-sidecar/node_modules/undici/docs/api/Cookies.md +101 -0
- package/cursor-sidecar/node_modules/undici/docs/api/DiagnosticsChannel.md +204 -0
- package/cursor-sidecar/node_modules/undici/docs/api/DispatchInterceptor.md +60 -0
- package/cursor-sidecar/node_modules/undici/docs/api/Dispatcher.md +887 -0
- package/cursor-sidecar/node_modules/undici/docs/api/Errors.md +47 -0
- package/cursor-sidecar/node_modules/undici/docs/api/Fetch.md +27 -0
- package/cursor-sidecar/node_modules/undici/docs/api/MockAgent.md +540 -0
- package/cursor-sidecar/node_modules/undici/docs/api/MockClient.md +77 -0
- package/cursor-sidecar/node_modules/undici/docs/api/MockErrors.md +12 -0
- package/cursor-sidecar/node_modules/undici/docs/api/MockPool.md +547 -0
- package/cursor-sidecar/node_modules/undici/docs/api/Pool.md +84 -0
- package/cursor-sidecar/node_modules/undici/docs/api/PoolStats.md +35 -0
- package/cursor-sidecar/node_modules/undici/docs/api/ProxyAgent.md +126 -0
- package/cursor-sidecar/node_modules/undici/docs/api/RetryHandler.md +108 -0
- package/cursor-sidecar/node_modules/undici/docs/api/WebSocket.md +43 -0
- package/cursor-sidecar/node_modules/undici/docs/api/api-lifecycle.md +62 -0
- package/cursor-sidecar/node_modules/undici/docs/assets/lifecycle-diagram.png +0 -0
- package/cursor-sidecar/node_modules/undici/docs/best-practices/client-certificate.md +64 -0
- package/cursor-sidecar/node_modules/undici/docs/best-practices/mocking-request.md +136 -0
- package/cursor-sidecar/node_modules/undici/docs/best-practices/proxy.md +127 -0
- package/cursor-sidecar/node_modules/undici/docs/best-practices/writing-tests.md +20 -0
- package/cursor-sidecar/node_modules/undici/index-fetch.js +15 -0
- package/cursor-sidecar/node_modules/undici/index.d.ts +3 -0
- package/cursor-sidecar/node_modules/undici/index.js +167 -0
- package/cursor-sidecar/node_modules/undici/lib/agent.js +148 -0
- package/cursor-sidecar/node_modules/undici/lib/api/abort-signal.js +54 -0
- package/cursor-sidecar/node_modules/undici/lib/api/api-connect.js +104 -0
- package/cursor-sidecar/node_modules/undici/lib/api/api-pipeline.js +249 -0
- package/cursor-sidecar/node_modules/undici/lib/api/api-request.js +180 -0
- package/cursor-sidecar/node_modules/undici/lib/api/api-stream.js +220 -0
- package/cursor-sidecar/node_modules/undici/lib/api/api-upgrade.js +105 -0
- package/cursor-sidecar/node_modules/undici/lib/api/index.js +7 -0
- package/cursor-sidecar/node_modules/undici/lib/api/readable.js +322 -0
- package/cursor-sidecar/node_modules/undici/lib/api/util.js +46 -0
- package/cursor-sidecar/node_modules/undici/lib/balanced-pool.js +190 -0
- package/cursor-sidecar/node_modules/undici/lib/cache/cache.js +838 -0
- package/cursor-sidecar/node_modules/undici/lib/cache/cachestorage.js +144 -0
- package/cursor-sidecar/node_modules/undici/lib/cache/symbols.js +5 -0
- package/cursor-sidecar/node_modules/undici/lib/cache/util.js +49 -0
- package/cursor-sidecar/node_modules/undici/lib/client.js +2283 -0
- package/cursor-sidecar/node_modules/undici/lib/compat/dispatcher-weakref.js +48 -0
- package/cursor-sidecar/node_modules/undici/lib/cookies/constants.js +12 -0
- package/cursor-sidecar/node_modules/undici/lib/cookies/index.js +183 -0
- package/cursor-sidecar/node_modules/undici/lib/cookies/parse.js +317 -0
- package/cursor-sidecar/node_modules/undici/lib/cookies/util.js +274 -0
- package/cursor-sidecar/node_modules/undici/lib/core/connect.js +189 -0
- package/cursor-sidecar/node_modules/undici/lib/core/constants.js +118 -0
- package/cursor-sidecar/node_modules/undici/lib/core/errors.js +230 -0
- package/cursor-sidecar/node_modules/undici/lib/core/request.js +499 -0
- package/cursor-sidecar/node_modules/undici/lib/core/symbols.js +63 -0
- package/cursor-sidecar/node_modules/undici/lib/core/util.js +522 -0
- package/cursor-sidecar/node_modules/undici/lib/dispatcher-base.js +192 -0
- package/cursor-sidecar/node_modules/undici/lib/dispatcher.js +19 -0
- package/cursor-sidecar/node_modules/undici/lib/fetch/LICENSE +21 -0
- package/cursor-sidecar/node_modules/undici/lib/fetch/body.js +613 -0
- package/cursor-sidecar/node_modules/undici/lib/fetch/constants.js +151 -0
- package/cursor-sidecar/node_modules/undici/lib/fetch/dataURL.js +627 -0
- package/cursor-sidecar/node_modules/undici/lib/fetch/file.js +344 -0
- package/cursor-sidecar/node_modules/undici/lib/fetch/formdata.js +265 -0
- package/cursor-sidecar/node_modules/undici/lib/fetch/global.js +40 -0
- package/cursor-sidecar/node_modules/undici/lib/fetch/headers.js +593 -0
- package/cursor-sidecar/node_modules/undici/lib/fetch/index.js +2148 -0
- package/cursor-sidecar/node_modules/undici/lib/fetch/request.js +946 -0
- package/cursor-sidecar/node_modules/undici/lib/fetch/response.js +571 -0
- package/cursor-sidecar/node_modules/undici/lib/fetch/symbols.js +10 -0
- package/cursor-sidecar/node_modules/undici/lib/fetch/util.js +1144 -0
- package/cursor-sidecar/node_modules/undici/lib/fetch/webidl.js +646 -0
- package/cursor-sidecar/node_modules/undici/lib/fileapi/encoding.js +290 -0
- package/cursor-sidecar/node_modules/undici/lib/fileapi/filereader.js +344 -0
- package/cursor-sidecar/node_modules/undici/lib/fileapi/progressevent.js +78 -0
- package/cursor-sidecar/node_modules/undici/lib/fileapi/symbols.js +10 -0
- package/cursor-sidecar/node_modules/undici/lib/fileapi/util.js +392 -0
- package/cursor-sidecar/node_modules/undici/lib/global.js +32 -0
- package/cursor-sidecar/node_modules/undici/lib/handler/DecoratorHandler.js +35 -0
- package/cursor-sidecar/node_modules/undici/lib/handler/RedirectHandler.js +221 -0
- package/cursor-sidecar/node_modules/undici/lib/handler/RetryHandler.js +336 -0
- package/cursor-sidecar/node_modules/undici/lib/interceptor/redirectInterceptor.js +21 -0
- package/cursor-sidecar/node_modules/undici/lib/llhttp/constants.d.ts +199 -0
- package/cursor-sidecar/node_modules/undici/lib/llhttp/constants.js +278 -0
- package/cursor-sidecar/node_modules/undici/lib/llhttp/constants.js.map +1 -0
- package/cursor-sidecar/node_modules/undici/lib/llhttp/llhttp-wasm.js +1 -0
- package/cursor-sidecar/node_modules/undici/lib/llhttp/llhttp.wasm +0 -0
- package/cursor-sidecar/node_modules/undici/lib/llhttp/llhttp_simd-wasm.js +1 -0
- package/cursor-sidecar/node_modules/undici/lib/llhttp/llhttp_simd.wasm +0 -0
- package/cursor-sidecar/node_modules/undici/lib/llhttp/utils.d.ts +4 -0
- package/cursor-sidecar/node_modules/undici/lib/llhttp/utils.js +15 -0
- package/cursor-sidecar/node_modules/undici/lib/llhttp/utils.js.map +1 -0
- package/cursor-sidecar/node_modules/undici/lib/llhttp/wasm_build_env.txt +32 -0
- package/cursor-sidecar/node_modules/undici/lib/mock/mock-agent.js +171 -0
- package/cursor-sidecar/node_modules/undici/lib/mock/mock-client.js +59 -0
- package/cursor-sidecar/node_modules/undici/lib/mock/mock-errors.js +17 -0
- package/cursor-sidecar/node_modules/undici/lib/mock/mock-interceptor.js +206 -0
- package/cursor-sidecar/node_modules/undici/lib/mock/mock-pool.js +59 -0
- package/cursor-sidecar/node_modules/undici/lib/mock/mock-symbols.js +23 -0
- package/cursor-sidecar/node_modules/undici/lib/mock/mock-utils.js +351 -0
- package/cursor-sidecar/node_modules/undici/lib/mock/pending-interceptors-formatter.js +40 -0
- package/cursor-sidecar/node_modules/undici/lib/mock/pluralizer.js +29 -0
- package/cursor-sidecar/node_modules/undici/lib/node/fixed-queue.js +117 -0
- package/cursor-sidecar/node_modules/undici/lib/pool-base.js +194 -0
- package/cursor-sidecar/node_modules/undici/lib/pool-stats.js +34 -0
- package/cursor-sidecar/node_modules/undici/lib/pool.js +108 -0
- package/cursor-sidecar/node_modules/undici/lib/proxy-agent.js +189 -0
- package/cursor-sidecar/node_modules/undici/lib/timers.js +97 -0
- package/cursor-sidecar/node_modules/undici/lib/websocket/connection.js +291 -0
- package/cursor-sidecar/node_modules/undici/lib/websocket/constants.js +51 -0
- package/cursor-sidecar/node_modules/undici/lib/websocket/events.js +303 -0
- package/cursor-sidecar/node_modules/undici/lib/websocket/frame.js +73 -0
- package/cursor-sidecar/node_modules/undici/lib/websocket/receiver.js +344 -0
- package/cursor-sidecar/node_modules/undici/lib/websocket/symbols.js +12 -0
- package/cursor-sidecar/node_modules/undici/lib/websocket/util.js +200 -0
- package/cursor-sidecar/node_modules/undici/lib/websocket/websocket.js +641 -0
- package/cursor-sidecar/node_modules/undici/package.json +167 -0
- package/cursor-sidecar/node_modules/undici/types/README.md +6 -0
- package/cursor-sidecar/node_modules/undici/types/agent.d.ts +31 -0
- package/cursor-sidecar/node_modules/undici/types/api.d.ts +43 -0
- package/cursor-sidecar/node_modules/undici/types/balanced-pool.d.ts +18 -0
- package/cursor-sidecar/node_modules/undici/types/cache.d.ts +36 -0
- package/cursor-sidecar/node_modules/undici/types/client.d.ts +97 -0
- package/cursor-sidecar/node_modules/undici/types/connector.d.ts +34 -0
- package/cursor-sidecar/node_modules/undici/types/content-type.d.ts +21 -0
- package/cursor-sidecar/node_modules/undici/types/cookies.d.ts +28 -0
- package/cursor-sidecar/node_modules/undici/types/diagnostics-channel.d.ts +67 -0
- package/cursor-sidecar/node_modules/undici/types/dispatcher.d.ts +241 -0
- package/cursor-sidecar/node_modules/undici/types/errors.d.ts +128 -0
- package/cursor-sidecar/node_modules/undici/types/fetch.d.ts +209 -0
- package/cursor-sidecar/node_modules/undici/types/file.d.ts +39 -0
- package/cursor-sidecar/node_modules/undici/types/filereader.d.ts +54 -0
- package/cursor-sidecar/node_modules/undici/types/formdata.d.ts +108 -0
- package/cursor-sidecar/node_modules/undici/types/global-dispatcher.d.ts +9 -0
- package/cursor-sidecar/node_modules/undici/types/global-origin.d.ts +7 -0
- package/cursor-sidecar/node_modules/undici/types/handlers.d.ts +9 -0
- package/cursor-sidecar/node_modules/undici/types/header.d.ts +4 -0
- package/cursor-sidecar/node_modules/undici/types/index.d.ts +65 -0
- package/cursor-sidecar/node_modules/undici/types/interceptors.d.ts +5 -0
- package/cursor-sidecar/node_modules/undici/types/mock-agent.d.ts +50 -0
- package/cursor-sidecar/node_modules/undici/types/mock-client.d.ts +25 -0
- package/cursor-sidecar/node_modules/undici/types/mock-errors.d.ts +12 -0
- package/cursor-sidecar/node_modules/undici/types/mock-interceptor.d.ts +93 -0
- package/cursor-sidecar/node_modules/undici/types/mock-pool.d.ts +25 -0
- package/cursor-sidecar/node_modules/undici/types/patch.d.ts +71 -0
- package/cursor-sidecar/node_modules/undici/types/pool-stats.d.ts +19 -0
- package/cursor-sidecar/node_modules/undici/types/pool.d.ts +28 -0
- package/cursor-sidecar/node_modules/undici/types/proxy-agent.d.ts +30 -0
- package/cursor-sidecar/node_modules/undici/types/readable.d.ts +61 -0
- package/cursor-sidecar/node_modules/undici/types/retry-handler.d.ts +116 -0
- package/cursor-sidecar/node_modules/undici/types/webidl.d.ts +220 -0
- package/cursor-sidecar/node_modules/undici/types/websocket.d.ts +131 -0
- package/cursor-sidecar/node_modules/zod/LICENSE +21 -0
- package/cursor-sidecar/node_modules/zod/README.md +208 -0
- package/cursor-sidecar/node_modules/zod/index.cjs +33 -0
- package/cursor-sidecar/node_modules/zod/index.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/index.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/index.js +4 -0
- package/cursor-sidecar/node_modules/zod/package.json +118 -0
- package/cursor-sidecar/node_modules/zod/src/index.ts +4 -0
- package/cursor-sidecar/node_modules/zod/src/v3/ZodError.ts +330 -0
- package/cursor-sidecar/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
- package/cursor-sidecar/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
- package/cursor-sidecar/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
- package/cursor-sidecar/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
- package/cursor-sidecar/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
- package/cursor-sidecar/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
- package/cursor-sidecar/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
- package/cursor-sidecar/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
- package/cursor-sidecar/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
- package/cursor-sidecar/node_modules/zod/src/v3/errors.ts +13 -0
- package/cursor-sidecar/node_modules/zod/src/v3/external.ts +6 -0
- package/cursor-sidecar/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
- package/cursor-sidecar/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
- package/cursor-sidecar/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
- package/cursor-sidecar/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
- package/cursor-sidecar/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
- package/cursor-sidecar/node_modules/zod/src/v3/helpers/util.ts +224 -0
- package/cursor-sidecar/node_modules/zod/src/v3/index.ts +4 -0
- package/cursor-sidecar/node_modules/zod/src/v3/locales/en.ts +124 -0
- package/cursor-sidecar/node_modules/zod/src/v3/standard-schema.ts +113 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/array.test.ts +71 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/base.test.ts +29 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/complex.test.ts +56 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/date.test.ts +32 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/default.test.ts +112 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/description.test.ts +33 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/error.test.ts +551 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/function.test.ts +257 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/map.test.ts +110 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/nan.test.ts +21 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/number.test.ts +176 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/object.test.ts +434 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/record.test.ts +171 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/set.test.ts +142 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/string.test.ts +916 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
- package/cursor-sidecar/node_modules/zod/src/v3/tests/void.test.ts +15 -0
- package/cursor-sidecar/node_modules/zod/src/v3/types.ts +5136 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/checks.ts +30 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/coerce.ts +27 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/compat.ts +66 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/errors.ts +75 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/external.ts +50 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/index.ts +5 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/iso.ts +90 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/parse.ts +33 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/schemas.ts +2054 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/assignability.test.ts +210 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/brand.test.ts +63 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/catch.test.ts +252 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/continuability.test.ts +352 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/date.test.ts +31 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/datetime.test.ts +296 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/default.test.ts +313 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +619 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +527 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/file.test.ts +91 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +175 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/function.test.ts +268 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/index.test.ts +829 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +34 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/intersection.test.ts +171 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/json.test.ts +108 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/literal.test.ts +92 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/map.test.ts +196 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +86 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/number.test.ts +247 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/object.test.ts +563 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/optional.test.ts +123 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/partial.test.ts +147 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +127 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/pipe.test.ts +81 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/prefault.test.ts +37 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +298 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/record.test.ts +342 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +356 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/refine.test.ts +532 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/registries.test.ts +204 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/set.test.ts +179 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +57 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +109 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/string.test.ts +881 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +66 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +758 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +2314 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/transform.test.ts +250 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/tuple.test.ts +163 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/union.test.ts +94 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
- package/cursor-sidecar/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
- package/cursor-sidecar/node_modules/zod/src/v4/core/api.ts +1594 -0
- package/cursor-sidecar/node_modules/zod/src/v4/core/checks.ts +1283 -0
- package/cursor-sidecar/node_modules/zod/src/v4/core/config.ts +15 -0
- package/cursor-sidecar/node_modules/zod/src/v4/core/core.ts +134 -0
- package/cursor-sidecar/node_modules/zod/src/v4/core/doc.ts +44 -0
- package/cursor-sidecar/node_modules/zod/src/v4/core/errors.ts +424 -0
- package/cursor-sidecar/node_modules/zod/src/v4/core/function.ts +176 -0
- package/cursor-sidecar/node_modules/zod/src/v4/core/index.ts +15 -0
- package/cursor-sidecar/node_modules/zod/src/v4/core/json-schema.ts +143 -0
- package/cursor-sidecar/node_modules/zod/src/v4/core/parse.ts +94 -0
- package/cursor-sidecar/node_modules/zod/src/v4/core/regexes.ts +135 -0
- package/cursor-sidecar/node_modules/zod/src/v4/core/registries.ts +96 -0
- package/cursor-sidecar/node_modules/zod/src/v4/core/schemas.ts +3842 -0
- package/cursor-sidecar/node_modules/zod/src/v4/core/standard-schema.ts +64 -0
- package/cursor-sidecar/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
- package/cursor-sidecar/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
- package/cursor-sidecar/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
- package/cursor-sidecar/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
- package/cursor-sidecar/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
- package/cursor-sidecar/node_modules/zod/src/v4/core/to-json-schema.ts +977 -0
- package/cursor-sidecar/node_modules/zod/src/v4/core/util.ts +775 -0
- package/cursor-sidecar/node_modules/zod/src/v4/core/versions.ts +5 -0
- package/cursor-sidecar/node_modules/zod/src/v4/core/zsf.ts +323 -0
- package/cursor-sidecar/node_modules/zod/src/v4/index.ts +4 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/ar.ts +125 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/az.ts +121 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/be.ts +184 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/ca.ts +127 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/cs.ts +142 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/de.ts +124 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/en.ts +127 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/eo.ts +125 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/es.ts +125 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/fa.ts +134 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/fi.ts +131 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/fr-CA.ts +126 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/fr.ts +124 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/he.ts +125 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/hu.ts +126 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/id.ts +125 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/index.ts +39 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/it.ts +125 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/ja.ts +122 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/kh.ts +126 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/ko.ts +131 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/mk.ts +127 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/ms.ts +124 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/nl.ts +126 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/no.ts +124 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/ota.ts +125 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/pl.ts +126 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/ps.ts +133 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/pt.ts +123 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/ru.ts +184 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/sl.ts +126 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/sv.ts +127 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/ta.ts +125 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/th.ts +126 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/tr.ts +121 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/ua.ts +126 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/ur.ts +126 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/vi.ts +125 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/zh-CN.ts +123 -0
- package/cursor-sidecar/node_modules/zod/src/v4/locales/zh-TW.ts +125 -0
- package/cursor-sidecar/node_modules/zod/src/v4/mini/checks.ts +32 -0
- package/cursor-sidecar/node_modules/zod/src/v4/mini/coerce.ts +22 -0
- package/cursor-sidecar/node_modules/zod/src/v4/mini/external.ts +40 -0
- package/cursor-sidecar/node_modules/zod/src/v4/mini/index.ts +3 -0
- package/cursor-sidecar/node_modules/zod/src/v4/mini/iso.ts +62 -0
- package/cursor-sidecar/node_modules/zod/src/v4/mini/parse.ts +1 -0
- package/cursor-sidecar/node_modules/zod/src/v4/mini/schemas.ts +1579 -0
- package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
- package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/brand.test.ts +51 -0
- package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
- package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
- package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
- package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/functions.test.ts +43 -0
- package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/index.test.ts +871 -0
- package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
- package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/object.test.ts +185 -0
- package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
- package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +275 -0
- package/cursor-sidecar/node_modules/zod/src/v4/mini/tests/string.test.ts +299 -0
- package/cursor-sidecar/node_modules/zod/src/v4-mini/index.ts +1 -0
- package/cursor-sidecar/node_modules/zod/v3/ZodError.cjs +138 -0
- package/cursor-sidecar/node_modules/zod/v3/ZodError.d.cts +164 -0
- package/cursor-sidecar/node_modules/zod/v3/ZodError.d.ts +164 -0
- package/cursor-sidecar/node_modules/zod/v3/ZodError.js +133 -0
- package/cursor-sidecar/node_modules/zod/v3/errors.cjs +17 -0
- package/cursor-sidecar/node_modules/zod/v3/errors.d.cts +5 -0
- package/cursor-sidecar/node_modules/zod/v3/errors.d.ts +5 -0
- package/cursor-sidecar/node_modules/zod/v3/errors.js +9 -0
- package/cursor-sidecar/node_modules/zod/v3/external.cjs +22 -0
- package/cursor-sidecar/node_modules/zod/v3/external.d.cts +6 -0
- package/cursor-sidecar/node_modules/zod/v3/external.d.ts +6 -0
- package/cursor-sidecar/node_modules/zod/v3/external.js +6 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/enumUtil.js +1 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/errorUtil.js +6 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/parseUtil.js +109 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/partialUtil.js +1 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/typeAliases.js +1 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/util.cjs +137 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/util.d.cts +85 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/util.d.ts +85 -0
- package/cursor-sidecar/node_modules/zod/v3/helpers/util.js +133 -0
- package/cursor-sidecar/node_modules/zod/v3/index.cjs +33 -0
- package/cursor-sidecar/node_modules/zod/v3/index.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v3/index.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v3/index.js +4 -0
- package/cursor-sidecar/node_modules/zod/v3/locales/en.cjs +111 -0
- package/cursor-sidecar/node_modules/zod/v3/locales/en.d.cts +3 -0
- package/cursor-sidecar/node_modules/zod/v3/locales/en.d.ts +3 -0
- package/cursor-sidecar/node_modules/zod/v3/locales/en.js +109 -0
- package/cursor-sidecar/node_modules/zod/v3/standard-schema.cjs +2 -0
- package/cursor-sidecar/node_modules/zod/v3/standard-schema.d.cts +102 -0
- package/cursor-sidecar/node_modules/zod/v3/standard-schema.d.ts +102 -0
- package/cursor-sidecar/node_modules/zod/v3/standard-schema.js +1 -0
- package/cursor-sidecar/node_modules/zod/v3/types.cjs +3775 -0
- package/cursor-sidecar/node_modules/zod/v3/types.d.cts +1031 -0
- package/cursor-sidecar/node_modules/zod/v3/types.d.ts +1031 -0
- package/cursor-sidecar/node_modules/zod/v3/types.js +3693 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/checks.cjs +32 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/checks.d.cts +1 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/checks.d.ts +1 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/checks.js +1 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/coerce.cjs +47 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/coerce.d.cts +17 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/coerce.d.ts +17 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/coerce.js +17 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/compat.cjs +57 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/compat.d.cts +46 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/compat.d.ts +46 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/compat.js +27 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/errors.cjs +67 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/errors.d.cts +30 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/errors.d.ts +30 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/errors.js +41 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/external.cjs +70 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/external.d.cts +13 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/external.d.ts +13 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/external.js +18 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/index.cjs +33 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/index.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/index.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/index.js +4 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/iso.cjs +60 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/iso.d.cts +22 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/iso.d.ts +22 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/iso.js +30 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/parse.cjs +32 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/parse.d.cts +23 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/parse.d.ts +23 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/parse.js +6 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/schemas.cjs +1109 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/schemas.d.cts +630 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/schemas.d.ts +630 -0
- package/cursor-sidecar/node_modules/zod/v4/classic/schemas.js +1006 -0
- package/cursor-sidecar/node_modules/zod/v4/core/api.cjs +1039 -0
- package/cursor-sidecar/node_modules/zod/v4/core/api.d.cts +284 -0
- package/cursor-sidecar/node_modules/zod/v4/core/api.d.ts +284 -0
- package/cursor-sidecar/node_modules/zod/v4/core/api.js +906 -0
- package/cursor-sidecar/node_modules/zod/v4/core/checks.cjs +591 -0
- package/cursor-sidecar/node_modules/zod/v4/core/checks.d.cts +278 -0
- package/cursor-sidecar/node_modules/zod/v4/core/checks.d.ts +278 -0
- package/cursor-sidecar/node_modules/zod/v4/core/checks.js +565 -0
- package/cursor-sidecar/node_modules/zod/v4/core/core.cjs +67 -0
- package/cursor-sidecar/node_modules/zod/v4/core/core.d.cts +49 -0
- package/cursor-sidecar/node_modules/zod/v4/core/core.d.ts +49 -0
- package/cursor-sidecar/node_modules/zod/v4/core/core.js +61 -0
- package/cursor-sidecar/node_modules/zod/v4/core/doc.cjs +39 -0
- package/cursor-sidecar/node_modules/zod/v4/core/doc.d.cts +14 -0
- package/cursor-sidecar/node_modules/zod/v4/core/doc.d.ts +14 -0
- package/cursor-sidecar/node_modules/zod/v4/core/doc.js +35 -0
- package/cursor-sidecar/node_modules/zod/v4/core/errors.cjs +226 -0
- package/cursor-sidecar/node_modules/zod/v4/core/errors.d.cts +208 -0
- package/cursor-sidecar/node_modules/zod/v4/core/errors.d.ts +208 -0
- package/cursor-sidecar/node_modules/zod/v4/core/errors.js +195 -0
- package/cursor-sidecar/node_modules/zod/v4/core/function.cjs +102 -0
- package/cursor-sidecar/node_modules/zod/v4/core/function.d.cts +52 -0
- package/cursor-sidecar/node_modules/zod/v4/core/function.d.ts +52 -0
- package/cursor-sidecar/node_modules/zod/v4/core/function.js +75 -0
- package/cursor-sidecar/node_modules/zod/v4/core/index.cjs +44 -0
- package/cursor-sidecar/node_modules/zod/v4/core/index.d.cts +15 -0
- package/cursor-sidecar/node_modules/zod/v4/core/index.d.ts +15 -0
- package/cursor-sidecar/node_modules/zod/v4/core/index.js +15 -0
- package/cursor-sidecar/node_modules/zod/v4/core/json-schema.cjs +2 -0
- package/cursor-sidecar/node_modules/zod/v4/core/json-schema.d.cts +87 -0
- package/cursor-sidecar/node_modules/zod/v4/core/json-schema.d.ts +87 -0
- package/cursor-sidecar/node_modules/zod/v4/core/json-schema.js +1 -0
- package/cursor-sidecar/node_modules/zod/v4/core/parse.cjs +87 -0
- package/cursor-sidecar/node_modules/zod/v4/core/parse.d.cts +25 -0
- package/cursor-sidecar/node_modules/zod/v4/core/parse.d.ts +25 -0
- package/cursor-sidecar/node_modules/zod/v4/core/parse.js +57 -0
- package/cursor-sidecar/node_modules/zod/v4/core/regexes.cjs +103 -0
- package/cursor-sidecar/node_modules/zod/v4/core/regexes.d.cts +62 -0
- package/cursor-sidecar/node_modules/zod/v4/core/regexes.d.ts +62 -0
- package/cursor-sidecar/node_modules/zod/v4/core/regexes.js +95 -0
- package/cursor-sidecar/node_modules/zod/v4/core/registries.cjs +56 -0
- package/cursor-sidecar/node_modules/zod/v4/core/registries.d.cts +35 -0
- package/cursor-sidecar/node_modules/zod/v4/core/registries.d.ts +35 -0
- package/cursor-sidecar/node_modules/zod/v4/core/registries.js +51 -0
- package/cursor-sidecar/node_modules/zod/v4/core/schemas.cjs +1748 -0
- package/cursor-sidecar/node_modules/zod/v4/core/schemas.d.cts +1041 -0
- package/cursor-sidecar/node_modules/zod/v4/core/schemas.d.ts +1041 -0
- package/cursor-sidecar/node_modules/zod/v4/core/schemas.js +1717 -0
- package/cursor-sidecar/node_modules/zod/v4/core/standard-schema.cjs +2 -0
- package/cursor-sidecar/node_modules/zod/v4/core/standard-schema.d.cts +55 -0
- package/cursor-sidecar/node_modules/zod/v4/core/standard-schema.d.ts +55 -0
- package/cursor-sidecar/node_modules/zod/v4/core/standard-schema.js +1 -0
- package/cursor-sidecar/node_modules/zod/v4/core/to-json-schema.cjs +854 -0
- package/cursor-sidecar/node_modules/zod/v4/core/to-json-schema.d.cts +88 -0
- package/cursor-sidecar/node_modules/zod/v4/core/to-json-schema.d.ts +88 -0
- package/cursor-sidecar/node_modules/zod/v4/core/to-json-schema.js +849 -0
- package/cursor-sidecar/node_modules/zod/v4/core/util.cjs +539 -0
- package/cursor-sidecar/node_modules/zod/v4/core/util.d.cts +183 -0
- package/cursor-sidecar/node_modules/zod/v4/core/util.d.ts +183 -0
- package/cursor-sidecar/node_modules/zod/v4/core/util.js +493 -0
- package/cursor-sidecar/node_modules/zod/v4/core/versions.cjs +8 -0
- package/cursor-sidecar/node_modules/zod/v4/core/versions.d.cts +5 -0
- package/cursor-sidecar/node_modules/zod/v4/core/versions.d.ts +5 -0
- package/cursor-sidecar/node_modules/zod/v4/core/versions.js +5 -0
- package/cursor-sidecar/node_modules/zod/v4/index.cjs +22 -0
- package/cursor-sidecar/node_modules/zod/v4/index.d.cts +3 -0
- package/cursor-sidecar/node_modules/zod/v4/index.d.ts +3 -0
- package/cursor-sidecar/node_modules/zod/v4/index.js +3 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ar.cjs +142 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ar.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ar.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ar.js +116 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/az.cjs +141 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/az.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/az.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/az.js +115 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/be.cjs +190 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/be.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/be.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/be.js +164 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ca.cjs +144 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ca.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ca.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ca.js +118 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/cs.cjs +161 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/cs.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/cs.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/cs.js +135 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/de.cjs +142 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/de.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/de.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/de.js +116 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/en.cjs +145 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/en.d.cts +5 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/en.d.ts +5 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/en.js +117 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/eo.cjs +144 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/eo.d.cts +5 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/eo.d.ts +5 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/eo.js +116 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/es.cjs +143 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/es.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/es.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/es.js +117 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/fa.cjs +148 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/fa.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/fa.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/fa.js +122 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/fi.cjs +148 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/fi.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/fi.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/fi.js +122 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/fr-CA.cjs +143 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/fr-CA.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/fr-CA.js +117 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/fr.cjs +142 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/fr.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/fr.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/fr.js +116 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/he.cjs +143 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/he.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/he.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/he.js +117 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/hu.cjs +143 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/hu.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/hu.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/hu.js +117 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/id.cjs +142 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/id.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/id.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/id.js +116 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/index.cjs +84 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/index.d.cts +39 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/index.d.ts +39 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/index.js +39 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/it.cjs +143 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/it.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/it.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/it.js +117 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ja.cjs +141 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ja.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ja.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ja.js +115 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/kh.cjs +143 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/kh.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/kh.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/kh.js +117 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ko.cjs +147 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ko.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ko.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ko.js +121 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/mk.cjs +144 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/mk.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/mk.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/mk.js +118 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ms.cjs +142 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ms.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ms.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ms.js +116 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/nl.cjs +143 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/nl.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/nl.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/nl.js +117 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/no.cjs +142 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/no.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/no.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/no.js +116 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ota.cjs +143 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ota.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ota.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ota.js +117 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/pl.cjs +143 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/pl.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/pl.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/pl.js +117 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ps.cjs +148 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ps.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ps.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ps.js +122 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/pt.cjs +142 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/pt.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/pt.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/pt.js +116 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ru.cjs +190 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ru.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ru.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ru.js +164 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/sl.cjs +143 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/sl.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/sl.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/sl.js +117 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/sv.cjs +144 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/sv.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/sv.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/sv.js +118 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ta.cjs +143 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ta.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ta.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ta.js +117 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/th.cjs +143 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/th.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/th.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/th.js +117 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/tr.cjs +143 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/tr.d.cts +5 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/tr.d.ts +5 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/tr.js +115 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ua.cjs +143 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ua.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ua.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ua.js +117 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ur.cjs +143 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ur.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ur.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/ur.js +117 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/vi.cjs +142 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/vi.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/vi.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/vi.js +116 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/zh-CN.cjs +142 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/zh-CN.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/zh-CN.js +116 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/zh-TW.cjs +143 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/zh-TW.d.cts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
- package/cursor-sidecar/node_modules/zod/v4/locales/zh-TW.js +117 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/checks.cjs +34 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/checks.d.cts +1 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/checks.d.ts +1 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/checks.js +1 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/coerce.cjs +47 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/coerce.d.cts +7 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/coerce.d.ts +7 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/coerce.js +17 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/external.cjs +62 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/external.d.cts +11 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/external.d.ts +11 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/external.js +13 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/index.cjs +32 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/index.d.cts +3 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/index.d.ts +3 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/index.js +3 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/iso.cjs +60 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/iso.d.cts +22 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/iso.d.ts +22 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/iso.js +30 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/parse.cjs +8 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/parse.d.cts +1 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/parse.d.ts +1 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/parse.js +1 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/schemas.cjs +839 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/schemas.d.cts +356 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/schemas.d.ts +356 -0
- package/cursor-sidecar/node_modules/zod/v4/mini/schemas.js +732 -0
- package/cursor-sidecar/node_modules/zod/v4-mini/index.cjs +17 -0
- package/cursor-sidecar/node_modules/zod/v4-mini/index.d.cts +1 -0
- package/cursor-sidecar/node_modules/zod/v4-mini/index.d.ts +1 -0
- package/cursor-sidecar/node_modules/zod/v4-mini/index.js +1 -0
- package/cursor-sidecar/run-agent.mjs +282 -0
- package/cursor-sidecar/sidecar-runtime.mjs +145 -0
- package/mangostudio +0 -0
- package/package.json +2 -2
- package/public/assets/MarkdownContentRenderer-BR_xaZT1.js +0 -4
- package/public/assets/bash-DKfk-jqG.js +0 -1
- package/public/assets/c-6LDlXRu0.js +0 -1
- package/public/assets/cpp-u2b-vpJ9.js +0 -1
- package/public/assets/csharp-Ceix8dHH.js +0 -1
- package/public/assets/css-Dc0OpoBJ.js +0 -1
- package/public/assets/go-PnJdfxiR.js +0 -1
- package/public/assets/html-UIM7GmnP.js +0 -1
- package/public/assets/index-BFmJdqP5.css +0 -2
- package/public/assets/index-BVWRnZBA.js +0 -90
- package/public/assets/java-B8S38LsY.js +0 -1
- package/public/assets/javascript-okWskhVA.js +0 -1
- package/public/assets/json-BjaDPSOc.js +0 -1
- package/public/assets/jsx-DjqxE-UL.js +0 -1
- package/public/assets/logo-Cb9ic_TX.webp +0 -0
- package/public/assets/markdown-YiYqiPes.js +0 -1
- package/public/assets/markdown-parser-B0W8Yv4o.js +0 -64
- package/public/assets/php-D9TzMTdN.js +0 -1
- package/public/assets/powershell-Dvslkh7q.js +0 -1
- package/public/assets/python-DaRRuALo.js +0 -1
- package/public/assets/rolldown-runtime-BYbx6iT9.js +0 -1
- package/public/assets/ruby-DjRoLTaK.js +0 -1
- package/public/assets/rust-CR5Dd4HD.js +0 -1
- package/public/assets/shellscript-Cd3e2TuR.js +0 -1
- package/public/assets/shiki-qzSzbvts.js +0 -2
- package/public/assets/sql-D3oCX4qf.js +0 -1
- package/public/assets/swift-CJSMoxIm.js +0 -1
- package/public/assets/syntax-core-BoMshe5A.js +0 -152
- package/public/assets/syntax-themes-Dq65SZkH.js +0 -1
- package/public/assets/tsx-DcRFScAN.js +0 -1
- package/public/assets/typescript-ButPIGrc.js +0 -1
- package/public/assets/ui-BEql6gkw.js +0 -9
- package/public/assets/vendor-TU_R2f75.js +0 -11
- package/public/assets/vendor-deps-C4ULb-aw.js +0 -4
- package/public/assets/xml-Lpki4g8-.js +0 -1
- package/public/assets/yaml-sdi5CfWK.js +0 -1
- package/public/index.html +0 -46
|
@@ -0,0 +1,444 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Copyright 2021-2024 Buf Technologies, Inc.
|
|
3
|
+
//
|
|
4
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
// you may not use this file except in compliance with the License.
|
|
6
|
+
// You may obtain a copy of the License at
|
|
7
|
+
//
|
|
8
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
//
|
|
10
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
// See the License for the specific language governing permissions and
|
|
14
|
+
// limitations under the License.
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.BinaryReader = exports.BinaryWriter = exports.WireType = void 0;
|
|
17
|
+
const varint_js_1 = require("./google/varint.js");
|
|
18
|
+
const assert_js_1 = require("./private/assert.js");
|
|
19
|
+
const proto_int64_js_1 = require("./proto-int64.js");
|
|
20
|
+
/* eslint-disable prefer-const,no-case-declarations,@typescript-eslint/restrict-plus-operands */
|
|
21
|
+
/**
|
|
22
|
+
* Protobuf binary format wire types.
|
|
23
|
+
*
|
|
24
|
+
* A wire type provides just enough information to find the length of the
|
|
25
|
+
* following value.
|
|
26
|
+
*
|
|
27
|
+
* See https://developers.google.com/protocol-buffers/docs/encoding#structure
|
|
28
|
+
*/
|
|
29
|
+
var WireType;
|
|
30
|
+
(function (WireType) {
|
|
31
|
+
/**
|
|
32
|
+
* Used for int32, int64, uint32, uint64, sint32, sint64, bool, enum
|
|
33
|
+
*/
|
|
34
|
+
WireType[WireType["Varint"] = 0] = "Varint";
|
|
35
|
+
/**
|
|
36
|
+
* Used for fixed64, sfixed64, double.
|
|
37
|
+
* Always 8 bytes with little-endian byte order.
|
|
38
|
+
*/
|
|
39
|
+
WireType[WireType["Bit64"] = 1] = "Bit64";
|
|
40
|
+
/**
|
|
41
|
+
* Used for string, bytes, embedded messages, packed repeated fields
|
|
42
|
+
*
|
|
43
|
+
* Only repeated numeric types (types which use the varint, 32-bit,
|
|
44
|
+
* or 64-bit wire types) can be packed. In proto3, such fields are
|
|
45
|
+
* packed by default.
|
|
46
|
+
*/
|
|
47
|
+
WireType[WireType["LengthDelimited"] = 2] = "LengthDelimited";
|
|
48
|
+
/**
|
|
49
|
+
* Start of a tag-delimited aggregate, such as a proto2 group, or a message
|
|
50
|
+
* in editions with message_encoding = DELIMITED.
|
|
51
|
+
*/
|
|
52
|
+
WireType[WireType["StartGroup"] = 3] = "StartGroup";
|
|
53
|
+
/**
|
|
54
|
+
* End of a tag-delimited aggregate.
|
|
55
|
+
*/
|
|
56
|
+
WireType[WireType["EndGroup"] = 4] = "EndGroup";
|
|
57
|
+
/**
|
|
58
|
+
* Used for fixed32, sfixed32, float.
|
|
59
|
+
* Always 4 bytes with little-endian byte order.
|
|
60
|
+
*/
|
|
61
|
+
WireType[WireType["Bit32"] = 5] = "Bit32";
|
|
62
|
+
})(WireType || (exports.WireType = WireType = {}));
|
|
63
|
+
class BinaryWriter {
|
|
64
|
+
constructor(textEncoder) {
|
|
65
|
+
/**
|
|
66
|
+
* Previous fork states.
|
|
67
|
+
*/
|
|
68
|
+
this.stack = [];
|
|
69
|
+
this.textEncoder = textEncoder !== null && textEncoder !== void 0 ? textEncoder : new TextEncoder();
|
|
70
|
+
this.chunks = [];
|
|
71
|
+
this.buf = [];
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* Return all bytes written and reset this writer.
|
|
75
|
+
*/
|
|
76
|
+
finish() {
|
|
77
|
+
this.chunks.push(new Uint8Array(this.buf)); // flush the buffer
|
|
78
|
+
let len = 0;
|
|
79
|
+
for (let i = 0; i < this.chunks.length; i++)
|
|
80
|
+
len += this.chunks[i].length;
|
|
81
|
+
let bytes = new Uint8Array(len);
|
|
82
|
+
let offset = 0;
|
|
83
|
+
for (let i = 0; i < this.chunks.length; i++) {
|
|
84
|
+
bytes.set(this.chunks[i], offset);
|
|
85
|
+
offset += this.chunks[i].length;
|
|
86
|
+
}
|
|
87
|
+
this.chunks = [];
|
|
88
|
+
return bytes;
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* Start a new fork for length-delimited data like a message
|
|
92
|
+
* or a packed repeated field.
|
|
93
|
+
*
|
|
94
|
+
* Must be joined later with `join()`.
|
|
95
|
+
*/
|
|
96
|
+
fork() {
|
|
97
|
+
this.stack.push({ chunks: this.chunks, buf: this.buf });
|
|
98
|
+
this.chunks = [];
|
|
99
|
+
this.buf = [];
|
|
100
|
+
return this;
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* Join the last fork. Write its length and bytes, then
|
|
104
|
+
* return to the previous state.
|
|
105
|
+
*/
|
|
106
|
+
join() {
|
|
107
|
+
// get chunk of fork
|
|
108
|
+
let chunk = this.finish();
|
|
109
|
+
// restore previous state
|
|
110
|
+
let prev = this.stack.pop();
|
|
111
|
+
if (!prev)
|
|
112
|
+
throw new Error("invalid state, fork stack empty");
|
|
113
|
+
this.chunks = prev.chunks;
|
|
114
|
+
this.buf = prev.buf;
|
|
115
|
+
// write length of chunk as varint
|
|
116
|
+
this.uint32(chunk.byteLength);
|
|
117
|
+
return this.raw(chunk);
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* Writes a tag (field number and wire type).
|
|
121
|
+
*
|
|
122
|
+
* Equivalent to `uint32( (fieldNo << 3 | type) >>> 0 )`.
|
|
123
|
+
*
|
|
124
|
+
* Generated code should compute the tag ahead of time and call `uint32()`.
|
|
125
|
+
*/
|
|
126
|
+
tag(fieldNo, type) {
|
|
127
|
+
return this.uint32(((fieldNo << 3) | type) >>> 0);
|
|
128
|
+
}
|
|
129
|
+
/**
|
|
130
|
+
* Write a chunk of raw bytes.
|
|
131
|
+
*/
|
|
132
|
+
raw(chunk) {
|
|
133
|
+
if (this.buf.length) {
|
|
134
|
+
this.chunks.push(new Uint8Array(this.buf));
|
|
135
|
+
this.buf = [];
|
|
136
|
+
}
|
|
137
|
+
this.chunks.push(chunk);
|
|
138
|
+
return this;
|
|
139
|
+
}
|
|
140
|
+
/**
|
|
141
|
+
* Write a `uint32` value, an unsigned 32 bit varint.
|
|
142
|
+
*/
|
|
143
|
+
uint32(value) {
|
|
144
|
+
(0, assert_js_1.assertUInt32)(value);
|
|
145
|
+
// write value as varint 32, inlined for speed
|
|
146
|
+
while (value > 0x7f) {
|
|
147
|
+
this.buf.push((value & 0x7f) | 0x80);
|
|
148
|
+
value = value >>> 7;
|
|
149
|
+
}
|
|
150
|
+
this.buf.push(value);
|
|
151
|
+
return this;
|
|
152
|
+
}
|
|
153
|
+
/**
|
|
154
|
+
* Write a `int32` value, a signed 32 bit varint.
|
|
155
|
+
*/
|
|
156
|
+
int32(value) {
|
|
157
|
+
(0, assert_js_1.assertInt32)(value);
|
|
158
|
+
(0, varint_js_1.varint32write)(value, this.buf);
|
|
159
|
+
return this;
|
|
160
|
+
}
|
|
161
|
+
/**
|
|
162
|
+
* Write a `bool` value, a variant.
|
|
163
|
+
*/
|
|
164
|
+
bool(value) {
|
|
165
|
+
this.buf.push(value ? 1 : 0);
|
|
166
|
+
return this;
|
|
167
|
+
}
|
|
168
|
+
/**
|
|
169
|
+
* Write a `bytes` value, length-delimited arbitrary data.
|
|
170
|
+
*/
|
|
171
|
+
bytes(value) {
|
|
172
|
+
this.uint32(value.byteLength); // write length of chunk as varint
|
|
173
|
+
return this.raw(value);
|
|
174
|
+
}
|
|
175
|
+
/**
|
|
176
|
+
* Write a `string` value, length-delimited data converted to UTF-8 text.
|
|
177
|
+
*/
|
|
178
|
+
string(value) {
|
|
179
|
+
let chunk = this.textEncoder.encode(value);
|
|
180
|
+
this.uint32(chunk.byteLength); // write length of chunk as varint
|
|
181
|
+
return this.raw(chunk);
|
|
182
|
+
}
|
|
183
|
+
/**
|
|
184
|
+
* Write a `float` value, 32-bit floating point number.
|
|
185
|
+
*/
|
|
186
|
+
float(value) {
|
|
187
|
+
(0, assert_js_1.assertFloat32)(value);
|
|
188
|
+
let chunk = new Uint8Array(4);
|
|
189
|
+
new DataView(chunk.buffer).setFloat32(0, value, true);
|
|
190
|
+
return this.raw(chunk);
|
|
191
|
+
}
|
|
192
|
+
/**
|
|
193
|
+
* Write a `double` value, a 64-bit floating point number.
|
|
194
|
+
*/
|
|
195
|
+
double(value) {
|
|
196
|
+
let chunk = new Uint8Array(8);
|
|
197
|
+
new DataView(chunk.buffer).setFloat64(0, value, true);
|
|
198
|
+
return this.raw(chunk);
|
|
199
|
+
}
|
|
200
|
+
/**
|
|
201
|
+
* Write a `fixed32` value, an unsigned, fixed-length 32-bit integer.
|
|
202
|
+
*/
|
|
203
|
+
fixed32(value) {
|
|
204
|
+
(0, assert_js_1.assertUInt32)(value);
|
|
205
|
+
let chunk = new Uint8Array(4);
|
|
206
|
+
new DataView(chunk.buffer).setUint32(0, value, true);
|
|
207
|
+
return this.raw(chunk);
|
|
208
|
+
}
|
|
209
|
+
/**
|
|
210
|
+
* Write a `sfixed32` value, a signed, fixed-length 32-bit integer.
|
|
211
|
+
*/
|
|
212
|
+
sfixed32(value) {
|
|
213
|
+
(0, assert_js_1.assertInt32)(value);
|
|
214
|
+
let chunk = new Uint8Array(4);
|
|
215
|
+
new DataView(chunk.buffer).setInt32(0, value, true);
|
|
216
|
+
return this.raw(chunk);
|
|
217
|
+
}
|
|
218
|
+
/**
|
|
219
|
+
* Write a `sint32` value, a signed, zigzag-encoded 32-bit varint.
|
|
220
|
+
*/
|
|
221
|
+
sint32(value) {
|
|
222
|
+
(0, assert_js_1.assertInt32)(value);
|
|
223
|
+
// zigzag encode
|
|
224
|
+
value = ((value << 1) ^ (value >> 31)) >>> 0;
|
|
225
|
+
(0, varint_js_1.varint32write)(value, this.buf);
|
|
226
|
+
return this;
|
|
227
|
+
}
|
|
228
|
+
/**
|
|
229
|
+
* Write a `fixed64` value, a signed, fixed-length 64-bit integer.
|
|
230
|
+
*/
|
|
231
|
+
sfixed64(value) {
|
|
232
|
+
let chunk = new Uint8Array(8), view = new DataView(chunk.buffer), tc = proto_int64_js_1.protoInt64.enc(value);
|
|
233
|
+
view.setInt32(0, tc.lo, true);
|
|
234
|
+
view.setInt32(4, tc.hi, true);
|
|
235
|
+
return this.raw(chunk);
|
|
236
|
+
}
|
|
237
|
+
/**
|
|
238
|
+
* Write a `fixed64` value, an unsigned, fixed-length 64 bit integer.
|
|
239
|
+
*/
|
|
240
|
+
fixed64(value) {
|
|
241
|
+
let chunk = new Uint8Array(8), view = new DataView(chunk.buffer), tc = proto_int64_js_1.protoInt64.uEnc(value);
|
|
242
|
+
view.setInt32(0, tc.lo, true);
|
|
243
|
+
view.setInt32(4, tc.hi, true);
|
|
244
|
+
return this.raw(chunk);
|
|
245
|
+
}
|
|
246
|
+
/**
|
|
247
|
+
* Write a `int64` value, a signed 64-bit varint.
|
|
248
|
+
*/
|
|
249
|
+
int64(value) {
|
|
250
|
+
let tc = proto_int64_js_1.protoInt64.enc(value);
|
|
251
|
+
(0, varint_js_1.varint64write)(tc.lo, tc.hi, this.buf);
|
|
252
|
+
return this;
|
|
253
|
+
}
|
|
254
|
+
/**
|
|
255
|
+
* Write a `sint64` value, a signed, zig-zag-encoded 64-bit varint.
|
|
256
|
+
*/
|
|
257
|
+
sint64(value) {
|
|
258
|
+
let tc = proto_int64_js_1.protoInt64.enc(value),
|
|
259
|
+
// zigzag encode
|
|
260
|
+
sign = tc.hi >> 31, lo = (tc.lo << 1) ^ sign, hi = ((tc.hi << 1) | (tc.lo >>> 31)) ^ sign;
|
|
261
|
+
(0, varint_js_1.varint64write)(lo, hi, this.buf);
|
|
262
|
+
return this;
|
|
263
|
+
}
|
|
264
|
+
/**
|
|
265
|
+
* Write a `uint64` value, an unsigned 64-bit varint.
|
|
266
|
+
*/
|
|
267
|
+
uint64(value) {
|
|
268
|
+
let tc = proto_int64_js_1.protoInt64.uEnc(value);
|
|
269
|
+
(0, varint_js_1.varint64write)(tc.lo, tc.hi, this.buf);
|
|
270
|
+
return this;
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
exports.BinaryWriter = BinaryWriter;
|
|
274
|
+
class BinaryReader {
|
|
275
|
+
constructor(buf, textDecoder) {
|
|
276
|
+
this.varint64 = varint_js_1.varint64read; // dirty cast for `this`
|
|
277
|
+
/**
|
|
278
|
+
* Read a `uint32` field, an unsigned 32 bit varint.
|
|
279
|
+
*/
|
|
280
|
+
this.uint32 = varint_js_1.varint32read; // dirty cast for `this` and access to protected `buf`
|
|
281
|
+
this.buf = buf;
|
|
282
|
+
this.len = buf.length;
|
|
283
|
+
this.pos = 0;
|
|
284
|
+
this.view = new DataView(buf.buffer, buf.byteOffset, buf.byteLength);
|
|
285
|
+
this.textDecoder = textDecoder !== null && textDecoder !== void 0 ? textDecoder : new TextDecoder();
|
|
286
|
+
}
|
|
287
|
+
/**
|
|
288
|
+
* Reads a tag - field number and wire type.
|
|
289
|
+
*/
|
|
290
|
+
tag() {
|
|
291
|
+
let tag = this.uint32(), fieldNo = tag >>> 3, wireType = tag & 7;
|
|
292
|
+
if (fieldNo <= 0 || wireType < 0 || wireType > 5)
|
|
293
|
+
throw new Error("illegal tag: field no " + fieldNo + " wire type " + wireType);
|
|
294
|
+
return [fieldNo, wireType];
|
|
295
|
+
}
|
|
296
|
+
/**
|
|
297
|
+
* Skip one element and return the skipped data.
|
|
298
|
+
*
|
|
299
|
+
* When skipping StartGroup, provide the tags field number to check for
|
|
300
|
+
* matching field number in the EndGroup tag.
|
|
301
|
+
*/
|
|
302
|
+
skip(wireType, fieldNo) {
|
|
303
|
+
let start = this.pos;
|
|
304
|
+
switch (wireType) {
|
|
305
|
+
case WireType.Varint:
|
|
306
|
+
while (this.buf[this.pos++] & 0x80) {
|
|
307
|
+
// ignore
|
|
308
|
+
}
|
|
309
|
+
break;
|
|
310
|
+
// eslint-disable-next-line
|
|
311
|
+
// @ts-ignore TS7029: Fallthrough case in switch
|
|
312
|
+
case WireType.Bit64:
|
|
313
|
+
this.pos += 4;
|
|
314
|
+
// eslint-disable-next-line
|
|
315
|
+
// @ts-ignore TS7029: Fallthrough case in switch
|
|
316
|
+
case WireType.Bit32:
|
|
317
|
+
this.pos += 4;
|
|
318
|
+
break;
|
|
319
|
+
case WireType.LengthDelimited:
|
|
320
|
+
let len = this.uint32();
|
|
321
|
+
this.pos += len;
|
|
322
|
+
break;
|
|
323
|
+
case WireType.StartGroup:
|
|
324
|
+
for (;;) {
|
|
325
|
+
const [fn, wt] = this.tag();
|
|
326
|
+
if (wt === WireType.EndGroup) {
|
|
327
|
+
if (fieldNo !== undefined && fn !== fieldNo) {
|
|
328
|
+
throw new Error("invalid end group tag");
|
|
329
|
+
}
|
|
330
|
+
break;
|
|
331
|
+
}
|
|
332
|
+
this.skip(wt, fn);
|
|
333
|
+
}
|
|
334
|
+
break;
|
|
335
|
+
default:
|
|
336
|
+
throw new Error("cant skip wire type " + wireType);
|
|
337
|
+
}
|
|
338
|
+
this.assertBounds();
|
|
339
|
+
return this.buf.subarray(start, this.pos);
|
|
340
|
+
}
|
|
341
|
+
/**
|
|
342
|
+
* Throws error if position in byte array is out of range.
|
|
343
|
+
*/
|
|
344
|
+
assertBounds() {
|
|
345
|
+
if (this.pos > this.len)
|
|
346
|
+
throw new RangeError("premature EOF");
|
|
347
|
+
}
|
|
348
|
+
/**
|
|
349
|
+
* Read a `int32` field, a signed 32 bit varint.
|
|
350
|
+
*/
|
|
351
|
+
int32() {
|
|
352
|
+
return this.uint32() | 0;
|
|
353
|
+
}
|
|
354
|
+
/**
|
|
355
|
+
* Read a `sint32` field, a signed, zigzag-encoded 32-bit varint.
|
|
356
|
+
*/
|
|
357
|
+
sint32() {
|
|
358
|
+
let zze = this.uint32();
|
|
359
|
+
// decode zigzag
|
|
360
|
+
return (zze >>> 1) ^ -(zze & 1);
|
|
361
|
+
}
|
|
362
|
+
/**
|
|
363
|
+
* Read a `int64` field, a signed 64-bit varint.
|
|
364
|
+
*/
|
|
365
|
+
int64() {
|
|
366
|
+
return proto_int64_js_1.protoInt64.dec(...this.varint64());
|
|
367
|
+
}
|
|
368
|
+
/**
|
|
369
|
+
* Read a `uint64` field, an unsigned 64-bit varint.
|
|
370
|
+
*/
|
|
371
|
+
uint64() {
|
|
372
|
+
return proto_int64_js_1.protoInt64.uDec(...this.varint64());
|
|
373
|
+
}
|
|
374
|
+
/**
|
|
375
|
+
* Read a `sint64` field, a signed, zig-zag-encoded 64-bit varint.
|
|
376
|
+
*/
|
|
377
|
+
sint64() {
|
|
378
|
+
let [lo, hi] = this.varint64();
|
|
379
|
+
// decode zig zag
|
|
380
|
+
let s = -(lo & 1);
|
|
381
|
+
lo = ((lo >>> 1) | ((hi & 1) << 31)) ^ s;
|
|
382
|
+
hi = (hi >>> 1) ^ s;
|
|
383
|
+
return proto_int64_js_1.protoInt64.dec(lo, hi);
|
|
384
|
+
}
|
|
385
|
+
/**
|
|
386
|
+
* Read a `bool` field, a variant.
|
|
387
|
+
*/
|
|
388
|
+
bool() {
|
|
389
|
+
let [lo, hi] = this.varint64();
|
|
390
|
+
return lo !== 0 || hi !== 0;
|
|
391
|
+
}
|
|
392
|
+
/**
|
|
393
|
+
* Read a `fixed32` field, an unsigned, fixed-length 32-bit integer.
|
|
394
|
+
*/
|
|
395
|
+
fixed32() {
|
|
396
|
+
return this.view.getUint32((this.pos += 4) - 4, true);
|
|
397
|
+
}
|
|
398
|
+
/**
|
|
399
|
+
* Read a `sfixed32` field, a signed, fixed-length 32-bit integer.
|
|
400
|
+
*/
|
|
401
|
+
sfixed32() {
|
|
402
|
+
return this.view.getInt32((this.pos += 4) - 4, true);
|
|
403
|
+
}
|
|
404
|
+
/**
|
|
405
|
+
* Read a `fixed64` field, an unsigned, fixed-length 64 bit integer.
|
|
406
|
+
*/
|
|
407
|
+
fixed64() {
|
|
408
|
+
return proto_int64_js_1.protoInt64.uDec(this.sfixed32(), this.sfixed32());
|
|
409
|
+
}
|
|
410
|
+
/**
|
|
411
|
+
* Read a `fixed64` field, a signed, fixed-length 64-bit integer.
|
|
412
|
+
*/
|
|
413
|
+
sfixed64() {
|
|
414
|
+
return proto_int64_js_1.protoInt64.dec(this.sfixed32(), this.sfixed32());
|
|
415
|
+
}
|
|
416
|
+
/**
|
|
417
|
+
* Read a `float` field, 32-bit floating point number.
|
|
418
|
+
*/
|
|
419
|
+
float() {
|
|
420
|
+
return this.view.getFloat32((this.pos += 4) - 4, true);
|
|
421
|
+
}
|
|
422
|
+
/**
|
|
423
|
+
* Read a `double` field, a 64-bit floating point number.
|
|
424
|
+
*/
|
|
425
|
+
double() {
|
|
426
|
+
return this.view.getFloat64((this.pos += 8) - 8, true);
|
|
427
|
+
}
|
|
428
|
+
/**
|
|
429
|
+
* Read a `bytes` field, length-delimited arbitrary data.
|
|
430
|
+
*/
|
|
431
|
+
bytes() {
|
|
432
|
+
let len = this.uint32(), start = this.pos;
|
|
433
|
+
this.pos += len;
|
|
434
|
+
this.assertBounds();
|
|
435
|
+
return this.buf.subarray(start, start + len);
|
|
436
|
+
}
|
|
437
|
+
/**
|
|
438
|
+
* Read a `string` field, length-delimited data converted to UTF-8 text.
|
|
439
|
+
*/
|
|
440
|
+
string() {
|
|
441
|
+
return this.textDecoder.decode(this.bytes());
|
|
442
|
+
}
|
|
443
|
+
}
|
|
444
|
+
exports.BinaryReader = BinaryReader;
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import type { Message } from "./message.js";
|
|
2
|
+
import type { IBinaryReader, IBinaryWriter, WireType } from "./binary-encoding.js";
|
|
3
|
+
import type { FieldInfo } from "./field.js";
|
|
4
|
+
/**
|
|
5
|
+
* BinaryFormat is the contract for serializing messages to and from binary
|
|
6
|
+
* data. Implementations may be specific to a proto syntax, and can be
|
|
7
|
+
* reflection based, or delegate to speed optimized generated code.
|
|
8
|
+
*/
|
|
9
|
+
export interface BinaryFormat {
|
|
10
|
+
/**
|
|
11
|
+
* Provide options for parsing binary data.
|
|
12
|
+
*/
|
|
13
|
+
makeReadOptions(options?: Partial<BinaryReadOptions>): Readonly<BinaryReadOptions>;
|
|
14
|
+
/**
|
|
15
|
+
* Provide options for serializing binary data.
|
|
16
|
+
*/
|
|
17
|
+
makeWriteOptions(options?: Partial<BinaryWriteOptions>): Readonly<BinaryWriteOptions>;
|
|
18
|
+
/**
|
|
19
|
+
* Parse a message from binary data, merging fields.
|
|
20
|
+
*
|
|
21
|
+
* Supports two message encodings:
|
|
22
|
+
* - length-prefixed: delimitedMessageEncoding is false or omitted, and
|
|
23
|
+
* lengthOrEndTagFieldNo is the expected length of the message in the reader.
|
|
24
|
+
* - delimited: delimitedMessageEncoding is true, and lengthOrEndTagFieldNo is
|
|
25
|
+
* the field number in a tag with wire type end-group signalling the end of
|
|
26
|
+
* the message in the reader.
|
|
27
|
+
*
|
|
28
|
+
* delimitedMessageEncoding is optional for backwards compatibility.
|
|
29
|
+
*/
|
|
30
|
+
readMessage(message: Message, reader: IBinaryReader, lengthOrEndTagFieldNo: number, options: BinaryReadOptions, delimitedMessageEncoding?: boolean): void;
|
|
31
|
+
/**
|
|
32
|
+
* Parse a field from binary data, and store it in the given target.
|
|
33
|
+
*
|
|
34
|
+
* The target must be an initialized message object, with oneof groups,
|
|
35
|
+
* repeated fields and maps already present.
|
|
36
|
+
*/
|
|
37
|
+
readField(target: Record<string, any>, // eslint-disable-line @typescript-eslint/no-explicit-any -- `any` is the best choice for dynamic access
|
|
38
|
+
reader: IBinaryReader, field: FieldInfo, wireType: WireType, options: BinaryReadOptions): void;
|
|
39
|
+
/**
|
|
40
|
+
* Serialize a message to binary data.
|
|
41
|
+
*/
|
|
42
|
+
writeMessage(message: Message, writer: IBinaryWriter, options: BinaryWriteOptions): void;
|
|
43
|
+
/**
|
|
44
|
+
* Serialize a field value to binary data.
|
|
45
|
+
*
|
|
46
|
+
* The value must be an array for repeated fields, a record object for map
|
|
47
|
+
* fields. Only selected oneof fields should be passed to this method.
|
|
48
|
+
*/
|
|
49
|
+
writeField(field: FieldInfo, value: any, // eslint-disable-line @typescript-eslint/no-explicit-any -- `any` is the best choice for dynamic access
|
|
50
|
+
writer: IBinaryWriter, options: BinaryWriteOptions): void;
|
|
51
|
+
/**
|
|
52
|
+
* Retrieve the unknown fields for the given message.
|
|
53
|
+
*
|
|
54
|
+
* Unknown fields are well-formed protocol buffer serialized data for
|
|
55
|
+
* fields that the parserdoes not recognize.
|
|
56
|
+
*
|
|
57
|
+
* For more details see https://developers.google.com/protocol-buffers/docs/proto3#unknowns
|
|
58
|
+
*/
|
|
59
|
+
listUnknownFields(message: Message): ReadonlyArray<{
|
|
60
|
+
no: number;
|
|
61
|
+
wireType: WireType;
|
|
62
|
+
data: Uint8Array;
|
|
63
|
+
}>;
|
|
64
|
+
/**
|
|
65
|
+
* Discard unknown fields for the given message.
|
|
66
|
+
*/
|
|
67
|
+
discardUnknownFields(message: Message): void;
|
|
68
|
+
/**
|
|
69
|
+
* Retrieve the unknown fields for the given message and write them to
|
|
70
|
+
* the given writer. This method is called when a message is serialized,
|
|
71
|
+
* so the fields that are unknown to the parser persist through a round
|
|
72
|
+
* trip.
|
|
73
|
+
*/
|
|
74
|
+
writeUnknownFields(message: Message, writer: IBinaryWriter): void;
|
|
75
|
+
/**
|
|
76
|
+
* Store an unknown field for the given message. The parser will use this
|
|
77
|
+
* method if it does not recognize a field, unless the option
|
|
78
|
+
* `readUnknownFields` has been disabled.
|
|
79
|
+
*/
|
|
80
|
+
onUnknownField(message: Message, no: number, wireType: WireType, data: Uint8Array): void;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* Options for parsing binary data.
|
|
84
|
+
*/
|
|
85
|
+
export interface BinaryReadOptions {
|
|
86
|
+
/**
|
|
87
|
+
* Retain unknown fields during parsing? The default behavior is to retain
|
|
88
|
+
* unknown fields and include them in the serialized output.
|
|
89
|
+
*
|
|
90
|
+
* For more details see https://developers.google.com/protocol-buffers/docs/proto3#unknowns
|
|
91
|
+
*/
|
|
92
|
+
readUnknownFields: boolean;
|
|
93
|
+
/**
|
|
94
|
+
* Allows to use a custom implementation to decode binary data.
|
|
95
|
+
*/
|
|
96
|
+
readerFactory: (bytes: Uint8Array) => IBinaryReader;
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* Options for serializing to binary data.
|
|
100
|
+
*/
|
|
101
|
+
export interface BinaryWriteOptions {
|
|
102
|
+
/**
|
|
103
|
+
* Include unknown fields in the serialized output? The default behavior
|
|
104
|
+
* is to retain unknown fields and include them in the serialized output.
|
|
105
|
+
*
|
|
106
|
+
* For more details see https://developers.google.com/protocol-buffers/docs/proto3#unknowns
|
|
107
|
+
*/
|
|
108
|
+
writeUnknownFields: boolean;
|
|
109
|
+
/**
|
|
110
|
+
* Allows to use a custom implementation to encode binary data.
|
|
111
|
+
*/
|
|
112
|
+
writerFactory: () => IBinaryWriter;
|
|
113
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Copyright 2021-2024 Buf Technologies, Inc.
|
|
3
|
+
//
|
|
4
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
// you may not use this file except in compliance with the License.
|
|
6
|
+
// You may obtain a copy of the License at
|
|
7
|
+
//
|
|
8
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
//
|
|
10
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
// See the License for the specific language governing permissions and
|
|
14
|
+
// limitations under the License.
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { reifyWkt } from "./private/reify-wkt.js";
|
|
2
|
+
import type { DescEnum, DescEnumValue, DescField, DescExtension, DescMessage, DescMethod, DescOneof, DescService } from "./descriptor-set.js";
|
|
3
|
+
import type { ScalarValue } from "./scalar.js";
|
|
4
|
+
import { LongType, ScalarType } from "./scalar.js";
|
|
5
|
+
interface CodegenInfo {
|
|
6
|
+
/**
|
|
7
|
+
* Name of the runtime library NPM package.
|
|
8
|
+
*/
|
|
9
|
+
readonly packageName: string;
|
|
10
|
+
readonly localName: (desc: DescEnum | DescEnumValue | DescMessage | DescExtension | DescOneof | DescField | DescService | DescMethod) => string;
|
|
11
|
+
readonly symbols: Record<RuntimeSymbolName, RuntimeSymbolInfo>;
|
|
12
|
+
readonly getUnwrappedFieldType: (field: DescField | DescExtension) => ScalarType | undefined;
|
|
13
|
+
readonly wktSourceFiles: readonly string[];
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated please use scalarZeroValue instead
|
|
16
|
+
*/
|
|
17
|
+
readonly scalarDefaultValue: (type: ScalarType, longType: LongType) => any;
|
|
18
|
+
readonly scalarZeroValue: <T extends ScalarType, L extends LongType>(type: T, longType: L) => ScalarValue<T, L>;
|
|
19
|
+
/**
|
|
20
|
+
* @deprecated please use reifyWkt from @bufbuild/protoplugin/ecmascript instead
|
|
21
|
+
*/
|
|
22
|
+
readonly reifyWkt: typeof reifyWkt;
|
|
23
|
+
readonly safeIdentifier: (name: string) => string;
|
|
24
|
+
readonly safeObjectProperty: (name: string) => string;
|
|
25
|
+
}
|
|
26
|
+
type RuntimeSymbolName = "proto2" | "proto3" | "Message" | "PartialMessage" | "PlainMessage" | "FieldList" | "MessageType" | "Extension" | "BinaryReadOptions" | "BinaryWriteOptions" | "JsonReadOptions" | "JsonWriteOptions" | "JsonValue" | "JsonObject" | "protoDouble" | "protoInt64" | "ScalarType" | "LongType" | "MethodKind" | "MethodIdempotency" | "IMessageTypeRegistry";
|
|
27
|
+
type RuntimeSymbolInfo = {
|
|
28
|
+
typeOnly: boolean;
|
|
29
|
+
publicImportPath: string;
|
|
30
|
+
privateImportPath: string;
|
|
31
|
+
};
|
|
32
|
+
export declare const codegenInfo: CodegenInfo;
|
|
33
|
+
export {};
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Copyright 2021-2024 Buf Technologies, Inc.
|
|
3
|
+
//
|
|
4
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
// you may not use this file except in compliance with the License.
|
|
6
|
+
// You may obtain a copy of the License at
|
|
7
|
+
//
|
|
8
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
//
|
|
10
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
// See the License for the specific language governing permissions and
|
|
14
|
+
// limitations under the License.
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.codegenInfo = void 0;
|
|
17
|
+
const names_js_1 = require("./private/names.js");
|
|
18
|
+
const field_wrapper_js_1 = require("./private/field-wrapper.js");
|
|
19
|
+
const scalars_js_1 = require("./private/scalars.js");
|
|
20
|
+
const reify_wkt_js_1 = require("./private/reify-wkt.js");
|
|
21
|
+
const packageName = "@bufbuild/protobuf";
|
|
22
|
+
exports.codegenInfo = {
|
|
23
|
+
packageName: "@bufbuild/protobuf",
|
|
24
|
+
localName: names_js_1.localName,
|
|
25
|
+
reifyWkt: reify_wkt_js_1.reifyWkt,
|
|
26
|
+
getUnwrappedFieldType: field_wrapper_js_1.getUnwrappedFieldType,
|
|
27
|
+
scalarDefaultValue: scalars_js_1.scalarZeroValue,
|
|
28
|
+
scalarZeroValue: scalars_js_1.scalarZeroValue,
|
|
29
|
+
safeIdentifier: names_js_1.safeIdentifier,
|
|
30
|
+
safeObjectProperty: names_js_1.safeObjectProperty,
|
|
31
|
+
// prettier-ignore
|
|
32
|
+
symbols: {
|
|
33
|
+
proto2: { typeOnly: false, privateImportPath: "./proto2.js", publicImportPath: packageName },
|
|
34
|
+
proto3: { typeOnly: false, privateImportPath: "./proto3.js", publicImportPath: packageName },
|
|
35
|
+
Message: { typeOnly: false, privateImportPath: "./message.js", publicImportPath: packageName },
|
|
36
|
+
PartialMessage: { typeOnly: true, privateImportPath: "./message.js", publicImportPath: packageName },
|
|
37
|
+
PlainMessage: { typeOnly: true, privateImportPath: "./message.js", publicImportPath: packageName },
|
|
38
|
+
FieldList: { typeOnly: true, privateImportPath: "./field-list.js", publicImportPath: packageName },
|
|
39
|
+
MessageType: { typeOnly: true, privateImportPath: "./message-type.js", publicImportPath: packageName },
|
|
40
|
+
Extension: { typeOnly: true, privateImportPath: "./extension.js", publicImportPath: packageName },
|
|
41
|
+
BinaryReadOptions: { typeOnly: true, privateImportPath: "./binary-format.js", publicImportPath: packageName },
|
|
42
|
+
BinaryWriteOptions: { typeOnly: true, privateImportPath: "./binary-format.js", publicImportPath: packageName },
|
|
43
|
+
JsonReadOptions: { typeOnly: true, privateImportPath: "./json-format.js", publicImportPath: packageName },
|
|
44
|
+
JsonWriteOptions: { typeOnly: true, privateImportPath: "./json-format.js", publicImportPath: packageName },
|
|
45
|
+
JsonValue: { typeOnly: true, privateImportPath: "./json-format.js", publicImportPath: packageName },
|
|
46
|
+
JsonObject: { typeOnly: true, privateImportPath: "./json-format.js", publicImportPath: packageName },
|
|
47
|
+
protoDouble: { typeOnly: false, privateImportPath: "./proto-double.js", publicImportPath: packageName },
|
|
48
|
+
protoInt64: { typeOnly: false, privateImportPath: "./proto-int64.js", publicImportPath: packageName },
|
|
49
|
+
ScalarType: { typeOnly: false, privateImportPath: "./scalar.js", publicImportPath: packageName },
|
|
50
|
+
LongType: { typeOnly: false, privateImportPath: "./scalar.js", publicImportPath: packageName },
|
|
51
|
+
MethodKind: { typeOnly: false, privateImportPath: "./service-type.js", publicImportPath: packageName },
|
|
52
|
+
MethodIdempotency: { typeOnly: false, privateImportPath: "./service-type.js", publicImportPath: packageName },
|
|
53
|
+
IMessageTypeRegistry: { typeOnly: true, privateImportPath: "./type-registry.js", publicImportPath: packageName },
|
|
54
|
+
},
|
|
55
|
+
wktSourceFiles: [
|
|
56
|
+
"google/protobuf/compiler/plugin.proto",
|
|
57
|
+
"google/protobuf/any.proto",
|
|
58
|
+
"google/protobuf/api.proto",
|
|
59
|
+
"google/protobuf/descriptor.proto",
|
|
60
|
+
"google/protobuf/duration.proto",
|
|
61
|
+
"google/protobuf/empty.proto",
|
|
62
|
+
"google/protobuf/field_mask.proto",
|
|
63
|
+
"google/protobuf/source_context.proto",
|
|
64
|
+
"google/protobuf/struct.proto",
|
|
65
|
+
"google/protobuf/timestamp.proto",
|
|
66
|
+
"google/protobuf/type.proto",
|
|
67
|
+
"google/protobuf/wrappers.proto",
|
|
68
|
+
],
|
|
69
|
+
};
|