@openclaw/twitch 2026.5.20 → 2026.5.22
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/node_modules/@d-fischer/cache-decorators/LICENSE +21 -0
- package/node_modules/@d-fischer/cache-decorators/es/decorators/Cacheable.mjs +63 -0
- package/node_modules/@d-fischer/cache-decorators/es/decorators/Cached.mjs +19 -0
- package/node_modules/@d-fischer/cache-decorators/es/decorators/CachedGetter.mjs +20 -0
- package/node_modules/@d-fischer/cache-decorators/es/decorators/ClearsCache.mjs +12 -0
- package/node_modules/@d-fischer/cache-decorators/es/index.mjs +5 -0
- package/node_modules/@d-fischer/cache-decorators/es/types/CacheEntry.mjs +1 -0
- package/node_modules/@d-fischer/cache-decorators/es/utils/createCacheKey.mjs +27 -0
- package/node_modules/@d-fischer/cache-decorators/lib/decorators/Cacheable.d.ts +7 -0
- package/node_modules/@d-fischer/cache-decorators/lib/decorators/Cacheable.js +67 -0
- package/node_modules/@d-fischer/cache-decorators/lib/decorators/Cached.d.ts +1 -0
- package/node_modules/@d-fischer/cache-decorators/lib/decorators/Cached.js +23 -0
- package/node_modules/@d-fischer/cache-decorators/lib/decorators/CachedGetter.d.ts +1 -0
- package/node_modules/@d-fischer/cache-decorators/lib/decorators/CachedGetter.js +24 -0
- package/node_modules/@d-fischer/cache-decorators/lib/decorators/ClearsCache.d.ts +1 -0
- package/node_modules/@d-fischer/cache-decorators/lib/decorators/ClearsCache.js +16 -0
- package/node_modules/@d-fischer/cache-decorators/lib/index.d.ts +6 -0
- package/node_modules/@d-fischer/cache-decorators/lib/index.js +13 -0
- package/node_modules/@d-fischer/cache-decorators/lib/types/CacheEntry.d.ts +4 -0
- package/node_modules/@d-fischer/cache-decorators/lib/types/CacheEntry.js +2 -0
- package/node_modules/@d-fischer/cache-decorators/lib/utils/createCacheKey.d.ts +1 -0
- package/node_modules/@d-fischer/cache-decorators/lib/utils/createCacheKey.js +31 -0
- package/node_modules/@d-fischer/cache-decorators/package.json +57 -0
- package/node_modules/@d-fischer/connection/LICENSE +21 -0
- package/node_modules/@d-fischer/connection/es/AbstractConnection.mjs +52 -0
- package/node_modules/@d-fischer/connection/es/Connection.mjs +1 -0
- package/node_modules/@d-fischer/connection/es/DirectConnection-stub.mjs +5 -0
- package/node_modules/@d-fischer/connection/es/DirectConnection.mjs +85 -0
- package/node_modules/@d-fischer/connection/es/PersistentConnection.mjs +136 -0
- package/node_modules/@d-fischer/connection/es/WebSocketConnection.mjs +88 -0
- package/node_modules/@d-fischer/connection/es/browser.mjs +4 -0
- package/node_modules/@d-fischer/connection/es/index.mjs +4 -0
- package/node_modules/@d-fischer/connection/lib/AbstractConnection.d.ts +27 -0
- package/node_modules/@d-fischer/connection/lib/AbstractConnection.js +56 -0
- package/node_modules/@d-fischer/connection/lib/Connection.d.ts +26 -0
- package/node_modules/@d-fischer/connection/lib/Connection.js +2 -0
- package/node_modules/@d-fischer/connection/lib/DirectConnection-stub.d.ts +17 -0
- package/node_modules/@d-fischer/connection/lib/DirectConnection-stub.js +9 -0
- package/node_modules/@d-fischer/connection/lib/DirectConnection.d.ts +16 -0
- package/node_modules/@d-fischer/connection/lib/DirectConnection.js +89 -0
- package/node_modules/@d-fischer/connection/lib/PersistentConnection.d.ts +39 -0
- package/node_modules/@d-fischer/connection/lib/PersistentConnection.js +140 -0
- package/node_modules/@d-fischer/connection/lib/WebSocketConnection.d.ts +18 -0
- package/node_modules/@d-fischer/connection/lib/WebSocketConnection.js +92 -0
- package/node_modules/@d-fischer/connection/lib/browser.d.ts +8 -0
- package/node_modules/@d-fischer/connection/lib/browser.js +11 -0
- package/node_modules/@d-fischer/connection/lib/index.d.ts +8 -0
- package/node_modules/@d-fischer/connection/lib/index.js +11 -0
- package/node_modules/@d-fischer/connection/package.json +68 -0
- package/node_modules/@d-fischer/deprecate/.idea/jsLibraryMappings.xml +6 -0
- package/node_modules/@d-fischer/deprecate/.idea/modules.xml +8 -0
- package/node_modules/@d-fischer/deprecate/.idea/node-deprecate.iml +12 -0
- package/node_modules/@d-fischer/deprecate/.idea/vcs.xml +6 -0
- package/node_modules/@d-fischer/deprecate/.idea/workspace.xml +104 -0
- package/node_modules/@d-fischer/deprecate/.travis.yml +3 -0
- package/node_modules/@d-fischer/deprecate/README.md +50 -0
- package/node_modules/@d-fischer/deprecate/index.d.ts +33 -0
- package/node_modules/@d-fischer/deprecate/index.js +46 -0
- package/node_modules/@d-fischer/deprecate/index.mjs +3 -0
- package/node_modules/@d-fischer/deprecate/package.json +31 -0
- package/node_modules/@d-fischer/deprecate/test/index.js +64 -0
- package/node_modules/@d-fischer/detect-node/LICENSE +21 -0
- package/node_modules/@d-fischer/detect-node/Readme.md +30 -0
- package/node_modules/@d-fischer/detect-node/browser.js +2 -0
- package/node_modules/@d-fischer/detect-node/index.d.ts +1 -0
- package/node_modules/@d-fischer/detect-node/index.esm.js +2 -0
- package/node_modules/@d-fischer/detect-node/index.js +2 -0
- package/node_modules/@d-fischer/detect-node/package.json +25 -0
- package/node_modules/@d-fischer/escape-string-regexp/index.d.ts +18 -0
- package/node_modules/@d-fischer/escape-string-regexp/index.js +15 -0
- package/node_modules/@d-fischer/escape-string-regexp/license +9 -0
- package/node_modules/@d-fischer/escape-string-regexp/package.json +36 -0
- package/node_modules/@d-fischer/escape-string-regexp/readme.md +34 -0
- package/node_modules/@d-fischer/isomorphic-ws/LICENSE +21 -0
- package/node_modules/@d-fischer/isomorphic-ws/README.md +59 -0
- package/node_modules/@d-fischer/isomorphic-ws/browser.js +17 -0
- package/node_modules/@d-fischer/isomorphic-ws/browser.mjs +19 -0
- package/node_modules/@d-fischer/isomorphic-ws/index.d.ts +38 -0
- package/node_modules/@d-fischer/isomorphic-ws/node.js +6 -0
- package/node_modules/@d-fischer/isomorphic-ws/node.mjs +5 -0
- package/node_modules/@d-fischer/isomorphic-ws/package.json +51 -0
- package/node_modules/@d-fischer/logger/LICENSE +21 -0
- package/node_modules/@d-fischer/logger/es/BaseLogger.mjs +37 -0
- package/node_modules/@d-fischer/logger/es/BrowserLogger.mjs +22 -0
- package/node_modules/@d-fischer/logger/es/CustomLoggerWrapper.mjs +69 -0
- package/node_modules/@d-fischer/logger/es/LogLevel.mjs +42 -0
- package/node_modules/@d-fischer/logger/es/Logger.mjs +1 -0
- package/node_modules/@d-fischer/logger/es/LoggerOptions.mjs +1 -0
- package/node_modules/@d-fischer/logger/es/NodeLogger.mjs +105 -0
- package/node_modules/@d-fischer/logger/es/createLogger.mjs +13 -0
- package/node_modules/@d-fischer/logger/es/getMinLogLevelFromEnv.mjs +38 -0
- package/node_modules/@d-fischer/logger/es/index.mjs +2 -0
- package/node_modules/@d-fischer/logger/lib/BaseLogger.d.ts +18 -0
- package/node_modules/@d-fischer/logger/lib/BaseLogger.js +40 -0
- package/node_modules/@d-fischer/logger/lib/BrowserLogger.d.ts +5 -0
- package/node_modules/@d-fischer/logger/lib/BrowserLogger.js +25 -0
- package/node_modules/@d-fischer/logger/lib/CustomLoggerWrapper.d.ts +26 -0
- package/node_modules/@d-fischer/logger/lib/CustomLoggerWrapper.js +72 -0
- package/node_modules/@d-fischer/logger/lib/LogLevel.d.ts +13 -0
- package/node_modules/@d-fischer/logger/lib/LogLevel.js +47 -0
- package/node_modules/@d-fischer/logger/lib/Logger.d.ts +10 -0
- package/node_modules/@d-fischer/logger/lib/Logger.js +2 -0
- package/node_modules/@d-fischer/logger/lib/LoggerOptions.d.ts +10 -0
- package/node_modules/@d-fischer/logger/lib/LoggerOptions.js +2 -0
- package/node_modules/@d-fischer/logger/lib/NodeLogger.d.ts +11 -0
- package/node_modules/@d-fischer/logger/lib/NodeLogger.js +108 -0
- package/node_modules/@d-fischer/logger/lib/createLogger.d.ts +3 -0
- package/node_modules/@d-fischer/logger/lib/createLogger.js +17 -0
- package/node_modules/@d-fischer/logger/lib/getMinLogLevelFromEnv.d.ts +2 -0
- package/node_modules/@d-fischer/logger/lib/getMinLogLevelFromEnv.js +42 -0
- package/node_modules/@d-fischer/logger/lib/index.d.ts +5 -0
- package/node_modules/@d-fischer/logger/lib/index.js +7 -0
- package/node_modules/@d-fischer/logger/package.json +62 -0
- package/node_modules/@d-fischer/rate-limiter/LICENSE +21 -0
- package/node_modules/@d-fischer/rate-limiter/es/QueueEntry.mjs +1 -0
- package/node_modules/@d-fischer/rate-limiter/es/RateLimiter.mjs +1 -0
- package/node_modules/@d-fischer/rate-limiter/es/RateLimiterStats.mjs +1 -0
- package/node_modules/@d-fischer/rate-limiter/es/errors/CustomError.mjs +15 -0
- package/node_modules/@d-fischer/rate-limiter/es/errors/RateLimitReachedError.mjs +3 -0
- package/node_modules/@d-fischer/rate-limiter/es/errors/RateLimiterDestroyedError.mjs +3 -0
- package/node_modules/@d-fischer/rate-limiter/es/errors/RetryAfterError.mjs +10 -0
- package/node_modules/@d-fischer/rate-limiter/es/index.mjs +9 -0
- package/node_modules/@d-fischer/rate-limiter/es/limiters/NullRateLimiter.mjs +17 -0
- package/node_modules/@d-fischer/rate-limiter/es/limiters/PartitionedRateLimiter.mjs +52 -0
- package/node_modules/@d-fischer/rate-limiter/es/limiters/PartitionedTimeBasedRateLimiter.mjs +138 -0
- package/node_modules/@d-fischer/rate-limiter/es/limiters/ResponseBasedRateLimiter.mjs +159 -0
- package/node_modules/@d-fischer/rate-limiter/es/limiters/TimeBasedRateLimiter.mjs +117 -0
- package/node_modules/@d-fischer/rate-limiter/es/limiters/TimedPassthruRateLimiter.mjs +11 -0
- package/node_modules/@d-fischer/rate-limiter/lib/QueueEntry.d.ts +7 -0
- package/node_modules/@d-fischer/rate-limiter/lib/QueueEntry.js +2 -0
- package/node_modules/@d-fischer/rate-limiter/lib/RateLimiter.d.ts +11 -0
- package/node_modules/@d-fischer/rate-limiter/lib/RateLimiter.js +2 -0
- package/node_modules/@d-fischer/rate-limiter/lib/RateLimiterStats.d.ts +5 -0
- package/node_modules/@d-fischer/rate-limiter/lib/RateLimiterStats.js +2 -0
- package/node_modules/@d-fischer/rate-limiter/lib/errors/CustomError.d.ts +5 -0
- package/node_modules/@d-fischer/rate-limiter/lib/errors/CustomError.js +19 -0
- package/node_modules/@d-fischer/rate-limiter/lib/errors/RateLimitReachedError.d.ts +3 -0
- package/node_modules/@d-fischer/rate-limiter/lib/errors/RateLimitReachedError.js +7 -0
- package/node_modules/@d-fischer/rate-limiter/lib/errors/RateLimiterDestroyedError.d.ts +3 -0
- package/node_modules/@d-fischer/rate-limiter/lib/errors/RateLimiterDestroyedError.js +7 -0
- package/node_modules/@d-fischer/rate-limiter/lib/errors/RetryAfterError.d.ts +6 -0
- package/node_modules/@d-fischer/rate-limiter/lib/errors/RetryAfterError.js +14 -0
- package/node_modules/@d-fischer/rate-limiter/lib/index.d.ts +12 -0
- package/node_modules/@d-fischer/rate-limiter/lib/index.js +21 -0
- package/node_modules/@d-fischer/rate-limiter/lib/limiters/NullRateLimiter.d.ts +9 -0
- package/node_modules/@d-fischer/rate-limiter/lib/limiters/NullRateLimiter.js +21 -0
- package/node_modules/@d-fischer/rate-limiter/lib/limiters/PartitionedRateLimiter.d.ts +19 -0
- package/node_modules/@d-fischer/rate-limiter/lib/limiters/PartitionedRateLimiter.js +56 -0
- package/node_modules/@d-fischer/rate-limiter/lib/limiters/PartitionedTimeBasedRateLimiter.d.ts +26 -0
- package/node_modules/@d-fischer/rate-limiter/lib/limiters/PartitionedTimeBasedRateLimiter.js +142 -0
- package/node_modules/@d-fischer/rate-limiter/lib/limiters/ResponseBasedRateLimiter.d.ts +30 -0
- package/node_modules/@d-fischer/rate-limiter/lib/limiters/ResponseBasedRateLimiter.js +163 -0
- package/node_modules/@d-fischer/rate-limiter/lib/limiters/TimeBasedRateLimiter.d.ts +27 -0
- package/node_modules/@d-fischer/rate-limiter/lib/limiters/TimeBasedRateLimiter.js +121 -0
- package/node_modules/@d-fischer/rate-limiter/lib/limiters/TimedPassthruRateLimiter.d.ts +5 -0
- package/node_modules/@d-fischer/rate-limiter/lib/limiters/TimedPassthruRateLimiter.js +15 -0
- package/node_modules/@d-fischer/rate-limiter/package.json +64 -0
- package/node_modules/@d-fischer/shared-utils/LICENSE +21 -0
- package/node_modules/@d-fischer/shared-utils/es/decorators/Enumerable.mjs +23 -0
- package/node_modules/@d-fischer/shared-utils/es/functions/array/flatten.mjs +5 -0
- package/node_modules/@d-fischer/shared-utils/es/functions/array/immutableSplice.mjs +8 -0
- package/node_modules/@d-fischer/shared-utils/es/functions/array/partitionedFlatMap.mjs +29 -0
- package/node_modules/@d-fischer/shared-utils/es/functions/config/resolveConfigValue.mjs +23 -0
- package/node_modules/@d-fischer/shared-utils/es/functions/deprecate/deprecateClass.mjs +22 -0
- package/node_modules/@d-fischer/shared-utils/es/functions/match/match.mjs +15 -0
- package/node_modules/@d-fischer/shared-utils/es/functions/math/fib.mjs +27 -0
- package/node_modules/@d-fischer/shared-utils/es/functions/object/arrayToObject.mjs +4 -0
- package/node_modules/@d-fischer/shared-utils/es/functions/object/entriesToObject.mjs +9 -0
- package/node_modules/@d-fischer/shared-utils/es/functions/object/forEachObjectEntry.mjs +7 -0
- package/node_modules/@d-fischer/shared-utils/es/functions/object/groupBy.mjs +26 -0
- package/node_modules/@d-fischer/shared-utils/es/functions/object/indexBy.mjs +12 -0
- package/node_modules/@d-fischer/shared-utils/es/functions/object/mapObject.mjs +11 -0
- package/node_modules/@d-fischer/shared-utils/es/functions/object/omit.mjs +5 -0
- package/node_modules/@d-fischer/shared-utils/es/functions/object/pick.mjs +14 -0
- package/node_modules/@d-fischer/shared-utils/es/functions/optional/mapOptional.mjs +9 -0
- package/node_modules/@d-fischer/shared-utils/es/functions/promise/delay.mjs +13 -0
- package/node_modules/@d-fischer/shared-utils/es/functions/promise/withResolvers.mjs +11 -0
- package/node_modules/@d-fischer/shared-utils/es/functions/string/padLeft.mjs +25 -0
- package/node_modules/@d-fischer/shared-utils/es/functions/string/splitWithLimit.mjs +8 -0
- package/node_modules/@d-fischer/shared-utils/es/functions/string/utf8.mjs +7 -0
- package/node_modules/@d-fischer/shared-utils/es/index.mjs +22 -0
- package/node_modules/@d-fischer/shared-utils/es/types/MakeOptional.mjs +1 -0
- package/node_modules/@d-fischer/shared-utils/es/types/NoInfer.mjs +1 -0
- package/node_modules/@d-fischer/shared-utils/es/types/PickType.mjs +1 -0
- package/node_modules/@d-fischer/shared-utils/es/types/constructor.mjs +1 -0
- package/node_modules/@d-fischer/shared-utils/es/types/object.mjs +1 -0
- package/node_modules/@d-fischer/shared-utils/lib/decorators/Enumerable.d.ts +1 -0
- package/node_modules/@d-fischer/shared-utils/lib/decorators/Enumerable.js +27 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/array/flatten.d.ts +1 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/array/flatten.js +9 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/array/immutableSplice.d.ts +1 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/array/immutableSplice.js +12 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/array/partitionedFlatMap.d.ts +1 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/array/partitionedFlatMap.js +33 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/config/resolveConfigValue.d.ts +4 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/config/resolveConfigValue.js +28 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/deprecate/deprecateClass.d.ts +2 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/deprecate/deprecateClass.js +26 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/match/match.d.ts +10 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/match/match.js +19 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/math/fib.d.ts +1 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/math/fib.js +31 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/object/arrayToObject.d.ts +2 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/object/arrayToObject.js +8 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/object/entriesToObject.d.ts +1 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/object/entriesToObject.js +13 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/object/forEachObjectEntry.d.ts +1 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/object/forEachObjectEntry.js +11 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/object/groupBy.d.ts +2 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/object/groupBy.js +30 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/object/indexBy.d.ts +2 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/object/indexBy.js +16 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/object/mapObject.d.ts +2 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/object/mapObject.js +15 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/object/omit.d.ts +1 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/object/omit.js +9 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/object/pick.d.ts +1 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/object/pick.js +18 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/optional/mapOptional.d.ts +3 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/optional/mapOptional.js +15 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/promise/delay.d.ts +1 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/promise/delay.js +17 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/promise/withResolvers.d.ts +6 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/promise/withResolvers.js +15 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/string/padLeft.d.ts +1 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/string/padLeft.js +29 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/string/splitWithLimit.d.ts +1 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/string/splitWithLimit.js +12 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/string/utf8.d.ts +2 -0
- package/node_modules/@d-fischer/shared-utils/lib/functions/string/utf8.js +12 -0
- package/node_modules/@d-fischer/shared-utils/lib/index.d.ts +27 -0
- package/node_modules/@d-fischer/shared-utils/lib/index.js +52 -0
- package/node_modules/@d-fischer/shared-utils/lib/types/MakeOptional.d.ts +5 -0
- package/node_modules/@d-fischer/shared-utils/lib/types/MakeOptional.js +2 -0
- package/node_modules/@d-fischer/shared-utils/lib/types/NoInfer.d.ts +1 -0
- package/node_modules/@d-fischer/shared-utils/lib/types/NoInfer.js +2 -0
- package/node_modules/@d-fischer/shared-utils/lib/types/PickType.d.ts +5 -0
- package/node_modules/@d-fischer/shared-utils/lib/types/PickType.js +2 -0
- package/node_modules/@d-fischer/shared-utils/lib/types/constructor.d.ts +2 -0
- package/node_modules/@d-fischer/shared-utils/lib/types/constructor.js +2 -0
- package/node_modules/@d-fischer/shared-utils/lib/types/object.d.ts +5 -0
- package/node_modules/@d-fischer/shared-utils/lib/types/object.js +2 -0
- package/node_modules/@d-fischer/shared-utils/package.json +57 -0
- package/node_modules/@d-fischer/typed-event-emitter/LICENSE +45 -0
- package/node_modules/@d-fischer/typed-event-emitter/README.md +172 -0
- package/node_modules/@d-fischer/typed-event-emitter/es/EventEmitter.mjs +77 -0
- package/node_modules/@d-fischer/typed-event-emitter/es/Listener.mjs +13 -0
- package/node_modules/@d-fischer/typed-event-emitter/es/index.mjs +2 -0
- package/node_modules/@d-fischer/typed-event-emitter/lib/EventEmitter.d.ts +19 -0
- package/node_modules/@d-fischer/typed-event-emitter/lib/EventEmitter.js +81 -0
- package/node_modules/@d-fischer/typed-event-emitter/lib/Listener.d.ts +11 -0
- package/node_modules/@d-fischer/typed-event-emitter/lib/Listener.js +17 -0
- package/node_modules/@d-fischer/typed-event-emitter/lib/index.d.ts +3 -0
- package/node_modules/@d-fischer/typed-event-emitter/lib/index.js +7 -0
- package/node_modules/@d-fischer/typed-event-emitter/package.json +74 -0
- package/node_modules/@twurple/api/LICENSE +21 -0
- package/node_modules/@twurple/api/README.md +24 -0
- package/node_modules/@twurple/api/lib/client/ApiClient.d.ts +98 -0
- package/node_modules/@twurple/api/lib/client/ApiClient.js +107 -0
- package/node_modules/@twurple/api/lib/client/BaseApiClient.d.ts +167 -0
- package/node_modules/@twurple/api/lib/client/BaseApiClient.js +446 -0
- package/node_modules/@twurple/api/lib/client/ContextApiCallOptions.d.ts +21 -0
- package/node_modules/@twurple/api/lib/client/ContextApiCallOptions.js +1 -0
- package/node_modules/@twurple/api/lib/client/NoContextApiClient.d.ts +5 -0
- package/node_modules/@twurple/api/lib/client/NoContextApiClient.js +14 -0
- package/node_modules/@twurple/api/lib/client/UserContextApiClient.d.ts +6 -0
- package/node_modules/@twurple/api/lib/client/UserContextApiClient.js +20 -0
- package/node_modules/@twurple/api/lib/endpoints/BaseApi.d.ts +4 -0
- package/node_modules/@twurple/api/lib/endpoints/BaseApi.js +17 -0
- package/node_modules/@twurple/api/lib/endpoints/bits/CheermoteDisplayInfo.d.ts +48 -0
- package/node_modules/@twurple/api/lib/endpoints/bits/CheermoteDisplayInfo.js +1 -0
- package/node_modules/@twurple/api/lib/endpoints/bits/HelixBitsApi.d.ts +38 -0
- package/node_modules/@twurple/api/lib/endpoints/bits/HelixBitsApi.js +61 -0
- package/node_modules/@twurple/api/lib/endpoints/bits/HelixBitsLeaderboard.d.ts +17 -0
- package/node_modules/@twurple/api/lib/endpoints/bits/HelixBitsLeaderboard.js +39 -0
- package/node_modules/@twurple/api/lib/endpoints/bits/HelixBitsLeaderboardEntry.d.ts +33 -0
- package/node_modules/@twurple/api/lib/endpoints/bits/HelixBitsLeaderboardEntry.js +57 -0
- package/node_modules/@twurple/api/lib/endpoints/bits/HelixCheermoteList.d.ts +23 -0
- package/node_modules/@twurple/api/lib/endpoints/bits/HelixCheermoteList.js +44 -0
- package/node_modules/@twurple/api/lib/endpoints/channel/HelixAdSchedule.d.ts +35 -0
- package/node_modules/@twurple/api/lib/endpoints/channel/HelixAdSchedule.js +50 -0
- package/node_modules/@twurple/api/lib/endpoints/channel/HelixChannel.d.ts +64 -0
- package/node_modules/@twurple/api/lib/endpoints/channel/HelixChannel.js +103 -0
- package/node_modules/@twurple/api/lib/endpoints/channel/HelixChannelApi.d.ts +185 -0
- package/node_modules/@twurple/api/lib/endpoints/channel/HelixChannelApi.js +371 -0
- package/node_modules/@twurple/api/lib/endpoints/channel/HelixChannelEditor.d.ts +25 -0
- package/node_modules/@twurple/api/lib/endpoints/channel/HelixChannelEditor.js +45 -0
- package/node_modules/@twurple/api/lib/endpoints/channel/HelixChannelFollower.d.ts +29 -0
- package/node_modules/@twurple/api/lib/endpoints/channel/HelixChannelFollower.js +51 -0
- package/node_modules/@twurple/api/lib/endpoints/channel/HelixChannelReference.d.ts +43 -0
- package/node_modules/@twurple/api/lib/endpoints/channel/HelixChannelReference.js +71 -0
- package/node_modules/@twurple/api/lib/endpoints/channel/HelixFollowedChannel.d.ts +29 -0
- package/node_modules/@twurple/api/lib/endpoints/channel/HelixFollowedChannel.js +51 -0
- package/node_modules/@twurple/api/lib/endpoints/channel/HelixSnoozeNextAdResult.d.ts +20 -0
- package/node_modules/@twurple/api/lib/endpoints/channel/HelixSnoozeNextAdResult.js +29 -0
- package/node_modules/@twurple/api/lib/endpoints/channelPoints/HelixChannelPointsApi.d.ts +117 -0
- package/node_modules/@twurple/api/lib/endpoints/channelPoints/HelixChannelPointsApi.js +228 -0
- package/node_modules/@twurple/api/lib/endpoints/channelPoints/HelixCustomReward.d.ts +94 -0
- package/node_modules/@twurple/api/lib/endpoints/channelPoints/HelixCustomReward.js +152 -0
- package/node_modules/@twurple/api/lib/endpoints/channelPoints/HelixCustomRewardRedemption.d.ts +88 -0
- package/node_modules/@twurple/api/lib/endpoints/channelPoints/HelixCustomRewardRedemption.js +138 -0
- package/node_modules/@twurple/api/lib/endpoints/charity/HelixCharityApi.d.ts +39 -0
- package/node_modules/@twurple/api/lib/endpoints/charity/HelixCharityApi.js +66 -0
- package/node_modules/@twurple/api/lib/endpoints/charity/HelixCharityCampaign.d.ts +54 -0
- package/node_modules/@twurple/api/lib/endpoints/charity/HelixCharityCampaign.js +88 -0
- package/node_modules/@twurple/api/lib/endpoints/charity/HelixCharityCampaignAmount.d.ts +29 -0
- package/node_modules/@twurple/api/lib/endpoints/charity/HelixCharityCampaignAmount.js +40 -0
- package/node_modules/@twurple/api/lib/endpoints/charity/HelixCharityCampaignDonation.d.ts +34 -0
- package/node_modules/@twurple/api/lib/endpoints/charity/HelixCharityCampaignDonation.js +58 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixChannelEmote.d.ts +31 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixChannelEmote.js +49 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixChatApi.d.ts +224 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixChatApi.js +446 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixChatBadgeSet.d.ts +23 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixChatBadgeSet.js +37 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixChatBadgeVersion.d.ts +35 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixChatBadgeVersion.js +49 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixChatChatter.d.ts +25 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixChatChatter.js +45 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixChatSettings.d.ts +45 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixChatSettings.js +64 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixEmote.d.ts +14 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixEmote.js +20 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixEmoteBase.d.ts +48 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixEmoteBase.js +68 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixEmoteFromSet.d.ts +33 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixEmoteFromSet.js +67 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixPrivilegedChatSettings.d.ts +17 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixPrivilegedChatSettings.js +26 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixSentChatMessage.d.ts +24 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixSentChatMessage.js +35 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixSharedChatSession.d.ts +34 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixSharedChatSession.js +58 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixSharedChatSessionParticipant.d.ts +17 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixSharedChatSessionParticipant.js +33 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixUserEmote.d.ts +37 -0
- package/node_modules/@twurple/api/lib/endpoints/chat/HelixUserEmote.js +58 -0
- package/node_modules/@twurple/api/lib/endpoints/clip/HelixClip.d.ts +98 -0
- package/node_modules/@twurple/api/lib/endpoints/clip/HelixClip.js +152 -0
- package/node_modules/@twurple/api/lib/endpoints/clip/HelixClipApi.d.ts +99 -0
- package/node_modules/@twurple/api/lib/endpoints/clip/HelixClipApi.js +192 -0
- package/node_modules/@twurple/api/lib/endpoints/contentClassificationLabels/HelixContentClassificationLabel.d.ts +20 -0
- package/node_modules/@twurple/api/lib/endpoints/contentClassificationLabels/HelixContentClassificationLabel.js +24 -0
- package/node_modules/@twurple/api/lib/endpoints/contentClassificationLabels/HelixContentClassificationLabelApi.d.ts +25 -0
- package/node_modules/@twurple/api/lib/endpoints/contentClassificationLabels/HelixContentClassificationLabelApi.js +38 -0
- package/node_modules/@twurple/api/lib/endpoints/entitlements/HelixDropsEntitlement.d.ts +46 -0
- package/node_modules/@twurple/api/lib/endpoints/entitlements/HelixDropsEntitlement.js +75 -0
- package/node_modules/@twurple/api/lib/endpoints/entitlements/HelixEntitlementApi.d.ts +68 -0
- package/node_modules/@twurple/api/lib/endpoints/entitlements/HelixEntitlementApi.js +122 -0
- package/node_modules/@twurple/api/lib/endpoints/eventSub/HelixEventSubApi.d.ts +780 -0
- package/node_modules/@twurple/api/lib/endpoints/eventSub/HelixEventSubApi.js +1150 -0
- package/node_modules/@twurple/api/lib/endpoints/eventSub/HelixEventSubConduit.d.ts +32 -0
- package/node_modules/@twurple/api/lib/endpoints/eventSub/HelixEventSubConduit.js +53 -0
- package/node_modules/@twurple/api/lib/endpoints/eventSub/HelixEventSubConduitShard.d.ts +20 -0
- package/node_modules/@twurple/api/lib/endpoints/eventSub/HelixEventSubConduitShard.js +29 -0
- package/node_modules/@twurple/api/lib/endpoints/eventSub/HelixEventSubSubscription.d.ts +44 -0
- package/node_modules/@twurple/api/lib/endpoints/eventSub/HelixEventSubSubscription.js +80 -0
- package/node_modules/@twurple/api/lib/endpoints/eventSub/HelixPaginatedEventSubSubscriptionsRequest.d.ts +20 -0
- package/node_modules/@twurple/api/lib/endpoints/eventSub/HelixPaginatedEventSubSubscriptionsRequest.js +40 -0
- package/node_modules/@twurple/api/lib/endpoints/extensions/HelixExtensionBitsProduct.d.ts +32 -0
- package/node_modules/@twurple/api/lib/endpoints/extensions/HelixExtensionBitsProduct.js +48 -0
- package/node_modules/@twurple/api/lib/endpoints/extensions/HelixExtensionTransaction.d.ts +69 -0
- package/node_modules/@twurple/api/lib/endpoints/extensions/HelixExtensionTransaction.js +111 -0
- package/node_modules/@twurple/api/lib/endpoints/extensions/HelixExtensionsApi.d.ts +84 -0
- package/node_modules/@twurple/api/lib/endpoints/extensions/HelixExtensionsApi.js +143 -0
- package/node_modules/@twurple/api/lib/endpoints/game/HelixGame.d.ts +47 -0
- package/node_modules/@twurple/api/lib/endpoints/game/HelixGame.js +71 -0
- package/node_modules/@twurple/api/lib/endpoints/game/HelixGameApi.d.ts +89 -0
- package/node_modules/@twurple/api/lib/endpoints/game/HelixGameApi.js +162 -0
- package/node_modules/@twurple/api/lib/endpoints/goals/HelixGoal.d.ts +49 -0
- package/node_modules/@twurple/api/lib/endpoints/goals/HelixGoal.js +81 -0
- package/node_modules/@twurple/api/lib/endpoints/goals/HelixGoalApi.d.ts +20 -0
- package/node_modules/@twurple/api/lib/endpoints/goals/HelixGoalApi.js +34 -0
- package/node_modules/@twurple/api/lib/endpoints/hypeTrain/HelixHypeTrain.d.ts +70 -0
- package/node_modules/@twurple/api/lib/endpoints/hypeTrain/HelixHypeTrain.js +112 -0
- package/node_modules/@twurple/api/lib/endpoints/hypeTrain/HelixHypeTrainAllTimeHigh.d.ts +20 -0
- package/node_modules/@twurple/api/lib/endpoints/hypeTrain/HelixHypeTrainAllTimeHigh.js +29 -0
- package/node_modules/@twurple/api/lib/endpoints/hypeTrain/HelixHypeTrainApi.d.ts +26 -0
- package/node_modules/@twurple/api/lib/endpoints/hypeTrain/HelixHypeTrainApi.js +37 -0
- package/node_modules/@twurple/api/lib/endpoints/hypeTrain/HelixHypeTrainContribution.d.ts +33 -0
- package/node_modules/@twurple/api/lib/endpoints/hypeTrain/HelixHypeTrainContribution.js +57 -0
- package/node_modules/@twurple/api/lib/endpoints/hypeTrain/HelixHypeTrainSharedParticipant.d.ts +25 -0
- package/node_modules/@twurple/api/lib/endpoints/hypeTrain/HelixHypeTrainSharedParticipant.js +45 -0
- package/node_modules/@twurple/api/lib/endpoints/hypeTrain/HelixHypeTrainStatus.d.ts +22 -0
- package/node_modules/@twurple/api/lib/endpoints/hypeTrain/HelixHypeTrainStatus.js +41 -0
- package/node_modules/@twurple/api/lib/endpoints/moderation/HelixAutoModSettings.d.ts +52 -0
- package/node_modules/@twurple/api/lib/endpoints/moderation/HelixAutoModSettings.js +77 -0
- package/node_modules/@twurple/api/lib/endpoints/moderation/HelixAutoModStatus.d.ts +16 -0
- package/node_modules/@twurple/api/lib/endpoints/moderation/HelixAutoModStatus.js +23 -0
- package/node_modules/@twurple/api/lib/endpoints/moderation/HelixBan.d.ts +29 -0
- package/node_modules/@twurple/api/lib/endpoints/moderation/HelixBan.js +48 -0
- package/node_modules/@twurple/api/lib/endpoints/moderation/HelixBanUser.d.ts +35 -0
- package/node_modules/@twurple/api/lib/endpoints/moderation/HelixBanUser.js +64 -0
- package/node_modules/@twurple/api/lib/endpoints/moderation/HelixBlockedTerm.d.ts +37 -0
- package/node_modules/@twurple/api/lib/endpoints/moderation/HelixBlockedTerm.js +54 -0
- package/node_modules/@twurple/api/lib/endpoints/moderation/HelixModeratedChannel.d.ts +30 -0
- package/node_modules/@twurple/api/lib/endpoints/moderation/HelixModeratedChannel.js +51 -0
- package/node_modules/@twurple/api/lib/endpoints/moderation/HelixModerationApi.d.ts +281 -0
- package/node_modules/@twurple/api/lib/endpoints/moderation/HelixModerationApi.js +580 -0
- package/node_modules/@twurple/api/lib/endpoints/moderation/HelixModerator.d.ts +25 -0
- package/node_modules/@twurple/api/lib/endpoints/moderation/HelixModerator.js +45 -0
- package/node_modules/@twurple/api/lib/endpoints/moderation/HelixShieldModeStatus.d.ts +33 -0
- package/node_modules/@twurple/api/lib/endpoints/moderation/HelixShieldModeStatus.js +57 -0
- package/node_modules/@twurple/api/lib/endpoints/moderation/HelixUnbanRequest.d.ts +83 -0
- package/node_modules/@twurple/api/lib/endpoints/moderation/HelixUnbanRequest.js +131 -0
- package/node_modules/@twurple/api/lib/endpoints/moderation/HelixWarning.d.ts +37 -0
- package/node_modules/@twurple/api/lib/endpoints/moderation/HelixWarning.js +63 -0
- package/node_modules/@twurple/api/lib/endpoints/poll/HelixPoll.d.ts +62 -0
- package/node_modules/@twurple/api/lib/endpoints/poll/HelixPoll.js +100 -0
- package/node_modules/@twurple/api/lib/endpoints/poll/HelixPollApi.d.ts +71 -0
- package/node_modules/@twurple/api/lib/endpoints/poll/HelixPollApi.js +130 -0
- package/node_modules/@twurple/api/lib/endpoints/poll/HelixPollChoice.d.ts +24 -0
- package/node_modules/@twurple/api/lib/endpoints/poll/HelixPollChoice.js +35 -0
- package/node_modules/@twurple/api/lib/endpoints/prediction/HelixPrediction.d.ts +66 -0
- package/node_modules/@twurple/api/lib/endpoints/prediction/HelixPrediction.js +115 -0
- package/node_modules/@twurple/api/lib/endpoints/prediction/HelixPredictionApi.d.ts +86 -0
- package/node_modules/@twurple/api/lib/endpoints/prediction/HelixPredictionApi.js +151 -0
- package/node_modules/@twurple/api/lib/endpoints/prediction/HelixPredictionOutcome.d.ts +33 -0
- package/node_modules/@twurple/api/lib/endpoints/prediction/HelixPredictionOutcome.js +58 -0
- package/node_modules/@twurple/api/lib/endpoints/prediction/HelixPredictor.d.ts +33 -0
- package/node_modules/@twurple/api/lib/endpoints/prediction/HelixPredictor.js +57 -0
- package/node_modules/@twurple/api/lib/endpoints/raids/HelixRaid.d.ts +16 -0
- package/node_modules/@twurple/api/lib/endpoints/raids/HelixRaid.js +23 -0
- package/node_modules/@twurple/api/lib/endpoints/raids/HelixRaidApi.d.ts +33 -0
- package/node_modules/@twurple/api/lib/endpoints/raids/HelixRaidApi.js +58 -0
- package/node_modules/@twurple/api/lib/endpoints/schedule/HelixPaginatedScheduleSegmentRequest.d.ts +9 -0
- package/node_modules/@twurple/api/lib/endpoints/schedule/HelixPaginatedScheduleSegmentRequest.js +31 -0
- package/node_modules/@twurple/api/lib/endpoints/schedule/HelixSchedule.d.ts +38 -0
- package/node_modules/@twurple/api/lib/endpoints/schedule/HelixSchedule.js +66 -0
- package/node_modules/@twurple/api/lib/endpoints/schedule/HelixScheduleApi.d.ts +95 -0
- package/node_modules/@twurple/api/lib/endpoints/schedule/HelixScheduleApi.js +171 -0
- package/node_modules/@twurple/api/lib/endpoints/schedule/HelixScheduleSegment.d.ts +45 -0
- package/node_modules/@twurple/api/lib/endpoints/schedule/HelixScheduleSegment.js +76 -0
- package/node_modules/@twurple/api/lib/endpoints/search/HelixChannelSearchResult.d.ts +58 -0
- package/node_modules/@twurple/api/lib/endpoints/search/HelixChannelSearchResult.js +95 -0
- package/node_modules/@twurple/api/lib/endpoints/search/HelixSearchApi.d.ts +59 -0
- package/node_modules/@twurple/api/lib/endpoints/search/HelixSearchApi.js +94 -0
- package/node_modules/@twurple/api/lib/endpoints/stream/HelixStream.d.ts +88 -0
- package/node_modules/@twurple/api/lib/endpoints/stream/HelixStream.js +137 -0
- package/node_modules/@twurple/api/lib/endpoints/stream/HelixStreamApi.d.ts +140 -0
- package/node_modules/@twurple/api/lib/endpoints/stream/HelixStreamApi.js +303 -0
- package/node_modules/@twurple/api/lib/endpoints/stream/HelixStreamMarker.d.ts +24 -0
- package/node_modules/@twurple/api/lib/endpoints/stream/HelixStreamMarker.js +45 -0
- package/node_modules/@twurple/api/lib/endpoints/stream/HelixStreamMarkerWithVideo.d.ts +23 -0
- package/node_modules/@twurple/api/lib/endpoints/stream/HelixStreamMarkerWithVideo.js +38 -0
- package/node_modules/@twurple/api/lib/endpoints/subscriptions/HelixPaginatedSubscriptionsRequest.d.ts +16 -0
- package/node_modules/@twurple/api/lib/endpoints/subscriptions/HelixPaginatedSubscriptionsRequest.js +34 -0
- package/node_modules/@twurple/api/lib/endpoints/subscriptions/HelixSubscription.d.ts +58 -0
- package/node_modules/@twurple/api/lib/endpoints/subscriptions/HelixSubscription.js +88 -0
- package/node_modules/@twurple/api/lib/endpoints/subscriptions/HelixSubscriptionApi.d.ts +66 -0
- package/node_modules/@twurple/api/lib/endpoints/subscriptions/HelixSubscriptionApi.js +119 -0
- package/node_modules/@twurple/api/lib/endpoints/subscriptions/HelixUserSubscription.d.ts +33 -0
- package/node_modules/@twurple/api/lib/endpoints/subscriptions/HelixUserSubscription.js +57 -0
- package/node_modules/@twurple/api/lib/endpoints/team/HelixTeam.d.ts +51 -0
- package/node_modules/@twurple/api/lib/endpoints/team/HelixTeam.js +84 -0
- package/node_modules/@twurple/api/lib/endpoints/team/HelixTeamApi.d.ts +43 -0
- package/node_modules/@twurple/api/lib/endpoints/team/HelixTeamApi.js +92 -0
- package/node_modules/@twurple/api/lib/endpoints/team/HelixTeamWithUsers.d.ts +14 -0
- package/node_modules/@twurple/api/lib/endpoints/team/HelixTeamWithUsers.js +21 -0
- package/node_modules/@twurple/api/lib/endpoints/user/HelixFollow.d.ts +45 -0
- package/node_modules/@twurple/api/lib/endpoints/user/HelixFollow.js +76 -0
- package/node_modules/@twurple/api/lib/endpoints/user/HelixPrivilegedUser.d.ts +19 -0
- package/node_modules/@twurple/api/lib/endpoints/user/HelixPrivilegedUser.js +28 -0
- package/node_modules/@twurple/api/lib/endpoints/user/HelixUser.d.ts +134 -0
- package/node_modules/@twurple/api/lib/endpoints/user/HelixUser.js +183 -0
- package/node_modules/@twurple/api/lib/endpoints/user/HelixUserApi.d.ts +137 -0
- package/node_modules/@twurple/api/lib/endpoints/user/HelixUserApi.js +280 -0
- package/node_modules/@twurple/api/lib/endpoints/user/HelixUserBlock.d.ts +25 -0
- package/node_modules/@twurple/api/lib/endpoints/user/HelixUserBlock.js +45 -0
- package/node_modules/@twurple/api/lib/endpoints/user/extensions/HelixBaseExtension.d.ts +18 -0
- package/node_modules/@twurple/api/lib/endpoints/user/extensions/HelixBaseExtension.js +22 -0
- package/node_modules/@twurple/api/lib/endpoints/user/extensions/HelixInstalledExtension.d.ts +20 -0
- package/node_modules/@twurple/api/lib/endpoints/user/extensions/HelixInstalledExtension.js +34 -0
- package/node_modules/@twurple/api/lib/endpoints/user/extensions/HelixInstalledExtensionList.d.ts +14 -0
- package/node_modules/@twurple/api/lib/endpoints/user/extensions/HelixInstalledExtensionList.js +26 -0
- package/node_modules/@twurple/api/lib/endpoints/user/extensions/HelixUserExtension.d.ts +18 -0
- package/node_modules/@twurple/api/lib/endpoints/user/extensions/HelixUserExtension.js +26 -0
- package/node_modules/@twurple/api/lib/endpoints/video/HelixVideo.d.ts +105 -0
- package/node_modules/@twurple/api/lib/endpoints/video/HelixVideo.js +195 -0
- package/node_modules/@twurple/api/lib/endpoints/video/HelixVideoApi.d.ts +85 -0
- package/node_modules/@twurple/api/lib/endpoints/video/HelixVideoApi.js +162 -0
- package/node_modules/@twurple/api/lib/endpoints/whisper/HelixWhisperApi.d.ts +36 -0
- package/node_modules/@twurple/api/lib/endpoints/whisper/HelixWhisperApi.js +53 -0
- package/node_modules/@twurple/api/lib/errors/ChatMessageDroppedError.d.ts +10 -0
- package/node_modules/@twurple/api/lib/errors/ChatMessageDroppedError.js +14 -0
- package/node_modules/@twurple/api/lib/errors/ConfigError.d.ts +7 -0
- package/node_modules/@twurple/api/lib/errors/ConfigError.js +6 -0
- package/node_modules/@twurple/api/lib/errors/StreamNotLiveError.d.ts +9 -0
- package/node_modules/@twurple/api/lib/errors/StreamNotLiveError.js +10 -0
- package/node_modules/@twurple/api/lib/index.d.ts +151 -0
- package/node_modules/@twurple/api/lib/index.js +111 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/bits.external.d.ts +43 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/bits.external.js +10 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/bits.input.d.ts +30 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/bits.input.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/channel.external.d.ts +58 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/channel.external.js +42 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/channel.input.d.ts +39 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/channel.input.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/channelPoints.external.d.ts +74 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/channelPoints.external.js +60 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/channelPoints.input.d.ts +78 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/channelPoints.input.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/charity.external.d.ts +28 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/charity.external.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/chat.external.d.ts +114 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/chat.external.js +52 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/chat.input.d.ts +93 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/chat.input.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/clip.external.d.ts +28 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/clip.external.js +33 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/clip.input.d.ts +85 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/clip.input.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/contentClassificationLabels.external.d.ts +7 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/contentClassificationLabels.external.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/entitlement.external.d.ts +24 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/entitlement.external.js +17 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/entitlement.input.d.ts +26 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/entitlement.input.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/eventSub.external.d.ts +88 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/eventSub.external.js +54 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/eventSub.input.d.ts +66 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/eventSub.input.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/extensions.external.d.ts +42 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/extensions.external.js +28 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/extensions.input.d.ts +47 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/extensions.input.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/game.external.d.ts +8 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/game.external.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/generic.external.d.ts +20 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/generic.external.js +32 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/goal.external.d.ts +14 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/goal.external.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/hypeTrain.external.d.ts +52 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/hypeTrain.external.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/moderation.external.d.ts +96 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/moderation.external.js +81 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/moderation.input.d.ts +65 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/moderation.input.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/poll.external.d.ts +29 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/poll.external.js +20 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/poll.input.d.ts +22 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/poll.input.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/prediction.external.d.ts +38 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/prediction.external.js +19 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/prediction.input.d.ts +18 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/prediction.input.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/raid.external.d.ts +6 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/raid.external.js +8 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/schedule.external.d.ts +36 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/schedule.external.js +54 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/schedule.input.d.ts +125 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/schedule.input.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/search.external.d.ts +15 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/search.external.js +7 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/search.input.d.ts +14 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/search.input.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/shared-chat-session.external.d.ts +13 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/shared-chat-session.external.js +7 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/stream.external.d.ts +52 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/stream.external.js +24 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/stream.input.d.ts +33 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/stream.input.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/subscription.external.d.ts +25 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/subscription.external.js +8 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/subscription.input.d.ts +12 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/subscription.input.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/team.external.d.ts +18 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/team.external.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/user.external.d.ts +41 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/user.external.js +15 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/user.input.d.ts +20 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/user.input.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/userExtension.external.d.ts +34 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/userExtension.external.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/userExtension.input.d.ts +48 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/userExtension.input.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/video.external.d.ts +38 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/video.external.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/video.input.d.ts +29 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/video.input.js +1 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/whisper.external.d.ts +2 -0
- package/node_modules/@twurple/api/lib/interfaces/endpoints/whisper.external.js +8 -0
- package/node_modules/@twurple/api/lib/relations/HelixUserRelation.d.ts +25 -0
- package/node_modules/@twurple/api/lib/relations/HelixUserRelation.js +45 -0
- package/node_modules/@twurple/api/lib/reporting/ApiReportedRequest.d.ts +22 -0
- package/node_modules/@twurple/api/lib/reporting/ApiReportedRequest.js +32 -0
- package/node_modules/@twurple/api/lib/utils/HelixRateLimiter.d.ts +2 -0
- package/node_modules/@twurple/api/lib/utils/HelixRateLimiter.js +23 -0
- package/node_modules/@twurple/api/lib/utils/HelixRequestBatcher.d.ts +2 -0
- package/node_modules/@twurple/api/lib/utils/HelixRequestBatcher.js +95 -0
- package/node_modules/@twurple/api/lib/utils/pagination/HelixPaginatedRequest.d.ts +49 -0
- package/node_modules/@twurple/api/lib/utils/pagination/HelixPaginatedRequest.js +140 -0
- package/node_modules/@twurple/api/lib/utils/pagination/HelixPaginatedRequestWithTotal.d.ts +13 -0
- package/node_modules/@twurple/api/lib/utils/pagination/HelixPaginatedRequestWithTotal.js +22 -0
- package/node_modules/@twurple/api/lib/utils/pagination/HelixPaginatedResult.d.ts +31 -0
- package/node_modules/@twurple/api/lib/utils/pagination/HelixPaginatedResult.js +19 -0
- package/node_modules/@twurple/api/lib/utils/pagination/HelixPagination.d.ts +25 -0
- package/node_modules/@twurple/api/lib/utils/pagination/HelixPagination.js +8 -0
- package/node_modules/@twurple/api/package.json +60 -0
- package/node_modules/@twurple/api-call/LICENSE +21 -0
- package/node_modules/@twurple/api-call/README.md +9 -0
- package/node_modules/@twurple/api-call/lib/HelixResponse.d.ts +15 -0
- package/node_modules/@twurple/api-call/lib/HelixResponse.js +1 -0
- package/node_modules/@twurple/api-call/lib/TwitchApiCallOptions.d.ts +74 -0
- package/node_modules/@twurple/api-call/lib/TwitchApiCallOptions.js +1 -0
- package/node_modules/@twurple/api-call/lib/apiCall.d.ts +31 -0
- package/node_modules/@twurple/api-call/lib/apiCall.js +59 -0
- package/node_modules/@twurple/api-call/lib/errors/HttpStatusCodeError.d.ts +29 -0
- package/node_modules/@twurple/api-call/lib/errors/HttpStatusCodeError.js +42 -0
- package/node_modules/@twurple/api-call/lib/helpers/queries.external.d.ts +3 -0
- package/node_modules/@twurple/api-call/lib/helpers/queries.external.js +6 -0
- package/node_modules/@twurple/api-call/lib/helpers/transform.d.ts +7 -0
- package/node_modules/@twurple/api-call/lib/helpers/transform.js +23 -0
- package/node_modules/@twurple/api-call/lib/helpers/url.d.ts +2 -0
- package/node_modules/@twurple/api-call/lib/helpers/url.js +25 -0
- package/node_modules/@twurple/api-call/lib/index.d.ts +7 -0
- package/node_modules/@twurple/api-call/lib/index.js +4 -0
- package/node_modules/@twurple/api-call/package.json +44 -0
- package/node_modules/@twurple/auth/LICENSE +21 -0
- package/node_modules/@twurple/auth/README.md +24 -0
- package/node_modules/@twurple/auth/lib/AccessToken.d.ts +77 -0
- package/node_modules/@twurple/auth/lib/AccessToken.external.d.ts +2 -0
- package/node_modules/@twurple/auth/lib/AccessToken.external.js +1 -0
- package/node_modules/@twurple/auth/lib/AccessToken.js +29 -0
- package/node_modules/@twurple/auth/lib/TokenFetcher.d.ts +12 -0
- package/node_modules/@twurple/auth/lib/TokenFetcher.js +67 -0
- package/node_modules/@twurple/auth/lib/TokenInfo.d.ts +31 -0
- package/node_modules/@twurple/auth/lib/TokenInfo.external.d.ts +8 -0
- package/node_modules/@twurple/auth/lib/TokenInfo.external.js +1 -0
- package/node_modules/@twurple/auth/lib/TokenInfo.js +50 -0
- package/node_modules/@twurple/auth/lib/errors/CachedRefreshFailureError.d.ts +10 -0
- package/node_modules/@twurple/auth/lib/errors/CachedRefreshFailureError.js +15 -0
- package/node_modules/@twurple/auth/lib/errors/IntermediateUserRemovalError.d.ts +10 -0
- package/node_modules/@twurple/auth/lib/errors/IntermediateUserRemovalError.js +14 -0
- package/node_modules/@twurple/auth/lib/errors/InvalidTokenError.d.ts +9 -0
- package/node_modules/@twurple/auth/lib/errors/InvalidTokenError.js +10 -0
- package/node_modules/@twurple/auth/lib/errors/InvalidTokenTypeError.d.ts +7 -0
- package/node_modules/@twurple/auth/lib/errors/InvalidTokenTypeError.js +6 -0
- package/node_modules/@twurple/auth/lib/errors/UnknownIntentError.d.ts +13 -0
- package/node_modules/@twurple/auth/lib/errors/UnknownIntentError.js +15 -0
- package/node_modules/@twurple/auth/lib/helpers.d.ts +82 -0
- package/node_modules/@twurple/auth/lib/helpers.external.d.ts +2 -0
- package/node_modules/@twurple/auth/lib/helpers.external.js +34 -0
- package/node_modules/@twurple/auth/lib/helpers.js +250 -0
- package/node_modules/@twurple/auth/lib/index.d.ts +17 -0
- package/node_modules/@twurple/auth/lib/index.js +12 -0
- package/node_modules/@twurple/auth/lib/providers/AppTokenAuthProvider.d.ts +52 -0
- package/node_modules/@twurple/auth/lib/providers/AppTokenAuthProvider.js +114 -0
- package/node_modules/@twurple/auth/lib/providers/AuthProvider.d.ts +105 -0
- package/node_modules/@twurple/auth/lib/providers/AuthProvider.js +1 -0
- package/node_modules/@twurple/auth/lib/providers/RefreshingAuthProvider.d.ts +186 -0
- package/node_modules/@twurple/auth/lib/providers/RefreshingAuthProvider.js +442 -0
- package/node_modules/@twurple/auth/lib/providers/StaticAuthProvider.d.ts +62 -0
- package/node_modules/@twurple/auth/lib/providers/StaticAuthProvider.js +102 -0
- package/node_modules/@twurple/auth/package.json +49 -0
- package/node_modules/@twurple/chat/LICENSE +21 -0
- package/node_modules/@twurple/chat/README.md +24 -0
- package/node_modules/@twurple/chat/lib/ChatClient.d.ts +577 -0
- package/node_modules/@twurple/chat/lib/ChatClient.js +1153 -0
- package/node_modules/@twurple/chat/lib/ChatMessageAttributes.d.ts +13 -0
- package/node_modules/@twurple/chat/lib/ChatMessageAttributes.js +5 -0
- package/node_modules/@twurple/chat/lib/ChatUser.d.ts +68 -0
- package/node_modules/@twurple/chat/lib/ChatUser.js +134 -0
- package/node_modules/@twurple/chat/lib/caps/TwitchMembershipCapability.d.ts +2 -0
- package/node_modules/@twurple/chat/lib/caps/TwitchMembershipCapability.js +9 -0
- package/node_modules/@twurple/chat/lib/caps/twitchCommands/index.d.ts +2 -0
- package/node_modules/@twurple/chat/lib/caps/twitchCommands/index.js +11 -0
- package/node_modules/@twurple/chat/lib/caps/twitchCommands/messageTypes/ClearChat.d.ts +16 -0
- package/node_modules/@twurple/chat/lib/caps/twitchCommands/messageTypes/ClearChat.js +20 -0
- package/node_modules/@twurple/chat/lib/caps/twitchCommands/messageTypes/Reconnect.d.ts +6 -0
- package/node_modules/@twurple/chat/lib/caps/twitchCommands/messageTypes/Reconnect.js +5 -0
- package/node_modules/@twurple/chat/lib/caps/twitchCommands/messageTypes/RoomState.d.ts +12 -0
- package/node_modules/@twurple/chat/lib/caps/twitchCommands/messageTypes/RoomState.js +9 -0
- package/node_modules/@twurple/chat/lib/caps/twitchCommands/messageTypes/UserNotice.d.ts +19 -0
- package/node_modules/@twurple/chat/lib/caps/twitchCommands/messageTypes/UserNotice.js +28 -0
- package/node_modules/@twurple/chat/lib/caps/twitchCommands/messageTypes/UserState.d.ts +14 -0
- package/node_modules/@twurple/chat/lib/caps/twitchCommands/messageTypes/UserState.js +10 -0
- package/node_modules/@twurple/chat/lib/caps/twitchCommands/messageTypes/Whisper.d.ts +18 -0
- package/node_modules/@twurple/chat/lib/caps/twitchCommands/messageTypes/Whisper.js +19 -0
- package/node_modules/@twurple/chat/lib/caps/twitchTags/index.d.ts +2 -0
- package/node_modules/@twurple/chat/lib/caps/twitchTags/index.js +11 -0
- package/node_modules/@twurple/chat/lib/caps/twitchTags/messageTypes/ClearMsg.d.ts +17 -0
- package/node_modules/@twurple/chat/lib/caps/twitchTags/messageTypes/ClearMsg.js +23 -0
- package/node_modules/@twurple/chat/lib/caps/twitchTags/messageTypes/GlobalUserState.d.ts +10 -0
- package/node_modules/@twurple/chat/lib/caps/twitchTags/messageTypes/GlobalUserState.js +9 -0
- package/node_modules/@twurple/chat/lib/commands/ChatMessage.d.ts +137 -0
- package/node_modules/@twurple/chat/lib/commands/ChatMessage.js +216 -0
- package/node_modules/@twurple/chat/lib/emotes/ParsedMessagePart.d.ts +76 -0
- package/node_modules/@twurple/chat/lib/emotes/ParsedMessagePart.js +1 -0
- package/node_modules/@twurple/chat/lib/emotes/buildEmoteImageUrl.d.ts +39 -0
- package/node_modules/@twurple/chat/lib/emotes/buildEmoteImageUrl.js +12 -0
- package/node_modules/@twurple/chat/lib/emotes/messagePartParser.d.ts +31 -0
- package/node_modules/@twurple/chat/lib/emotes/messagePartParser.js +109 -0
- package/node_modules/@twurple/chat/lib/index.d.ts +33 -0
- package/node_modules/@twurple/chat/lib/index.js +18 -0
- package/node_modules/@twurple/chat/lib/userNotices/ChatAnnouncementInfo.d.ts +12 -0
- package/node_modules/@twurple/chat/lib/userNotices/ChatAnnouncementInfo.js +1 -0
- package/node_modules/@twurple/chat/lib/userNotices/ChatBitsBadgeUpgradeInfo.d.ts +14 -0
- package/node_modules/@twurple/chat/lib/userNotices/ChatBitsBadgeUpgradeInfo.js +1 -0
- package/node_modules/@twurple/chat/lib/userNotices/ChatCommunityPayForwardInfo.d.ts +26 -0
- package/node_modules/@twurple/chat/lib/userNotices/ChatCommunityPayForwardInfo.js +1 -0
- package/node_modules/@twurple/chat/lib/userNotices/ChatCommunitySubInfo.d.ts +32 -0
- package/node_modules/@twurple/chat/lib/userNotices/ChatCommunitySubInfo.js +1 -0
- package/node_modules/@twurple/chat/lib/userNotices/ChatPrimeCommunityGiftInfo.d.ts +18 -0
- package/node_modules/@twurple/chat/lib/userNotices/ChatPrimeCommunityGiftInfo.js +1 -0
- package/node_modules/@twurple/chat/lib/userNotices/ChatRaidInfo.d.ts +14 -0
- package/node_modules/@twurple/chat/lib/userNotices/ChatRaidInfo.js +1 -0
- package/node_modules/@twurple/chat/lib/userNotices/ChatRewardGiftInfo.d.ts +32 -0
- package/node_modules/@twurple/chat/lib/userNotices/ChatRewardGiftInfo.js +1 -0
- package/node_modules/@twurple/chat/lib/userNotices/ChatRitualInfo.d.ts +18 -0
- package/node_modules/@twurple/chat/lib/userNotices/ChatRitualInfo.js +1 -0
- package/node_modules/@twurple/chat/lib/userNotices/ChatStandardPayForwardInfo.d.ts +34 -0
- package/node_modules/@twurple/chat/lib/userNotices/ChatStandardPayForwardInfo.js +1 -0
- package/node_modules/@twurple/chat/lib/userNotices/ChatSubInfo.d.ts +171 -0
- package/node_modules/@twurple/chat/lib/userNotices/ChatSubInfo.js +1 -0
- package/node_modules/@twurple/chat/lib/userNotices/ChatViewerMilestoneInfo.d.ts +30 -0
- package/node_modules/@twurple/chat/lib/userNotices/ChatViewerMilestoneInfo.js +1 -0
- package/node_modules/@twurple/chat/lib/utils/emoteUtil.d.ts +7 -0
- package/node_modules/@twurple/chat/lib/utils/emoteUtil.js +20 -0
- package/node_modules/@twurple/chat/lib/utils/messageUtil.d.ts +17 -0
- package/node_modules/@twurple/chat/lib/utils/messageUtil.js +87 -0
- package/node_modules/@twurple/chat/lib/utils/userUtil.d.ts +13 -0
- package/node_modules/@twurple/chat/lib/utils/userUtil.js +24 -0
- package/node_modules/@twurple/chat/package.json +58 -0
- package/node_modules/@twurple/common/LICENSE +21 -0
- package/node_modules/@twurple/common/README.md +9 -0
- package/node_modules/@twurple/common/lib/DataObject.d.ts +15 -0
- package/node_modules/@twurple/common/lib/DataObject.js +19 -0
- package/node_modules/@twurple/common/lib/errors/CustomError.d.ts +10 -0
- package/node_modules/@twurple/common/lib/errors/CustomError.js +13 -0
- package/node_modules/@twurple/common/lib/errors/HellFreezesOverError.d.ts +10 -0
- package/node_modules/@twurple/common/lib/errors/HellFreezesOverError.js +11 -0
- package/node_modules/@twurple/common/lib/errors/RelationAssertionError.d.ts +8 -0
- package/node_modules/@twurple/common/lib/errors/RelationAssertionError.js +9 -0
- package/node_modules/@twurple/common/lib/extensions/HelixExtension.d.ts +224 -0
- package/node_modules/@twurple/common/lib/extensions/HelixExtension.external.d.ts +87 -0
- package/node_modules/@twurple/common/lib/extensions/HelixExtension.external.js +1 -0
- package/node_modules/@twurple/common/lib/extensions/HelixExtension.js +314 -0
- package/node_modules/@twurple/common/lib/index.d.ts +14 -0
- package/node_modules/@twurple/common/lib/index.js +10 -0
- package/node_modules/@twurple/common/lib/mockApiPort.d.ts +3 -0
- package/node_modules/@twurple/common/lib/mockApiPort.js +15 -0
- package/node_modules/@twurple/common/lib/qs.d.ts +2 -0
- package/node_modules/@twurple/common/lib/qs.js +21 -0
- package/node_modules/@twurple/common/lib/relations.d.ts +3 -0
- package/node_modules/@twurple/common/lib/relations.js +8 -0
- package/node_modules/@twurple/common/lib/rtfm.d.ts +9 -0
- package/node_modules/@twurple/common/lib/rtfm.js +17 -0
- package/node_modules/@twurple/common/lib/types.d.ts +9 -0
- package/node_modules/@twurple/common/lib/types.js +1 -0
- package/node_modules/@twurple/common/lib/userResolvers.d.ts +42 -0
- package/node_modules/@twurple/common/lib/userResolvers.js +22 -0
- package/node_modules/@twurple/common/package.json +43 -0
- package/node_modules/@types/node/LICENSE +21 -0
- package/node_modules/@types/node/README.md +15 -0
- package/node_modules/@types/node/assert/strict.d.ts +8 -0
- package/node_modules/@types/node/assert.d.ts +1062 -0
- package/node_modules/@types/node/async_hooks.d.ts +605 -0
- package/node_modules/@types/node/buffer.buffer.d.ts +471 -0
- package/node_modules/@types/node/buffer.d.ts +1936 -0
- package/node_modules/@types/node/child_process.d.ts +1475 -0
- package/node_modules/@types/node/cluster.d.ts +577 -0
- package/node_modules/@types/node/compatibility/disposable.d.ts +16 -0
- package/node_modules/@types/node/compatibility/index.d.ts +9 -0
- package/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
- package/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
- package/node_modules/@types/node/console.d.ts +452 -0
- package/node_modules/@types/node/constants.d.ts +21 -0
- package/node_modules/@types/node/crypto.d.ts +4590 -0
- package/node_modules/@types/node/dgram.d.ts +597 -0
- package/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
- package/node_modules/@types/node/dns/promises.d.ts +479 -0
- package/node_modules/@types/node/dns.d.ts +871 -0
- package/node_modules/@types/node/domain.d.ts +170 -0
- package/node_modules/@types/node/events.d.ts +977 -0
- package/node_modules/@types/node/fs/promises.d.ts +1270 -0
- package/node_modules/@types/node/fs.d.ts +4375 -0
- package/node_modules/@types/node/globals.d.ts +172 -0
- package/node_modules/@types/node/globals.typedarray.d.ts +38 -0
- package/node_modules/@types/node/http.d.ts +2049 -0
- package/node_modules/@types/node/http2.d.ts +2708 -0
- package/node_modules/@types/node/https.d.ts +578 -0
- package/node_modules/@types/node/index.d.ts +93 -0
- package/node_modules/@types/node/inspector.generated.d.ts +3966 -0
- package/node_modules/@types/node/module.d.ts +539 -0
- package/node_modules/@types/node/net.d.ts +1031 -0
- package/node_modules/@types/node/os.d.ts +506 -0
- package/node_modules/@types/node/package.json +140 -0
- package/node_modules/@types/node/path.d.ts +200 -0
- package/node_modules/@types/node/perf_hooks.d.ts +961 -0
- package/node_modules/@types/node/process.d.ts +1961 -0
- package/node_modules/@types/node/punycode.d.ts +117 -0
- package/node_modules/@types/node/querystring.d.ts +152 -0
- package/node_modules/@types/node/readline/promises.d.ts +162 -0
- package/node_modules/@types/node/readline.d.ts +589 -0
- package/node_modules/@types/node/repl.d.ts +430 -0
- package/node_modules/@types/node/sea.d.ts +153 -0
- package/node_modules/@types/node/stream/consumers.d.ts +38 -0
- package/node_modules/@types/node/stream/promises.d.ts +90 -0
- package/node_modules/@types/node/stream/web.d.ts +533 -0
- package/node_modules/@types/node/stream.d.ts +1698 -0
- package/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/node_modules/@types/node/test.d.ts +1787 -0
- package/node_modules/@types/node/timers/promises.d.ts +108 -0
- package/node_modules/@types/node/timers.d.ts +286 -0
- package/node_modules/@types/node/tls.d.ts +1259 -0
- package/node_modules/@types/node/trace_events.d.ts +197 -0
- package/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +468 -0
- package/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +34 -0
- package/node_modules/@types/node/ts5.6/index.d.ts +93 -0
- package/node_modules/@types/node/tty.d.ts +208 -0
- package/node_modules/@types/node/url.d.ts +964 -0
- package/node_modules/@types/node/util.d.ts +2331 -0
- package/node_modules/@types/node/v8.d.ts +809 -0
- package/node_modules/@types/node/vm.d.ts +1001 -0
- package/node_modules/@types/node/wasi.d.ts +181 -0
- package/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
- package/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
- package/node_modules/@types/node/web-globals/events.d.ts +97 -0
- package/node_modules/@types/node/web-globals/fetch.d.ts +55 -0
- package/node_modules/@types/node/worker_threads.d.ts +715 -0
- package/node_modules/@types/node/zlib.d.ts +598 -0
- package/node_modules/@types/ws/LICENSE +21 -0
- package/node_modules/@types/ws/README.md +15 -0
- package/node_modules/@types/ws/index.d.mts +451 -0
- package/node_modules/@types/ws/index.d.ts +445 -0
- package/node_modules/@types/ws/package.json +72 -0
- package/node_modules/ircv3/LICENSE +21 -0
- package/node_modules/ircv3/README.md +6 -0
- package/node_modules/ircv3/es/Capability/Capability.mjs +1 -0
- package/node_modules/ircv3/es/Capability/CoreCapabilities/AwayNotifyCapability.mjs +4 -0
- package/node_modules/ircv3/es/Capability/CoreCapabilities/BatchCapability/MessageTypes/Commands/Batch.mjs +11 -0
- package/node_modules/ircv3/es/Capability/CoreCapabilities/BatchCapability/index.mjs +6 -0
- package/node_modules/ircv3/es/Capability/CoreCapabilities/CapNotifyCapability.mjs +4 -0
- package/node_modules/ircv3/es/Capability/CoreCapabilities/ChgHostCapability/MessageTypes/Commands/ChgHost.mjs +10 -0
- package/node_modules/ircv3/es/Capability/CoreCapabilities/ChgHostCapability/index.mjs +5 -0
- package/node_modules/ircv3/es/Capability/CoreCapabilities/InviteNotifyCapability.mjs +4 -0
- package/node_modules/ircv3/es/Capability/CoreCapabilities/LabeledResponseCapability/MessageTypes/Commands/Acknowledgement.mjs +4 -0
- package/node_modules/ircv3/es/Capability/CoreCapabilities/LabeledResponseCapability/index.mjs +6 -0
- package/node_modules/ircv3/es/Capability/CoreCapabilities/MessageTagsCapability.mjs +5 -0
- package/node_modules/ircv3/es/Capability/CoreCapabilities/MultiPrefixCapability.mjs +4 -0
- package/node_modules/ircv3/es/Capability/CoreCapabilities/index.mjs +8 -0
- package/node_modules/ircv3/es/Errors/MessageError.mjs +14 -0
- package/node_modules/ircv3/es/Errors/NotEnoughParametersError.mjs +22 -0
- package/node_modules/ircv3/es/Errors/ParameterRequirementMismatchError.mjs +27 -0
- package/node_modules/ircv3/es/Errors/UnknownChannelModeCharError.mjs +14 -0
- package/node_modules/ircv3/es/IrcClient.mjs +638 -0
- package/node_modules/ircv3/es/Message/Message.mjs +291 -0
- package/node_modules/ircv3/es/Message/MessageCollector.mjs +49 -0
- package/node_modules/ircv3/es/Message/MessageParser.mjs +98 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/Away.mjs +12 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/CapabilityNegotiation.mjs +51 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/ChannelInvite.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/ChannelJoin.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/ChannelKick.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/ChannelList.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/ChannelPart.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/ClientQuit.mjs +9 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/ErrorMessage.mjs +9 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/IsOnQuery.mjs +9 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/Kill.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/Mode.mjs +83 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/Names.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/NickChange.mjs +9 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/Notice.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/OperLogin.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/Password.mjs +9 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/Ping.mjs +9 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/Pong.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/PrivateMessage.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/Rehash.mjs +4 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/Restart.mjs +4 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/ServerQuit.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/TagMessage.mjs +9 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/Time.mjs +9 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/Topic.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/UserHostQuery.mjs +9 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/UserRegistration.mjs +12 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/WallopsMessage.mjs +9 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/WhoIsQuery.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/WhoQuery.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/WhoWasQuery.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Commands/index.mjs +33 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error401NoSuchNick.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error402NoSuchServer.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error403NoSuchChannel.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error404CanNotSendToChan.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error405TooManyChannels.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error410InvalidCapCmd.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error421UnknownCommand.mjs +17 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error422NoMotd.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error431NoNickNameGiven.mjs +16 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error432ErroneusNickname.mjs +17 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error433NickNameInUse.mjs +17 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error436NickCollision.mjs +17 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error441UserNotInChannel.mjs +18 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error442NotOnChannel.mjs +17 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error443UserOnChannel.mjs +18 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error451NotRegistered.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error461NeedMoreParams.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error462AlreadyRegistered.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error471ChannelIsFull.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error472UnknownMode.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error473InviteOnlyChan.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error474BannedFromChan.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error475BadChannelKey.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error479BadChanName.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error481NoPrivileges.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error482ChanOpPrivsNeeded.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error491NoOperHost.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error501UmodeUnknownFlag.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Error502UsersDontMatch.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply001Welcome.mjs +12 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply002YourHost.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply003Created.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply004ServerInfo.mjs +16 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply005Isupport.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply221UmodeIs.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply301Away.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply302UserHost.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply305UnAway.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply306NowAway.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply311WhoisUser.mjs +14 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply315EndOfWho.mjs +18 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply318EndOfWhois.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply319WhoisChannels.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply322List.mjs +12 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply323ListEnd.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply324ChannelModeIs.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply331NoTopic.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply332Topic.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply333TopicWhoTime.mjs +12 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply341Inviting.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply348ExceptList.mjs +13 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply349EndOfExceptList.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply352WhoReply.mjs +38 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply353NamesReply.mjs +16 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply366EndOfNames.mjs +18 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply367BanList.mjs +13 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply368EndOfBanList.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply372Motd.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply375MotdStart.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply376EndOfMotd.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply381YoureOper.mjs +10 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/Reply391Time.mjs +11 -0
- package/node_modules/ircv3/es/Message/MessageTypes/Numerics/index.mjs +62 -0
- package/node_modules/ircv3/es/Message/MessageTypes/index.mjs +4 -0
- package/node_modules/ircv3/es/ServerProperties.mjs +22 -0
- package/node_modules/ircv3/es/Toolkit/StringTools.mjs +40 -0
- package/node_modules/ircv3/es/index.mjs +14 -0
- package/node_modules/ircv3/lib/Capability/Capability.d.ts +9 -0
- package/node_modules/ircv3/lib/Capability/Capability.js +2 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/AwayNotifyCapability.d.ts +2 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/AwayNotifyCapability.js +7 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/BatchCapability/MessageTypes/Commands/Batch.d.ts +13 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/BatchCapability/MessageTypes/Commands/Batch.js +15 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/BatchCapability/index.d.ts +2 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/BatchCapability/index.js +9 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/CapNotifyCapability.d.ts +2 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/CapNotifyCapability.js +7 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/ChgHostCapability/MessageTypes/Commands/ChgHost.d.ts +12 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/ChgHostCapability/MessageTypes/Commands/ChgHost.js +14 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/ChgHostCapability/index.d.ts +2 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/ChgHostCapability/index.js +8 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/InviteNotifyCapability.d.ts +2 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/InviteNotifyCapability.js +7 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/LabeledResponseCapability/MessageTypes/Commands/Acknowledgement.d.ts +4 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/LabeledResponseCapability/MessageTypes/Commands/Acknowledgement.js +8 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/LabeledResponseCapability/index.d.ts +2 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/LabeledResponseCapability/index.js +9 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/MessageTagsCapability.d.ts +2 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/MessageTagsCapability.js +8 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/MultiPrefixCapability.d.ts +2 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/MultiPrefixCapability.js +7 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/index.d.ts +8 -0
- package/node_modules/ircv3/lib/Capability/CoreCapabilities/index.js +19 -0
- package/node_modules/ircv3/lib/Errors/MessageError.d.ts +6 -0
- package/node_modules/ircv3/lib/Errors/MessageError.js +18 -0
- package/node_modules/ircv3/lib/Errors/NotEnoughParametersError.d.ts +9 -0
- package/node_modules/ircv3/lib/Errors/NotEnoughParametersError.js +26 -0
- package/node_modules/ircv3/lib/Errors/ParameterRequirementMismatchError.d.ts +12 -0
- package/node_modules/ircv3/lib/Errors/ParameterRequirementMismatchError.js +31 -0
- package/node_modules/ircv3/lib/Errors/UnknownChannelModeCharError.d.ts +5 -0
- package/node_modules/ircv3/lib/Errors/UnknownChannelModeCharError.js +18 -0
- package/node_modules/ircv3/lib/IrcClient.d.ts +154 -0
- package/node_modules/ircv3/lib/IrcClient.js +642 -0
- package/node_modules/ircv3/lib/Message/Message.d.ts +88 -0
- package/node_modules/ircv3/lib/Message/Message.js +297 -0
- package/node_modules/ircv3/lib/Message/MessageCollector.d.ts +20 -0
- package/node_modules/ircv3/lib/Message/MessageCollector.js +53 -0
- package/node_modules/ircv3/lib/Message/MessageParser.d.ts +5 -0
- package/node_modules/ircv3/lib/Message/MessageParser.js +104 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Away.d.ts +11 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Away.js +16 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/CapabilityNegotiation.d.ts +18 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/CapabilityNegotiation.js +55 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/ChannelInvite.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/ChannelInvite.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/ChannelJoin.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/ChannelJoin.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/ChannelKick.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/ChannelKick.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/ChannelList.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/ChannelList.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/ChannelPart.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/ChannelPart.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/ClientQuit.d.ts +11 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/ClientQuit.js +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/ErrorMessage.d.ts +11 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/ErrorMessage.js +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/IsOnQuery.d.ts +11 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/IsOnQuery.js +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Kill.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Kill.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Mode.d.ts +22 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Mode.js +87 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Names.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Names.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/NickChange.d.ts +11 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/NickChange.js +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Notice.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Notice.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/OperLogin.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/OperLogin.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Password.d.ts +11 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Password.js +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Ping.d.ts +11 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Ping.js +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Pong.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Pong.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/PrivateMessage.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/PrivateMessage.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Rehash.d.ts +4 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Rehash.js +8 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Restart.d.ts +4 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Restart.js +8 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/ServerQuit.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/ServerQuit.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/TagMessage.d.ts +11 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/TagMessage.js +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Time.d.ts +11 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Time.js +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Topic.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/Topic.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/UserHostQuery.d.ts +11 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/UserHostQuery.js +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/UserRegistration.d.ts +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/UserRegistration.js +16 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/WallopsMessage.d.ts +11 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/WallopsMessage.js +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/WhoIsQuery.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/WhoIsQuery.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/WhoQuery.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/WhoQuery.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/WhoWasQuery.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/WhoWasQuery.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/index.d.ts +32 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Commands/index.js +126 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error401NoSuchNick.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error401NoSuchNick.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error402NoSuchServer.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error402NoSuchServer.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error403NoSuchChannel.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error403NoSuchChannel.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error404CanNotSendToChan.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error404CanNotSendToChan.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error405TooManyChannels.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error405TooManyChannels.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error410InvalidCapCmd.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error410InvalidCapCmd.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error421UnknownCommand.d.ts +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error421UnknownCommand.js +21 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error422NoMotd.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error422NoMotd.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error431NoNickNameGiven.d.ts +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error431NoNickNameGiven.js +20 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error432ErroneusNickname.d.ts +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error432ErroneusNickname.js +21 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error433NickNameInUse.d.ts +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error433NickNameInUse.js +21 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error436NickCollision.d.ts +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error436NickCollision.js +21 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error441UserNotInChannel.d.ts +16 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error441UserNotInChannel.js +22 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error442NotOnChannel.d.ts +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error442NotOnChannel.js +21 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error443UserOnChannel.d.ts +16 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error443UserOnChannel.js +22 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error451NotRegistered.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error451NotRegistered.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error461NeedMoreParams.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error461NeedMoreParams.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error462AlreadyRegistered.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error462AlreadyRegistered.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error471ChannelIsFull.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error471ChannelIsFull.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error472UnknownMode.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error472UnknownMode.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error473InviteOnlyChan.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error473InviteOnlyChan.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error474BannedFromChan.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error474BannedFromChan.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error475BadChannelKey.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error475BadChannelKey.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error479BadChanName.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error479BadChanName.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error481NoPrivileges.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error481NoPrivileges.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error482ChanOpPrivsNeeded.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error482ChanOpPrivsNeeded.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error491NoOperHost.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error491NoOperHost.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error501UmodeUnknownFlag.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error501UmodeUnknownFlag.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error502UsersDontMatch.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Error502UsersDontMatch.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply001Welcome.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply001Welcome.js +16 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply002YourHost.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply002YourHost.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply003Created.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply003Created.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply004ServerInfo.d.ts +16 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply004ServerInfo.js +20 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply005Isupport.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply005Isupport.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply221UmodeIs.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply221UmodeIs.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply301Away.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply301Away.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply302UserHost.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply302UserHost.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply305UnAway.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply305UnAway.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply306NowAway.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply306NowAway.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply311WhoisUser.d.ts +16 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply311WhoisUser.js +18 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply315EndOfWho.d.ts +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply315EndOfWho.js +22 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply318EndOfWhois.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply318EndOfWhois.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply319WhoisChannels.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply319WhoisChannels.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply322List.d.ts +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply322List.js +16 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply323ListEnd.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply323ListEnd.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply324ChannelModeIs.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply324ChannelModeIs.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply331NoTopic.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply331NoTopic.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply332Topic.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply332Topic.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply333TopicWhoTime.d.ts +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply333TopicWhoTime.js +16 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply341Inviting.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply341Inviting.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply348ExceptList.d.ts +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply348ExceptList.js +17 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply349EndOfExceptList.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply349EndOfExceptList.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply352WhoReply.d.ts +31 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply352WhoReply.js +42 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply353NamesReply.d.ts +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply353NamesReply.js +20 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply366EndOfNames.d.ts +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply366EndOfNames.js +22 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply367BanList.d.ts +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply367BanList.js +17 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply368EndOfBanList.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply368EndOfBanList.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply372Motd.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply372Motd.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply375MotdStart.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply375MotdStart.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply376EndOfMotd.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply376EndOfMotd.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply381YoureOper.d.ts +12 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply381YoureOper.js +14 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply391Time.d.ts +13 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/Reply391Time.js +15 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/index.d.ts +62 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/Numerics/index.js +128 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/index.d.ts +5 -0
- package/node_modules/ircv3/lib/Message/MessageTypes/index.js +8 -0
- package/node_modules/ircv3/lib/ServerProperties.d.ts +18 -0
- package/node_modules/ircv3/lib/ServerProperties.js +25 -0
- package/node_modules/ircv3/lib/Toolkit/StringTools.d.ts +7 -0
- package/node_modules/ircv3/lib/Toolkit/StringTools.js +46 -0
- package/node_modules/ircv3/lib/index.d.ts +20 -0
- package/node_modules/ircv3/lib/index.js +34 -0
- package/node_modules/ircv3/package.json +67 -0
- package/node_modules/klona/dist/index.js +83 -0
- package/node_modules/klona/dist/index.min.js +1 -0
- package/node_modules/klona/dist/index.mjs +81 -0
- package/node_modules/klona/full/index.d.ts +1 -0
- package/node_modules/klona/full/index.js +55 -0
- package/node_modules/klona/full/index.min.js +1 -0
- package/node_modules/klona/full/index.mjs +53 -0
- package/node_modules/klona/index.d.ts +1 -0
- package/node_modules/klona/json/index.d.ts +1 -0
- package/node_modules/klona/json/index.js +30 -0
- package/node_modules/klona/json/index.min.js +1 -0
- package/node_modules/klona/json/index.mjs +28 -0
- package/node_modules/klona/license +9 -0
- package/node_modules/klona/lite/index.d.ts +1 -0
- package/node_modules/klona/lite/index.js +53 -0
- package/node_modules/klona/lite/index.min.js +1 -0
- package/node_modules/klona/lite/index.mjs +51 -0
- package/node_modules/klona/package.json +74 -0
- package/node_modules/klona/readme.md +213 -0
- package/node_modules/retry/License +21 -0
- package/node_modules/retry/README.md +227 -0
- package/node_modules/retry/example/dns.js +31 -0
- package/node_modules/retry/example/stop.js +40 -0
- package/node_modules/retry/index.js +1 -0
- package/node_modules/retry/lib/retry.js +100 -0
- package/node_modules/retry/lib/retry_operation.js +162 -0
- package/node_modules/retry/package.json +36 -0
- package/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/tslib/README.md +164 -0
- package/node_modules/tslib/SECURITY.md +41 -0
- package/node_modules/tslib/modules/index.d.ts +38 -0
- package/node_modules/tslib/modules/index.js +70 -0
- package/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/tslib/package.json +47 -0
- package/node_modules/tslib/tslib.d.ts +460 -0
- package/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/tslib/tslib.es6.js +402 -0
- package/node_modules/tslib/tslib.es6.mjs +401 -0
- package/node_modules/tslib/tslib.html +1 -0
- package/node_modules/tslib/tslib.js +484 -0
- package/node_modules/undici-types/LICENSE +21 -0
- package/node_modules/undici-types/README.md +6 -0
- package/node_modules/undici-types/agent.d.ts +31 -0
- package/node_modules/undici-types/api.d.ts +43 -0
- package/node_modules/undici-types/balanced-pool.d.ts +29 -0
- package/node_modules/undici-types/cache.d.ts +36 -0
- package/node_modules/undici-types/client.d.ts +108 -0
- package/node_modules/undici-types/connector.d.ts +34 -0
- package/node_modules/undici-types/content-type.d.ts +21 -0
- package/node_modules/undici-types/cookies.d.ts +28 -0
- package/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
- package/node_modules/undici-types/dispatcher.d.ts +256 -0
- package/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
- package/node_modules/undici-types/errors.d.ts +149 -0
- package/node_modules/undici-types/eventsource.d.ts +61 -0
- package/node_modules/undici-types/fetch.d.ts +209 -0
- package/node_modules/undici-types/file.d.ts +39 -0
- package/node_modules/undici-types/filereader.d.ts +54 -0
- package/node_modules/undici-types/formdata.d.ts +108 -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/handlers.d.ts +15 -0
- package/node_modules/undici-types/header.d.ts +4 -0
- package/node_modules/undici-types/index.d.ts +71 -0
- package/node_modules/undici-types/interceptors.d.ts +17 -0
- package/node_modules/undici-types/mock-agent.d.ts +50 -0
- package/node_modules/undici-types/mock-client.d.ts +25 -0
- package/node_modules/undici-types/mock-errors.d.ts +12 -0
- package/node_modules/undici-types/mock-interceptor.d.ts +93 -0
- package/node_modules/undici-types/mock-pool.d.ts +25 -0
- package/node_modules/undici-types/package.json +55 -0
- package/node_modules/undici-types/patch.d.ts +33 -0
- package/node_modules/undici-types/pool-stats.d.ts +19 -0
- package/node_modules/undici-types/pool.d.ts +39 -0
- package/node_modules/undici-types/proxy-agent.d.ts +28 -0
- package/node_modules/undici-types/readable.d.ts +65 -0
- package/node_modules/undici-types/retry-agent.d.ts +8 -0
- package/node_modules/undici-types/retry-handler.d.ts +116 -0
- package/node_modules/undici-types/util.d.ts +18 -0
- package/node_modules/undici-types/webidl.d.ts +228 -0
- package/node_modules/undici-types/websocket.d.ts +150 -0
- package/node_modules/ws/LICENSE +20 -0
- package/node_modules/ws/README.md +548 -0
- package/node_modules/ws/browser.js +8 -0
- package/node_modules/ws/index.js +22 -0
- package/node_modules/ws/lib/buffer-util.js +131 -0
- package/node_modules/ws/lib/constants.js +19 -0
- package/node_modules/ws/lib/event-target.js +292 -0
- package/node_modules/ws/lib/extension.js +203 -0
- package/node_modules/ws/lib/limiter.js +55 -0
- package/node_modules/ws/lib/permessage-deflate.js +528 -0
- package/node_modules/ws/lib/receiver.js +706 -0
- package/node_modules/ws/lib/sender.js +607 -0
- package/node_modules/ws/lib/stream.js +161 -0
- package/node_modules/ws/lib/subprotocol.js +62 -0
- package/node_modules/ws/lib/validation.js +152 -0
- package/node_modules/ws/lib/websocket-server.js +554 -0
- package/node_modules/ws/lib/websocket.js +1393 -0
- package/node_modules/ws/package.json +70 -0
- package/node_modules/ws/wrapper.mjs +21 -0
- package/node_modules/zod/LICENSE +21 -0
- package/node_modules/zod/README.md +191 -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/locales/index.cjs +17 -0
- package/node_modules/zod/locales/index.d.cts +1 -0
- package/node_modules/zod/locales/index.d.ts +1 -0
- package/node_modules/zod/locales/index.js +1 -0
- package/node_modules/zod/locales/package.json +7 -0
- package/node_modules/zod/mini/index.cjs +32 -0
- package/node_modules/zod/mini/index.d.cts +3 -0
- package/node_modules/zod/mini/index.d.ts +3 -0
- package/node_modules/zod/mini/index.js +3 -0
- package/node_modules/zod/mini/package.json +7 -0
- package/node_modules/zod/package.json +135 -0
- package/node_modules/zod/src/index.ts +4 -0
- package/node_modules/zod/src/locales/index.ts +1 -0
- package/node_modules/zod/src/mini/index.ts +3 -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 +70 -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 +261 -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 +24 -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 +5138 -0
- package/node_modules/zod/src/v4/classic/checks.ts +32 -0
- package/node_modules/zod/src/v4/classic/coerce.ts +27 -0
- package/node_modules/zod/src/v4/classic/compat.ts +70 -0
- package/node_modules/zod/src/v4/classic/errors.ts +82 -0
- package/node_modules/zod/src/v4/classic/external.ts +52 -0
- package/node_modules/zod/src/v4/classic/from-json-schema.ts +659 -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 +82 -0
- package/node_modules/zod/src/v4/classic/schemas.ts +2672 -0
- package/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
- package/node_modules/zod/src/v4/classic/tests/apply.test.ts +59 -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 +216 -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 +106 -0
- package/node_modules/zod/src/v4/classic/tests/catch.test.ts +326 -0
- package/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
- package/node_modules/zod/src/v4/classic/tests/codec-examples.test.ts +573 -0
- package/node_modules/zod/src/v4/classic/tests/codec.test.ts +703 -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 +374 -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 +62 -0
- package/node_modules/zod/src/v4/classic/tests/datetime.test.ts +302 -0
- package/node_modules/zod/src/v4/classic/tests/default.test.ts +409 -0
- package/node_modules/zod/src/v4/classic/tests/describe-meta-checks.test.ts +27 -0
- package/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
- package/node_modules/zod/src/v4/classic/tests/detached-methods.test.ts +197 -0
- package/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +694 -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 +807 -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 +96 -0
- package/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +179 -0
- package/node_modules/zod/src/v4/classic/tests/fix-json-issue.test.ts +26 -0
- package/node_modules/zod/src/v4/classic/tests/from-json-schema.test.ts +895 -0
- package/node_modules/zod/src/v4/classic/tests/function.test.ts +360 -0
- package/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
- package/node_modules/zod/src/v4/classic/tests/global-config.test.ts +39 -0
- package/node_modules/zod/src/v4/classic/tests/hash.test.ts +68 -0
- package/node_modules/zod/src/v4/classic/tests/index.test.ts +939 -0
- package/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +60 -0
- package/node_modules/zod/src/v4/classic/tests/intersection.test.ts +198 -0
- package/node_modules/zod/src/v4/classic/tests/jitless-allows-eval.test.ts +46 -0
- package/node_modules/zod/src/v4/classic/tests/json.test.ts +109 -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 +117 -0
- package/node_modules/zod/src/v4/classic/tests/locales_ka.test.ts +29 -0
- package/node_modules/zod/src/v4/classic/tests/locales_ro.test.ts +24 -0
- package/node_modules/zod/src/v4/classic/tests/map.test.ts +330 -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 +101 -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 +325 -0
- package/node_modules/zod/src/v4/classic/tests/object.test.ts +717 -0
- package/node_modules/zod/src/v4/classic/tests/optional.test.ts +333 -0
- package/node_modules/zod/src/v4/classic/tests/partial.test.ts +450 -0
- package/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +211 -0
- package/node_modules/zod/src/v4/classic/tests/pipe.test.ts +101 -0
- package/node_modules/zod/src/v4/classic/tests/prefault.test.ts +74 -0
- package/node_modules/zod/src/v4/classic/tests/preprocess-types.test.ts +26 -0
- package/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +351 -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 +717 -0
- package/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +631 -0
- package/node_modules/zod/src/v4/classic/tests/refine.test.ts +633 -0
- package/node_modules/zod/src/v4/classic/tests/registries.test.ts +243 -0
- package/node_modules/zod/src/v4/classic/tests/set.test.ts +181 -0
- package/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +134 -0
- package/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +125 -0
- package/node_modules/zod/src/v4/classic/tests/string.test.ts +1224 -0
- package/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +106 -0
- package/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +771 -0
- package/node_modules/zod/src/v4/classic/tests/to-json-schema-methods.test.ts +438 -0
- package/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +3125 -0
- package/node_modules/zod/src/v4/classic/tests/transform.test.ts +378 -0
- package/node_modules/zod/src/v4/classic/tests/tuple.test.ts +496 -0
- package/node_modules/zod/src/v4/classic/tests/union.test.ts +273 -0
- package/node_modules/zod/src/v4/classic/tests/url.test.ts +13 -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 +1823 -0
- package/node_modules/zod/src/v4/core/checks.ts +1293 -0
- package/node_modules/zod/src/v4/core/config.ts +15 -0
- package/node_modules/zod/src/v4/core/core.ts +153 -0
- package/node_modules/zod/src/v4/core/doc.ts +44 -0
- package/node_modules/zod/src/v4/core/errors.ts +455 -0
- package/node_modules/zod/src/v4/core/index.ts +16 -0
- package/node_modules/zod/src/v4/core/json-schema-generator.ts +126 -0
- package/node_modules/zod/src/v4/core/json-schema-processors.ts +666 -0
- package/node_modules/zod/src/v4/core/json-schema.ts +147 -0
- package/node_modules/zod/src/v4/core/parse.ts +195 -0
- package/node_modules/zod/src/v4/core/regexes.ts +190 -0
- package/node_modules/zod/src/v4/core/registries.ts +105 -0
- package/node_modules/zod/src/v4/core/schemas.ts +4730 -0
- package/node_modules/zod/src/v4/core/standard-schema.ts +159 -0
- package/node_modules/zod/src/v4/core/tests/extend.test.ts +59 -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/el.test.ts +215 -0
- package/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
- package/node_modules/zod/src/v4/core/tests/locales/es.test.ts +181 -0
- package/node_modules/zod/src/v4/core/tests/locales/fr.test.ts +72 -0
- package/node_modules/zod/src/v4/core/tests/locales/he.test.ts +379 -0
- package/node_modules/zod/src/v4/core/tests/locales/hr.test.ts +163 -0
- package/node_modules/zod/src/v4/core/tests/locales/nl.test.ts +46 -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/tests/locales/uz.test.ts +105 -0
- package/node_modules/zod/src/v4/core/tests/record-constructor.test.ts +125 -0
- package/node_modules/zod/src/v4/core/tests/recursive-tuples.test.ts +45 -0
- package/node_modules/zod/src/v4/core/to-json-schema.ts +622 -0
- package/node_modules/zod/src/v4/core/util.ts +983 -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 +115 -0
- package/node_modules/zod/src/v4/locales/az.ts +111 -0
- package/node_modules/zod/src/v4/locales/be.ts +176 -0
- package/node_modules/zod/src/v4/locales/bg.ts +128 -0
- package/node_modules/zod/src/v4/locales/ca.ts +116 -0
- package/node_modules/zod/src/v4/locales/cs.ts +118 -0
- package/node_modules/zod/src/v4/locales/da.ts +123 -0
- package/node_modules/zod/src/v4/locales/de.ts +116 -0
- package/node_modules/zod/src/v4/locales/el.ts +121 -0
- package/node_modules/zod/src/v4/locales/en.ts +123 -0
- package/node_modules/zod/src/v4/locales/eo.ts +118 -0
- package/node_modules/zod/src/v4/locales/es.ts +141 -0
- package/node_modules/zod/src/v4/locales/fa.ts +126 -0
- package/node_modules/zod/src/v4/locales/fi.ts +121 -0
- package/node_modules/zod/src/v4/locales/fr-CA.ts +116 -0
- package/node_modules/zod/src/v4/locales/fr.ts +132 -0
- package/node_modules/zod/src/v4/locales/he.ts +246 -0
- package/node_modules/zod/src/v4/locales/hr.ts +131 -0
- package/node_modules/zod/src/v4/locales/hu.ts +117 -0
- package/node_modules/zod/src/v4/locales/hy.ts +164 -0
- package/node_modules/zod/src/v4/locales/id.ts +115 -0
- package/node_modules/zod/src/v4/locales/index.ts +52 -0
- package/node_modules/zod/src/v4/locales/is.ts +119 -0
- package/node_modules/zod/src/v4/locales/it.ts +116 -0
- package/node_modules/zod/src/v4/locales/ja.ts +114 -0
- package/node_modules/zod/src/v4/locales/ka.ts +123 -0
- package/node_modules/zod/src/v4/locales/kh.ts +7 -0
- package/node_modules/zod/src/v4/locales/km.ts +119 -0
- package/node_modules/zod/src/v4/locales/ko.ts +121 -0
- package/node_modules/zod/src/v4/locales/lt.ts +239 -0
- package/node_modules/zod/src/v4/locales/mk.ts +118 -0
- package/node_modules/zod/src/v4/locales/ms.ts +115 -0
- package/node_modules/zod/src/v4/locales/nl.ts +121 -0
- package/node_modules/zod/src/v4/locales/no.ts +116 -0
- package/node_modules/zod/src/v4/locales/ota.ts +117 -0
- package/node_modules/zod/src/v4/locales/pl.ts +118 -0
- package/node_modules/zod/src/v4/locales/ps.ts +126 -0
- package/node_modules/zod/src/v4/locales/pt.ts +116 -0
- package/node_modules/zod/src/v4/locales/ro.ts +129 -0
- package/node_modules/zod/src/v4/locales/ru.ts +176 -0
- package/node_modules/zod/src/v4/locales/sl.ts +118 -0
- package/node_modules/zod/src/v4/locales/sv.ts +119 -0
- package/node_modules/zod/src/v4/locales/ta.ts +118 -0
- package/node_modules/zod/src/v4/locales/th.ts +119 -0
- package/node_modules/zod/src/v4/locales/tr.ts +111 -0
- package/node_modules/zod/src/v4/locales/ua.ts +7 -0
- package/node_modules/zod/src/v4/locales/uk.ts +117 -0
- package/node_modules/zod/src/v4/locales/ur.ts +119 -0
- package/node_modules/zod/src/v4/locales/uz.ts +117 -0
- package/node_modules/zod/src/v4/locales/vi.ts +117 -0
- package/node_modules/zod/src/v4/locales/yo.ts +124 -0
- package/node_modules/zod/src/v4/locales/zh-CN.ts +116 -0
- package/node_modules/zod/src/v4/locales/zh-TW.ts +115 -0
- package/node_modules/zod/src/v4/mini/checks.ts +32 -0
- package/node_modules/zod/src/v4/mini/coerce.ts +27 -0
- package/node_modules/zod/src/v4/mini/external.ts +41 -0
- package/node_modules/zod/src/v4/mini/index.ts +3 -0
- package/node_modules/zod/src/v4/mini/iso.ts +66 -0
- package/node_modules/zod/src/v4/mini/parse.ts +14 -0
- package/node_modules/zod/src/v4/mini/schemas.ts +1947 -0
- package/node_modules/zod/src/v4/mini/tests/apply.test.ts +24 -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 +94 -0
- package/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
- package/node_modules/zod/src/v4/mini/tests/codec.test.ts +548 -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 +5 -0
- package/node_modules/zod/src/v4/mini/tests/index.test.ts +993 -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 +227 -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 +325 -0
- package/node_modules/zod/src/v4/mini/tests/standard-schema.test.ts +50 -0
- package/node_modules/zod/src/v4/mini/tests/string.test.ts +352 -0
- package/node_modules/zod/src/v4-mini/index.ts +3 -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 +112 -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/package.json +7 -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 +3777 -0
- package/node_modules/zod/v3/types.d.cts +1034 -0
- package/node_modules/zod/v3/types.d.ts +1034 -0
- package/node_modules/zod/v3/types.js +3695 -0
- package/node_modules/zod/v4/classic/checks.cjs +33 -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 +61 -0
- package/node_modules/zod/v4/classic/compat.d.cts +50 -0
- package/node_modules/zod/v4/classic/compat.d.ts +50 -0
- package/node_modules/zod/v4/classic/compat.js +31 -0
- package/node_modules/zod/v4/classic/errors.cjs +74 -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 +48 -0
- package/node_modules/zod/v4/classic/external.cjs +73 -0
- package/node_modules/zod/v4/classic/external.d.cts +16 -0
- package/node_modules/zod/v4/classic/external.d.ts +16 -0
- package/node_modules/zod/v4/classic/external.js +20 -0
- package/node_modules/zod/v4/classic/from-json-schema.cjs +625 -0
- package/node_modules/zod/v4/classic/from-json-schema.d.cts +12 -0
- package/node_modules/zod/v4/classic/from-json-schema.d.ts +12 -0
- package/node_modules/zod/v4/classic/from-json-schema.js +599 -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/package.json +7 -0
- package/node_modules/zod/v4/classic/parse.cjs +41 -0
- package/node_modules/zod/v4/classic/parse.d.cts +31 -0
- package/node_modules/zod/v4/classic/parse.d.ts +31 -0
- package/node_modules/zod/v4/classic/parse.js +15 -0
- package/node_modules/zod/v4/classic/schemas.cjs +1511 -0
- package/node_modules/zod/v4/classic/schemas.d.cts +767 -0
- package/node_modules/zod/v4/classic/schemas.d.ts +767 -0
- package/node_modules/zod/v4/classic/schemas.js +1395 -0
- package/node_modules/zod/v4/core/api.cjs +1227 -0
- package/node_modules/zod/v4/core/api.d.cts +325 -0
- package/node_modules/zod/v4/core/api.d.ts +325 -0
- package/node_modules/zod/v4/core/api.js +1087 -0
- package/node_modules/zod/v4/core/checks.cjs +601 -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 +575 -0
- package/node_modules/zod/v4/core/core.cjs +85 -0
- package/node_modules/zod/v4/core/core.d.cts +70 -0
- package/node_modules/zod/v4/core/core.d.ts +70 -0
- package/node_modules/zod/v4/core/core.js +78 -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 +216 -0
- package/node_modules/zod/v4/core/errors.d.cts +221 -0
- package/node_modules/zod/v4/core/errors.d.ts +221 -0
- package/node_modules/zod/v4/core/errors.js +185 -0
- package/node_modules/zod/v4/core/index.cjs +47 -0
- package/node_modules/zod/v4/core/index.d.cts +16 -0
- package/node_modules/zod/v4/core/index.d.ts +16 -0
- package/node_modules/zod/v4/core/index.js +16 -0
- package/node_modules/zod/v4/core/json-schema-generator.cjs +99 -0
- package/node_modules/zod/v4/core/json-schema-generator.d.cts +65 -0
- package/node_modules/zod/v4/core/json-schema-generator.d.ts +65 -0
- package/node_modules/zod/v4/core/json-schema-generator.js +95 -0
- package/node_modules/zod/v4/core/json-schema-processors.cjs +644 -0
- package/node_modules/zod/v4/core/json-schema-processors.d.cts +49 -0
- package/node_modules/zod/v4/core/json-schema-processors.d.ts +49 -0
- package/node_modules/zod/v4/core/json-schema-processors.js +601 -0
- package/node_modules/zod/v4/core/json-schema.cjs +2 -0
- package/node_modules/zod/v4/core/json-schema.d.cts +88 -0
- package/node_modules/zod/v4/core/json-schema.d.ts +88 -0
- package/node_modules/zod/v4/core/json-schema.js +1 -0
- package/node_modules/zod/v4/core/package.json +7 -0
- package/node_modules/zod/v4/core/parse.cjs +131 -0
- package/node_modules/zod/v4/core/parse.d.cts +49 -0
- package/node_modules/zod/v4/core/parse.d.ts +49 -0
- package/node_modules/zod/v4/core/parse.js +93 -0
- package/node_modules/zod/v4/core/regexes.cjs +172 -0
- package/node_modules/zod/v4/core/regexes.d.cts +85 -0
- package/node_modules/zod/v4/core/regexes.d.ts +85 -0
- package/node_modules/zod/v4/core/regexes.js +139 -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 +2270 -0
- package/node_modules/zod/v4/core/schemas.d.cts +1184 -0
- package/node_modules/zod/v4/core/schemas.d.ts +1184 -0
- package/node_modules/zod/v4/core/schemas.js +2239 -0
- package/node_modules/zod/v4/core/standard-schema.cjs +2 -0
- package/node_modules/zod/v4/core/standard-schema.d.cts +126 -0
- package/node_modules/zod/v4/core/standard-schema.d.ts +126 -0
- package/node_modules/zod/v4/core/standard-schema.js +1 -0
- package/node_modules/zod/v4/core/to-json-schema.cjs +457 -0
- package/node_modules/zod/v4/core/to-json-schema.d.cts +114 -0
- package/node_modules/zod/v4/core/to-json-schema.d.ts +114 -0
- package/node_modules/zod/v4/core/to-json-schema.js +448 -0
- package/node_modules/zod/v4/core/util.cjs +734 -0
- package/node_modules/zod/v4/core/util.d.cts +200 -0
- package/node_modules/zod/v4/core/util.d.ts +200 -0
- package/node_modules/zod/v4/core/util.js +674 -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 +133 -0
- package/node_modules/zod/v4/locales/ar.d.cts +5 -0
- package/node_modules/zod/v4/locales/ar.d.ts +4 -0
- package/node_modules/zod/v4/locales/ar.js +106 -0
- package/node_modules/zod/v4/locales/az.cjs +132 -0
- package/node_modules/zod/v4/locales/az.d.cts +5 -0
- package/node_modules/zod/v4/locales/az.d.ts +4 -0
- package/node_modules/zod/v4/locales/az.js +105 -0
- package/node_modules/zod/v4/locales/be.cjs +183 -0
- package/node_modules/zod/v4/locales/be.d.cts +5 -0
- package/node_modules/zod/v4/locales/be.d.ts +4 -0
- package/node_modules/zod/v4/locales/be.js +156 -0
- package/node_modules/zod/v4/locales/bg.cjs +147 -0
- package/node_modules/zod/v4/locales/bg.d.cts +5 -0
- package/node_modules/zod/v4/locales/bg.d.ts +4 -0
- package/node_modules/zod/v4/locales/bg.js +120 -0
- package/node_modules/zod/v4/locales/ca.cjs +134 -0
- package/node_modules/zod/v4/locales/ca.d.cts +5 -0
- package/node_modules/zod/v4/locales/ca.d.ts +4 -0
- package/node_modules/zod/v4/locales/ca.js +107 -0
- package/node_modules/zod/v4/locales/cs.cjs +138 -0
- package/node_modules/zod/v4/locales/cs.d.cts +5 -0
- package/node_modules/zod/v4/locales/cs.d.ts +4 -0
- package/node_modules/zod/v4/locales/cs.js +111 -0
- package/node_modules/zod/v4/locales/da.cjs +142 -0
- package/node_modules/zod/v4/locales/da.d.cts +5 -0
- package/node_modules/zod/v4/locales/da.d.ts +4 -0
- package/node_modules/zod/v4/locales/da.js +115 -0
- package/node_modules/zod/v4/locales/de.cjs +135 -0
- package/node_modules/zod/v4/locales/de.d.cts +5 -0
- package/node_modules/zod/v4/locales/de.d.ts +4 -0
- package/node_modules/zod/v4/locales/de.js +108 -0
- package/node_modules/zod/v4/locales/el.cjs +136 -0
- package/node_modules/zod/v4/locales/el.d.cts +5 -0
- package/node_modules/zod/v4/locales/el.d.ts +4 -0
- package/node_modules/zod/v4/locales/el.js +109 -0
- package/node_modules/zod/v4/locales/en.cjs +140 -0
- package/node_modules/zod/v4/locales/en.d.cts +5 -0
- package/node_modules/zod/v4/locales/en.d.ts +4 -0
- package/node_modules/zod/v4/locales/en.js +113 -0
- package/node_modules/zod/v4/locales/eo.cjs +136 -0
- package/node_modules/zod/v4/locales/eo.d.cts +5 -0
- package/node_modules/zod/v4/locales/eo.d.ts +4 -0
- package/node_modules/zod/v4/locales/eo.js +109 -0
- package/node_modules/zod/v4/locales/es.cjs +159 -0
- package/node_modules/zod/v4/locales/es.d.cts +5 -0
- package/node_modules/zod/v4/locales/es.d.ts +4 -0
- package/node_modules/zod/v4/locales/es.js +132 -0
- package/node_modules/zod/v4/locales/fa.cjs +141 -0
- package/node_modules/zod/v4/locales/fa.d.cts +5 -0
- package/node_modules/zod/v4/locales/fa.d.ts +4 -0
- package/node_modules/zod/v4/locales/fa.js +114 -0
- package/node_modules/zod/v4/locales/fi.cjs +139 -0
- package/node_modules/zod/v4/locales/fi.d.cts +5 -0
- package/node_modules/zod/v4/locales/fi.d.ts +4 -0
- package/node_modules/zod/v4/locales/fi.js +112 -0
- package/node_modules/zod/v4/locales/fr-CA.cjs +134 -0
- package/node_modules/zod/v4/locales/fr-CA.d.cts +5 -0
- package/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
- package/node_modules/zod/v4/locales/fr-CA.js +107 -0
- package/node_modules/zod/v4/locales/fr.cjs +152 -0
- package/node_modules/zod/v4/locales/fr.d.cts +5 -0
- package/node_modules/zod/v4/locales/fr.d.ts +4 -0
- package/node_modules/zod/v4/locales/fr.js +125 -0
- package/node_modules/zod/v4/locales/he.cjs +241 -0
- package/node_modules/zod/v4/locales/he.d.cts +5 -0
- package/node_modules/zod/v4/locales/he.d.ts +4 -0
- package/node_modules/zod/v4/locales/he.js +214 -0
- package/node_modules/zod/v4/locales/hr.cjs +149 -0
- package/node_modules/zod/v4/locales/hr.d.cts +5 -0
- package/node_modules/zod/v4/locales/hr.d.ts +4 -0
- package/node_modules/zod/v4/locales/hr.js +122 -0
- package/node_modules/zod/v4/locales/hu.cjs +135 -0
- package/node_modules/zod/v4/locales/hu.d.cts +5 -0
- package/node_modules/zod/v4/locales/hu.d.ts +4 -0
- package/node_modules/zod/v4/locales/hu.js +108 -0
- package/node_modules/zod/v4/locales/hy.cjs +174 -0
- package/node_modules/zod/v4/locales/hy.d.cts +5 -0
- package/node_modules/zod/v4/locales/hy.d.ts +4 -0
- package/node_modules/zod/v4/locales/hy.js +147 -0
- package/node_modules/zod/v4/locales/id.cjs +133 -0
- package/node_modules/zod/v4/locales/id.d.cts +5 -0
- package/node_modules/zod/v4/locales/id.d.ts +4 -0
- package/node_modules/zod/v4/locales/id.js +106 -0
- package/node_modules/zod/v4/locales/index.cjs +111 -0
- package/node_modules/zod/v4/locales/index.d.cts +52 -0
- package/node_modules/zod/v4/locales/index.d.ts +52 -0
- package/node_modules/zod/v4/locales/index.js +52 -0
- package/node_modules/zod/v4/locales/is.cjs +136 -0
- package/node_modules/zod/v4/locales/is.d.cts +5 -0
- package/node_modules/zod/v4/locales/is.d.ts +4 -0
- package/node_modules/zod/v4/locales/is.js +109 -0
- package/node_modules/zod/v4/locales/it.cjs +135 -0
- package/node_modules/zod/v4/locales/it.d.cts +5 -0
- package/node_modules/zod/v4/locales/it.d.ts +4 -0
- package/node_modules/zod/v4/locales/it.js +108 -0
- package/node_modules/zod/v4/locales/ja.cjs +134 -0
- package/node_modules/zod/v4/locales/ja.d.cts +5 -0
- package/node_modules/zod/v4/locales/ja.d.ts +4 -0
- package/node_modules/zod/v4/locales/ja.js +107 -0
- package/node_modules/zod/v4/locales/ka.cjs +139 -0
- package/node_modules/zod/v4/locales/ka.d.cts +5 -0
- package/node_modules/zod/v4/locales/ka.d.ts +4 -0
- package/node_modules/zod/v4/locales/ka.js +112 -0
- package/node_modules/zod/v4/locales/kh.cjs +12 -0
- package/node_modules/zod/v4/locales/kh.d.cts +5 -0
- package/node_modules/zod/v4/locales/kh.d.ts +5 -0
- package/node_modules/zod/v4/locales/kh.js +5 -0
- package/node_modules/zod/v4/locales/km.cjs +137 -0
- package/node_modules/zod/v4/locales/km.d.cts +5 -0
- package/node_modules/zod/v4/locales/km.d.ts +4 -0
- package/node_modules/zod/v4/locales/km.js +110 -0
- package/node_modules/zod/v4/locales/ko.cjs +138 -0
- package/node_modules/zod/v4/locales/ko.d.cts +5 -0
- package/node_modules/zod/v4/locales/ko.d.ts +4 -0
- package/node_modules/zod/v4/locales/ko.js +111 -0
- package/node_modules/zod/v4/locales/lt.cjs +230 -0
- package/node_modules/zod/v4/locales/lt.d.cts +5 -0
- package/node_modules/zod/v4/locales/lt.d.ts +4 -0
- package/node_modules/zod/v4/locales/lt.js +203 -0
- package/node_modules/zod/v4/locales/mk.cjs +136 -0
- package/node_modules/zod/v4/locales/mk.d.cts +5 -0
- package/node_modules/zod/v4/locales/mk.d.ts +4 -0
- package/node_modules/zod/v4/locales/mk.js +109 -0
- package/node_modules/zod/v4/locales/ms.cjs +134 -0
- package/node_modules/zod/v4/locales/ms.d.cts +5 -0
- package/node_modules/zod/v4/locales/ms.d.ts +4 -0
- package/node_modules/zod/v4/locales/ms.js +107 -0
- package/node_modules/zod/v4/locales/nl.cjs +137 -0
- package/node_modules/zod/v4/locales/nl.d.cts +5 -0
- package/node_modules/zod/v4/locales/nl.d.ts +4 -0
- package/node_modules/zod/v4/locales/nl.js +110 -0
- package/node_modules/zod/v4/locales/no.cjs +135 -0
- package/node_modules/zod/v4/locales/no.d.cts +5 -0
- package/node_modules/zod/v4/locales/no.d.ts +4 -0
- package/node_modules/zod/v4/locales/no.js +108 -0
- package/node_modules/zod/v4/locales/ota.cjs +136 -0
- package/node_modules/zod/v4/locales/ota.d.cts +5 -0
- package/node_modules/zod/v4/locales/ota.d.ts +4 -0
- package/node_modules/zod/v4/locales/ota.js +109 -0
- package/node_modules/zod/v4/locales/package.json +7 -0
- package/node_modules/zod/v4/locales/pl.cjs +136 -0
- package/node_modules/zod/v4/locales/pl.d.cts +5 -0
- package/node_modules/zod/v4/locales/pl.d.ts +4 -0
- package/node_modules/zod/v4/locales/pl.js +109 -0
- package/node_modules/zod/v4/locales/ps.cjs +141 -0
- package/node_modules/zod/v4/locales/ps.d.cts +5 -0
- package/node_modules/zod/v4/locales/ps.d.ts +4 -0
- package/node_modules/zod/v4/locales/ps.js +114 -0
- package/node_modules/zod/v4/locales/pt.cjs +135 -0
- package/node_modules/zod/v4/locales/pt.d.cts +5 -0
- package/node_modules/zod/v4/locales/pt.d.ts +4 -0
- package/node_modules/zod/v4/locales/pt.js +108 -0
- package/node_modules/zod/v4/locales/ro.cjs +146 -0
- package/node_modules/zod/v4/locales/ro.d.cts +5 -0
- package/node_modules/zod/v4/locales/ro.d.ts +4 -0
- package/node_modules/zod/v4/locales/ro.js +119 -0
- package/node_modules/zod/v4/locales/ru.cjs +183 -0
- package/node_modules/zod/v4/locales/ru.d.cts +5 -0
- package/node_modules/zod/v4/locales/ru.d.ts +4 -0
- package/node_modules/zod/v4/locales/ru.js +156 -0
- package/node_modules/zod/v4/locales/sl.cjs +136 -0
- package/node_modules/zod/v4/locales/sl.d.cts +5 -0
- package/node_modules/zod/v4/locales/sl.d.ts +4 -0
- package/node_modules/zod/v4/locales/sl.js +109 -0
- package/node_modules/zod/v4/locales/sv.cjs +137 -0
- package/node_modules/zod/v4/locales/sv.d.cts +5 -0
- package/node_modules/zod/v4/locales/sv.d.ts +4 -0
- package/node_modules/zod/v4/locales/sv.js +110 -0
- package/node_modules/zod/v4/locales/ta.cjs +137 -0
- package/node_modules/zod/v4/locales/ta.d.cts +5 -0
- package/node_modules/zod/v4/locales/ta.d.ts +4 -0
- package/node_modules/zod/v4/locales/ta.js +110 -0
- package/node_modules/zod/v4/locales/th.cjs +137 -0
- package/node_modules/zod/v4/locales/th.d.cts +5 -0
- package/node_modules/zod/v4/locales/th.d.ts +4 -0
- package/node_modules/zod/v4/locales/th.js +110 -0
- package/node_modules/zod/v4/locales/tr.cjs +132 -0
- package/node_modules/zod/v4/locales/tr.d.cts +5 -0
- package/node_modules/zod/v4/locales/tr.d.ts +4 -0
- package/node_modules/zod/v4/locales/tr.js +105 -0
- package/node_modules/zod/v4/locales/ua.cjs +12 -0
- package/node_modules/zod/v4/locales/ua.d.cts +5 -0
- package/node_modules/zod/v4/locales/ua.d.ts +5 -0
- package/node_modules/zod/v4/locales/ua.js +5 -0
- package/node_modules/zod/v4/locales/uk.cjs +135 -0
- package/node_modules/zod/v4/locales/uk.d.cts +5 -0
- package/node_modules/zod/v4/locales/uk.d.ts +4 -0
- package/node_modules/zod/v4/locales/uk.js +108 -0
- package/node_modules/zod/v4/locales/ur.cjs +137 -0
- package/node_modules/zod/v4/locales/ur.d.cts +5 -0
- package/node_modules/zod/v4/locales/ur.d.ts +4 -0
- package/node_modules/zod/v4/locales/ur.js +110 -0
- package/node_modules/zod/v4/locales/uz.cjs +137 -0
- package/node_modules/zod/v4/locales/uz.d.cts +5 -0
- package/node_modules/zod/v4/locales/uz.d.ts +4 -0
- package/node_modules/zod/v4/locales/uz.js +110 -0
- package/node_modules/zod/v4/locales/vi.cjs +135 -0
- package/node_modules/zod/v4/locales/vi.d.cts +5 -0
- package/node_modules/zod/v4/locales/vi.d.ts +4 -0
- package/node_modules/zod/v4/locales/vi.js +108 -0
- package/node_modules/zod/v4/locales/yo.cjs +134 -0
- package/node_modules/zod/v4/locales/yo.d.cts +5 -0
- package/node_modules/zod/v4/locales/yo.d.ts +4 -0
- package/node_modules/zod/v4/locales/yo.js +107 -0
- package/node_modules/zod/v4/locales/zh-CN.cjs +136 -0
- package/node_modules/zod/v4/locales/zh-CN.d.cts +5 -0
- package/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
- package/node_modules/zod/v4/locales/zh-CN.js +109 -0
- package/node_modules/zod/v4/locales/zh-TW.cjs +134 -0
- package/node_modules/zod/v4/locales/zh-TW.d.cts +5 -0
- package/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
- package/node_modules/zod/v4/locales/zh-TW.js +107 -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 +52 -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 +22 -0
- package/node_modules/zod/v4/mini/external.cjs +63 -0
- package/node_modules/zod/v4/mini/external.d.cts +13 -0
- package/node_modules/zod/v4/mini/external.d.ts +13 -0
- package/node_modules/zod/v4/mini/external.js +14 -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 +64 -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 +34 -0
- package/node_modules/zod/v4/mini/package.json +7 -0
- package/node_modules/zod/v4/mini/parse.cjs +16 -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 +1083 -0
- package/node_modules/zod/v4/mini/schemas.d.cts +445 -0
- package/node_modules/zod/v4/mini/schemas.d.ts +445 -0
- package/node_modules/zod/v4/mini/schemas.js +961 -0
- package/node_modules/zod/v4/package.json +7 -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/package.json +7 -0
- package/npm-shrinkwrap.json +317 -0
- package/package.json +12 -8
|
@@ -0,0 +1,1184 @@
|
|
|
1
|
+
import * as checks from "./checks.cjs";
|
|
2
|
+
import * as core from "./core.cjs";
|
|
3
|
+
import type * as errors from "./errors.cjs";
|
|
4
|
+
import type * as JSONSchema from "./json-schema.cjs";
|
|
5
|
+
import type { StandardSchemaV1 } from "./standard-schema.cjs";
|
|
6
|
+
import type { ProcessParams, ToJSONSchemaContext } from "./to-json-schema.cjs";
|
|
7
|
+
import * as util from "./util.cjs";
|
|
8
|
+
import { version } from "./versions.cjs";
|
|
9
|
+
export interface ParseContext<T extends errors.$ZodIssueBase = never> {
|
|
10
|
+
/** Customize error messages. */
|
|
11
|
+
readonly error?: errors.$ZodErrorMap<T>;
|
|
12
|
+
/** Include the `input` field in issue objects. Default `false`. */
|
|
13
|
+
readonly reportInput?: boolean;
|
|
14
|
+
/** Skip eval-based fast path. Default `false`. */
|
|
15
|
+
readonly jitless?: boolean;
|
|
16
|
+
}
|
|
17
|
+
/** @internal */
|
|
18
|
+
export interface ParseContextInternal<T extends errors.$ZodIssueBase = never> extends ParseContext<T> {
|
|
19
|
+
readonly async?: boolean | undefined;
|
|
20
|
+
readonly direction?: "forward" | "backward";
|
|
21
|
+
readonly skipChecks?: boolean;
|
|
22
|
+
}
|
|
23
|
+
export interface ParsePayload<T = unknown> {
|
|
24
|
+
value: T;
|
|
25
|
+
issues: errors.$ZodRawIssue[];
|
|
26
|
+
/** A way to mark a whole payload as aborted. Used in codecs/pipes. */
|
|
27
|
+
aborted?: boolean;
|
|
28
|
+
/** @internal Marks a value as a fallback that an outer wrapper (e.g.
|
|
29
|
+
* $ZodOptional) may override with its own interpretation when input was
|
|
30
|
+
* undefined. Set by $ZodCatch when catchValue substitutes and by every
|
|
31
|
+
* $ZodTransform invocation. */
|
|
32
|
+
fallback?: boolean | undefined;
|
|
33
|
+
}
|
|
34
|
+
export type CheckFn<T> = (input: ParsePayload<T>) => util.MaybeAsync<void>;
|
|
35
|
+
export interface $ZodTypeDef {
|
|
36
|
+
type: "string" | "number" | "int" | "boolean" | "bigint" | "symbol" | "null" | "undefined" | "void" | "never" | "any" | "unknown" | "date" | "object" | "record" | "file" | "array" | "tuple" | "union" | "intersection" | "map" | "set" | "enum" | "literal" | "nullable" | "optional" | "nonoptional" | "success" | "transform" | "default" | "prefault" | "catch" | "nan" | "pipe" | "readonly" | "template_literal" | "promise" | "lazy" | "function" | "custom";
|
|
37
|
+
error?: errors.$ZodErrorMap<never> | undefined;
|
|
38
|
+
checks?: checks.$ZodCheck<never>[];
|
|
39
|
+
}
|
|
40
|
+
export interface _$ZodTypeInternals {
|
|
41
|
+
/** The `@zod/core` version of this schema */
|
|
42
|
+
version: typeof version;
|
|
43
|
+
/** Schema definition. */
|
|
44
|
+
def: $ZodTypeDef;
|
|
45
|
+
/** @internal Randomly generated ID for this schema. */
|
|
46
|
+
/** @internal List of deferred initializers. */
|
|
47
|
+
deferred: util.AnyFunc[] | undefined;
|
|
48
|
+
/** @internal Parses input and runs all checks (refinements). */
|
|
49
|
+
run(payload: ParsePayload<any>, ctx: ParseContextInternal): util.MaybeAsync<ParsePayload>;
|
|
50
|
+
/** @internal Parses input, doesn't run checks. */
|
|
51
|
+
parse(payload: ParsePayload<any>, ctx: ParseContextInternal): util.MaybeAsync<ParsePayload>;
|
|
52
|
+
/** @internal Stores identifiers for the set of traits implemented by this schema. */
|
|
53
|
+
traits: Set<string>;
|
|
54
|
+
/** @internal Indicates that a schema output type should be considered optional inside objects.
|
|
55
|
+
* @default Required
|
|
56
|
+
*/
|
|
57
|
+
/** @internal */
|
|
58
|
+
optin?: "optional" | undefined;
|
|
59
|
+
/** @internal */
|
|
60
|
+
optout?: "optional" | undefined;
|
|
61
|
+
/** @internal The set of literal values that will pass validation. Must be an exhaustive set. Used to determine optionality in z.record().
|
|
62
|
+
*
|
|
63
|
+
* Defined on: enum, const, literal, null, undefined
|
|
64
|
+
* Passthrough: optional, nullable, branded, default, catch, pipe
|
|
65
|
+
* Todo: unions?
|
|
66
|
+
*/
|
|
67
|
+
values?: util.PrimitiveSet | undefined;
|
|
68
|
+
/** Default value bubbled up from */
|
|
69
|
+
/** @internal A set of literal discriminators used for the fast path in discriminated unions. */
|
|
70
|
+
propValues?: util.PropValues | undefined;
|
|
71
|
+
/** @internal This flag indicates that a schema validation can be represented with a regular expression. Used to determine allowable schemas in z.templateLiteral(). */
|
|
72
|
+
pattern: RegExp | undefined;
|
|
73
|
+
/** @internal The constructor function of this schema. */
|
|
74
|
+
constr: new (def: any) => $ZodType;
|
|
75
|
+
/** @internal A catchall object for bag metadata related to this schema. Commonly modified by checks using `onattach`. */
|
|
76
|
+
bag: Record<string, unknown>;
|
|
77
|
+
/** @internal The set of issues this schema might throw during type checking. */
|
|
78
|
+
isst: errors.$ZodIssueBase;
|
|
79
|
+
/** @internal Subject to change, not a public API. */
|
|
80
|
+
processJSONSchema?: ((ctx: ToJSONSchemaContext, json: JSONSchema.BaseSchema, params: ProcessParams) => void) | undefined;
|
|
81
|
+
/** An optional method used to override `toJSONSchema` logic. */
|
|
82
|
+
toJSONSchema?: () => unknown;
|
|
83
|
+
/** @internal The parent of this schema. Only set during certain clone operations. */
|
|
84
|
+
parent?: $ZodType | undefined;
|
|
85
|
+
}
|
|
86
|
+
/** @internal */
|
|
87
|
+
export interface $ZodTypeInternals<out O = unknown, out I = unknown> extends _$ZodTypeInternals {
|
|
88
|
+
/** @internal The inferred output type */
|
|
89
|
+
output: O;
|
|
90
|
+
/** @internal The inferred input type */
|
|
91
|
+
input: I;
|
|
92
|
+
}
|
|
93
|
+
export type $ZodStandardSchema<T> = StandardSchemaV1.Props<core.input<T>, core.output<T>>;
|
|
94
|
+
export type SomeType = {
|
|
95
|
+
_zod: _$ZodTypeInternals;
|
|
96
|
+
};
|
|
97
|
+
export interface $ZodType<O = unknown, I = unknown, Internals extends $ZodTypeInternals<O, I> = $ZodTypeInternals<O, I>> {
|
|
98
|
+
_zod: Internals;
|
|
99
|
+
"~standard": $ZodStandardSchema<this>;
|
|
100
|
+
}
|
|
101
|
+
export interface _$ZodType<T extends $ZodTypeInternals = $ZodTypeInternals> extends $ZodType<T["output"], T["input"], T> {
|
|
102
|
+
}
|
|
103
|
+
export declare const $ZodType: core.$constructor<$ZodType>;
|
|
104
|
+
export { clone } from "./util.cjs";
|
|
105
|
+
export interface $ZodStringDef extends $ZodTypeDef {
|
|
106
|
+
type: "string";
|
|
107
|
+
coerce?: boolean;
|
|
108
|
+
checks?: checks.$ZodCheck<string>[];
|
|
109
|
+
}
|
|
110
|
+
export interface $ZodStringInternals<Input> extends $ZodTypeInternals<string, Input> {
|
|
111
|
+
def: $ZodStringDef;
|
|
112
|
+
/** @deprecated Internal API, use with caution (not deprecated) */
|
|
113
|
+
pattern: RegExp;
|
|
114
|
+
/** @deprecated Internal API, use with caution (not deprecated) */
|
|
115
|
+
isst: errors.$ZodIssueInvalidType;
|
|
116
|
+
bag: util.LoosePartial<{
|
|
117
|
+
minimum: number;
|
|
118
|
+
maximum: number;
|
|
119
|
+
patterns: Set<RegExp>;
|
|
120
|
+
format: string;
|
|
121
|
+
contentEncoding: string;
|
|
122
|
+
}>;
|
|
123
|
+
}
|
|
124
|
+
export interface $ZodString<Input = unknown> extends _$ZodType<$ZodStringInternals<Input>> {
|
|
125
|
+
}
|
|
126
|
+
export declare const $ZodString: core.$constructor<$ZodString>;
|
|
127
|
+
export interface $ZodStringFormatDef<Format extends string = string> extends $ZodStringDef, checks.$ZodCheckStringFormatDef<Format> {
|
|
128
|
+
}
|
|
129
|
+
export interface $ZodStringFormatInternals<Format extends string = string> extends $ZodStringInternals<string>, checks.$ZodCheckStringFormatInternals {
|
|
130
|
+
def: $ZodStringFormatDef<Format>;
|
|
131
|
+
}
|
|
132
|
+
export interface $ZodStringFormat<Format extends string = string> extends $ZodType {
|
|
133
|
+
_zod: $ZodStringFormatInternals<Format>;
|
|
134
|
+
}
|
|
135
|
+
export declare const $ZodStringFormat: core.$constructor<$ZodStringFormat>;
|
|
136
|
+
export interface $ZodGUIDDef extends $ZodStringFormatDef<"guid"> {
|
|
137
|
+
}
|
|
138
|
+
export interface $ZodGUIDInternals extends $ZodStringFormatInternals<"guid"> {
|
|
139
|
+
}
|
|
140
|
+
export interface $ZodGUID extends $ZodType {
|
|
141
|
+
_zod: $ZodGUIDInternals;
|
|
142
|
+
}
|
|
143
|
+
export declare const $ZodGUID: core.$constructor<$ZodGUID>;
|
|
144
|
+
export interface $ZodUUIDDef extends $ZodStringFormatDef<"uuid"> {
|
|
145
|
+
version?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "v7" | "v8";
|
|
146
|
+
}
|
|
147
|
+
export interface $ZodUUIDInternals extends $ZodStringFormatInternals<"uuid"> {
|
|
148
|
+
def: $ZodUUIDDef;
|
|
149
|
+
}
|
|
150
|
+
export interface $ZodUUID extends $ZodType {
|
|
151
|
+
_zod: $ZodUUIDInternals;
|
|
152
|
+
}
|
|
153
|
+
export declare const $ZodUUID: core.$constructor<$ZodUUID>;
|
|
154
|
+
export interface $ZodEmailDef extends $ZodStringFormatDef<"email"> {
|
|
155
|
+
}
|
|
156
|
+
export interface $ZodEmailInternals extends $ZodStringFormatInternals<"email"> {
|
|
157
|
+
}
|
|
158
|
+
export interface $ZodEmail extends $ZodType {
|
|
159
|
+
_zod: $ZodEmailInternals;
|
|
160
|
+
}
|
|
161
|
+
export declare const $ZodEmail: core.$constructor<$ZodEmail>;
|
|
162
|
+
export interface $ZodURLDef extends $ZodStringFormatDef<"url"> {
|
|
163
|
+
hostname?: RegExp | undefined;
|
|
164
|
+
protocol?: RegExp | undefined;
|
|
165
|
+
normalize?: boolean | undefined;
|
|
166
|
+
}
|
|
167
|
+
export interface $ZodURLInternals extends $ZodStringFormatInternals<"url"> {
|
|
168
|
+
def: $ZodURLDef;
|
|
169
|
+
}
|
|
170
|
+
export interface $ZodURL extends $ZodType {
|
|
171
|
+
_zod: $ZodURLInternals;
|
|
172
|
+
}
|
|
173
|
+
export declare const $ZodURL: core.$constructor<$ZodURL>;
|
|
174
|
+
export interface $ZodEmojiDef extends $ZodStringFormatDef<"emoji"> {
|
|
175
|
+
}
|
|
176
|
+
export interface $ZodEmojiInternals extends $ZodStringFormatInternals<"emoji"> {
|
|
177
|
+
}
|
|
178
|
+
export interface $ZodEmoji extends $ZodType {
|
|
179
|
+
_zod: $ZodEmojiInternals;
|
|
180
|
+
}
|
|
181
|
+
export declare const $ZodEmoji: core.$constructor<$ZodEmoji>;
|
|
182
|
+
export interface $ZodNanoIDDef extends $ZodStringFormatDef<"nanoid"> {
|
|
183
|
+
}
|
|
184
|
+
export interface $ZodNanoIDInternals extends $ZodStringFormatInternals<"nanoid"> {
|
|
185
|
+
}
|
|
186
|
+
export interface $ZodNanoID extends $ZodType {
|
|
187
|
+
_zod: $ZodNanoIDInternals;
|
|
188
|
+
}
|
|
189
|
+
export declare const $ZodNanoID: core.$constructor<$ZodNanoID>;
|
|
190
|
+
/**
|
|
191
|
+
* @deprecated CUID v1 is deprecated by its authors due to information leakage
|
|
192
|
+
* (timestamps embedded in the id). Use {@link $ZodCUID2} instead.
|
|
193
|
+
* See https://github.com/paralleldrive/cuid.
|
|
194
|
+
*/
|
|
195
|
+
export interface $ZodCUIDDef extends $ZodStringFormatDef<"cuid"> {
|
|
196
|
+
}
|
|
197
|
+
/**
|
|
198
|
+
* @deprecated CUID v1 is deprecated by its authors due to information leakage
|
|
199
|
+
* (timestamps embedded in the id). Use {@link $ZodCUID2} instead.
|
|
200
|
+
* See https://github.com/paralleldrive/cuid.
|
|
201
|
+
*/
|
|
202
|
+
export interface $ZodCUIDInternals extends $ZodStringFormatInternals<"cuid"> {
|
|
203
|
+
}
|
|
204
|
+
/**
|
|
205
|
+
* @deprecated CUID v1 is deprecated by its authors due to information leakage
|
|
206
|
+
* (timestamps embedded in the id). Use {@link $ZodCUID2} instead.
|
|
207
|
+
* See https://github.com/paralleldrive/cuid.
|
|
208
|
+
*/
|
|
209
|
+
export interface $ZodCUID extends $ZodType {
|
|
210
|
+
_zod: $ZodCUIDInternals;
|
|
211
|
+
}
|
|
212
|
+
/**
|
|
213
|
+
* @deprecated CUID v1 is deprecated by its authors due to information leakage
|
|
214
|
+
* (timestamps embedded in the id). Use {@link $ZodCUID2} instead.
|
|
215
|
+
* See https://github.com/paralleldrive/cuid.
|
|
216
|
+
*/
|
|
217
|
+
export declare const $ZodCUID: core.$constructor<$ZodCUID>;
|
|
218
|
+
export interface $ZodCUID2Def extends $ZodStringFormatDef<"cuid2"> {
|
|
219
|
+
}
|
|
220
|
+
export interface $ZodCUID2Internals extends $ZodStringFormatInternals<"cuid2"> {
|
|
221
|
+
}
|
|
222
|
+
export interface $ZodCUID2 extends $ZodType {
|
|
223
|
+
_zod: $ZodCUID2Internals;
|
|
224
|
+
}
|
|
225
|
+
export declare const $ZodCUID2: core.$constructor<$ZodCUID2>;
|
|
226
|
+
export interface $ZodULIDDef extends $ZodStringFormatDef<"ulid"> {
|
|
227
|
+
}
|
|
228
|
+
export interface $ZodULIDInternals extends $ZodStringFormatInternals<"ulid"> {
|
|
229
|
+
}
|
|
230
|
+
export interface $ZodULID extends $ZodType {
|
|
231
|
+
_zod: $ZodULIDInternals;
|
|
232
|
+
}
|
|
233
|
+
export declare const $ZodULID: core.$constructor<$ZodULID>;
|
|
234
|
+
export interface $ZodXIDDef extends $ZodStringFormatDef<"xid"> {
|
|
235
|
+
}
|
|
236
|
+
export interface $ZodXIDInternals extends $ZodStringFormatInternals<"xid"> {
|
|
237
|
+
}
|
|
238
|
+
export interface $ZodXID extends $ZodType {
|
|
239
|
+
_zod: $ZodXIDInternals;
|
|
240
|
+
}
|
|
241
|
+
export declare const $ZodXID: core.$constructor<$ZodXID>;
|
|
242
|
+
export interface $ZodKSUIDDef extends $ZodStringFormatDef<"ksuid"> {
|
|
243
|
+
}
|
|
244
|
+
export interface $ZodKSUIDInternals extends $ZodStringFormatInternals<"ksuid"> {
|
|
245
|
+
}
|
|
246
|
+
export interface $ZodKSUID extends $ZodType {
|
|
247
|
+
_zod: $ZodKSUIDInternals;
|
|
248
|
+
}
|
|
249
|
+
export declare const $ZodKSUID: core.$constructor<$ZodKSUID>;
|
|
250
|
+
export interface $ZodISODateTimeDef extends $ZodStringFormatDef<"datetime"> {
|
|
251
|
+
precision: number | null;
|
|
252
|
+
offset: boolean;
|
|
253
|
+
local: boolean;
|
|
254
|
+
}
|
|
255
|
+
export interface $ZodISODateTimeInternals extends $ZodStringFormatInternals {
|
|
256
|
+
def: $ZodISODateTimeDef;
|
|
257
|
+
}
|
|
258
|
+
export interface $ZodISODateTime extends $ZodType {
|
|
259
|
+
_zod: $ZodISODateTimeInternals;
|
|
260
|
+
}
|
|
261
|
+
export declare const $ZodISODateTime: core.$constructor<$ZodISODateTime>;
|
|
262
|
+
export interface $ZodISODateDef extends $ZodStringFormatDef<"date"> {
|
|
263
|
+
}
|
|
264
|
+
export interface $ZodISODateInternals extends $ZodStringFormatInternals<"date"> {
|
|
265
|
+
}
|
|
266
|
+
export interface $ZodISODate extends $ZodType {
|
|
267
|
+
_zod: $ZodISODateInternals;
|
|
268
|
+
}
|
|
269
|
+
export declare const $ZodISODate: core.$constructor<$ZodISODate>;
|
|
270
|
+
export interface $ZodISOTimeDef extends $ZodStringFormatDef<"time"> {
|
|
271
|
+
precision?: number | null;
|
|
272
|
+
}
|
|
273
|
+
export interface $ZodISOTimeInternals extends $ZodStringFormatInternals<"time"> {
|
|
274
|
+
def: $ZodISOTimeDef;
|
|
275
|
+
}
|
|
276
|
+
export interface $ZodISOTime extends $ZodType {
|
|
277
|
+
_zod: $ZodISOTimeInternals;
|
|
278
|
+
}
|
|
279
|
+
export declare const $ZodISOTime: core.$constructor<$ZodISOTime>;
|
|
280
|
+
export interface $ZodISODurationDef extends $ZodStringFormatDef<"duration"> {
|
|
281
|
+
}
|
|
282
|
+
export interface $ZodISODurationInternals extends $ZodStringFormatInternals<"duration"> {
|
|
283
|
+
}
|
|
284
|
+
export interface $ZodISODuration extends $ZodType {
|
|
285
|
+
_zod: $ZodISODurationInternals;
|
|
286
|
+
}
|
|
287
|
+
export declare const $ZodISODuration: core.$constructor<$ZodISODuration>;
|
|
288
|
+
export interface $ZodIPv4Def extends $ZodStringFormatDef<"ipv4"> {
|
|
289
|
+
version?: "v4";
|
|
290
|
+
}
|
|
291
|
+
export interface $ZodIPv4Internals extends $ZodStringFormatInternals<"ipv4"> {
|
|
292
|
+
def: $ZodIPv4Def;
|
|
293
|
+
}
|
|
294
|
+
export interface $ZodIPv4 extends $ZodType {
|
|
295
|
+
_zod: $ZodIPv4Internals;
|
|
296
|
+
}
|
|
297
|
+
export declare const $ZodIPv4: core.$constructor<$ZodIPv4>;
|
|
298
|
+
export interface $ZodIPv6Def extends $ZodStringFormatDef<"ipv6"> {
|
|
299
|
+
version?: "v6";
|
|
300
|
+
}
|
|
301
|
+
export interface $ZodIPv6Internals extends $ZodStringFormatInternals<"ipv6"> {
|
|
302
|
+
def: $ZodIPv6Def;
|
|
303
|
+
}
|
|
304
|
+
export interface $ZodIPv6 extends $ZodType {
|
|
305
|
+
_zod: $ZodIPv6Internals;
|
|
306
|
+
}
|
|
307
|
+
export declare const $ZodIPv6: core.$constructor<$ZodIPv6>;
|
|
308
|
+
export interface $ZodMACDef extends $ZodStringFormatDef<"mac"> {
|
|
309
|
+
delimiter?: string;
|
|
310
|
+
}
|
|
311
|
+
export interface $ZodMACInternals extends $ZodStringFormatInternals<"mac"> {
|
|
312
|
+
def: $ZodMACDef;
|
|
313
|
+
}
|
|
314
|
+
export interface $ZodMAC extends $ZodType {
|
|
315
|
+
_zod: $ZodMACInternals;
|
|
316
|
+
}
|
|
317
|
+
export declare const $ZodMAC: core.$constructor<$ZodMAC>;
|
|
318
|
+
export interface $ZodCIDRv4Def extends $ZodStringFormatDef<"cidrv4"> {
|
|
319
|
+
version?: "v4";
|
|
320
|
+
}
|
|
321
|
+
export interface $ZodCIDRv4Internals extends $ZodStringFormatInternals<"cidrv4"> {
|
|
322
|
+
def: $ZodCIDRv4Def;
|
|
323
|
+
}
|
|
324
|
+
export interface $ZodCIDRv4 extends $ZodType {
|
|
325
|
+
_zod: $ZodCIDRv4Internals;
|
|
326
|
+
}
|
|
327
|
+
export declare const $ZodCIDRv4: core.$constructor<$ZodCIDRv4>;
|
|
328
|
+
export interface $ZodCIDRv6Def extends $ZodStringFormatDef<"cidrv6"> {
|
|
329
|
+
version?: "v6";
|
|
330
|
+
}
|
|
331
|
+
export interface $ZodCIDRv6Internals extends $ZodStringFormatInternals<"cidrv6"> {
|
|
332
|
+
def: $ZodCIDRv6Def;
|
|
333
|
+
}
|
|
334
|
+
export interface $ZodCIDRv6 extends $ZodType {
|
|
335
|
+
_zod: $ZodCIDRv6Internals;
|
|
336
|
+
}
|
|
337
|
+
export declare const $ZodCIDRv6: core.$constructor<$ZodCIDRv6>;
|
|
338
|
+
export declare function isValidBase64(data: string): boolean;
|
|
339
|
+
export interface $ZodBase64Def extends $ZodStringFormatDef<"base64"> {
|
|
340
|
+
}
|
|
341
|
+
export interface $ZodBase64Internals extends $ZodStringFormatInternals<"base64"> {
|
|
342
|
+
}
|
|
343
|
+
export interface $ZodBase64 extends $ZodType {
|
|
344
|
+
_zod: $ZodBase64Internals;
|
|
345
|
+
}
|
|
346
|
+
export declare const $ZodBase64: core.$constructor<$ZodBase64>;
|
|
347
|
+
export declare function isValidBase64URL(data: string): boolean;
|
|
348
|
+
export interface $ZodBase64URLDef extends $ZodStringFormatDef<"base64url"> {
|
|
349
|
+
}
|
|
350
|
+
export interface $ZodBase64URLInternals extends $ZodStringFormatInternals<"base64url"> {
|
|
351
|
+
}
|
|
352
|
+
export interface $ZodBase64URL extends $ZodType {
|
|
353
|
+
_zod: $ZodBase64URLInternals;
|
|
354
|
+
}
|
|
355
|
+
export declare const $ZodBase64URL: core.$constructor<$ZodBase64URL>;
|
|
356
|
+
export interface $ZodE164Def extends $ZodStringFormatDef<"e164"> {
|
|
357
|
+
}
|
|
358
|
+
export interface $ZodE164Internals extends $ZodStringFormatInternals<"e164"> {
|
|
359
|
+
}
|
|
360
|
+
export interface $ZodE164 extends $ZodType {
|
|
361
|
+
_zod: $ZodE164Internals;
|
|
362
|
+
}
|
|
363
|
+
export declare const $ZodE164: core.$constructor<$ZodE164>;
|
|
364
|
+
export declare function isValidJWT(token: string, algorithm?: util.JWTAlgorithm | null): boolean;
|
|
365
|
+
export interface $ZodJWTDef extends $ZodStringFormatDef<"jwt"> {
|
|
366
|
+
alg?: util.JWTAlgorithm | undefined;
|
|
367
|
+
}
|
|
368
|
+
export interface $ZodJWTInternals extends $ZodStringFormatInternals<"jwt"> {
|
|
369
|
+
def: $ZodJWTDef;
|
|
370
|
+
}
|
|
371
|
+
export interface $ZodJWT extends $ZodType {
|
|
372
|
+
_zod: $ZodJWTInternals;
|
|
373
|
+
}
|
|
374
|
+
export declare const $ZodJWT: core.$constructor<$ZodJWT>;
|
|
375
|
+
export interface $ZodCustomStringFormatDef<Format extends string = string> extends $ZodStringFormatDef<Format> {
|
|
376
|
+
fn: (val: string) => unknown;
|
|
377
|
+
}
|
|
378
|
+
export interface $ZodCustomStringFormatInternals<Format extends string = string> extends $ZodStringFormatInternals<Format> {
|
|
379
|
+
def: $ZodCustomStringFormatDef<Format>;
|
|
380
|
+
}
|
|
381
|
+
export interface $ZodCustomStringFormat<Format extends string = string> extends $ZodStringFormat<Format> {
|
|
382
|
+
_zod: $ZodCustomStringFormatInternals<Format>;
|
|
383
|
+
}
|
|
384
|
+
export declare const $ZodCustomStringFormat: core.$constructor<$ZodCustomStringFormat>;
|
|
385
|
+
export interface $ZodNumberDef extends $ZodTypeDef {
|
|
386
|
+
type: "number";
|
|
387
|
+
coerce?: boolean;
|
|
388
|
+
}
|
|
389
|
+
export interface $ZodNumberInternals<Input = unknown> extends $ZodTypeInternals<number, Input> {
|
|
390
|
+
def: $ZodNumberDef;
|
|
391
|
+
/** @deprecated Internal API, use with caution (not deprecated) */
|
|
392
|
+
pattern: RegExp;
|
|
393
|
+
/** @deprecated Internal API, use with caution (not deprecated) */
|
|
394
|
+
isst: errors.$ZodIssueInvalidType;
|
|
395
|
+
bag: util.LoosePartial<{
|
|
396
|
+
minimum: number;
|
|
397
|
+
maximum: number;
|
|
398
|
+
exclusiveMinimum: number;
|
|
399
|
+
exclusiveMaximum: number;
|
|
400
|
+
format: string;
|
|
401
|
+
pattern: RegExp;
|
|
402
|
+
}>;
|
|
403
|
+
}
|
|
404
|
+
export interface $ZodNumber<Input = unknown> extends $ZodType {
|
|
405
|
+
_zod: $ZodNumberInternals<Input>;
|
|
406
|
+
}
|
|
407
|
+
export declare const $ZodNumber: core.$constructor<$ZodNumber>;
|
|
408
|
+
export interface $ZodNumberFormatDef extends $ZodNumberDef, checks.$ZodCheckNumberFormatDef {
|
|
409
|
+
}
|
|
410
|
+
export interface $ZodNumberFormatInternals extends $ZodNumberInternals<number>, checks.$ZodCheckNumberFormatInternals {
|
|
411
|
+
def: $ZodNumberFormatDef;
|
|
412
|
+
isst: errors.$ZodIssueInvalidType;
|
|
413
|
+
}
|
|
414
|
+
export interface $ZodNumberFormat extends $ZodType {
|
|
415
|
+
_zod: $ZodNumberFormatInternals;
|
|
416
|
+
}
|
|
417
|
+
export declare const $ZodNumberFormat: core.$constructor<$ZodNumberFormat>;
|
|
418
|
+
export interface $ZodBooleanDef extends $ZodTypeDef {
|
|
419
|
+
type: "boolean";
|
|
420
|
+
coerce?: boolean;
|
|
421
|
+
checks?: checks.$ZodCheck<boolean>[];
|
|
422
|
+
}
|
|
423
|
+
export interface $ZodBooleanInternals<T = unknown> extends $ZodTypeInternals<boolean, T> {
|
|
424
|
+
pattern: RegExp;
|
|
425
|
+
def: $ZodBooleanDef;
|
|
426
|
+
isst: errors.$ZodIssueInvalidType;
|
|
427
|
+
}
|
|
428
|
+
export interface $ZodBoolean<T = unknown> extends $ZodType {
|
|
429
|
+
_zod: $ZodBooleanInternals<T>;
|
|
430
|
+
}
|
|
431
|
+
export declare const $ZodBoolean: core.$constructor<$ZodBoolean>;
|
|
432
|
+
export interface $ZodBigIntDef extends $ZodTypeDef {
|
|
433
|
+
type: "bigint";
|
|
434
|
+
coerce?: boolean;
|
|
435
|
+
}
|
|
436
|
+
export interface $ZodBigIntInternals<T = unknown> extends $ZodTypeInternals<bigint, T> {
|
|
437
|
+
pattern: RegExp;
|
|
438
|
+
/** @internal Internal API, use with caution */
|
|
439
|
+
def: $ZodBigIntDef;
|
|
440
|
+
isst: errors.$ZodIssueInvalidType;
|
|
441
|
+
bag: util.LoosePartial<{
|
|
442
|
+
minimum: bigint;
|
|
443
|
+
maximum: bigint;
|
|
444
|
+
format: string;
|
|
445
|
+
}>;
|
|
446
|
+
}
|
|
447
|
+
export interface $ZodBigInt<T = unknown> extends $ZodType {
|
|
448
|
+
_zod: $ZodBigIntInternals<T>;
|
|
449
|
+
}
|
|
450
|
+
export declare const $ZodBigInt: core.$constructor<$ZodBigInt>;
|
|
451
|
+
export interface $ZodBigIntFormatDef extends $ZodBigIntDef, checks.$ZodCheckBigIntFormatDef {
|
|
452
|
+
check: "bigint_format";
|
|
453
|
+
}
|
|
454
|
+
export interface $ZodBigIntFormatInternals extends $ZodBigIntInternals<bigint>, checks.$ZodCheckBigIntFormatInternals {
|
|
455
|
+
def: $ZodBigIntFormatDef;
|
|
456
|
+
}
|
|
457
|
+
export interface $ZodBigIntFormat extends $ZodType {
|
|
458
|
+
_zod: $ZodBigIntFormatInternals;
|
|
459
|
+
}
|
|
460
|
+
export declare const $ZodBigIntFormat: core.$constructor<$ZodBigIntFormat>;
|
|
461
|
+
export interface $ZodSymbolDef extends $ZodTypeDef {
|
|
462
|
+
type: "symbol";
|
|
463
|
+
}
|
|
464
|
+
export interface $ZodSymbolInternals extends $ZodTypeInternals<symbol, symbol> {
|
|
465
|
+
def: $ZodSymbolDef;
|
|
466
|
+
isst: errors.$ZodIssueInvalidType;
|
|
467
|
+
}
|
|
468
|
+
export interface $ZodSymbol extends $ZodType {
|
|
469
|
+
_zod: $ZodSymbolInternals;
|
|
470
|
+
}
|
|
471
|
+
export declare const $ZodSymbol: core.$constructor<$ZodSymbol>;
|
|
472
|
+
export interface $ZodUndefinedDef extends $ZodTypeDef {
|
|
473
|
+
type: "undefined";
|
|
474
|
+
}
|
|
475
|
+
export interface $ZodUndefinedInternals extends $ZodTypeInternals<undefined, undefined> {
|
|
476
|
+
pattern: RegExp;
|
|
477
|
+
def: $ZodUndefinedDef;
|
|
478
|
+
values: util.PrimitiveSet;
|
|
479
|
+
isst: errors.$ZodIssueInvalidType;
|
|
480
|
+
}
|
|
481
|
+
export interface $ZodUndefined extends $ZodType {
|
|
482
|
+
_zod: $ZodUndefinedInternals;
|
|
483
|
+
}
|
|
484
|
+
export declare const $ZodUndefined: core.$constructor<$ZodUndefined>;
|
|
485
|
+
export interface $ZodNullDef extends $ZodTypeDef {
|
|
486
|
+
type: "null";
|
|
487
|
+
}
|
|
488
|
+
export interface $ZodNullInternals extends $ZodTypeInternals<null, null> {
|
|
489
|
+
pattern: RegExp;
|
|
490
|
+
def: $ZodNullDef;
|
|
491
|
+
values: util.PrimitiveSet;
|
|
492
|
+
isst: errors.$ZodIssueInvalidType;
|
|
493
|
+
}
|
|
494
|
+
export interface $ZodNull extends $ZodType {
|
|
495
|
+
_zod: $ZodNullInternals;
|
|
496
|
+
}
|
|
497
|
+
export declare const $ZodNull: core.$constructor<$ZodNull>;
|
|
498
|
+
export interface $ZodAnyDef extends $ZodTypeDef {
|
|
499
|
+
type: "any";
|
|
500
|
+
}
|
|
501
|
+
export interface $ZodAnyInternals extends $ZodTypeInternals<any, any> {
|
|
502
|
+
def: $ZodAnyDef;
|
|
503
|
+
isst: never;
|
|
504
|
+
}
|
|
505
|
+
export interface $ZodAny extends $ZodType {
|
|
506
|
+
_zod: $ZodAnyInternals;
|
|
507
|
+
}
|
|
508
|
+
export declare const $ZodAny: core.$constructor<$ZodAny>;
|
|
509
|
+
export interface $ZodUnknownDef extends $ZodTypeDef {
|
|
510
|
+
type: "unknown";
|
|
511
|
+
}
|
|
512
|
+
export interface $ZodUnknownInternals extends $ZodTypeInternals<unknown, unknown> {
|
|
513
|
+
def: $ZodUnknownDef;
|
|
514
|
+
isst: never;
|
|
515
|
+
}
|
|
516
|
+
export interface $ZodUnknown extends $ZodType {
|
|
517
|
+
_zod: $ZodUnknownInternals;
|
|
518
|
+
}
|
|
519
|
+
export declare const $ZodUnknown: core.$constructor<$ZodUnknown>;
|
|
520
|
+
export interface $ZodNeverDef extends $ZodTypeDef {
|
|
521
|
+
type: "never";
|
|
522
|
+
}
|
|
523
|
+
export interface $ZodNeverInternals extends $ZodTypeInternals<never, never> {
|
|
524
|
+
def: $ZodNeverDef;
|
|
525
|
+
isst: errors.$ZodIssueInvalidType;
|
|
526
|
+
}
|
|
527
|
+
export interface $ZodNever extends $ZodType {
|
|
528
|
+
_zod: $ZodNeverInternals;
|
|
529
|
+
}
|
|
530
|
+
export declare const $ZodNever: core.$constructor<$ZodNever>;
|
|
531
|
+
export interface $ZodVoidDef extends $ZodTypeDef {
|
|
532
|
+
type: "void";
|
|
533
|
+
}
|
|
534
|
+
export interface $ZodVoidInternals extends $ZodTypeInternals<void, void> {
|
|
535
|
+
def: $ZodVoidDef;
|
|
536
|
+
isst: errors.$ZodIssueInvalidType;
|
|
537
|
+
}
|
|
538
|
+
export interface $ZodVoid extends $ZodType {
|
|
539
|
+
_zod: $ZodVoidInternals;
|
|
540
|
+
}
|
|
541
|
+
export declare const $ZodVoid: core.$constructor<$ZodVoid>;
|
|
542
|
+
export interface $ZodDateDef extends $ZodTypeDef {
|
|
543
|
+
type: "date";
|
|
544
|
+
coerce?: boolean;
|
|
545
|
+
}
|
|
546
|
+
export interface $ZodDateInternals<T = unknown> extends $ZodTypeInternals<Date, T> {
|
|
547
|
+
def: $ZodDateDef;
|
|
548
|
+
isst: errors.$ZodIssueInvalidType;
|
|
549
|
+
bag: util.LoosePartial<{
|
|
550
|
+
minimum: Date;
|
|
551
|
+
maximum: Date;
|
|
552
|
+
format: string;
|
|
553
|
+
}>;
|
|
554
|
+
}
|
|
555
|
+
export interface $ZodDate<T = unknown> extends $ZodType {
|
|
556
|
+
_zod: $ZodDateInternals<T>;
|
|
557
|
+
}
|
|
558
|
+
export declare const $ZodDate: core.$constructor<$ZodDate>;
|
|
559
|
+
export interface $ZodArrayDef<T extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
560
|
+
type: "array";
|
|
561
|
+
element: T;
|
|
562
|
+
}
|
|
563
|
+
export interface $ZodArrayInternals<T extends SomeType = $ZodType> extends _$ZodTypeInternals {
|
|
564
|
+
def: $ZodArrayDef<T>;
|
|
565
|
+
isst: errors.$ZodIssueInvalidType;
|
|
566
|
+
output: core.output<T>[];
|
|
567
|
+
input: core.input<T>[];
|
|
568
|
+
}
|
|
569
|
+
export interface $ZodArray<T extends SomeType = $ZodType> extends $ZodType<any, any, $ZodArrayInternals<T>> {
|
|
570
|
+
}
|
|
571
|
+
export declare const $ZodArray: core.$constructor<$ZodArray>;
|
|
572
|
+
type OptionalOutSchema = {
|
|
573
|
+
_zod: {
|
|
574
|
+
optout: "optional";
|
|
575
|
+
};
|
|
576
|
+
};
|
|
577
|
+
type OptionalInSchema = {
|
|
578
|
+
_zod: {
|
|
579
|
+
optin: "optional";
|
|
580
|
+
};
|
|
581
|
+
};
|
|
582
|
+
export type $InferObjectOutput<T extends $ZodLooseShape, Extra extends Record<string, unknown>> = string extends keyof T ? util.IsAny<T[keyof T]> extends true ? Record<string, unknown> : Record<string, core.output<T[keyof T]>> : keyof (T & Extra) extends never ? Record<string, never> : util.Prettify<{
|
|
583
|
+
-readonly [k in keyof T as T[k] extends OptionalOutSchema ? never : k]: T[k]["_zod"]["output"];
|
|
584
|
+
} & {
|
|
585
|
+
-readonly [k in keyof T as T[k] extends OptionalOutSchema ? k : never]?: T[k]["_zod"]["output"];
|
|
586
|
+
} & Extra>;
|
|
587
|
+
export type $InferObjectInput<T extends $ZodLooseShape, Extra extends Record<string, unknown>> = string extends keyof T ? util.IsAny<T[keyof T]> extends true ? Record<string, unknown> : Record<string, core.input<T[keyof T]>> : keyof (T & Extra) extends never ? Record<string, never> : util.Prettify<{
|
|
588
|
+
-readonly [k in keyof T as T[k] extends OptionalInSchema ? never : k]: T[k]["_zod"]["input"];
|
|
589
|
+
} & {
|
|
590
|
+
-readonly [k in keyof T as T[k] extends OptionalInSchema ? k : never]?: T[k]["_zod"]["input"];
|
|
591
|
+
} & Extra>;
|
|
592
|
+
export type $ZodObjectConfig = {
|
|
593
|
+
out: Record<string, unknown>;
|
|
594
|
+
in: Record<string, unknown>;
|
|
595
|
+
};
|
|
596
|
+
export type $loose = {
|
|
597
|
+
out: Record<string, unknown>;
|
|
598
|
+
in: Record<string, unknown>;
|
|
599
|
+
};
|
|
600
|
+
export type $strict = {
|
|
601
|
+
out: {};
|
|
602
|
+
in: {};
|
|
603
|
+
};
|
|
604
|
+
export type $strip = {
|
|
605
|
+
out: {};
|
|
606
|
+
in: {};
|
|
607
|
+
};
|
|
608
|
+
export type $catchall<T extends SomeType> = {
|
|
609
|
+
out: {
|
|
610
|
+
[k: string]: core.output<T>;
|
|
611
|
+
};
|
|
612
|
+
in: {
|
|
613
|
+
[k: string]: core.input<T>;
|
|
614
|
+
};
|
|
615
|
+
};
|
|
616
|
+
export type $ZodShape = Readonly<{
|
|
617
|
+
[k: string]: $ZodType;
|
|
618
|
+
}>;
|
|
619
|
+
export interface $ZodObjectDef<Shape extends $ZodShape = $ZodShape> extends $ZodTypeDef {
|
|
620
|
+
type: "object";
|
|
621
|
+
shape: Shape;
|
|
622
|
+
catchall?: $ZodType | undefined;
|
|
623
|
+
}
|
|
624
|
+
export interface $ZodObjectInternals<
|
|
625
|
+
/** @ts-ignore Cast variance */
|
|
626
|
+
out Shape extends $ZodShape = $ZodShape, out Config extends $ZodObjectConfig = $ZodObjectConfig> extends _$ZodTypeInternals {
|
|
627
|
+
def: $ZodObjectDef<Shape>;
|
|
628
|
+
config: Config;
|
|
629
|
+
isst: errors.$ZodIssueInvalidType | errors.$ZodIssueUnrecognizedKeys;
|
|
630
|
+
propValues: util.PropValues;
|
|
631
|
+
output: $InferObjectOutput<Shape, Config["out"]>;
|
|
632
|
+
input: $InferObjectInput<Shape, Config["in"]>;
|
|
633
|
+
optin?: "optional" | undefined;
|
|
634
|
+
optout?: "optional" | undefined;
|
|
635
|
+
}
|
|
636
|
+
export type $ZodLooseShape = Record<string, any>;
|
|
637
|
+
export interface $ZodObject<
|
|
638
|
+
/** @ts-ignore Cast variance */
|
|
639
|
+
out Shape extends Readonly<$ZodShape> = Readonly<$ZodShape>, out Params extends $ZodObjectConfig = $ZodObjectConfig> extends $ZodType<any, any, $ZodObjectInternals<Shape, Params>> {
|
|
640
|
+
}
|
|
641
|
+
export declare const $ZodObject: core.$constructor<$ZodObject>;
|
|
642
|
+
export declare const $ZodObjectJIT: core.$constructor<$ZodObject>;
|
|
643
|
+
export type $InferUnionOutput<T extends SomeType> = T extends any ? core.output<T> : never;
|
|
644
|
+
export type $InferUnionInput<T extends SomeType> = T extends any ? core.input<T> : never;
|
|
645
|
+
export interface $ZodUnionDef<Options extends readonly SomeType[] = readonly $ZodType[]> extends $ZodTypeDef {
|
|
646
|
+
type: "union";
|
|
647
|
+
options: Options;
|
|
648
|
+
inclusive?: boolean;
|
|
649
|
+
}
|
|
650
|
+
type IsOptionalIn<T extends SomeType> = T extends OptionalInSchema ? true : false;
|
|
651
|
+
type IsOptionalOut<T extends SomeType> = T extends OptionalOutSchema ? true : false;
|
|
652
|
+
export interface $ZodUnionInternals<T extends readonly SomeType[] = readonly $ZodType[]> extends _$ZodTypeInternals {
|
|
653
|
+
def: $ZodUnionDef<T>;
|
|
654
|
+
isst: errors.$ZodIssueInvalidUnion;
|
|
655
|
+
pattern: T[number]["_zod"]["pattern"];
|
|
656
|
+
values: T[number]["_zod"]["values"];
|
|
657
|
+
output: $InferUnionOutput<T[number]>;
|
|
658
|
+
input: $InferUnionInput<T[number]>;
|
|
659
|
+
optin: IsOptionalIn<T[number]> extends false ? "optional" | undefined : "optional";
|
|
660
|
+
optout: IsOptionalOut<T[number]> extends false ? "optional" | undefined : "optional";
|
|
661
|
+
}
|
|
662
|
+
export interface $ZodUnion<T extends readonly SomeType[] = readonly $ZodType[]> extends $ZodType<any, any, $ZodUnionInternals<T>> {
|
|
663
|
+
_zod: $ZodUnionInternals<T>;
|
|
664
|
+
}
|
|
665
|
+
export declare const $ZodUnion: core.$constructor<$ZodUnion>;
|
|
666
|
+
export interface $ZodXorInternals<T extends readonly SomeType[] = readonly $ZodType[]> extends $ZodUnionInternals<T> {
|
|
667
|
+
}
|
|
668
|
+
export interface $ZodXor<T extends readonly SomeType[] = readonly $ZodType[]> extends $ZodType<any, any, $ZodXorInternals<T>> {
|
|
669
|
+
_zod: $ZodXorInternals<T>;
|
|
670
|
+
}
|
|
671
|
+
export declare const $ZodXor: core.$constructor<$ZodXor>;
|
|
672
|
+
export interface $ZodDiscriminatedUnionDef<Options extends readonly SomeType[] = readonly $ZodType[], Disc extends string = string> extends $ZodUnionDef<Options> {
|
|
673
|
+
discriminator: Disc;
|
|
674
|
+
unionFallback?: boolean;
|
|
675
|
+
}
|
|
676
|
+
export interface $ZodDiscriminatedUnionInternals<Options extends readonly SomeType[] = readonly $ZodType[], Disc extends string = string> extends $ZodUnionInternals<Options> {
|
|
677
|
+
def: $ZodDiscriminatedUnionDef<Options, Disc>;
|
|
678
|
+
propValues: util.PropValues;
|
|
679
|
+
}
|
|
680
|
+
export interface $ZodDiscriminatedUnion<Options extends readonly SomeType[] = readonly $ZodType[], Disc extends string = string> extends $ZodType {
|
|
681
|
+
_zod: $ZodDiscriminatedUnionInternals<Options, Disc>;
|
|
682
|
+
}
|
|
683
|
+
export declare const $ZodDiscriminatedUnion: core.$constructor<$ZodDiscriminatedUnion>;
|
|
684
|
+
export interface $ZodIntersectionDef<Left extends SomeType = $ZodType, Right extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
685
|
+
type: "intersection";
|
|
686
|
+
left: Left;
|
|
687
|
+
right: Right;
|
|
688
|
+
}
|
|
689
|
+
export interface $ZodIntersectionInternals<A extends SomeType = $ZodType, B extends SomeType = $ZodType> extends _$ZodTypeInternals {
|
|
690
|
+
def: $ZodIntersectionDef<A, B>;
|
|
691
|
+
isst: never;
|
|
692
|
+
optin: A["_zod"]["optin"] | B["_zod"]["optin"];
|
|
693
|
+
optout: A["_zod"]["optout"] | B["_zod"]["optout"];
|
|
694
|
+
output: core.output<A> & core.output<B>;
|
|
695
|
+
input: core.input<A> & core.input<B>;
|
|
696
|
+
}
|
|
697
|
+
export interface $ZodIntersection<A extends SomeType = $ZodType, B extends SomeType = $ZodType> extends $ZodType {
|
|
698
|
+
_zod: $ZodIntersectionInternals<A, B>;
|
|
699
|
+
}
|
|
700
|
+
export declare const $ZodIntersection: core.$constructor<$ZodIntersection>;
|
|
701
|
+
export interface $ZodTupleDef<T extends util.TupleItems = readonly $ZodType[], Rest extends SomeType | null = $ZodType | null> extends $ZodTypeDef {
|
|
702
|
+
type: "tuple";
|
|
703
|
+
items: T;
|
|
704
|
+
rest: Rest;
|
|
705
|
+
}
|
|
706
|
+
export type $InferTupleInputType<T extends util.TupleItems, Rest extends SomeType | null> = [
|
|
707
|
+
...TupleInputTypeWithOptionals<T>,
|
|
708
|
+
...(Rest extends SomeType ? core.input<Rest>[] : [])
|
|
709
|
+
];
|
|
710
|
+
type TupleInputTypeNoOptionals<T extends util.TupleItems> = {
|
|
711
|
+
[k in keyof T]: core.input<T[k]>;
|
|
712
|
+
};
|
|
713
|
+
type TupleInputTypeWithOptionals<T extends util.TupleItems> = T extends readonly [
|
|
714
|
+
...infer Prefix extends SomeType[],
|
|
715
|
+
infer Tail extends SomeType
|
|
716
|
+
] ? Tail["_zod"]["optin"] extends "optional" ? [...TupleInputTypeWithOptionals<Prefix>, core.input<Tail>?] : TupleInputTypeNoOptionals<T> : [];
|
|
717
|
+
export type $InferTupleOutputType<T extends util.TupleItems, Rest extends SomeType | null> = [
|
|
718
|
+
...TupleOutputTypeWithOptionals<T>,
|
|
719
|
+
...(Rest extends SomeType ? core.output<Rest>[] : [])
|
|
720
|
+
];
|
|
721
|
+
type TupleOutputTypeNoOptionals<T extends util.TupleItems> = {
|
|
722
|
+
[k in keyof T]: core.output<T[k]>;
|
|
723
|
+
};
|
|
724
|
+
type TupleOutputTypeWithOptionals<T extends util.TupleItems> = T extends readonly [
|
|
725
|
+
...infer Prefix extends SomeType[],
|
|
726
|
+
infer Tail extends SomeType
|
|
727
|
+
] ? Tail["_zod"]["optout"] extends "optional" ? [...TupleOutputTypeWithOptionals<Prefix>, core.output<Tail>?] : TupleOutputTypeNoOptionals<T> : [];
|
|
728
|
+
export interface $ZodTupleInternals<T extends util.TupleItems = readonly $ZodType[], Rest extends SomeType | null = $ZodType | null> extends _$ZodTypeInternals {
|
|
729
|
+
def: $ZodTupleDef<T, Rest>;
|
|
730
|
+
isst: errors.$ZodIssueInvalidType | errors.$ZodIssueTooBig<unknown[]> | errors.$ZodIssueTooSmall<unknown[]>;
|
|
731
|
+
output: $InferTupleOutputType<T, Rest>;
|
|
732
|
+
input: $InferTupleInputType<T, Rest>;
|
|
733
|
+
}
|
|
734
|
+
export interface $ZodTuple<T extends util.TupleItems = readonly $ZodType[], Rest extends SomeType | null = $ZodType | null> extends $ZodType {
|
|
735
|
+
_zod: $ZodTupleInternals<T, Rest>;
|
|
736
|
+
}
|
|
737
|
+
export declare const $ZodTuple: core.$constructor<$ZodTuple>;
|
|
738
|
+
export type $ZodRecordKey = $ZodType<string | number | symbol, unknown>;
|
|
739
|
+
export interface $ZodRecordDef<Key extends $ZodRecordKey = $ZodRecordKey, Value extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
740
|
+
type: "record";
|
|
741
|
+
keyType: Key;
|
|
742
|
+
valueType: Value;
|
|
743
|
+
/** @default "strict" - errors on keys not matching keyType. "loose" passes through non-matching keys unchanged. */
|
|
744
|
+
mode?: "strict" | "loose";
|
|
745
|
+
}
|
|
746
|
+
export type $InferZodRecordOutput<Key extends $ZodRecordKey = $ZodRecordKey, Value extends SomeType = $ZodType> = Key extends $partial ? Partial<Record<core.output<Key>, core.output<Value>>> : Record<core.output<Key>, core.output<Value>>;
|
|
747
|
+
export type $InferZodRecordInput<Key extends $ZodRecordKey = $ZodRecordKey, Value extends SomeType = $ZodType> = Key extends $partial ? Partial<Record<core.input<Key> & PropertyKey, core.input<Value>>> : Record<core.input<Key> & PropertyKey, core.input<Value>>;
|
|
748
|
+
export interface $ZodRecordInternals<Key extends $ZodRecordKey = $ZodRecordKey, Value extends SomeType = $ZodType> extends $ZodTypeInternals<$InferZodRecordOutput<Key, Value>, $InferZodRecordInput<Key, Value>> {
|
|
749
|
+
def: $ZodRecordDef<Key, Value>;
|
|
750
|
+
isst: errors.$ZodIssueInvalidType | errors.$ZodIssueInvalidKey<Record<PropertyKey, unknown>>;
|
|
751
|
+
optin?: "optional" | undefined;
|
|
752
|
+
optout?: "optional" | undefined;
|
|
753
|
+
}
|
|
754
|
+
export type $partial = {
|
|
755
|
+
"~~partial": true;
|
|
756
|
+
};
|
|
757
|
+
export interface $ZodRecord<Key extends $ZodRecordKey = $ZodRecordKey, Value extends SomeType = $ZodType> extends $ZodType {
|
|
758
|
+
_zod: $ZodRecordInternals<Key, Value>;
|
|
759
|
+
}
|
|
760
|
+
export declare const $ZodRecord: core.$constructor<$ZodRecord>;
|
|
761
|
+
export interface $ZodMapDef<Key extends SomeType = $ZodType, Value extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
762
|
+
type: "map";
|
|
763
|
+
keyType: Key;
|
|
764
|
+
valueType: Value;
|
|
765
|
+
}
|
|
766
|
+
export interface $ZodMapInternals<Key extends SomeType = $ZodType, Value extends SomeType = $ZodType> extends $ZodTypeInternals<Map<core.output<Key>, core.output<Value>>, Map<core.input<Key>, core.input<Value>>> {
|
|
767
|
+
def: $ZodMapDef<Key, Value>;
|
|
768
|
+
isst: errors.$ZodIssueInvalidType | errors.$ZodIssueInvalidKey | errors.$ZodIssueInvalidElement<unknown>;
|
|
769
|
+
optin?: "optional" | undefined;
|
|
770
|
+
optout?: "optional" | undefined;
|
|
771
|
+
}
|
|
772
|
+
export interface $ZodMap<Key extends SomeType = $ZodType, Value extends SomeType = $ZodType> extends $ZodType {
|
|
773
|
+
_zod: $ZodMapInternals<Key, Value>;
|
|
774
|
+
}
|
|
775
|
+
export declare const $ZodMap: core.$constructor<$ZodMap>;
|
|
776
|
+
export interface $ZodSetDef<T extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
777
|
+
type: "set";
|
|
778
|
+
valueType: T;
|
|
779
|
+
}
|
|
780
|
+
export interface $ZodSetInternals<T extends SomeType = $ZodType> extends $ZodTypeInternals<Set<core.output<T>>, Set<core.input<T>>> {
|
|
781
|
+
def: $ZodSetDef<T>;
|
|
782
|
+
isst: errors.$ZodIssueInvalidType;
|
|
783
|
+
optin?: "optional" | undefined;
|
|
784
|
+
optout?: "optional" | undefined;
|
|
785
|
+
}
|
|
786
|
+
export interface $ZodSet<T extends SomeType = $ZodType> extends $ZodType {
|
|
787
|
+
_zod: $ZodSetInternals<T>;
|
|
788
|
+
}
|
|
789
|
+
export declare const $ZodSet: core.$constructor<$ZodSet>;
|
|
790
|
+
export type $InferEnumOutput<T extends util.EnumLike> = T[keyof T] & {};
|
|
791
|
+
export type $InferEnumInput<T extends util.EnumLike> = T[keyof T] & {};
|
|
792
|
+
export interface $ZodEnumDef<T extends util.EnumLike = util.EnumLike> extends $ZodTypeDef {
|
|
793
|
+
type: "enum";
|
|
794
|
+
entries: T;
|
|
795
|
+
}
|
|
796
|
+
export interface $ZodEnumInternals<
|
|
797
|
+
/** @ts-ignore Cast variance */
|
|
798
|
+
out T extends util.EnumLike = util.EnumLike> extends $ZodTypeInternals<$InferEnumOutput<T>, $InferEnumInput<T>> {
|
|
799
|
+
def: $ZodEnumDef<T>;
|
|
800
|
+
/** @deprecated Internal API, use with caution (not deprecated) */
|
|
801
|
+
values: util.PrimitiveSet;
|
|
802
|
+
/** @deprecated Internal API, use with caution (not deprecated) */
|
|
803
|
+
pattern: RegExp;
|
|
804
|
+
isst: errors.$ZodIssueInvalidValue;
|
|
805
|
+
}
|
|
806
|
+
export interface $ZodEnum<T extends util.EnumLike = util.EnumLike> extends $ZodType {
|
|
807
|
+
_zod: $ZodEnumInternals<T>;
|
|
808
|
+
}
|
|
809
|
+
export declare const $ZodEnum: core.$constructor<$ZodEnum>;
|
|
810
|
+
export interface $ZodLiteralDef<T extends util.Literal> extends $ZodTypeDef {
|
|
811
|
+
type: "literal";
|
|
812
|
+
values: T[];
|
|
813
|
+
}
|
|
814
|
+
export interface $ZodLiteralInternals<T extends util.Literal = util.Literal> extends $ZodTypeInternals<T, T> {
|
|
815
|
+
def: $ZodLiteralDef<T>;
|
|
816
|
+
values: Set<T>;
|
|
817
|
+
pattern: RegExp;
|
|
818
|
+
isst: errors.$ZodIssueInvalidValue;
|
|
819
|
+
}
|
|
820
|
+
export interface $ZodLiteral<T extends util.Literal = util.Literal> extends $ZodType {
|
|
821
|
+
_zod: $ZodLiteralInternals<T>;
|
|
822
|
+
}
|
|
823
|
+
export declare const $ZodLiteral: core.$constructor<$ZodLiteral>;
|
|
824
|
+
type _File = typeof globalThis extends {
|
|
825
|
+
File: infer F extends new (...args: any[]) => any;
|
|
826
|
+
} ? InstanceType<F> : {};
|
|
827
|
+
/** Do not reference this directly. */
|
|
828
|
+
export interface File extends _File {
|
|
829
|
+
readonly type: string;
|
|
830
|
+
readonly size: number;
|
|
831
|
+
}
|
|
832
|
+
export interface $ZodFileDef extends $ZodTypeDef {
|
|
833
|
+
type: "file";
|
|
834
|
+
}
|
|
835
|
+
export interface $ZodFileInternals extends $ZodTypeInternals<File, File> {
|
|
836
|
+
def: $ZodFileDef;
|
|
837
|
+
isst: errors.$ZodIssueInvalidType;
|
|
838
|
+
bag: util.LoosePartial<{
|
|
839
|
+
minimum: number;
|
|
840
|
+
maximum: number;
|
|
841
|
+
mime: util.MimeTypes[];
|
|
842
|
+
}>;
|
|
843
|
+
}
|
|
844
|
+
export interface $ZodFile extends $ZodType {
|
|
845
|
+
_zod: $ZodFileInternals;
|
|
846
|
+
}
|
|
847
|
+
export declare const $ZodFile: core.$constructor<$ZodFile>;
|
|
848
|
+
export interface $ZodTransformDef extends $ZodTypeDef {
|
|
849
|
+
type: "transform";
|
|
850
|
+
transform: (input: unknown, payload: ParsePayload<unknown>) => util.MaybeAsync<unknown>;
|
|
851
|
+
}
|
|
852
|
+
export interface $ZodTransformInternals<O = unknown, I = unknown> extends $ZodTypeInternals<O, I> {
|
|
853
|
+
def: $ZodTransformDef;
|
|
854
|
+
isst: never;
|
|
855
|
+
}
|
|
856
|
+
export interface $ZodTransform<O = unknown, I = unknown> extends $ZodType {
|
|
857
|
+
_zod: $ZodTransformInternals<O, I>;
|
|
858
|
+
}
|
|
859
|
+
export declare const $ZodTransform: core.$constructor<$ZodTransform>;
|
|
860
|
+
export interface $ZodOptionalDef<T extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
861
|
+
type: "optional";
|
|
862
|
+
innerType: T;
|
|
863
|
+
}
|
|
864
|
+
export interface $ZodOptionalInternals<T extends SomeType = $ZodType> extends $ZodTypeInternals<core.output<T> | undefined, core.input<T> | undefined> {
|
|
865
|
+
def: $ZodOptionalDef<T>;
|
|
866
|
+
optin: "optional";
|
|
867
|
+
optout: "optional";
|
|
868
|
+
isst: never;
|
|
869
|
+
values: T["_zod"]["values"];
|
|
870
|
+
pattern: T["_zod"]["pattern"];
|
|
871
|
+
}
|
|
872
|
+
export interface $ZodOptional<T extends SomeType = $ZodType> extends $ZodType {
|
|
873
|
+
_zod: $ZodOptionalInternals<T>;
|
|
874
|
+
}
|
|
875
|
+
export declare const $ZodOptional: core.$constructor<$ZodOptional>;
|
|
876
|
+
export interface $ZodExactOptionalDef<T extends SomeType = $ZodType> extends $ZodOptionalDef<T> {
|
|
877
|
+
}
|
|
878
|
+
export interface $ZodExactOptionalInternals<T extends SomeType = $ZodType> extends $ZodOptionalInternals<T> {
|
|
879
|
+
def: $ZodExactOptionalDef<T>;
|
|
880
|
+
output: core.output<T>;
|
|
881
|
+
input: core.input<T>;
|
|
882
|
+
}
|
|
883
|
+
export interface $ZodExactOptional<T extends SomeType = $ZodType> extends $ZodType {
|
|
884
|
+
_zod: $ZodExactOptionalInternals<T>;
|
|
885
|
+
}
|
|
886
|
+
export declare const $ZodExactOptional: core.$constructor<$ZodExactOptional>;
|
|
887
|
+
export interface $ZodNullableDef<T extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
888
|
+
type: "nullable";
|
|
889
|
+
innerType: T;
|
|
890
|
+
}
|
|
891
|
+
export interface $ZodNullableInternals<T extends SomeType = $ZodType> extends $ZodTypeInternals<core.output<T> | null, core.input<T> | null> {
|
|
892
|
+
def: $ZodNullableDef<T>;
|
|
893
|
+
optin: T["_zod"]["optin"];
|
|
894
|
+
optout: T["_zod"]["optout"];
|
|
895
|
+
isst: never;
|
|
896
|
+
values: T["_zod"]["values"];
|
|
897
|
+
pattern: T["_zod"]["pattern"];
|
|
898
|
+
}
|
|
899
|
+
export interface $ZodNullable<T extends SomeType = $ZodType> extends $ZodType {
|
|
900
|
+
_zod: $ZodNullableInternals<T>;
|
|
901
|
+
}
|
|
902
|
+
export declare const $ZodNullable: core.$constructor<$ZodNullable>;
|
|
903
|
+
export interface $ZodDefaultDef<T extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
904
|
+
type: "default";
|
|
905
|
+
innerType: T;
|
|
906
|
+
/** The default value. May be a getter. */
|
|
907
|
+
defaultValue: util.NoUndefined<core.output<T>>;
|
|
908
|
+
}
|
|
909
|
+
export interface $ZodDefaultInternals<T extends SomeType = $ZodType> extends $ZodTypeInternals<util.NoUndefined<core.output<T>>, core.input<T> | undefined> {
|
|
910
|
+
def: $ZodDefaultDef<T>;
|
|
911
|
+
optin: "optional";
|
|
912
|
+
optout?: "optional" | undefined;
|
|
913
|
+
isst: never;
|
|
914
|
+
values: T["_zod"]["values"];
|
|
915
|
+
}
|
|
916
|
+
export interface $ZodDefault<T extends SomeType = $ZodType> extends $ZodType {
|
|
917
|
+
_zod: $ZodDefaultInternals<T>;
|
|
918
|
+
}
|
|
919
|
+
export declare const $ZodDefault: core.$constructor<$ZodDefault>;
|
|
920
|
+
export interface $ZodPrefaultDef<T extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
921
|
+
type: "prefault";
|
|
922
|
+
innerType: T;
|
|
923
|
+
/** The default value. May be a getter. */
|
|
924
|
+
defaultValue: core.input<T>;
|
|
925
|
+
}
|
|
926
|
+
export interface $ZodPrefaultInternals<T extends SomeType = $ZodType> extends $ZodTypeInternals<util.NoUndefined<core.output<T>>, core.input<T> | undefined> {
|
|
927
|
+
def: $ZodPrefaultDef<T>;
|
|
928
|
+
optin: "optional";
|
|
929
|
+
optout?: "optional" | undefined;
|
|
930
|
+
isst: never;
|
|
931
|
+
values: T["_zod"]["values"];
|
|
932
|
+
}
|
|
933
|
+
export interface $ZodPrefault<T extends SomeType = $ZodType> extends $ZodType {
|
|
934
|
+
_zod: $ZodPrefaultInternals<T>;
|
|
935
|
+
}
|
|
936
|
+
export declare const $ZodPrefault: core.$constructor<$ZodPrefault>;
|
|
937
|
+
export interface $ZodNonOptionalDef<T extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
938
|
+
type: "nonoptional";
|
|
939
|
+
innerType: T;
|
|
940
|
+
}
|
|
941
|
+
export interface $ZodNonOptionalInternals<T extends SomeType = $ZodType> extends $ZodTypeInternals<util.NoUndefined<core.output<T>>, util.NoUndefined<core.input<T>>> {
|
|
942
|
+
def: $ZodNonOptionalDef<T>;
|
|
943
|
+
isst: errors.$ZodIssueInvalidType;
|
|
944
|
+
values: T["_zod"]["values"];
|
|
945
|
+
optin: "optional" | undefined;
|
|
946
|
+
optout: "optional" | undefined;
|
|
947
|
+
}
|
|
948
|
+
export interface $ZodNonOptional<T extends SomeType = $ZodType> extends $ZodType {
|
|
949
|
+
_zod: $ZodNonOptionalInternals<T>;
|
|
950
|
+
}
|
|
951
|
+
export declare const $ZodNonOptional: core.$constructor<$ZodNonOptional>;
|
|
952
|
+
export interface $ZodSuccessDef<T extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
953
|
+
type: "success";
|
|
954
|
+
innerType: T;
|
|
955
|
+
}
|
|
956
|
+
export interface $ZodSuccessInternals<T extends SomeType = $ZodType> extends $ZodTypeInternals<boolean, core.input<T>> {
|
|
957
|
+
def: $ZodSuccessDef<T>;
|
|
958
|
+
isst: never;
|
|
959
|
+
optin: T["_zod"]["optin"];
|
|
960
|
+
optout: "optional" | undefined;
|
|
961
|
+
}
|
|
962
|
+
export interface $ZodSuccess<T extends SomeType = $ZodType> extends $ZodType {
|
|
963
|
+
_zod: $ZodSuccessInternals<T>;
|
|
964
|
+
}
|
|
965
|
+
export declare const $ZodSuccess: core.$constructor<$ZodSuccess>;
|
|
966
|
+
export interface $ZodCatchCtx extends ParsePayload {
|
|
967
|
+
/** @deprecated Use `ctx.issues` */
|
|
968
|
+
error: {
|
|
969
|
+
issues: errors.$ZodIssue[];
|
|
970
|
+
};
|
|
971
|
+
/** @deprecated Use `ctx.value` */
|
|
972
|
+
input: unknown;
|
|
973
|
+
}
|
|
974
|
+
export interface $ZodCatchDef<T extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
975
|
+
type: "catch";
|
|
976
|
+
innerType: T;
|
|
977
|
+
catchValue: (ctx: $ZodCatchCtx) => unknown;
|
|
978
|
+
}
|
|
979
|
+
export interface $ZodCatchInternals<T extends SomeType = $ZodType> extends $ZodTypeInternals<core.output<T>, core.input<T>> {
|
|
980
|
+
def: $ZodCatchDef<T>;
|
|
981
|
+
optin: T["_zod"]["optin"];
|
|
982
|
+
optout: T["_zod"]["optout"];
|
|
983
|
+
isst: never;
|
|
984
|
+
values: T["_zod"]["values"];
|
|
985
|
+
}
|
|
986
|
+
export interface $ZodCatch<T extends SomeType = $ZodType> extends $ZodType {
|
|
987
|
+
_zod: $ZodCatchInternals<T>;
|
|
988
|
+
}
|
|
989
|
+
export declare const $ZodCatch: core.$constructor<$ZodCatch>;
|
|
990
|
+
export interface $ZodNaNDef extends $ZodTypeDef {
|
|
991
|
+
type: "nan";
|
|
992
|
+
}
|
|
993
|
+
export interface $ZodNaNInternals extends $ZodTypeInternals<number, number> {
|
|
994
|
+
def: $ZodNaNDef;
|
|
995
|
+
isst: errors.$ZodIssueInvalidType;
|
|
996
|
+
}
|
|
997
|
+
export interface $ZodNaN extends $ZodType {
|
|
998
|
+
_zod: $ZodNaNInternals;
|
|
999
|
+
}
|
|
1000
|
+
export declare const $ZodNaN: core.$constructor<$ZodNaN>;
|
|
1001
|
+
export interface $ZodPipeDef<A extends SomeType = $ZodType, B extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
1002
|
+
type: "pipe";
|
|
1003
|
+
in: A;
|
|
1004
|
+
out: B;
|
|
1005
|
+
/** Only defined inside $ZodCodec instances. */
|
|
1006
|
+
transform?: (value: core.output<A>, payload: ParsePayload<core.output<A>>) => util.MaybeAsync<core.input<B>>;
|
|
1007
|
+
/** Only defined inside $ZodCodec instances. */
|
|
1008
|
+
reverseTransform?: (value: core.input<B>, payload: ParsePayload<core.input<B>>) => util.MaybeAsync<core.output<A>>;
|
|
1009
|
+
}
|
|
1010
|
+
export interface $ZodPipeInternals<A extends SomeType = $ZodType, B extends SomeType = $ZodType> extends $ZodTypeInternals<core.output<B>, core.input<A>> {
|
|
1011
|
+
def: $ZodPipeDef<A, B>;
|
|
1012
|
+
isst: never;
|
|
1013
|
+
values: A["_zod"]["values"];
|
|
1014
|
+
optin: A["_zod"]["optin"];
|
|
1015
|
+
optout: B["_zod"]["optout"];
|
|
1016
|
+
propValues: A["_zod"]["propValues"];
|
|
1017
|
+
}
|
|
1018
|
+
export interface $ZodPipe<A extends SomeType = $ZodType, B extends SomeType = $ZodType> extends $ZodType {
|
|
1019
|
+
_zod: $ZodPipeInternals<A, B>;
|
|
1020
|
+
}
|
|
1021
|
+
export declare const $ZodPipe: core.$constructor<$ZodPipe>;
|
|
1022
|
+
export interface $ZodCodecDef<A extends SomeType = $ZodType, B extends SomeType = $ZodType> extends $ZodPipeDef<A, B> {
|
|
1023
|
+
transform: (value: core.output<A>, payload: ParsePayload<core.output<A>>) => util.MaybeAsync<core.input<B>>;
|
|
1024
|
+
reverseTransform: (value: core.input<B>, payload: ParsePayload<core.input<B>>) => util.MaybeAsync<core.output<A>>;
|
|
1025
|
+
}
|
|
1026
|
+
export interface $ZodCodecInternals<A extends SomeType = $ZodType, B extends SomeType = $ZodType> extends $ZodTypeInternals<core.output<B>, core.input<A>> {
|
|
1027
|
+
def: $ZodCodecDef<A, B>;
|
|
1028
|
+
isst: never;
|
|
1029
|
+
values: A["_zod"]["values"];
|
|
1030
|
+
optin: A["_zod"]["optin"];
|
|
1031
|
+
optout: B["_zod"]["optout"];
|
|
1032
|
+
propValues: A["_zod"]["propValues"];
|
|
1033
|
+
}
|
|
1034
|
+
export interface $ZodCodec<A extends SomeType = $ZodType, B extends SomeType = $ZodType> extends $ZodType {
|
|
1035
|
+
_zod: $ZodCodecInternals<A, B>;
|
|
1036
|
+
}
|
|
1037
|
+
export declare const $ZodCodec: core.$constructor<$ZodCodec>;
|
|
1038
|
+
export interface $ZodPreprocessDef<B extends SomeType = $ZodType> extends $ZodPipeDef<$ZodTransform, B> {
|
|
1039
|
+
in: $ZodTransform;
|
|
1040
|
+
out: B;
|
|
1041
|
+
}
|
|
1042
|
+
export interface $ZodPreprocessInternals<B extends SomeType = $ZodType> extends $ZodPipeInternals<$ZodTransform, B> {
|
|
1043
|
+
def: $ZodPreprocessDef<B>;
|
|
1044
|
+
optin: B["_zod"]["optin"];
|
|
1045
|
+
optout: B["_zod"]["optout"];
|
|
1046
|
+
}
|
|
1047
|
+
export interface $ZodPreprocess<B extends SomeType = $ZodType> extends $ZodPipe<$ZodTransform, B> {
|
|
1048
|
+
_zod: $ZodPreprocessInternals<B>;
|
|
1049
|
+
}
|
|
1050
|
+
export declare const $ZodPreprocess: core.$constructor<$ZodPreprocess>;
|
|
1051
|
+
export interface $ZodReadonlyDef<T extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
1052
|
+
type: "readonly";
|
|
1053
|
+
innerType: T;
|
|
1054
|
+
}
|
|
1055
|
+
export interface $ZodReadonlyInternals<T extends SomeType = $ZodType> extends $ZodTypeInternals<util.MakeReadonly<core.output<T>>, util.MakeReadonly<core.input<T>>> {
|
|
1056
|
+
def: $ZodReadonlyDef<T>;
|
|
1057
|
+
optin: T["_zod"]["optin"];
|
|
1058
|
+
optout: T["_zod"]["optout"];
|
|
1059
|
+
isst: never;
|
|
1060
|
+
propValues: T["_zod"]["propValues"];
|
|
1061
|
+
values: T["_zod"]["values"];
|
|
1062
|
+
}
|
|
1063
|
+
export interface $ZodReadonly<T extends SomeType = $ZodType> extends $ZodType {
|
|
1064
|
+
_zod: $ZodReadonlyInternals<T>;
|
|
1065
|
+
}
|
|
1066
|
+
export declare const $ZodReadonly: core.$constructor<$ZodReadonly>;
|
|
1067
|
+
export interface $ZodTemplateLiteralDef extends $ZodTypeDef {
|
|
1068
|
+
type: "template_literal";
|
|
1069
|
+
parts: $ZodTemplateLiteralPart[];
|
|
1070
|
+
format?: string | undefined;
|
|
1071
|
+
}
|
|
1072
|
+
export interface $ZodTemplateLiteralInternals<Template extends string = string> extends $ZodTypeInternals<Template, Template> {
|
|
1073
|
+
pattern: RegExp;
|
|
1074
|
+
def: $ZodTemplateLiteralDef;
|
|
1075
|
+
isst: errors.$ZodIssueInvalidType;
|
|
1076
|
+
}
|
|
1077
|
+
export interface $ZodTemplateLiteral<Template extends string = string> extends $ZodType {
|
|
1078
|
+
_zod: $ZodTemplateLiteralInternals<Template>;
|
|
1079
|
+
}
|
|
1080
|
+
type LiteralPart = Exclude<util.Literal, symbol>;
|
|
1081
|
+
interface SchemaPartInternals extends $ZodTypeInternals<LiteralPart, LiteralPart> {
|
|
1082
|
+
pattern: RegExp;
|
|
1083
|
+
}
|
|
1084
|
+
interface SchemaPart extends $ZodType {
|
|
1085
|
+
_zod: SchemaPartInternals;
|
|
1086
|
+
}
|
|
1087
|
+
export type $ZodTemplateLiteralPart = LiteralPart | SchemaPart;
|
|
1088
|
+
type UndefinedToEmptyString<T> = T extends undefined ? "" : T;
|
|
1089
|
+
type AppendToTemplateLiteral<Template extends string, Suffix extends LiteralPart | $ZodType> = Suffix extends LiteralPart ? `${Template}${UndefinedToEmptyString<Suffix>}` : Suffix extends $ZodType ? `${Template}${core.output<Suffix> extends infer T extends LiteralPart ? UndefinedToEmptyString<T> : never}` : never;
|
|
1090
|
+
export type ConcatenateTupleOfStrings<T extends string[]> = T extends [
|
|
1091
|
+
infer First extends string,
|
|
1092
|
+
...infer Rest extends string[]
|
|
1093
|
+
] ? Rest extends string[] ? First extends "" ? ConcatenateTupleOfStrings<Rest> : `${First}${ConcatenateTupleOfStrings<Rest>}` : never : "";
|
|
1094
|
+
export type ConvertPartsToStringTuple<Parts extends $ZodTemplateLiteralPart[]> = {
|
|
1095
|
+
[K in keyof Parts]: Parts[K] extends LiteralPart ? `${UndefinedToEmptyString<Parts[K]>}` : Parts[K] extends $ZodType ? `${core.output<Parts[K]> extends infer T extends LiteralPart ? UndefinedToEmptyString<T> : never}` : never;
|
|
1096
|
+
};
|
|
1097
|
+
export type ToTemplateLiteral<Parts extends $ZodTemplateLiteralPart[]> = ConcatenateTupleOfStrings<ConvertPartsToStringTuple<Parts>>;
|
|
1098
|
+
export type $PartsToTemplateLiteral<Parts extends $ZodTemplateLiteralPart[]> = [] extends Parts ? `` : Parts extends [...infer Rest, infer Last extends $ZodTemplateLiteralPart] ? Rest extends $ZodTemplateLiteralPart[] ? AppendToTemplateLiteral<$PartsToTemplateLiteral<Rest>, Last> : never : never;
|
|
1099
|
+
export declare const $ZodTemplateLiteral: core.$constructor<$ZodTemplateLiteral>;
|
|
1100
|
+
export type $ZodFunctionArgs = $ZodType<unknown[], unknown[]>;
|
|
1101
|
+
export type $ZodFunctionIn = $ZodFunctionArgs;
|
|
1102
|
+
export type $ZodFunctionOut = $ZodType;
|
|
1103
|
+
export type $InferInnerFunctionType<Args extends $ZodFunctionIn, Returns extends $ZodFunctionOut> = (...args: $ZodFunctionIn extends Args ? never[] : core.output<Args>) => core.input<Returns>;
|
|
1104
|
+
export type $InferInnerFunctionTypeAsync<Args extends $ZodFunctionIn, Returns extends $ZodFunctionOut> = (...args: $ZodFunctionIn extends Args ? never[] : core.output<Args>) => util.MaybeAsync<core.input<Returns>>;
|
|
1105
|
+
export type $InferOuterFunctionType<Args extends $ZodFunctionIn, Returns extends $ZodFunctionOut> = (...args: $ZodFunctionIn extends Args ? never[] : core.input<Args>) => core.output<Returns>;
|
|
1106
|
+
export type $InferOuterFunctionTypeAsync<Args extends $ZodFunctionIn, Returns extends $ZodFunctionOut> = (...args: $ZodFunctionIn extends Args ? never[] : core.input<Args>) => Promise<core.output<Returns>>;
|
|
1107
|
+
export interface $ZodFunctionDef<In extends $ZodFunctionIn = $ZodFunctionIn, Out extends $ZodFunctionOut = $ZodFunctionOut> extends $ZodTypeDef {
|
|
1108
|
+
type: "function";
|
|
1109
|
+
input: In;
|
|
1110
|
+
output: Out;
|
|
1111
|
+
}
|
|
1112
|
+
export interface $ZodFunctionInternals<Args extends $ZodFunctionIn, Returns extends $ZodFunctionOut> extends $ZodTypeInternals<$InferOuterFunctionType<Args, Returns>, $InferInnerFunctionType<Args, Returns>> {
|
|
1113
|
+
def: $ZodFunctionDef<Args, Returns>;
|
|
1114
|
+
isst: errors.$ZodIssueInvalidType;
|
|
1115
|
+
}
|
|
1116
|
+
export interface $ZodFunction<Args extends $ZodFunctionIn = $ZodFunctionIn, Returns extends $ZodFunctionOut = $ZodFunctionOut> extends $ZodType<any, any, $ZodFunctionInternals<Args, Returns>> {
|
|
1117
|
+
/** @deprecated */
|
|
1118
|
+
_def: $ZodFunctionDef<Args, Returns>;
|
|
1119
|
+
_input: $InferInnerFunctionType<Args, Returns>;
|
|
1120
|
+
_output: $InferOuterFunctionType<Args, Returns>;
|
|
1121
|
+
implement<F extends $InferInnerFunctionType<Args, Returns>>(func: F): (...args: Parameters<this["_output"]>) => ReturnType<F> extends ReturnType<this["_output"]> ? ReturnType<F> : ReturnType<this["_output"]>;
|
|
1122
|
+
implementAsync<F extends $InferInnerFunctionTypeAsync<Args, Returns>>(func: F): F extends $InferOuterFunctionTypeAsync<Args, Returns> ? F : $InferOuterFunctionTypeAsync<Args, Returns>;
|
|
1123
|
+
input<const Items extends util.TupleItems, const Rest extends $ZodFunctionOut = $ZodFunctionOut>(args: Items, rest?: Rest): $ZodFunction<$ZodTuple<Items, Rest>, Returns>;
|
|
1124
|
+
input<NewArgs extends $ZodFunctionIn>(args: NewArgs): $ZodFunction<NewArgs, Returns>;
|
|
1125
|
+
input(...args: any[]): $ZodFunction<any, Returns>;
|
|
1126
|
+
output<NewReturns extends $ZodType>(output: NewReturns): $ZodFunction<Args, NewReturns>;
|
|
1127
|
+
}
|
|
1128
|
+
export interface $ZodFunctionParams<I extends $ZodFunctionIn, O extends $ZodType> {
|
|
1129
|
+
input?: I;
|
|
1130
|
+
output?: O;
|
|
1131
|
+
}
|
|
1132
|
+
export declare const $ZodFunction: core.$constructor<$ZodFunction>;
|
|
1133
|
+
export interface $ZodPromiseDef<T extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
1134
|
+
type: "promise";
|
|
1135
|
+
innerType: T;
|
|
1136
|
+
}
|
|
1137
|
+
export interface $ZodPromiseInternals<T extends SomeType = $ZodType> extends $ZodTypeInternals<Promise<core.output<T>>, util.MaybeAsync<core.input<T>>> {
|
|
1138
|
+
def: $ZodPromiseDef<T>;
|
|
1139
|
+
isst: never;
|
|
1140
|
+
}
|
|
1141
|
+
export interface $ZodPromise<T extends SomeType = $ZodType> extends $ZodType {
|
|
1142
|
+
_zod: $ZodPromiseInternals<T>;
|
|
1143
|
+
}
|
|
1144
|
+
export declare const $ZodPromise: core.$constructor<$ZodPromise>;
|
|
1145
|
+
export interface $ZodLazyDef<T extends SomeType = $ZodType> extends $ZodTypeDef {
|
|
1146
|
+
type: "lazy";
|
|
1147
|
+
getter: () => T;
|
|
1148
|
+
}
|
|
1149
|
+
export interface $ZodLazyInternals<T extends SomeType = $ZodType> extends $ZodTypeInternals<core.output<T>, core.input<T>> {
|
|
1150
|
+
def: $ZodLazyDef<T>;
|
|
1151
|
+
isst: never;
|
|
1152
|
+
/** Auto-cached way to retrieve the inner schema */
|
|
1153
|
+
innerType: T;
|
|
1154
|
+
pattern: T["_zod"]["pattern"];
|
|
1155
|
+
propValues: T["_zod"]["propValues"];
|
|
1156
|
+
optin: T["_zod"]["optin"];
|
|
1157
|
+
optout: T["_zod"]["optout"];
|
|
1158
|
+
}
|
|
1159
|
+
export interface $ZodLazy<T extends SomeType = $ZodType> extends $ZodType {
|
|
1160
|
+
_zod: $ZodLazyInternals<T>;
|
|
1161
|
+
}
|
|
1162
|
+
export declare const $ZodLazy: core.$constructor<$ZodLazy>;
|
|
1163
|
+
export interface $ZodCustomDef<O = unknown> extends $ZodTypeDef, checks.$ZodCheckDef {
|
|
1164
|
+
type: "custom";
|
|
1165
|
+
check: "custom";
|
|
1166
|
+
path?: PropertyKey[] | undefined;
|
|
1167
|
+
error?: errors.$ZodErrorMap | undefined;
|
|
1168
|
+
params?: Record<string, any> | undefined;
|
|
1169
|
+
fn: (arg: O) => unknown;
|
|
1170
|
+
}
|
|
1171
|
+
export interface $ZodCustomInternals<O = unknown, I = unknown> extends $ZodTypeInternals<O, I>, checks.$ZodCheckInternals<O> {
|
|
1172
|
+
def: $ZodCustomDef;
|
|
1173
|
+
issc: errors.$ZodIssue;
|
|
1174
|
+
isst: never;
|
|
1175
|
+
bag: util.LoosePartial<{
|
|
1176
|
+
Class: typeof util.Class;
|
|
1177
|
+
}>;
|
|
1178
|
+
}
|
|
1179
|
+
export interface $ZodCustom<O = unknown, I = unknown> extends $ZodType {
|
|
1180
|
+
_zod: $ZodCustomInternals<O, I>;
|
|
1181
|
+
}
|
|
1182
|
+
export declare const $ZodCustom: core.$constructor<$ZodCustom>;
|
|
1183
|
+
export type $ZodTypes = $ZodString | $ZodNumber | $ZodBigInt | $ZodBoolean | $ZodDate | $ZodSymbol | $ZodUndefined | $ZodNullable | $ZodNull | $ZodAny | $ZodUnknown | $ZodNever | $ZodVoid | $ZodArray | $ZodObject | $ZodUnion | $ZodIntersection | $ZodTuple | $ZodRecord | $ZodMap | $ZodSet | $ZodLiteral | $ZodEnum | $ZodFunction | $ZodPromise | $ZodLazy | $ZodOptional | $ZodDefault | $ZodPrefault | $ZodTemplateLiteral | $ZodCustom | $ZodTransform | $ZodNonOptional | $ZodReadonly | $ZodNaN | $ZodPipe | $ZodSuccess | $ZodCatch | $ZodFile;
|
|
1184
|
+
export type $ZodStringFormatTypes = $ZodGUID | $ZodUUID | $ZodEmail | $ZodURL | $ZodEmoji | $ZodNanoID | $ZodCUID | $ZodCUID2 | $ZodULID | $ZodXID | $ZodKSUID | $ZodISODateTime | $ZodISODate | $ZodISOTime | $ZodISODuration | $ZodIPv4 | $ZodIPv6 | $ZodMAC | $ZodCIDRv4 | $ZodCIDRv6 | $ZodBase64 | $ZodBase64URL | $ZodE164 | $ZodJWT | $ZodCustomStringFormat<"hex"> | $ZodCustomStringFormat<util.HashFormat> | $ZodCustomStringFormat<"hostname">;
|