@trpc/client 11.0.0-next-beta.208 → 11.0.0-next-beta.216
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/dist/bundle-analysis.json +3 -3
- package/package.json +3 -29
- package/links/httpBatchLink/index.d.ts +0 -1
- package/links/httpBatchLink/index.js +0 -1
- package/links/httpLink/index.d.ts +0 -1
- package/links/httpLink/index.js +0 -1
- package/links/loggerLink/index.d.ts +0 -1
- package/links/loggerLink/index.js +0 -1
- package/links/splitLink/index.d.ts +0 -1
- package/links/splitLink/index.js +0 -1
- package/links/wsLink/index.d.ts +0 -1
- package/links/wsLink/index.js +0 -1
|
@@ -71,8 +71,8 @@
|
|
|
71
71
|
],
|
|
72
72
|
"removedExports": [],
|
|
73
73
|
"dependents": [
|
|
74
|
-
"/src/links/httpLink.ts",
|
|
75
74
|
"/src/links/httpBatchLink.ts",
|
|
75
|
+
"/src/links/httpLink.ts",
|
|
76
76
|
"/src/links/httpFormDataLink.ts",
|
|
77
77
|
"/src/links/internals/createHTTPBatchLink.ts",
|
|
78
78
|
"/src/links/internals/parseJSONStream.ts"
|
|
@@ -138,8 +138,8 @@
|
|
|
138
138
|
"/src/links/httpLink.ts",
|
|
139
139
|
"/src/links/wsLink.ts",
|
|
140
140
|
"/src/internals/TRPCUntypedClient.ts",
|
|
141
|
-
"/src/links/internals/
|
|
142
|
-
"/src/links/internals/
|
|
141
|
+
"/src/links/internals/createHTTPBatchLink.ts",
|
|
142
|
+
"/src/links/internals/httpUtils.ts"
|
|
143
143
|
],
|
|
144
144
|
"percent": 3.87,
|
|
145
145
|
"reduction": 44.58
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trpc/client",
|
|
3
|
-
"version": "11.0.0-next-beta.
|
|
3
|
+
"version": "11.0.0-next-beta.216+ccd4f1b0e",
|
|
4
4
|
"description": "The tRPC client library",
|
|
5
5
|
"author": "KATT",
|
|
6
6
|
"license": "MIT",
|
|
@@ -34,31 +34,6 @@
|
|
|
34
34
|
"import": "./dist/index.mjs",
|
|
35
35
|
"require": "./dist/index.js",
|
|
36
36
|
"default": "./dist/index.js"
|
|
37
|
-
},
|
|
38
|
-
"./links/httpBatchLink": {
|
|
39
|
-
"import": "./dist/links/httpBatchLink.mjs",
|
|
40
|
-
"require": "./dist/links/httpBatchLink.js",
|
|
41
|
-
"default": "./dist/links/httpBatchLink.js"
|
|
42
|
-
},
|
|
43
|
-
"./links/httpLink": {
|
|
44
|
-
"import": "./dist/links/httpLink.mjs",
|
|
45
|
-
"require": "./dist/links/httpLink.js",
|
|
46
|
-
"default": "./dist/links/httpLink.js"
|
|
47
|
-
},
|
|
48
|
-
"./links/loggerLink": {
|
|
49
|
-
"import": "./dist/links/loggerLink.mjs",
|
|
50
|
-
"require": "./dist/links/loggerLink.js",
|
|
51
|
-
"default": "./dist/links/loggerLink.js"
|
|
52
|
-
},
|
|
53
|
-
"./links/splitLink": {
|
|
54
|
-
"import": "./dist/links/splitLink.mjs",
|
|
55
|
-
"require": "./dist/links/splitLink.js",
|
|
56
|
-
"default": "./dist/links/splitLink.js"
|
|
57
|
-
},
|
|
58
|
-
"./links/wsLink": {
|
|
59
|
-
"import": "./dist/links/wsLink.mjs",
|
|
60
|
-
"require": "./dist/links/wsLink.js",
|
|
61
|
-
"default": "./dist/links/wsLink.js"
|
|
62
37
|
}
|
|
63
38
|
},
|
|
64
39
|
"files": [
|
|
@@ -66,11 +41,10 @@
|
|
|
66
41
|
"src",
|
|
67
42
|
"README.md",
|
|
68
43
|
"package.json",
|
|
69
|
-
"links",
|
|
70
44
|
"!**/*.test.*"
|
|
71
45
|
],
|
|
72
46
|
"dependencies": {
|
|
73
|
-
"@trpc/core": "11.0.0-next-beta.
|
|
47
|
+
"@trpc/core": "11.0.0-next-beta.216+ccd4f1b0e"
|
|
74
48
|
},
|
|
75
49
|
"devDependencies": {
|
|
76
50
|
"@testing-library/dom": "^9.0.0",
|
|
@@ -90,5 +64,5 @@
|
|
|
90
64
|
"funding": [
|
|
91
65
|
"https://trpc.io/sponsor"
|
|
92
66
|
],
|
|
93
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "ccd4f1b0e0f2a11dbac63085665dfc9639a9cfb3"
|
|
94
68
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '../../dist/links/httpBatchLink';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
module.exports = require('../../dist/links/httpBatchLink');
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '../../dist/links/httpLink';
|
package/links/httpLink/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
module.exports = require('../../dist/links/httpLink');
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '../../dist/links/loggerLink';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
module.exports = require('../../dist/links/loggerLink');
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '../../dist/links/splitLink';
|
package/links/splitLink/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
module.exports = require('../../dist/links/splitLink');
|
package/links/wsLink/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '../../dist/links/wsLink';
|
package/links/wsLink/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
module.exports = require('../../dist/links/wsLink');
|