@reactionary/core 0.2.11 → 0.2.13
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.
|
@@ -33,11 +33,11 @@ class ReactionaryDecoratorOptions {
|
|
|
33
33
|
/**
|
|
34
34
|
* The schema for the input (query or mutation) type, for validation purposes
|
|
35
35
|
*/
|
|
36
|
-
this.inputSchema = z.
|
|
36
|
+
this.inputSchema = z.unknown();
|
|
37
37
|
/**
|
|
38
38
|
* The schema for the primary output type, for validation purposes
|
|
39
39
|
*/
|
|
40
|
-
this.outputSchema = z.
|
|
40
|
+
this.outputSchema = z.unknown();
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
function Reactionary(options) {
|
package/package.json
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reactionary/core",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.13",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"types": "src/index.d.ts",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"zod": "4.1.9",
|
|
8
8
|
"@upstash/redis": "^1.34.9",
|
|
9
|
-
"node-object-hash": "^3.1.1"
|
|
10
|
-
|
|
9
|
+
"node-object-hash": "^3.1.1"
|
|
10
|
+
},
|
|
11
|
+
"peerDependencies": {
|
|
12
|
+
"@opentelemetry/api": "^1.0.0"
|
|
11
13
|
},
|
|
12
14
|
"type": "module",
|
|
13
15
|
"sideEffects": false
|