pi-cursor-sdk 0.1.2 → 0.1.3
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/CHANGELOG.md +6 -0
- package/node_modules/@bufbuild/protobuf/README.md +43 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/binary-encoding.d.ts +422 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/binary-encoding.js +444 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/binary-format.d.ts +113 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/binary-format.js +15 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/codegen-info.d.ts +33 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/codegen-info.js +69 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/create-descriptor-set.d.ts +36 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/create-descriptor-set.js +910 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/create-registry-from-desc.d.ts +15 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/create-registry-from-desc.js +264 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/create-registry.d.ts +9 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/create-registry.js +94 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/descriptor-set.d.ts +672 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/descriptor-set.js +15 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/enum.d.ts +35 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/enum.js +15 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/extension-accessor.d.ts +35 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/extension-accessor.js +114 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/extension.d.ts +24 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/extension.js +15 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/field-list.d.ts +27 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/field-list.js +15 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/field.d.ts +314 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/field.js +15 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/any_pb.d.ts +157 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/any_pb.js +273 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/api_pb.d.ts +256 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/api_pb.js +316 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/compiler/plugin_pb.d.ts +271 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/compiler/plugin_pb.js +219 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/descriptor_pb.d.ts +2277 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/descriptor_pb.js +2077 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/duration_pb.d.ts +100 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/duration_pb.js +169 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/empty_pb.d.ts +28 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/empty_pb.js +52 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/field_mask_pb.d.ts +227 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/field_mask_pb.js +311 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/source_context_pb.d.ts +29 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/source_context_pb.js +55 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/struct_pb.d.ts +158 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/struct_pb.js +240 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/timestamp_pb.d.ts +132 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/timestamp_pb.js +213 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/type_pb.d.ts +437 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/type_pb.js +562 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/wrappers_pb.d.ts +267 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/protobuf/wrappers_pb.js +569 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/varint.d.ts +70 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/google/varint.js +323 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/index.d.ts +42 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/index.js +84 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/is-message.d.ts +22 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/is-message.js +52 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/json-format.d.ts +111 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/json-format.js +15 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/message-type.d.ts +51 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/message-type.js +15 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/message.d.ts +131 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/message.js +129 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/package.json +1 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/assert.d.ts +16 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/assert.js +59 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/binary-format.d.ts +7 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/binary-format.js +431 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/enum.d.ts +27 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/enum.js +94 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/extensions.d.ts +34 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/extensions.js +86 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/feature-set.d.ts +19 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/feature-set.js +120 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/field-list.d.ts +18 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/field-list.js +76 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/field-normalize.d.ts +9 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/field-normalize.js +69 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/field-wrapper.d.ts +25 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/field-wrapper.js +57 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/field.d.ts +16 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/field.js +45 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/json-format.d.ts +2 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/json-format.js +626 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/message-type.d.ts +18 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/message-type.js +50 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/names.d.ts +43 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/names.js +278 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/options-map.d.ts +7 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/options-map.js +15 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/proto-runtime.d.ts +53 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/proto-runtime.js +41 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/reflect.d.ts +9 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/reflect.js +79 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/reify-wkt.d.ts +102 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/reify-wkt.js +172 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/scalars.d.ts +18 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/scalars.js +105 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/text-format.d.ts +4 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/text-format.js +189 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/util-common.d.ts +2 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/util-common.js +237 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/util.d.ts +38 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/private/util.js +15 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/proto-base64.d.ts +18 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/proto-base64.js +128 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/proto-delimited.d.ts +54 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/proto-delimited.js +155 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/proto-double.d.ts +5 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/proto-double.js +29 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/proto-int64.d.ts +95 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/proto-int64.js +116 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/proto2.d.ts +4 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/proto2.js +53 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/proto3.d.ts +4 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/proto3.js +56 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/scalar.d.ts +53 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/scalar.js +81 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/service-type.d.ts +96 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/service-type.js +53 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/to-plain-message.d.ts +12 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/to-plain-message.js +72 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/type-registry.d.ts +57 -0
- package/node_modules/@bufbuild/protobuf/dist/cjs/type-registry.js +15 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/binary-encoding.d.ts +422 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/binary-encoding.js +439 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/binary-format.d.ts +113 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/binary-format.js +14 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/codegen-info.d.ts +33 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/codegen-info.js +67 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/create-descriptor-set.d.ts +36 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/create-descriptor-set.js +906 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/create-registry-from-desc.d.ts +15 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/create-registry-from-desc.js +261 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/create-registry.d.ts +9 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/create-registry.js +90 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/descriptor-set.d.ts +672 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/descriptor-set.js +14 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/enum.d.ts +35 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/enum.js +14 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/extension-accessor.d.ts +35 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/extension-accessor.js +107 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/extension.d.ts +24 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/extension.js +14 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/field-list.d.ts +27 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/field-list.js +14 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/field.d.ts +314 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/field.js +14 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/any_pb.d.ts +157 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/any_pb.js +269 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/api_pb.d.ts +256 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/api_pb.js +310 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/compiler/plugin_pb.d.ts +271 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/compiler/plugin_pb.js +212 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/descriptor_pb.d.ts +2277 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/descriptor_pb.js +2041 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/duration_pb.d.ts +100 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/duration_pb.js +165 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/empty_pb.d.ts +28 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/empty_pb.js +48 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/field_mask_pb.d.ts +227 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/field_mask_pb.js +307 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/source_context_pb.d.ts +29 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/source_context_pb.js +51 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/struct_pb.d.ts +158 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/struct_pb.js +234 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/timestamp_pb.d.ts +132 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/timestamp_pb.js +209 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/type_pb.d.ts +437 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/type_pb.js +554 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/wrappers_pb.d.ts +267 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/protobuf/wrappers_pb.js +557 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/varint.d.ts +70 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/google/varint.js +313 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/index.d.ts +42 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/index.js +43 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/is-message.d.ts +22 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/is-message.js +48 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/json-format.d.ts +111 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/json-format.js +14 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/message-type.d.ts +51 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/message-type.js +14 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/message.d.ts +131 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/message.js +125 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/assert.d.ts +16 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/assert.js +52 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/binary-format.d.ts +7 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/binary-format.js +427 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/enum.d.ts +27 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/enum.js +87 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/extensions.d.ts +34 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/extensions.js +81 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/feature-set.d.ts +19 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/feature-set.js +116 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/field-list.d.ts +18 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/field-list.js +72 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/field-normalize.d.ts +9 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/field-normalize.js +65 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/field-wrapper.d.ts +25 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/field-wrapper.js +53 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/field.d.ts +16 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/field.js +41 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/json-format.d.ts +2 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/json-format.js +623 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/message-type.d.ts +18 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/message-type.js +46 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/names.d.ts +43 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/names.js +269 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/options-map.d.ts +7 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/options-map.js +14 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/proto-runtime.d.ts +53 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/proto-runtime.js +37 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/reflect.d.ts +9 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/reflect.js +74 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/reify-wkt.d.ts +102 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/reify-wkt.js +168 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/scalars.d.ts +18 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/scalars.js +99 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/text-format.d.ts +4 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/text-format.js +184 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/util-common.d.ts +2 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/util-common.js +234 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/util.d.ts +38 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/private/util.js +14 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/proto-base64.d.ts +18 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/proto-base64.js +125 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/proto-delimited.d.ts +54 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/proto-delimited.js +152 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/proto-double.d.ts +5 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/proto-double.js +26 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/proto-int64.d.ts +95 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/proto-int64.js +113 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/proto2.d.ts +4 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/proto2.js +50 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/proto3.d.ts +4 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/proto3.js +53 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/scalar.d.ts +53 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/scalar.js +78 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/service-type.d.ts +96 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/service-type.js +50 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/to-plain-message.d.ts +12 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/to-plain-message.js +70 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/type-registry.d.ts +57 -0
- package/node_modules/@bufbuild/protobuf/dist/esm/type-registry.js +14 -0
- package/node_modules/@bufbuild/protobuf/package.json +34 -0
- package/node_modules/@connectrpc/connect/README.md +62 -0
- package/node_modules/@connectrpc/connect/dist/cjs/any-client.d.ts +22 -0
- package/node_modules/@connectrpc/connect/dist/cjs/any-client.js +34 -0
- package/node_modules/@connectrpc/connect/dist/cjs/call-options.d.ts +34 -0
- package/node_modules/@connectrpc/connect/dist/cjs/call-options.js +15 -0
- package/node_modules/@connectrpc/connect/dist/cjs/callback-client.d.ts +31 -0
- package/node_modules/@connectrpc/connect/dist/cjs/callback-client.js +116 -0
- package/node_modules/@connectrpc/connect/dist/cjs/code.d.ts +75 -0
- package/node_modules/@connectrpc/connect/dist/cjs/code.js +92 -0
- package/node_modules/@connectrpc/connect/dist/cjs/connect-error.d.ts +90 -0
- package/node_modules/@connectrpc/connect/dist/cjs/connect-error.js +134 -0
- package/node_modules/@connectrpc/connect/dist/cjs/context-values.d.ts +34 -0
- package/node_modules/@connectrpc/connect/dist/cjs/context-values.js +41 -0
- package/node_modules/@connectrpc/connect/dist/cjs/cors.d.ts +45 -0
- package/node_modules/@connectrpc/connect/dist/cjs/cors.js +82 -0
- package/node_modules/@connectrpc/connect/dist/cjs/http-headers.d.ts +36 -0
- package/node_modules/@connectrpc/connect/dist/cjs/http-headers.js +68 -0
- package/node_modules/@connectrpc/connect/dist/cjs/implementation.d.ts +165 -0
- package/node_modules/@connectrpc/connect/dist/cjs/implementation.js +79 -0
- package/node_modules/@connectrpc/connect/dist/cjs/index.d.ts +22 -0
- package/node_modules/@connectrpc/connect/dist/cjs/index.js +47 -0
- package/node_modules/@connectrpc/connect/dist/cjs/interceptor.d.ts +155 -0
- package/node_modules/@connectrpc/connect/dist/cjs/interceptor.js +27 -0
- package/node_modules/@connectrpc/connect/dist/cjs/method-type.d.ts +43 -0
- package/node_modules/@connectrpc/connect/dist/cjs/method-type.js +15 -0
- package/node_modules/@connectrpc/connect/dist/cjs/package.json +1 -0
- package/node_modules/@connectrpc/connect/dist/cjs/promise-client.d.ts +49 -0
- package/node_modules/@connectrpc/connect/dist/cjs/promise-client.js +147 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/async-iterable.d.ts +527 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/async-iterable.js +959 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/compression.d.ts +48 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/compression.js +75 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/content-type-matcher.d.ts +16 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/content-type-matcher.js +43 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/create-method-url.d.ts +17 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/create-method-url.js +36 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/envelope.d.ts +59 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/envelope.js +152 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/index.d.ts +24 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/index.js +93 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/invoke-implementation.d.ts +21 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/invoke-implementation.js +250 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/limit-io.d.ts +24 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/limit-io.js +80 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/normalize.d.ts +12 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/normalize.js +56 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/protocol-handler-factory.d.ts +18 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/protocol-handler-factory.js +15 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/run-call.d.ts +45 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/run-call.js +119 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/serialization.d.ts +104 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/serialization.js +148 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/signals.d.ts +36 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/signals.js +100 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/transport-options.d.ts +98 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/transport-options.js +15 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-fetch.d.ts +35 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-fetch.js +150 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-handler-client.d.ts +7 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-handler-client.js +90 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-handler.d.ts +155 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/universal-handler.js +131 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/universal.d.ts +102 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol/universal.js +78 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/code-string.d.ts +16 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/code-string.js +52 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/content-type.d.ts +40 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/content-type.js +71 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/end-stream.d.ts +44 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/end-stream.js +132 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/error-json.d.ts +36 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/error-json.js +163 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/get-request.d.ts +7 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/get-request.js +68 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/handler-factory.d.ts +6 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/handler-factory.js +281 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/headers.d.ts +12 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/headers.js +28 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/http-status.d.ts +15 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/http-status.js +90 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/index.d.ts +16 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/index.js +81 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/parse-timeout.d.ts +13 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/parse-timeout.js +44 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/query-params.d.ts +8 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/query-params.js +24 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/request-header.d.ts +19 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/request-header.js +70 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/trailer-mux.d.ts +19 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/trailer-mux.js +53 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/transport.d.ts +6 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/transport.js +214 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/validate-response.d.ts +30 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/validate-response.js +72 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/version.d.ts +20 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-connect/version.js +58 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/content-type.d.ts +16 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/content-type.js +38 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/gen/status_pb.d.ts +89 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/gen/status_pb.js +120 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/handler-factory.d.ts +6 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/handler-factory.js +122 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/headers.d.ts +12 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/headers.js +28 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/http-status.d.ts +8 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/http-status.js +46 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/index.d.ts +10 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/index.js +61 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/parse-timeout.d.ts +13 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/parse-timeout.js +53 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/request-header.d.ts +13 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/request-header.js +56 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/trailer-status.d.ts +28 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/trailer-status.js +104 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/transport.d.ts +6 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/transport.js +185 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/validate-response.d.ts +33 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/validate-response.js +75 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/validate-trailer.d.ts +13 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc/validate-trailer.js +44 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/content-type.d.ts +19 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/content-type.js +41 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/handler-factory.d.ts +6 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/handler-factory.js +128 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/headers.d.ts +20 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/headers.js +44 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/index.d.ts +8 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/index.js +61 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/request-header.d.ts +13 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/request-header.js +59 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/trailer.d.ts +27 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/trailer.js +71 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/transport.d.ts +6 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/transport.js +238 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/validate-response.d.ts +34 -0
- package/node_modules/@connectrpc/connect/dist/cjs/protocol-grpc-web/validate-response.js +73 -0
- package/node_modules/@connectrpc/connect/dist/cjs/router-transport.d.ts +13 -0
- package/node_modules/@connectrpc/connect/dist/cjs/router-transport.js +32 -0
- package/node_modules/@connectrpc/connect/dist/cjs/router.d.ts +88 -0
- package/node_modules/@connectrpc/connect/dist/cjs/router.js +83 -0
- package/node_modules/@connectrpc/connect/dist/cjs/transport.d.ts +20 -0
- package/node_modules/@connectrpc/connect/dist/cjs/transport.js +15 -0
- package/node_modules/@connectrpc/connect/dist/esm/any-client.d.ts +22 -0
- package/node_modules/@connectrpc/connect/dist/esm/any-client.js +31 -0
- package/node_modules/@connectrpc/connect/dist/esm/call-options.d.ts +34 -0
- package/node_modules/@connectrpc/connect/dist/esm/call-options.js +14 -0
- package/node_modules/@connectrpc/connect/dist/esm/callback-client.d.ts +31 -0
- package/node_modules/@connectrpc/connect/dist/esm/callback-client.js +113 -0
- package/node_modules/@connectrpc/connect/dist/esm/code.d.ts +75 -0
- package/node_modules/@connectrpc/connect/dist/esm/code.js +89 -0
- package/node_modules/@connectrpc/connect/dist/esm/connect-error.d.ts +90 -0
- package/node_modules/@connectrpc/connect/dist/esm/connect-error.js +130 -0
- package/node_modules/@connectrpc/connect/dist/esm/context-values.d.ts +34 -0
- package/node_modules/@connectrpc/connect/dist/esm/context-values.js +37 -0
- package/node_modules/@connectrpc/connect/dist/esm/cors.d.ts +45 -0
- package/node_modules/@connectrpc/connect/dist/esm/cors.js +79 -0
- package/node_modules/@connectrpc/connect/dist/esm/http-headers.d.ts +36 -0
- package/node_modules/@connectrpc/connect/dist/esm/http-headers.js +63 -0
- package/node_modules/@connectrpc/connect/dist/esm/implementation.d.ts +165 -0
- package/node_modules/@connectrpc/connect/dist/esm/implementation.js +75 -0
- package/node_modules/@connectrpc/connect/dist/esm/index.d.ts +22 -0
- package/node_modules/@connectrpc/connect/dist/esm/index.js +27 -0
- package/node_modules/@connectrpc/connect/dist/esm/interceptor.d.ts +155 -0
- package/node_modules/@connectrpc/connect/dist/esm/interceptor.js +24 -0
- package/node_modules/@connectrpc/connect/dist/esm/method-type.d.ts +43 -0
- package/node_modules/@connectrpc/connect/dist/esm/method-type.js +14 -0
- package/node_modules/@connectrpc/connect/dist/esm/promise-client.d.ts +49 -0
- package/node_modules/@connectrpc/connect/dist/esm/promise-client.js +139 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/async-iterable.d.ts +527 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/async-iterable.js +937 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/compression.d.ts +48 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/compression.js +71 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/content-type-matcher.d.ts +16 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/content-type-matcher.js +40 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/create-method-url.d.ts +17 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/create-method-url.js +33 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/envelope.d.ts +59 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/envelope.js +145 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/index.d.ts +24 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/index.js +32 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/invoke-implementation.d.ts +21 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/invoke-implementation.js +246 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/limit-io.d.ts +24 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/limit-io.js +75 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/normalize.d.ts +12 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/normalize.js +53 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/protocol-handler-factory.d.ts +18 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/protocol-handler-factory.js +14 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/run-call.d.ts +45 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/run-call.js +115 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/serialization.d.ts +104 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/serialization.js +140 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/signals.d.ts +36 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/signals.js +95 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/transport-options.d.ts +98 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/transport-options.js +14 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/universal-fetch.d.ts +35 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/universal-fetch.js +142 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/universal-handler-client.d.ts +7 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/universal-handler-client.js +87 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/universal-handler.d.ts +155 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/universal-handler.js +125 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/universal.d.ts +102 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol/universal.js +74 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/code-string.d.ts +16 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/code-string.js +48 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/content-type.d.ts +40 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/content-type.js +66 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/end-stream.d.ts +44 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/end-stream.js +126 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/error-json.d.ts +36 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/error-json.js +157 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/get-request.d.ts +7 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/get-request.js +65 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/handler-factory.d.ts +6 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/handler-factory.js +278 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/headers.d.ts +12 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/headers.js +25 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/http-status.d.ts +15 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/http-status.js +86 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/index.d.ts +16 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/index.js +33 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/parse-timeout.d.ts +13 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/parse-timeout.js +41 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/query-params.d.ts +8 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/query-params.js +21 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/request-header.d.ts +19 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/request-header.js +66 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/trailer-mux.d.ts +19 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/trailer-mux.js +49 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/transport.d.ts +6 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/transport.js +211 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/validate-response.d.ts +30 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/validate-response.js +68 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/version.d.ts +20 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-connect/version.js +53 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/content-type.d.ts +16 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/content-type.js +34 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/gen/status_pb.d.ts +89 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/gen/status_pb.js +116 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/handler-factory.d.ts +6 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/handler-factory.js +119 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/headers.d.ts +12 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/headers.js +25 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/http-status.d.ts +8 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/http-status.js +43 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/index.d.ts +10 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/index.js +28 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/parse-timeout.d.ts +13 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/parse-timeout.js +50 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/request-header.d.ts +13 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/request-header.js +52 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/trailer-status.d.ts +28 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/trailer-status.js +99 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/transport.d.ts +6 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/transport.js +182 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/validate-response.d.ts +33 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/validate-response.js +71 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/validate-trailer.d.ts +13 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc/validate-trailer.js +41 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/content-type.d.ts +19 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/content-type.js +37 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/handler-factory.d.ts +6 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/handler-factory.js +125 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/headers.d.ts +20 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/headers.js +33 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/index.d.ts +8 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/index.js +26 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/request-header.d.ts +13 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/request-header.js +55 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/trailer.d.ts +27 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/trailer.js +65 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/transport.d.ts +6 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/transport.js +235 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/validate-response.d.ts +34 -0
- package/node_modules/@connectrpc/connect/dist/esm/protocol-grpc-web/validate-response.js +69 -0
- package/node_modules/@connectrpc/connect/dist/esm/router-transport.d.ts +13 -0
- package/node_modules/@connectrpc/connect/dist/esm/router-transport.js +29 -0
- package/node_modules/@connectrpc/connect/dist/esm/router.d.ts +88 -0
- package/node_modules/@connectrpc/connect/dist/esm/router.js +80 -0
- package/node_modules/@connectrpc/connect/dist/esm/transport.d.ts +20 -0
- package/node_modules/@connectrpc/connect/dist/esm/transport.js +14 -0
- package/node_modules/@connectrpc/connect/package.json +75 -0
- package/node_modules/@connectrpc/connect/protocol-connect.js +16 -0
- package/node_modules/@connectrpc/connect/protocol-grpc-web.js +16 -0
- package/node_modules/@connectrpc/connect/protocol-grpc.js +16 -0
- package/node_modules/@connectrpc/connect/protocol.js +16 -0
- package/node_modules/@connectrpc/connect-node/README.md +141 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/compression.d.ts +15 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/compression.js +89 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/connect-node-adapter.d.ts +42 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/connect-node-adapter.js +61 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/connect-transport.d.ts +100 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/connect-transport.js +25 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/grpc-transport.d.ts +96 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/grpc-transport.js +25 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/grpc-web-transport.d.ts +96 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/grpc-web-transport.js +25 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/http2-session-manager.d.ts +146 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/http2-session-manager.js +536 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/index.d.ts +15 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/index.js +36 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/node-error.d.ts +45 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/node-error.js +154 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/node-headers-polyfill.d.ts +1 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/node-headers-polyfill.js +29 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/node-transport-options.d.ts +89 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/node-transport-options.js +58 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-client.d.ts +54 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-client.js +326 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-handler.d.ts +41 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-handler.js +234 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-header.d.ts +19 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-header.js +97 -0
- package/node_modules/@connectrpc/connect-node/dist/cjs/package.json +1 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/compression.d.ts +15 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/compression.js +86 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/connect-node-adapter.d.ts +42 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/connect-node-adapter.js +58 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/connect-transport.d.ts +100 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/connect-transport.js +22 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/grpc-transport.d.ts +96 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/grpc-transport.js +22 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/grpc-web-transport.d.ts +96 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/grpc-web-transport.js +22 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/http2-session-manager.d.ts +146 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/http2-session-manager.js +532 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/index.d.ts +15 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/index.js +23 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/node-error.d.ts +45 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/node-error.js +147 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/node-headers-polyfill.d.ts +1 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/node-headers-polyfill.js +27 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/node-transport-options.d.ts +89 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/node-transport-options.js +58 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/node-universal-client.d.ts +54 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/node-universal-client.js +324 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/node-universal-handler.d.ts +41 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/node-universal-handler.js +230 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/node-universal-header.d.ts +19 -0
- package/node_modules/@connectrpc/connect-node/dist/esm/node-universal-header.js +93 -0
- package/node_modules/@connectrpc/connect-node/package.json +46 -0
- package/node_modules/@cursor/sdk/LICENSE.md +3 -0
- package/node_modules/@cursor/sdk/README.md +5 -0
- package/node_modules/@cursor/sdk/dist/cjs/642.index.js +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/agent.d.ts +169 -0
- package/node_modules/@cursor/sdk/dist/cjs/agent.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/analytics.d.ts +72 -0
- package/node_modules/@cursor/sdk/dist/cjs/analytics.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/artifacts.d.ts +6 -0
- package/node_modules/@cursor/sdk/dist/cjs/artifacts.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/cloud-agent.d.ts +22 -0
- package/node_modules/@cursor/sdk/dist/cjs/cloud-agent.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/cloud-api-client.d.ts +192 -0
- package/node_modules/@cursor/sdk/dist/cjs/cloud-api-client.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/cloud-executor.d.ts +14 -0
- package/node_modules/@cursor/sdk/dist/cjs/cloud-executor.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/cloud-mcp-utils.d.ts +4 -0
- package/node_modules/@cursor/sdk/dist/cjs/cloud-mcp-utils.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/core-adapter.d.ts +2 -0
- package/node_modules/@cursor/sdk/dist/cjs/core-adapter.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/errors.d.ts +125 -0
- package/node_modules/@cursor/sdk/dist/cjs/errors.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/executor-common.d.ts +16 -0
- package/node_modules/@cursor/sdk/dist/cjs/executor-common.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/executor-types.d.ts +59 -0
- package/node_modules/@cursor/sdk/dist/cjs/executor-types.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/index.d.ts +18 -0
- package/node_modules/@cursor/sdk/dist/cjs/index.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/index.js +8 -0
- package/node_modules/@cursor/sdk/dist/cjs/index.js.LICENSE.txt +285 -0
- package/node_modules/@cursor/sdk/dist/cjs/local-executor.d.ts +18 -0
- package/node_modules/@cursor/sdk/dist/cjs/local-executor.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/local-model-validation.d.ts +6 -0
- package/node_modules/@cursor/sdk/dist/cjs/local-model-validation.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/messages.d.ts +110 -0
- package/node_modules/@cursor/sdk/dist/cjs/messages.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/options.d.ts +143 -0
- package/node_modules/@cursor/sdk/dist/cjs/options.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/package.json +3 -0
- package/node_modules/@cursor/sdk/dist/cjs/platform.d.ts +45 -0
- package/node_modules/@cursor/sdk/dist/cjs/platform.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/public-api.d.ts +12 -0
- package/node_modules/@cursor/sdk/dist/cjs/public-api.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/run-event-tailer.d.ts +33 -0
- package/node_modules/@cursor/sdk/dist/cjs/run-event-tailer.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/run-interaction-accumulator.d.ts +33 -0
- package/node_modules/@cursor/sdk/dist/cjs/run-interaction-accumulator.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/run.d.ts +44 -0
- package/node_modules/@cursor/sdk/dist/cjs/run.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/sdk-statsig.d.ts +10 -0
- package/node_modules/@cursor/sdk/dist/cjs/sdk-statsig.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/stubs.d.ts +97 -0
- package/node_modules/@cursor/sdk/dist/cjs/stubs.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/subagent-conversion.d.ts +20 -0
- package/node_modules/@cursor/sdk/dist/cjs/subagent-conversion.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/tool-call-utils.d.ts +7 -0
- package/node_modules/@cursor/sdk/dist/cjs/tool-call-utils.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/types/conversation-types.d.ts +12062 -0
- package/node_modules/@cursor/sdk/dist/cjs/types/conversation-types.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/types/delta-types.d.ts +2 -0
- package/node_modules/@cursor/sdk/dist/cjs/types/delta-types.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/types/tool-call-types.d.ts +2 -0
- package/node_modules/@cursor/sdk/dist/cjs/types/tool-call-types.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/utils/conversation-utils.d.ts +3 -0
- package/node_modules/@cursor/sdk/dist/cjs/utils/conversation-utils.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/utils/logger.d.ts +12 -0
- package/node_modules/@cursor/sdk/dist/cjs/utils/logger.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/cjs/utils/message-schemas.d.ts +2 -0
- package/node_modules/@cursor/sdk/dist/cjs/utils/message-schemas.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/642.index.js +1 -0
- package/node_modules/@cursor/sdk/dist/esm/agent.d.ts +169 -0
- package/node_modules/@cursor/sdk/dist/esm/agent.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/analytics.d.ts +72 -0
- package/node_modules/@cursor/sdk/dist/esm/analytics.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/artifacts.d.ts +6 -0
- package/node_modules/@cursor/sdk/dist/esm/artifacts.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/cloud-agent.d.ts +22 -0
- package/node_modules/@cursor/sdk/dist/esm/cloud-agent.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/cloud-api-client.d.ts +192 -0
- package/node_modules/@cursor/sdk/dist/esm/cloud-api-client.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/cloud-executor.d.ts +14 -0
- package/node_modules/@cursor/sdk/dist/esm/cloud-executor.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/cloud-mcp-utils.d.ts +4 -0
- package/node_modules/@cursor/sdk/dist/esm/cloud-mcp-utils.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/core-adapter.d.ts +2 -0
- package/node_modules/@cursor/sdk/dist/esm/core-adapter.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/errors.d.ts +125 -0
- package/node_modules/@cursor/sdk/dist/esm/errors.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/executor-common.d.ts +16 -0
- package/node_modules/@cursor/sdk/dist/esm/executor-common.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/executor-types.d.ts +59 -0
- package/node_modules/@cursor/sdk/dist/esm/executor-types.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/index.d.ts +18 -0
- package/node_modules/@cursor/sdk/dist/esm/index.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/index.js +8 -0
- package/node_modules/@cursor/sdk/dist/esm/index.js.LICENSE.txt +285 -0
- package/node_modules/@cursor/sdk/dist/esm/local-executor.d.ts +18 -0
- package/node_modules/@cursor/sdk/dist/esm/local-executor.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/local-model-validation.d.ts +6 -0
- package/node_modules/@cursor/sdk/dist/esm/local-model-validation.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/messages.d.ts +110 -0
- package/node_modules/@cursor/sdk/dist/esm/messages.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/options.d.ts +143 -0
- package/node_modules/@cursor/sdk/dist/esm/options.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/platform.d.ts +45 -0
- package/node_modules/@cursor/sdk/dist/esm/platform.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/public-api.d.ts +12 -0
- package/node_modules/@cursor/sdk/dist/esm/public-api.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/run-event-tailer.d.ts +33 -0
- package/node_modules/@cursor/sdk/dist/esm/run-event-tailer.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/run-interaction-accumulator.d.ts +33 -0
- package/node_modules/@cursor/sdk/dist/esm/run-interaction-accumulator.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/run.d.ts +44 -0
- package/node_modules/@cursor/sdk/dist/esm/run.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/sdk-statsig.d.ts +10 -0
- package/node_modules/@cursor/sdk/dist/esm/sdk-statsig.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/stubs.d.ts +97 -0
- package/node_modules/@cursor/sdk/dist/esm/stubs.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/subagent-conversion.d.ts +20 -0
- package/node_modules/@cursor/sdk/dist/esm/subagent-conversion.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/tool-call-utils.d.ts +7 -0
- package/node_modules/@cursor/sdk/dist/esm/tool-call-utils.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/types/conversation-types.d.ts +12062 -0
- package/node_modules/@cursor/sdk/dist/esm/types/conversation-types.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/types/delta-types.d.ts +2 -0
- package/node_modules/@cursor/sdk/dist/esm/types/delta-types.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/types/tool-call-types.d.ts +2 -0
- package/node_modules/@cursor/sdk/dist/esm/types/tool-call-types.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/utils/conversation-utils.d.ts +3 -0
- package/node_modules/@cursor/sdk/dist/esm/utils/conversation-utils.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/utils/logger.d.ts +12 -0
- package/node_modules/@cursor/sdk/dist/esm/utils/logger.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/dist/esm/utils/message-schemas.d.ts +2 -0
- package/node_modules/@cursor/sdk/dist/esm/utils/message-schemas.d.ts.map +1 -0
- package/node_modules/@cursor/sdk/package.json +114 -0
- package/node_modules/@cursor/sdk-darwin-arm64/README.md +5 -0
- package/node_modules/@cursor/sdk-darwin-arm64/bin/cursorsandbox +0 -0
- package/node_modules/@cursor/sdk-darwin-arm64/bin/rg +0 -0
- package/node_modules/@cursor/sdk-darwin-arm64/package.json +25 -0
- package/node_modules/@isaacs/fs-minipass/LICENSE +15 -0
- package/node_modules/@isaacs/fs-minipass/README.md +71 -0
- package/node_modules/@isaacs/fs-minipass/dist/commonjs/index.d.ts +118 -0
- package/node_modules/@isaacs/fs-minipass/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/@isaacs/fs-minipass/dist/commonjs/index.js +430 -0
- package/node_modules/@isaacs/fs-minipass/dist/commonjs/index.js.map +1 -0
- package/node_modules/@isaacs/fs-minipass/dist/commonjs/package.json +3 -0
- package/node_modules/@isaacs/fs-minipass/dist/esm/index.d.ts +118 -0
- package/node_modules/@isaacs/fs-minipass/dist/esm/index.d.ts.map +1 -0
- package/node_modules/@isaacs/fs-minipass/dist/esm/index.js +420 -0
- package/node_modules/@isaacs/fs-minipass/dist/esm/index.js.map +1 -0
- package/node_modules/@isaacs/fs-minipass/dist/esm/package.json +3 -0
- package/node_modules/@isaacs/fs-minipass/package.json +72 -0
- package/node_modules/@statsig/client-core/package.json +15 -0
- package/node_modules/@statsig/client-core/src/$_StatsigGlobal.d.ts +19 -0
- package/node_modules/@statsig/client-core/src/$_StatsigGlobal.js +41 -0
- package/node_modules/@statsig/client-core/src/CacheKey.d.ts +4 -0
- package/node_modules/@statsig/client-core/src/CacheKey.js +28 -0
- package/node_modules/@statsig/client-core/src/ClientInterfaces.d.ts +62 -0
- package/node_modules/@statsig/client-core/src/ClientInterfaces.js +2 -0
- package/node_modules/@statsig/client-core/src/DataAdapterCore.d.ts +29 -0
- package/node_modules/@statsig/client-core/src/DataAdapterCore.js +216 -0
- package/node_modules/@statsig/client-core/src/Diagnostics.d.ts +67 -0
- package/node_modules/@statsig/client-core/src/Diagnostics.js +100 -0
- package/node_modules/@statsig/client-core/src/DnsTxtQuery.d.ts +2 -0
- package/node_modules/@statsig/client-core/src/DnsTxtQuery.js +63 -0
- package/node_modules/@statsig/client-core/src/DownloadConfigSpecsResponse.d.ts +61 -0
- package/node_modules/@statsig/client-core/src/DownloadConfigSpecsResponse.js +2 -0
- package/node_modules/@statsig/client-core/src/ErrorBoundary.d.ts +17 -0
- package/node_modules/@statsig/client-core/src/ErrorBoundary.js +197 -0
- package/node_modules/@statsig/client-core/src/EvaluationOptions.d.ts +30 -0
- package/node_modules/@statsig/client-core/src/EvaluationOptions.js +2 -0
- package/node_modules/@statsig/client-core/src/EvaluationTypes.d.ts +49 -0
- package/node_modules/@statsig/client-core/src/EvaluationTypes.js +2 -0
- package/node_modules/@statsig/client-core/src/EvaluationTypesV2.d.ts +30 -0
- package/node_modules/@statsig/client-core/src/EvaluationTypesV2.js +2 -0
- package/node_modules/@statsig/client-core/src/EventBatch.d.ts +8 -0
- package/node_modules/@statsig/client-core/src/EventBatch.js +14 -0
- package/node_modules/@statsig/client-core/src/EventLogger.d.ts +48 -0
- package/node_modules/@statsig/client-core/src/EventLogger.js +349 -0
- package/node_modules/@statsig/client-core/src/EventRetryConstants.d.ts +7 -0
- package/node_modules/@statsig/client-core/src/EventRetryConstants.js +12 -0
- package/node_modules/@statsig/client-core/src/Hashing.d.ts +3 -0
- package/node_modules/@statsig/client-core/src/Hashing.js +35 -0
- package/node_modules/@statsig/client-core/src/InitializeResponse.d.ts +66 -0
- package/node_modules/@statsig/client-core/src/InitializeResponse.js +2 -0
- package/node_modules/@statsig/client-core/src/Log.d.ts +15 -0
- package/node_modules/@statsig/client-core/src/Log.js +44 -0
- package/node_modules/@statsig/client-core/src/MemoKey.d.ts +11 -0
- package/node_modules/@statsig/client-core/src/MemoKey.js +37 -0
- package/node_modules/@statsig/client-core/src/NetworkConfig.d.ts +26 -0
- package/node_modules/@statsig/client-core/src/NetworkConfig.js +23 -0
- package/node_modules/@statsig/client-core/src/NetworkCore.d.ts +55 -0
- package/node_modules/@statsig/client-core/src/NetworkCore.js +371 -0
- package/node_modules/@statsig/client-core/src/NetworkFallbackResolver.d.ts +21 -0
- package/node_modules/@statsig/client-core/src/NetworkFallbackResolver.js +198 -0
- package/node_modules/@statsig/client-core/src/OverrideAdapter.d.ts +16 -0
- package/node_modules/@statsig/client-core/src/OverrideAdapter.js +2 -0
- package/node_modules/@statsig/client-core/src/ParamStoreTypes.d.ts +65 -0
- package/node_modules/@statsig/client-core/src/ParamStoreTypes.js +2 -0
- package/node_modules/@statsig/client-core/src/SDKFlags.d.ts +4 -0
- package/node_modules/@statsig/client-core/src/SDKFlags.js +13 -0
- package/node_modules/@statsig/client-core/src/SDKType.d.ts +8 -0
- package/node_modules/@statsig/client-core/src/SDKType.js +19 -0
- package/node_modules/@statsig/client-core/src/SafeJs.d.ts +8 -0
- package/node_modules/@statsig/client-core/src/SafeJs.js +68 -0
- package/node_modules/@statsig/client-core/src/SessionID.d.ts +20 -0
- package/node_modules/@statsig/client-core/src/SessionID.js +106 -0
- package/node_modules/@statsig/client-core/src/SizeOf.d.ts +1 -0
- package/node_modules/@statsig/client-core/src/SizeOf.js +26 -0
- package/node_modules/@statsig/client-core/src/StableID.d.ts +9 -0
- package/node_modules/@statsig/client-core/src/StableID.js +90 -0
- package/node_modules/@statsig/client-core/src/StatsigClientBase.d.ts +74 -0
- package/node_modules/@statsig/client-core/src/StatsigClientBase.js +207 -0
- package/node_modules/@statsig/client-core/src/StatsigClientEventEmitter.d.ts +100 -0
- package/node_modules/@statsig/client-core/src/StatsigClientEventEmitter.js +6 -0
- package/node_modules/@statsig/client-core/src/StatsigDataAdapter.d.ts +131 -0
- package/node_modules/@statsig/client-core/src/StatsigDataAdapter.js +4 -0
- package/node_modules/@statsig/client-core/src/StatsigEvent.d.ts +28 -0
- package/node_modules/@statsig/client-core/src/StatsigEvent.js +98 -0
- package/node_modules/@statsig/client-core/src/StatsigMetadata.d.ts +18 -0
- package/node_modules/@statsig/client-core/src/StatsigMetadata.js +14 -0
- package/node_modules/@statsig/client-core/src/StatsigOptionsCommon.d.ts +180 -0
- package/node_modules/@statsig/client-core/src/StatsigOptionsCommon.js +16 -0
- package/node_modules/@statsig/client-core/src/StatsigPlugin.d.ts +5 -0
- package/node_modules/@statsig/client-core/src/StatsigPlugin.js +2 -0
- package/node_modules/@statsig/client-core/src/StatsigTypeFactories.d.ts +8 -0
- package/node_modules/@statsig/client-core/src/StatsigTypeFactories.js +57 -0
- package/node_modules/@statsig/client-core/src/StatsigTypes.d.ts +43 -0
- package/node_modules/@statsig/client-core/src/StatsigTypes.js +2 -0
- package/node_modules/@statsig/client-core/src/StatsigUpdateDetails.d.ts +14 -0
- package/node_modules/@statsig/client-core/src/StatsigUpdateDetails.js +17 -0
- package/node_modules/@statsig/client-core/src/StatsigUser.d.ts +24 -0
- package/node_modules/@statsig/client-core/src/StatsigUser.js +25 -0
- package/node_modules/@statsig/client-core/src/StorageProvider.d.ts +17 -0
- package/node_modules/@statsig/client-core/src/StorageProvider.js +90 -0
- package/node_modules/@statsig/client-core/src/TypedJsonParse.d.ts +8 -0
- package/node_modules/@statsig/client-core/src/TypedJsonParse.js +27 -0
- package/node_modules/@statsig/client-core/src/TypingUtils.d.ts +7 -0
- package/node_modules/@statsig/client-core/src/TypingUtils.js +12 -0
- package/node_modules/@statsig/client-core/src/UUID.d.ts +1 -0
- package/node_modules/@statsig/client-core/src/UUID.js +28 -0
- package/node_modules/@statsig/client-core/src/UrlConfiguration.d.ts +12 -0
- package/node_modules/@statsig/client-core/src/UrlConfiguration.js +41 -0
- package/node_modules/@statsig/client-core/src/VisibilityObserving.d.ts +9 -0
- package/node_modules/@statsig/client-core/src/VisibilityObserving.js +39 -0
- package/node_modules/@statsig/client-core/src/__tests__/MockOverrideAdapter.d.ts +16 -0
- package/node_modules/@statsig/client-core/src/__tests__/MockOverrideAdapter.js +21 -0
- package/node_modules/@statsig/client-core/src/index.d.ts +47 -0
- package/node_modules/@statsig/client-core/src/index.js +70 -0
- package/node_modules/@statsig/js-client/LICENSE +14 -0
- package/node_modules/@statsig/js-client/README.md +49 -0
- package/node_modules/@statsig/js-client/build/statsig-js-client+session-replay+web-analytics.min.js +2 -0
- package/node_modules/@statsig/js-client/build/statsig-js-client+session-replay.min.js +1 -0
- package/node_modules/@statsig/js-client/build/statsig-js-client+web-analytics.min.js +2 -0
- package/node_modules/@statsig/js-client/build/statsig-js-client.min.js +1 -0
- package/node_modules/@statsig/js-client/package.json +18 -0
- package/node_modules/@statsig/js-client/src/EvaluationResponseDeltas.d.ts +10 -0
- package/node_modules/@statsig/js-client/src/EvaluationResponseDeltas.js +49 -0
- package/node_modules/@statsig/js-client/src/EvaluationStore.d.ts +29 -0
- package/node_modules/@statsig/js-client/src/EvaluationStore.js +175 -0
- package/node_modules/@statsig/js-client/src/InitializeContainer.d.ts +9 -0
- package/node_modules/@statsig/js-client/src/InitializeContainer.js +2 -0
- package/node_modules/@statsig/js-client/src/Network.d.ts +9 -0
- package/node_modules/@statsig/js-client/src/Network.js +74 -0
- package/node_modules/@statsig/js-client/src/ParamStoreGetterFactory.d.ts +3 -0
- package/node_modules/@statsig/js-client/src/ParamStoreGetterFactory.js +74 -0
- package/node_modules/@statsig/js-client/src/StatsigClient.d.ts +244 -0
- package/node_modules/@statsig/js-client/src/StatsigClient.js +418 -0
- package/node_modules/@statsig/js-client/src/StatsigEvaluationsDataAdapter.d.ts +15 -0
- package/node_modules/@statsig/js-client/src/StatsigEvaluationsDataAdapter.js +65 -0
- package/node_modules/@statsig/js-client/src/StatsigOptions.d.ts +42 -0
- package/node_modules/@statsig/js-client/src/StatsigOptions.js +2 -0
- package/node_modules/@statsig/js-client/src/V1InitializeContainer.d.ts +13 -0
- package/node_modules/@statsig/js-client/src/V1InitializeContainer.js +35 -0
- package/node_modules/@statsig/js-client/src/V2InitializeContainer.d.ts +13 -0
- package/node_modules/@statsig/js-client/src/V2InitializeContainer.js +82 -0
- package/node_modules/@statsig/js-client/src/index.d.ts +9 -0
- package/node_modules/@statsig/js-client/src/index.js +25 -0
- package/node_modules/abbrev/LICENSE +46 -0
- package/node_modules/abbrev/README.md +23 -0
- package/node_modules/abbrev/lib/index.js +53 -0
- package/node_modules/abbrev/package.json +41 -0
- package/node_modules/base64-js/LICENSE +21 -0
- package/node_modules/base64-js/README.md +34 -0
- package/node_modules/base64-js/base64js.min.js +1 -0
- package/node_modules/base64-js/index.d.ts +3 -0
- package/node_modules/base64-js/index.js +150 -0
- package/node_modules/base64-js/package.json +47 -0
- package/node_modules/bindings/LICENSE.md +22 -0
- package/node_modules/bindings/README.md +98 -0
- package/node_modules/bindings/bindings.js +221 -0
- package/node_modules/bindings/package.json +28 -0
- package/node_modules/bl/.travis.yml +17 -0
- package/node_modules/bl/BufferList.js +396 -0
- package/node_modules/bl/LICENSE.md +13 -0
- package/node_modules/bl/README.md +247 -0
- package/node_modules/bl/bl.js +84 -0
- package/node_modules/bl/package.json +37 -0
- package/node_modules/bl/test/convert.js +21 -0
- package/node_modules/bl/test/indexOf.js +492 -0
- package/node_modules/bl/test/isBufferList.js +32 -0
- package/node_modules/bl/test/test.js +869 -0
- package/node_modules/buffer/AUTHORS.md +70 -0
- package/node_modules/buffer/LICENSE +21 -0
- package/node_modules/buffer/README.md +410 -0
- package/node_modules/buffer/index.d.ts +186 -0
- package/node_modules/buffer/index.js +1817 -0
- package/node_modules/buffer/package.json +96 -0
- package/node_modules/chownr/LICENSE.md +63 -0
- package/node_modules/chownr/README.md +3 -0
- package/node_modules/chownr/dist/commonjs/index.d.ts +3 -0
- package/node_modules/chownr/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/chownr/dist/commonjs/index.js +93 -0
- package/node_modules/chownr/dist/commonjs/index.js.map +1 -0
- package/node_modules/chownr/dist/commonjs/package.json +3 -0
- package/node_modules/chownr/dist/esm/index.d.ts +3 -0
- package/node_modules/chownr/dist/esm/index.d.ts.map +1 -0
- package/node_modules/chownr/dist/esm/index.js +85 -0
- package/node_modules/chownr/dist/esm/index.js.map +1 -0
- package/node_modules/chownr/dist/esm/package.json +3 -0
- package/node_modules/chownr/package.json +69 -0
- package/node_modules/decompress-response/index.d.ts +22 -0
- package/node_modules/decompress-response/index.js +58 -0
- package/node_modules/decompress-response/license +9 -0
- package/node_modules/decompress-response/package.json +56 -0
- package/node_modules/decompress-response/readme.md +48 -0
- package/node_modules/deep-extend/CHANGELOG.md +46 -0
- package/node_modules/deep-extend/LICENSE +20 -0
- package/node_modules/deep-extend/README.md +91 -0
- package/node_modules/deep-extend/index.js +1 -0
- package/node_modules/deep-extend/lib/deep-extend.js +150 -0
- package/node_modules/deep-extend/package.json +62 -0
- package/node_modules/detect-libc/LICENSE +201 -0
- package/node_modules/detect-libc/README.md +163 -0
- package/node_modules/detect-libc/index.d.ts +14 -0
- package/node_modules/detect-libc/lib/detect-libc.js +313 -0
- package/node_modules/detect-libc/lib/elf.js +39 -0
- package/node_modules/detect-libc/lib/filesystem.js +51 -0
- package/node_modules/detect-libc/lib/process.js +24 -0
- package/node_modules/detect-libc/package.json +44 -0
- package/node_modules/end-of-stream/LICENSE +21 -0
- package/node_modules/end-of-stream/README.md +54 -0
- package/node_modules/end-of-stream/index.js +96 -0
- package/node_modules/end-of-stream/package.json +37 -0
- package/node_modules/env-paths/index.d.ts +101 -0
- package/node_modules/env-paths/index.js +74 -0
- package/node_modules/env-paths/license +9 -0
- package/node_modules/env-paths/package.json +45 -0
- package/node_modules/env-paths/readme.md +115 -0
- package/node_modules/expand-template/.travis.yml +6 -0
- package/node_modules/expand-template/LICENSE +21 -0
- package/node_modules/expand-template/README.md +43 -0
- package/node_modules/expand-template/index.js +26 -0
- package/node_modules/expand-template/package.json +29 -0
- package/node_modules/expand-template/test.js +67 -0
- package/node_modules/exponential-backoff/LICENSE +202 -0
- package/node_modules/exponential-backoff/README.md +89 -0
- package/node_modules/exponential-backoff/dist/backoff.d.ts +9 -0
- package/node_modules/exponential-backoff/dist/backoff.js +124 -0
- package/node_modules/exponential-backoff/dist/backoff.js.map +1 -0
- package/node_modules/exponential-backoff/dist/delay/always/always.delay.d.ts +3 -0
- package/node_modules/exponential-backoff/dist/delay/always/always.delay.js +25 -0
- package/node_modules/exponential-backoff/dist/delay/always/always.delay.js.map +1 -0
- package/node_modules/exponential-backoff/dist/delay/delay.base.d.ts +12 -0
- package/node_modules/exponential-backoff/dist/delay/delay.base.js +45 -0
- package/node_modules/exponential-backoff/dist/delay/delay.base.js.map +1 -0
- package/node_modules/exponential-backoff/dist/delay/delay.factory.d.ts +3 -0
- package/node_modules/exponential-backoff/dist/delay/delay.factory.js +17 -0
- package/node_modules/exponential-backoff/dist/delay/delay.factory.js.map +1 -0
- package/node_modules/exponential-backoff/dist/delay/delay.interface.d.ts +4 -0
- package/node_modules/exponential-backoff/dist/delay/delay.interface.js +3 -0
- package/node_modules/exponential-backoff/dist/delay/delay.interface.js.map +1 -0
- package/node_modules/exponential-backoff/dist/delay/skip-first/skip-first.delay.d.ts +6 -0
- package/node_modules/exponential-backoff/dist/delay/skip-first/skip-first.delay.js +82 -0
- package/node_modules/exponential-backoff/dist/delay/skip-first/skip-first.delay.js.map +1 -0
- package/node_modules/exponential-backoff/dist/jitter/full/full.jitter.d.ts +1 -0
- package/node_modules/exponential-backoff/dist/jitter/full/full.jitter.js +8 -0
- package/node_modules/exponential-backoff/dist/jitter/full/full.jitter.js.map +1 -0
- package/node_modules/exponential-backoff/dist/jitter/jitter.factory.d.ts +3 -0
- package/node_modules/exponential-backoff/dist/jitter/jitter.factory.js +15 -0
- package/node_modules/exponential-backoff/dist/jitter/jitter.factory.js.map +1 -0
- package/node_modules/exponential-backoff/dist/jitter/no/no.jitter.d.ts +1 -0
- package/node_modules/exponential-backoff/dist/jitter/no/no.jitter.js +7 -0
- package/node_modules/exponential-backoff/dist/jitter/no/no.jitter.js.map +1 -0
- package/node_modules/exponential-backoff/dist/options.d.ts +55 -0
- package/node_modules/exponential-backoff/dist/options.js +31 -0
- package/node_modules/exponential-backoff/dist/options.js.map +1 -0
- package/node_modules/exponential-backoff/package.json +62 -0
- package/node_modules/exponential-backoff/src/backoff.spec.ts +194 -0
- package/node_modules/exponential-backoff/src/backoff.ts +60 -0
- package/node_modules/exponential-backoff/src/delay/always/always.delay.spec.ts +65 -0
- package/node_modules/exponential-backoff/src/delay/always/always.delay.ts +3 -0
- package/node_modules/exponential-backoff/src/delay/delay.base.ts +34 -0
- package/node_modules/exponential-backoff/src/delay/delay.factory.ts +18 -0
- package/node_modules/exponential-backoff/src/delay/delay.interface.ts +4 -0
- package/node_modules/exponential-backoff/src/delay/skip-first/skip-first.delay.ts +15 -0
- package/node_modules/exponential-backoff/src/jitter/full/full.jitter.spec.ts +31 -0
- package/node_modules/exponential-backoff/src/jitter/full/full.jitter.ts +4 -0
- package/node_modules/exponential-backoff/src/jitter/jitter.factory.ts +16 -0
- package/node_modules/exponential-backoff/src/jitter/no/no.jitter.spec.ts +9 -0
- package/node_modules/exponential-backoff/src/jitter/no/no.jitter.ts +3 -0
- package/node_modules/exponential-backoff/src/options.ts +76 -0
- package/node_modules/fdir/LICENSE +7 -0
- package/node_modules/fdir/README.md +91 -0
- package/node_modules/fdir/dist/index.cjs +588 -0
- package/node_modules/fdir/dist/index.d.cts +155 -0
- package/node_modules/fdir/dist/index.d.mts +155 -0
- package/node_modules/fdir/dist/index.mjs +570 -0
- package/node_modules/fdir/package.json +103 -0
- package/node_modules/file-uri-to-path/.npmignore +1 -0
- package/node_modules/file-uri-to-path/.travis.yml +30 -0
- package/node_modules/file-uri-to-path/History.md +21 -0
- package/node_modules/file-uri-to-path/LICENSE +20 -0
- package/node_modules/file-uri-to-path/README.md +74 -0
- package/node_modules/file-uri-to-path/index.d.ts +2 -0
- package/node_modules/file-uri-to-path/index.js +66 -0
- package/node_modules/file-uri-to-path/package.json +32 -0
- package/node_modules/file-uri-to-path/test/test.js +24 -0
- package/node_modules/file-uri-to-path/test/tests.json +13 -0
- package/node_modules/fs-constants/LICENSE +21 -0
- package/node_modules/fs-constants/README.md +26 -0
- package/node_modules/fs-constants/browser.js +1 -0
- package/node_modules/fs-constants/index.js +1 -0
- package/node_modules/fs-constants/package.json +19 -0
- package/node_modules/github-from-package/.travis.yml +4 -0
- package/node_modules/github-from-package/LICENSE +18 -0
- package/node_modules/github-from-package/example/package.json +8 -0
- package/node_modules/github-from-package/example/url.js +3 -0
- package/node_modules/github-from-package/index.js +17 -0
- package/node_modules/github-from-package/package.json +30 -0
- package/node_modules/github-from-package/readme.markdown +53 -0
- package/node_modules/github-from-package/test/a.json +8 -0
- package/node_modules/github-from-package/test/b.json +5 -0
- package/node_modules/github-from-package/test/c.json +5 -0
- package/node_modules/github-from-package/test/d.json +7 -0
- package/node_modules/github-from-package/test/e.json +5 -0
- package/node_modules/github-from-package/test/url.js +19 -0
- package/node_modules/graceful-fs/LICENSE +15 -0
- package/node_modules/graceful-fs/README.md +143 -0
- package/node_modules/graceful-fs/clone.js +23 -0
- package/node_modules/graceful-fs/graceful-fs.js +448 -0
- package/node_modules/graceful-fs/legacy-streams.js +118 -0
- package/node_modules/graceful-fs/package.json +53 -0
- package/node_modules/graceful-fs/polyfills.js +355 -0
- package/node_modules/ieee754/LICENSE +11 -0
- package/node_modules/ieee754/README.md +51 -0
- package/node_modules/ieee754/index.d.ts +10 -0
- package/node_modules/ieee754/index.js +85 -0
- package/node_modules/ieee754/package.json +52 -0
- package/node_modules/inherits/LICENSE +16 -0
- package/node_modules/inherits/README.md +42 -0
- package/node_modules/inherits/inherits.js +9 -0
- package/node_modules/inherits/inherits_browser.js +27 -0
- package/node_modules/inherits/package.json +29 -0
- package/node_modules/ini/LICENSE +15 -0
- package/node_modules/ini/README.md +102 -0
- package/node_modules/ini/ini.js +206 -0
- package/node_modules/ini/package.json +33 -0
- package/node_modules/isexe/LICENSE.md +55 -0
- package/node_modules/isexe/README.md +80 -0
- package/node_modules/isexe/dist/commonjs/index.d.ts +14 -0
- package/node_modules/isexe/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/isexe/dist/commonjs/index.js +56 -0
- package/node_modules/isexe/dist/commonjs/index.js.map +1 -0
- package/node_modules/isexe/dist/commonjs/index.min.js +2 -0
- package/node_modules/isexe/dist/commonjs/index.min.js.map +7 -0
- package/node_modules/isexe/dist/commonjs/options.d.ts +32 -0
- package/node_modules/isexe/dist/commonjs/options.d.ts.map +1 -0
- package/node_modules/isexe/dist/commonjs/options.js +3 -0
- package/node_modules/isexe/dist/commonjs/options.js.map +1 -0
- package/node_modules/isexe/dist/commonjs/package.json +3 -0
- package/node_modules/isexe/dist/commonjs/posix.d.ts +18 -0
- package/node_modules/isexe/dist/commonjs/posix.d.ts.map +1 -0
- package/node_modules/isexe/dist/commonjs/posix.js +67 -0
- package/node_modules/isexe/dist/commonjs/posix.js.map +1 -0
- package/node_modules/isexe/dist/commonjs/win32.d.ts +18 -0
- package/node_modules/isexe/dist/commonjs/win32.d.ts.map +1 -0
- package/node_modules/isexe/dist/commonjs/win32.js +63 -0
- package/node_modules/isexe/dist/commonjs/win32.js.map +1 -0
- package/node_modules/isexe/dist/esm/index.d.ts +14 -0
- package/node_modules/isexe/dist/esm/index.d.ts.map +1 -0
- package/node_modules/isexe/dist/esm/index.js +16 -0
- package/node_modules/isexe/dist/esm/index.js.map +1 -0
- package/node_modules/isexe/dist/esm/index.min.js +2 -0
- package/node_modules/isexe/dist/esm/index.min.js.map +7 -0
- package/node_modules/isexe/dist/esm/options.d.ts +32 -0
- package/node_modules/isexe/dist/esm/options.d.ts.map +1 -0
- package/node_modules/isexe/dist/esm/options.js +2 -0
- package/node_modules/isexe/dist/esm/options.js.map +1 -0
- package/node_modules/isexe/dist/esm/package.json +3 -0
- package/node_modules/isexe/dist/esm/posix.d.ts +18 -0
- package/node_modules/isexe/dist/esm/posix.d.ts.map +1 -0
- package/node_modules/isexe/dist/esm/posix.js +62 -0
- package/node_modules/isexe/dist/esm/posix.js.map +1 -0
- package/node_modules/isexe/dist/esm/win32.d.ts +18 -0
- package/node_modules/isexe/dist/esm/win32.d.ts.map +1 -0
- package/node_modules/isexe/dist/esm/win32.js +58 -0
- package/node_modules/isexe/dist/esm/win32.js.map +1 -0
- package/node_modules/isexe/package.json +78 -0
- package/node_modules/mimic-response/index.d.ts +17 -0
- package/node_modules/mimic-response/index.js +77 -0
- package/node_modules/mimic-response/license +9 -0
- package/node_modules/mimic-response/package.json +42 -0
- package/node_modules/mimic-response/readme.md +78 -0
- package/node_modules/minimist/.eslintrc +29 -0
- package/node_modules/minimist/.github/FUNDING.yml +12 -0
- package/node_modules/minimist/.nycrc +14 -0
- package/node_modules/minimist/CHANGELOG.md +298 -0
- package/node_modules/minimist/LICENSE +18 -0
- package/node_modules/minimist/README.md +121 -0
- package/node_modules/minimist/example/parse.js +4 -0
- package/node_modules/minimist/index.js +263 -0
- package/node_modules/minimist/package.json +75 -0
- package/node_modules/minimist/test/all_bool.js +34 -0
- package/node_modules/minimist/test/bool.js +177 -0
- package/node_modules/minimist/test/dash.js +43 -0
- package/node_modules/minimist/test/default_bool.js +37 -0
- package/node_modules/minimist/test/dotted.js +24 -0
- package/node_modules/minimist/test/kv_short.js +32 -0
- package/node_modules/minimist/test/long.js +33 -0
- package/node_modules/minimist/test/num.js +38 -0
- package/node_modules/minimist/test/parse.js +209 -0
- package/node_modules/minimist/test/parse_modified.js +11 -0
- package/node_modules/minimist/test/proto.js +64 -0
- package/node_modules/minimist/test/short.js +69 -0
- package/node_modules/minimist/test/stop_early.js +17 -0
- package/node_modules/minimist/test/unknown.js +104 -0
- package/node_modules/minimist/test/whitespace.js +10 -0
- package/node_modules/minipass/LICENSE.md +55 -0
- package/node_modules/minipass/README.md +825 -0
- package/node_modules/minipass/dist/commonjs/index.d.ts +545 -0
- package/node_modules/minipass/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/minipass/dist/commonjs/index.js +1038 -0
- package/node_modules/minipass/dist/commonjs/index.js.map +1 -0
- package/node_modules/minipass/dist/commonjs/package.json +3 -0
- package/node_modules/minipass/dist/esm/index.d.ts +545 -0
- package/node_modules/minipass/dist/esm/index.d.ts.map +1 -0
- package/node_modules/minipass/dist/esm/index.js +1020 -0
- package/node_modules/minipass/dist/esm/index.js.map +1 -0
- package/node_modules/minipass/dist/esm/package.json +3 -0
- package/node_modules/minipass/package.json +77 -0
- package/node_modules/minizlib/LICENSE +26 -0
- package/node_modules/minizlib/README.md +64 -0
- package/node_modules/minizlib/dist/commonjs/constants.d.ts +2 -0
- package/node_modules/minizlib/dist/commonjs/constants.d.ts.map +1 -0
- package/node_modules/minizlib/dist/commonjs/constants.js +123 -0
- package/node_modules/minizlib/dist/commonjs/constants.js.map +1 -0
- package/node_modules/minizlib/dist/commonjs/index.d.ts +99 -0
- package/node_modules/minizlib/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/minizlib/dist/commonjs/index.js +416 -0
- package/node_modules/minizlib/dist/commonjs/index.js.map +1 -0
- package/node_modules/minizlib/dist/commonjs/package.json +3 -0
- package/node_modules/minizlib/dist/esm/constants.d.ts +2 -0
- package/node_modules/minizlib/dist/esm/constants.d.ts.map +1 -0
- package/node_modules/minizlib/dist/esm/constants.js +117 -0
- package/node_modules/minizlib/dist/esm/constants.js.map +1 -0
- package/node_modules/minizlib/dist/esm/index.d.ts +99 -0
- package/node_modules/minizlib/dist/esm/index.d.ts.map +1 -0
- package/node_modules/minizlib/dist/esm/index.js +363 -0
- package/node_modules/minizlib/dist/esm/index.js.map +1 -0
- package/node_modules/minizlib/dist/esm/package.json +3 -0
- package/node_modules/minizlib/package.json +80 -0
- package/node_modules/mkdirp-classic/LICENSE +21 -0
- package/node_modules/mkdirp-classic/README.md +18 -0
- package/node_modules/mkdirp-classic/index.js +98 -0
- package/node_modules/mkdirp-classic/package.json +18 -0
- package/node_modules/napi-build-utils/.github/workflows/run-npm-tests.yml +31 -0
- package/node_modules/napi-build-utils/LICENSE +21 -0
- package/node_modules/napi-build-utils/README.md +52 -0
- package/node_modules/napi-build-utils/index.js +214 -0
- package/node_modules/napi-build-utils/index.md +0 -0
- package/node_modules/napi-build-utils/package.json +42 -0
- package/node_modules/node-abi/LICENSE +21 -0
- package/node_modules/node-abi/README.md +54 -0
- package/node_modules/node-abi/abi_registry.json +439 -0
- package/node_modules/node-abi/index.js +179 -0
- package/node_modules/node-abi/package.json +45 -0
- package/node_modules/node-addon-api/LICENSE.md +9 -0
- package/node_modules/node-addon-api/README.md +95 -0
- package/node_modules/node-addon-api/common.gypi +21 -0
- package/node_modules/node-addon-api/except.gypi +25 -0
- package/node_modules/node-addon-api/index.js +14 -0
- package/node_modules/node-addon-api/napi-inl.deprecated.h +186 -0
- package/node_modules/node-addon-api/napi-inl.h +7165 -0
- package/node_modules/node-addon-api/napi.h +3364 -0
- package/node_modules/node-addon-api/node_addon_api.gyp +42 -0
- package/node_modules/node-addon-api/node_api.gyp +9 -0
- package/node_modules/node-addon-api/noexcept.gypi +26 -0
- package/node_modules/node-addon-api/nothing.c +0 -0
- package/node_modules/node-addon-api/package-support.json +21 -0
- package/node_modules/node-addon-api/package.json +480 -0
- package/node_modules/node-addon-api/tools/README.md +73 -0
- package/node_modules/node-addon-api/tools/check-napi.js +99 -0
- package/node_modules/node-addon-api/tools/clang-format.js +71 -0
- package/node_modules/node-addon-api/tools/conversion.js +301 -0
- package/node_modules/node-gyp/.release-please-manifest.json +3 -0
- package/node_modules/node-gyp/CHANGELOG.md +1221 -0
- package/node_modules/node-gyp/CODE_OF_CONDUCT.md +4 -0
- package/node_modules/node-gyp/CONTRIBUTING.md +44 -0
- package/node_modules/node-gyp/LICENSE +24 -0
- package/node_modules/node-gyp/README.md +290 -0
- package/node_modules/node-gyp/SECURITY.md +2 -0
- package/node_modules/node-gyp/addon.gypi +204 -0
- package/node_modules/node-gyp/bin/node-gyp.js +145 -0
- package/node_modules/node-gyp/eslint.config.js +3 -0
- package/node_modules/node-gyp/gyp/.release-please-manifest.json +3 -0
- package/node_modules/node-gyp/gyp/LICENSE +28 -0
- package/node_modules/node-gyp/gyp/data/ninja/build.ninja +4 -0
- package/node_modules/node-gyp/gyp/data/win/large-pdb-shim.cc +12 -0
- package/node_modules/node-gyp/gyp/docs/GypVsCMake.md +116 -0
- package/node_modules/node-gyp/gyp/docs/Hacking.md +46 -0
- package/node_modules/node-gyp/gyp/docs/InputFormatReference.md +1083 -0
- package/node_modules/node-gyp/gyp/docs/LanguageSpecification.md +430 -0
- package/node_modules/node-gyp/gyp/docs/README.md +27 -0
- package/node_modules/node-gyp/gyp/docs/Testing.md +450 -0
- package/node_modules/node-gyp/gyp/docs/UserDocumentation.md +965 -0
- package/node_modules/node-gyp/gyp/gyp +8 -0
- package/node_modules/node-gyp/gyp/gyp.bat +5 -0
- package/node_modules/node-gyp/gyp/gyp_main.py +45 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py +365 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py +206 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py +1283 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py +1545 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py +59 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py +152 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py +270 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py +607 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/__init__.py +706 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/common.py +725 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/common_test.py +186 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py +170 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py +113 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py +55 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py +0 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py +805 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py +1169 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py +1316 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/generator/compile_commands_json.py +128 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py +104 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py +461 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py +88 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/generator/gypsh.py +55 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py +2755 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py +3970 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs_test.py +44 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py +2957 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py +77 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py +1389 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py +26 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/input.py +3097 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/input_test.py +99 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py +765 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py +1255 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py +174 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py +61 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py +371 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py +1936 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation_test.py +54 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py +301 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py +3180 -0
- package/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py +64 -0
- package/node_modules/node-gyp/gyp/pylib/packaging/LICENSE +3 -0
- package/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.APACHE +177 -0
- package/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.BSD +23 -0
- package/node_modules/node-gyp/gyp/pylib/packaging/__init__.py +15 -0
- package/node_modules/node-gyp/gyp/pylib/packaging/_elffile.py +107 -0
- package/node_modules/node-gyp/gyp/pylib/packaging/_manylinux.py +252 -0
- package/node_modules/node-gyp/gyp/pylib/packaging/_musllinux.py +83 -0
- package/node_modules/node-gyp/gyp/pylib/packaging/_parser.py +359 -0
- package/node_modules/node-gyp/gyp/pylib/packaging/_structures.py +61 -0
- package/node_modules/node-gyp/gyp/pylib/packaging/_tokenizer.py +192 -0
- package/node_modules/node-gyp/gyp/pylib/packaging/markers.py +251 -0
- package/node_modules/node-gyp/gyp/pylib/packaging/metadata.py +807 -0
- package/node_modules/node-gyp/gyp/pylib/packaging/py.typed +0 -0
- package/node_modules/node-gyp/gyp/pylib/packaging/requirements.py +90 -0
- package/node_modules/node-gyp/gyp/pylib/packaging/specifiers.py +1030 -0
- package/node_modules/node-gyp/gyp/pylib/packaging/tags.py +541 -0
- package/node_modules/node-gyp/gyp/pylib/packaging/utils.py +172 -0
- package/node_modules/node-gyp/gyp/pylib/packaging/version.py +563 -0
- package/node_modules/node-gyp/gyp/pyproject.toml +116 -0
- package/node_modules/node-gyp/gyp/release-please-config.json +11 -0
- package/node_modules/node-gyp/gyp/test_gyp.py +260 -0
- package/node_modules/node-gyp/lib/Find-VisualStudio.cs +250 -0
- package/node_modules/node-gyp/lib/build.js +230 -0
- package/node_modules/node-gyp/lib/clean.js +15 -0
- package/node_modules/node-gyp/lib/configure.js +328 -0
- package/node_modules/node-gyp/lib/create-config-gypi.js +153 -0
- package/node_modules/node-gyp/lib/download.js +86 -0
- package/node_modules/node-gyp/lib/find-node-directory.js +63 -0
- package/node_modules/node-gyp/lib/find-python.js +304 -0
- package/node_modules/node-gyp/lib/find-visualstudio.js +606 -0
- package/node_modules/node-gyp/lib/install.js +411 -0
- package/node_modules/node-gyp/lib/list.js +26 -0
- package/node_modules/node-gyp/lib/log.js +168 -0
- package/node_modules/node-gyp/lib/node-gyp.js +199 -0
- package/node_modules/node-gyp/lib/process-release.js +144 -0
- package/node_modules/node-gyp/lib/rebuild.js +12 -0
- package/node_modules/node-gyp/lib/remove.js +43 -0
- package/node_modules/node-gyp/lib/util.js +81 -0
- package/node_modules/node-gyp/macOS_Catalina_acid_test.sh +21 -0
- package/node_modules/node-gyp/package.json +52 -0
- package/node_modules/node-gyp/release-please-config.json +40 -0
- package/node_modules/node-gyp/src/win_delay_load_hook.cc +41 -0
- package/node_modules/nopt/LICENSE +15 -0
- package/node_modules/nopt/README.md +214 -0
- package/node_modules/nopt/bin/nopt.js +29 -0
- package/node_modules/nopt/lib/debug.js +5 -0
- package/node_modules/nopt/lib/nopt-lib.js +514 -0
- package/node_modules/nopt/lib/nopt.js +34 -0
- package/node_modules/nopt/lib/type-defs.js +91 -0
- package/node_modules/nopt/package.json +52 -0
- package/node_modules/once/LICENSE +15 -0
- package/node_modules/once/README.md +79 -0
- package/node_modules/once/once.js +42 -0
- package/node_modules/once/package.json +33 -0
- package/node_modules/picomatch/LICENSE +21 -0
- package/node_modules/picomatch/README.md +749 -0
- package/node_modules/picomatch/index.js +17 -0
- package/node_modules/picomatch/lib/constants.js +184 -0
- package/node_modules/picomatch/lib/parse.js +1386 -0
- package/node_modules/picomatch/lib/picomatch.js +349 -0
- package/node_modules/picomatch/lib/scan.js +391 -0
- package/node_modules/picomatch/lib/utils.js +72 -0
- package/node_modules/picomatch/package.json +82 -0
- package/node_modules/picomatch/posix.js +3 -0
- package/node_modules/prebuild-install/CHANGELOG.md +131 -0
- package/node_modules/prebuild-install/CONTRIBUTING.md +6 -0
- package/node_modules/prebuild-install/LICENSE +21 -0
- package/node_modules/prebuild-install/README.md +163 -0
- package/node_modules/prebuild-install/asset.js +44 -0
- package/node_modules/prebuild-install/bin.js +78 -0
- package/node_modules/prebuild-install/download.js +142 -0
- package/node_modules/prebuild-install/error.js +14 -0
- package/node_modules/prebuild-install/help.txt +16 -0
- package/node_modules/prebuild-install/index.js +1 -0
- package/node_modules/prebuild-install/log.js +33 -0
- package/node_modules/prebuild-install/package.json +67 -0
- package/node_modules/prebuild-install/proxy.js +35 -0
- package/node_modules/prebuild-install/rc.js +64 -0
- package/node_modules/prebuild-install/util.js +143 -0
- package/node_modules/proc-log/LICENSE +15 -0
- package/node_modules/proc-log/README.md +226 -0
- package/node_modules/proc-log/lib/index.js +158 -0
- package/node_modules/proc-log/package.json +46 -0
- package/node_modules/pump/.github/FUNDING.yml +2 -0
- package/node_modules/pump/.travis.yml +5 -0
- package/node_modules/pump/LICENSE +21 -0
- package/node_modules/pump/README.md +74 -0
- package/node_modules/pump/SECURITY.md +5 -0
- package/node_modules/pump/empty.js +1 -0
- package/node_modules/pump/index.js +86 -0
- package/node_modules/pump/package.json +30 -0
- package/node_modules/pump/test-browser.js +66 -0
- package/node_modules/pump/test-node.js +53 -0
- package/node_modules/rc/LICENSE.APACHE2 +15 -0
- package/node_modules/rc/LICENSE.BSD +26 -0
- package/node_modules/rc/LICENSE.MIT +24 -0
- package/node_modules/rc/README.md +227 -0
- package/node_modules/rc/browser.js +7 -0
- package/node_modules/rc/cli.js +4 -0
- package/node_modules/rc/index.js +53 -0
- package/node_modules/rc/lib/utils.js +104 -0
- package/node_modules/rc/package.json +29 -0
- package/node_modules/rc/test/ini.js +16 -0
- package/node_modules/rc/test/nested-env-vars.js +50 -0
- package/node_modules/rc/test/test.js +59 -0
- package/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/readable-stream/README.md +106 -0
- package/node_modules/readable-stream/errors-browser.js +127 -0
- package/node_modules/readable-stream/errors.js +116 -0
- package/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/node_modules/readable-stream/lib/_stream_duplex.js +126 -0
- package/node_modules/readable-stream/lib/_stream_passthrough.js +37 -0
- package/node_modules/readable-stream/lib/_stream_readable.js +1027 -0
- package/node_modules/readable-stream/lib/_stream_transform.js +190 -0
- package/node_modules/readable-stream/lib/_stream_writable.js +641 -0
- package/node_modules/readable-stream/lib/internal/streams/async_iterator.js +180 -0
- package/node_modules/readable-stream/lib/internal/streams/buffer_list.js +183 -0
- package/node_modules/readable-stream/lib/internal/streams/destroy.js +96 -0
- package/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +86 -0
- package/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/node_modules/readable-stream/lib/internal/streams/from.js +52 -0
- package/node_modules/readable-stream/lib/internal/streams/pipeline.js +86 -0
- package/node_modules/readable-stream/lib/internal/streams/state.js +22 -0
- package/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/readable-stream/package.json +68 -0
- package/node_modules/readable-stream/readable-browser.js +9 -0
- package/node_modules/readable-stream/readable.js +16 -0
- package/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/safe-buffer/index.js +65 -0
- package/node_modules/safe-buffer/package.json +51 -0
- package/node_modules/semver/LICENSE +15 -0
- package/node_modules/semver/README.md +665 -0
- package/node_modules/semver/bin/semver.js +191 -0
- package/node_modules/semver/classes/comparator.js +143 -0
- package/node_modules/semver/classes/index.js +7 -0
- package/node_modules/semver/classes/range.js +557 -0
- package/node_modules/semver/classes/semver.js +333 -0
- package/node_modules/semver/functions/clean.js +8 -0
- package/node_modules/semver/functions/cmp.js +54 -0
- package/node_modules/semver/functions/coerce.js +62 -0
- package/node_modules/semver/functions/compare-build.js +9 -0
- package/node_modules/semver/functions/compare-loose.js +5 -0
- package/node_modules/semver/functions/compare.js +7 -0
- package/node_modules/semver/functions/diff.js +60 -0
- package/node_modules/semver/functions/eq.js +5 -0
- package/node_modules/semver/functions/gt.js +5 -0
- package/node_modules/semver/functions/gte.js +5 -0
- package/node_modules/semver/functions/inc.js +21 -0
- package/node_modules/semver/functions/lt.js +5 -0
- package/node_modules/semver/functions/lte.js +5 -0
- package/node_modules/semver/functions/major.js +5 -0
- package/node_modules/semver/functions/minor.js +5 -0
- package/node_modules/semver/functions/neq.js +5 -0
- package/node_modules/semver/functions/parse.js +18 -0
- package/node_modules/semver/functions/patch.js +5 -0
- package/node_modules/semver/functions/prerelease.js +8 -0
- package/node_modules/semver/functions/rcompare.js +5 -0
- package/node_modules/semver/functions/rsort.js +5 -0
- package/node_modules/semver/functions/satisfies.js +12 -0
- package/node_modules/semver/functions/sort.js +5 -0
- package/node_modules/semver/functions/valid.js +8 -0
- package/node_modules/semver/index.js +91 -0
- package/node_modules/semver/internal/constants.js +37 -0
- package/node_modules/semver/internal/debug.js +11 -0
- package/node_modules/semver/internal/identifiers.js +29 -0
- package/node_modules/semver/internal/lrucache.js +42 -0
- package/node_modules/semver/internal/parse-options.js +17 -0
- package/node_modules/semver/internal/re.js +223 -0
- package/node_modules/semver/package.json +78 -0
- package/node_modules/semver/preload.js +4 -0
- package/node_modules/semver/range.bnf +16 -0
- package/node_modules/semver/ranges/gtr.js +6 -0
- package/node_modules/semver/ranges/intersects.js +9 -0
- package/node_modules/semver/ranges/ltr.js +6 -0
- package/node_modules/semver/ranges/max-satisfying.js +27 -0
- package/node_modules/semver/ranges/min-satisfying.js +26 -0
- package/node_modules/semver/ranges/min-version.js +63 -0
- package/node_modules/semver/ranges/outside.js +82 -0
- package/node_modules/semver/ranges/simplify.js +49 -0
- package/node_modules/semver/ranges/subset.js +249 -0
- package/node_modules/semver/ranges/to-comparators.js +10 -0
- package/node_modules/semver/ranges/valid.js +13 -0
- package/node_modules/simple-concat/.travis.yml +3 -0
- package/node_modules/simple-concat/LICENSE +20 -0
- package/node_modules/simple-concat/README.md +44 -0
- package/node_modules/simple-concat/index.js +15 -0
- package/node_modules/simple-concat/package.json +47 -0
- package/node_modules/simple-concat/test/basic.js +41 -0
- package/node_modules/simple-get/.github/dependabot.yml +15 -0
- package/node_modules/simple-get/.github/workflows/ci.yml +23 -0
- package/node_modules/simple-get/LICENSE +20 -0
- package/node_modules/simple-get/README.md +333 -0
- package/node_modules/simple-get/index.js +108 -0
- package/node_modules/simple-get/package.json +67 -0
- package/node_modules/sqlite3/LICENSE +25 -0
- package/node_modules/sqlite3/README.md +253 -0
- package/node_modules/sqlite3/binding.gyp +58 -0
- package/node_modules/sqlite3/build/Release/node_sqlite3.node +0 -0
- package/node_modules/sqlite3/deps/common-sqlite.gypi +60 -0
- package/node_modules/sqlite3/deps/extract.js +19 -0
- package/node_modules/sqlite3/deps/sqlite-autoconf-3520000.tar.gz +0 -0
- package/node_modules/sqlite3/deps/sqlite3.gyp +121 -0
- package/node_modules/sqlite3/lib/sqlite3-binding.js +1 -0
- package/node_modules/sqlite3/lib/sqlite3.d.ts +205 -0
- package/node_modules/sqlite3/lib/sqlite3.js +207 -0
- package/node_modules/sqlite3/lib/trace.js +38 -0
- package/node_modules/sqlite3/package.json +92 -0
- package/node_modules/sqlite3/src/async.h +76 -0
- package/node_modules/sqlite3/src/backup.cc +418 -0
- package/node_modules/sqlite3/src/backup.h +209 -0
- package/node_modules/sqlite3/src/database.cc +751 -0
- package/node_modules/sqlite3/src/database.h +188 -0
- package/node_modules/sqlite3/src/gcc-preinclude.h +31 -0
- package/node_modules/sqlite3/src/macros.h +207 -0
- package/node_modules/sqlite3/src/node_sqlite3.cc +128 -0
- package/node_modules/sqlite3/src/statement.cc +939 -0
- package/node_modules/sqlite3/src/statement.h +244 -0
- package/node_modules/sqlite3/src/threading.h +10 -0
- package/node_modules/string_decoder/LICENSE +48 -0
- package/node_modules/string_decoder/README.md +47 -0
- package/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/node_modules/string_decoder/package.json +34 -0
- package/node_modules/strip-json-comments/index.js +70 -0
- package/node_modules/strip-json-comments/license +21 -0
- package/node_modules/strip-json-comments/package.json +42 -0
- package/node_modules/strip-json-comments/readme.md +64 -0
- package/node_modules/tar/LICENSE.md +55 -0
- package/node_modules/tar/README.md +1224 -0
- package/node_modules/tar/dist/commonjs/create.d.ts +3 -0
- package/node_modules/tar/dist/commonjs/create.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/create.js +82 -0
- package/node_modules/tar/dist/commonjs/create.js.map +1 -0
- package/node_modules/tar/dist/commonjs/cwd-error.d.ts +8 -0
- package/node_modules/tar/dist/commonjs/cwd-error.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/cwd-error.js +18 -0
- package/node_modules/tar/dist/commonjs/cwd-error.js.map +1 -0
- package/node_modules/tar/dist/commonjs/extract.d.ts +3 -0
- package/node_modules/tar/dist/commonjs/extract.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/extract.js +88 -0
- package/node_modules/tar/dist/commonjs/extract.js.map +1 -0
- package/node_modules/tar/dist/commonjs/get-write-flag.d.ts +2 -0
- package/node_modules/tar/dist/commonjs/get-write-flag.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/get-write-flag.js +32 -0
- package/node_modules/tar/dist/commonjs/get-write-flag.js.map +1 -0
- package/node_modules/tar/dist/commonjs/header.d.ts +53 -0
- package/node_modules/tar/dist/commonjs/header.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/header.js +312 -0
- package/node_modules/tar/dist/commonjs/header.js.map +1 -0
- package/node_modules/tar/dist/commonjs/index.d.ts +20 -0
- package/node_modules/tar/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/index.js +64 -0
- package/node_modules/tar/dist/commonjs/index.js.map +1 -0
- package/node_modules/tar/dist/commonjs/index.min.js +4 -0
- package/node_modules/tar/dist/commonjs/index.min.js.map +7 -0
- package/node_modules/tar/dist/commonjs/large-numbers.d.ts +3 -0
- package/node_modules/tar/dist/commonjs/large-numbers.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/large-numbers.js +99 -0
- package/node_modules/tar/dist/commonjs/large-numbers.js.map +1 -0
- package/node_modules/tar/dist/commonjs/list.d.ts +7 -0
- package/node_modules/tar/dist/commonjs/list.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/list.js +145 -0
- package/node_modules/tar/dist/commonjs/list.js.map +1 -0
- package/node_modules/tar/dist/commonjs/make-command.d.ts +49 -0
- package/node_modules/tar/dist/commonjs/make-command.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/make-command.js +52 -0
- package/node_modules/tar/dist/commonjs/make-command.js.map +1 -0
- package/node_modules/tar/dist/commonjs/mkdir.d.ts +25 -0
- package/node_modules/tar/dist/commonjs/mkdir.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/mkdir.js +187 -0
- package/node_modules/tar/dist/commonjs/mkdir.js.map +1 -0
- package/node_modules/tar/dist/commonjs/mode-fix.d.ts +2 -0
- package/node_modules/tar/dist/commonjs/mode-fix.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/mode-fix.js +29 -0
- package/node_modules/tar/dist/commonjs/mode-fix.js.map +1 -0
- package/node_modules/tar/dist/commonjs/normalize-unicode.d.ts +2 -0
- package/node_modules/tar/dist/commonjs/normalize-unicode.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/normalize-unicode.js +38 -0
- package/node_modules/tar/dist/commonjs/normalize-unicode.js.map +1 -0
- package/node_modules/tar/dist/commonjs/normalize-windows-path.d.ts +2 -0
- package/node_modules/tar/dist/commonjs/normalize-windows-path.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/normalize-windows-path.js +12 -0
- package/node_modules/tar/dist/commonjs/normalize-windows-path.js.map +1 -0
- package/node_modules/tar/dist/commonjs/options.d.ts +596 -0
- package/node_modules/tar/dist/commonjs/options.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/options.js +66 -0
- package/node_modules/tar/dist/commonjs/options.js.map +1 -0
- package/node_modules/tar/dist/commonjs/pack.d.ts +105 -0
- package/node_modules/tar/dist/commonjs/pack.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/pack.js +545 -0
- package/node_modules/tar/dist/commonjs/pack.js.map +1 -0
- package/node_modules/tar/dist/commonjs/package.json +3 -0
- package/node_modules/tar/dist/commonjs/parse.d.ts +85 -0
- package/node_modules/tar/dist/commonjs/parse.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/parse.js +610 -0
- package/node_modules/tar/dist/commonjs/parse.js.map +1 -0
- package/node_modules/tar/dist/commonjs/path-reservations.d.ts +11 -0
- package/node_modules/tar/dist/commonjs/path-reservations.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/path-reservations.js +170 -0
- package/node_modules/tar/dist/commonjs/path-reservations.js.map +1 -0
- package/node_modules/tar/dist/commonjs/pax.d.ts +26 -0
- package/node_modules/tar/dist/commonjs/pax.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/pax.js +158 -0
- package/node_modules/tar/dist/commonjs/pax.js.map +1 -0
- package/node_modules/tar/dist/commonjs/process-umask.d.ts +2 -0
- package/node_modules/tar/dist/commonjs/process-umask.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/process-umask.js +7 -0
- package/node_modules/tar/dist/commonjs/process-umask.js.map +1 -0
- package/node_modules/tar/dist/commonjs/read-entry.d.ts +36 -0
- package/node_modules/tar/dist/commonjs/read-entry.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/read-entry.js +136 -0
- package/node_modules/tar/dist/commonjs/read-entry.js.map +1 -0
- package/node_modules/tar/dist/commonjs/replace.d.ts +2 -0
- package/node_modules/tar/dist/commonjs/replace.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/replace.js +227 -0
- package/node_modules/tar/dist/commonjs/replace.js.map +1 -0
- package/node_modules/tar/dist/commonjs/strip-absolute-path.d.ts +2 -0
- package/node_modules/tar/dist/commonjs/strip-absolute-path.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/strip-absolute-path.js +29 -0
- package/node_modules/tar/dist/commonjs/strip-absolute-path.js.map +1 -0
- package/node_modules/tar/dist/commonjs/strip-trailing-slashes.d.ts +2 -0
- package/node_modules/tar/dist/commonjs/strip-trailing-slashes.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/strip-trailing-slashes.js +18 -0
- package/node_modules/tar/dist/commonjs/strip-trailing-slashes.js.map +1 -0
- package/node_modules/tar/dist/commonjs/symlink-error.d.ts +9 -0
- package/node_modules/tar/dist/commonjs/symlink-error.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/symlink-error.js +19 -0
- package/node_modules/tar/dist/commonjs/symlink-error.js.map +1 -0
- package/node_modules/tar/dist/commonjs/types.d.ts +7 -0
- package/node_modules/tar/dist/commonjs/types.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/types.js +50 -0
- package/node_modules/tar/dist/commonjs/types.js.map +1 -0
- package/node_modules/tar/dist/commonjs/unpack.d.ts +101 -0
- package/node_modules/tar/dist/commonjs/unpack.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/unpack.js +932 -0
- package/node_modules/tar/dist/commonjs/unpack.js.map +1 -0
- package/node_modules/tar/dist/commonjs/update.d.ts +2 -0
- package/node_modules/tar/dist/commonjs/update.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/update.js +33 -0
- package/node_modules/tar/dist/commonjs/update.js.map +1 -0
- package/node_modules/tar/dist/commonjs/warn-method.d.ts +24 -0
- package/node_modules/tar/dist/commonjs/warn-method.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/warn-method.js +31 -0
- package/node_modules/tar/dist/commonjs/warn-method.js.map +1 -0
- package/node_modules/tar/dist/commonjs/winchars.d.ts +3 -0
- package/node_modules/tar/dist/commonjs/winchars.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/winchars.js +14 -0
- package/node_modules/tar/dist/commonjs/winchars.js.map +1 -0
- package/node_modules/tar/dist/commonjs/write-entry.d.ts +129 -0
- package/node_modules/tar/dist/commonjs/write-entry.d.ts.map +1 -0
- package/node_modules/tar/dist/commonjs/write-entry.js +698 -0
- package/node_modules/tar/dist/commonjs/write-entry.js.map +1 -0
- package/node_modules/tar/dist/esm/create.d.ts +3 -0
- package/node_modules/tar/dist/esm/create.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/create.js +76 -0
- package/node_modules/tar/dist/esm/create.js.map +1 -0
- package/node_modules/tar/dist/esm/cwd-error.d.ts +8 -0
- package/node_modules/tar/dist/esm/cwd-error.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/cwd-error.js +14 -0
- package/node_modules/tar/dist/esm/cwd-error.js.map +1 -0
- package/node_modules/tar/dist/esm/extract.d.ts +3 -0
- package/node_modules/tar/dist/esm/extract.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/extract.js +49 -0
- package/node_modules/tar/dist/esm/extract.js.map +1 -0
- package/node_modules/tar/dist/esm/get-write-flag.d.ts +2 -0
- package/node_modules/tar/dist/esm/get-write-flag.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/get-write-flag.js +26 -0
- package/node_modules/tar/dist/esm/get-write-flag.js.map +1 -0
- package/node_modules/tar/dist/esm/header.d.ts +53 -0
- package/node_modules/tar/dist/esm/header.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/header.js +275 -0
- package/node_modules/tar/dist/esm/header.js.map +1 -0
- package/node_modules/tar/dist/esm/index.d.ts +20 -0
- package/node_modules/tar/dist/esm/index.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/index.js +20 -0
- package/node_modules/tar/dist/esm/index.js.map +1 -0
- package/node_modules/tar/dist/esm/index.min.js +4 -0
- package/node_modules/tar/dist/esm/index.min.js.map +7 -0
- package/node_modules/tar/dist/esm/large-numbers.d.ts +3 -0
- package/node_modules/tar/dist/esm/large-numbers.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/large-numbers.js +94 -0
- package/node_modules/tar/dist/esm/large-numbers.js.map +1 -0
- package/node_modules/tar/dist/esm/list.d.ts +7 -0
- package/node_modules/tar/dist/esm/list.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/list.js +105 -0
- package/node_modules/tar/dist/esm/list.js.map +1 -0
- package/node_modules/tar/dist/esm/make-command.d.ts +49 -0
- package/node_modules/tar/dist/esm/make-command.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/make-command.js +48 -0
- package/node_modules/tar/dist/esm/make-command.js.map +1 -0
- package/node_modules/tar/dist/esm/mkdir.d.ts +25 -0
- package/node_modules/tar/dist/esm/mkdir.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/mkdir.js +179 -0
- package/node_modules/tar/dist/esm/mkdir.js.map +1 -0
- package/node_modules/tar/dist/esm/mode-fix.d.ts +2 -0
- package/node_modules/tar/dist/esm/mode-fix.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/mode-fix.js +25 -0
- package/node_modules/tar/dist/esm/mode-fix.js.map +1 -0
- package/node_modules/tar/dist/esm/normalize-unicode.d.ts +2 -0
- package/node_modules/tar/dist/esm/normalize-unicode.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/normalize-unicode.js +34 -0
- package/node_modules/tar/dist/esm/normalize-unicode.js.map +1 -0
- package/node_modules/tar/dist/esm/normalize-windows-path.d.ts +2 -0
- package/node_modules/tar/dist/esm/normalize-windows-path.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/normalize-windows-path.js +9 -0
- package/node_modules/tar/dist/esm/normalize-windows-path.js.map +1 -0
- package/node_modules/tar/dist/esm/options.d.ts +596 -0
- package/node_modules/tar/dist/esm/options.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/options.js +54 -0
- package/node_modules/tar/dist/esm/options.js.map +1 -0
- package/node_modules/tar/dist/esm/pack.d.ts +105 -0
- package/node_modules/tar/dist/esm/pack.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/pack.js +503 -0
- package/node_modules/tar/dist/esm/pack.js.map +1 -0
- package/node_modules/tar/dist/esm/package.json +3 -0
- package/node_modules/tar/dist/esm/parse.d.ts +85 -0
- package/node_modules/tar/dist/esm/parse.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/parse.js +606 -0
- package/node_modules/tar/dist/esm/parse.js.map +1 -0
- package/node_modules/tar/dist/esm/path-reservations.d.ts +11 -0
- package/node_modules/tar/dist/esm/path-reservations.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/path-reservations.js +166 -0
- package/node_modules/tar/dist/esm/path-reservations.js.map +1 -0
- package/node_modules/tar/dist/esm/pax.d.ts +26 -0
- package/node_modules/tar/dist/esm/pax.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/pax.js +154 -0
- package/node_modules/tar/dist/esm/pax.js.map +1 -0
- package/node_modules/tar/dist/esm/process-umask.d.ts +2 -0
- package/node_modules/tar/dist/esm/process-umask.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/process-umask.js +3 -0
- package/node_modules/tar/dist/esm/process-umask.js.map +1 -0
- package/node_modules/tar/dist/esm/read-entry.d.ts +36 -0
- package/node_modules/tar/dist/esm/read-entry.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/read-entry.js +132 -0
- package/node_modules/tar/dist/esm/read-entry.js.map +1 -0
- package/node_modules/tar/dist/esm/replace.d.ts +2 -0
- package/node_modules/tar/dist/esm/replace.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/replace.js +221 -0
- package/node_modules/tar/dist/esm/replace.js.map +1 -0
- package/node_modules/tar/dist/esm/strip-absolute-path.d.ts +2 -0
- package/node_modules/tar/dist/esm/strip-absolute-path.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/strip-absolute-path.js +25 -0
- package/node_modules/tar/dist/esm/strip-absolute-path.js.map +1 -0
- package/node_modules/tar/dist/esm/strip-trailing-slashes.d.ts +2 -0
- package/node_modules/tar/dist/esm/strip-trailing-slashes.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/strip-trailing-slashes.js +14 -0
- package/node_modules/tar/dist/esm/strip-trailing-slashes.js.map +1 -0
- package/node_modules/tar/dist/esm/symlink-error.d.ts +9 -0
- package/node_modules/tar/dist/esm/symlink-error.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/symlink-error.js +15 -0
- package/node_modules/tar/dist/esm/symlink-error.js.map +1 -0
- package/node_modules/tar/dist/esm/types.d.ts +7 -0
- package/node_modules/tar/dist/esm/types.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/types.js +45 -0
- package/node_modules/tar/dist/esm/types.js.map +1 -0
- package/node_modules/tar/dist/esm/unpack.d.ts +101 -0
- package/node_modules/tar/dist/esm/unpack.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/unpack.js +891 -0
- package/node_modules/tar/dist/esm/unpack.js.map +1 -0
- package/node_modules/tar/dist/esm/update.d.ts +2 -0
- package/node_modules/tar/dist/esm/update.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/update.js +30 -0
- package/node_modules/tar/dist/esm/update.js.map +1 -0
- package/node_modules/tar/dist/esm/warn-method.d.ts +24 -0
- package/node_modules/tar/dist/esm/warn-method.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/warn-method.js +27 -0
- package/node_modules/tar/dist/esm/warn-method.js.map +1 -0
- package/node_modules/tar/dist/esm/winchars.d.ts +3 -0
- package/node_modules/tar/dist/esm/winchars.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/winchars.js +9 -0
- package/node_modules/tar/dist/esm/winchars.js.map +1 -0
- package/node_modules/tar/dist/esm/write-entry.d.ts +129 -0
- package/node_modules/tar/dist/esm/write-entry.d.ts.map +1 -0
- package/node_modules/tar/dist/esm/write-entry.js +656 -0
- package/node_modules/tar/dist/esm/write-entry.js.map +1 -0
- package/node_modules/tar/package.json +297 -0
- package/node_modules/tar-fs/.travis.yml +6 -0
- package/node_modules/tar-fs/LICENSE +21 -0
- package/node_modules/tar-fs/README.md +165 -0
- package/node_modules/tar-fs/index.js +363 -0
- package/node_modules/tar-fs/node_modules/chownr/LICENSE +15 -0
- package/node_modules/tar-fs/node_modules/chownr/README.md +3 -0
- package/node_modules/tar-fs/node_modules/chownr/chownr.js +167 -0
- package/node_modules/tar-fs/node_modules/chownr/package.json +29 -0
- package/node_modules/tar-fs/package.json +41 -0
- package/node_modules/tar-fs/test/fixtures/a/hello.txt +1 -0
- package/node_modules/tar-fs/test/fixtures/b/a/test.txt +1 -0
- package/node_modules/tar-fs/test/fixtures/d/file1 +0 -0
- package/node_modules/tar-fs/test/fixtures/d/file2 +0 -0
- package/node_modules/tar-fs/test/fixtures/d/sub-dir/file5 +0 -0
- package/node_modules/tar-fs/test/fixtures/d/sub-files/file3 +0 -0
- package/node_modules/tar-fs/test/fixtures/d/sub-files/file4 +0 -0
- package/node_modules/tar-fs/test/fixtures/e/directory/.ignore +0 -0
- package/node_modules/tar-fs/test/fixtures/e/file +0 -0
- package/node_modules/tar-fs/test/fixtures/invalid.tar +0 -0
- package/node_modules/tar-fs/test/index.js +346 -0
- package/node_modules/tar-stream/LICENSE +21 -0
- package/node_modules/tar-stream/README.md +168 -0
- package/node_modules/tar-stream/extract.js +257 -0
- package/node_modules/tar-stream/headers.js +295 -0
- package/node_modules/tar-stream/index.js +2 -0
- package/node_modules/tar-stream/pack.js +255 -0
- package/node_modules/tar-stream/package.json +58 -0
- package/node_modules/tar-stream/sandbox.js +11 -0
- package/node_modules/tinyglobby/LICENSE +21 -0
- package/node_modules/tinyglobby/README.md +25 -0
- package/node_modules/tinyglobby/dist/index.cjs +334 -0
- package/node_modules/tinyglobby/dist/index.d.cts +148 -0
- package/node_modules/tinyglobby/dist/index.d.mts +148 -0
- package/node_modules/tinyglobby/dist/index.mjs +306 -0
- package/node_modules/tinyglobby/package.json +73 -0
- package/node_modules/tunnel-agent/LICENSE +55 -0
- package/node_modules/tunnel-agent/README.md +4 -0
- package/node_modules/tunnel-agent/index.js +244 -0
- package/node_modules/tunnel-agent/package.json +22 -0
- package/node_modules/undici/LICENSE +21 -0
- package/node_modules/undici/README.md +741 -0
- package/node_modules/undici/docs/docs/api/Agent.md +84 -0
- package/node_modules/undici/docs/docs/api/BalancedPool.md +99 -0
- package/node_modules/undici/docs/docs/api/CacheStorage.md +30 -0
- package/node_modules/undici/docs/docs/api/CacheStore.md +164 -0
- package/node_modules/undici/docs/docs/api/Client.md +285 -0
- package/node_modules/undici/docs/docs/api/ClientStats.md +27 -0
- package/node_modules/undici/docs/docs/api/Connector.md +115 -0
- package/node_modules/undici/docs/docs/api/ContentType.md +57 -0
- package/node_modules/undici/docs/docs/api/Cookies.md +101 -0
- package/node_modules/undici/docs/docs/api/Debug.md +62 -0
- package/node_modules/undici/docs/docs/api/DiagnosticsChannel.md +315 -0
- package/node_modules/undici/docs/docs/api/Dispatcher.md +1392 -0
- package/node_modules/undici/docs/docs/api/EnvHttpProxyAgent.md +159 -0
- package/node_modules/undici/docs/docs/api/Errors.md +49 -0
- package/node_modules/undici/docs/docs/api/EventSource.md +45 -0
- package/node_modules/undici/docs/docs/api/Fetch.md +60 -0
- package/node_modules/undici/docs/docs/api/GlobalInstallation.md +139 -0
- package/node_modules/undici/docs/docs/api/H2CClient.md +263 -0
- package/node_modules/undici/docs/docs/api/MockAgent.md +603 -0
- package/node_modules/undici/docs/docs/api/MockCallHistory.md +197 -0
- package/node_modules/undici/docs/docs/api/MockCallHistoryLog.md +43 -0
- package/node_modules/undici/docs/docs/api/MockClient.md +81 -0
- package/node_modules/undici/docs/docs/api/MockErrors.md +12 -0
- package/node_modules/undici/docs/docs/api/MockPool.md +555 -0
- package/node_modules/undici/docs/docs/api/Pool.md +84 -0
- package/node_modules/undici/docs/docs/api/PoolStats.md +35 -0
- package/node_modules/undici/docs/docs/api/ProxyAgent.md +229 -0
- package/node_modules/undici/docs/docs/api/RedirectHandler.md +93 -0
- package/node_modules/undici/docs/docs/api/RetryAgent.md +50 -0
- package/node_modules/undici/docs/docs/api/RetryHandler.md +118 -0
- package/node_modules/undici/docs/docs/api/RoundRobinPool.md +145 -0
- package/node_modules/undici/docs/docs/api/SnapshotAgent.md +616 -0
- package/node_modules/undici/docs/docs/api/Socks5ProxyAgent.md +274 -0
- package/node_modules/undici/docs/docs/api/Util.md +25 -0
- package/node_modules/undici/docs/docs/api/WebSocket.md +141 -0
- package/node_modules/undici/docs/docs/api/api-lifecycle.md +91 -0
- package/node_modules/undici/docs/docs/best-practices/client-certificate.md +64 -0
- package/node_modules/undici/docs/docs/best-practices/crawling.md +58 -0
- package/node_modules/undici/docs/docs/best-practices/mocking-request.md +190 -0
- package/node_modules/undici/docs/docs/best-practices/proxy.md +127 -0
- package/node_modules/undici/docs/docs/best-practices/undici-vs-builtin-fetch.md +224 -0
- package/node_modules/undici/docs/docs/best-practices/writing-tests.md +63 -0
- package/node_modules/undici/index-fetch.js +65 -0
- package/node_modules/undici/index.d.ts +3 -0
- package/node_modules/undici/index.js +234 -0
- package/node_modules/undici/lib/api/abort-signal.js +59 -0
- package/node_modules/undici/lib/api/api-connect.js +110 -0
- package/node_modules/undici/lib/api/api-pipeline.js +252 -0
- package/node_modules/undici/lib/api/api-request.js +214 -0
- package/node_modules/undici/lib/api/api-stream.js +209 -0
- package/node_modules/undici/lib/api/api-upgrade.js +111 -0
- package/node_modules/undici/lib/api/index.js +7 -0
- package/node_modules/undici/lib/api/readable.js +580 -0
- package/node_modules/undici/lib/cache/memory-cache-store.js +234 -0
- package/node_modules/undici/lib/cache/sqlite-cache-store.js +461 -0
- package/node_modules/undici/lib/core/connect.js +137 -0
- package/node_modules/undici/lib/core/constants.js +143 -0
- package/node_modules/undici/lib/core/diagnostics.js +227 -0
- package/node_modules/undici/lib/core/errors.js +477 -0
- package/node_modules/undici/lib/core/request.js +438 -0
- package/node_modules/undici/lib/core/socks5-client.js +407 -0
- package/node_modules/undici/lib/core/socks5-utils.js +203 -0
- package/node_modules/undici/lib/core/symbols.js +75 -0
- package/node_modules/undici/lib/core/tree.js +160 -0
- package/node_modules/undici/lib/core/util.js +992 -0
- package/node_modules/undici/lib/dispatcher/agent.js +158 -0
- package/node_modules/undici/lib/dispatcher/balanced-pool.js +219 -0
- package/node_modules/undici/lib/dispatcher/client-h1.js +1610 -0
- package/node_modules/undici/lib/dispatcher/client-h2.js +995 -0
- package/node_modules/undici/lib/dispatcher/client.js +659 -0
- package/node_modules/undici/lib/dispatcher/dispatcher-base.js +165 -0
- package/node_modules/undici/lib/dispatcher/dispatcher.js +48 -0
- package/node_modules/undici/lib/dispatcher/env-http-proxy-agent.js +146 -0
- package/node_modules/undici/lib/dispatcher/fixed-queue.js +135 -0
- package/node_modules/undici/lib/dispatcher/h2c-client.js +51 -0
- package/node_modules/undici/lib/dispatcher/pool-base.js +214 -0
- package/node_modules/undici/lib/dispatcher/pool.js +118 -0
- package/node_modules/undici/lib/dispatcher/proxy-agent.js +318 -0
- package/node_modules/undici/lib/dispatcher/retry-agent.js +35 -0
- package/node_modules/undici/lib/dispatcher/round-robin-pool.js +137 -0
- package/node_modules/undici/lib/dispatcher/socks5-proxy-agent.js +249 -0
- package/node_modules/undici/lib/encoding/index.js +33 -0
- package/node_modules/undici/lib/global.js +50 -0
- package/node_modules/undici/lib/handler/cache-handler.js +578 -0
- package/node_modules/undici/lib/handler/cache-revalidation-handler.js +124 -0
- package/node_modules/undici/lib/handler/decorator-handler.js +67 -0
- package/node_modules/undici/lib/handler/deduplication-handler.js +460 -0
- package/node_modules/undici/lib/handler/redirect-handler.js +238 -0
- package/node_modules/undici/lib/handler/retry-handler.js +394 -0
- package/node_modules/undici/lib/handler/unwrap-handler.js +100 -0
- package/node_modules/undici/lib/handler/wrap-handler.js +105 -0
- package/node_modules/undici/lib/interceptor/cache.js +495 -0
- package/node_modules/undici/lib/interceptor/decompress.js +259 -0
- package/node_modules/undici/lib/interceptor/deduplicate.js +117 -0
- package/node_modules/undici/lib/interceptor/dns.js +571 -0
- package/node_modules/undici/lib/interceptor/dump.js +112 -0
- package/node_modules/undici/lib/interceptor/redirect.js +21 -0
- package/node_modules/undici/lib/interceptor/response-error.js +95 -0
- package/node_modules/undici/lib/interceptor/retry.js +19 -0
- package/node_modules/undici/lib/llhttp/.gitkeep +0 -0
- package/node_modules/undici/lib/llhttp/constants.d.ts +195 -0
- package/node_modules/undici/lib/llhttp/constants.js +531 -0
- package/node_modules/undici/lib/llhttp/llhttp-wasm.js +15 -0
- package/node_modules/undici/lib/llhttp/llhttp_simd-wasm.js +15 -0
- package/node_modules/undici/lib/llhttp/utils.d.ts +2 -0
- package/node_modules/undici/lib/llhttp/utils.js +12 -0
- package/node_modules/undici/lib/mock/mock-agent.js +232 -0
- package/node_modules/undici/lib/mock/mock-call-history.js +248 -0
- package/node_modules/undici/lib/mock/mock-client.js +68 -0
- package/node_modules/undici/lib/mock/mock-errors.js +29 -0
- package/node_modules/undici/lib/mock/mock-interceptor.js +209 -0
- package/node_modules/undici/lib/mock/mock-pool.js +68 -0
- package/node_modules/undici/lib/mock/mock-symbols.js +32 -0
- package/node_modules/undici/lib/mock/mock-utils.js +486 -0
- package/node_modules/undici/lib/mock/pending-interceptors-formatter.js +43 -0
- package/node_modules/undici/lib/mock/snapshot-agent.js +353 -0
- package/node_modules/undici/lib/mock/snapshot-recorder.js +588 -0
- package/node_modules/undici/lib/mock/snapshot-utils.js +158 -0
- package/node_modules/undici/lib/util/cache.js +407 -0
- package/node_modules/undici/lib/util/date.js +653 -0
- package/node_modules/undici/lib/util/promise.js +28 -0
- package/node_modules/undici/lib/util/runtime-features.js +124 -0
- package/node_modules/undici/lib/util/stats.js +32 -0
- package/node_modules/undici/lib/util/timers.js +425 -0
- package/node_modules/undici/lib/web/cache/cache.js +864 -0
- package/node_modules/undici/lib/web/cache/cachestorage.js +152 -0
- package/node_modules/undici/lib/web/cache/util.js +45 -0
- package/node_modules/undici/lib/web/cookies/constants.js +12 -0
- package/node_modules/undici/lib/web/cookies/index.js +199 -0
- package/node_modules/undici/lib/web/cookies/parse.js +322 -0
- package/node_modules/undici/lib/web/cookies/util.js +282 -0
- package/node_modules/undici/lib/web/eventsource/eventsource-stream.js +399 -0
- package/node_modules/undici/lib/web/eventsource/eventsource.js +501 -0
- package/node_modules/undici/lib/web/eventsource/util.js +29 -0
- package/node_modules/undici/lib/web/fetch/LICENSE +21 -0
- package/node_modules/undici/lib/web/fetch/body.js +509 -0
- package/node_modules/undici/lib/web/fetch/constants.js +131 -0
- package/node_modules/undici/lib/web/fetch/data-url.js +596 -0
- package/node_modules/undici/lib/web/fetch/formdata-parser.js +575 -0
- package/node_modules/undici/lib/web/fetch/formdata.js +259 -0
- package/node_modules/undici/lib/web/fetch/global.js +40 -0
- package/node_modules/undici/lib/web/fetch/headers.js +719 -0
- package/node_modules/undici/lib/web/fetch/index.js +2410 -0
- package/node_modules/undici/lib/web/fetch/request.js +1115 -0
- package/node_modules/undici/lib/web/fetch/response.js +641 -0
- package/node_modules/undici/lib/web/fetch/util.js +1522 -0
- package/node_modules/undici/lib/web/infra/index.js +229 -0
- package/node_modules/undici/lib/web/subresource-integrity/Readme.md +9 -0
- package/node_modules/undici/lib/web/subresource-integrity/subresource-integrity.js +307 -0
- package/node_modules/undici/lib/web/webidl/index.js +1006 -0
- package/node_modules/undici/lib/web/websocket/connection.js +329 -0
- package/node_modules/undici/lib/web/websocket/constants.js +126 -0
- package/node_modules/undici/lib/web/websocket/events.js +331 -0
- package/node_modules/undici/lib/web/websocket/frame.js +133 -0
- package/node_modules/undici/lib/web/websocket/permessage-deflate.js +118 -0
- package/node_modules/undici/lib/web/websocket/receiver.js +450 -0
- package/node_modules/undici/lib/web/websocket/sender.js +109 -0
- package/node_modules/undici/lib/web/websocket/stream/websocketerror.js +104 -0
- package/node_modules/undici/lib/web/websocket/stream/websocketstream.js +497 -0
- package/node_modules/undici/lib/web/websocket/util.js +347 -0
- package/node_modules/undici/lib/web/websocket/websocket.js +751 -0
- package/node_modules/undici/package.json +152 -0
- package/node_modules/undici/scripts/strip-comments.js +10 -0
- package/node_modules/undici/types/README.md +6 -0
- package/node_modules/undici/types/agent.d.ts +32 -0
- package/node_modules/undici/types/api.d.ts +43 -0
- package/node_modules/undici/types/balanced-pool.d.ts +30 -0
- package/node_modules/undici/types/cache-interceptor.d.ts +179 -0
- package/node_modules/undici/types/cache.d.ts +36 -0
- package/node_modules/undici/types/client-stats.d.ts +15 -0
- package/node_modules/undici/types/client.d.ts +123 -0
- package/node_modules/undici/types/connector.d.ts +36 -0
- package/node_modules/undici/types/content-type.d.ts +21 -0
- package/node_modules/undici/types/cookies.d.ts +30 -0
- package/node_modules/undici/types/diagnostics-channel.d.ts +74 -0
- package/node_modules/undici/types/dispatcher.d.ts +273 -0
- package/node_modules/undici/types/env-http-proxy-agent.d.ts +22 -0
- package/node_modules/undici/types/errors.d.ts +177 -0
- package/node_modules/undici/types/eventsource.d.ts +66 -0
- package/node_modules/undici/types/fetch.d.ts +231 -0
- package/node_modules/undici/types/formdata.d.ts +114 -0
- package/node_modules/undici/types/global-dispatcher.d.ts +9 -0
- package/node_modules/undici/types/global-origin.d.ts +7 -0
- package/node_modules/undici/types/h2c-client.d.ts +73 -0
- package/node_modules/undici/types/handlers.d.ts +14 -0
- package/node_modules/undici/types/header.d.ts +160 -0
- package/node_modules/undici/types/index.d.ts +91 -0
- package/node_modules/undici/types/interceptors.d.ts +80 -0
- package/node_modules/undici/types/mock-agent.d.ts +68 -0
- package/node_modules/undici/types/mock-call-history.d.ts +111 -0
- package/node_modules/undici/types/mock-client.d.ts +27 -0
- package/node_modules/undici/types/mock-errors.d.ts +12 -0
- package/node_modules/undici/types/mock-interceptor.d.ts +94 -0
- package/node_modules/undici/types/mock-pool.d.ts +27 -0
- package/node_modules/undici/types/patch.d.ts +29 -0
- package/node_modules/undici/types/pool-stats.d.ts +19 -0
- package/node_modules/undici/types/pool.d.ts +41 -0
- package/node_modules/undici/types/proxy-agent.d.ts +29 -0
- package/node_modules/undici/types/readable.d.ts +68 -0
- package/node_modules/undici/types/retry-agent.d.ts +8 -0
- package/node_modules/undici/types/retry-handler.d.ts +125 -0
- package/node_modules/undici/types/round-robin-pool.d.ts +41 -0
- package/node_modules/undici/types/snapshot-agent.d.ts +109 -0
- package/node_modules/undici/types/socks5-proxy-agent.d.ts +25 -0
- package/node_modules/undici/types/util.d.ts +18 -0
- package/node_modules/undici/types/utility.d.ts +7 -0
- package/node_modules/undici/types/webidl.d.ts +347 -0
- package/node_modules/undici/types/websocket.d.ts +188 -0
- package/node_modules/util-deprecate/History.md +16 -0
- package/node_modules/util-deprecate/LICENSE +24 -0
- package/node_modules/util-deprecate/README.md +53 -0
- package/node_modules/util-deprecate/browser.js +67 -0
- package/node_modules/util-deprecate/node.js +6 -0
- package/node_modules/util-deprecate/package.json +27 -0
- package/node_modules/which/LICENSE +15 -0
- package/node_modules/which/README.md +51 -0
- package/node_modules/which/bin/which.js +52 -0
- package/node_modules/which/lib/index.js +111 -0
- package/node_modules/which/package.json +52 -0
- package/node_modules/wrappy/LICENSE +15 -0
- package/node_modules/wrappy/README.md +36 -0
- package/node_modules/wrappy/package.json +29 -0
- package/node_modules/wrappy/wrappy.js +33 -0
- package/node_modules/yallist/LICENSE.md +63 -0
- package/node_modules/yallist/README.md +205 -0
- package/node_modules/yallist/dist/commonjs/index.d.ts +39 -0
- package/node_modules/yallist/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/yallist/dist/commonjs/index.js +384 -0
- package/node_modules/yallist/dist/commonjs/index.js.map +1 -0
- package/node_modules/yallist/dist/commonjs/package.json +3 -0
- package/node_modules/yallist/dist/esm/index.d.ts +39 -0
- package/node_modules/yallist/dist/esm/index.d.ts.map +1 -0
- package/node_modules/yallist/dist/esm/index.js +379 -0
- package/node_modules/yallist/dist/esm/index.js.map +1 -0
- package/node_modules/yallist/dist/esm/package.json +3 -0
- package/node_modules/yallist/package.json +68 -0
- package/node_modules/zod/LICENSE +21 -0
- package/node_modules/zod/README.md +208 -0
- package/node_modules/zod/index.cjs +33 -0
- package/node_modules/zod/index.d.cts +4 -0
- package/node_modules/zod/index.d.ts +4 -0
- package/node_modules/zod/index.js +4 -0
- package/node_modules/zod/package.json +118 -0
- package/node_modules/zod/src/index.ts +4 -0
- package/node_modules/zod/src/v3/ZodError.ts +330 -0
- package/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
- package/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
- package/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
- package/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
- package/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
- package/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
- package/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
- package/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
- package/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
- package/node_modules/zod/src/v3/errors.ts +13 -0
- package/node_modules/zod/src/v3/external.ts +6 -0
- package/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
- package/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
- package/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
- package/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
- package/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
- package/node_modules/zod/src/v3/helpers/util.ts +224 -0
- package/node_modules/zod/src/v3/index.ts +4 -0
- package/node_modules/zod/src/v3/locales/en.ts +124 -0
- package/node_modules/zod/src/v3/standard-schema.ts +113 -0
- package/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
- package/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
- package/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
- package/node_modules/zod/src/v3/tests/array.test.ts +71 -0
- package/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
- package/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
- package/node_modules/zod/src/v3/tests/base.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
- package/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
- package/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
- package/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
- package/node_modules/zod/src/v3/tests/complex.test.ts +56 -0
- package/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
- package/node_modules/zod/src/v3/tests/date.test.ts +32 -0
- package/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
- package/node_modules/zod/src/v3/tests/default.test.ts +112 -0
- package/node_modules/zod/src/v3/tests/description.test.ts +33 -0
- package/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
- package/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
- package/node_modules/zod/src/v3/tests/error.test.ts +551 -0
- package/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
- package/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
- package/node_modules/zod/src/v3/tests/function.test.ts +257 -0
- package/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
- package/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
- package/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
- package/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
- package/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
- package/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
- package/node_modules/zod/src/v3/tests/map.test.ts +110 -0
- package/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
- package/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
- package/node_modules/zod/src/v3/tests/nan.test.ts +21 -0
- package/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
- package/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
- package/node_modules/zod/src/v3/tests/number.test.ts +176 -0
- package/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/object.test.ts +434 -0
- package/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
- package/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
- package/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
- package/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
- package/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
- package/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
- package/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
- package/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
- package/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
- package/node_modules/zod/src/v3/tests/record.test.ts +171 -0
- package/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
- package/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
- package/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
- package/node_modules/zod/src/v3/tests/set.test.ts +142 -0
- package/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
- package/node_modules/zod/src/v3/tests/string.test.ts +916 -0
- package/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
- package/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
- package/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
- package/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
- package/node_modules/zod/src/v3/tests/void.test.ts +15 -0
- package/node_modules/zod/src/v3/types.ts +5136 -0
- package/node_modules/zod/src/v4/classic/checks.ts +30 -0
- package/node_modules/zod/src/v4/classic/coerce.ts +27 -0
- package/node_modules/zod/src/v4/classic/compat.ts +66 -0
- package/node_modules/zod/src/v4/classic/errors.ts +75 -0
- package/node_modules/zod/src/v4/classic/external.ts +50 -0
- package/node_modules/zod/src/v4/classic/index.ts +5 -0
- package/node_modules/zod/src/v4/classic/iso.ts +90 -0
- package/node_modules/zod/src/v4/classic/parse.ts +33 -0
- package/node_modules/zod/src/v4/classic/schemas.ts +2054 -0
- package/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
- package/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
- package/node_modules/zod/src/v4/classic/tests/assignability.test.ts +210 -0
- package/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
- package/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
- package/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
- package/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
- package/node_modules/zod/src/v4/classic/tests/brand.test.ts +63 -0
- package/node_modules/zod/src/v4/classic/tests/catch.test.ts +252 -0
- package/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
- package/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
- package/node_modules/zod/src/v4/classic/tests/continuability.test.ts +352 -0
- package/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
- package/node_modules/zod/src/v4/classic/tests/date.test.ts +31 -0
- package/node_modules/zod/src/v4/classic/tests/datetime.test.ts +296 -0
- package/node_modules/zod/src/v4/classic/tests/default.test.ts +313 -0
- package/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
- package/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +619 -0
- package/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
- package/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +527 -0
- package/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
- package/node_modules/zod/src/v4/classic/tests/file.test.ts +91 -0
- package/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +175 -0
- package/node_modules/zod/src/v4/classic/tests/function.test.ts +268 -0
- package/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
- package/node_modules/zod/src/v4/classic/tests/index.test.ts +829 -0
- package/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +34 -0
- package/node_modules/zod/src/v4/classic/tests/intersection.test.ts +171 -0
- package/node_modules/zod/src/v4/classic/tests/json.test.ts +108 -0
- package/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
- package/node_modules/zod/src/v4/classic/tests/literal.test.ts +92 -0
- package/node_modules/zod/src/v4/classic/tests/map.test.ts +196 -0
- package/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
- package/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
- package/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +86 -0
- package/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
- package/node_modules/zod/src/v4/classic/tests/number.test.ts +247 -0
- package/node_modules/zod/src/v4/classic/tests/object.test.ts +563 -0
- package/node_modules/zod/src/v4/classic/tests/optional.test.ts +123 -0
- package/node_modules/zod/src/v4/classic/tests/partial.test.ts +147 -0
- package/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +127 -0
- package/node_modules/zod/src/v4/classic/tests/pipe.test.ts +81 -0
- package/node_modules/zod/src/v4/classic/tests/prefault.test.ts +37 -0
- package/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +298 -0
- package/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
- package/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
- package/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
- package/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
- package/node_modules/zod/src/v4/classic/tests/record.test.ts +342 -0
- package/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +356 -0
- package/node_modules/zod/src/v4/classic/tests/refine.test.ts +532 -0
- package/node_modules/zod/src/v4/classic/tests/registries.test.ts +204 -0
- package/node_modules/zod/src/v4/classic/tests/set.test.ts +179 -0
- package/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +57 -0
- package/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +109 -0
- package/node_modules/zod/src/v4/classic/tests/string.test.ts +881 -0
- package/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +66 -0
- package/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +758 -0
- package/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +2314 -0
- package/node_modules/zod/src/v4/classic/tests/transform.test.ts +250 -0
- package/node_modules/zod/src/v4/classic/tests/tuple.test.ts +163 -0
- package/node_modules/zod/src/v4/classic/tests/union.test.ts +94 -0
- package/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
- package/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
- package/node_modules/zod/src/v4/core/api.ts +1594 -0
- package/node_modules/zod/src/v4/core/checks.ts +1283 -0
- package/node_modules/zod/src/v4/core/config.ts +15 -0
- package/node_modules/zod/src/v4/core/core.ts +134 -0
- package/node_modules/zod/src/v4/core/doc.ts +44 -0
- package/node_modules/zod/src/v4/core/errors.ts +424 -0
- package/node_modules/zod/src/v4/core/function.ts +176 -0
- package/node_modules/zod/src/v4/core/index.ts +15 -0
- package/node_modules/zod/src/v4/core/json-schema.ts +143 -0
- package/node_modules/zod/src/v4/core/parse.ts +94 -0
- package/node_modules/zod/src/v4/core/regexes.ts +135 -0
- package/node_modules/zod/src/v4/core/registries.ts +96 -0
- package/node_modules/zod/src/v4/core/schemas.ts +3842 -0
- package/node_modules/zod/src/v4/core/standard-schema.ts +64 -0
- package/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
- package/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
- package/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
- package/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
- package/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
- package/node_modules/zod/src/v4/core/to-json-schema.ts +977 -0
- package/node_modules/zod/src/v4/core/util.ts +775 -0
- package/node_modules/zod/src/v4/core/versions.ts +5 -0
- package/node_modules/zod/src/v4/core/zsf.ts +323 -0
- package/node_modules/zod/src/v4/index.ts +4 -0
- package/node_modules/zod/src/v4/locales/ar.ts +125 -0
- package/node_modules/zod/src/v4/locales/az.ts +121 -0
- package/node_modules/zod/src/v4/locales/be.ts +184 -0
- package/node_modules/zod/src/v4/locales/ca.ts +127 -0
- package/node_modules/zod/src/v4/locales/cs.ts +142 -0
- package/node_modules/zod/src/v4/locales/de.ts +124 -0
- package/node_modules/zod/src/v4/locales/en.ts +127 -0
- package/node_modules/zod/src/v4/locales/eo.ts +125 -0
- package/node_modules/zod/src/v4/locales/es.ts +125 -0
- package/node_modules/zod/src/v4/locales/fa.ts +134 -0
- package/node_modules/zod/src/v4/locales/fi.ts +131 -0
- package/node_modules/zod/src/v4/locales/fr-CA.ts +126 -0
- package/node_modules/zod/src/v4/locales/fr.ts +124 -0
- package/node_modules/zod/src/v4/locales/he.ts +125 -0
- package/node_modules/zod/src/v4/locales/hu.ts +126 -0
- package/node_modules/zod/src/v4/locales/id.ts +125 -0
- package/node_modules/zod/src/v4/locales/index.ts +39 -0
- package/node_modules/zod/src/v4/locales/it.ts +125 -0
- package/node_modules/zod/src/v4/locales/ja.ts +122 -0
- package/node_modules/zod/src/v4/locales/kh.ts +126 -0
- package/node_modules/zod/src/v4/locales/ko.ts +131 -0
- package/node_modules/zod/src/v4/locales/mk.ts +127 -0
- package/node_modules/zod/src/v4/locales/ms.ts +124 -0
- package/node_modules/zod/src/v4/locales/nl.ts +126 -0
- package/node_modules/zod/src/v4/locales/no.ts +124 -0
- package/node_modules/zod/src/v4/locales/ota.ts +125 -0
- package/node_modules/zod/src/v4/locales/pl.ts +126 -0
- package/node_modules/zod/src/v4/locales/ps.ts +133 -0
- package/node_modules/zod/src/v4/locales/pt.ts +123 -0
- package/node_modules/zod/src/v4/locales/ru.ts +184 -0
- package/node_modules/zod/src/v4/locales/sl.ts +126 -0
- package/node_modules/zod/src/v4/locales/sv.ts +127 -0
- package/node_modules/zod/src/v4/locales/ta.ts +125 -0
- package/node_modules/zod/src/v4/locales/th.ts +126 -0
- package/node_modules/zod/src/v4/locales/tr.ts +121 -0
- package/node_modules/zod/src/v4/locales/ua.ts +126 -0
- package/node_modules/zod/src/v4/locales/ur.ts +126 -0
- package/node_modules/zod/src/v4/locales/vi.ts +125 -0
- package/node_modules/zod/src/v4/locales/zh-CN.ts +123 -0
- package/node_modules/zod/src/v4/locales/zh-TW.ts +125 -0
- package/node_modules/zod/src/v4/mini/checks.ts +32 -0
- package/node_modules/zod/src/v4/mini/coerce.ts +22 -0
- package/node_modules/zod/src/v4/mini/external.ts +40 -0
- package/node_modules/zod/src/v4/mini/index.ts +3 -0
- package/node_modules/zod/src/v4/mini/iso.ts +62 -0
- package/node_modules/zod/src/v4/mini/parse.ts +1 -0
- package/node_modules/zod/src/v4/mini/schemas.ts +1579 -0
- package/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
- package/node_modules/zod/src/v4/mini/tests/brand.test.ts +51 -0
- package/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
- package/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
- package/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
- package/node_modules/zod/src/v4/mini/tests/functions.test.ts +43 -0
- package/node_modules/zod/src/v4/mini/tests/index.test.ts +871 -0
- package/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
- package/node_modules/zod/src/v4/mini/tests/object.test.ts +185 -0
- package/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
- package/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +275 -0
- package/node_modules/zod/src/v4/mini/tests/string.test.ts +299 -0
- package/node_modules/zod/src/v4-mini/index.ts +1 -0
- package/node_modules/zod/v3/ZodError.cjs +138 -0
- package/node_modules/zod/v3/ZodError.d.cts +164 -0
- package/node_modules/zod/v3/ZodError.d.ts +164 -0
- package/node_modules/zod/v3/ZodError.js +133 -0
- package/node_modules/zod/v3/errors.cjs +17 -0
- package/node_modules/zod/v3/errors.d.cts +5 -0
- package/node_modules/zod/v3/errors.d.ts +5 -0
- package/node_modules/zod/v3/errors.js +9 -0
- package/node_modules/zod/v3/external.cjs +22 -0
- package/node_modules/zod/v3/external.d.cts +6 -0
- package/node_modules/zod/v3/external.d.ts +6 -0
- package/node_modules/zod/v3/external.js +6 -0
- package/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
- package/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
- package/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
- package/node_modules/zod/v3/helpers/enumUtil.js +1 -0
- package/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
- package/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
- package/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
- package/node_modules/zod/v3/helpers/errorUtil.js +6 -0
- package/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
- package/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
- package/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
- package/node_modules/zod/v3/helpers/parseUtil.js +109 -0
- package/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
- package/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
- package/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
- package/node_modules/zod/v3/helpers/partialUtil.js +1 -0
- package/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
- package/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
- package/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
- package/node_modules/zod/v3/helpers/typeAliases.js +1 -0
- package/node_modules/zod/v3/helpers/util.cjs +137 -0
- package/node_modules/zod/v3/helpers/util.d.cts +85 -0
- package/node_modules/zod/v3/helpers/util.d.ts +85 -0
- package/node_modules/zod/v3/helpers/util.js +133 -0
- package/node_modules/zod/v3/index.cjs +33 -0
- package/node_modules/zod/v3/index.d.cts +4 -0
- package/node_modules/zod/v3/index.d.ts +4 -0
- package/node_modules/zod/v3/index.js +4 -0
- package/node_modules/zod/v3/locales/en.cjs +111 -0
- package/node_modules/zod/v3/locales/en.d.cts +3 -0
- package/node_modules/zod/v3/locales/en.d.ts +3 -0
- package/node_modules/zod/v3/locales/en.js +109 -0
- package/node_modules/zod/v3/standard-schema.cjs +2 -0
- package/node_modules/zod/v3/standard-schema.d.cts +102 -0
- package/node_modules/zod/v3/standard-schema.d.ts +102 -0
- package/node_modules/zod/v3/standard-schema.js +1 -0
- package/node_modules/zod/v3/types.cjs +3775 -0
- package/node_modules/zod/v3/types.d.cts +1031 -0
- package/node_modules/zod/v3/types.d.ts +1031 -0
- package/node_modules/zod/v3/types.js +3693 -0
- package/node_modules/zod/v4/classic/checks.cjs +32 -0
- package/node_modules/zod/v4/classic/checks.d.cts +1 -0
- package/node_modules/zod/v4/classic/checks.d.ts +1 -0
- package/node_modules/zod/v4/classic/checks.js +1 -0
- package/node_modules/zod/v4/classic/coerce.cjs +47 -0
- package/node_modules/zod/v4/classic/coerce.d.cts +17 -0
- package/node_modules/zod/v4/classic/coerce.d.ts +17 -0
- package/node_modules/zod/v4/classic/coerce.js +17 -0
- package/node_modules/zod/v4/classic/compat.cjs +57 -0
- package/node_modules/zod/v4/classic/compat.d.cts +46 -0
- package/node_modules/zod/v4/classic/compat.d.ts +46 -0
- package/node_modules/zod/v4/classic/compat.js +27 -0
- package/node_modules/zod/v4/classic/errors.cjs +67 -0
- package/node_modules/zod/v4/classic/errors.d.cts +30 -0
- package/node_modules/zod/v4/classic/errors.d.ts +30 -0
- package/node_modules/zod/v4/classic/errors.js +41 -0
- package/node_modules/zod/v4/classic/external.cjs +70 -0
- package/node_modules/zod/v4/classic/external.d.cts +13 -0
- package/node_modules/zod/v4/classic/external.d.ts +13 -0
- package/node_modules/zod/v4/classic/external.js +18 -0
- package/node_modules/zod/v4/classic/index.cjs +33 -0
- package/node_modules/zod/v4/classic/index.d.cts +4 -0
- package/node_modules/zod/v4/classic/index.d.ts +4 -0
- package/node_modules/zod/v4/classic/index.js +4 -0
- package/node_modules/zod/v4/classic/iso.cjs +60 -0
- package/node_modules/zod/v4/classic/iso.d.cts +22 -0
- package/node_modules/zod/v4/classic/iso.d.ts +22 -0
- package/node_modules/zod/v4/classic/iso.js +30 -0
- package/node_modules/zod/v4/classic/parse.cjs +32 -0
- package/node_modules/zod/v4/classic/parse.d.cts +23 -0
- package/node_modules/zod/v4/classic/parse.d.ts +23 -0
- package/node_modules/zod/v4/classic/parse.js +6 -0
- package/node_modules/zod/v4/classic/schemas.cjs +1109 -0
- package/node_modules/zod/v4/classic/schemas.d.cts +630 -0
- package/node_modules/zod/v4/classic/schemas.d.ts +630 -0
- package/node_modules/zod/v4/classic/schemas.js +1006 -0
- package/node_modules/zod/v4/core/api.cjs +1039 -0
- package/node_modules/zod/v4/core/api.d.cts +284 -0
- package/node_modules/zod/v4/core/api.d.ts +284 -0
- package/node_modules/zod/v4/core/api.js +906 -0
- package/node_modules/zod/v4/core/checks.cjs +591 -0
- package/node_modules/zod/v4/core/checks.d.cts +278 -0
- package/node_modules/zod/v4/core/checks.d.ts +278 -0
- package/node_modules/zod/v4/core/checks.js +565 -0
- package/node_modules/zod/v4/core/core.cjs +67 -0
- package/node_modules/zod/v4/core/core.d.cts +49 -0
- package/node_modules/zod/v4/core/core.d.ts +49 -0
- package/node_modules/zod/v4/core/core.js +61 -0
- package/node_modules/zod/v4/core/doc.cjs +39 -0
- package/node_modules/zod/v4/core/doc.d.cts +14 -0
- package/node_modules/zod/v4/core/doc.d.ts +14 -0
- package/node_modules/zod/v4/core/doc.js +35 -0
- package/node_modules/zod/v4/core/errors.cjs +226 -0
- package/node_modules/zod/v4/core/errors.d.cts +208 -0
- package/node_modules/zod/v4/core/errors.d.ts +208 -0
- package/node_modules/zod/v4/core/errors.js +195 -0
- package/node_modules/zod/v4/core/function.cjs +102 -0
- package/node_modules/zod/v4/core/function.d.cts +52 -0
- package/node_modules/zod/v4/core/function.d.ts +52 -0
- package/node_modules/zod/v4/core/function.js +75 -0
- package/node_modules/zod/v4/core/index.cjs +44 -0
- package/node_modules/zod/v4/core/index.d.cts +15 -0
- package/node_modules/zod/v4/core/index.d.ts +15 -0
- package/node_modules/zod/v4/core/index.js +15 -0
- package/node_modules/zod/v4/core/json-schema.cjs +2 -0
- package/node_modules/zod/v4/core/json-schema.d.cts +87 -0
- package/node_modules/zod/v4/core/json-schema.d.ts +87 -0
- package/node_modules/zod/v4/core/json-schema.js +1 -0
- package/node_modules/zod/v4/core/parse.cjs +87 -0
- package/node_modules/zod/v4/core/parse.d.cts +25 -0
- package/node_modules/zod/v4/core/parse.d.ts +25 -0
- package/node_modules/zod/v4/core/parse.js +57 -0
- package/node_modules/zod/v4/core/regexes.cjs +103 -0
- package/node_modules/zod/v4/core/regexes.d.cts +62 -0
- package/node_modules/zod/v4/core/regexes.d.ts +62 -0
- package/node_modules/zod/v4/core/regexes.js +95 -0
- package/node_modules/zod/v4/core/registries.cjs +56 -0
- package/node_modules/zod/v4/core/registries.d.cts +35 -0
- package/node_modules/zod/v4/core/registries.d.ts +35 -0
- package/node_modules/zod/v4/core/registries.js +51 -0
- package/node_modules/zod/v4/core/schemas.cjs +1748 -0
- package/node_modules/zod/v4/core/schemas.d.cts +1041 -0
- package/node_modules/zod/v4/core/schemas.d.ts +1041 -0
- package/node_modules/zod/v4/core/schemas.js +1717 -0
- package/node_modules/zod/v4/core/standard-schema.cjs +2 -0
- package/node_modules/zod/v4/core/standard-schema.d.cts +55 -0
- package/node_modules/zod/v4/core/standard-schema.d.ts +55 -0
- package/node_modules/zod/v4/core/standard-schema.js +1 -0
- package/node_modules/zod/v4/core/to-json-schema.cjs +854 -0
- package/node_modules/zod/v4/core/to-json-schema.d.cts +88 -0
- package/node_modules/zod/v4/core/to-json-schema.d.ts +88 -0
- package/node_modules/zod/v4/core/to-json-schema.js +849 -0
- package/node_modules/zod/v4/core/util.cjs +539 -0
- package/node_modules/zod/v4/core/util.d.cts +183 -0
- package/node_modules/zod/v4/core/util.d.ts +183 -0
- package/node_modules/zod/v4/core/util.js +493 -0
- package/node_modules/zod/v4/core/versions.cjs +8 -0
- package/node_modules/zod/v4/core/versions.d.cts +5 -0
- package/node_modules/zod/v4/core/versions.d.ts +5 -0
- package/node_modules/zod/v4/core/versions.js +5 -0
- package/node_modules/zod/v4/index.cjs +22 -0
- package/node_modules/zod/v4/index.d.cts +3 -0
- package/node_modules/zod/v4/index.d.ts +3 -0
- package/node_modules/zod/v4/index.js +3 -0
- package/node_modules/zod/v4/locales/ar.cjs +142 -0
- package/node_modules/zod/v4/locales/ar.d.cts +4 -0
- package/node_modules/zod/v4/locales/ar.d.ts +4 -0
- package/node_modules/zod/v4/locales/ar.js +116 -0
- package/node_modules/zod/v4/locales/az.cjs +141 -0
- package/node_modules/zod/v4/locales/az.d.cts +4 -0
- package/node_modules/zod/v4/locales/az.d.ts +4 -0
- package/node_modules/zod/v4/locales/az.js +115 -0
- package/node_modules/zod/v4/locales/be.cjs +190 -0
- package/node_modules/zod/v4/locales/be.d.cts +4 -0
- package/node_modules/zod/v4/locales/be.d.ts +4 -0
- package/node_modules/zod/v4/locales/be.js +164 -0
- package/node_modules/zod/v4/locales/ca.cjs +144 -0
- package/node_modules/zod/v4/locales/ca.d.cts +4 -0
- package/node_modules/zod/v4/locales/ca.d.ts +4 -0
- package/node_modules/zod/v4/locales/ca.js +118 -0
- package/node_modules/zod/v4/locales/cs.cjs +161 -0
- package/node_modules/zod/v4/locales/cs.d.cts +4 -0
- package/node_modules/zod/v4/locales/cs.d.ts +4 -0
- package/node_modules/zod/v4/locales/cs.js +135 -0
- package/node_modules/zod/v4/locales/de.cjs +142 -0
- package/node_modules/zod/v4/locales/de.d.cts +4 -0
- package/node_modules/zod/v4/locales/de.d.ts +4 -0
- package/node_modules/zod/v4/locales/de.js +116 -0
- package/node_modules/zod/v4/locales/en.cjs +145 -0
- package/node_modules/zod/v4/locales/en.d.cts +5 -0
- package/node_modules/zod/v4/locales/en.d.ts +5 -0
- package/node_modules/zod/v4/locales/en.js +117 -0
- package/node_modules/zod/v4/locales/eo.cjs +144 -0
- package/node_modules/zod/v4/locales/eo.d.cts +5 -0
- package/node_modules/zod/v4/locales/eo.d.ts +5 -0
- package/node_modules/zod/v4/locales/eo.js +116 -0
- package/node_modules/zod/v4/locales/es.cjs +143 -0
- package/node_modules/zod/v4/locales/es.d.cts +4 -0
- package/node_modules/zod/v4/locales/es.d.ts +4 -0
- package/node_modules/zod/v4/locales/es.js +117 -0
- package/node_modules/zod/v4/locales/fa.cjs +148 -0
- package/node_modules/zod/v4/locales/fa.d.cts +4 -0
- package/node_modules/zod/v4/locales/fa.d.ts +4 -0
- package/node_modules/zod/v4/locales/fa.js +122 -0
- package/node_modules/zod/v4/locales/fi.cjs +148 -0
- package/node_modules/zod/v4/locales/fi.d.cts +4 -0
- package/node_modules/zod/v4/locales/fi.d.ts +4 -0
- package/node_modules/zod/v4/locales/fi.js +122 -0
- package/node_modules/zod/v4/locales/fr-CA.cjs +143 -0
- package/node_modules/zod/v4/locales/fr-CA.d.cts +4 -0
- package/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
- package/node_modules/zod/v4/locales/fr-CA.js +117 -0
- package/node_modules/zod/v4/locales/fr.cjs +142 -0
- package/node_modules/zod/v4/locales/fr.d.cts +4 -0
- package/node_modules/zod/v4/locales/fr.d.ts +4 -0
- package/node_modules/zod/v4/locales/fr.js +116 -0
- package/node_modules/zod/v4/locales/he.cjs +143 -0
- package/node_modules/zod/v4/locales/he.d.cts +4 -0
- package/node_modules/zod/v4/locales/he.d.ts +4 -0
- package/node_modules/zod/v4/locales/he.js +117 -0
- package/node_modules/zod/v4/locales/hu.cjs +143 -0
- package/node_modules/zod/v4/locales/hu.d.cts +4 -0
- package/node_modules/zod/v4/locales/hu.d.ts +4 -0
- package/node_modules/zod/v4/locales/hu.js +117 -0
- package/node_modules/zod/v4/locales/id.cjs +142 -0
- package/node_modules/zod/v4/locales/id.d.cts +4 -0
- package/node_modules/zod/v4/locales/id.d.ts +4 -0
- package/node_modules/zod/v4/locales/id.js +116 -0
- package/node_modules/zod/v4/locales/index.cjs +84 -0
- package/node_modules/zod/v4/locales/index.d.cts +39 -0
- package/node_modules/zod/v4/locales/index.d.ts +39 -0
- package/node_modules/zod/v4/locales/index.js +39 -0
- package/node_modules/zod/v4/locales/it.cjs +143 -0
- package/node_modules/zod/v4/locales/it.d.cts +4 -0
- package/node_modules/zod/v4/locales/it.d.ts +4 -0
- package/node_modules/zod/v4/locales/it.js +117 -0
- package/node_modules/zod/v4/locales/ja.cjs +141 -0
- package/node_modules/zod/v4/locales/ja.d.cts +4 -0
- package/node_modules/zod/v4/locales/ja.d.ts +4 -0
- package/node_modules/zod/v4/locales/ja.js +115 -0
- package/node_modules/zod/v4/locales/kh.cjs +143 -0
- package/node_modules/zod/v4/locales/kh.d.cts +4 -0
- package/node_modules/zod/v4/locales/kh.d.ts +4 -0
- package/node_modules/zod/v4/locales/kh.js +117 -0
- package/node_modules/zod/v4/locales/ko.cjs +147 -0
- package/node_modules/zod/v4/locales/ko.d.cts +4 -0
- package/node_modules/zod/v4/locales/ko.d.ts +4 -0
- package/node_modules/zod/v4/locales/ko.js +121 -0
- package/node_modules/zod/v4/locales/mk.cjs +144 -0
- package/node_modules/zod/v4/locales/mk.d.cts +4 -0
- package/node_modules/zod/v4/locales/mk.d.ts +4 -0
- package/node_modules/zod/v4/locales/mk.js +118 -0
- package/node_modules/zod/v4/locales/ms.cjs +142 -0
- package/node_modules/zod/v4/locales/ms.d.cts +4 -0
- package/node_modules/zod/v4/locales/ms.d.ts +4 -0
- package/node_modules/zod/v4/locales/ms.js +116 -0
- package/node_modules/zod/v4/locales/nl.cjs +143 -0
- package/node_modules/zod/v4/locales/nl.d.cts +4 -0
- package/node_modules/zod/v4/locales/nl.d.ts +4 -0
- package/node_modules/zod/v4/locales/nl.js +117 -0
- package/node_modules/zod/v4/locales/no.cjs +142 -0
- package/node_modules/zod/v4/locales/no.d.cts +4 -0
- package/node_modules/zod/v4/locales/no.d.ts +4 -0
- package/node_modules/zod/v4/locales/no.js +116 -0
- package/node_modules/zod/v4/locales/ota.cjs +143 -0
- package/node_modules/zod/v4/locales/ota.d.cts +4 -0
- package/node_modules/zod/v4/locales/ota.d.ts +4 -0
- package/node_modules/zod/v4/locales/ota.js +117 -0
- package/node_modules/zod/v4/locales/pl.cjs +143 -0
- package/node_modules/zod/v4/locales/pl.d.cts +4 -0
- package/node_modules/zod/v4/locales/pl.d.ts +4 -0
- package/node_modules/zod/v4/locales/pl.js +117 -0
- package/node_modules/zod/v4/locales/ps.cjs +148 -0
- package/node_modules/zod/v4/locales/ps.d.cts +4 -0
- package/node_modules/zod/v4/locales/ps.d.ts +4 -0
- package/node_modules/zod/v4/locales/ps.js +122 -0
- package/node_modules/zod/v4/locales/pt.cjs +142 -0
- package/node_modules/zod/v4/locales/pt.d.cts +4 -0
- package/node_modules/zod/v4/locales/pt.d.ts +4 -0
- package/node_modules/zod/v4/locales/pt.js +116 -0
- package/node_modules/zod/v4/locales/ru.cjs +190 -0
- package/node_modules/zod/v4/locales/ru.d.cts +4 -0
- package/node_modules/zod/v4/locales/ru.d.ts +4 -0
- package/node_modules/zod/v4/locales/ru.js +164 -0
- package/node_modules/zod/v4/locales/sl.cjs +143 -0
- package/node_modules/zod/v4/locales/sl.d.cts +4 -0
- package/node_modules/zod/v4/locales/sl.d.ts +4 -0
- package/node_modules/zod/v4/locales/sl.js +117 -0
- package/node_modules/zod/v4/locales/sv.cjs +144 -0
- package/node_modules/zod/v4/locales/sv.d.cts +4 -0
- package/node_modules/zod/v4/locales/sv.d.ts +4 -0
- package/node_modules/zod/v4/locales/sv.js +118 -0
- package/node_modules/zod/v4/locales/ta.cjs +143 -0
- package/node_modules/zod/v4/locales/ta.d.cts +4 -0
- package/node_modules/zod/v4/locales/ta.d.ts +4 -0
- package/node_modules/zod/v4/locales/ta.js +117 -0
- package/node_modules/zod/v4/locales/th.cjs +143 -0
- package/node_modules/zod/v4/locales/th.d.cts +4 -0
- package/node_modules/zod/v4/locales/th.d.ts +4 -0
- package/node_modules/zod/v4/locales/th.js +117 -0
- package/node_modules/zod/v4/locales/tr.cjs +143 -0
- package/node_modules/zod/v4/locales/tr.d.cts +5 -0
- package/node_modules/zod/v4/locales/tr.d.ts +5 -0
- package/node_modules/zod/v4/locales/tr.js +115 -0
- package/node_modules/zod/v4/locales/ua.cjs +143 -0
- package/node_modules/zod/v4/locales/ua.d.cts +4 -0
- package/node_modules/zod/v4/locales/ua.d.ts +4 -0
- package/node_modules/zod/v4/locales/ua.js +117 -0
- package/node_modules/zod/v4/locales/ur.cjs +143 -0
- package/node_modules/zod/v4/locales/ur.d.cts +4 -0
- package/node_modules/zod/v4/locales/ur.d.ts +4 -0
- package/node_modules/zod/v4/locales/ur.js +117 -0
- package/node_modules/zod/v4/locales/vi.cjs +142 -0
- package/node_modules/zod/v4/locales/vi.d.cts +4 -0
- package/node_modules/zod/v4/locales/vi.d.ts +4 -0
- package/node_modules/zod/v4/locales/vi.js +116 -0
- package/node_modules/zod/v4/locales/zh-CN.cjs +142 -0
- package/node_modules/zod/v4/locales/zh-CN.d.cts +4 -0
- package/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
- package/node_modules/zod/v4/locales/zh-CN.js +116 -0
- package/node_modules/zod/v4/locales/zh-TW.cjs +143 -0
- package/node_modules/zod/v4/locales/zh-TW.d.cts +4 -0
- package/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
- package/node_modules/zod/v4/locales/zh-TW.js +117 -0
- package/node_modules/zod/v4/mini/checks.cjs +34 -0
- package/node_modules/zod/v4/mini/checks.d.cts +1 -0
- package/node_modules/zod/v4/mini/checks.d.ts +1 -0
- package/node_modules/zod/v4/mini/checks.js +1 -0
- package/node_modules/zod/v4/mini/coerce.cjs +47 -0
- package/node_modules/zod/v4/mini/coerce.d.cts +7 -0
- package/node_modules/zod/v4/mini/coerce.d.ts +7 -0
- package/node_modules/zod/v4/mini/coerce.js +17 -0
- package/node_modules/zod/v4/mini/external.cjs +62 -0
- package/node_modules/zod/v4/mini/external.d.cts +11 -0
- package/node_modules/zod/v4/mini/external.d.ts +11 -0
- package/node_modules/zod/v4/mini/external.js +13 -0
- package/node_modules/zod/v4/mini/index.cjs +32 -0
- package/node_modules/zod/v4/mini/index.d.cts +3 -0
- package/node_modules/zod/v4/mini/index.d.ts +3 -0
- package/node_modules/zod/v4/mini/index.js +3 -0
- package/node_modules/zod/v4/mini/iso.cjs +60 -0
- package/node_modules/zod/v4/mini/iso.d.cts +22 -0
- package/node_modules/zod/v4/mini/iso.d.ts +22 -0
- package/node_modules/zod/v4/mini/iso.js +30 -0
- package/node_modules/zod/v4/mini/parse.cjs +8 -0
- package/node_modules/zod/v4/mini/parse.d.cts +1 -0
- package/node_modules/zod/v4/mini/parse.d.ts +1 -0
- package/node_modules/zod/v4/mini/parse.js +1 -0
- package/node_modules/zod/v4/mini/schemas.cjs +839 -0
- package/node_modules/zod/v4/mini/schemas.d.cts +356 -0
- package/node_modules/zod/v4/mini/schemas.d.ts +356 -0
- package/node_modules/zod/v4/mini/schemas.js +732 -0
- package/node_modules/zod/v4-mini/index.cjs +17 -0
- package/node_modules/zod/v4-mini/index.d.cts +1 -0
- package/node_modules/zod/v4-mini/index.d.ts +1 -0
- package/node_modules/zod/v4-mini/index.js +1 -0
- package/package.json +4 -1
|
@@ -0,0 +1,1006 @@
|
|
|
1
|
+
import * as core from "../core/index.js";
|
|
2
|
+
import { util } from "../core/index.js";
|
|
3
|
+
import * as checks from "./checks.js";
|
|
4
|
+
import * as iso from "./iso.js";
|
|
5
|
+
import * as parse from "./parse.js";
|
|
6
|
+
export const ZodType = /*@__PURE__*/ core.$constructor("ZodType", (inst, def) => {
|
|
7
|
+
core.$ZodType.init(inst, def);
|
|
8
|
+
inst.def = def;
|
|
9
|
+
Object.defineProperty(inst, "_def", { value: def });
|
|
10
|
+
// base methods
|
|
11
|
+
inst.check = (...checks) => {
|
|
12
|
+
return inst.clone({
|
|
13
|
+
...def,
|
|
14
|
+
checks: [
|
|
15
|
+
...(def.checks ?? []),
|
|
16
|
+
...checks.map((ch) => typeof ch === "function" ? { _zod: { check: ch, def: { check: "custom" }, onattach: [] } } : ch),
|
|
17
|
+
],
|
|
18
|
+
}
|
|
19
|
+
// { parent: true }
|
|
20
|
+
);
|
|
21
|
+
};
|
|
22
|
+
inst.clone = (def, params) => core.clone(inst, def, params);
|
|
23
|
+
inst.brand = () => inst;
|
|
24
|
+
inst.register = ((reg, meta) => {
|
|
25
|
+
reg.add(inst, meta);
|
|
26
|
+
return inst;
|
|
27
|
+
});
|
|
28
|
+
// parsing
|
|
29
|
+
inst.parse = (data, params) => parse.parse(inst, data, params, { callee: inst.parse });
|
|
30
|
+
inst.safeParse = (data, params) => parse.safeParse(inst, data, params);
|
|
31
|
+
inst.parseAsync = async (data, params) => parse.parseAsync(inst, data, params, { callee: inst.parseAsync });
|
|
32
|
+
inst.safeParseAsync = async (data, params) => parse.safeParseAsync(inst, data, params);
|
|
33
|
+
inst.spa = inst.safeParseAsync;
|
|
34
|
+
// refinements
|
|
35
|
+
inst.refine = (check, params) => inst.check(refine(check, params));
|
|
36
|
+
inst.superRefine = (refinement) => inst.check(superRefine(refinement));
|
|
37
|
+
inst.overwrite = (fn) => inst.check(checks.overwrite(fn));
|
|
38
|
+
// wrappers
|
|
39
|
+
inst.optional = () => optional(inst);
|
|
40
|
+
inst.nullable = () => nullable(inst);
|
|
41
|
+
inst.nullish = () => optional(nullable(inst));
|
|
42
|
+
inst.nonoptional = (params) => nonoptional(inst, params);
|
|
43
|
+
inst.array = () => array(inst);
|
|
44
|
+
inst.or = (arg) => union([inst, arg]);
|
|
45
|
+
inst.and = (arg) => intersection(inst, arg);
|
|
46
|
+
inst.transform = (tx) => pipe(inst, transform(tx));
|
|
47
|
+
inst.default = (def) => _default(inst, def);
|
|
48
|
+
inst.prefault = (def) => prefault(inst, def);
|
|
49
|
+
// inst.coalesce = (def, params) => coalesce(inst, def, params);
|
|
50
|
+
inst.catch = (params) => _catch(inst, params);
|
|
51
|
+
inst.pipe = (target) => pipe(inst, target);
|
|
52
|
+
inst.readonly = () => readonly(inst);
|
|
53
|
+
// meta
|
|
54
|
+
inst.describe = (description) => {
|
|
55
|
+
const cl = inst.clone();
|
|
56
|
+
core.globalRegistry.add(cl, { description });
|
|
57
|
+
return cl;
|
|
58
|
+
};
|
|
59
|
+
Object.defineProperty(inst, "description", {
|
|
60
|
+
get() {
|
|
61
|
+
return core.globalRegistry.get(inst)?.description;
|
|
62
|
+
},
|
|
63
|
+
configurable: true,
|
|
64
|
+
});
|
|
65
|
+
inst.meta = (...args) => {
|
|
66
|
+
if (args.length === 0) {
|
|
67
|
+
return core.globalRegistry.get(inst);
|
|
68
|
+
}
|
|
69
|
+
const cl = inst.clone();
|
|
70
|
+
core.globalRegistry.add(cl, args[0]);
|
|
71
|
+
return cl;
|
|
72
|
+
};
|
|
73
|
+
// helpers
|
|
74
|
+
inst.isOptional = () => inst.safeParse(undefined).success;
|
|
75
|
+
inst.isNullable = () => inst.safeParse(null).success;
|
|
76
|
+
return inst;
|
|
77
|
+
});
|
|
78
|
+
/** @internal */
|
|
79
|
+
export const _ZodString = /*@__PURE__*/ core.$constructor("_ZodString", (inst, def) => {
|
|
80
|
+
core.$ZodString.init(inst, def);
|
|
81
|
+
ZodType.init(inst, def);
|
|
82
|
+
const bag = inst._zod.bag;
|
|
83
|
+
inst.format = bag.format ?? null;
|
|
84
|
+
inst.minLength = bag.minimum ?? null;
|
|
85
|
+
inst.maxLength = bag.maximum ?? null;
|
|
86
|
+
// validations
|
|
87
|
+
inst.regex = (...args) => inst.check(checks.regex(...args));
|
|
88
|
+
inst.includes = (...args) => inst.check(checks.includes(...args));
|
|
89
|
+
inst.startsWith = (...args) => inst.check(checks.startsWith(...args));
|
|
90
|
+
inst.endsWith = (...args) => inst.check(checks.endsWith(...args));
|
|
91
|
+
inst.min = (...args) => inst.check(checks.minLength(...args));
|
|
92
|
+
inst.max = (...args) => inst.check(checks.maxLength(...args));
|
|
93
|
+
inst.length = (...args) => inst.check(checks.length(...args));
|
|
94
|
+
inst.nonempty = (...args) => inst.check(checks.minLength(1, ...args));
|
|
95
|
+
inst.lowercase = (params) => inst.check(checks.lowercase(params));
|
|
96
|
+
inst.uppercase = (params) => inst.check(checks.uppercase(params));
|
|
97
|
+
// transforms
|
|
98
|
+
inst.trim = () => inst.check(checks.trim());
|
|
99
|
+
inst.normalize = (...args) => inst.check(checks.normalize(...args));
|
|
100
|
+
inst.toLowerCase = () => inst.check(checks.toLowerCase());
|
|
101
|
+
inst.toUpperCase = () => inst.check(checks.toUpperCase());
|
|
102
|
+
});
|
|
103
|
+
export const ZodString = /*@__PURE__*/ core.$constructor("ZodString", (inst, def) => {
|
|
104
|
+
core.$ZodString.init(inst, def);
|
|
105
|
+
_ZodString.init(inst, def);
|
|
106
|
+
inst.email = (params) => inst.check(core._email(ZodEmail, params));
|
|
107
|
+
inst.url = (params) => inst.check(core._url(ZodURL, params));
|
|
108
|
+
inst.jwt = (params) => inst.check(core._jwt(ZodJWT, params));
|
|
109
|
+
inst.emoji = (params) => inst.check(core._emoji(ZodEmoji, params));
|
|
110
|
+
inst.guid = (params) => inst.check(core._guid(ZodGUID, params));
|
|
111
|
+
inst.uuid = (params) => inst.check(core._uuid(ZodUUID, params));
|
|
112
|
+
inst.uuidv4 = (params) => inst.check(core._uuidv4(ZodUUID, params));
|
|
113
|
+
inst.uuidv6 = (params) => inst.check(core._uuidv6(ZodUUID, params));
|
|
114
|
+
inst.uuidv7 = (params) => inst.check(core._uuidv7(ZodUUID, params));
|
|
115
|
+
inst.nanoid = (params) => inst.check(core._nanoid(ZodNanoID, params));
|
|
116
|
+
inst.guid = (params) => inst.check(core._guid(ZodGUID, params));
|
|
117
|
+
inst.cuid = (params) => inst.check(core._cuid(ZodCUID, params));
|
|
118
|
+
inst.cuid2 = (params) => inst.check(core._cuid2(ZodCUID2, params));
|
|
119
|
+
inst.ulid = (params) => inst.check(core._ulid(ZodULID, params));
|
|
120
|
+
inst.base64 = (params) => inst.check(core._base64(ZodBase64, params));
|
|
121
|
+
inst.base64url = (params) => inst.check(core._base64url(ZodBase64URL, params));
|
|
122
|
+
inst.xid = (params) => inst.check(core._xid(ZodXID, params));
|
|
123
|
+
inst.ksuid = (params) => inst.check(core._ksuid(ZodKSUID, params));
|
|
124
|
+
inst.ipv4 = (params) => inst.check(core._ipv4(ZodIPv4, params));
|
|
125
|
+
inst.ipv6 = (params) => inst.check(core._ipv6(ZodIPv6, params));
|
|
126
|
+
inst.cidrv4 = (params) => inst.check(core._cidrv4(ZodCIDRv4, params));
|
|
127
|
+
inst.cidrv6 = (params) => inst.check(core._cidrv6(ZodCIDRv6, params));
|
|
128
|
+
inst.e164 = (params) => inst.check(core._e164(ZodE164, params));
|
|
129
|
+
// iso
|
|
130
|
+
inst.datetime = (params) => inst.check(iso.datetime(params));
|
|
131
|
+
inst.date = (params) => inst.check(iso.date(params));
|
|
132
|
+
inst.time = (params) => inst.check(iso.time(params));
|
|
133
|
+
inst.duration = (params) => inst.check(iso.duration(params));
|
|
134
|
+
});
|
|
135
|
+
export function string(params) {
|
|
136
|
+
return core._string(ZodString, params);
|
|
137
|
+
}
|
|
138
|
+
export const ZodStringFormat = /*@__PURE__*/ core.$constructor("ZodStringFormat", (inst, def) => {
|
|
139
|
+
core.$ZodStringFormat.init(inst, def);
|
|
140
|
+
_ZodString.init(inst, def);
|
|
141
|
+
});
|
|
142
|
+
export const ZodEmail = /*@__PURE__*/ core.$constructor("ZodEmail", (inst, def) => {
|
|
143
|
+
// ZodStringFormat.init(inst, def);
|
|
144
|
+
core.$ZodEmail.init(inst, def);
|
|
145
|
+
ZodStringFormat.init(inst, def);
|
|
146
|
+
});
|
|
147
|
+
export function email(params) {
|
|
148
|
+
return core._email(ZodEmail, params);
|
|
149
|
+
}
|
|
150
|
+
export const ZodGUID = /*@__PURE__*/ core.$constructor("ZodGUID", (inst, def) => {
|
|
151
|
+
// ZodStringFormat.init(inst, def);
|
|
152
|
+
core.$ZodGUID.init(inst, def);
|
|
153
|
+
ZodStringFormat.init(inst, def);
|
|
154
|
+
});
|
|
155
|
+
export function guid(params) {
|
|
156
|
+
return core._guid(ZodGUID, params);
|
|
157
|
+
}
|
|
158
|
+
export const ZodUUID = /*@__PURE__*/ core.$constructor("ZodUUID", (inst, def) => {
|
|
159
|
+
// ZodStringFormat.init(inst, def);
|
|
160
|
+
core.$ZodUUID.init(inst, def);
|
|
161
|
+
ZodStringFormat.init(inst, def);
|
|
162
|
+
});
|
|
163
|
+
export function uuid(params) {
|
|
164
|
+
return core._uuid(ZodUUID, params);
|
|
165
|
+
}
|
|
166
|
+
export function uuidv4(params) {
|
|
167
|
+
return core._uuidv4(ZodUUID, params);
|
|
168
|
+
}
|
|
169
|
+
// ZodUUIDv6
|
|
170
|
+
export function uuidv6(params) {
|
|
171
|
+
return core._uuidv6(ZodUUID, params);
|
|
172
|
+
}
|
|
173
|
+
// ZodUUIDv7
|
|
174
|
+
export function uuidv7(params) {
|
|
175
|
+
return core._uuidv7(ZodUUID, params);
|
|
176
|
+
}
|
|
177
|
+
export const ZodURL = /*@__PURE__*/ core.$constructor("ZodURL", (inst, def) => {
|
|
178
|
+
// ZodStringFormat.init(inst, def);
|
|
179
|
+
core.$ZodURL.init(inst, def);
|
|
180
|
+
ZodStringFormat.init(inst, def);
|
|
181
|
+
});
|
|
182
|
+
export function url(params) {
|
|
183
|
+
return core._url(ZodURL, params);
|
|
184
|
+
}
|
|
185
|
+
export const ZodEmoji = /*@__PURE__*/ core.$constructor("ZodEmoji", (inst, def) => {
|
|
186
|
+
// ZodStringFormat.init(inst, def);
|
|
187
|
+
core.$ZodEmoji.init(inst, def);
|
|
188
|
+
ZodStringFormat.init(inst, def);
|
|
189
|
+
});
|
|
190
|
+
export function emoji(params) {
|
|
191
|
+
return core._emoji(ZodEmoji, params);
|
|
192
|
+
}
|
|
193
|
+
export const ZodNanoID = /*@__PURE__*/ core.$constructor("ZodNanoID", (inst, def) => {
|
|
194
|
+
// ZodStringFormat.init(inst, def);
|
|
195
|
+
core.$ZodNanoID.init(inst, def);
|
|
196
|
+
ZodStringFormat.init(inst, def);
|
|
197
|
+
});
|
|
198
|
+
export function nanoid(params) {
|
|
199
|
+
return core._nanoid(ZodNanoID, params);
|
|
200
|
+
}
|
|
201
|
+
export const ZodCUID = /*@__PURE__*/ core.$constructor("ZodCUID", (inst, def) => {
|
|
202
|
+
// ZodStringFormat.init(inst, def);
|
|
203
|
+
core.$ZodCUID.init(inst, def);
|
|
204
|
+
ZodStringFormat.init(inst, def);
|
|
205
|
+
});
|
|
206
|
+
export function cuid(params) {
|
|
207
|
+
return core._cuid(ZodCUID, params);
|
|
208
|
+
}
|
|
209
|
+
export const ZodCUID2 = /*@__PURE__*/ core.$constructor("ZodCUID2", (inst, def) => {
|
|
210
|
+
// ZodStringFormat.init(inst, def);
|
|
211
|
+
core.$ZodCUID2.init(inst, def);
|
|
212
|
+
ZodStringFormat.init(inst, def);
|
|
213
|
+
});
|
|
214
|
+
export function cuid2(params) {
|
|
215
|
+
return core._cuid2(ZodCUID2, params);
|
|
216
|
+
}
|
|
217
|
+
export const ZodULID = /*@__PURE__*/ core.$constructor("ZodULID", (inst, def) => {
|
|
218
|
+
// ZodStringFormat.init(inst, def);
|
|
219
|
+
core.$ZodULID.init(inst, def);
|
|
220
|
+
ZodStringFormat.init(inst, def);
|
|
221
|
+
});
|
|
222
|
+
export function ulid(params) {
|
|
223
|
+
return core._ulid(ZodULID, params);
|
|
224
|
+
}
|
|
225
|
+
export const ZodXID = /*@__PURE__*/ core.$constructor("ZodXID", (inst, def) => {
|
|
226
|
+
// ZodStringFormat.init(inst, def);
|
|
227
|
+
core.$ZodXID.init(inst, def);
|
|
228
|
+
ZodStringFormat.init(inst, def);
|
|
229
|
+
});
|
|
230
|
+
export function xid(params) {
|
|
231
|
+
return core._xid(ZodXID, params);
|
|
232
|
+
}
|
|
233
|
+
export const ZodKSUID = /*@__PURE__*/ core.$constructor("ZodKSUID", (inst, def) => {
|
|
234
|
+
// ZodStringFormat.init(inst, def);
|
|
235
|
+
core.$ZodKSUID.init(inst, def);
|
|
236
|
+
ZodStringFormat.init(inst, def);
|
|
237
|
+
});
|
|
238
|
+
export function ksuid(params) {
|
|
239
|
+
return core._ksuid(ZodKSUID, params);
|
|
240
|
+
}
|
|
241
|
+
export const ZodIPv4 = /*@__PURE__*/ core.$constructor("ZodIPv4", (inst, def) => {
|
|
242
|
+
// ZodStringFormat.init(inst, def);
|
|
243
|
+
core.$ZodIPv4.init(inst, def);
|
|
244
|
+
ZodStringFormat.init(inst, def);
|
|
245
|
+
});
|
|
246
|
+
export function ipv4(params) {
|
|
247
|
+
return core._ipv4(ZodIPv4, params);
|
|
248
|
+
}
|
|
249
|
+
export const ZodIPv6 = /*@__PURE__*/ core.$constructor("ZodIPv6", (inst, def) => {
|
|
250
|
+
// ZodStringFormat.init(inst, def);
|
|
251
|
+
core.$ZodIPv6.init(inst, def);
|
|
252
|
+
ZodStringFormat.init(inst, def);
|
|
253
|
+
});
|
|
254
|
+
export function ipv6(params) {
|
|
255
|
+
return core._ipv6(ZodIPv6, params);
|
|
256
|
+
}
|
|
257
|
+
export const ZodCIDRv4 = /*@__PURE__*/ core.$constructor("ZodCIDRv4", (inst, def) => {
|
|
258
|
+
core.$ZodCIDRv4.init(inst, def);
|
|
259
|
+
ZodStringFormat.init(inst, def);
|
|
260
|
+
});
|
|
261
|
+
export function cidrv4(params) {
|
|
262
|
+
return core._cidrv4(ZodCIDRv4, params);
|
|
263
|
+
}
|
|
264
|
+
export const ZodCIDRv6 = /*@__PURE__*/ core.$constructor("ZodCIDRv6", (inst, def) => {
|
|
265
|
+
core.$ZodCIDRv6.init(inst, def);
|
|
266
|
+
ZodStringFormat.init(inst, def);
|
|
267
|
+
});
|
|
268
|
+
export function cidrv6(params) {
|
|
269
|
+
return core._cidrv6(ZodCIDRv6, params);
|
|
270
|
+
}
|
|
271
|
+
export const ZodBase64 = /*@__PURE__*/ core.$constructor("ZodBase64", (inst, def) => {
|
|
272
|
+
// ZodStringFormat.init(inst, def);
|
|
273
|
+
core.$ZodBase64.init(inst, def);
|
|
274
|
+
ZodStringFormat.init(inst, def);
|
|
275
|
+
});
|
|
276
|
+
export function base64(params) {
|
|
277
|
+
return core._base64(ZodBase64, params);
|
|
278
|
+
}
|
|
279
|
+
export const ZodBase64URL = /*@__PURE__*/ core.$constructor("ZodBase64URL", (inst, def) => {
|
|
280
|
+
// ZodStringFormat.init(inst, def);
|
|
281
|
+
core.$ZodBase64URL.init(inst, def);
|
|
282
|
+
ZodStringFormat.init(inst, def);
|
|
283
|
+
});
|
|
284
|
+
export function base64url(params) {
|
|
285
|
+
return core._base64url(ZodBase64URL, params);
|
|
286
|
+
}
|
|
287
|
+
export const ZodE164 = /*@__PURE__*/ core.$constructor("ZodE164", (inst, def) => {
|
|
288
|
+
// ZodStringFormat.init(inst, def);
|
|
289
|
+
core.$ZodE164.init(inst, def);
|
|
290
|
+
ZodStringFormat.init(inst, def);
|
|
291
|
+
});
|
|
292
|
+
export function e164(params) {
|
|
293
|
+
return core._e164(ZodE164, params);
|
|
294
|
+
}
|
|
295
|
+
export const ZodJWT = /*@__PURE__*/ core.$constructor("ZodJWT", (inst, def) => {
|
|
296
|
+
// ZodStringFormat.init(inst, def);
|
|
297
|
+
core.$ZodJWT.init(inst, def);
|
|
298
|
+
ZodStringFormat.init(inst, def);
|
|
299
|
+
});
|
|
300
|
+
export function jwt(params) {
|
|
301
|
+
return core._jwt(ZodJWT, params);
|
|
302
|
+
}
|
|
303
|
+
export const ZodCustomStringFormat = /*@__PURE__*/ core.$constructor("ZodCustomStringFormat", (inst, def) => {
|
|
304
|
+
// ZodStringFormat.init(inst, def);
|
|
305
|
+
core.$ZodCustomStringFormat.init(inst, def);
|
|
306
|
+
ZodStringFormat.init(inst, def);
|
|
307
|
+
});
|
|
308
|
+
export function stringFormat(format, fnOrRegex, _params = {}) {
|
|
309
|
+
return core._stringFormat(ZodCustomStringFormat, format, fnOrRegex, _params);
|
|
310
|
+
}
|
|
311
|
+
export const ZodNumber = /*@__PURE__*/ core.$constructor("ZodNumber", (inst, def) => {
|
|
312
|
+
core.$ZodNumber.init(inst, def);
|
|
313
|
+
ZodType.init(inst, def);
|
|
314
|
+
inst.gt = (value, params) => inst.check(checks.gt(value, params));
|
|
315
|
+
inst.gte = (value, params) => inst.check(checks.gte(value, params));
|
|
316
|
+
inst.min = (value, params) => inst.check(checks.gte(value, params));
|
|
317
|
+
inst.lt = (value, params) => inst.check(checks.lt(value, params));
|
|
318
|
+
inst.lte = (value, params) => inst.check(checks.lte(value, params));
|
|
319
|
+
inst.max = (value, params) => inst.check(checks.lte(value, params));
|
|
320
|
+
inst.int = (params) => inst.check(int(params));
|
|
321
|
+
inst.safe = (params) => inst.check(int(params));
|
|
322
|
+
inst.positive = (params) => inst.check(checks.gt(0, params));
|
|
323
|
+
inst.nonnegative = (params) => inst.check(checks.gte(0, params));
|
|
324
|
+
inst.negative = (params) => inst.check(checks.lt(0, params));
|
|
325
|
+
inst.nonpositive = (params) => inst.check(checks.lte(0, params));
|
|
326
|
+
inst.multipleOf = (value, params) => inst.check(checks.multipleOf(value, params));
|
|
327
|
+
inst.step = (value, params) => inst.check(checks.multipleOf(value, params));
|
|
328
|
+
// inst.finite = (params) => inst.check(core.finite(params));
|
|
329
|
+
inst.finite = () => inst;
|
|
330
|
+
const bag = inst._zod.bag;
|
|
331
|
+
inst.minValue =
|
|
332
|
+
Math.max(bag.minimum ?? Number.NEGATIVE_INFINITY, bag.exclusiveMinimum ?? Number.NEGATIVE_INFINITY) ?? null;
|
|
333
|
+
inst.maxValue =
|
|
334
|
+
Math.min(bag.maximum ?? Number.POSITIVE_INFINITY, bag.exclusiveMaximum ?? Number.POSITIVE_INFINITY) ?? null;
|
|
335
|
+
inst.isInt = (bag.format ?? "").includes("int") || Number.isSafeInteger(bag.multipleOf ?? 0.5);
|
|
336
|
+
inst.isFinite = true;
|
|
337
|
+
inst.format = bag.format ?? null;
|
|
338
|
+
});
|
|
339
|
+
export function number(params) {
|
|
340
|
+
return core._number(ZodNumber, params);
|
|
341
|
+
}
|
|
342
|
+
export const ZodNumberFormat = /*@__PURE__*/ core.$constructor("ZodNumberFormat", (inst, def) => {
|
|
343
|
+
core.$ZodNumberFormat.init(inst, def);
|
|
344
|
+
ZodNumber.init(inst, def);
|
|
345
|
+
});
|
|
346
|
+
export function int(params) {
|
|
347
|
+
return core._int(ZodNumberFormat, params);
|
|
348
|
+
}
|
|
349
|
+
export function float32(params) {
|
|
350
|
+
return core._float32(ZodNumberFormat, params);
|
|
351
|
+
}
|
|
352
|
+
export function float64(params) {
|
|
353
|
+
return core._float64(ZodNumberFormat, params);
|
|
354
|
+
}
|
|
355
|
+
export function int32(params) {
|
|
356
|
+
return core._int32(ZodNumberFormat, params);
|
|
357
|
+
}
|
|
358
|
+
export function uint32(params) {
|
|
359
|
+
return core._uint32(ZodNumberFormat, params);
|
|
360
|
+
}
|
|
361
|
+
export const ZodBoolean = /*@__PURE__*/ core.$constructor("ZodBoolean", (inst, def) => {
|
|
362
|
+
core.$ZodBoolean.init(inst, def);
|
|
363
|
+
ZodType.init(inst, def);
|
|
364
|
+
});
|
|
365
|
+
export function boolean(params) {
|
|
366
|
+
return core._boolean(ZodBoolean, params);
|
|
367
|
+
}
|
|
368
|
+
export const ZodBigInt = /*@__PURE__*/ core.$constructor("ZodBigInt", (inst, def) => {
|
|
369
|
+
core.$ZodBigInt.init(inst, def);
|
|
370
|
+
ZodType.init(inst, def);
|
|
371
|
+
inst.gte = (value, params) => inst.check(checks.gte(value, params));
|
|
372
|
+
inst.min = (value, params) => inst.check(checks.gte(value, params));
|
|
373
|
+
inst.gt = (value, params) => inst.check(checks.gt(value, params));
|
|
374
|
+
inst.gte = (value, params) => inst.check(checks.gte(value, params));
|
|
375
|
+
inst.min = (value, params) => inst.check(checks.gte(value, params));
|
|
376
|
+
inst.lt = (value, params) => inst.check(checks.lt(value, params));
|
|
377
|
+
inst.lte = (value, params) => inst.check(checks.lte(value, params));
|
|
378
|
+
inst.max = (value, params) => inst.check(checks.lte(value, params));
|
|
379
|
+
inst.positive = (params) => inst.check(checks.gt(BigInt(0), params));
|
|
380
|
+
inst.negative = (params) => inst.check(checks.lt(BigInt(0), params));
|
|
381
|
+
inst.nonpositive = (params) => inst.check(checks.lte(BigInt(0), params));
|
|
382
|
+
inst.nonnegative = (params) => inst.check(checks.gte(BigInt(0), params));
|
|
383
|
+
inst.multipleOf = (value, params) => inst.check(checks.multipleOf(value, params));
|
|
384
|
+
const bag = inst._zod.bag;
|
|
385
|
+
inst.minValue = bag.minimum ?? null;
|
|
386
|
+
inst.maxValue = bag.maximum ?? null;
|
|
387
|
+
inst.format = bag.format ?? null;
|
|
388
|
+
});
|
|
389
|
+
export function bigint(params) {
|
|
390
|
+
return core._bigint(ZodBigInt, params);
|
|
391
|
+
}
|
|
392
|
+
export const ZodBigIntFormat = /*@__PURE__*/ core.$constructor("ZodBigIntFormat", (inst, def) => {
|
|
393
|
+
core.$ZodBigIntFormat.init(inst, def);
|
|
394
|
+
ZodBigInt.init(inst, def);
|
|
395
|
+
});
|
|
396
|
+
// int64
|
|
397
|
+
export function int64(params) {
|
|
398
|
+
return core._int64(ZodBigIntFormat, params);
|
|
399
|
+
}
|
|
400
|
+
// uint64
|
|
401
|
+
export function uint64(params) {
|
|
402
|
+
return core._uint64(ZodBigIntFormat, params);
|
|
403
|
+
}
|
|
404
|
+
export const ZodSymbol = /*@__PURE__*/ core.$constructor("ZodSymbol", (inst, def) => {
|
|
405
|
+
core.$ZodSymbol.init(inst, def);
|
|
406
|
+
ZodType.init(inst, def);
|
|
407
|
+
});
|
|
408
|
+
export function symbol(params) {
|
|
409
|
+
return core._symbol(ZodSymbol, params);
|
|
410
|
+
}
|
|
411
|
+
export const ZodUndefined = /*@__PURE__*/ core.$constructor("ZodUndefined", (inst, def) => {
|
|
412
|
+
core.$ZodUndefined.init(inst, def);
|
|
413
|
+
ZodType.init(inst, def);
|
|
414
|
+
});
|
|
415
|
+
function _undefined(params) {
|
|
416
|
+
return core._undefined(ZodUndefined, params);
|
|
417
|
+
}
|
|
418
|
+
export { _undefined as undefined };
|
|
419
|
+
export const ZodNull = /*@__PURE__*/ core.$constructor("ZodNull", (inst, def) => {
|
|
420
|
+
core.$ZodNull.init(inst, def);
|
|
421
|
+
ZodType.init(inst, def);
|
|
422
|
+
});
|
|
423
|
+
function _null(params) {
|
|
424
|
+
return core._null(ZodNull, params);
|
|
425
|
+
}
|
|
426
|
+
export { _null as null };
|
|
427
|
+
export const ZodAny = /*@__PURE__*/ core.$constructor("ZodAny", (inst, def) => {
|
|
428
|
+
core.$ZodAny.init(inst, def);
|
|
429
|
+
ZodType.init(inst, def);
|
|
430
|
+
});
|
|
431
|
+
export function any() {
|
|
432
|
+
return core._any(ZodAny);
|
|
433
|
+
}
|
|
434
|
+
export const ZodUnknown = /*@__PURE__*/ core.$constructor("ZodUnknown", (inst, def) => {
|
|
435
|
+
core.$ZodUnknown.init(inst, def);
|
|
436
|
+
ZodType.init(inst, def);
|
|
437
|
+
});
|
|
438
|
+
export function unknown() {
|
|
439
|
+
return core._unknown(ZodUnknown);
|
|
440
|
+
}
|
|
441
|
+
export const ZodNever = /*@__PURE__*/ core.$constructor("ZodNever", (inst, def) => {
|
|
442
|
+
core.$ZodNever.init(inst, def);
|
|
443
|
+
ZodType.init(inst, def);
|
|
444
|
+
});
|
|
445
|
+
export function never(params) {
|
|
446
|
+
return core._never(ZodNever, params);
|
|
447
|
+
}
|
|
448
|
+
export const ZodVoid = /*@__PURE__*/ core.$constructor("ZodVoid", (inst, def) => {
|
|
449
|
+
core.$ZodVoid.init(inst, def);
|
|
450
|
+
ZodType.init(inst, def);
|
|
451
|
+
});
|
|
452
|
+
function _void(params) {
|
|
453
|
+
return core._void(ZodVoid, params);
|
|
454
|
+
}
|
|
455
|
+
export { _void as void };
|
|
456
|
+
export const ZodDate = /*@__PURE__*/ core.$constructor("ZodDate", (inst, def) => {
|
|
457
|
+
core.$ZodDate.init(inst, def);
|
|
458
|
+
ZodType.init(inst, def);
|
|
459
|
+
inst.min = (value, params) => inst.check(checks.gte(value, params));
|
|
460
|
+
inst.max = (value, params) => inst.check(checks.lte(value, params));
|
|
461
|
+
const c = inst._zod.bag;
|
|
462
|
+
inst.minDate = c.minimum ? new Date(c.minimum) : null;
|
|
463
|
+
inst.maxDate = c.maximum ? new Date(c.maximum) : null;
|
|
464
|
+
});
|
|
465
|
+
export function date(params) {
|
|
466
|
+
return core._date(ZodDate, params);
|
|
467
|
+
}
|
|
468
|
+
export const ZodArray = /*@__PURE__*/ core.$constructor("ZodArray", (inst, def) => {
|
|
469
|
+
core.$ZodArray.init(inst, def);
|
|
470
|
+
ZodType.init(inst, def);
|
|
471
|
+
inst.element = def.element;
|
|
472
|
+
inst.min = (minLength, params) => inst.check(checks.minLength(minLength, params));
|
|
473
|
+
inst.nonempty = (params) => inst.check(checks.minLength(1, params));
|
|
474
|
+
inst.max = (maxLength, params) => inst.check(checks.maxLength(maxLength, params));
|
|
475
|
+
inst.length = (len, params) => inst.check(checks.length(len, params));
|
|
476
|
+
inst.unwrap = () => inst.element;
|
|
477
|
+
});
|
|
478
|
+
export function array(element, params) {
|
|
479
|
+
return core._array(ZodArray, element, params);
|
|
480
|
+
}
|
|
481
|
+
// .keyof
|
|
482
|
+
export function keyof(schema) {
|
|
483
|
+
const shape = schema._zod.def.shape;
|
|
484
|
+
return literal(Object.keys(shape));
|
|
485
|
+
}
|
|
486
|
+
export const ZodObject = /*@__PURE__*/ core.$constructor("ZodObject", (inst, def) => {
|
|
487
|
+
core.$ZodObject.init(inst, def);
|
|
488
|
+
ZodType.init(inst, def);
|
|
489
|
+
util.defineLazy(inst, "shape", () => def.shape);
|
|
490
|
+
inst.keyof = () => _enum(Object.keys(inst._zod.def.shape));
|
|
491
|
+
inst.catchall = (catchall) => inst.clone({ ...inst._zod.def, catchall: catchall });
|
|
492
|
+
inst.passthrough = () => inst.clone({ ...inst._zod.def, catchall: unknown() });
|
|
493
|
+
// inst.nonstrict = () => inst.clone({ ...inst._zod.def, catchall: api.unknown() });
|
|
494
|
+
inst.loose = () => inst.clone({ ...inst._zod.def, catchall: unknown() });
|
|
495
|
+
inst.strict = () => inst.clone({ ...inst._zod.def, catchall: never() });
|
|
496
|
+
inst.strip = () => inst.clone({ ...inst._zod.def, catchall: undefined });
|
|
497
|
+
inst.extend = (incoming) => {
|
|
498
|
+
return util.extend(inst, incoming);
|
|
499
|
+
};
|
|
500
|
+
inst.merge = (other) => util.merge(inst, other);
|
|
501
|
+
inst.pick = (mask) => util.pick(inst, mask);
|
|
502
|
+
inst.omit = (mask) => util.omit(inst, mask);
|
|
503
|
+
inst.partial = (...args) => util.partial(ZodOptional, inst, args[0]);
|
|
504
|
+
inst.required = (...args) => util.required(ZodNonOptional, inst, args[0]);
|
|
505
|
+
});
|
|
506
|
+
export function object(shape, params) {
|
|
507
|
+
const def = {
|
|
508
|
+
type: "object",
|
|
509
|
+
get shape() {
|
|
510
|
+
util.assignProp(this, "shape", { ...shape });
|
|
511
|
+
return this.shape;
|
|
512
|
+
},
|
|
513
|
+
...util.normalizeParams(params),
|
|
514
|
+
};
|
|
515
|
+
return new ZodObject(def);
|
|
516
|
+
}
|
|
517
|
+
// strictObject
|
|
518
|
+
export function strictObject(shape, params) {
|
|
519
|
+
return new ZodObject({
|
|
520
|
+
type: "object",
|
|
521
|
+
get shape() {
|
|
522
|
+
util.assignProp(this, "shape", { ...shape });
|
|
523
|
+
return this.shape;
|
|
524
|
+
},
|
|
525
|
+
catchall: never(),
|
|
526
|
+
...util.normalizeParams(params),
|
|
527
|
+
});
|
|
528
|
+
}
|
|
529
|
+
// looseObject
|
|
530
|
+
export function looseObject(shape, params) {
|
|
531
|
+
return new ZodObject({
|
|
532
|
+
type: "object",
|
|
533
|
+
get shape() {
|
|
534
|
+
util.assignProp(this, "shape", { ...shape });
|
|
535
|
+
return this.shape;
|
|
536
|
+
},
|
|
537
|
+
catchall: unknown(),
|
|
538
|
+
...util.normalizeParams(params),
|
|
539
|
+
});
|
|
540
|
+
}
|
|
541
|
+
export const ZodUnion = /*@__PURE__*/ core.$constructor("ZodUnion", (inst, def) => {
|
|
542
|
+
core.$ZodUnion.init(inst, def);
|
|
543
|
+
ZodType.init(inst, def);
|
|
544
|
+
inst.options = def.options;
|
|
545
|
+
});
|
|
546
|
+
export function union(options, params) {
|
|
547
|
+
return new ZodUnion({
|
|
548
|
+
type: "union",
|
|
549
|
+
options: options,
|
|
550
|
+
...util.normalizeParams(params),
|
|
551
|
+
});
|
|
552
|
+
}
|
|
553
|
+
export const ZodDiscriminatedUnion = /*@__PURE__*/ core.$constructor("ZodDiscriminatedUnion", (inst, def) => {
|
|
554
|
+
ZodUnion.init(inst, def);
|
|
555
|
+
core.$ZodDiscriminatedUnion.init(inst, def);
|
|
556
|
+
});
|
|
557
|
+
export function discriminatedUnion(discriminator, options, params) {
|
|
558
|
+
// const [options, params] = args;
|
|
559
|
+
return new ZodDiscriminatedUnion({
|
|
560
|
+
type: "union",
|
|
561
|
+
options,
|
|
562
|
+
discriminator,
|
|
563
|
+
...util.normalizeParams(params),
|
|
564
|
+
});
|
|
565
|
+
}
|
|
566
|
+
export const ZodIntersection = /*@__PURE__*/ core.$constructor("ZodIntersection", (inst, def) => {
|
|
567
|
+
core.$ZodIntersection.init(inst, def);
|
|
568
|
+
ZodType.init(inst, def);
|
|
569
|
+
});
|
|
570
|
+
export function intersection(left, right) {
|
|
571
|
+
return new ZodIntersection({
|
|
572
|
+
type: "intersection",
|
|
573
|
+
left: left,
|
|
574
|
+
right: right,
|
|
575
|
+
});
|
|
576
|
+
}
|
|
577
|
+
export const ZodTuple = /*@__PURE__*/ core.$constructor("ZodTuple", (inst, def) => {
|
|
578
|
+
core.$ZodTuple.init(inst, def);
|
|
579
|
+
ZodType.init(inst, def);
|
|
580
|
+
inst.rest = (rest) => inst.clone({
|
|
581
|
+
...inst._zod.def,
|
|
582
|
+
rest: rest,
|
|
583
|
+
});
|
|
584
|
+
});
|
|
585
|
+
export function tuple(items, _paramsOrRest, _params) {
|
|
586
|
+
const hasRest = _paramsOrRest instanceof core.$ZodType;
|
|
587
|
+
const params = hasRest ? _params : _paramsOrRest;
|
|
588
|
+
const rest = hasRest ? _paramsOrRest : null;
|
|
589
|
+
return new ZodTuple({
|
|
590
|
+
type: "tuple",
|
|
591
|
+
items: items,
|
|
592
|
+
rest,
|
|
593
|
+
...util.normalizeParams(params),
|
|
594
|
+
});
|
|
595
|
+
}
|
|
596
|
+
export const ZodRecord = /*@__PURE__*/ core.$constructor("ZodRecord", (inst, def) => {
|
|
597
|
+
core.$ZodRecord.init(inst, def);
|
|
598
|
+
ZodType.init(inst, def);
|
|
599
|
+
inst.keyType = def.keyType;
|
|
600
|
+
inst.valueType = def.valueType;
|
|
601
|
+
});
|
|
602
|
+
export function record(keyType, valueType, params) {
|
|
603
|
+
return new ZodRecord({
|
|
604
|
+
type: "record",
|
|
605
|
+
keyType,
|
|
606
|
+
valueType: valueType,
|
|
607
|
+
...util.normalizeParams(params),
|
|
608
|
+
});
|
|
609
|
+
}
|
|
610
|
+
// type alksjf = core.output<core.$ZodRecordKey>;
|
|
611
|
+
export function partialRecord(keyType, valueType, params) {
|
|
612
|
+
return new ZodRecord({
|
|
613
|
+
type: "record",
|
|
614
|
+
keyType: union([keyType, never()]),
|
|
615
|
+
valueType: valueType,
|
|
616
|
+
...util.normalizeParams(params),
|
|
617
|
+
});
|
|
618
|
+
}
|
|
619
|
+
export const ZodMap = /*@__PURE__*/ core.$constructor("ZodMap", (inst, def) => {
|
|
620
|
+
core.$ZodMap.init(inst, def);
|
|
621
|
+
ZodType.init(inst, def);
|
|
622
|
+
inst.keyType = def.keyType;
|
|
623
|
+
inst.valueType = def.valueType;
|
|
624
|
+
});
|
|
625
|
+
export function map(keyType, valueType, params) {
|
|
626
|
+
return new ZodMap({
|
|
627
|
+
type: "map",
|
|
628
|
+
keyType: keyType,
|
|
629
|
+
valueType: valueType,
|
|
630
|
+
...util.normalizeParams(params),
|
|
631
|
+
});
|
|
632
|
+
}
|
|
633
|
+
export const ZodSet = /*@__PURE__*/ core.$constructor("ZodSet", (inst, def) => {
|
|
634
|
+
core.$ZodSet.init(inst, def);
|
|
635
|
+
ZodType.init(inst, def);
|
|
636
|
+
inst.min = (...args) => inst.check(core._minSize(...args));
|
|
637
|
+
inst.nonempty = (params) => inst.check(core._minSize(1, params));
|
|
638
|
+
inst.max = (...args) => inst.check(core._maxSize(...args));
|
|
639
|
+
inst.size = (...args) => inst.check(core._size(...args));
|
|
640
|
+
});
|
|
641
|
+
export function set(valueType, params) {
|
|
642
|
+
return new ZodSet({
|
|
643
|
+
type: "set",
|
|
644
|
+
valueType: valueType,
|
|
645
|
+
...util.normalizeParams(params),
|
|
646
|
+
});
|
|
647
|
+
}
|
|
648
|
+
export const ZodEnum = /*@__PURE__*/ core.$constructor("ZodEnum", (inst, def) => {
|
|
649
|
+
core.$ZodEnum.init(inst, def);
|
|
650
|
+
ZodType.init(inst, def);
|
|
651
|
+
inst.enum = def.entries;
|
|
652
|
+
inst.options = Object.values(def.entries);
|
|
653
|
+
const keys = new Set(Object.keys(def.entries));
|
|
654
|
+
inst.extract = (values, params) => {
|
|
655
|
+
const newEntries = {};
|
|
656
|
+
for (const value of values) {
|
|
657
|
+
if (keys.has(value)) {
|
|
658
|
+
newEntries[value] = def.entries[value];
|
|
659
|
+
}
|
|
660
|
+
else
|
|
661
|
+
throw new Error(`Key ${value} not found in enum`);
|
|
662
|
+
}
|
|
663
|
+
return new ZodEnum({
|
|
664
|
+
...def,
|
|
665
|
+
checks: [],
|
|
666
|
+
...util.normalizeParams(params),
|
|
667
|
+
entries: newEntries,
|
|
668
|
+
});
|
|
669
|
+
};
|
|
670
|
+
inst.exclude = (values, params) => {
|
|
671
|
+
const newEntries = { ...def.entries };
|
|
672
|
+
for (const value of values) {
|
|
673
|
+
if (keys.has(value)) {
|
|
674
|
+
delete newEntries[value];
|
|
675
|
+
}
|
|
676
|
+
else
|
|
677
|
+
throw new Error(`Key ${value} not found in enum`);
|
|
678
|
+
}
|
|
679
|
+
return new ZodEnum({
|
|
680
|
+
...def,
|
|
681
|
+
checks: [],
|
|
682
|
+
...util.normalizeParams(params),
|
|
683
|
+
entries: newEntries,
|
|
684
|
+
});
|
|
685
|
+
};
|
|
686
|
+
});
|
|
687
|
+
function _enum(values, params) {
|
|
688
|
+
const entries = Array.isArray(values) ? Object.fromEntries(values.map((v) => [v, v])) : values;
|
|
689
|
+
return new ZodEnum({
|
|
690
|
+
type: "enum",
|
|
691
|
+
entries,
|
|
692
|
+
...util.normalizeParams(params),
|
|
693
|
+
});
|
|
694
|
+
}
|
|
695
|
+
export { _enum as enum };
|
|
696
|
+
/** @deprecated This API has been merged into `z.enum()`. Use `z.enum()` instead.
|
|
697
|
+
*
|
|
698
|
+
* ```ts
|
|
699
|
+
* enum Colors { red, green, blue }
|
|
700
|
+
* z.enum(Colors);
|
|
701
|
+
* ```
|
|
702
|
+
*/
|
|
703
|
+
export function nativeEnum(entries, params) {
|
|
704
|
+
return new ZodEnum({
|
|
705
|
+
type: "enum",
|
|
706
|
+
entries,
|
|
707
|
+
...util.normalizeParams(params),
|
|
708
|
+
});
|
|
709
|
+
}
|
|
710
|
+
export const ZodLiteral = /*@__PURE__*/ core.$constructor("ZodLiteral", (inst, def) => {
|
|
711
|
+
core.$ZodLiteral.init(inst, def);
|
|
712
|
+
ZodType.init(inst, def);
|
|
713
|
+
inst.values = new Set(def.values);
|
|
714
|
+
Object.defineProperty(inst, "value", {
|
|
715
|
+
get() {
|
|
716
|
+
if (def.values.length > 1) {
|
|
717
|
+
throw new Error("This schema contains multiple valid literal values. Use `.values` instead.");
|
|
718
|
+
}
|
|
719
|
+
return def.values[0];
|
|
720
|
+
},
|
|
721
|
+
});
|
|
722
|
+
});
|
|
723
|
+
export function literal(value, params) {
|
|
724
|
+
return new ZodLiteral({
|
|
725
|
+
type: "literal",
|
|
726
|
+
values: Array.isArray(value) ? value : [value],
|
|
727
|
+
...util.normalizeParams(params),
|
|
728
|
+
});
|
|
729
|
+
}
|
|
730
|
+
export const ZodFile = /*@__PURE__*/ core.$constructor("ZodFile", (inst, def) => {
|
|
731
|
+
core.$ZodFile.init(inst, def);
|
|
732
|
+
ZodType.init(inst, def);
|
|
733
|
+
inst.min = (size, params) => inst.check(core._minSize(size, params));
|
|
734
|
+
inst.max = (size, params) => inst.check(core._maxSize(size, params));
|
|
735
|
+
inst.mime = (types, params) => inst.check(core._mime(Array.isArray(types) ? types : [types], params));
|
|
736
|
+
});
|
|
737
|
+
export function file(params) {
|
|
738
|
+
return core._file(ZodFile, params);
|
|
739
|
+
}
|
|
740
|
+
export const ZodTransform = /*@__PURE__*/ core.$constructor("ZodTransform", (inst, def) => {
|
|
741
|
+
core.$ZodTransform.init(inst, def);
|
|
742
|
+
ZodType.init(inst, def);
|
|
743
|
+
inst._zod.parse = (payload, _ctx) => {
|
|
744
|
+
payload.addIssue = (issue) => {
|
|
745
|
+
if (typeof issue === "string") {
|
|
746
|
+
payload.issues.push(util.issue(issue, payload.value, def));
|
|
747
|
+
}
|
|
748
|
+
else {
|
|
749
|
+
// for Zod 3 backwards compatibility
|
|
750
|
+
const _issue = issue;
|
|
751
|
+
if (_issue.fatal)
|
|
752
|
+
_issue.continue = false;
|
|
753
|
+
_issue.code ?? (_issue.code = "custom");
|
|
754
|
+
_issue.input ?? (_issue.input = payload.value);
|
|
755
|
+
_issue.inst ?? (_issue.inst = inst);
|
|
756
|
+
_issue.continue ?? (_issue.continue = true);
|
|
757
|
+
payload.issues.push(util.issue(_issue));
|
|
758
|
+
}
|
|
759
|
+
};
|
|
760
|
+
const output = def.transform(payload.value, payload);
|
|
761
|
+
if (output instanceof Promise) {
|
|
762
|
+
return output.then((output) => {
|
|
763
|
+
payload.value = output;
|
|
764
|
+
return payload;
|
|
765
|
+
});
|
|
766
|
+
}
|
|
767
|
+
payload.value = output;
|
|
768
|
+
return payload;
|
|
769
|
+
};
|
|
770
|
+
});
|
|
771
|
+
export function transform(fn) {
|
|
772
|
+
return new ZodTransform({
|
|
773
|
+
type: "transform",
|
|
774
|
+
transform: fn,
|
|
775
|
+
});
|
|
776
|
+
}
|
|
777
|
+
export const ZodOptional = /*@__PURE__*/ core.$constructor("ZodOptional", (inst, def) => {
|
|
778
|
+
core.$ZodOptional.init(inst, def);
|
|
779
|
+
ZodType.init(inst, def);
|
|
780
|
+
inst.unwrap = () => inst._zod.def.innerType;
|
|
781
|
+
});
|
|
782
|
+
export function optional(innerType) {
|
|
783
|
+
return new ZodOptional({
|
|
784
|
+
type: "optional",
|
|
785
|
+
innerType: innerType,
|
|
786
|
+
});
|
|
787
|
+
}
|
|
788
|
+
export const ZodNullable = /*@__PURE__*/ core.$constructor("ZodNullable", (inst, def) => {
|
|
789
|
+
core.$ZodNullable.init(inst, def);
|
|
790
|
+
ZodType.init(inst, def);
|
|
791
|
+
inst.unwrap = () => inst._zod.def.innerType;
|
|
792
|
+
});
|
|
793
|
+
export function nullable(innerType) {
|
|
794
|
+
return new ZodNullable({
|
|
795
|
+
type: "nullable",
|
|
796
|
+
innerType: innerType,
|
|
797
|
+
});
|
|
798
|
+
}
|
|
799
|
+
// nullish
|
|
800
|
+
export function nullish(innerType) {
|
|
801
|
+
return optional(nullable(innerType));
|
|
802
|
+
}
|
|
803
|
+
export const ZodDefault = /*@__PURE__*/ core.$constructor("ZodDefault", (inst, def) => {
|
|
804
|
+
core.$ZodDefault.init(inst, def);
|
|
805
|
+
ZodType.init(inst, def);
|
|
806
|
+
inst.unwrap = () => inst._zod.def.innerType;
|
|
807
|
+
inst.removeDefault = inst.unwrap;
|
|
808
|
+
});
|
|
809
|
+
export function _default(innerType, defaultValue) {
|
|
810
|
+
return new ZodDefault({
|
|
811
|
+
type: "default",
|
|
812
|
+
innerType: innerType,
|
|
813
|
+
get defaultValue() {
|
|
814
|
+
return typeof defaultValue === "function" ? defaultValue() : defaultValue;
|
|
815
|
+
},
|
|
816
|
+
});
|
|
817
|
+
}
|
|
818
|
+
export const ZodPrefault = /*@__PURE__*/ core.$constructor("ZodPrefault", (inst, def) => {
|
|
819
|
+
core.$ZodPrefault.init(inst, def);
|
|
820
|
+
ZodType.init(inst, def);
|
|
821
|
+
inst.unwrap = () => inst._zod.def.innerType;
|
|
822
|
+
});
|
|
823
|
+
export function prefault(innerType, defaultValue) {
|
|
824
|
+
return new ZodPrefault({
|
|
825
|
+
type: "prefault",
|
|
826
|
+
innerType: innerType,
|
|
827
|
+
get defaultValue() {
|
|
828
|
+
return typeof defaultValue === "function" ? defaultValue() : defaultValue;
|
|
829
|
+
},
|
|
830
|
+
});
|
|
831
|
+
}
|
|
832
|
+
export const ZodNonOptional = /*@__PURE__*/ core.$constructor("ZodNonOptional", (inst, def) => {
|
|
833
|
+
core.$ZodNonOptional.init(inst, def);
|
|
834
|
+
ZodType.init(inst, def);
|
|
835
|
+
inst.unwrap = () => inst._zod.def.innerType;
|
|
836
|
+
});
|
|
837
|
+
export function nonoptional(innerType, params) {
|
|
838
|
+
return new ZodNonOptional({
|
|
839
|
+
type: "nonoptional",
|
|
840
|
+
innerType: innerType,
|
|
841
|
+
...util.normalizeParams(params),
|
|
842
|
+
});
|
|
843
|
+
}
|
|
844
|
+
export const ZodSuccess = /*@__PURE__*/ core.$constructor("ZodSuccess", (inst, def) => {
|
|
845
|
+
core.$ZodSuccess.init(inst, def);
|
|
846
|
+
ZodType.init(inst, def);
|
|
847
|
+
inst.unwrap = () => inst._zod.def.innerType;
|
|
848
|
+
});
|
|
849
|
+
export function success(innerType) {
|
|
850
|
+
return new ZodSuccess({
|
|
851
|
+
type: "success",
|
|
852
|
+
innerType: innerType,
|
|
853
|
+
});
|
|
854
|
+
}
|
|
855
|
+
export const ZodCatch = /*@__PURE__*/ core.$constructor("ZodCatch", (inst, def) => {
|
|
856
|
+
core.$ZodCatch.init(inst, def);
|
|
857
|
+
ZodType.init(inst, def);
|
|
858
|
+
inst.unwrap = () => inst._zod.def.innerType;
|
|
859
|
+
inst.removeCatch = inst.unwrap;
|
|
860
|
+
});
|
|
861
|
+
function _catch(innerType, catchValue) {
|
|
862
|
+
return new ZodCatch({
|
|
863
|
+
type: "catch",
|
|
864
|
+
innerType: innerType,
|
|
865
|
+
catchValue: (typeof catchValue === "function" ? catchValue : () => catchValue),
|
|
866
|
+
});
|
|
867
|
+
}
|
|
868
|
+
export { _catch as catch };
|
|
869
|
+
export const ZodNaN = /*@__PURE__*/ core.$constructor("ZodNaN", (inst, def) => {
|
|
870
|
+
core.$ZodNaN.init(inst, def);
|
|
871
|
+
ZodType.init(inst, def);
|
|
872
|
+
});
|
|
873
|
+
export function nan(params) {
|
|
874
|
+
return core._nan(ZodNaN, params);
|
|
875
|
+
}
|
|
876
|
+
export const ZodPipe = /*@__PURE__*/ core.$constructor("ZodPipe", (inst, def) => {
|
|
877
|
+
core.$ZodPipe.init(inst, def);
|
|
878
|
+
ZodType.init(inst, def);
|
|
879
|
+
inst.in = def.in;
|
|
880
|
+
inst.out = def.out;
|
|
881
|
+
});
|
|
882
|
+
export function pipe(in_, out) {
|
|
883
|
+
return new ZodPipe({
|
|
884
|
+
type: "pipe",
|
|
885
|
+
in: in_,
|
|
886
|
+
out: out,
|
|
887
|
+
// ...util.normalizeParams(params),
|
|
888
|
+
});
|
|
889
|
+
}
|
|
890
|
+
export const ZodReadonly = /*@__PURE__*/ core.$constructor("ZodReadonly", (inst, def) => {
|
|
891
|
+
core.$ZodReadonly.init(inst, def);
|
|
892
|
+
ZodType.init(inst, def);
|
|
893
|
+
});
|
|
894
|
+
export function readonly(innerType) {
|
|
895
|
+
return new ZodReadonly({
|
|
896
|
+
type: "readonly",
|
|
897
|
+
innerType: innerType,
|
|
898
|
+
});
|
|
899
|
+
}
|
|
900
|
+
export const ZodTemplateLiteral = /*@__PURE__*/ core.$constructor("ZodTemplateLiteral", (inst, def) => {
|
|
901
|
+
core.$ZodTemplateLiteral.init(inst, def);
|
|
902
|
+
ZodType.init(inst, def);
|
|
903
|
+
});
|
|
904
|
+
export function templateLiteral(parts, params) {
|
|
905
|
+
return new ZodTemplateLiteral({
|
|
906
|
+
type: "template_literal",
|
|
907
|
+
parts,
|
|
908
|
+
...util.normalizeParams(params),
|
|
909
|
+
});
|
|
910
|
+
}
|
|
911
|
+
export const ZodLazy = /*@__PURE__*/ core.$constructor("ZodLazy", (inst, def) => {
|
|
912
|
+
core.$ZodLazy.init(inst, def);
|
|
913
|
+
ZodType.init(inst, def);
|
|
914
|
+
inst.unwrap = () => inst._zod.def.getter();
|
|
915
|
+
});
|
|
916
|
+
export function lazy(getter) {
|
|
917
|
+
return new ZodLazy({
|
|
918
|
+
type: "lazy",
|
|
919
|
+
getter: getter,
|
|
920
|
+
});
|
|
921
|
+
}
|
|
922
|
+
export const ZodPromise = /*@__PURE__*/ core.$constructor("ZodPromise", (inst, def) => {
|
|
923
|
+
core.$ZodPromise.init(inst, def);
|
|
924
|
+
ZodType.init(inst, def);
|
|
925
|
+
inst.unwrap = () => inst._zod.def.innerType;
|
|
926
|
+
});
|
|
927
|
+
export function promise(innerType) {
|
|
928
|
+
return new ZodPromise({
|
|
929
|
+
type: "promise",
|
|
930
|
+
innerType: innerType,
|
|
931
|
+
});
|
|
932
|
+
}
|
|
933
|
+
export const ZodCustom = /*@__PURE__*/ core.$constructor("ZodCustom", (inst, def) => {
|
|
934
|
+
core.$ZodCustom.init(inst, def);
|
|
935
|
+
ZodType.init(inst, def);
|
|
936
|
+
});
|
|
937
|
+
// custom checks
|
|
938
|
+
export function check(fn) {
|
|
939
|
+
const ch = new core.$ZodCheck({
|
|
940
|
+
check: "custom",
|
|
941
|
+
// ...util.normalizeParams(params),
|
|
942
|
+
});
|
|
943
|
+
ch._zod.check = fn;
|
|
944
|
+
return ch;
|
|
945
|
+
}
|
|
946
|
+
export function custom(fn, _params) {
|
|
947
|
+
return core._custom(ZodCustom, fn ?? (() => true), _params);
|
|
948
|
+
}
|
|
949
|
+
export function refine(fn, _params = {}) {
|
|
950
|
+
return core._refine(ZodCustom, fn, _params);
|
|
951
|
+
}
|
|
952
|
+
// superRefine
|
|
953
|
+
export function superRefine(fn) {
|
|
954
|
+
const ch = check((payload) => {
|
|
955
|
+
payload.addIssue = (issue) => {
|
|
956
|
+
if (typeof issue === "string") {
|
|
957
|
+
payload.issues.push(util.issue(issue, payload.value, ch._zod.def));
|
|
958
|
+
}
|
|
959
|
+
else {
|
|
960
|
+
// for Zod 3 backwards compatibility
|
|
961
|
+
const _issue = issue;
|
|
962
|
+
if (_issue.fatal)
|
|
963
|
+
_issue.continue = false;
|
|
964
|
+
_issue.code ?? (_issue.code = "custom");
|
|
965
|
+
_issue.input ?? (_issue.input = payload.value);
|
|
966
|
+
_issue.inst ?? (_issue.inst = ch);
|
|
967
|
+
_issue.continue ?? (_issue.continue = !ch._zod.def.abort);
|
|
968
|
+
payload.issues.push(util.issue(_issue));
|
|
969
|
+
}
|
|
970
|
+
};
|
|
971
|
+
return fn(payload.value, payload);
|
|
972
|
+
});
|
|
973
|
+
return ch;
|
|
974
|
+
}
|
|
975
|
+
function _instanceof(cls, params = {
|
|
976
|
+
error: `Input not instance of ${cls.name}`,
|
|
977
|
+
}) {
|
|
978
|
+
const inst = new ZodCustom({
|
|
979
|
+
type: "custom",
|
|
980
|
+
check: "custom",
|
|
981
|
+
fn: (data) => data instanceof cls,
|
|
982
|
+
abort: true,
|
|
983
|
+
...util.normalizeParams(params),
|
|
984
|
+
});
|
|
985
|
+
inst._zod.bag.Class = cls;
|
|
986
|
+
return inst;
|
|
987
|
+
}
|
|
988
|
+
export { _instanceof as instanceof };
|
|
989
|
+
// stringbool
|
|
990
|
+
export const stringbool = (...args) => core._stringbool({
|
|
991
|
+
Pipe: ZodPipe,
|
|
992
|
+
Boolean: ZodBoolean,
|
|
993
|
+
String: ZodString,
|
|
994
|
+
Transform: ZodTransform,
|
|
995
|
+
}, ...args);
|
|
996
|
+
export function json(params) {
|
|
997
|
+
const jsonSchema = lazy(() => {
|
|
998
|
+
return union([string(params), number(), boolean(), _null(), array(jsonSchema), record(string(), jsonSchema)]);
|
|
999
|
+
});
|
|
1000
|
+
return jsonSchema;
|
|
1001
|
+
}
|
|
1002
|
+
// preprocess
|
|
1003
|
+
// /** @deprecated Use `z.pipe()` and `z.transform()` instead. */
|
|
1004
|
+
export function preprocess(fn, schema) {
|
|
1005
|
+
return pipe(transform(fn), schema);
|
|
1006
|
+
}
|