@trpc/next 11.3.2-canary.4 → 11.4.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.
@@ -0,0 +1 @@
1
+ export * from '../../dist/app-dir/client';
@@ -0,0 +1 @@
1
+ module.exports = require('../../dist/app-dir/client');
@@ -0,0 +1 @@
1
+ export * from '../../../dist/app-dir/links/nextCache';
@@ -0,0 +1 @@
1
+ module.exports = require('../../../dist/app-dir/links/nextCache');
@@ -0,0 +1 @@
1
+ export * from '../../../dist/app-dir/links/nextHttp';
@@ -0,0 +1 @@
1
+ module.exports = require('../../../dist/app-dir/links/nextHttp');
@@ -0,0 +1 @@
1
+ export * from '../../dist/app-dir/server';
@@ -0,0 +1 @@
1
+ module.exports = require('../../dist/app-dir/server');
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@trpc/next",
4
- "version": "11.3.2-canary.4+e70e78413",
4
+ "version": "11.4.1",
5
5
  "description": "The tRPC Next.js library",
6
6
  "author": "KATT",
7
7
  "license": "MIT",
@@ -33,62 +33,62 @@
33
33
  "./package.json": "./package.json",
34
34
  ".": {
35
35
  "import": {
36
- "default": "./dist/index.mjs",
37
- "types": "./dist/index.d.mts"
36
+ "types": "./dist/index.d.mts",
37
+ "default": "./dist/index.mjs"
38
38
  },
39
39
  "require": {
40
- "default": "./dist/index.cjs",
41
- "types": "./dist/index.d.cts"
40
+ "types": "./dist/index.d.cts",
41
+ "default": "./dist/index.cjs"
42
42
  }
43
43
  },
44
44
  "./app-dir/client": {
45
45
  "import": {
46
- "default": "./dist/app-dir/client.mjs",
47
- "types": "./dist/app-dir/client.d.mts"
46
+ "types": "./dist/app-dir/client.d.mts",
47
+ "default": "./dist/app-dir/client.mjs"
48
48
  },
49
49
  "require": {
50
- "default": "./dist/app-dir/client.cjs",
51
- "types": "./dist/app-dir/client.d.cts"
50
+ "types": "./dist/app-dir/client.d.cts",
51
+ "default": "./dist/app-dir/client.cjs"
52
52
  }
53
53
  },
54
54
  "./app-dir/links/nextCache": {
55
55
  "import": {
56
- "default": "./dist/app-dir/links/nextCache.mjs",
57
- "types": "./dist/app-dir/links/nextCache.d.mts"
56
+ "types": "./dist/app-dir/links/nextCache.d.mts",
57
+ "default": "./dist/app-dir/links/nextCache.mjs"
58
58
  },
59
59
  "require": {
60
- "default": "./dist/app-dir/links/nextCache.cjs",
61
- "types": "./dist/app-dir/links/nextCache.d.cts"
60
+ "types": "./dist/app-dir/links/nextCache.d.cts",
61
+ "default": "./dist/app-dir/links/nextCache.cjs"
62
62
  }
63
63
  },
64
64
  "./app-dir/links/nextHttp": {
65
65
  "import": {
66
- "default": "./dist/app-dir/links/nextHttp.mjs",
67
- "types": "./dist/app-dir/links/nextHttp.d.mts"
66
+ "types": "./dist/app-dir/links/nextHttp.d.mts",
67
+ "default": "./dist/app-dir/links/nextHttp.mjs"
68
68
  },
69
69
  "require": {
70
- "default": "./dist/app-dir/links/nextHttp.cjs",
71
- "types": "./dist/app-dir/links/nextHttp.d.cts"
70
+ "types": "./dist/app-dir/links/nextHttp.d.cts",
71
+ "default": "./dist/app-dir/links/nextHttp.cjs"
72
72
  }
73
73
  },
74
74
  "./app-dir/server": {
75
75
  "import": {
76
- "default": "./dist/app-dir/server.mjs",
77
- "types": "./dist/app-dir/server.d.mts"
76
+ "types": "./dist/app-dir/server.d.mts",
77
+ "default": "./dist/app-dir/server.mjs"
78
78
  },
79
79
  "require": {
80
- "default": "./dist/app-dir/server.cjs",
81
- "types": "./dist/app-dir/server.d.cts"
80
+ "types": "./dist/app-dir/server.d.cts",
81
+ "default": "./dist/app-dir/server.cjs"
82
82
  }
83
83
  },
84
84
  "./ssrPrepass": {
85
85
  "import": {
86
- "default": "./dist/ssrPrepass.mjs",
87
- "types": "./dist/ssrPrepass.d.mts"
86
+ "types": "./dist/ssrPrepass.d.mts",
87
+ "default": "./dist/ssrPrepass.mjs"
88
88
  },
89
89
  "require": {
90
- "default": "./dist/ssrPrepass.cjs",
91
- "types": "./dist/ssrPrepass.d.cts"
90
+ "types": "./dist/ssrPrepass.d.cts",
91
+ "default": "./dist/ssrPrepass.cjs"
92
92
  }
93
93
  }
94
94
  },
@@ -104,9 +104,9 @@
104
104
  ],
105
105
  "peerDependencies": {
106
106
  "@tanstack/react-query": "^5.59.15",
107
- "@trpc/client": "11.3.2-canary.4+e70e78413",
108
- "@trpc/react-query": "11.3.2-canary.4+e70e78413",
109
- "@trpc/server": "11.3.2-canary.4+e70e78413",
107
+ "@trpc/client": "11.4.1",
108
+ "@trpc/react-query": "11.4.1",
109
+ "@trpc/server": "11.4.1",
110
110
  "next": "*",
111
111
  "react": ">=16.8.0",
112
112
  "react-dom": ">=16.8.0",
@@ -122,9 +122,9 @@
122
122
  },
123
123
  "devDependencies": {
124
124
  "@tanstack/react-query": "^5.80.3",
125
- "@trpc/client": "11.3.2-canary.4+e70e78413",
126
- "@trpc/react-query": "11.3.2-canary.4+e70e78413",
127
- "@trpc/server": "11.3.2-canary.4+e70e78413",
125
+ "@trpc/client": "11.4.1",
126
+ "@trpc/react-query": "11.4.1",
127
+ "@trpc/server": "11.4.1",
128
128
  "@types/express": "^5.0.0",
129
129
  "@types/node": "^22.13.5",
130
130
  "@types/react": "^19.1.0",
@@ -145,5 +145,5 @@
145
145
  "funding": [
146
146
  "https://trpc.io/sponsor"
147
147
  ],
148
- "gitHead": "e70e78413d5a05447c29f8b1e60aaa330607888f"
148
+ "gitHead": "40025d7df6c0bc9fefe21c9a20969565017be138"
149
149
  }
@@ -0,0 +1 @@
1
+ export * from '../dist/ssrPrepass';
@@ -0,0 +1 @@
1
+ module.exports = require('../dist/ssrPrepass');