@trpc/server 11.0.0-rc.361 → 11.0.0-rc.363
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/@trpc/server/http.d.ts +7 -5
- package/dist/@trpc/server/http.d.ts.map +1 -1
- package/dist/@trpc/server/index.d.ts +1 -2
- package/dist/@trpc/server/index.d.ts.map +1 -1
- package/dist/adapters/aws-lambda/getPlanner.d.ts +13 -0
- package/dist/adapters/aws-lambda/getPlanner.d.ts.map +1 -0
- package/dist/adapters/aws-lambda/getPlanner.js +143 -0
- package/dist/adapters/aws-lambda/getPlanner.mjs +141 -0
- package/dist/adapters/aws-lambda/index.d.ts +12 -9
- package/dist/adapters/aws-lambda/index.d.ts.map +1 -1
- package/dist/adapters/aws-lambda/index.js +8 -77
- package/dist/adapters/aws-lambda/index.mjs +9 -72
- package/dist/adapters/express.js +1 -0
- package/dist/adapters/express.mjs +1 -0
- package/dist/adapters/fastify/fastifyRequestHandler.d.ts +19 -2
- package/dist/adapters/fastify/fastifyRequestHandler.d.ts.map +1 -1
- package/dist/adapters/fastify/fastifyRequestHandler.js +22 -64
- package/dist/adapters/fastify/fastifyRequestHandler.mjs +22 -64
- package/dist/adapters/fastify/fastifyTRPCPlugin.d.ts +1 -1
- package/dist/adapters/fastify/fastifyTRPCPlugin.d.ts.map +1 -1
- package/dist/adapters/fastify/fastifyTRPCPlugin.js +1 -0
- package/dist/adapters/fastify/fastifyTRPCPlugin.mjs +1 -0
- package/dist/adapters/fetch/fetchRequestHandler.d.ts +2 -2
- package/dist/adapters/fetch/fetchRequestHandler.d.ts.map +1 -1
- package/dist/adapters/fetch/fetchRequestHandler.js +29 -86
- package/dist/adapters/fetch/fetchRequestHandler.mjs +29 -86
- package/dist/adapters/fetch/types.d.ts +2 -2
- package/dist/adapters/fetch/types.d.ts.map +1 -1
- package/dist/adapters/next.js +1 -1
- package/dist/adapters/next.mjs +1 -1
- package/dist/adapters/node-http/incomingMessageToRequest.d.ts +18 -0
- package/dist/adapters/node-http/incomingMessageToRequest.d.ts.map +1 -0
- package/dist/adapters/node-http/incomingMessageToRequest.js +71 -0
- package/dist/adapters/node-http/incomingMessageToRequest.mjs +69 -0
- package/dist/adapters/node-http/index.d.ts +1 -0
- package/dist/adapters/node-http/index.d.ts.map +1 -1
- package/dist/adapters/node-http/index.js +2 -0
- package/dist/adapters/node-http/index.mjs +1 -0
- package/dist/adapters/node-http/nodeHTTPRequestHandler.d.ts +1 -1
- package/dist/adapters/node-http/nodeHTTPRequestHandler.d.ts.map +1 -1
- package/dist/adapters/node-http/nodeHTTPRequestHandler.js +28 -71
- package/dist/adapters/node-http/nodeHTTPRequestHandler.mjs +28 -71
- package/dist/adapters/node-http/types.d.ts +7 -8
- package/dist/adapters/node-http/types.d.ts.map +1 -1
- package/dist/adapters/ws.js +1 -1
- package/dist/adapters/ws.mjs +1 -1
- package/dist/bundle-analysis.json +174 -271
- package/dist/http.js +4 -2
- package/dist/http.mjs +2 -1
- package/dist/index.js +2 -4
- package/dist/index.mjs +1 -2
- package/dist/unstable-core-do-not-import/http/contentType.d.ts +8 -20
- package/dist/unstable-core-do-not-import/http/contentType.d.ts.map +1 -1
- package/dist/unstable-core-do-not-import/http/contentType.js +180 -0
- package/dist/unstable-core-do-not-import/http/contentType.mjs +178 -0
- package/dist/unstable-core-do-not-import/http/contentTypeParsers.d.ts +14 -0
- package/dist/unstable-core-do-not-import/http/contentTypeParsers.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/http/contentTypeParsers.js +14 -0
- package/dist/unstable-core-do-not-import/http/contentTypeParsers.mjs +12 -0
- package/dist/unstable-core-do-not-import/http/getHTTPStatusCode.d.ts +1 -1
- package/dist/unstable-core-do-not-import/http/getHTTPStatusCode.d.ts.map +1 -1
- package/dist/unstable-core-do-not-import/http/resolveResponse.d.ts +15 -0
- package/dist/unstable-core-do-not-import/http/resolveResponse.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/http/{resolveHTTPResponse.js → resolveResponse.js} +119 -134
- package/dist/unstable-core-do-not-import/http/{resolveHTTPResponse.mjs → resolveResponse.mjs} +119 -134
- package/dist/unstable-core-do-not-import/http/types.d.ts +25 -27
- package/dist/unstable-core-do-not-import/http/types.d.ts.map +1 -1
- package/dist/unstable-core-do-not-import/initTRPC.d.ts +1 -1
- package/dist/unstable-core-do-not-import/procedureBuilder.d.ts +1 -3
- package/dist/unstable-core-do-not-import/procedureBuilder.d.ts.map +1 -1
- package/dist/unstable-core-do-not-import/procedureBuilder.js +0 -2
- package/dist/unstable-core-do-not-import/procedureBuilder.mjs +1 -2
- package/dist/unstable-core-do-not-import/rootConfig.d.ts +0 -9
- package/dist/unstable-core-do-not-import/rootConfig.d.ts.map +1 -1
- package/dist/unstable-core-do-not-import/utils.d.ts +3 -0
- package/dist/unstable-core-do-not-import/utils.d.ts.map +1 -1
- package/dist/unstable-core-do-not-import/utils.js +2 -0
- package/dist/unstable-core-do-not-import/utils.mjs +2 -1
- package/dist/unstable-core-do-not-import.d.ts +9 -3
- package/dist/unstable-core-do-not-import.d.ts.map +1 -1
- package/dist/unstable-core-do-not-import.js +12 -8
- package/dist/unstable-core-do-not-import.mjs +7 -5
- package/package.json +3 -13
- package/src/@trpc/server/http.ts +7 -12
- package/src/@trpc/server/index.ts +0 -3
- package/src/adapters/aws-lambda/getPlanner.ts +191 -0
- package/src/adapters/aws-lambda/index.ts +43 -107
- package/src/adapters/express.ts +1 -1
- package/src/adapters/fastify/fastifyRequestHandler.ts +43 -90
- package/src/adapters/fastify/fastifyTRPCPlugin.ts +4 -3
- package/src/adapters/fetch/fetchRequestHandler.ts +35 -111
- package/src/adapters/fetch/types.ts +4 -2
- package/src/adapters/next.ts +1 -1
- package/src/adapters/node-http/incomingMessageToRequest.ts +94 -0
- package/src/adapters/node-http/index.ts +1 -0
- package/src/adapters/node-http/nodeHTTPRequestHandler.ts +31 -97
- package/src/adapters/node-http/types.ts +27 -37
- package/src/adapters/standalone.ts +1 -1
- package/src/unstable-core-do-not-import/http/contentType.ts +214 -22
- package/src/unstable-core-do-not-import/http/contentTypeParsers.ts +29 -0
- package/src/unstable-core-do-not-import/http/getHTTPStatusCode.ts +2 -2
- package/src/unstable-core-do-not-import/http/resolveResponse.ts +386 -0
- package/src/unstable-core-do-not-import/http/types.ts +25 -30
- package/src/unstable-core-do-not-import/procedureBuilder.ts +2 -4
- package/src/unstable-core-do-not-import/rootConfig.ts +0 -10
- package/src/unstable-core-do-not-import/utils.ts +4 -0
- package/src/unstable-core-do-not-import.ts +9 -3
- package/adapters/node-http/content-type/form-data/index.d.ts +0 -1
- package/adapters/node-http/content-type/form-data/index.js +0 -1
- package/adapters/node-http/content-type/json/index.d.ts +0 -1
- package/adapters/node-http/content-type/json/index.js +0 -1
- package/dist/adapters/aws-lambda/content-type/json/index.d.ts +0 -10
- package/dist/adapters/aws-lambda/content-type/json/index.d.ts.map +0 -1
- package/dist/adapters/aws-lambda/content-type/json/index.js +0 -62
- package/dist/adapters/aws-lambda/content-type/json/index.mjs +0 -60
- package/dist/adapters/aws-lambda/utils.d.ts +0 -31
- package/dist/adapters/aws-lambda/utils.d.ts.map +0 -1
- package/dist/adapters/aws-lambda/utils.js +0 -111
- package/dist/adapters/aws-lambda/utils.mjs +0 -103
- package/dist/adapters/content-handlers/concurrentCache.d.ts +0 -7
- package/dist/adapters/content-handlers/concurrentCache.d.ts.map +0 -1
- package/dist/adapters/content-handlers/concurrentCache.js +0 -17
- package/dist/adapters/content-handlers/concurrentCache.mjs +0 -15
- package/dist/adapters/content-handlers/selectContentHandlerOrUnsupportedMediaType.d.ts +0 -10
- package/dist/adapters/content-handlers/selectContentHandlerOrUnsupportedMediaType.d.ts.map +0 -1
- package/dist/adapters/content-handlers/selectContentHandlerOrUnsupportedMediaType.js +0 -33
- package/dist/adapters/content-handlers/selectContentHandlerOrUnsupportedMediaType.mjs +0 -31
- package/dist/adapters/fastify/content-type/json/index.d.ts +0 -8
- package/dist/adapters/fastify/content-type/json/index.d.ts.map +0 -1
- package/dist/adapters/fastify/content-type/json/index.js +0 -62
- package/dist/adapters/fastify/content-type/json/index.mjs +0 -60
- package/dist/adapters/fastify/types.d.ts +0 -11
- package/dist/adapters/fastify/types.d.ts.map +0 -1
- package/dist/adapters/fetch/content-type/json/index.d.ts +0 -9
- package/dist/adapters/fetch/content-type/json/index.d.ts.map +0 -1
- package/dist/adapters/fetch/content-type/json/index.js +0 -55
- package/dist/adapters/fetch/content-type/json/index.mjs +0 -53
- package/dist/adapters/node-http/content-type/form-data/index.d.ts +0 -5
- package/dist/adapters/node-http/content-type/form-data/index.d.ts.map +0 -1
- package/dist/adapters/node-http/content-type/form-data/index.js +0 -32
- package/dist/adapters/node-http/content-type/form-data/index.mjs +0 -30
- package/dist/adapters/node-http/content-type/json/getPostBody.d.ts +0 -7
- package/dist/adapters/node-http/content-type/json/getPostBody.d.ts.map +0 -1
- package/dist/adapters/node-http/content-type/json/getPostBody.js +0 -45
- package/dist/adapters/node-http/content-type/json/getPostBody.mjs +0 -43
- package/dist/adapters/node-http/content-type/json/index.d.ts +0 -5
- package/dist/adapters/node-http/content-type/json/index.d.ts.map +0 -1
- package/dist/adapters/node-http/content-type/json/index.js +0 -68
- package/dist/adapters/node-http/content-type/json/index.mjs +0 -66
- package/dist/adapters/node-http/content-type/octet/index.d.ts +0 -5
- package/dist/adapters/node-http/content-type/octet/index.d.ts.map +0 -1
- package/dist/adapters/node-http/content-type/octet/index.js +0 -19
- package/dist/adapters/node-http/content-type/octet/index.mjs +0 -17
- package/dist/adapters/node-http/content-type/types.d.ts +0 -8
- package/dist/adapters/node-http/content-type/types.d.ts.map +0 -1
- package/dist/unstable-core-do-not-import/contentTypeParsers.d.ts +0 -16
- package/dist/unstable-core-do-not-import/contentTypeParsers.d.ts.map +0 -1
- package/dist/unstable-core-do-not-import/contentTypeParsers.js +0 -23
- package/dist/unstable-core-do-not-import/contentTypeParsers.mjs +0 -21
- package/dist/unstable-core-do-not-import/http/index.d.ts +0 -11
- package/dist/unstable-core-do-not-import/http/index.d.ts.map +0 -1
- package/dist/unstable-core-do-not-import/http/resolveHTTPResponse.d.ts +0 -51
- package/dist/unstable-core-do-not-import/http/resolveHTTPResponse.d.ts.map +0 -1
- package/src/adapters/aws-lambda/content-type/json/index.ts +0 -108
- package/src/adapters/aws-lambda/utils.ts +0 -170
- package/src/adapters/content-handlers/concurrentCache.ts +0 -16
- package/src/adapters/content-handlers/selectContentHandlerOrUnsupportedMediaType.ts +0 -45
- package/src/adapters/fastify/content-type/json/index.ts +0 -106
- package/src/adapters/fastify/types.ts +0 -22
- package/src/adapters/fetch/content-type/json/index.ts +0 -90
- package/src/adapters/node-http/content-type/form-data/index.ts +0 -37
- package/src/adapters/node-http/content-type/json/getPostBody.ts +0 -49
- package/src/adapters/node-http/content-type/json/index.ts +0 -100
- package/src/adapters/node-http/content-type/octet/index.ts +0 -27
- package/src/adapters/node-http/content-type/types.ts +0 -19
- package/src/unstable-core-do-not-import/contentTypeParsers.ts +0 -37
- package/src/unstable-core-do-not-import/http/index.ts +0 -28
- package/src/unstable-core-do-not-import/http/resolveHTTPResponse.ts +0 -461
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"bundleSize":
|
|
3
|
-
"bundleOrigSize":
|
|
4
|
-
"bundleReduction":
|
|
2
|
+
"bundleSize": 86140,
|
|
3
|
+
"bundleOrigSize": 132897,
|
|
4
|
+
"bundleReduction": 35.18,
|
|
5
5
|
"modules": [
|
|
6
6
|
{
|
|
7
7
|
"id": "/src/adapters/ws.ts",
|
|
@@ -15,27 +15,28 @@
|
|
|
15
15
|
"dependents": [
|
|
16
16
|
"/src/adapters/fastify/fastifyTRPCPlugin.ts"
|
|
17
17
|
],
|
|
18
|
-
"percent":
|
|
18
|
+
"percent": 11.81,
|
|
19
19
|
"reduction": 0
|
|
20
20
|
},
|
|
21
21
|
{
|
|
22
|
-
"id": "/src/unstable-core-do-not-import/http/
|
|
23
|
-
"size":
|
|
24
|
-
"origSize":
|
|
22
|
+
"id": "/src/unstable-core-do-not-import/http/resolveResponse.ts",
|
|
23
|
+
"size": 9493,
|
|
24
|
+
"origSize": 9989,
|
|
25
25
|
"renderedExports": [
|
|
26
|
-
"
|
|
26
|
+
"resolveResponse"
|
|
27
27
|
],
|
|
28
28
|
"removedExports": [],
|
|
29
|
-
"dependents": [
|
|
30
|
-
|
|
31
|
-
|
|
29
|
+
"dependents": [
|
|
30
|
+
"/src/unstable-core-do-not-import.ts"
|
|
31
|
+
],
|
|
32
|
+
"percent": 11.02,
|
|
33
|
+
"reduction": 4.97
|
|
32
34
|
},
|
|
33
35
|
{
|
|
34
36
|
"id": "/src/unstable-core-do-not-import/procedureBuilder.ts",
|
|
35
|
-
"size":
|
|
36
|
-
"origSize":
|
|
37
|
+
"size": 6326,
|
|
38
|
+
"origSize": 15629,
|
|
37
39
|
"renderedExports": [
|
|
38
|
-
"unsetMarker",
|
|
39
40
|
"createBuilder"
|
|
40
41
|
],
|
|
41
42
|
"removedExports": [],
|
|
@@ -43,8 +44,8 @@
|
|
|
43
44
|
"/src/unstable-core-do-not-import.ts",
|
|
44
45
|
"/src/unstable-core-do-not-import/initTRPC.ts"
|
|
45
46
|
],
|
|
46
|
-
"percent":
|
|
47
|
-
"reduction": 59.
|
|
47
|
+
"percent": 7.34,
|
|
48
|
+
"reduction": 59.52
|
|
48
49
|
},
|
|
49
50
|
{
|
|
50
51
|
"id": "/src/unstable-core-do-not-import/router.ts",
|
|
@@ -59,60 +60,40 @@
|
|
|
59
60
|
"removedExports": [],
|
|
60
61
|
"dependents": [
|
|
61
62
|
"/src/unstable-core-do-not-import.ts",
|
|
62
|
-
"/src/unstable-core-do-not-import/http/
|
|
63
|
+
"/src/unstable-core-do-not-import/http/resolveResponse.ts",
|
|
63
64
|
"/src/unstable-core-do-not-import/initTRPC.ts"
|
|
64
65
|
],
|
|
65
|
-
"percent": 6.
|
|
66
|
+
"percent": 6.95,
|
|
66
67
|
"reduction": 41.05
|
|
67
68
|
},
|
|
68
69
|
{
|
|
69
|
-
"id": "/src/
|
|
70
|
-
"size":
|
|
71
|
-
"origSize":
|
|
72
|
-
"renderedExports": [
|
|
73
|
-
"fetchRequestHandler"
|
|
74
|
-
],
|
|
75
|
-
"removedExports": [],
|
|
76
|
-
"dependents": [
|
|
77
|
-
"/src/adapters/fetch/index.ts"
|
|
78
|
-
],
|
|
79
|
-
"percent": 3.86,
|
|
80
|
-
"reduction": 9.03
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
"id": "/src/adapters/node-http/nodeHTTPRequestHandler.ts",
|
|
84
|
-
"size": 3608,
|
|
85
|
-
"origSize": 4338,
|
|
70
|
+
"id": "/src/unstable-core-do-not-import/http/contentType.ts",
|
|
71
|
+
"size": 5547,
|
|
72
|
+
"origSize": 5469,
|
|
86
73
|
"renderedExports": [
|
|
87
|
-
"
|
|
74
|
+
"getRequestInfo"
|
|
88
75
|
],
|
|
89
76
|
"removedExports": [],
|
|
90
77
|
"dependents": [
|
|
91
|
-
"/src/
|
|
78
|
+
"/src/unstable-core-do-not-import.ts",
|
|
79
|
+
"/src/unstable-core-do-not-import/http/resolveResponse.ts"
|
|
92
80
|
],
|
|
93
|
-
"percent":
|
|
94
|
-
"reduction":
|
|
81
|
+
"percent": 6.44,
|
|
82
|
+
"reduction": 0
|
|
95
83
|
},
|
|
96
84
|
{
|
|
97
|
-
"id": "/src/adapters/aws-lambda/
|
|
98
|
-
"size":
|
|
99
|
-
"origSize":
|
|
85
|
+
"id": "/src/adapters/aws-lambda/getPlanner.ts",
|
|
86
|
+
"size": 4852,
|
|
87
|
+
"origSize": 5617,
|
|
100
88
|
"renderedExports": [
|
|
101
|
-
"
|
|
102
|
-
"isPayloadV2",
|
|
103
|
-
"getHTTPMethod",
|
|
104
|
-
"getPath",
|
|
105
|
-
"transformHeaders",
|
|
106
|
-
"UNKNOWN_PAYLOAD_FORMAT_VERSION_ERROR_MESSAGE",
|
|
107
|
-
"lambdaEventToHTTPBody"
|
|
89
|
+
"getPlanner"
|
|
108
90
|
],
|
|
109
91
|
"removedExports": [],
|
|
110
92
|
"dependents": [
|
|
111
|
-
"/src/adapters/aws-lambda/index.ts"
|
|
112
|
-
"/src/adapters/aws-lambda/content-type/json/index.ts"
|
|
93
|
+
"/src/adapters/aws-lambda/index.ts"
|
|
113
94
|
],
|
|
114
|
-
"percent":
|
|
115
|
-
"reduction":
|
|
95
|
+
"percent": 5.63,
|
|
96
|
+
"reduction": 13.62
|
|
116
97
|
},
|
|
117
98
|
{
|
|
118
99
|
"id": "/src/observable/observable.ts",
|
|
@@ -128,7 +109,7 @@
|
|
|
128
109
|
"/src/observable/index.ts",
|
|
129
110
|
"/src/observable/operators.ts"
|
|
130
111
|
],
|
|
131
|
-
"percent": 3.
|
|
112
|
+
"percent": 3.63,
|
|
132
113
|
"reduction": 0.67
|
|
133
114
|
},
|
|
134
115
|
{
|
|
@@ -142,36 +123,9 @@
|
|
|
142
123
|
"dependents": [
|
|
143
124
|
"/src/adapters/next-app-dir.ts"
|
|
144
125
|
],
|
|
145
|
-
"percent": 3.
|
|
126
|
+
"percent": 3.54,
|
|
146
127
|
"reduction": 20.12
|
|
147
128
|
},
|
|
148
|
-
{
|
|
149
|
-
"id": "/src/adapters/fastify/fastifyRequestHandler.ts",
|
|
150
|
-
"size": 2808,
|
|
151
|
-
"origSize": 3885,
|
|
152
|
-
"renderedExports": [
|
|
153
|
-
"fastifyRequestHandler"
|
|
154
|
-
],
|
|
155
|
-
"removedExports": [],
|
|
156
|
-
"dependents": [
|
|
157
|
-
"/src/adapters/fastify/index.ts",
|
|
158
|
-
"/src/adapters/fastify/fastifyTRPCPlugin.ts"
|
|
159
|
-
],
|
|
160
|
-
"percent": 2.85,
|
|
161
|
-
"reduction": 27.72
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
"id": "/src/adapters/aws-lambda/index.ts",
|
|
165
|
-
"size": 2779,
|
|
166
|
-
"origSize": 4095,
|
|
167
|
-
"renderedExports": [
|
|
168
|
-
"awsLambdaRequestHandler"
|
|
169
|
-
],
|
|
170
|
-
"removedExports": [],
|
|
171
|
-
"dependents": [],
|
|
172
|
-
"percent": 2.82,
|
|
173
|
-
"reduction": 32.14
|
|
174
|
-
},
|
|
175
129
|
{
|
|
176
130
|
"id": "/src/observable/operators.ts",
|
|
177
131
|
"size": 2756,
|
|
@@ -185,7 +139,7 @@
|
|
|
185
139
|
"dependents": [
|
|
186
140
|
"/src/observable/index.ts"
|
|
187
141
|
],
|
|
188
|
-
"percent": 2
|
|
142
|
+
"percent": 3.2,
|
|
189
143
|
"reduction": 0
|
|
190
144
|
},
|
|
191
145
|
{
|
|
@@ -201,27 +155,13 @@
|
|
|
201
155
|
"removedExports": [],
|
|
202
156
|
"dependents": [
|
|
203
157
|
"/src/unstable-core-do-not-import.ts",
|
|
204
|
-
"/src/unstable-core-do-not-import/http/
|
|
158
|
+
"/src/unstable-core-do-not-import/http/resolveResponse.ts",
|
|
205
159
|
"/src/unstable-core-do-not-import/router.ts",
|
|
206
160
|
"/src/unstable-core-do-not-import/initTRPC.ts"
|
|
207
161
|
],
|
|
208
|
-
"percent":
|
|
162
|
+
"percent": 3.19,
|
|
209
163
|
"reduction": 45.94
|
|
210
164
|
},
|
|
211
|
-
{
|
|
212
|
-
"id": "/src/adapters/node-http/content-type/json/index.ts",
|
|
213
|
-
"size": 2662,
|
|
214
|
-
"origSize": 2943,
|
|
215
|
-
"renderedExports": [
|
|
216
|
-
"getNodeHTTPJSONContentTypeHandler"
|
|
217
|
-
],
|
|
218
|
-
"removedExports": [],
|
|
219
|
-
"dependents": [
|
|
220
|
-
"/src/adapters/node-http/nodeHTTPRequestHandler.ts"
|
|
221
|
-
],
|
|
222
|
-
"percent": 2.7,
|
|
223
|
-
"reduction": 9.55
|
|
224
|
-
},
|
|
225
165
|
{
|
|
226
166
|
"id": "/src/unstable-core-do-not-import/initTRPC.ts",
|
|
227
167
|
"size": 2652,
|
|
@@ -233,7 +173,7 @@
|
|
|
233
173
|
"dependents": [
|
|
234
174
|
"/src/unstable-core-do-not-import.ts"
|
|
235
175
|
],
|
|
236
|
-
"percent":
|
|
176
|
+
"percent": 3.08,
|
|
237
177
|
"reduction": 41.46
|
|
238
178
|
},
|
|
239
179
|
{
|
|
@@ -253,66 +193,67 @@
|
|
|
253
193
|
"/src/unstable-core-do-not-import/initTRPC.ts",
|
|
254
194
|
"/src/unstable-core-do-not-import/procedureBuilder.ts"
|
|
255
195
|
],
|
|
256
|
-
"percent":
|
|
196
|
+
"percent": 3.05,
|
|
257
197
|
"reduction": 55.5
|
|
258
198
|
},
|
|
259
199
|
{
|
|
260
|
-
"id": "/src/adapters/
|
|
261
|
-
"size":
|
|
262
|
-
"origSize":
|
|
200
|
+
"id": "/src/adapters/fetch/fetchRequestHandler.ts",
|
|
201
|
+
"size": 2255,
|
|
202
|
+
"origSize": 2305,
|
|
263
203
|
"renderedExports": [
|
|
264
|
-
"
|
|
204
|
+
"fetchRequestHandler"
|
|
265
205
|
],
|
|
266
206
|
"removedExports": [],
|
|
267
207
|
"dependents": [
|
|
268
|
-
"/src/adapters/
|
|
208
|
+
"/src/adapters/fetch/index.ts"
|
|
269
209
|
],
|
|
270
|
-
"percent": 2.
|
|
271
|
-
"reduction":
|
|
210
|
+
"percent": 2.62,
|
|
211
|
+
"reduction": 2.17
|
|
272
212
|
},
|
|
273
213
|
{
|
|
274
|
-
"id": "/src/
|
|
275
|
-
"size":
|
|
276
|
-
"origSize":
|
|
214
|
+
"id": "/src/unstable-core-do-not-import/createProxy.ts",
|
|
215
|
+
"size": 2000,
|
|
216
|
+
"origSize": 1919,
|
|
277
217
|
"renderedExports": [
|
|
278
|
-
"
|
|
218
|
+
"createRecursiveProxy",
|
|
219
|
+
"createFlatProxy"
|
|
279
220
|
],
|
|
280
221
|
"removedExports": [],
|
|
281
222
|
"dependents": [
|
|
282
|
-
"/src/
|
|
223
|
+
"/src/unstable-core-do-not-import.ts",
|
|
224
|
+
"/src/unstable-core-do-not-import/router.ts"
|
|
283
225
|
],
|
|
284
|
-
"percent": 2.
|
|
285
|
-
"reduction":
|
|
226
|
+
"percent": 2.32,
|
|
227
|
+
"reduction": 0
|
|
286
228
|
},
|
|
287
229
|
{
|
|
288
|
-
"id": "/src/adapters/
|
|
289
|
-
"size":
|
|
290
|
-
"origSize":
|
|
230
|
+
"id": "/src/adapters/node-http/nodeHTTPRequestHandler.ts",
|
|
231
|
+
"size": 1956,
|
|
232
|
+
"origSize": 2390,
|
|
291
233
|
"renderedExports": [
|
|
292
|
-
"
|
|
234
|
+
"nodeHTTPRequestHandler"
|
|
293
235
|
],
|
|
294
236
|
"removedExports": [],
|
|
295
237
|
"dependents": [
|
|
296
|
-
"/src/adapters/
|
|
238
|
+
"/src/adapters/node-http/index.ts"
|
|
297
239
|
],
|
|
298
|
-
"percent": 2.
|
|
299
|
-
"reduction": 18.
|
|
240
|
+
"percent": 2.27,
|
|
241
|
+
"reduction": 18.16
|
|
300
242
|
},
|
|
301
243
|
{
|
|
302
|
-
"id": "/src/
|
|
303
|
-
"size":
|
|
304
|
-
"origSize":
|
|
244
|
+
"id": "/src/adapters/node-http/incomingMessageToRequest.ts",
|
|
245
|
+
"size": 1954,
|
|
246
|
+
"origSize": 2458,
|
|
305
247
|
"renderedExports": [
|
|
306
|
-
"
|
|
307
|
-
"createFlatProxy"
|
|
248
|
+
"incomingMessageToRequest"
|
|
308
249
|
],
|
|
309
250
|
"removedExports": [],
|
|
310
251
|
"dependents": [
|
|
311
|
-
"/src/
|
|
312
|
-
"/src/
|
|
252
|
+
"/src/adapters/node-http/index.ts",
|
|
253
|
+
"/src/adapters/node-http/nodeHTTPRequestHandler.ts"
|
|
313
254
|
],
|
|
314
|
-
"percent": 2.
|
|
315
|
-
"reduction":
|
|
255
|
+
"percent": 2.27,
|
|
256
|
+
"reduction": 20.5
|
|
316
257
|
},
|
|
317
258
|
{
|
|
318
259
|
"id": "/src/unstable-core-do-not-import/error/TRPCError.ts",
|
|
@@ -326,13 +267,13 @@
|
|
|
326
267
|
"removedExports": [],
|
|
327
268
|
"dependents": [
|
|
328
269
|
"/src/unstable-core-do-not-import.ts",
|
|
329
|
-
"/src/unstable-core-do-not-import/http/
|
|
270
|
+
"/src/unstable-core-do-not-import/http/resolveResponse.ts",
|
|
330
271
|
"/src/unstable-core-do-not-import/router.ts",
|
|
331
272
|
"/src/unstable-core-do-not-import/middleware.ts",
|
|
332
|
-
"/src/unstable-core-do-not-import/
|
|
273
|
+
"/src/unstable-core-do-not-import/http/contentType.ts",
|
|
333
274
|
"/src/unstable-core-do-not-import/procedureBuilder.ts"
|
|
334
275
|
],
|
|
335
|
-
"percent":
|
|
276
|
+
"percent": 2.01,
|
|
336
277
|
"reduction": 19.47
|
|
337
278
|
},
|
|
338
279
|
{
|
|
@@ -344,20 +285,20 @@
|
|
|
344
285
|
],
|
|
345
286
|
"removedExports": [],
|
|
346
287
|
"dependents": [],
|
|
347
|
-
"percent": 1.
|
|
288
|
+
"percent": 1.83,
|
|
348
289
|
"reduction": 21.04
|
|
349
290
|
},
|
|
350
291
|
{
|
|
351
292
|
"id": "/src/adapters/next.ts",
|
|
352
293
|
"size": 1543,
|
|
353
|
-
"origSize":
|
|
294
|
+
"origSize": 2112,
|
|
354
295
|
"renderedExports": [
|
|
355
296
|
"createNextApiHandler"
|
|
356
297
|
],
|
|
357
298
|
"removedExports": [],
|
|
358
299
|
"dependents": [],
|
|
359
|
-
"percent": 1.
|
|
360
|
-
"reduction": 26.
|
|
300
|
+
"percent": 1.79,
|
|
301
|
+
"reduction": 26.94
|
|
361
302
|
},
|
|
362
303
|
{
|
|
363
304
|
"id": "/src/unstable-core-do-not-import/rpc/codes.ts",
|
|
@@ -369,13 +310,13 @@
|
|
|
369
310
|
],
|
|
370
311
|
"removedExports": [],
|
|
371
312
|
"dependents": [],
|
|
372
|
-
"percent": 1.
|
|
313
|
+
"percent": 1.77,
|
|
373
314
|
"reduction": 27.6
|
|
374
315
|
},
|
|
375
316
|
{
|
|
376
317
|
"id": "/src/adapters/fastify/fastifyTRPCPlugin.ts",
|
|
377
|
-
"size":
|
|
378
|
-
"origSize":
|
|
318
|
+
"size": 1500,
|
|
319
|
+
"origSize": 2297,
|
|
379
320
|
"renderedExports": [
|
|
380
321
|
"fastifyTRPCPlugin"
|
|
381
322
|
],
|
|
@@ -383,52 +324,40 @@
|
|
|
383
324
|
"dependents": [
|
|
384
325
|
"/src/adapters/fastify/index.ts"
|
|
385
326
|
],
|
|
386
|
-
"percent": 1.
|
|
387
|
-
"reduction": 34.
|
|
327
|
+
"percent": 1.74,
|
|
328
|
+
"reduction": 34.7
|
|
388
329
|
},
|
|
389
330
|
{
|
|
390
331
|
"id": "/src/unstable-core-do-not-import/http/getHTTPStatusCode.ts",
|
|
391
332
|
"size": 1266,
|
|
392
|
-
"origSize":
|
|
333
|
+
"origSize": 1655,
|
|
393
334
|
"renderedExports": [
|
|
394
335
|
"getHTTPStatusCode",
|
|
395
336
|
"getHTTPStatusCodeFromError"
|
|
396
337
|
],
|
|
397
338
|
"removedExports": [],
|
|
398
339
|
"dependents": [
|
|
399
|
-
"/src/unstable-core-do-not-import
|
|
340
|
+
"/src/unstable-core-do-not-import.ts",
|
|
341
|
+
"/src/unstable-core-do-not-import/http/resolveResponse.ts",
|
|
400
342
|
"/src/unstable-core-do-not-import/error/getErrorShape.ts"
|
|
401
343
|
],
|
|
402
|
-
"percent": 1.
|
|
403
|
-
"reduction":
|
|
404
|
-
},
|
|
405
|
-
{
|
|
406
|
-
"id": "/src/adapters/node-http/content-type/json/getPostBody.ts",
|
|
407
|
-
"size": 1181,
|
|
408
|
-
"origSize": 1211,
|
|
409
|
-
"renderedExports": [
|
|
410
|
-
"getPostBody"
|
|
411
|
-
],
|
|
412
|
-
"removedExports": [],
|
|
413
|
-
"dependents": [
|
|
414
|
-
"/src/adapters/node-http/content-type/json/index.ts"
|
|
415
|
-
],
|
|
416
|
-
"percent": 1.2,
|
|
417
|
-
"reduction": 2.48
|
|
344
|
+
"percent": 1.47,
|
|
345
|
+
"reduction": 23.5
|
|
418
346
|
},
|
|
419
347
|
{
|
|
420
|
-
"id": "/src/adapters/
|
|
421
|
-
"size":
|
|
422
|
-
"origSize":
|
|
348
|
+
"id": "/src/adapters/fastify/fastifyRequestHandler.ts",
|
|
349
|
+
"size": 1132,
|
|
350
|
+
"origSize": 2160,
|
|
423
351
|
"renderedExports": [
|
|
424
|
-
"
|
|
352
|
+
"fastifyRequestHandler"
|
|
425
353
|
],
|
|
426
354
|
"removedExports": [],
|
|
427
355
|
"dependents": [
|
|
428
|
-
"/src/adapters/
|
|
356
|
+
"/src/adapters/fastify/index.ts",
|
|
357
|
+
"/src/adapters/fastify/fastifyTRPCPlugin.ts"
|
|
429
358
|
],
|
|
430
|
-
"percent": 1.
|
|
431
|
-
"reduction":
|
|
359
|
+
"percent": 1.31,
|
|
360
|
+
"reduction": 47.59
|
|
432
361
|
},
|
|
433
362
|
{
|
|
434
363
|
"id": "/src/unstable-core-do-not-import/parser.ts",
|
|
@@ -442,7 +371,7 @@
|
|
|
442
371
|
"/src/unstable-core-do-not-import.ts",
|
|
443
372
|
"/src/unstable-core-do-not-import/procedureBuilder.ts"
|
|
444
373
|
],
|
|
445
|
-
"percent": 1.
|
|
374
|
+
"percent": 1.15,
|
|
446
375
|
"reduction": 56.22
|
|
447
376
|
},
|
|
448
377
|
{
|
|
@@ -459,31 +388,15 @@
|
|
|
459
388
|
"/src/adapters/next-app-dir/nextAppDirCaller.ts",
|
|
460
389
|
"/src/adapters/next-app-dir/rethrowNextErrors.ts"
|
|
461
390
|
],
|
|
462
|
-
"percent": 1,
|
|
391
|
+
"percent": 1.15,
|
|
463
392
|
"reduction": 13.65
|
|
464
393
|
},
|
|
465
|
-
{
|
|
466
|
-
"id": "/src/adapters/content-handlers/selectContentHandlerOrUnsupportedMediaType.ts",
|
|
467
|
-
"size": 974,
|
|
468
|
-
"origSize": 1402,
|
|
469
|
-
"renderedExports": [
|
|
470
|
-
"selectContentHandlerOrUnsupportedMediaType"
|
|
471
|
-
],
|
|
472
|
-
"removedExports": [],
|
|
473
|
-
"dependents": [
|
|
474
|
-
"/src/adapters/aws-lambda/index.ts",
|
|
475
|
-
"/src/adapters/node-http/nodeHTTPRequestHandler.ts",
|
|
476
|
-
"/src/adapters/fetch/fetchRequestHandler.ts",
|
|
477
|
-
"/src/adapters/fastify/fastifyRequestHandler.ts"
|
|
478
|
-
],
|
|
479
|
-
"percent": 0.99,
|
|
480
|
-
"reduction": 30.53
|
|
481
|
-
},
|
|
482
394
|
{
|
|
483
395
|
"id": "/src/unstable-core-do-not-import/utils.ts",
|
|
484
|
-
"size":
|
|
485
|
-
"origSize":
|
|
396
|
+
"size": 940,
|
|
397
|
+
"origSize": 1265,
|
|
486
398
|
"renderedExports": [
|
|
399
|
+
"unsetMarker",
|
|
487
400
|
"mergeWithoutOverrides",
|
|
488
401
|
"isObject",
|
|
489
402
|
"isFunction",
|
|
@@ -492,15 +405,16 @@
|
|
|
492
405
|
"removedExports": [],
|
|
493
406
|
"dependents": [
|
|
494
407
|
"/src/unstable-core-do-not-import.ts",
|
|
495
|
-
"/src/unstable-core-do-not-import/rpc/parseTRPCMessage.ts",
|
|
496
408
|
"/src/unstable-core-do-not-import/error/TRPCError.ts",
|
|
497
409
|
"/src/unstable-core-do-not-import/router.ts",
|
|
498
410
|
"/src/unstable-core-do-not-import/transformer.ts",
|
|
499
411
|
"/src/unstable-core-do-not-import/middleware.ts",
|
|
412
|
+
"/src/unstable-core-do-not-import/rpc/parseTRPCMessage.ts",
|
|
413
|
+
"/src/unstable-core-do-not-import/http/contentType.ts",
|
|
500
414
|
"/src/unstable-core-do-not-import/procedureBuilder.ts"
|
|
501
415
|
],
|
|
502
|
-
"percent":
|
|
503
|
-
"reduction":
|
|
416
|
+
"percent": 1.09,
|
|
417
|
+
"reduction": 25.69
|
|
504
418
|
},
|
|
505
419
|
{
|
|
506
420
|
"id": "/src/adapters/next-app-dir/formDataToObject.ts",
|
|
@@ -513,9 +427,21 @@
|
|
|
513
427
|
"dependents": [
|
|
514
428
|
"/src/adapters/next-app-dir/nextAppDirCaller.ts"
|
|
515
429
|
],
|
|
516
|
-
"percent": 0.
|
|
430
|
+
"percent": 0.95,
|
|
517
431
|
"reduction": 0.97
|
|
518
432
|
},
|
|
433
|
+
{
|
|
434
|
+
"id": "/src/adapters/aws-lambda/index.ts",
|
|
435
|
+
"size": 759,
|
|
436
|
+
"origSize": 2293,
|
|
437
|
+
"renderedExports": [
|
|
438
|
+
"awsLambdaRequestHandler"
|
|
439
|
+
],
|
|
440
|
+
"removedExports": [],
|
|
441
|
+
"dependents": [],
|
|
442
|
+
"percent": 0.88,
|
|
443
|
+
"reduction": 66.9
|
|
444
|
+
},
|
|
519
445
|
{
|
|
520
446
|
"id": "/src/unstable-core-do-not-import/http/batchStreamFormatter.ts",
|
|
521
447
|
"size": 667,
|
|
@@ -524,8 +450,11 @@
|
|
|
524
450
|
"getBatchStreamFormatter"
|
|
525
451
|
],
|
|
526
452
|
"removedExports": [],
|
|
527
|
-
"dependents": [
|
|
528
|
-
|
|
453
|
+
"dependents": [
|
|
454
|
+
"/src/unstable-core-do-not-import.ts",
|
|
455
|
+
"/src/unstable-core-do-not-import/http/resolveResponse.ts"
|
|
456
|
+
],
|
|
457
|
+
"percent": 0.77,
|
|
529
458
|
"reduction": 0.6
|
|
530
459
|
},
|
|
531
460
|
{
|
|
@@ -538,49 +467,23 @@
|
|
|
538
467
|
"removedExports": [],
|
|
539
468
|
"dependents": [
|
|
540
469
|
"/src/unstable-core-do-not-import.ts",
|
|
541
|
-
"/src/unstable-core-do-not-import/http/
|
|
470
|
+
"/src/unstable-core-do-not-import/http/resolveResponse.ts"
|
|
542
471
|
],
|
|
543
|
-
"percent": 0.
|
|
472
|
+
"percent": 0.73,
|
|
544
473
|
"reduction": 43.49
|
|
545
474
|
},
|
|
546
|
-
{
|
|
547
|
-
"id": "/src/unstable-core-do-not-import/contentTypeParsers.ts",
|
|
548
|
-
"size": 624,
|
|
549
|
-
"origSize": 1217,
|
|
550
|
-
"renderedExports": [
|
|
551
|
-
"parseOctetInput"
|
|
552
|
-
],
|
|
553
|
-
"removedExports": [],
|
|
554
|
-
"dependents": [],
|
|
555
|
-
"percent": 0.63,
|
|
556
|
-
"reduction": 48.73
|
|
557
|
-
},
|
|
558
475
|
{
|
|
559
476
|
"id": "/src/adapters/standalone.ts",
|
|
560
477
|
"size": 520,
|
|
561
|
-
"origSize":
|
|
478
|
+
"origSize": 1580,
|
|
562
479
|
"renderedExports": [
|
|
563
480
|
"createHTTPHandler",
|
|
564
481
|
"createHTTPServer"
|
|
565
482
|
],
|
|
566
483
|
"removedExports": [],
|
|
567
484
|
"dependents": [],
|
|
568
|
-
"percent": 0.
|
|
569
|
-
"reduction":
|
|
570
|
-
},
|
|
571
|
-
{
|
|
572
|
-
"id": "/src/adapters/node-http/content-type/octet/index.ts",
|
|
573
|
-
"size": 500,
|
|
574
|
-
"origSize": 841,
|
|
575
|
-
"renderedExports": [
|
|
576
|
-
"getOctetContentTypeHandler"
|
|
577
|
-
],
|
|
578
|
-
"removedExports": [],
|
|
579
|
-
"dependents": [
|
|
580
|
-
"/src/adapters/node-http/nodeHTTPRequestHandler.ts"
|
|
581
|
-
],
|
|
582
|
-
"percent": 0.51,
|
|
583
|
-
"reduction": 40.55
|
|
485
|
+
"percent": 0.6,
|
|
486
|
+
"reduction": 67.09
|
|
584
487
|
},
|
|
585
488
|
{
|
|
586
489
|
"id": "/src/adapters/next-app-dir/rethrowNextErrors.ts",
|
|
@@ -593,30 +496,13 @@
|
|
|
593
496
|
"dependents": [
|
|
594
497
|
"/src/adapters/next-app-dir/nextAppDirCaller.ts"
|
|
595
498
|
],
|
|
596
|
-
"percent": 0.
|
|
499
|
+
"percent": 0.49,
|
|
597
500
|
"reduction": 40.06
|
|
598
501
|
},
|
|
599
|
-
{
|
|
600
|
-
"id": "/src/adapters/content-handlers/concurrentCache.ts",
|
|
601
|
-
"size": 363,
|
|
602
|
-
"origSize": 394,
|
|
603
|
-
"renderedExports": [
|
|
604
|
-
"createConcurrentCache"
|
|
605
|
-
],
|
|
606
|
-
"removedExports": [],
|
|
607
|
-
"dependents": [
|
|
608
|
-
"/src/adapters/node-http/content-type/json/index.ts",
|
|
609
|
-
"/src/adapters/aws-lambda/content-type/json/index.ts",
|
|
610
|
-
"/src/adapters/fetch/content-type/json/index.ts",
|
|
611
|
-
"/src/adapters/fastify/content-type/json/index.ts"
|
|
612
|
-
],
|
|
613
|
-
"percent": 0.37,
|
|
614
|
-
"reduction": 7.87
|
|
615
|
-
},
|
|
616
502
|
{
|
|
617
503
|
"id": "/src/unstable-core-do-not-import/rootConfig.ts",
|
|
618
504
|
"size": 343,
|
|
619
|
-
"origSize":
|
|
505
|
+
"origSize": 2653,
|
|
620
506
|
"renderedExports": [
|
|
621
507
|
"isServerDefault"
|
|
622
508
|
],
|
|
@@ -625,20 +511,34 @@
|
|
|
625
511
|
"/src/unstable-core-do-not-import.ts",
|
|
626
512
|
"/src/unstable-core-do-not-import/initTRPC.ts"
|
|
627
513
|
],
|
|
628
|
-
"percent": 0.
|
|
629
|
-
"reduction": 87.
|
|
514
|
+
"percent": 0.4,
|
|
515
|
+
"reduction": 87.07
|
|
630
516
|
},
|
|
631
517
|
{
|
|
632
518
|
"id": "/src/adapters/express.ts",
|
|
633
519
|
"size": 280,
|
|
634
|
-
"origSize":
|
|
520
|
+
"origSize": 1034,
|
|
635
521
|
"renderedExports": [
|
|
636
522
|
"createExpressMiddleware"
|
|
637
523
|
],
|
|
638
524
|
"removedExports": [],
|
|
639
525
|
"dependents": [],
|
|
640
|
-
"percent": 0.
|
|
641
|
-
"reduction": 72.
|
|
526
|
+
"percent": 0.33,
|
|
527
|
+
"reduction": 72.92
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
"id": "/src/unstable-core-do-not-import/http/contentTypeParsers.ts",
|
|
531
|
+
"size": 277,
|
|
532
|
+
"origSize": 878,
|
|
533
|
+
"renderedExports": [
|
|
534
|
+
"octetInputParser"
|
|
535
|
+
],
|
|
536
|
+
"removedExports": [],
|
|
537
|
+
"dependents": [
|
|
538
|
+
"/src/unstable-core-do-not-import.ts"
|
|
539
|
+
],
|
|
540
|
+
"percent": 0.32,
|
|
541
|
+
"reduction": 68.45
|
|
642
542
|
},
|
|
643
543
|
{
|
|
644
544
|
"id": "/src/unstable-core-do-not-import/types.ts",
|
|
@@ -651,7 +551,7 @@
|
|
|
651
551
|
"dependents": [
|
|
652
552
|
"/src/unstable-core-do-not-import.ts"
|
|
653
553
|
],
|
|
654
|
-
"percent": 0.
|
|
554
|
+
"percent": 0.26,
|
|
655
555
|
"reduction": 94.55
|
|
656
556
|
},
|
|
657
557
|
{
|
|
@@ -665,7 +565,7 @@
|
|
|
665
565
|
"dependents": [
|
|
666
566
|
"/src/adapters/next-app-dir.ts"
|
|
667
567
|
],
|
|
668
|
-
"percent": 0.
|
|
568
|
+
"percent": 0.25,
|
|
669
569
|
"reduction": 36.26
|
|
670
570
|
},
|
|
671
571
|
{
|
|
@@ -676,8 +576,10 @@
|
|
|
676
576
|
"toURL"
|
|
677
577
|
],
|
|
678
578
|
"removedExports": [],
|
|
679
|
-
"dependents": [
|
|
680
|
-
|
|
579
|
+
"dependents": [
|
|
580
|
+
"/src/unstable-core-do-not-import.ts"
|
|
581
|
+
],
|
|
582
|
+
"percent": 0.18,
|
|
681
583
|
"reduction": 14.13
|
|
682
584
|
},
|
|
683
585
|
{
|
|
@@ -692,7 +594,7 @@
|
|
|
692
594
|
"/src/unstable-core-do-not-import.ts",
|
|
693
595
|
"/src/unstable-core-do-not-import/rpc/parseTRPCMessage.ts"
|
|
694
596
|
],
|
|
695
|
-
"percent": 0.
|
|
597
|
+
"percent": 0.09,
|
|
696
598
|
"reduction": 96.87
|
|
697
599
|
},
|
|
698
600
|
{
|
|
@@ -708,7 +610,7 @@
|
|
|
708
610
|
"/src/unstable-core-do-not-import/router.ts",
|
|
709
611
|
"/src/unstable-core-do-not-import/initTRPC.ts"
|
|
710
612
|
],
|
|
711
|
-
"percent": 0.
|
|
613
|
+
"percent": 0.07,
|
|
712
614
|
"reduction": 93.8
|
|
713
615
|
},
|
|
714
616
|
{
|
|
@@ -722,9 +624,9 @@
|
|
|
722
624
|
"reduction": 100
|
|
723
625
|
},
|
|
724
626
|
{
|
|
725
|
-
"id": "/src/
|
|
627
|
+
"id": "/src/index.ts",
|
|
726
628
|
"size": 0,
|
|
727
|
-
"origSize":
|
|
629
|
+
"origSize": 32,
|
|
728
630
|
"renderedExports": [],
|
|
729
631
|
"removedExports": [],
|
|
730
632
|
"dependents": [],
|
|
@@ -732,9 +634,9 @@
|
|
|
732
634
|
"reduction": 100
|
|
733
635
|
},
|
|
734
636
|
{
|
|
735
|
-
"id": "/src/
|
|
637
|
+
"id": "/src/rpc.ts",
|
|
736
638
|
"size": 0,
|
|
737
|
-
"origSize":
|
|
639
|
+
"origSize": 36,
|
|
738
640
|
"renderedExports": [],
|
|
739
641
|
"removedExports": [],
|
|
740
642
|
"dependents": [],
|
|
@@ -742,9 +644,9 @@
|
|
|
742
644
|
"reduction": 100
|
|
743
645
|
},
|
|
744
646
|
{
|
|
745
|
-
"id": "/src/
|
|
647
|
+
"id": "/src/shared.ts",
|
|
746
648
|
"size": 0,
|
|
747
|
-
"origSize":
|
|
649
|
+
"origSize": 653,
|
|
748
650
|
"renderedExports": [],
|
|
749
651
|
"removedExports": [],
|
|
750
652
|
"dependents": [],
|
|
@@ -752,9 +654,9 @@
|
|
|
752
654
|
"reduction": 100
|
|
753
655
|
},
|
|
754
656
|
{
|
|
755
|
-
"id": "/src/
|
|
657
|
+
"id": "/src/unstable-core-do-not-import.ts",
|
|
756
658
|
"size": 0,
|
|
757
|
-
"origSize":
|
|
659
|
+
"origSize": 1908,
|
|
758
660
|
"renderedExports": [],
|
|
759
661
|
"removedExports": [],
|
|
760
662
|
"dependents": [],
|
|
@@ -784,9 +686,9 @@
|
|
|
784
686
|
"reduction": 100
|
|
785
687
|
},
|
|
786
688
|
{
|
|
787
|
-
"id": "/src/adapters/
|
|
689
|
+
"id": "/src/adapters/fastify/index.ts",
|
|
788
690
|
"size": 0,
|
|
789
|
-
"origSize":
|
|
691
|
+
"origSize": 78,
|
|
790
692
|
"renderedExports": [],
|
|
791
693
|
"removedExports": [],
|
|
792
694
|
"dependents": [],
|
|
@@ -794,9 +696,9 @@
|
|
|
794
696
|
"reduction": 100
|
|
795
697
|
},
|
|
796
698
|
{
|
|
797
|
-
"id": "/src/adapters/
|
|
699
|
+
"id": "/src/adapters/fetch/index.ts",
|
|
798
700
|
"size": 0,
|
|
799
|
-
"origSize":
|
|
701
|
+
"origSize": 64,
|
|
800
702
|
"renderedExports": [],
|
|
801
703
|
"removedExports": [],
|
|
802
704
|
"dependents": [],
|
|
@@ -806,17 +708,18 @@
|
|
|
806
708
|
{
|
|
807
709
|
"id": "/src/adapters/node-http/index.ts",
|
|
808
710
|
"size": 0,
|
|
809
|
-
"origSize":
|
|
711
|
+
"origSize": 111,
|
|
810
712
|
"renderedExports": [],
|
|
811
713
|
"removedExports": [],
|
|
812
714
|
"dependents": [
|
|
813
715
|
"/src/adapters/express.ts",
|
|
814
716
|
"/src/adapters/next.ts",
|
|
815
|
-
"/src/adapters/standalone.ts"
|
|
717
|
+
"/src/adapters/standalone.ts",
|
|
718
|
+
"/src/adapters/fastify/fastifyRequestHandler.ts"
|
|
816
719
|
],
|
|
817
720
|
"percent": 0,
|
|
818
721
|
"reduction": 100
|
|
819
722
|
}
|
|
820
723
|
],
|
|
821
|
-
"moduleCount":
|
|
724
|
+
"moduleCount": 50
|
|
822
725
|
}
|