@trpc/client 11.4.0 → 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.
- package/links/httpBatchLink/index.d.ts +1 -0
- package/links/httpBatchLink/index.js +1 -0
- package/links/httpLink/index.d.ts +1 -0
- package/links/httpLink/index.js +1 -0
- package/links/loggerLink/index.d.ts +1 -0
- package/links/loggerLink/index.js +1 -0
- package/links/splitLink/index.d.ts +1 -0
- package/links/splitLink/index.js +1 -0
- package/links/wsLink/index.d.ts +1 -0
- package/links/wsLink/index.js +1 -0
- package/links/wsLink/wsLink/index.d.ts +1 -0
- package/links/wsLink/wsLink/index.js +1 -0
- package/package.json +32 -32
- package/unstable-internals/index.d.ts +1 -0
- package/unstable-internals/index.js +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../dist/links/httpBatchLink';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../../dist/links/httpBatchLink');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../dist/links/httpLink';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../../dist/links/httpLink');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../dist/links/loggerLink';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../../dist/links/loggerLink');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../dist/links/splitLink';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../../dist/links/splitLink');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../dist/links/wsLink';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../../dist/links/wsLink');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../../dist/links/wsLink/wsLink';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../../../dist/links/wsLink/wsLink');
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trpc/client",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "11.4.
|
|
4
|
+
"version": "11.4.1",
|
|
5
5
|
"description": "The tRPC client library",
|
|
6
6
|
"author": "KATT",
|
|
7
7
|
"license": "MIT",
|
|
@@ -32,72 +32,72 @@
|
|
|
32
32
|
"./package.json": "./package.json",
|
|
33
33
|
".": {
|
|
34
34
|
"import": {
|
|
35
|
-
"
|
|
36
|
-
"
|
|
35
|
+
"types": "./dist/index.d.mts",
|
|
36
|
+
"default": "./dist/index.mjs"
|
|
37
37
|
},
|
|
38
38
|
"require": {
|
|
39
|
-
"
|
|
40
|
-
"
|
|
39
|
+
"types": "./dist/index.d.cts",
|
|
40
|
+
"default": "./dist/index.cjs"
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
43
|
"./links/httpBatchLink": {
|
|
44
44
|
"import": {
|
|
45
|
-
"
|
|
46
|
-
"
|
|
45
|
+
"types": "./dist/links/httpBatchLink.d.mts",
|
|
46
|
+
"default": "./dist/links/httpBatchLink.mjs"
|
|
47
47
|
},
|
|
48
48
|
"require": {
|
|
49
|
-
"
|
|
50
|
-
"
|
|
49
|
+
"types": "./dist/links/httpBatchLink.d.cts",
|
|
50
|
+
"default": "./dist/links/httpBatchLink.cjs"
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
53
|
"./links/httpLink": {
|
|
54
54
|
"import": {
|
|
55
|
-
"
|
|
56
|
-
"
|
|
55
|
+
"types": "./dist/links/httpLink.d.mts",
|
|
56
|
+
"default": "./dist/links/httpLink.mjs"
|
|
57
57
|
},
|
|
58
58
|
"require": {
|
|
59
|
-
"
|
|
60
|
-
"
|
|
59
|
+
"types": "./dist/links/httpLink.d.cts",
|
|
60
|
+
"default": "./dist/links/httpLink.cjs"
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
"./links/loggerLink": {
|
|
64
64
|
"import": {
|
|
65
|
-
"
|
|
66
|
-
"
|
|
65
|
+
"types": "./dist/links/loggerLink.d.mts",
|
|
66
|
+
"default": "./dist/links/loggerLink.mjs"
|
|
67
67
|
},
|
|
68
68
|
"require": {
|
|
69
|
-
"
|
|
70
|
-
"
|
|
69
|
+
"types": "./dist/links/loggerLink.d.cts",
|
|
70
|
+
"default": "./dist/links/loggerLink.cjs"
|
|
71
71
|
}
|
|
72
72
|
},
|
|
73
73
|
"./links/splitLink": {
|
|
74
74
|
"import": {
|
|
75
|
-
"
|
|
76
|
-
"
|
|
75
|
+
"types": "./dist/links/splitLink.d.mts",
|
|
76
|
+
"default": "./dist/links/splitLink.mjs"
|
|
77
77
|
},
|
|
78
78
|
"require": {
|
|
79
|
-
"
|
|
80
|
-
"
|
|
79
|
+
"types": "./dist/links/splitLink.d.cts",
|
|
80
|
+
"default": "./dist/links/splitLink.cjs"
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
83
|
"./links/wsLink/wsLink": {
|
|
84
84
|
"import": {
|
|
85
|
-
"
|
|
86
|
-
"
|
|
85
|
+
"types": "./dist/links/wsLink/wsLink.d.mts",
|
|
86
|
+
"default": "./dist/links/wsLink/wsLink.mjs"
|
|
87
87
|
},
|
|
88
88
|
"require": {
|
|
89
|
-
"
|
|
90
|
-
"
|
|
89
|
+
"types": "./dist/links/wsLink/wsLink.d.cts",
|
|
90
|
+
"default": "./dist/links/wsLink/wsLink.cjs"
|
|
91
91
|
}
|
|
92
92
|
},
|
|
93
93
|
"./unstable-internals": {
|
|
94
94
|
"import": {
|
|
95
|
-
"
|
|
96
|
-
"
|
|
95
|
+
"types": "./dist/unstable-internals.d.mts",
|
|
96
|
+
"default": "./dist/unstable-internals.mjs"
|
|
97
97
|
},
|
|
98
98
|
"require": {
|
|
99
|
-
"
|
|
100
|
-
"
|
|
99
|
+
"types": "./dist/unstable-internals.d.cts",
|
|
100
|
+
"default": "./dist/unstable-internals.cjs"
|
|
101
101
|
}
|
|
102
102
|
}
|
|
103
103
|
},
|
|
@@ -112,11 +112,11 @@
|
|
|
112
112
|
"!**/__tests__"
|
|
113
113
|
],
|
|
114
114
|
"peerDependencies": {
|
|
115
|
-
"@trpc/server": "11.4.
|
|
115
|
+
"@trpc/server": "11.4.1",
|
|
116
116
|
"typescript": ">=5.7.2"
|
|
117
117
|
},
|
|
118
118
|
"devDependencies": {
|
|
119
|
-
"@trpc/server": "11.4.
|
|
119
|
+
"@trpc/server": "11.4.1",
|
|
120
120
|
"@types/isomorphic-fetch": "^0.0.39",
|
|
121
121
|
"@types/node": "^22.13.5",
|
|
122
122
|
"dataloader": "^2.2.2",
|
|
@@ -135,5 +135,5 @@
|
|
|
135
135
|
"funding": [
|
|
136
136
|
"https://trpc.io/sponsor"
|
|
137
137
|
],
|
|
138
|
-
"gitHead": "
|
|
138
|
+
"gitHead": "40025d7df6c0bc9fefe21c9a20969565017be138"
|
|
139
139
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/unstable-internals';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/unstable-internals');
|