@orpc/tanstack-query 2.0.0-beta.20 → 2.0.0-beta.21
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/dist/index.mjs +1 -1
- package/package.json +13 -13
package/dist/index.mjs
CHANGED
|
@@ -532,7 +532,7 @@ function createRouterUtilsInternal(client, options, plugin) {
|
|
|
532
532
|
const recursive = new Proxy(utils, {
|
|
533
533
|
get(target, prop) {
|
|
534
534
|
const value = getOrBind(target, prop);
|
|
535
|
-
const nextClient =
|
|
535
|
+
const nextClient = client[prop];
|
|
536
536
|
if (typeof prop !== "string" || RECURSIVE_CLIENT_UNWRAP_KEYS.has(prop) || !isTypescriptObject(nextClient)) {
|
|
537
537
|
return value;
|
|
538
538
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orpc/tanstack-query",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.0.0-beta.
|
|
4
|
+
"version": "2.0.0-beta.21",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://orpc.dev",
|
|
7
7
|
"repository": {
|
|
@@ -29,20 +29,20 @@
|
|
|
29
29
|
"@tanstack/query-core": ">=5.80.2"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@orpc/
|
|
33
|
-
"@orpc/
|
|
34
|
-
"@orpc/client": "2.0.0-beta.
|
|
35
|
-
"@orpc/
|
|
32
|
+
"@orpc/openapi": "2.0.0-beta.21",
|
|
33
|
+
"@orpc/shared": "2.0.0-beta.21",
|
|
34
|
+
"@orpc/client": "2.0.0-beta.21",
|
|
35
|
+
"@orpc/contract": "2.0.0-beta.21"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@angular/core": "^22.0.
|
|
39
|
-
"@tanstack/angular-query-experimental": "^5.101.
|
|
40
|
-
"@tanstack/query-core": "^5.101.
|
|
41
|
-
"@tanstack/react-query": "^5.101.
|
|
42
|
-
"@tanstack/solid-query": "^5.101.
|
|
43
|
-
"@tanstack/svelte-query": "^6.1.
|
|
44
|
-
"@tanstack/vue-query": "^5.101.
|
|
45
|
-
"svelte": "^5.56.
|
|
38
|
+
"@angular/core": "^22.0.8",
|
|
39
|
+
"@tanstack/angular-query-experimental": "^5.101.4",
|
|
40
|
+
"@tanstack/query-core": "^5.101.4",
|
|
41
|
+
"@tanstack/react-query": "^5.101.4",
|
|
42
|
+
"@tanstack/solid-query": "^5.101.4",
|
|
43
|
+
"@tanstack/svelte-query": "^6.1.38",
|
|
44
|
+
"@tanstack/vue-query": "^5.101.4",
|
|
45
|
+
"svelte": "^5.56.7",
|
|
46
46
|
"vue": "^3.5.38",
|
|
47
47
|
"zod": "^4.4.3"
|
|
48
48
|
},
|