@trpc/next 10.37.1 → 10.38.1

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
@@ -31,6 +31,9 @@ yarn add @trpc/next @trpc/react-query @tanstack/react-query
31
31
 
32
32
  # pnpm
33
33
  pnpm add @trpc/next @trpc/react-query @tanstack/react-query
34
+
35
+ # Bun
36
+ bun add @trpc/next @trpc/react-query @tanstack/react-query
34
37
  ```
35
38
 
36
39
  ## Basic Example
@@ -0,0 +1 @@
1
+ export * from '../../dist/app-dir/create-action-hook';
@@ -0,0 +1 @@
1
+ module.exports = require('../../dist/app-dir/create-action-hook');
@@ -0,0 +1 @@
1
+ export * from '../../dist/app-dir/create-action-hook.tsx';
@@ -0,0 +1 @@
1
+ module.exports = require('../../dist/app-dir/create-action-hook.tsx');
@@ -0,0 +1 @@
1
+ export * from '../../../dist/app-dir/links/nextFetch';
@@ -0,0 +1 @@
1
+ module.exports = require('../../../dist/app-dir/links/nextFetch');
@@ -0,0 +1 @@
1
+ export * from '../../dist/app-dir/react';
@@ -0,0 +1 @@
1
+ module.exports = require('../../dist/app-dir/react');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trpc/next",
3
- "version": "10.37.1",
3
+ "version": "10.38.1",
4
4
  "description": "The tRPC Next.js library",
5
5
  "author": "KATT",
6
6
  "license": "MIT",
@@ -66,9 +66,9 @@
66
66
  ],
67
67
  "peerDependencies": {
68
68
  "@tanstack/react-query": "^4.18.0",
69
- "@trpc/client": "10.37.1",
70
- "@trpc/react-query": "10.37.1",
71
- "@trpc/server": "10.37.1",
69
+ "@trpc/client": "10.38.1",
70
+ "@trpc/react-query": "10.38.1",
71
+ "@trpc/server": "10.38.1",
72
72
  "next": "*",
73
73
  "react": ">=16.8.0",
74
74
  "react-dom": ">=16.8.0"
@@ -78,9 +78,9 @@
78
78
  },
79
79
  "devDependencies": {
80
80
  "@tanstack/react-query": "^4.18.0",
81
- "@trpc/client": "10.37.1",
82
- "@trpc/react-query": "10.37.1",
83
- "@trpc/server": "10.37.1",
81
+ "@trpc/client": "10.38.1",
82
+ "@trpc/react-query": "10.38.1",
83
+ "@trpc/server": "10.38.1",
84
84
  "@types/express": "^4.17.17",
85
85
  "@types/node": "^18.16.16",
86
86
  "@types/react": "^18.2.8",
@@ -100,5 +100,5 @@
100
100
  "funding": [
101
101
  "https://trpc.io/sponsor"
102
102
  ],
103
- "gitHead": "9ebca19eb2690d4717601d9d54f39e4ffeff369f"
103
+ "gitHead": "c48811ab55efbec8d1a9db778c46be2dc5c25818"
104
104
  }