@orpc/zod 0.0.0-next.f9e0a4c → 0.0.0-next.f9e5dec

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/README.md CHANGED
@@ -17,6 +17,9 @@
17
17
  <a href="https://discord.gg/TXEbwRBvQn">
18
18
  <img alt="Discord" src="https://img.shields.io/discord/1308966753044398161?color=7389D8&label&logo=discord&logoColor=ffffff" />
19
19
  </a>
20
+ <a href="https://deepwiki.com/unnoq/orpc">
21
+ <img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki">
22
+ </a>
20
23
  </div>
21
24
 
22
25
  <h3 align="center">Typesafe APIs Made Simple 🪄</h3>
@@ -31,7 +34,7 @@
31
34
  - **📘 First-Class OpenAPI**: Built-in support that fully adheres to the OpenAPI standard.
32
35
  - **📝 Contract-First Development**: Optionally define your API contract before implementation.
33
36
  - **🔍 First-Class OpenTelemetry**: Seamlessly integrate with OpenTelemetry for observability.
34
- - **⚙️ Framework Integrations**: Seamlessly integrate with TanStack Query (React, Vue, Solid, Svelte, Angular), Pinia Colada, and more.
37
+ - **⚙️ Framework Integrations**: Seamlessly integrate with TanStack Query (React, Vue, Solid, Svelte, Angular), SWR, Pinia Colada, and more.
35
38
  - **🚀 Server Actions**: Fully compatible with React Server Actions on Next.js, TanStack Start, and other platforms.
36
39
  - **🔠 Standard Schema Support**: Works out of the box with Zod, Valibot, ArkType, and other schema validators.
37
40
  - **🗃️ Native Types**: Supports native types like Date, File, Blob, BigInt, URL, and more.
@@ -54,6 +57,7 @@ You can find the full documentation [here](https://orpc.unnoq.com).
54
57
  - [@orpc/nest](https://www.npmjs.com/package/@orpc/nest): Deeply integrate oRPC with [NestJS](https://nestjs.com/).
55
58
  - [@orpc/react](https://www.npmjs.com/package/@orpc/react): Utilities for integrating oRPC with React and React Server Actions.
56
59
  - [@orpc/tanstack-query](https://www.npmjs.com/package/@orpc/tanstack-query): [TanStack Query](https://tanstack.com/query/latest) integration.
60
+ - [@orpc/experimental-react-swr](https://www.npmjs.com/package/@orpc/experimental-react-swr): [SWR](https://swr.vercel.app/) integration.
57
61
  - [@orpc/vue-colada](https://www.npmjs.com/package/@orpc/vue-colada): Integration with [Pinia Colada](https://pinia-colada.esm.dev/).
58
62
  - [@orpc/hey-api](https://www.npmjs.com/package/@orpc/hey-api): [Hey API](https://heyapi.dev/) integration.
59
63
  - [@orpc/zod](https://www.npmjs.com/package/@orpc/zod): More schemas that [Zod](https://zod.dev/) doesn't support yet.
package/dist/index.mjs CHANGED
@@ -724,7 +724,7 @@ class ZodToJsonSchemaConverter {
724
724
  const anyOf = [];
725
725
  let required = true;
726
726
  for (const item of schema_._def.options) {
727
- const [itemRequired, itemJson] = this.convert(item, options, lazyDepth, false, false, structureDepth);
727
+ const [itemRequired, itemJson] = this.convert(item, options, lazyDepth, false, false, structureDepth + 1);
728
728
  if (!itemRequired) {
729
729
  required = false;
730
730
  if (itemJson !== this.unsupportedJsonSchema) {
@@ -734,9 +734,6 @@ class ZodToJsonSchemaConverter {
734
734
  anyOf.push(itemJson);
735
735
  }
736
736
  }
737
- if (anyOf.length === 1) {
738
- return [required, anyOf[0]];
739
- }
740
737
  return [required, { anyOf }];
741
738
  }
742
739
  case ZodFirstPartyTypeKind.ZodIntersection: {
@@ -744,7 +741,7 @@ class ZodToJsonSchemaConverter {
744
741
  const allOf = [];
745
742
  let required = false;
746
743
  for (const item of [schema_._def.left, schema_._def.right]) {
747
- const [itemRequired, itemJson] = this.convert(item, options, lazyDepth, false, false, structureDepth);
744
+ const [itemRequired, itemJson] = this.convert(item, options, lazyDepth, false, false, structureDepth + 1);
748
745
  allOf.push(itemJson);
749
746
  if (itemRequired) {
750
747
  required = true;
@@ -446,7 +446,7 @@ class ZodToJsonSchemaConverter {
446
446
  const anyOf = [];
447
447
  let required = true;
448
448
  for (const item of union._zod.def.options) {
449
- const [itemRequired, itemJson] = this.#convert(item, options2, lazyDepth2, structureDepth);
449
+ const [itemRequired, itemJson] = this.#convert(item, options2, lazyDepth2, structureDepth + 1);
450
450
  if (!itemRequired) {
451
451
  required = false;
452
452
  }
@@ -460,14 +460,14 @@ class ZodToJsonSchemaConverter {
460
460
  }
461
461
  }
462
462
  }
463
- return [required, anyOf.length === 1 ? anyOf[0] : { anyOf }];
463
+ return [required, { anyOf }];
464
464
  }
465
465
  case "intersection": {
466
466
  const intersection = schema2;
467
467
  const json = { allOf: [] };
468
468
  let required = false;
469
469
  for (const item of [intersection._zod.def.left, intersection._zod.def.right]) {
470
- const [itemRequired, itemJson] = this.#convert(item, options2, lazyDepth2, structureDepth);
470
+ const [itemRequired, itemJson] = this.#convert(item, options2, lazyDepth2, structureDepth + 1);
471
471
  json.allOf.push(itemJson);
472
472
  if (itemRequired) {
473
473
  required = true;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@orpc/zod",
3
3
  "type": "module",
4
- "version": "0.0.0-next.f9e0a4c",
4
+ "version": "0.0.0-next.f9e5dec",
5
5
  "license": "MIT",
6
6
  "homepage": "https://orpc.unnoq.com",
7
7
  "repository": {
@@ -30,18 +30,18 @@
30
30
  ],
31
31
  "peerDependencies": {
32
32
  "zod": ">=3.25.0",
33
- "@orpc/contract": "0.0.0-next.f9e0a4c",
34
- "@orpc/server": "0.0.0-next.f9e0a4c"
33
+ "@orpc/contract": "0.0.0-next.f9e5dec",
34
+ "@orpc/server": "0.0.0-next.f9e5dec"
35
35
  },
36
36
  "dependencies": {
37
37
  "escape-string-regexp": "^5.0.0",
38
38
  "wildcard-match": "^5.1.3",
39
- "@orpc/json-schema": "0.0.0-next.f9e0a4c",
40
- "@orpc/shared": "0.0.0-next.f9e0a4c",
41
- "@orpc/openapi": "0.0.0-next.f9e0a4c"
39
+ "@orpc/json-schema": "0.0.0-next.f9e5dec",
40
+ "@orpc/openapi": "0.0.0-next.f9e5dec",
41
+ "@orpc/shared": "0.0.0-next.f9e5dec"
42
42
  },
43
43
  "devDependencies": {
44
- "zod": "^4.0.17"
44
+ "zod": "^4.1.12"
45
45
  },
46
46
  "scripts": {
47
47
  "build": "unbuild",