@orpc/zod 0.0.0-next.a246703 → 0.0.0-next.a2b3a55

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
@@ -53,6 +53,7 @@ You can find the full documentation [here](https://orpc.unnoq.com).
53
53
  - [@orpc/contract](https://www.npmjs.com/package/@orpc/contract): Build your API contract.
54
54
  - [@orpc/server](https://www.npmjs.com/package/@orpc/server): Build your API or implement API contract.
55
55
  - [@orpc/client](https://www.npmjs.com/package/@orpc/client): Consume your API on the client with type-safety.
56
+ - [@orpc/react](https://www.npmjs.com/package/@orpc/react): Utilities for integrating oRPC with React and React Server Actions.
56
57
  - [@orpc/react-query](https://www.npmjs.com/package/@orpc/react-query): Integration with [React Query](https://tanstack.com/query/latest/docs/framework/react/overview).
57
58
  - [@orpc/vue-query](https://www.npmjs.com/package/@orpc/vue-query): Integration with [Vue Query](https://tanstack.com/query/latest/docs/framework/vue/overview).
58
59
  - [@orpc/solid-query](https://www.npmjs.com/package/@orpc/solid-query): Integration with [Solid Query](https://tanstack.com/query/latest/docs/framework/solid/overview).
package/dist/index.d.mts CHANGED
@@ -78,4 +78,5 @@ declare const oz: {
78
78
  openapi: typeof customJsonSchema;
79
79
  };
80
80
 
81
- export { type CustomParams, type CustomZodDef, ZodSmartCoercionPlugin, ZodToJsonSchemaConverter, type ZodToJsonSchemaOptions, blob, composeParams, customJsonSchema, file, getCustomJsonSchema, getCustomZodDef, oz, regexp, setCustomZodDef, url };
81
+ export { ZodSmartCoercionPlugin, ZodToJsonSchemaConverter, blob, composeParams, customJsonSchema, file, getCustomJsonSchema, getCustomZodDef, oz, regexp, setCustomZodDef, url };
82
+ export type { CustomParams, CustomZodDef, ZodToJsonSchemaOptions };
package/dist/index.d.ts CHANGED
@@ -78,4 +78,5 @@ declare const oz: {
78
78
  openapi: typeof customJsonSchema;
79
79
  };
80
80
 
81
- export { type CustomParams, type CustomZodDef, ZodSmartCoercionPlugin, ZodToJsonSchemaConverter, type ZodToJsonSchemaOptions, blob, composeParams, customJsonSchema, file, getCustomJsonSchema, getCustomZodDef, oz, regexp, setCustomZodDef, url };
81
+ export { ZodSmartCoercionPlugin, ZodToJsonSchemaConverter, blob, composeParams, customJsonSchema, file, getCustomJsonSchema, getCustomZodDef, oz, regexp, setCustomZodDef, url };
82
+ export type { CustomParams, CustomZodDef, ZodToJsonSchemaOptions };
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.a246703",
4
+ "version": "0.0.0-next.a2b3a55",
5
5
  "license": "MIT",
6
6
  "homepage": "https://orpc.unnoq.com",
7
7
  "repository": {
@@ -24,18 +24,18 @@
24
24
  "dist"
25
25
  ],
26
26
  "peerDependencies": {
27
- "@orpc/contract": "0.0.0-next.a246703",
28
- "@orpc/server": "0.0.0-next.a246703"
27
+ "zod": "^3.24.2",
28
+ "@orpc/contract": "0.0.0-next.a2b3a55",
29
+ "@orpc/server": "0.0.0-next.a2b3a55"
29
30
  },
30
31
  "dependencies": {
31
32
  "escape-string-regexp": "^5.0.0",
32
33
  "wildcard-match": "^5.1.3",
33
- "zod": "^3.24.2",
34
- "@orpc/openapi": "0.0.0-next.a246703",
35
- "@orpc/shared": "0.0.0-next.a246703"
34
+ "@orpc/openapi": "0.0.0-next.a2b3a55",
35
+ "@orpc/shared": "0.0.0-next.a2b3a55"
36
36
  },
37
37
  "devDependencies": {
38
- "zod-to-json-schema": "^3.24.3"
38
+ "zod-to-json-schema": "^3.24.5"
39
39
  },
40
40
  "scripts": {
41
41
  "build": "unbuild",