@orpc/zod 2.0.0-beta.23 → 2.0.0-beta.24

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
@@ -44,6 +44,7 @@ You can read the documentation [here](https://orpc.dev).
44
44
 
45
45
  - [@orpc/publisher](https://www.npmjs.com/package/@orpc/publisher): Pub/Sub with memory, Redis, and Upstash adapters.
46
46
  - [@orpc/ratelimit](https://www.npmjs.com/package/@orpc/ratelimit): Rate limiting with memory, Redis, and Upstash adapters.
47
+ - [@orpc/hibernation](https://www.npmjs.com/package/@orpc/hibernation): Leverage Hibernation APIs like [Cloudflare's Hibernation WebSocket](https://developers.cloudflare.com/durable-objects/best-practices/websockets/#durable-objects-hibernation-websocket-api).
47
48
  - [@orpc/json-schema](https://www.npmjs.com/package/@orpc/json-schema): Smart coercion for OpenAPI requests.
48
49
 
49
50
  **Framework & ecosystem integrations**
@@ -114,6 +115,7 @@ Like what we build over at [middleapi](https://github.com/middleapi)? You can he
114
115
  </tr>
115
116
  <tr>
116
117
  <td align="center"><a href="https://github.com/itigoore01?ref=orpc" target="_blank" rel="noopener" title="shota"><img src="https://avatars.githubusercontent.com/u/11831107?u=c976a6dc7e055eb026304c46c99100ed22b0c8e0&amp;v=4" width="139" alt="shota"/><br />shota</a></td>
118
+ <td align="center"><a href="https://github.com/ellis-driscoll?ref=orpc" target="_blank" rel="noopener" title="Ellis Driscoll"><img src="https://avatars.githubusercontent.com/u/70685966?u=c5f95bc33b5991d9744abe00052542e4a2ed3cb9&amp;v=4" width="139" alt="Ellis Driscoll"/><br />Ellis Driscoll</a></td>
117
119
  </tr>
118
120
  </table>
119
121
 
@@ -139,8 +141,9 @@ Like what we build over at [middleapi](https://github.com/middleapi)? You can he
139
141
  <td align="center"><a href="https://github.com/mr-kelly?ref=orpc" target="_blank" rel="noopener" title="Kelly Peilin Chan"><img src="https://avatars.githubusercontent.com/u/520852?u=6b0f7105f694e7b5cacf410a3f04c7044b469dc8&amp;v=4" width="119" alt="Kelly Peilin Chan"/><br />Kelly Peilin Chan</a></td>
140
142
  </tr>
141
143
  <tr>
144
+ <td align="center"><a href="https://github.com/guyariely?ref=orpc" target="_blank" rel="noopener" title="Guy Ariely"><img src="https://avatars.githubusercontent.com/u/42813496?u=edb6b7f563bf28e160a290832e7da57c0506f8ca&amp;v=4" width="119" alt="Guy Ariely"/><br />Guy Ariely</a></td>
142
145
  <td align="center"><a href="https://github.com/piscis?ref=orpc" target="_blank" rel="noopener" title="Alex"><img src="https://avatars.githubusercontent.com/u/326163?u=b245f368bd940cf51d08c0b6bf55f8257f359437&amp;v=4" width="119" alt="Alex"/><br />Alex</a></td>
143
- <td align="center"><a href="https://github.com/finom?ref=orpc" target="_blank" rel="noopener" title="Andrey Gubanov"><img src="https://avatars.githubusercontent.com/u/1082083?u=29e91400dbd4a9c217048a8f59562c4f740498e6&amp;v=4" width="119" alt="Andrey Gubanov"/><br />Andrey Gubanov</a></td>
146
+ <td align="center"><a href="https://github.com/finom?ref=orpc" target="_blank" rel="noopener" title="Andrey Gubanov"><img src="https://avatars.githubusercontent.com/u/1082083?u=c5f2daf7ebece498e85c83367bb37b4e10e2649d&amp;v=4" width="119" alt="Andrey Gubanov"/><br />Andrey Gubanov</a></td>
144
147
  </tr>
145
148
  </table>
146
149
 
package/dist/index.d.mts CHANGED
@@ -15,6 +15,12 @@ interface ZodToJsonSchemaConverterOptions extends Omit<ToJSONSchemaParams, 'targ
15
15
  */
16
16
  cache?: boolean;
17
17
  }
18
+ /**
19
+ * Converts Zod schemas into JSON Schema using Zod's built-in `toJSONSchema`,
20
+ * with additional support for types such as `z.bigint()`, `z.date()`, `z.set()`, and `z.map()`.
21
+ *
22
+ * @see {@link https://orpc.dev/docs/integrations/zod | Zod Integration}
23
+ */
18
24
  declare class ZodToJsonSchemaConverter implements JsonSchemaConverter {
19
25
  private readonly toJSONSchemaParams;
20
26
  private readonly cache;
@@ -42,6 +48,8 @@ declare class ZodToJsonSchemaConverter implements JsonSchemaConverter {
42
48
  * examples: [{ name: 'John', age: 20 }],
43
49
  * })
44
50
  * ```
51
+ *
52
+ * @see {@link https://orpc.dev/docs/integrations/zod | Zod Integration}
45
53
  */
46
54
  declare const JSON_SCHEMA_REGISTRY: zod_v4_core.$ZodRegistry<{
47
55
  $anchor?: string;
@@ -121,6 +129,8 @@ declare const JSON_SCHEMA_REGISTRY: zod_v4_core.$ZodRegistry<{
121
129
  * examples: [{ name: 'John', age: "20" }],
122
130
  * })
123
131
  * ```
132
+ *
133
+ * @see {@link https://orpc.dev/docs/integrations/zod | Zod Integration}
124
134
  */
125
135
  declare const JSON_SCHEMA_INPUT_REGISTRY: zod_v4_core.$ZodRegistry<{
126
136
  $anchor?: string;
@@ -200,6 +210,8 @@ declare const JSON_SCHEMA_INPUT_REGISTRY: zod_v4_core.$ZodRegistry<{
200
210
  * examples: [{ name: 'John', age: 20 }],
201
211
  * })
202
212
  * ```
213
+ *
214
+ * @see {@link https://orpc.dev/docs/integrations/zod | Zod Integration}
203
215
  */
204
216
  declare const JSON_SCHEMA_OUTPUT_REGISTRY: zod_v4_core.$ZodRegistry<{
205
217
  $anchor?: string;
package/dist/index.d.ts CHANGED
@@ -15,6 +15,12 @@ interface ZodToJsonSchemaConverterOptions extends Omit<ToJSONSchemaParams, 'targ
15
15
  */
16
16
  cache?: boolean;
17
17
  }
18
+ /**
19
+ * Converts Zod schemas into JSON Schema using Zod's built-in `toJSONSchema`,
20
+ * with additional support for types such as `z.bigint()`, `z.date()`, `z.set()`, and `z.map()`.
21
+ *
22
+ * @see {@link https://orpc.dev/docs/integrations/zod | Zod Integration}
23
+ */
18
24
  declare class ZodToJsonSchemaConverter implements JsonSchemaConverter {
19
25
  private readonly toJSONSchemaParams;
20
26
  private readonly cache;
@@ -42,6 +48,8 @@ declare class ZodToJsonSchemaConverter implements JsonSchemaConverter {
42
48
  * examples: [{ name: 'John', age: 20 }],
43
49
  * })
44
50
  * ```
51
+ *
52
+ * @see {@link https://orpc.dev/docs/integrations/zod | Zod Integration}
45
53
  */
46
54
  declare const JSON_SCHEMA_REGISTRY: zod_v4_core.$ZodRegistry<{
47
55
  $anchor?: string;
@@ -121,6 +129,8 @@ declare const JSON_SCHEMA_REGISTRY: zod_v4_core.$ZodRegistry<{
121
129
  * examples: [{ name: 'John', age: "20" }],
122
130
  * })
123
131
  * ```
132
+ *
133
+ * @see {@link https://orpc.dev/docs/integrations/zod | Zod Integration}
124
134
  */
125
135
  declare const JSON_SCHEMA_INPUT_REGISTRY: zod_v4_core.$ZodRegistry<{
126
136
  $anchor?: string;
@@ -200,6 +210,8 @@ declare const JSON_SCHEMA_INPUT_REGISTRY: zod_v4_core.$ZodRegistry<{
200
210
  * examples: [{ name: 'John', age: 20 }],
201
211
  * })
202
212
  * ```
213
+ *
214
+ * @see {@link https://orpc.dev/docs/integrations/zod | Zod Integration}
203
215
  */
204
216
  declare const JSON_SCHEMA_OUTPUT_REGISTRY: zod_v4_core.$ZodRegistry<{
205
217
  $anchor?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@orpc/zod",
3
3
  "type": "module",
4
- "version": "2.0.0-beta.23",
4
+ "version": "2.0.0-beta.24",
5
5
  "license": "MIT",
6
6
  "homepage": "https://orpc.dev",
7
7
  "repository": {
@@ -30,7 +30,7 @@
30
30
  },
31
31
  "dependencies": {
32
32
  "json-schema-typed": "^8.0.2",
33
- "@orpc/json-schema": "2.0.0-beta.23"
33
+ "@orpc/json-schema": "2.0.0-beta.24"
34
34
  },
35
35
  "devDependencies": {
36
36
  "zod": "^4.4.3"