From 4e87195739f2a5d9a05451b48773c8afdc680765 Mon Sep 17 00:00:00 2001 From: akiyamn Date: Sun, 24 Sep 2023 23:22:21 +1000 Subject: Initial commit (by create-cloudflare CLI) --- node_modules/zod/LICENSE | 21 + node_modules/zod/README.md | 2847 ++++++++++++++ node_modules/zod/index.d.ts | 2 + node_modules/zod/lib/ZodError.d.ts | 163 + node_modules/zod/lib/ZodError.js | 124 + node_modules/zod/lib/__tests__/Mocker.d.ts | 17 + node_modules/zod/lib/__tests__/Mocker.js | 57 + .../zod/lib/benchmarks/discriminatedUnion.d.ts | 5 + .../zod/lib/benchmarks/discriminatedUnion.js | 79 + node_modules/zod/lib/benchmarks/index.d.ts | 1 + node_modules/zod/lib/benchmarks/index.js | 46 + node_modules/zod/lib/benchmarks/object.d.ts | 5 + node_modules/zod/lib/benchmarks/object.js | 70 + node_modules/zod/lib/benchmarks/primitives.d.ts | 5 + node_modules/zod/lib/benchmarks/primitives.js | 136 + node_modules/zod/lib/benchmarks/realworld.d.ts | 5 + node_modules/zod/lib/benchmarks/realworld.js | 56 + node_modules/zod/lib/benchmarks/string.d.ts | 5 + node_modules/zod/lib/benchmarks/string.js | 55 + node_modules/zod/lib/benchmarks/union.d.ts | 5 + node_modules/zod/lib/benchmarks/union.js | 79 + node_modules/zod/lib/errors.d.ts | 5 + node_modules/zod/lib/errors.js | 17 + node_modules/zod/lib/external.d.ts | 6 + node_modules/zod/lib/external.js | 18 + node_modules/zod/lib/helpers/enumUtil.d.ts | 8 + node_modules/zod/lib/helpers/enumUtil.js | 2 + node_modules/zod/lib/helpers/errorUtil.d.ts | 9 + node_modules/zod/lib/helpers/errorUtil.js | 8 + node_modules/zod/lib/helpers/parseUtil.d.ts | 78 + node_modules/zod/lib/helpers/parseUtil.js | 115 + node_modules/zod/lib/helpers/partialUtil.d.ts | 8 + node_modules/zod/lib/helpers/partialUtil.js | 2 + node_modules/zod/lib/helpers/typeAliases.d.ts | 2 + node_modules/zod/lib/helpers/typeAliases.js | 2 + node_modules/zod/lib/helpers/util.d.ts | 68 + node_modules/zod/lib/helpers/util.js | 142 + node_modules/zod/lib/index.d.ts | 4 + node_modules/zod/lib/index.js | 29 + node_modules/zod/lib/index.mjs | 4006 +++++++++++++++++++ node_modules/zod/lib/index.umd.js | 4120 ++++++++++++++++++++ node_modules/zod/lib/locales/en.d.ts | 3 + node_modules/zod/lib/locales/en.js | 129 + node_modules/zod/lib/types.d.ts | 1029 +++++ node_modules/zod/lib/types.js | 3288 ++++++++++++++++ node_modules/zod/package.json | 119 + 46 files changed, 17000 insertions(+) create mode 100644 node_modules/zod/LICENSE create mode 100644 node_modules/zod/README.md create mode 100644 node_modules/zod/index.d.ts create mode 100644 node_modules/zod/lib/ZodError.d.ts create mode 100644 node_modules/zod/lib/ZodError.js create mode 100644 node_modules/zod/lib/__tests__/Mocker.d.ts create mode 100644 node_modules/zod/lib/__tests__/Mocker.js create mode 100644 node_modules/zod/lib/benchmarks/discriminatedUnion.d.ts create mode 100644 node_modules/zod/lib/benchmarks/discriminatedUnion.js create mode 100644 node_modules/zod/lib/benchmarks/index.d.ts create mode 100644 node_modules/zod/lib/benchmarks/index.js create mode 100644 node_modules/zod/lib/benchmarks/object.d.ts create mode 100644 node_modules/zod/lib/benchmarks/object.js create mode 100644 node_modules/zod/lib/benchmarks/primitives.d.ts create mode 100644 node_modules/zod/lib/benchmarks/primitives.js create mode 100644 node_modules/zod/lib/benchmarks/realworld.d.ts create mode 100644 node_modules/zod/lib/benchmarks/realworld.js create mode 100644 node_modules/zod/lib/benchmarks/string.d.ts create mode 100644 node_modules/zod/lib/benchmarks/string.js create mode 100644 node_modules/zod/lib/benchmarks/union.d.ts create mode 100644 node_modules/zod/lib/benchmarks/union.js create mode 100644 node_modules/zod/lib/errors.d.ts create mode 100644 node_modules/zod/lib/errors.js create mode 100644 node_modules/zod/lib/external.d.ts create mode 100644 node_modules/zod/lib/external.js create mode 100644 node_modules/zod/lib/helpers/enumUtil.d.ts create mode 100644 node_modules/zod/lib/helpers/enumUtil.js create mode 100644 node_modules/zod/lib/helpers/errorUtil.d.ts create mode 100644 node_modules/zod/lib/helpers/errorUtil.js create mode 100644 node_modules/zod/lib/helpers/parseUtil.d.ts create mode 100644 node_modules/zod/lib/helpers/parseUtil.js create mode 100644 node_modules/zod/lib/helpers/partialUtil.d.ts create mode 100644 node_modules/zod/lib/helpers/partialUtil.js create mode 100644 node_modules/zod/lib/helpers/typeAliases.d.ts create mode 100644 node_modules/zod/lib/helpers/typeAliases.js create mode 100644 node_modules/zod/lib/helpers/util.d.ts create mode 100644 node_modules/zod/lib/helpers/util.js create mode 100644 node_modules/zod/lib/index.d.ts create mode 100644 node_modules/zod/lib/index.js create mode 100644 node_modules/zod/lib/index.mjs create mode 100644 node_modules/zod/lib/index.umd.js create mode 100644 node_modules/zod/lib/locales/en.d.ts create mode 100644 node_modules/zod/lib/locales/en.js create mode 100644 node_modules/zod/lib/types.d.ts create mode 100644 node_modules/zod/lib/types.js create mode 100644 node_modules/zod/package.json (limited to 'node_modules/zod') diff --git a/node_modules/zod/LICENSE b/node_modules/zod/LICENSE new file mode 100644 index 0000000..2c93bb5 --- /dev/null +++ b/node_modules/zod/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 Colin McDonnell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/node_modules/zod/README.md b/node_modules/zod/README.md new file mode 100644 index 0000000..5649249 --- /dev/null +++ b/node_modules/zod/README.md @@ -0,0 +1,2847 @@ +
+
+
+ ✨ https://zod.dev ✨
+
+ TypeScript-first schema validation with static type inference
+
|
+
+ + Astro + + astro.build + +
+ Astro is a new kind of static |
+
+
+
+
+ + Glow Wallet + + glow.app + + Your new favorite
+ |
+
|
+
+ + Deletype + + deletype.com + |
+
+
+ + Proxy + + proxy.com + |
+
|
+
+ + Trigger.dev + + trigger.dev + + Effortless automation for developers. + |
+
+
+ + Transloadit + + transloadit.com + + Simple file processing for developers. + |
+
|
+
+ + Infisical + + infisical.com + + Open-source platform for secret |
+
+
+
+
+ + Numeric + + numeric.io + |
+
+
+ + Snaplet + + snaplet.dev + |
+ |
|
+
+ + Marcato Partners + + marcatopartners.com + |
+
+
+ + Interval + + interval.com + |
+
+
+ + Seasoned Software + + seasoned.cc + |
+
|
+
+ + Bamboo Creative + + bamboocreative.nz + |
+ ||
|
+
+ + Brandon Bayer + + @flybayer, + creator of Blitz.js + + |
+
+
+ + Jiří Brabec + + @brabeji + + |
+
+
+ + Alex Johansson + + @alexdotjs + |
+
|
+
+ + Fungible Systems + + fungible.systems + + |
+
+
+ + Adaptable + + adaptable.io + + |
+
+
+ + Avana Wallet + + avanawallet.com + Solana non-custodial wallet + + |
+
|
+
+ + Jason Lengstorf + + learnwithjason.dev + + |
+
+
+ + Global Illumination, Inc. + + ill.inc + + |
+
+
+ + MasterBorn + + masterborn.com + + |
+