@trpc/next 10.0.0-proxy-alpha.70 → 10.0.0-proxy-alpha.73

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trpc/next",
3
- "version": "10.0.0-proxy-alpha.70",
3
+ "version": "10.0.0-proxy-alpha.73",
4
4
  "description": "tRPC Next lib",
5
5
  "author": "KATT",
6
6
  "license": "MIT",
@@ -36,9 +36,9 @@
36
36
  },
37
37
  "peerDependencies": {
38
38
  "@tanstack/react-query": "^4.0.10",
39
- "@trpc/client": "10.0.0-proxy-alpha.70",
40
- "@trpc/react": "10.0.0-proxy-alpha.70",
41
- "@trpc/server": "10.0.0-proxy-alpha.70",
39
+ "@trpc/client": "10.0.0-proxy-alpha.73",
40
+ "@trpc/react": "10.0.0-proxy-alpha.73",
41
+ "@trpc/server": "10.0.0-proxy-alpha.73",
42
42
  "next": "*",
43
43
  "react": ">=16.8.0",
44
44
  "react-dom": ">=16.8.0"
@@ -48,9 +48,9 @@
48
48
  },
49
49
  "devDependencies": {
50
50
  "@tanstack/react-query": "^4.0.10",
51
- "@trpc/client": "10.0.0-proxy-alpha.70",
52
- "@trpc/react": "10.0.0-proxy-alpha.70",
53
- "@trpc/server": "10.0.0-proxy-alpha.70",
51
+ "@trpc/client": "10.0.0-proxy-alpha.73",
52
+ "@trpc/react": "10.0.0-proxy-alpha.73",
53
+ "@trpc/server": "10.0.0-proxy-alpha.73",
54
54
  "@types/express": "^4.17.12",
55
55
  "express": "^4.17.1",
56
56
  "next": "^12.1.6",
@@ -61,5 +61,5 @@
61
61
  "publishConfig": {
62
62
  "access": "public"
63
63
  },
64
- "gitHead": "f61dfbb2485fe7332ca65ddc1040d8f900534a4f"
64
+ "gitHead": "1ed4127160cf0fcc873494f407de152203bcae01"
65
65
  }
@@ -30,7 +30,7 @@ export function createTRPCNext<
30
30
  const context = hooks.useContext();
31
31
  // create a stable reference of the utils context
32
32
  return useMemo(() => {
33
- return createReactQueryUtilsProxy(context as any);
33
+ return (createReactQueryUtilsProxy as any)(context);
34
34
  }, [context]);
35
35
  };
36
36
  }