@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.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -1
  2. 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 = get(client, [prop]);
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.20",
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/contract": "2.0.0-beta.20",
33
- "@orpc/openapi": "2.0.0-beta.20",
34
- "@orpc/client": "2.0.0-beta.20",
35
- "@orpc/shared": "2.0.0-beta.20"
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.1",
39
- "@tanstack/angular-query-experimental": "^5.101.0",
40
- "@tanstack/query-core": "^5.101.0",
41
- "@tanstack/react-query": "^5.101.2",
42
- "@tanstack/solid-query": "^5.101.0",
43
- "@tanstack/svelte-query": "^6.1.34",
44
- "@tanstack/vue-query": "^5.101.0",
45
- "svelte": "^5.56.3",
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
  },