@ariestools/sdk 7.0.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/LICENSE +165 -0
- package/README.md +45 -0
- package/dist/_pkg/api/neutral/ApiClient.d.ts +10 -0
- package/dist/_pkg/api/neutral/ApiConfig.d.ts +9 -0
- package/dist/_pkg/api/neutral/ApiEndpoint.d.ts +19 -0
- package/dist/_pkg/api/neutral/ApiStage.d.ts +11 -0
- package/dist/_pkg/api/neutral/getApiStage.d.ts +8 -0
- package/dist/_pkg/api/neutral/index.d.ts +6 -0
- package/dist/_pkg/api/neutral/index.mjs +78 -0
- package/dist/_pkg/api/neutral/model.d.ts +3 -0
- package/dist/_pkg/api/neutral/model.mjs +1 -0
- package/dist/_pkg/array/neutral/containsAll.d.ts +8 -0
- package/dist/_pkg/array/neutral/distinct.d.ts +6 -0
- package/dist/_pkg/array/neutral/filterAs.d.ts +8 -0
- package/dist/_pkg/array/neutral/filterAsync.d.ts +9 -0
- package/dist/_pkg/array/neutral/findAs.d.ts +15 -0
- package/dist/_pkg/array/neutral/flatten.d.ts +8 -0
- package/dist/_pkg/array/neutral/index.d.ts +8 -0
- package/dist/_pkg/array/neutral/index.mjs +80 -0
- package/dist/_pkg/array/neutral/uniq.d.ts +14 -0
- package/dist/_pkg/arraybuffer/neutral/equalArrayBuffers.d.ts +8 -0
- package/dist/_pkg/arraybuffer/neutral/index.d.ts +5 -0
- package/dist/_pkg/arraybuffer/neutral/index.mjs +74 -0
- package/dist/_pkg/arraybuffer/neutral/isArrayBuffer.d.ts +7 -0
- package/dist/_pkg/arraybuffer/neutral/toArrayBuffer.d.ts +11 -0
- package/dist/_pkg/arraybuffer/neutral/toUint8Array.d.ts +11 -0
- package/dist/_pkg/assert/neutral/assertDefinedEx.d.ts +41 -0
- package/dist/_pkg/assert/neutral/assertEx.d.ts +41 -0
- package/dist/_pkg/assert/neutral/index.d.ts +4 -0
- package/dist/_pkg/assert/neutral/index.mjs +30 -0
- package/dist/_pkg/assert/neutral/model.d.ts +2 -0
- package/dist/_pkg/assert/neutral/model.mjs +1 -0
- package/dist/_pkg/assert/neutral/types.d.ts +36 -0
- package/dist/_pkg/base/neutral/Base.d.ts +53 -0
- package/dist/_pkg/base/neutral/UniqueBase.d.ts +10 -0
- package/dist/_pkg/base/neutral/globallyUnique.d.ts +21 -0
- package/dist/_pkg/base/neutral/index.d.ts +4 -0
- package/dist/_pkg/base/neutral/index.mjs +164 -0
- package/dist/_pkg/base/neutral/model.d.ts +2 -0
- package/dist/_pkg/base/neutral/model.mjs +1 -0
- package/dist/_pkg/creatable/neutral/AbstractCreatable.d.ts +123 -0
- package/dist/_pkg/creatable/neutral/Creatable.d.ts +49 -0
- package/dist/_pkg/creatable/neutral/Factory.d.ts +28 -0
- package/dist/_pkg/creatable/neutral/index.d.ts +5 -0
- package/dist/_pkg/creatable/neutral/index.mjs +396 -0
- package/dist/_pkg/creatable/neutral/lib/getFunctionName.d.ts +7 -0
- package/dist/_pkg/creatable/neutral/lib/getRootFunction.d.ts +8 -0
- package/dist/_pkg/creatable/neutral/lib/index.d.ts +3 -0
- package/dist/_pkg/creatable/neutral/model/CreatableInstance.d.ts +16 -0
- package/dist/_pkg/creatable/neutral/model/CreatableParams.d.ts +16 -0
- package/dist/_pkg/creatable/neutral/model/CreatableStatusReporter.d.ts +15 -0
- package/dist/_pkg/creatable/neutral/model/Labels.d.ts +24 -0
- package/dist/_pkg/creatable/neutral/model/index.d.ts +5 -0
- package/dist/_pkg/creatable/neutral/model.d.ts +3 -0
- package/dist/_pkg/creatable/neutral/model.mjs +1 -0
- package/dist/_pkg/decimal-precision/neutral/fromFixedPoint.d.ts +8 -0
- package/dist/_pkg/decimal-precision/neutral/index.d.ts +4 -0
- package/dist/_pkg/decimal-precision/neutral/index.mjs +39 -0
- package/dist/_pkg/decimal-precision/neutral/toDecimalPrecision.d.ts +8 -0
- package/dist/_pkg/decimal-precision/neutral/toFixedPoint.d.ts +8 -0
- package/dist/_pkg/delay/neutral/delay.d.ts +7 -0
- package/dist/_pkg/delay/neutral/index.d.ts +2 -0
- package/dist/_pkg/delay/neutral/index.mjs +9 -0
- package/dist/_pkg/ellipsize/neutral/index.d.ts +8 -0
- package/dist/_pkg/ellipsize/neutral/index.mjs +10 -0
- package/dist/_pkg/enum/neutral/Enum.d.ts +88 -0
- package/dist/_pkg/enum/neutral/index.d.ts +2 -0
- package/dist/_pkg/enum/neutral/index.mjs +8 -0
- package/dist/_pkg/enum/neutral/model.d.ts +2 -0
- package/dist/_pkg/enum/neutral/model.mjs +1 -0
- package/dist/_pkg/error/neutral/assert.d.ts +12 -0
- package/dist/_pkg/error/neutral/handleError.d.ts +15 -0
- package/dist/_pkg/error/neutral/index.d.ts +3 -0
- package/dist/_pkg/error/neutral/index.mjs +32 -0
- package/dist/_pkg/error/neutral/model.d.ts +2 -0
- package/dist/_pkg/error/neutral/model.mjs +1 -0
- package/dist/_pkg/events/neutral/BaseEmitter.d.ts +74 -0
- package/dist/_pkg/events/neutral/Events/Events.d.ts +132 -0
- package/dist/_pkg/events/neutral/Events/index.d.ts +2 -0
- package/dist/_pkg/events/neutral/index.d.ts +4 -0
- package/dist/_pkg/events/neutral/index.mjs +415 -0
- package/dist/_pkg/events/neutral/model/Event.d.ts +21 -0
- package/dist/_pkg/events/neutral/model/EventEmitter.d.ts +25 -0
- package/dist/_pkg/events/neutral/model/index.d.ts +3 -0
- package/dist/_pkg/events/neutral/model.d.ts +3 -0
- package/dist/_pkg/events/neutral/model.mjs +1 -0
- package/dist/_pkg/exists/neutral/index.d.ts +10 -0
- package/dist/_pkg/exists/neutral/index.mjs +8 -0
- package/dist/_pkg/fetch/neutral/FetchClient.d.ts +46 -0
- package/dist/_pkg/fetch/neutral/FetchError.d.ts +80 -0
- package/dist/_pkg/fetch/neutral/FetchJsonClient.d.ts +19 -0
- package/dist/_pkg/fetch/neutral/fetchCompress.d.ts +12 -0
- package/dist/_pkg/fetch/neutral/fetchJson.d.ts +7 -0
- package/dist/_pkg/fetch/neutral/index.d.ts +11 -0
- package/dist/_pkg/fetch/neutral/index.mjs +365 -0
- package/dist/_pkg/fetch/neutral/methods.d.ts +12 -0
- package/dist/_pkg/fetch/neutral/model.d.ts +5 -0
- package/dist/_pkg/fetch/neutral/model.mjs +1 -0
- package/dist/_pkg/fetch/neutral/parseJson.d.ts +16 -0
- package/dist/_pkg/fetch/neutral/types.d.ts +12 -0
- package/dist/_pkg/forget/neutral/ForgetConfig.d.ts +21 -0
- package/dist/_pkg/forget/neutral/ForgetNodeConfig.d.ts +13 -0
- package/dist/_pkg/forget/neutral/ForgetPromise.d.ts +49 -0
- package/dist/_pkg/forget/neutral/ForgetPromiseNode.d.ts +15 -0
- package/dist/_pkg/forget/neutral/forget.d.ts +10 -0
- package/dist/_pkg/forget/neutral/forgetNode.d.ts +9 -0
- package/dist/_pkg/forget/neutral/index.d.ts +2 -0
- package/dist/_pkg/forget/neutral/index.mjs +162 -0
- package/dist/_pkg/forget/neutral/model.d.ts +3 -0
- package/dist/_pkg/forget/neutral/model.mjs +1 -0
- package/dist/_pkg/forget/neutral/neutral/index.d.ts +4 -0
- package/dist/_pkg/forget/neutral/node/index.d.ts +4 -0
- package/dist/_pkg/function-name/neutral/functionName.d.ts +7 -0
- package/dist/_pkg/function-name/neutral/index.d.ts +2 -0
- package/dist/_pkg/function-name/neutral/index.mjs +27 -0
- package/dist/_pkg/hex/neutral/HexRegEx.d.ts +19 -0
- package/dist/_pkg/hex/neutral/address/AddressTransformZod.d.ts +10 -0
- package/dist/_pkg/hex/neutral/address/AddressValidationZod.d.ts +10 -0
- package/dist/_pkg/hex/neutral/address/address.d.ts +18 -0
- package/dist/_pkg/hex/neutral/address/as.d.ts +13 -0
- package/dist/_pkg/hex/neutral/address/index.d.ts +7 -0
- package/dist/_pkg/hex/neutral/address/is.d.ts +12 -0
- package/dist/_pkg/hex/neutral/address/to.d.ts +12 -0
- package/dist/_pkg/hex/neutral/ethAddress.d.ts +45 -0
- package/dist/_pkg/hex/neutral/hash/as.d.ts +11 -0
- package/dist/_pkg/hex/neutral/hash/hash.d.ts +28 -0
- package/dist/_pkg/hex/neutral/hash/index.d.ts +5 -0
- package/dist/_pkg/hex/neutral/hash/is.d.ts +9 -0
- package/dist/_pkg/hex/neutral/hash/zod.d.ts +6 -0
- package/dist/_pkg/hex/neutral/hex/as.d.ts +11 -0
- package/dist/_pkg/hex/neutral/hex/from/from.d.ts +8 -0
- package/dist/_pkg/hex/neutral/hex/from/fromArrayBuffer.d.ts +8 -0
- package/dist/_pkg/hex/neutral/hex/from/fromBigInt.d.ts +8 -0
- package/dist/_pkg/hex/neutral/hex/from/fromHexString.d.ts +9 -0
- package/dist/_pkg/hex/neutral/hex/from/fromNumber.d.ts +9 -0
- package/dist/_pkg/hex/neutral/hex/from/index.d.ts +6 -0
- package/dist/_pkg/hex/neutral/hex/hex.d.ts +17 -0
- package/dist/_pkg/hex/neutral/hex/index.d.ts +9 -0
- package/dist/_pkg/hex/neutral/hex/is.d.ts +9 -0
- package/dist/_pkg/hex/neutral/hex/isHexZero.d.ts +7 -0
- package/dist/_pkg/hex/neutral/hex/legacy.d.ts +7 -0
- package/dist/_pkg/hex/neutral/hex/nibble.d.ts +13 -0
- package/dist/_pkg/hex/neutral/hex/to.d.ts +8 -0
- package/dist/_pkg/hex/neutral/hexToBigInt.d.ts +8 -0
- package/dist/_pkg/hex/neutral/index.d.ts +8 -0
- package/dist/_pkg/hex/neutral/index.mjs +381 -0
- package/dist/_pkg/hex/neutral/model.d.ts +3 -0
- package/dist/_pkg/hex/neutral/model.mjs +1 -0
- package/dist/_pkg/hex/neutral/zod.d.ts +6 -0
- package/dist/_pkg/logger/neutral/ConsoleLogger.d.ts +7 -0
- package/dist/_pkg/logger/neutral/IdLogger.d.ts +19 -0
- package/dist/_pkg/logger/neutral/LevelLogger.d.ts +47 -0
- package/dist/_pkg/logger/neutral/NoOpLogFunction.d.ts +3 -0
- package/dist/_pkg/logger/neutral/SilentLogger.d.ts +17 -0
- package/dist/_pkg/logger/neutral/getFunctionName.d.ts +7 -0
- package/dist/_pkg/logger/neutral/index.d.ts +7 -0
- package/dist/_pkg/logger/neutral/index.mjs +126 -0
- package/dist/_pkg/object/neutral/AsObjectFactory.d.ts +8 -0
- package/dist/_pkg/object/neutral/AsTypeFactory.d.ts +11 -0
- package/dist/_pkg/object/neutral/EmptyObject.d.ts +2 -0
- package/dist/_pkg/object/neutral/IsObjectFactory.d.ts +16 -0
- package/dist/_pkg/object/neutral/JsonObject.d.ts +49 -0
- package/dist/_pkg/object/neutral/ObjectWrapper.d.ts +9 -0
- package/dist/_pkg/object/neutral/OmitStartsWith.d.ts +18 -0
- package/dist/_pkg/object/neutral/Optional.d.ts +3 -0
- package/dist/_pkg/object/neutral/Override.d.ts +4 -0
- package/dist/_pkg/object/neutral/PartialRecord.d.ts +3 -0
- package/dist/_pkg/object/neutral/PickStartsWith.d.ts +9 -0
- package/dist/_pkg/object/neutral/Simplify.d.ts +5 -0
- package/dist/_pkg/object/neutral/StringKeyObject.d.ts +3 -0
- package/dist/_pkg/object/neutral/Validator.d.ts +13 -0
- package/dist/_pkg/object/neutral/WithAdditional.d.ts +4 -0
- package/dist/_pkg/object/neutral/asObject.d.ts +4 -0
- package/dist/_pkg/object/neutral/deepMerge.d.ts +49 -0
- package/dist/_pkg/object/neutral/index-deprecated.d.ts +2 -0
- package/dist/_pkg/object/neutral/index-un-deprecated.d.ts +22 -0
- package/dist/_pkg/object/neutral/index-un-deprecated.mjs +320 -0
- package/dist/_pkg/object/neutral/index.d.ts +3 -0
- package/dist/_pkg/object/neutral/index.mjs +435 -0
- package/dist/_pkg/object/neutral/isType.d.ts +4 -0
- package/dist/_pkg/object/neutral/model.d.ts +14 -0
- package/dist/_pkg/object/neutral/model.mjs +1 -0
- package/dist/_pkg/object/neutral/omitBy.d.ts +21 -0
- package/dist/_pkg/object/neutral/pickBy.d.ts +21 -0
- package/dist/_pkg/object/neutral/removeFields.d.ts +9 -0
- package/dist/_pkg/object/neutral/toSafeJson.d.ts +41 -0
- package/dist/_pkg/object-model/neutral/AnyObject.d.ts +8 -0
- package/dist/_pkg/object-model/neutral/AsTypeFactory.d.ts +12 -0
- package/dist/_pkg/object-model/neutral/AsTypeFunction.d.ts +14 -0
- package/dist/_pkg/object-model/neutral/Compare.d.ts +3 -0
- package/dist/_pkg/object-model/neutral/EmptyObject.d.ts +8 -0
- package/dist/_pkg/object-model/neutral/index.d.ts +6 -0
- package/dist/_pkg/object-model/neutral/index.mjs +1 -0
- package/dist/_pkg/object-model/neutral/model.d.ts +6 -0
- package/dist/_pkg/object-model/neutral/model.mjs +1 -0
- package/dist/_pkg/object-model/neutral/types.d.ts +25 -0
- package/dist/_pkg/platform/browser/browser/index.d.ts +9 -0
- package/dist/_pkg/platform/browser/index-browser.d.ts +2 -0
- package/dist/_pkg/platform/browser/index-browser.mjs +18 -0
- package/dist/_pkg/platform/browser/index-node.d.ts +2 -0
- package/dist/_pkg/platform/browser/node/index.d.ts +9 -0
- package/dist/_pkg/platform/node/browser/index.d.ts +9 -0
- package/dist/_pkg/platform/node/index-browser.d.ts +2 -0
- package/dist/_pkg/platform/node/index-node.d.ts +2 -0
- package/dist/_pkg/platform/node/index-node.mjs +18 -0
- package/dist/_pkg/platform/node/node/index.d.ts +9 -0
- package/dist/_pkg/profile/neutral/index.d.ts +2 -0
- package/dist/_pkg/profile/neutral/index.mjs +37 -0
- package/dist/_pkg/profile/neutral/model.d.ts +2 -0
- package/dist/_pkg/profile/neutral/model.mjs +1 -0
- package/dist/_pkg/profile/neutral/profiler.d.ts +17 -0
- package/dist/_pkg/promise/neutral/PromiseEx.d.ts +24 -0
- package/dist/_pkg/promise/neutral/fulfilled.d.ts +7 -0
- package/dist/_pkg/promise/neutral/fulfilledValues.d.ts +20 -0
- package/dist/_pkg/promise/neutral/index.d.ts +7 -0
- package/dist/_pkg/promise/neutral/index.mjs +57 -0
- package/dist/_pkg/promise/neutral/model.d.ts +3 -0
- package/dist/_pkg/promise/neutral/model.mjs +1 -0
- package/dist/_pkg/promise/neutral/rejected.d.ts +7 -0
- package/dist/_pkg/promise/neutral/toPromise.d.ts +8 -0
- package/dist/_pkg/promise/neutral/types.d.ts +23 -0
- package/dist/_pkg/retry/neutral/index.d.ts +2 -0
- package/dist/_pkg/retry/neutral/index.mjs +28 -0
- package/dist/_pkg/retry/neutral/model.d.ts +2 -0
- package/dist/_pkg/retry/neutral/model.mjs +1 -0
- package/dist/_pkg/retry/neutral/retry.d.ts +23 -0
- package/dist/_pkg/set/neutral/index.d.ts +2 -0
- package/dist/_pkg/set/neutral/index.mjs +20 -0
- package/dist/_pkg/set/neutral/lib/difference.d.ts +8 -0
- package/dist/_pkg/set/neutral/lib/index.d.ts +4 -0
- package/dist/_pkg/set/neutral/lib/intersection.d.ts +8 -0
- package/dist/_pkg/set/neutral/lib/union.d.ts +8 -0
- package/dist/_pkg/static-implements/neutral/index.d.ts +2 -0
- package/dist/_pkg/static-implements/neutral/index.mjs +10 -0
- package/dist/_pkg/static-implements/neutral/staticImplements.d.ts +7 -0
- package/dist/_pkg/storage/neutral/KeyValueStore.d.ts +34 -0
- package/dist/_pkg/storage/neutral/index.d.ts +2 -0
- package/dist/_pkg/storage/neutral/index.mjs +1 -0
- package/dist/_pkg/storage/neutral/model.d.ts +2 -0
- package/dist/_pkg/storage/neutral/model.mjs +1 -0
- package/dist/_pkg/telemetry/neutral/index.d.ts +3 -0
- package/dist/_pkg/telemetry/neutral/index.mjs +152 -0
- package/dist/_pkg/telemetry/neutral/model.d.ts +2 -0
- package/dist/_pkg/telemetry/neutral/model.mjs +1 -0
- package/dist/_pkg/telemetry/neutral/span.d.ts +51 -0
- package/dist/_pkg/telemetry/neutral/timeBudget.d.ts +12 -0
- package/dist/_pkg/telemetry-exporter/neutral/XyConsoleSpanExporter.d.ts +40 -0
- package/dist/_pkg/telemetry-exporter/neutral/index.d.ts +2 -0
- package/dist/_pkg/telemetry-exporter/neutral/index.mjs +88 -0
- package/dist/_pkg/timer/neutral/index.d.ts +2 -0
- package/dist/_pkg/timer/neutral/index.mjs +75 -0
- package/dist/_pkg/timer/neutral/setTimeoutEx.d.ts +37 -0
- package/dist/_pkg/typeof/neutral/Brand.d.ts +5 -0
- package/dist/_pkg/typeof/neutral/IdentityFunction.d.ts +3 -0
- package/dist/_pkg/typeof/neutral/ObjectTypeShape.d.ts +5 -0
- package/dist/_pkg/typeof/neutral/TypeOfTypes.d.ts +3 -0
- package/dist/_pkg/typeof/neutral/Typed.d.ts +41 -0
- package/dist/_pkg/typeof/neutral/ifDefined.d.ts +8 -0
- package/dist/_pkg/typeof/neutral/ifTypeOf.d.ts +11 -0
- package/dist/_pkg/typeof/neutral/index.d.ts +12 -0
- package/dist/_pkg/typeof/neutral/index.mjs +255 -0
- package/dist/_pkg/typeof/neutral/is.d.ts +116 -0
- package/dist/_pkg/typeof/neutral/isType.d.ts +9 -0
- package/dist/_pkg/typeof/neutral/model.d.ts +7 -0
- package/dist/_pkg/typeof/neutral/model.mjs +1 -0
- package/dist/_pkg/typeof/neutral/typeOf.d.ts +8 -0
- package/dist/_pkg/typeof/neutral/validateType.d.ts +10 -0
- package/dist/_pkg/url/browser/index-browser.d.ts +12 -0
- package/dist/_pkg/url/browser/index-browser.mjs +12 -0
- package/dist/_pkg/url/browser/index-neutral.d.ts +12 -0
- package/dist/_pkg/url/browser/index-node.d.ts +13 -0
- package/dist/_pkg/url/browser/lib/index.d.ts +2 -0
- package/dist/_pkg/url/browser/lib/isLocalhost.d.ts +7 -0
- package/dist/_pkg/url/neutral/index-browser.d.ts +12 -0
- package/dist/_pkg/url/neutral/index-neutral.d.ts +12 -0
- package/dist/_pkg/url/neutral/index-neutral.mjs +12 -0
- package/dist/_pkg/url/neutral/index-node.d.ts +13 -0
- package/dist/_pkg/url/neutral/lib/index.d.ts +2 -0
- package/dist/_pkg/url/neutral/lib/isLocalhost.d.ts +7 -0
- package/dist/_pkg/url/node/index-browser.d.ts +12 -0
- package/dist/_pkg/url/node/index-neutral.d.ts +12 -0
- package/dist/_pkg/url/node/index-node.d.ts +13 -0
- package/dist/_pkg/url/node/index-node.mjs +15 -0
- package/dist/_pkg/url/node/lib/index.d.ts +2 -0
- package/dist/_pkg/url/node/lib/isLocalhost.d.ts +7 -0
- package/dist/_pkg/zod/neutral/Config.d.ts +8 -0
- package/dist/_pkg/zod/neutral/index.d.ts +8 -0
- package/dist/_pkg/zod/neutral/index.mjs +127 -0
- package/dist/_pkg/zod/neutral/model.d.ts +2 -0
- package/dist/_pkg/zod/neutral/model.mjs +1 -0
- package/dist/_pkg/zod/neutral/zodAllFactory.d.ts +20 -0
- package/dist/_pkg/zod/neutral/zodAsAsyncFactory.d.ts +14 -0
- package/dist/_pkg/zod/neutral/zodAsFactory.d.ts +14 -0
- package/dist/_pkg/zod/neutral/zodIsFactory.d.ts +8 -0
- package/dist/_pkg/zod/neutral/zodToAsyncFactory.d.ts +14 -0
- package/dist/_pkg/zod/neutral/zodToFactory.d.ts +14 -0
- package/dist/browser/index.d.ts +32 -0
- package/dist/browser/index.mjs +32 -0
- package/dist/browser/platform.d.ts +1 -0
- package/dist/browser/platform.mjs +1 -0
- package/dist/browser/url.d.ts +1 -0
- package/dist/browser/url.mjs +1 -0
- package/dist/neutral/api.d.ts +1 -0
- package/dist/neutral/api.mjs +1 -0
- package/dist/neutral/api.model.d.ts +1 -0
- package/dist/neutral/api.model.mjs +1 -0
- package/dist/neutral/array.d.ts +1 -0
- package/dist/neutral/array.mjs +1 -0
- package/dist/neutral/arraybuffer.d.ts +1 -0
- package/dist/neutral/arraybuffer.mjs +1 -0
- package/dist/neutral/assert.d.ts +1 -0
- package/dist/neutral/assert.mjs +1 -0
- package/dist/neutral/assert.model.d.ts +1 -0
- package/dist/neutral/assert.model.mjs +1 -0
- package/dist/neutral/base.d.ts +1 -0
- package/dist/neutral/base.mjs +1 -0
- package/dist/neutral/base.model.d.ts +1 -0
- package/dist/neutral/base.model.mjs +1 -0
- package/dist/neutral/creatable.d.ts +1 -0
- package/dist/neutral/creatable.mjs +1 -0
- package/dist/neutral/creatable.model.d.ts +1 -0
- package/dist/neutral/creatable.model.mjs +1 -0
- package/dist/neutral/decimal-precision.d.ts +1 -0
- package/dist/neutral/decimal-precision.mjs +1 -0
- package/dist/neutral/delay.d.ts +1 -0
- package/dist/neutral/delay.mjs +1 -0
- package/dist/neutral/ellipsize.d.ts +1 -0
- package/dist/neutral/ellipsize.mjs +1 -0
- package/dist/neutral/enum.d.ts +1 -0
- package/dist/neutral/enum.mjs +1 -0
- package/dist/neutral/enum.model.d.ts +1 -0
- package/dist/neutral/enum.model.mjs +1 -0
- package/dist/neutral/error.d.ts +1 -0
- package/dist/neutral/error.mjs +1 -0
- package/dist/neutral/error.model.d.ts +1 -0
- package/dist/neutral/error.model.mjs +1 -0
- package/dist/neutral/events.d.ts +1 -0
- package/dist/neutral/events.mjs +1 -0
- package/dist/neutral/events.model.d.ts +1 -0
- package/dist/neutral/events.model.mjs +1 -0
- package/dist/neutral/exists.d.ts +1 -0
- package/dist/neutral/exists.mjs +1 -0
- package/dist/neutral/fetch.d.ts +1 -0
- package/dist/neutral/fetch.mjs +1 -0
- package/dist/neutral/fetch.model.d.ts +1 -0
- package/dist/neutral/fetch.model.mjs +1 -0
- package/dist/neutral/forget.d.ts +1 -0
- package/dist/neutral/forget.mjs +1 -0
- package/dist/neutral/forget.model.d.ts +1 -0
- package/dist/neutral/forget.model.mjs +1 -0
- package/dist/neutral/function-name.d.ts +1 -0
- package/dist/neutral/function-name.mjs +1 -0
- package/dist/neutral/hex.d.ts +1 -0
- package/dist/neutral/hex.mjs +1 -0
- package/dist/neutral/hex.model.d.ts +1 -0
- package/dist/neutral/hex.model.mjs +1 -0
- package/dist/neutral/logger.d.ts +1 -0
- package/dist/neutral/logger.mjs +1 -0
- package/dist/neutral/model.d.ts +18 -0
- package/dist/neutral/model.mjs +18 -0
- package/dist/neutral/object.d.ts +1 -0
- package/dist/neutral/object.mjs +1 -0
- package/dist/neutral/object.model.d.ts +1 -0
- package/dist/neutral/object.model.mjs +1 -0
- package/dist/neutral/profile.d.ts +1 -0
- package/dist/neutral/profile.mjs +1 -0
- package/dist/neutral/profile.model.d.ts +1 -0
- package/dist/neutral/profile.model.mjs +1 -0
- package/dist/neutral/promise.d.ts +1 -0
- package/dist/neutral/promise.mjs +1 -0
- package/dist/neutral/promise.model.d.ts +1 -0
- package/dist/neutral/promise.model.mjs +1 -0
- package/dist/neutral/retry.d.ts +1 -0
- package/dist/neutral/retry.mjs +1 -0
- package/dist/neutral/retry.model.d.ts +1 -0
- package/dist/neutral/retry.model.mjs +1 -0
- package/dist/neutral/set.d.ts +1 -0
- package/dist/neutral/set.mjs +1 -0
- package/dist/neutral/static-implements.d.ts +1 -0
- package/dist/neutral/static-implements.mjs +1 -0
- package/dist/neutral/storage.d.ts +1 -0
- package/dist/neutral/storage.mjs +1 -0
- package/dist/neutral/storage.model.d.ts +1 -0
- package/dist/neutral/storage.model.mjs +1 -0
- package/dist/neutral/telemetry-exporter.d.ts +1 -0
- package/dist/neutral/telemetry-exporter.mjs +1 -0
- package/dist/neutral/telemetry.d.ts +1 -0
- package/dist/neutral/telemetry.mjs +1 -0
- package/dist/neutral/telemetry.model.d.ts +1 -0
- package/dist/neutral/telemetry.model.mjs +1 -0
- package/dist/neutral/timer.d.ts +1 -0
- package/dist/neutral/timer.mjs +1 -0
- package/dist/neutral/typeof.d.ts +1 -0
- package/dist/neutral/typeof.mjs +1 -0
- package/dist/neutral/typeof.model.d.ts +1 -0
- package/dist/neutral/typeof.model.mjs +1 -0
- package/dist/neutral/url.d.ts +1 -0
- package/dist/neutral/url.mjs +1 -0
- package/dist/neutral/zod.d.ts +1 -0
- package/dist/neutral/zod.mjs +1 -0
- package/dist/neutral/zod.model.d.ts +1 -0
- package/dist/neutral/zod.model.mjs +1 -0
- package/dist/node/index.d.ts +32 -0
- package/dist/node/index.mjs +32 -0
- package/dist/node/platform.d.ts +1 -0
- package/dist/node/platform.mjs +1 -0
- package/dist/node/url.d.ts +1 -0
- package/dist/node/url.mjs +1 -0
- package/package.json +339 -0
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
// src/zodAsFactory.ts
|
|
2
|
+
import { assertError } from "../../error/neutral/index.mjs";
|
|
3
|
+
import * as z from "zod/v4/core";
|
|
4
|
+
var formatZodValue = (value) => {
|
|
5
|
+
const json = JSON.stringify(value);
|
|
6
|
+
return json ?? String(value);
|
|
7
|
+
};
|
|
8
|
+
function zodAsFactory(zod, name) {
|
|
9
|
+
function asFunc(value, assert) {
|
|
10
|
+
const result = z.safeParse(zod, value);
|
|
11
|
+
if (result.success) {
|
|
12
|
+
return value;
|
|
13
|
+
}
|
|
14
|
+
if (assert !== void 0) {
|
|
15
|
+
let assertConfig;
|
|
16
|
+
switch (typeof assert) {
|
|
17
|
+
case "string": {
|
|
18
|
+
assertConfig = `[${name}][${formatZodValue(value)}] ${assert}`;
|
|
19
|
+
break;
|
|
20
|
+
}
|
|
21
|
+
case "object": {
|
|
22
|
+
assertConfig = `[${name}][${assert.name}][${formatZodValue(value)}] ${result.error.message}`;
|
|
23
|
+
break;
|
|
24
|
+
}
|
|
25
|
+
case "boolean": {
|
|
26
|
+
assertConfig = `[${name}][${formatZodValue(value)}] ${result.error.message}`;
|
|
27
|
+
break;
|
|
28
|
+
}
|
|
29
|
+
case "function": {
|
|
30
|
+
assertConfig = assert(value, result.error.message);
|
|
31
|
+
break;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
return assertError(value, assertConfig, result.error.message);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
return asFunc;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
// src/zodIsFactory.ts
|
|
41
|
+
import * as z2 from "zod/v4/core";
|
|
42
|
+
function zodIsFactory(zod) {
|
|
43
|
+
return (value) => z2.safeParse(zod, value).success;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// src/zodToFactory.ts
|
|
47
|
+
import { isDefined } from "../../typeof/neutral/index.mjs";
|
|
48
|
+
function zodToFactory(zod, name) {
|
|
49
|
+
const as = zodAsFactory(zod, name);
|
|
50
|
+
function toFunc(value, assert) {
|
|
51
|
+
if (isDefined(assert)) {
|
|
52
|
+
return as(value, assert);
|
|
53
|
+
}
|
|
54
|
+
return as(value);
|
|
55
|
+
}
|
|
56
|
+
return toFunc;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// src/zodAllFactory.ts
|
|
60
|
+
function zodAllFactory(zod, name) {
|
|
61
|
+
return {
|
|
62
|
+
[`is${name}`]: zodIsFactory(zod),
|
|
63
|
+
[`as${name}`]: zodAsFactory(zod, `as${name}`),
|
|
64
|
+
[`to${name}`]: zodToFactory(zod, `to${name}`)
|
|
65
|
+
};
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
// src/zodAsAsyncFactory.ts
|
|
69
|
+
import { assertError as assertError2 } from "../../error/neutral/index.mjs";
|
|
70
|
+
import * as z3 from "zod/v4/core";
|
|
71
|
+
var formatZodValue2 = (value) => {
|
|
72
|
+
const json = JSON.stringify(value);
|
|
73
|
+
return json ?? String(value);
|
|
74
|
+
};
|
|
75
|
+
function zodAsAsyncFactory(zod, name) {
|
|
76
|
+
async function asFunc(value, assert) {
|
|
77
|
+
const result = await z3.safeParseAsync(zod, value);
|
|
78
|
+
if (result.success) {
|
|
79
|
+
return value;
|
|
80
|
+
}
|
|
81
|
+
if (assert !== void 0) {
|
|
82
|
+
let assertConfig;
|
|
83
|
+
switch (typeof assert) {
|
|
84
|
+
case "string": {
|
|
85
|
+
assertConfig = `[${name}][${formatZodValue2(value)}] ${assert}`;
|
|
86
|
+
break;
|
|
87
|
+
}
|
|
88
|
+
case "object": {
|
|
89
|
+
assertConfig = `[${name}][${assert.name}][${formatZodValue2(value)}] ${result.error.message}`;
|
|
90
|
+
break;
|
|
91
|
+
}
|
|
92
|
+
case "boolean": {
|
|
93
|
+
assertConfig = `[${name}][${formatZodValue2(value)}] ${result.error.message}`;
|
|
94
|
+
break;
|
|
95
|
+
}
|
|
96
|
+
case "function": {
|
|
97
|
+
assertConfig = assert(value, result.error.message);
|
|
98
|
+
break;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
return assertError2(value, assertConfig, result.error.message);
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
return asFunc;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
// src/zodToAsyncFactory.ts
|
|
108
|
+
import { isDefined as isDefined2 } from "../../typeof/neutral/index.mjs";
|
|
109
|
+
function zodToAsyncFactory(zod, name) {
|
|
110
|
+
const as = zodAsAsyncFactory(zod, name);
|
|
111
|
+
async function toFunc(value, assert) {
|
|
112
|
+
if (isDefined2(assert)) {
|
|
113
|
+
return await as(value, assert);
|
|
114
|
+
}
|
|
115
|
+
return await as(value);
|
|
116
|
+
}
|
|
117
|
+
return toFunc;
|
|
118
|
+
}
|
|
119
|
+
export {
|
|
120
|
+
zodAllFactory,
|
|
121
|
+
zodAsAsyncFactory,
|
|
122
|
+
zodAsFactory,
|
|
123
|
+
zodIsFactory,
|
|
124
|
+
zodToAsyncFactory,
|
|
125
|
+
zodToFactory
|
|
126
|
+
};
|
|
127
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=model.mjs.map
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type * as z from 'zod/v4/core';
|
|
2
|
+
import { zodAsFactory } from './zodAsFactory.ts';
|
|
3
|
+
import { zodIsFactory } from './zodIsFactory.ts';
|
|
4
|
+
import { zodToFactory } from './zodToFactory.ts';
|
|
5
|
+
/** @alpha */
|
|
6
|
+
export type AllZodFactories<TType, TName extends string> = Record<`is${TName}`, ReturnType<typeof zodIsFactory<TType>>> & Record<`as${TName}`, ReturnType<typeof zodAsFactory<TType>>> & Record<`to${TName}`, ReturnType<typeof zodToFactory<TType>>>;
|
|
7
|
+
/**
|
|
8
|
+
* Creates a bundle of `is`, `as`, and `to` factory functions for a given zod schema.
|
|
9
|
+
* @alpha
|
|
10
|
+
* @param zod - The zod schema to validate against
|
|
11
|
+
* @param name - The name used to suffix the generated function names (e.g. 'Address' produces `isAddress`, `asAddress`, `toAddress`)
|
|
12
|
+
* @returns An object containing `is<Name>`, `as<Name>`, and `to<Name>` functions
|
|
13
|
+
*/
|
|
14
|
+
export declare function zodAllFactory<T, TName extends string>(zod: z.$ZodType<T>, name: TName): {
|
|
15
|
+
[x: string]: {
|
|
16
|
+
<T_1>(value: T_1): (T_1 & T) | undefined;
|
|
17
|
+
<T_1>(value: T_1, assert: import("./Config.ts").ZodFactoryConfig): T_1 & T;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
//# sourceMappingURL=zodAllFactory.d.ts.map
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as z from 'zod/v4/core';
|
|
2
|
+
import type { ZodFactoryConfig } from './Config.ts';
|
|
3
|
+
/**
|
|
4
|
+
* Creates an async function that validates a value against a zod schema and returns it with a narrowed type.
|
|
5
|
+
* Uses `safeParseAsync` for schemas with async refinements. When called without an assert config, returns undefined on failure.
|
|
6
|
+
* @param zod - The zod schema to validate against
|
|
7
|
+
* @param name - A name used in error messages for identification
|
|
8
|
+
* @returns An async function that validates and narrows the type of a value
|
|
9
|
+
*/
|
|
10
|
+
export declare function zodAsAsyncFactory<TZod>(zod: z.$ZodType<TZod>, name: string): {
|
|
11
|
+
<T>(value: T): Promise<(T & TZod) | undefined>;
|
|
12
|
+
<T>(value: T, assert: ZodFactoryConfig): Promise<(T & TZod)>;
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=zodAsAsyncFactory.d.ts.map
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as z from 'zod/v4/core';
|
|
2
|
+
import type { ZodFactoryConfig } from './Config.ts';
|
|
3
|
+
/**
|
|
4
|
+
* Creates a function that validates a value against a zod schema and returns it with a narrowed type.
|
|
5
|
+
* When called without an assert config, returns undefined on failure. When called with an assert config, throws on failure.
|
|
6
|
+
* @param zod - The zod schema to validate against
|
|
7
|
+
* @param name - A name used in error messages for identification
|
|
8
|
+
* @returns A function that validates and narrows the type of a value
|
|
9
|
+
*/
|
|
10
|
+
export declare function zodAsFactory<TZod>(zod: z.$ZodType<TZod>, name: string): {
|
|
11
|
+
<T>(value: T): (T & TZod) | undefined;
|
|
12
|
+
<T>(value: T, assert: ZodFactoryConfig): (T & TZod);
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=zodAsFactory.d.ts.map
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as z from 'zod/v4/core';
|
|
2
|
+
/**
|
|
3
|
+
* Creates a type guard function that checks if a value matches a zod schema.
|
|
4
|
+
* @param zod - The zod schema to validate against
|
|
5
|
+
* @returns A type guard function that returns true if the value passes validation
|
|
6
|
+
*/
|
|
7
|
+
export declare function zodIsFactory<TZod>(zod: z.$ZodType<TZod>): <T>(value: T) => value is T & TZod;
|
|
8
|
+
//# sourceMappingURL=zodIsFactory.d.ts.map
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type * as z from 'zod/v4/core';
|
|
2
|
+
import type { ZodFactoryConfig } from './Config.ts';
|
|
3
|
+
/**
|
|
4
|
+
* Creates an async function that converts a value to the zod schema type, delegating to `zodAsAsyncFactory` internally.
|
|
5
|
+
* Provides overloads for optional assertion: without assert config resolves to undefined on failure, with assert config throws on failure.
|
|
6
|
+
* @param zod - The zod schema to validate against
|
|
7
|
+
* @param name - A name used in error messages for identification
|
|
8
|
+
* @returns An async function that validates and converts a value to the schema type
|
|
9
|
+
*/
|
|
10
|
+
export declare function zodToAsyncFactory<TZod>(zod: z.$ZodType<TZod>, name: string): {
|
|
11
|
+
<T>(value: T): Promise<(T & TZod) | undefined>;
|
|
12
|
+
<T>(value: T, assert: ZodFactoryConfig): Promise<(T & TZod)>;
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=zodToAsyncFactory.d.ts.map
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type * as z from 'zod/v4/core';
|
|
2
|
+
import type { ZodFactoryConfig } from './Config.ts';
|
|
3
|
+
/**
|
|
4
|
+
* Creates a function that converts a value to the zod schema type, delegating to `zodAsFactory` internally.
|
|
5
|
+
* Provides overloads for optional assertion: without assert config returns undefined on failure, with assert config throws on failure.
|
|
6
|
+
* @param zod - The zod schema to validate against
|
|
7
|
+
* @param name - A name used in error messages for identification
|
|
8
|
+
* @returns A function that validates and converts a value to the schema type
|
|
9
|
+
*/
|
|
10
|
+
export declare function zodToFactory<TZod>(zod: z.$ZodType<TZod>, name: string): {
|
|
11
|
+
<T>(value: T): (T & TZod) | undefined;
|
|
12
|
+
<T>(value: T, assert: ZodFactoryConfig): (T & TZod);
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=zodToFactory.d.ts.map
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export * from '../_pkg/api/neutral/index.ts'
|
|
2
|
+
export * from '../_pkg/array/neutral/index.ts'
|
|
3
|
+
export * from '../_pkg/arraybuffer/neutral/index.ts'
|
|
4
|
+
export * from '../_pkg/assert/neutral/index.ts'
|
|
5
|
+
export * from '../_pkg/base/neutral/index.ts'
|
|
6
|
+
export * from '../_pkg/creatable/neutral/index.ts'
|
|
7
|
+
export * from '../_pkg/decimal-precision/neutral/index.ts'
|
|
8
|
+
export * from '../_pkg/delay/neutral/index.ts'
|
|
9
|
+
export * from '../_pkg/ellipsize/neutral/index.ts'
|
|
10
|
+
export * from '../_pkg/enum/neutral/index.ts'
|
|
11
|
+
export * from '../_pkg/error/neutral/index.ts'
|
|
12
|
+
export * from '../_pkg/events/neutral/index.ts'
|
|
13
|
+
export * from '../_pkg/exists/neutral/index.ts'
|
|
14
|
+
export * from '../_pkg/fetch/neutral/index.ts'
|
|
15
|
+
export * from '../_pkg/forget/neutral/index.ts'
|
|
16
|
+
export * from '../_pkg/function-name/neutral/index.ts'
|
|
17
|
+
export * from '../_pkg/hex/neutral/index.ts'
|
|
18
|
+
export * from '../_pkg/logger/neutral/index.ts'
|
|
19
|
+
export * from '../_pkg/object/neutral/index-un-deprecated.ts'
|
|
20
|
+
export * from '../_pkg/platform/browser/index-browser.ts'
|
|
21
|
+
export * from '../_pkg/profile/neutral/index.ts'
|
|
22
|
+
export * from '../_pkg/promise/neutral/index.ts'
|
|
23
|
+
export * from '../_pkg/retry/neutral/index.ts'
|
|
24
|
+
export * from '../_pkg/set/neutral/index.ts'
|
|
25
|
+
export * from '../_pkg/static-implements/neutral/index.ts'
|
|
26
|
+
export * from '../_pkg/storage/neutral/index.ts'
|
|
27
|
+
export * from '../_pkg/telemetry/neutral/index.ts'
|
|
28
|
+
export * from '../_pkg/telemetry-exporter/neutral/index.ts'
|
|
29
|
+
export * from '../_pkg/timer/neutral/index.ts'
|
|
30
|
+
export * from '../_pkg/typeof/neutral/index.ts'
|
|
31
|
+
export * from '../_pkg/url/browser/index-browser.ts'
|
|
32
|
+
export * from '../_pkg/zod/neutral/index.ts'
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export * from '../_pkg/api/neutral/index.mjs'
|
|
2
|
+
export * from '../_pkg/array/neutral/index.mjs'
|
|
3
|
+
export * from '../_pkg/arraybuffer/neutral/index.mjs'
|
|
4
|
+
export * from '../_pkg/assert/neutral/index.mjs'
|
|
5
|
+
export * from '../_pkg/base/neutral/index.mjs'
|
|
6
|
+
export * from '../_pkg/creatable/neutral/index.mjs'
|
|
7
|
+
export * from '../_pkg/decimal-precision/neutral/index.mjs'
|
|
8
|
+
export * from '../_pkg/delay/neutral/index.mjs'
|
|
9
|
+
export * from '../_pkg/ellipsize/neutral/index.mjs'
|
|
10
|
+
export * from '../_pkg/enum/neutral/index.mjs'
|
|
11
|
+
export * from '../_pkg/error/neutral/index.mjs'
|
|
12
|
+
export * from '../_pkg/events/neutral/index.mjs'
|
|
13
|
+
export * from '../_pkg/exists/neutral/index.mjs'
|
|
14
|
+
export * from '../_pkg/fetch/neutral/index.mjs'
|
|
15
|
+
export * from '../_pkg/forget/neutral/index.mjs'
|
|
16
|
+
export * from '../_pkg/function-name/neutral/index.mjs'
|
|
17
|
+
export * from '../_pkg/hex/neutral/index.mjs'
|
|
18
|
+
export * from '../_pkg/logger/neutral/index.mjs'
|
|
19
|
+
export * from '../_pkg/object/neutral/index-un-deprecated.mjs'
|
|
20
|
+
export * from '../_pkg/platform/browser/index-browser.mjs'
|
|
21
|
+
export * from '../_pkg/profile/neutral/index.mjs'
|
|
22
|
+
export * from '../_pkg/promise/neutral/index.mjs'
|
|
23
|
+
export * from '../_pkg/retry/neutral/index.mjs'
|
|
24
|
+
export * from '../_pkg/set/neutral/index.mjs'
|
|
25
|
+
export * from '../_pkg/static-implements/neutral/index.mjs'
|
|
26
|
+
export * from '../_pkg/storage/neutral/index.mjs'
|
|
27
|
+
export * from '../_pkg/telemetry/neutral/index.mjs'
|
|
28
|
+
export * from '../_pkg/telemetry-exporter/neutral/index.mjs'
|
|
29
|
+
export * from '../_pkg/timer/neutral/index.mjs'
|
|
30
|
+
export * from '../_pkg/typeof/neutral/index.mjs'
|
|
31
|
+
export * from '../_pkg/url/browser/index-browser.mjs'
|
|
32
|
+
export * from '../_pkg/zod/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/platform/browser/index-browser.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/platform/browser/index-browser.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/url/browser/index-browser.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/url/browser/index-browser.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/api/neutral/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/api/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type * from '../_pkg/api/neutral/model.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/api/neutral/model.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/array/neutral/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/array/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/arraybuffer/neutral/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/arraybuffer/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/assert/neutral/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/assert/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type * from '../_pkg/assert/neutral/model.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/assert/neutral/model.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/base/neutral/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/base/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type * from '../_pkg/base/neutral/model.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/base/neutral/model.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/creatable/neutral/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/creatable/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type * from '../_pkg/creatable/neutral/model.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/creatable/neutral/model.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/decimal-precision/neutral/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/decimal-precision/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/delay/neutral/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/delay/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/ellipsize/neutral/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/ellipsize/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/enum/neutral/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/enum/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type * from '../_pkg/enum/neutral/model.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/enum/neutral/model.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/error/neutral/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/error/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type * from '../_pkg/error/neutral/model.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/error/neutral/model.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/events/neutral/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/events/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type * from '../_pkg/events/neutral/model.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/events/neutral/model.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/exists/neutral/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/exists/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/fetch/neutral/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/fetch/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type * from '../_pkg/fetch/neutral/model.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/fetch/neutral/model.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/forget/neutral/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/forget/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type * from '../_pkg/forget/neutral/model.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/forget/neutral/model.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/function-name/neutral/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/function-name/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/hex/neutral/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/hex/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type * from '../_pkg/hex/neutral/model.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/hex/neutral/model.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/logger/neutral/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/logger/neutral/index.mjs'
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export type * from '../_pkg/api/neutral/model.ts'
|
|
2
|
+
export type * from '../_pkg/assert/neutral/model.ts'
|
|
3
|
+
export type * from '../_pkg/base/neutral/model.ts'
|
|
4
|
+
export type * from '../_pkg/creatable/neutral/model.ts'
|
|
5
|
+
export type * from '../_pkg/enum/neutral/model.ts'
|
|
6
|
+
export type * from '../_pkg/error/neutral/model.ts'
|
|
7
|
+
export type * from '../_pkg/events/neutral/model.ts'
|
|
8
|
+
export type * from '../_pkg/fetch/neutral/model.ts'
|
|
9
|
+
export type * from '../_pkg/forget/neutral/model.ts'
|
|
10
|
+
export type * from '../_pkg/hex/neutral/model.ts'
|
|
11
|
+
export type * from '../_pkg/object/neutral/model.ts'
|
|
12
|
+
export type * from '../_pkg/profile/neutral/model.ts'
|
|
13
|
+
export type * from '../_pkg/promise/neutral/model.ts'
|
|
14
|
+
export type * from '../_pkg/retry/neutral/model.ts'
|
|
15
|
+
export type * from '../_pkg/storage/neutral/model.ts'
|
|
16
|
+
export type * from '../_pkg/telemetry/neutral/model.ts'
|
|
17
|
+
export type * from '../_pkg/typeof/neutral/model.ts'
|
|
18
|
+
export type * from '../_pkg/zod/neutral/model.ts'
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export * from '../_pkg/api/neutral/model.mjs'
|
|
2
|
+
export * from '../_pkg/assert/neutral/model.mjs'
|
|
3
|
+
export * from '../_pkg/base/neutral/model.mjs'
|
|
4
|
+
export * from '../_pkg/creatable/neutral/model.mjs'
|
|
5
|
+
export * from '../_pkg/enum/neutral/model.mjs'
|
|
6
|
+
export * from '../_pkg/error/neutral/model.mjs'
|
|
7
|
+
export * from '../_pkg/events/neutral/model.mjs'
|
|
8
|
+
export * from '../_pkg/fetch/neutral/model.mjs'
|
|
9
|
+
export * from '../_pkg/forget/neutral/model.mjs'
|
|
10
|
+
export * from '../_pkg/hex/neutral/model.mjs'
|
|
11
|
+
export * from '../_pkg/object/neutral/model.mjs'
|
|
12
|
+
export * from '../_pkg/profile/neutral/model.mjs'
|
|
13
|
+
export * from '../_pkg/promise/neutral/model.mjs'
|
|
14
|
+
export * from '../_pkg/retry/neutral/model.mjs'
|
|
15
|
+
export * from '../_pkg/storage/neutral/model.mjs'
|
|
16
|
+
export * from '../_pkg/telemetry/neutral/model.mjs'
|
|
17
|
+
export * from '../_pkg/typeof/neutral/model.mjs'
|
|
18
|
+
export * from '../_pkg/zod/neutral/model.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/object/neutral/index-un-deprecated.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/object/neutral/index-un-deprecated.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type * from '../_pkg/object/neutral/model.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/object/neutral/model.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/profile/neutral/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/profile/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type * from '../_pkg/profile/neutral/model.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/profile/neutral/model.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/promise/neutral/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/promise/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type * from '../_pkg/promise/neutral/model.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/promise/neutral/model.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/retry/neutral/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/retry/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type * from '../_pkg/retry/neutral/model.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/retry/neutral/model.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/set/neutral/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/set/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/static-implements/neutral/index.ts'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/static-implements/neutral/index.mjs'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_pkg/storage/neutral/index.ts'
|