@trpc/server 11.0.0-next-beta.208 → 11.0.0-next-beta.218
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 -0
- package/dist/@trpc/server/http.d.ts.map +1 -0
- package/dist/{@trpc-server.d.ts → @trpc/server/index.d.ts} +4 -4
- package/dist/@trpc/server/index.d.ts.map +1 -0
- package/dist/@trpc/server/rpc.d.ts +3 -0
- package/dist/@trpc/server/rpc.d.ts.map +1 -0
- package/dist/adapters/aws-lambda/index.d.ts +1 -2
- package/dist/adapters/aws-lambda/index.d.ts.map +1 -1
- package/dist/adapters/aws-lambda/index.js +6 -5
- package/dist/adapters/aws-lambda/index.mjs +4 -3
- package/dist/adapters/aws-lambda/utils.d.ts +2 -3
- package/dist/adapters/aws-lambda/utils.d.ts.map +1 -1
- package/dist/adapters/aws-lambda/utils.js +5 -4
- package/dist/adapters/aws-lambda/utils.mjs +3 -2
- package/dist/adapters/express.d.ts +1 -2
- package/dist/adapters/express.d.ts.map +1 -1
- package/dist/adapters/fastify/fastifyRequestHandler.d.ts +2 -2
- package/dist/adapters/fastify/fastifyRequestHandler.d.ts.map +1 -1
- package/dist/adapters/fastify/fastifyRequestHandler.js +6 -3
- package/dist/adapters/fastify/fastifyRequestHandler.mjs +4 -1
- package/dist/adapters/fastify/fastifyTRPCPlugin.d.ts +1 -2
- package/dist/adapters/fastify/fastifyTRPCPlugin.d.ts.map +1 -1
- package/dist/adapters/fastify/fastifyTRPCPlugin.js +0 -1
- package/dist/adapters/fastify/fastifyTRPCPlugin.mjs +0 -1
- package/dist/adapters/fetch/fetchRequestHandler.d.ts +1 -2
- package/dist/adapters/fetch/fetchRequestHandler.d.ts.map +1 -1
- package/dist/adapters/fetch/fetchRequestHandler.js +6 -4
- package/dist/adapters/fetch/fetchRequestHandler.mjs +4 -2
- package/dist/adapters/fetch/types.d.ts +2 -3
- package/dist/adapters/fetch/types.d.ts.map +1 -1
- package/dist/adapters/next.d.ts +4 -2
- package/dist/adapters/next.d.ts.map +1 -1
- package/dist/adapters/next.js +6 -4
- package/dist/adapters/next.mjs +4 -2
- package/dist/adapters/node-http/content-type/json/getPostBody.d.ts +1 -1
- package/dist/adapters/node-http/content-type/json/getPostBody.d.ts.map +1 -1
- package/dist/adapters/node-http/content-type/json/getPostBody.js +4 -2
- package/dist/adapters/node-http/content-type/json/getPostBody.mjs +3 -1
- package/dist/adapters/node-http/content-type/json/index.js +4 -2
- package/dist/adapters/node-http/content-type/json/index.mjs +3 -1
- package/dist/adapters/node-http/internals/contentType.d.ts +2 -2
- package/dist/adapters/node-http/nodeHTTPRequestHandler.d.ts +1 -2
- package/dist/adapters/node-http/nodeHTTPRequestHandler.d.ts.map +1 -1
- package/dist/adapters/node-http/nodeHTTPRequestHandler.js +6 -4
- package/dist/adapters/node-http/nodeHTTPRequestHandler.mjs +4 -2
- package/dist/adapters/node-http/types.d.ts +3 -4
- package/dist/adapters/node-http/types.d.ts.map +1 -1
- package/dist/adapters/standalone.d.ts +1 -2
- package/dist/adapters/standalone.d.ts.map +1 -1
- package/dist/adapters/standalone.js +1 -0
- package/dist/adapters/standalone.mjs +1 -0
- package/dist/adapters/ws.d.ts +3 -3
- package/dist/adapters/ws.d.ts.map +1 -1
- package/dist/adapters/ws.js +30 -25
- package/dist/adapters/ws.mjs +8 -3
- package/dist/bundle-analysis.json +416 -75
- package/dist/http.d.ts +1 -1
- package/dist/http.js +11 -7
- package/dist/http.mjs +6 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +18 -41
- package/dist/index.mjs +8 -1
- package/dist/observable/index.d.ts +5 -0
- package/dist/observable/index.d.ts.map +1 -0
- package/dist/observable/index.js +13 -0
- package/dist/observable/index.mjs +2 -0
- package/dist/observable/observable.d.ts +13 -0
- package/dist/observable/observable.d.ts.map +1 -0
- package/dist/observable/observable.js +126 -0
- package/dist/observable/observable.mjs +122 -0
- package/dist/observable/operators.d.ts +8 -0
- package/dist/observable/operators.d.ts.map +1 -0
- package/dist/observable/operators.js +103 -0
- package/dist/observable/operators.mjs +99 -0
- package/dist/observable/types.d.ts +26 -0
- package/dist/observable/types.d.ts.map +1 -0
- package/dist/rpc.d.ts +1 -1
- package/dist/rpc.d.ts.map +1 -1
- package/dist/rpc.js +6 -7
- package/dist/rpc.mjs +3 -1
- package/dist/shared.d.ts +1 -1
- package/dist/shared.js +6 -9
- package/dist/shared.mjs +4 -1
- package/dist/unstable-core-do-not-import/TRPCInferrable.d.ts +6 -0
- package/dist/unstable-core-do-not-import/TRPCInferrable.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/createProxy.d.ts +19 -0
- package/dist/unstable-core-do-not-import/createProxy.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/createProxy.js +52 -0
- package/dist/unstable-core-do-not-import/createProxy.mjs +49 -0
- package/dist/unstable-core-do-not-import/error/TRPCError.d.ts +13 -0
- package/dist/unstable-core-do-not-import/error/TRPCError.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/error/TRPCError.js +67 -0
- package/dist/unstable-core-do-not-import/error/TRPCError.mjs +63 -0
- package/dist/unstable-core-do-not-import/error/formatter.d.ts +33 -0
- package/dist/unstable-core-do-not-import/error/formatter.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/error/formatter.js +7 -0
- package/dist/unstable-core-do-not-import/error/formatter.mjs +5 -0
- package/dist/unstable-core-do-not-import/error/getErrorShape.d.ts +15 -0
- package/dist/unstable-core-do-not-import/error/getErrorShape.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/error/getErrorShape.js +31 -0
- package/dist/unstable-core-do-not-import/error/getErrorShape.mjs +29 -0
- package/dist/unstable-core-do-not-import/http/batchStreamFormatter.d.ts +24 -0
- package/dist/unstable-core-do-not-import/http/batchStreamFormatter.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/http/batchStreamFormatter.js +32 -0
- package/dist/unstable-core-do-not-import/http/batchStreamFormatter.mjs +30 -0
- package/dist/unstable-core-do-not-import/http/contentType.d.ts +29 -0
- package/dist/unstable-core-do-not-import/http/contentType.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/http/contentType.js +54 -0
- package/dist/unstable-core-do-not-import/http/contentType.mjs +52 -0
- package/dist/unstable-core-do-not-import/http/getHTTPStatusCode.d.ts +5 -0
- package/dist/unstable-core-do-not-import/http/getHTTPStatusCode.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/http/getHTTPStatusCode.js +51 -0
- package/dist/unstable-core-do-not-import/http/getHTTPStatusCode.mjs +48 -0
- package/dist/unstable-core-do-not-import/http/index.d.ts +7 -0
- package/dist/unstable-core-do-not-import/http/index.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/http/resolveHTTPResponse.d.ts +51 -0
- package/dist/unstable-core-do-not-import/http/resolveHTTPResponse.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/http/resolveHTTPResponse.js +295 -0
- package/dist/unstable-core-do-not-import/http/resolveHTTPResponse.mjs +293 -0
- package/dist/unstable-core-do-not-import/http/types.d.ts +96 -0
- package/dist/unstable-core-do-not-import/http/types.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/index.d.ts +37 -0
- package/dist/unstable-core-do-not-import/index.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/index.js +48 -0
- package/dist/unstable-core-do-not-import/index.mjs +16 -0
- package/dist/unstable-core-do-not-import/initTRPC.d.ts +96 -0
- package/dist/unstable-core-do-not-import/initTRPC.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/initTRPC.js +95 -0
- package/dist/unstable-core-do-not-import/initTRPC.mjs +93 -0
- package/dist/unstable-core-do-not-import/middleware.d.ts +105 -0
- package/dist/unstable-core-do-not-import/middleware.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/middleware.js +95 -0
- package/dist/unstable-core-do-not-import/middleware.mjs +89 -0
- package/dist/unstable-core-do-not-import/parser.d.ts +30 -0
- package/dist/unstable-core-do-not-import/parser.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/parser.js +37 -0
- package/dist/unstable-core-do-not-import/parser.mjs +35 -0
- package/dist/unstable-core-do-not-import/procedure.d.ts +72 -0
- package/dist/unstable-core-do-not-import/procedure.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/procedure.js +9 -0
- package/dist/unstable-core-do-not-import/procedure.mjs +7 -0
- package/dist/unstable-core-do-not-import/procedureBuilder.d.ts +101 -0
- package/dist/unstable-core-do-not-import/procedureBuilder.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/procedureBuilder.js +176 -0
- package/dist/unstable-core-do-not-import/procedureBuilder.mjs +173 -0
- package/dist/unstable-core-do-not-import/rootConfig.d.ts +75 -0
- package/dist/unstable-core-do-not-import/rootConfig.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/rootConfig.js +8 -0
- package/dist/unstable-core-do-not-import/rootConfig.mjs +6 -0
- package/dist/unstable-core-do-not-import/router.d.ts +85 -0
- package/dist/unstable-core-do-not-import/router.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/router.js +156 -0
- package/dist/unstable-core-do-not-import/router.mjs +151 -0
- package/dist/unstable-core-do-not-import/rpc/codes.d.ts +51 -0
- package/dist/unstable-core-do-not-import/rpc/codes.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/rpc/codes.js +38 -0
- package/dist/unstable-core-do-not-import/rpc/codes.mjs +35 -0
- package/dist/unstable-core-do-not-import/rpc/envelopes.d.ts +97 -0
- package/dist/unstable-core-do-not-import/rpc/envelopes.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/rpc/index.d.ts +5 -0
- package/dist/unstable-core-do-not-import/rpc/index.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/rpc/parseTRPCMessage.d.ts +5 -0
- package/dist/unstable-core-do-not-import/rpc/parseTRPCMessage.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/rpc/parseTRPCMessage.js +59 -0
- package/dist/unstable-core-do-not-import/rpc/parseTRPCMessage.mjs +57 -0
- package/dist/unstable-core-do-not-import/serialize.d.ts +62 -0
- package/dist/unstable-core-do-not-import/serialize.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/transformer.d.ts +107 -0
- package/dist/unstable-core-do-not-import/transformer.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/transformer.js +107 -0
- package/dist/unstable-core-do-not-import/transformer.mjs +102 -0
- package/dist/unstable-core-do-not-import/types.d.ts +98 -0
- package/dist/unstable-core-do-not-import/types.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/utils.d.ts +27 -0
- package/dist/unstable-core-do-not-import/utils.d.ts.map +1 -0
- package/dist/unstable-core-do-not-import/utils.js +44 -0
- package/dist/unstable-core-do-not-import/utils.mjs +39 -0
- package/package.json +11 -8
- package/src/@trpc/server/http.ts +26 -0
- package/src/{@trpc-server.ts → @trpc/server/index.ts} +3 -3
- package/src/@trpc/server/rpc.ts +26 -0
- package/src/adapters/aws-lambda/index.ts +4 -5
- package/src/adapters/aws-lambda/utils.ts +3 -4
- package/src/adapters/express.ts +1 -3
- package/src/adapters/fastify/fastifyRequestHandler.ts +6 -4
- package/src/adapters/fastify/fastifyTRPCPlugin.ts +1 -2
- package/src/adapters/fetch/fetchRequestHandler.ts +6 -4
- package/src/adapters/fetch/types.ts +2 -3
- package/src/adapters/next.ts +6 -3
- package/src/adapters/node-http/content-type/form-data/index.ts +1 -1
- package/src/adapters/node-http/content-type/json/getPostBody.ts +2 -2
- package/src/adapters/node-http/content-type/json/index.ts +1 -1
- package/src/adapters/node-http/internals/contentType.ts +2 -2
- package/src/adapters/node-http/nodeHTTPRequestHandler.ts +6 -4
- package/src/adapters/node-http/types.ts +4 -5
- package/src/adapters/standalone.ts +2 -2
- package/src/adapters/ws.ts +15 -14
- package/src/http.ts +1 -1
- package/src/index.ts +1 -1
- package/src/observable/index.ts +10 -0
- package/src/observable/observable.ts +158 -0
- package/src/observable/operators.ts +119 -0
- package/src/observable/types.ts +76 -0
- package/src/rpc.ts +1 -2
- package/src/shared.ts +1 -1
- package/src/unstable-core-do-not-import/TRPCInferrable.ts +9 -0
- package/src/unstable-core-do-not-import/createProxy.ts +59 -0
- package/src/unstable-core-do-not-import/error/TRPCError.ts +82 -0
- package/src/unstable-core-do-not-import/error/formatter.ts +51 -0
- package/src/unstable-core-do-not-import/error/getErrorShape.ts +36 -0
- package/src/unstable-core-do-not-import/http/batchStreamFormatter.ts +29 -0
- package/src/unstable-core-do-not-import/http/contentType.ts +99 -0
- package/src/unstable-core-do-not-import/http/getHTTPStatusCode.ts +57 -0
- package/src/unstable-core-do-not-import/http/index.ts +23 -0
- package/src/unstable-core-do-not-import/http/resolveHTTPResponse.ts +458 -0
- package/src/unstable-core-do-not-import/http/types.ts +111 -0
- package/src/unstable-core-do-not-import/index.ts +110 -0
- package/src/unstable-core-do-not-import/initTRPC.ts +206 -0
- package/src/unstable-core-do-not-import/middleware.ts +233 -0
- package/src/unstable-core-do-not-import/parser.ts +94 -0
- package/src/unstable-core-do-not-import/procedure.ts +108 -0
- package/src/unstable-core-do-not-import/procedureBuilder.ts +458 -0
- package/src/unstable-core-do-not-import/rootConfig.ts +90 -0
- package/src/unstable-core-do-not-import/router.ts +370 -0
- package/src/unstable-core-do-not-import/rpc/codes.ts +44 -0
- package/src/unstable-core-do-not-import/rpc/envelopes.ts +136 -0
- package/src/unstable-core-do-not-import/rpc/index.ts +21 -0
- package/src/unstable-core-do-not-import/rpc/parseTRPCMessage.ts +85 -0
- package/src/unstable-core-do-not-import/serialize.ts +122 -0
- package/src/unstable-core-do-not-import/transformer.ts +202 -0
- package/src/unstable-core-do-not-import/types.ts +151 -0
- package/src/unstable-core-do-not-import/utils.ts +59 -0
- package/unstable-core-do-not-import/index.d.ts +1 -0
- package/unstable-core-do-not-import/index.js +1 -0
- package/dist/@trpc-core-unstable-do-not-import-this-please.d.ts +0 -9
- package/dist/@trpc-core-unstable-do-not-import-this-please.d.ts.map +0 -1
- package/dist/@trpc-server/http.d.ts +0 -2
- package/dist/@trpc-server/http.d.ts.map +0 -1
- package/dist/@trpc-server.d.ts.map +0 -1
- package/dist/observable.d.ts +0 -2
- package/dist/observable.d.ts.map +0 -1
- package/dist/observable.js +0 -12
- package/dist/observable.mjs +0 -1
- package/src/@trpc-core-unstable-do-not-import-this-please.ts +0 -9
- package/src/@trpc-server/http.ts +0 -2
- package/src/observable.ts +0 -1
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"bundleSize":
|
|
3
|
-
"bundleOrigSize":
|
|
4
|
-
"bundleReduction":
|
|
2
|
+
"bundleSize": 102737,
|
|
3
|
+
"bundleOrigSize": 159976,
|
|
4
|
+
"bundleReduction": 35.78,
|
|
5
5
|
"modules": [
|
|
6
6
|
{
|
|
7
7
|
"id": "/src/adapters/ws.ts",
|
|
8
|
-
"size":
|
|
9
|
-
"origSize":
|
|
8
|
+
"size": 9877,
|
|
9
|
+
"origSize": 9169,
|
|
10
10
|
"renderedExports": [
|
|
11
11
|
"applyWSSHandler"
|
|
12
12
|
],
|
|
@@ -14,9 +14,21 @@
|
|
|
14
14
|
"dependents": [
|
|
15
15
|
"/src/adapters/fastify/fastifyTRPCPlugin.ts"
|
|
16
16
|
],
|
|
17
|
-
"percent":
|
|
17
|
+
"percent": 9.61,
|
|
18
18
|
"reduction": 0
|
|
19
19
|
},
|
|
20
|
+
{
|
|
21
|
+
"id": "/src/unstable-core-do-not-import/http/resolveHTTPResponse.ts",
|
|
22
|
+
"size": 9272,
|
|
23
|
+
"origSize": 12095,
|
|
24
|
+
"renderedExports": [
|
|
25
|
+
"resolveHTTPResponse"
|
|
26
|
+
],
|
|
27
|
+
"removedExports": [],
|
|
28
|
+
"dependents": [],
|
|
29
|
+
"percent": 9.02,
|
|
30
|
+
"reduction": 23.34
|
|
31
|
+
},
|
|
20
32
|
{
|
|
21
33
|
"id": "/home/runner/work/trpc/trpc/node_modules/.pnpm/@web3-storage+multipart-parser@1.0.0/node_modules/@web3-storage/multipart-parser/esm/src/index.js",
|
|
22
34
|
"size": 6004,
|
|
@@ -30,9 +42,44 @@
|
|
|
30
42
|
"dependents": [
|
|
31
43
|
"/src/adapters/node-http/content-type/form-data/index.ts"
|
|
32
44
|
],
|
|
33
|
-
"percent":
|
|
45
|
+
"percent": 5.84,
|
|
34
46
|
"reduction": 5.48
|
|
35
47
|
},
|
|
48
|
+
{
|
|
49
|
+
"id": "/src/unstable-core-do-not-import/router.ts",
|
|
50
|
+
"size": 5634,
|
|
51
|
+
"origSize": 10592,
|
|
52
|
+
"renderedExports": [
|
|
53
|
+
"createRouterFactory",
|
|
54
|
+
"callProcedure",
|
|
55
|
+
"createCallerFactory",
|
|
56
|
+
"mergeRouters"
|
|
57
|
+
],
|
|
58
|
+
"removedExports": [],
|
|
59
|
+
"dependents": [
|
|
60
|
+
"/src/unstable-core-do-not-import/index.ts",
|
|
61
|
+
"/src/unstable-core-do-not-import/http/resolveHTTPResponse.ts",
|
|
62
|
+
"/src/unstable-core-do-not-import/initTRPC.ts"
|
|
63
|
+
],
|
|
64
|
+
"percent": 5.48,
|
|
65
|
+
"reduction": 46.81
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"id": "/src/unstable-core-do-not-import/procedureBuilder.ts",
|
|
69
|
+
"size": 5602,
|
|
70
|
+
"origSize": 11597,
|
|
71
|
+
"renderedExports": [
|
|
72
|
+
"unsetMarker",
|
|
73
|
+
"createBuilder"
|
|
74
|
+
],
|
|
75
|
+
"removedExports": [],
|
|
76
|
+
"dependents": [
|
|
77
|
+
"/src/unstable-core-do-not-import/index.ts",
|
|
78
|
+
"/src/unstable-core-do-not-import/initTRPC.ts"
|
|
79
|
+
],
|
|
80
|
+
"percent": 5.45,
|
|
81
|
+
"reduction": 51.69
|
|
82
|
+
},
|
|
36
83
|
{
|
|
37
84
|
"id": "/src/adapters/node-http/content-type/form-data/fileUploadHandler.ts",
|
|
38
85
|
"size": 4977,
|
|
@@ -46,7 +93,7 @@
|
|
|
46
93
|
"dependents": [
|
|
47
94
|
"/src/adapters/node-http/content-type/form-data/index.ts"
|
|
48
95
|
],
|
|
49
|
-
"percent":
|
|
96
|
+
"percent": 4.84,
|
|
50
97
|
"reduction": 36.77
|
|
51
98
|
},
|
|
52
99
|
{
|
|
@@ -70,7 +117,7 @@
|
|
|
70
117
|
"dependents": [
|
|
71
118
|
"/home/runner/work/trpc/trpc/node_modules/.pnpm/@web3-storage+multipart-parser@1.0.0/node_modules/@web3-storage/multipart-parser/esm/src/index.js"
|
|
72
119
|
],
|
|
73
|
-
"percent":
|
|
120
|
+
"percent": 4.34,
|
|
74
121
|
"reduction": 35.54
|
|
75
122
|
},
|
|
76
123
|
{
|
|
@@ -84,13 +131,13 @@
|
|
|
84
131
|
],
|
|
85
132
|
"removedExports": [],
|
|
86
133
|
"dependents": [],
|
|
87
|
-
"percent":
|
|
134
|
+
"percent": 4.29,
|
|
88
135
|
"reduction": 34.34
|
|
89
136
|
},
|
|
90
137
|
{
|
|
91
138
|
"id": "/src/adapters/node-http/nodeHTTPRequestHandler.ts",
|
|
92
|
-
"size":
|
|
93
|
-
"origSize":
|
|
139
|
+
"size": 3934,
|
|
140
|
+
"origSize": 4505,
|
|
94
141
|
"renderedExports": [
|
|
95
142
|
"nodeHTTPRequestHandler"
|
|
96
143
|
],
|
|
@@ -98,13 +145,13 @@
|
|
|
98
145
|
"dependents": [
|
|
99
146
|
"/src/adapters/node-http/index.ts"
|
|
100
147
|
],
|
|
101
|
-
"percent":
|
|
102
|
-
"reduction": 12.
|
|
148
|
+
"percent": 3.83,
|
|
149
|
+
"reduction": 12.67
|
|
103
150
|
},
|
|
104
151
|
{
|
|
105
152
|
"id": "/src/adapters/fetch/fetchRequestHandler.ts",
|
|
106
|
-
"size":
|
|
107
|
-
"origSize":
|
|
153
|
+
"size": 3550,
|
|
154
|
+
"origSize": 3919,
|
|
108
155
|
"renderedExports": [
|
|
109
156
|
"fetchRequestHandler"
|
|
110
157
|
],
|
|
@@ -112,13 +159,29 @@
|
|
|
112
159
|
"dependents": [
|
|
113
160
|
"/src/adapters/fetch/index.ts"
|
|
114
161
|
],
|
|
115
|
-
"percent":
|
|
116
|
-
"reduction": 9.
|
|
162
|
+
"percent": 3.46,
|
|
163
|
+
"reduction": 9.42
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"id": "/src/observable/observable.ts",
|
|
167
|
+
"size": 3430,
|
|
168
|
+
"origSize": 3627,
|
|
169
|
+
"renderedExports": [
|
|
170
|
+
"isObservable",
|
|
171
|
+
"observable",
|
|
172
|
+
"observableToPromise"
|
|
173
|
+
],
|
|
174
|
+
"removedExports": [],
|
|
175
|
+
"dependents": [
|
|
176
|
+
"/src/observable/index.ts"
|
|
177
|
+
],
|
|
178
|
+
"percent": 3.34,
|
|
179
|
+
"reduction": 5.43
|
|
117
180
|
},
|
|
118
181
|
{
|
|
119
182
|
"id": "/src/adapters/aws-lambda/utils.ts",
|
|
120
|
-
"size":
|
|
121
|
-
"origSize":
|
|
183
|
+
"size": 3308,
|
|
184
|
+
"origSize": 5208,
|
|
122
185
|
"renderedExports": [
|
|
123
186
|
"isPayloadV1",
|
|
124
187
|
"isPayloadV2",
|
|
@@ -131,25 +194,63 @@
|
|
|
131
194
|
"dependents": [
|
|
132
195
|
"/src/adapters/aws-lambda/index.ts"
|
|
133
196
|
],
|
|
134
|
-
"percent":
|
|
135
|
-
"reduction": 36.
|
|
197
|
+
"percent": 3.22,
|
|
198
|
+
"reduction": 36.48
|
|
136
199
|
},
|
|
137
200
|
{
|
|
138
|
-
"id": "/src/
|
|
139
|
-
"size":
|
|
140
|
-
"origSize":
|
|
201
|
+
"id": "/src/unstable-core-do-not-import/initTRPC.ts",
|
|
202
|
+
"size": 3185,
|
|
203
|
+
"origSize": 5796,
|
|
141
204
|
"renderedExports": [
|
|
142
|
-
"
|
|
205
|
+
"initTRPC"
|
|
143
206
|
],
|
|
144
207
|
"removedExports": [],
|
|
145
|
-
"dependents": [
|
|
146
|
-
|
|
147
|
-
|
|
208
|
+
"dependents": [
|
|
209
|
+
"/src/unstable-core-do-not-import/index.ts"
|
|
210
|
+
],
|
|
211
|
+
"percent": 3.1,
|
|
212
|
+
"reduction": 45.05
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"id": "/src/observable/operators.ts",
|
|
216
|
+
"size": 2980,
|
|
217
|
+
"origSize": 2812,
|
|
218
|
+
"renderedExports": [
|
|
219
|
+
"map",
|
|
220
|
+
"share",
|
|
221
|
+
"tap"
|
|
222
|
+
],
|
|
223
|
+
"removedExports": [],
|
|
224
|
+
"dependents": [
|
|
225
|
+
"/src/observable/index.ts"
|
|
226
|
+
],
|
|
227
|
+
"percent": 2.9,
|
|
228
|
+
"reduction": 0
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"id": "/src/unstable-core-do-not-import/transformer.ts",
|
|
232
|
+
"size": 2764,
|
|
233
|
+
"origSize": 5168,
|
|
234
|
+
"renderedExports": [
|
|
235
|
+
"getDataTransformer",
|
|
236
|
+
"defaultTransformer",
|
|
237
|
+
"transformTRPCResponse",
|
|
238
|
+
"transformResult"
|
|
239
|
+
],
|
|
240
|
+
"removedExports": [],
|
|
241
|
+
"dependents": [
|
|
242
|
+
"/src/unstable-core-do-not-import/index.ts",
|
|
243
|
+
"/src/unstable-core-do-not-import/http/resolveHTTPResponse.ts",
|
|
244
|
+
"/src/unstable-core-do-not-import/initTRPC.ts",
|
|
245
|
+
"/src/unstable-core-do-not-import/router.ts"
|
|
246
|
+
],
|
|
247
|
+
"percent": 2.69,
|
|
248
|
+
"reduction": 46.52
|
|
148
249
|
},
|
|
149
250
|
{
|
|
150
251
|
"id": "/src/adapters/fastify/fastifyRequestHandler.ts",
|
|
151
|
-
"size":
|
|
152
|
-
"origSize":
|
|
252
|
+
"size": 2590,
|
|
253
|
+
"origSize": 4005,
|
|
153
254
|
"renderedExports": [
|
|
154
255
|
"fastifyRequestHandler"
|
|
155
256
|
],
|
|
@@ -158,25 +259,104 @@
|
|
|
158
259
|
"/src/adapters/fastify/index.ts",
|
|
159
260
|
"/src/adapters/fastify/fastifyTRPCPlugin.ts"
|
|
160
261
|
],
|
|
161
|
-
"percent":
|
|
162
|
-
"reduction":
|
|
262
|
+
"percent": 2.52,
|
|
263
|
+
"reduction": 35.33
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"id": "/src/unstable-core-do-not-import/middleware.ts",
|
|
267
|
+
"size": 2579,
|
|
268
|
+
"origSize": 5836,
|
|
269
|
+
"renderedExports": [
|
|
270
|
+
"middlewareMarker",
|
|
271
|
+
"createMiddlewareFactory",
|
|
272
|
+
"experimental_standaloneMiddleware",
|
|
273
|
+
"createInputMiddleware",
|
|
274
|
+
"createOutputMiddleware"
|
|
275
|
+
],
|
|
276
|
+
"removedExports": [],
|
|
277
|
+
"dependents": [
|
|
278
|
+
"/src/unstable-core-do-not-import/index.ts",
|
|
279
|
+
"/src/unstable-core-do-not-import/initTRPC.ts",
|
|
280
|
+
"/src/unstable-core-do-not-import/procedureBuilder.ts"
|
|
281
|
+
],
|
|
282
|
+
"percent": 2.51,
|
|
283
|
+
"reduction": 55.81
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"id": "/src/adapters/aws-lambda/index.ts",
|
|
287
|
+
"size": 2540,
|
|
288
|
+
"origSize": 3701,
|
|
289
|
+
"renderedExports": [
|
|
290
|
+
"awsLambdaRequestHandler"
|
|
291
|
+
],
|
|
292
|
+
"removedExports": [],
|
|
293
|
+
"dependents": [],
|
|
294
|
+
"percent": 2.47,
|
|
295
|
+
"reduction": 31.37
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"id": "/src/unstable-core-do-not-import/error/TRPCError.ts",
|
|
299
|
+
"size": 1733,
|
|
300
|
+
"origSize": 2152,
|
|
301
|
+
"renderedExports": [
|
|
302
|
+
"getCauseFromUnknown",
|
|
303
|
+
"getTRPCErrorFromUnknown",
|
|
304
|
+
"TRPCError"
|
|
305
|
+
],
|
|
306
|
+
"removedExports": [],
|
|
307
|
+
"dependents": [
|
|
308
|
+
"/src/unstable-core-do-not-import/index.ts",
|
|
309
|
+
"/src/unstable-core-do-not-import/http/resolveHTTPResponse.ts",
|
|
310
|
+
"/src/unstable-core-do-not-import/http/contentType.ts",
|
|
311
|
+
"/src/unstable-core-do-not-import/middleware.ts",
|
|
312
|
+
"/src/unstable-core-do-not-import/router.ts",
|
|
313
|
+
"/src/unstable-core-do-not-import/procedureBuilder.ts"
|
|
314
|
+
],
|
|
315
|
+
"percent": 1.69,
|
|
316
|
+
"reduction": 19.47
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"id": "/src/unstable-core-do-not-import/http/contentType.ts",
|
|
320
|
+
"size": 1642,
|
|
321
|
+
"origSize": 2518,
|
|
322
|
+
"renderedExports": [
|
|
323
|
+
"getJsonContentTypeInputs"
|
|
324
|
+
],
|
|
325
|
+
"removedExports": [],
|
|
326
|
+
"dependents": [
|
|
327
|
+
"/src/unstable-core-do-not-import/http/resolveHTTPResponse.ts"
|
|
328
|
+
],
|
|
329
|
+
"percent": 1.6,
|
|
330
|
+
"reduction": 34.79
|
|
163
331
|
},
|
|
164
332
|
{
|
|
165
333
|
"id": "/src/adapters/next.ts",
|
|
166
|
-
"size":
|
|
167
|
-
"origSize":
|
|
334
|
+
"size": 1602,
|
|
335
|
+
"origSize": 2260,
|
|
168
336
|
"renderedExports": [
|
|
169
337
|
"createNextApiHandler"
|
|
170
338
|
],
|
|
171
339
|
"removedExports": [],
|
|
172
340
|
"dependents": [],
|
|
173
|
-
"percent":
|
|
174
|
-
"reduction":
|
|
341
|
+
"percent": 1.56,
|
|
342
|
+
"reduction": 29.12
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"id": "/src/unstable-core-do-not-import/rpc/parseTRPCMessage.ts",
|
|
346
|
+
"size": 1580,
|
|
347
|
+
"origSize": 2001,
|
|
348
|
+
"renderedExports": [
|
|
349
|
+
"parseTRPCMessage"
|
|
350
|
+
],
|
|
351
|
+
"removedExports": [],
|
|
352
|
+
"dependents": [],
|
|
353
|
+
"percent": 1.54,
|
|
354
|
+
"reduction": 21.04
|
|
175
355
|
},
|
|
176
356
|
{
|
|
177
357
|
"id": "/src/adapters/fastify/fastifyTRPCPlugin.ts",
|
|
178
|
-
"size":
|
|
179
|
-
"origSize":
|
|
358
|
+
"size": 1530,
|
|
359
|
+
"origSize": 2278,
|
|
180
360
|
"renderedExports": [
|
|
181
361
|
"fastifyTRPCPlugin"
|
|
182
362
|
],
|
|
@@ -184,8 +364,25 @@
|
|
|
184
364
|
"dependents": [
|
|
185
365
|
"/src/adapters/fastify/index.ts"
|
|
186
366
|
],
|
|
187
|
-
"percent":
|
|
188
|
-
"reduction": 32.
|
|
367
|
+
"percent": 1.49,
|
|
368
|
+
"reduction": 32.84
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"id": "/src/unstable-core-do-not-import/createProxy.ts",
|
|
372
|
+
"size": 1507,
|
|
373
|
+
"origSize": 1596,
|
|
374
|
+
"renderedExports": [
|
|
375
|
+
"createRecursiveProxy",
|
|
376
|
+
"createFlatProxy"
|
|
377
|
+
],
|
|
378
|
+
"removedExports": [],
|
|
379
|
+
"dependents": [
|
|
380
|
+
"/src/unstable-core-do-not-import/index.ts",
|
|
381
|
+
"/src/unstable-core-do-not-import/initTRPC.ts",
|
|
382
|
+
"/src/unstable-core-do-not-import/router.ts"
|
|
383
|
+
],
|
|
384
|
+
"percent": 1.47,
|
|
385
|
+
"reduction": 5.58
|
|
189
386
|
},
|
|
190
387
|
{
|
|
191
388
|
"id": "/src/adapters/node-http/content-type/form-data/streamSlice.ts",
|
|
@@ -198,13 +395,29 @@
|
|
|
198
395
|
"dependents": [
|
|
199
396
|
"/src/adapters/node-http/content-type/form-data/fileUploadHandler.ts"
|
|
200
397
|
],
|
|
201
|
-
"percent":
|
|
398
|
+
"percent": 1.36,
|
|
202
399
|
"reduction": 0
|
|
203
400
|
},
|
|
401
|
+
{
|
|
402
|
+
"id": "/src/unstable-core-do-not-import/http/getHTTPStatusCode.ts",
|
|
403
|
+
"size": 1239,
|
|
404
|
+
"origSize": 1486,
|
|
405
|
+
"renderedExports": [
|
|
406
|
+
"getHTTPStatusCode",
|
|
407
|
+
"getHTTPStatusCodeFromError"
|
|
408
|
+
],
|
|
409
|
+
"removedExports": [],
|
|
410
|
+
"dependents": [
|
|
411
|
+
"/src/unstable-core-do-not-import/http/resolveHTTPResponse.ts",
|
|
412
|
+
"/src/unstable-core-do-not-import/error/getErrorShape.ts"
|
|
413
|
+
],
|
|
414
|
+
"percent": 1.21,
|
|
415
|
+
"reduction": 16.62
|
|
416
|
+
},
|
|
204
417
|
{
|
|
205
418
|
"id": "/src/adapters/node-http/content-type/json/getPostBody.ts",
|
|
206
|
-
"size":
|
|
207
|
-
"origSize":
|
|
419
|
+
"size": 1118,
|
|
420
|
+
"origSize": 1151,
|
|
208
421
|
"renderedExports": [
|
|
209
422
|
"getPostBody"
|
|
210
423
|
],
|
|
@@ -212,8 +425,59 @@
|
|
|
212
425
|
"dependents": [
|
|
213
426
|
"/src/adapters/node-http/content-type/json/index.ts"
|
|
214
427
|
],
|
|
215
|
-
"percent":
|
|
216
|
-
"reduction": 2.
|
|
428
|
+
"percent": 1.09,
|
|
429
|
+
"reduction": 2.87
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"id": "/src/unstable-core-do-not-import/rpc/codes.ts",
|
|
433
|
+
"size": 1020,
|
|
434
|
+
"origSize": 1323,
|
|
435
|
+
"renderedExports": [
|
|
436
|
+
"TRPC_ERROR_CODES_BY_KEY",
|
|
437
|
+
"TRPC_ERROR_CODES_BY_NUMBER"
|
|
438
|
+
],
|
|
439
|
+
"removedExports": [],
|
|
440
|
+
"dependents": [],
|
|
441
|
+
"percent": 0.99,
|
|
442
|
+
"reduction": 22.9
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"id": "/src/unstable-core-do-not-import/utils.ts",
|
|
446
|
+
"size": 1006,
|
|
447
|
+
"origSize": 1566,
|
|
448
|
+
"renderedExports": [
|
|
449
|
+
"invert",
|
|
450
|
+
"mergeWithoutOverrides",
|
|
451
|
+
"isObject",
|
|
452
|
+
"omitPrototype"
|
|
453
|
+
],
|
|
454
|
+
"removedExports": [],
|
|
455
|
+
"dependents": [
|
|
456
|
+
"/src/unstable-core-do-not-import/index.ts",
|
|
457
|
+
"/src/unstable-core-do-not-import/rpc/codes.ts",
|
|
458
|
+
"/src/unstable-core-do-not-import/error/TRPCError.ts",
|
|
459
|
+
"/src/unstable-core-do-not-import/middleware.ts",
|
|
460
|
+
"/src/unstable-core-do-not-import/router.ts",
|
|
461
|
+
"/src/unstable-core-do-not-import/transformer.ts",
|
|
462
|
+
"/src/unstable-core-do-not-import/rpc/parseTRPCMessage.ts",
|
|
463
|
+
"/src/unstable-core-do-not-import/procedureBuilder.ts"
|
|
464
|
+
],
|
|
465
|
+
"percent": 0.98,
|
|
466
|
+
"reduction": 35.76
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"id": "/src/unstable-core-do-not-import/parser.ts",
|
|
470
|
+
"size": 998,
|
|
471
|
+
"origSize": 2272,
|
|
472
|
+
"renderedExports": [
|
|
473
|
+
"getParseFn"
|
|
474
|
+
],
|
|
475
|
+
"removedExports": [],
|
|
476
|
+
"dependents": [
|
|
477
|
+
"/src/unstable-core-do-not-import/procedureBuilder.ts"
|
|
478
|
+
],
|
|
479
|
+
"percent": 0.97,
|
|
480
|
+
"reduction": 56.07
|
|
217
481
|
},
|
|
218
482
|
{
|
|
219
483
|
"id": "/src/adapters/node-http/content-type/form-data/uploadHandler.ts",
|
|
@@ -232,7 +496,7 @@
|
|
|
232
496
|
"/src/adapters/node-http/content-type/form-data/fileUploadHandler.ts",
|
|
233
497
|
"/src/adapters/node-http/content-type/form-data/memoryUploadHandler.ts"
|
|
234
498
|
],
|
|
235
|
-
"percent":
|
|
499
|
+
"percent": 0.71,
|
|
236
500
|
"reduction": 67.52
|
|
237
501
|
},
|
|
238
502
|
{
|
|
@@ -246,7 +510,7 @@
|
|
|
246
510
|
"dependents": [
|
|
247
511
|
"/src/adapters/node-http/content-type/form-data/index.ts"
|
|
248
512
|
],
|
|
249
|
-
"percent":
|
|
513
|
+
"percent": 0.68,
|
|
250
514
|
"reduction": 71.21
|
|
251
515
|
},
|
|
252
516
|
{
|
|
@@ -264,38 +528,79 @@
|
|
|
264
528
|
"/home/runner/work/trpc/trpc/node_modules/.pnpm/@web3-storage+multipart-parser@1.0.0/node_modules/@web3-storage/multipart-parser/esm/src/index.js",
|
|
265
529
|
"/home/runner/work/trpc/trpc/node_modules/.pnpm/@web3-storage+multipart-parser@1.0.0/node_modules/@web3-storage/multipart-parser/esm/src/search.js"
|
|
266
530
|
],
|
|
267
|
-
"percent":
|
|
531
|
+
"percent": 0.68,
|
|
268
532
|
"reduction": 3.88
|
|
269
533
|
},
|
|
534
|
+
{
|
|
535
|
+
"id": "/src/unstable-core-do-not-import/http/batchStreamFormatter.ts",
|
|
536
|
+
"size": 667,
|
|
537
|
+
"origSize": 671,
|
|
538
|
+
"renderedExports": [
|
|
539
|
+
"getBatchStreamFormatter"
|
|
540
|
+
],
|
|
541
|
+
"removedExports": [],
|
|
542
|
+
"dependents": [],
|
|
543
|
+
"percent": 0.65,
|
|
544
|
+
"reduction": 0.6
|
|
545
|
+
},
|
|
270
546
|
{
|
|
271
547
|
"id": "/src/adapters/standalone.ts",
|
|
272
|
-
"size":
|
|
273
|
-
"origSize":
|
|
548
|
+
"size": 637,
|
|
549
|
+
"origSize": 1689,
|
|
274
550
|
"renderedExports": [
|
|
275
551
|
"createHTTPHandler",
|
|
276
552
|
"createHTTPServer"
|
|
277
553
|
],
|
|
278
554
|
"removedExports": [],
|
|
279
555
|
"dependents": [],
|
|
280
|
-
"percent":
|
|
281
|
-
"reduction":
|
|
556
|
+
"percent": 0.62,
|
|
557
|
+
"reduction": 62.29
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"id": "/src/unstable-core-do-not-import/error/getErrorShape.ts",
|
|
561
|
+
"size": 625,
|
|
562
|
+
"origSize": 1112,
|
|
563
|
+
"renderedExports": [
|
|
564
|
+
"getErrorShape"
|
|
565
|
+
],
|
|
566
|
+
"removedExports": [],
|
|
567
|
+
"dependents": [
|
|
568
|
+
"/src/unstable-core-do-not-import/index.ts",
|
|
569
|
+
"/src/unstable-core-do-not-import/http/resolveHTTPResponse.ts"
|
|
570
|
+
],
|
|
571
|
+
"percent": 0.61,
|
|
572
|
+
"reduction": 43.79
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
"id": "/src/unstable-core-do-not-import/rootConfig.ts",
|
|
576
|
+
"size": 343,
|
|
577
|
+
"origSize": 2399,
|
|
578
|
+
"renderedExports": [
|
|
579
|
+
"isServerDefault"
|
|
580
|
+
],
|
|
581
|
+
"removedExports": [],
|
|
582
|
+
"dependents": [
|
|
583
|
+
"/src/unstable-core-do-not-import/initTRPC.ts"
|
|
584
|
+
],
|
|
585
|
+
"percent": 0.33,
|
|
586
|
+
"reduction": 85.7
|
|
282
587
|
},
|
|
283
588
|
{
|
|
284
589
|
"id": "/src/adapters/express.ts",
|
|
285
590
|
"size": 339,
|
|
286
|
-
"origSize":
|
|
591
|
+
"origSize": 1184,
|
|
287
592
|
"renderedExports": [
|
|
288
593
|
"createExpressMiddleware"
|
|
289
594
|
],
|
|
290
595
|
"removedExports": [],
|
|
291
596
|
"dependents": [],
|
|
292
|
-
"percent": 0.
|
|
293
|
-
"reduction":
|
|
597
|
+
"percent": 0.33,
|
|
598
|
+
"reduction": 71.37
|
|
294
599
|
},
|
|
295
600
|
{
|
|
296
601
|
"id": "/src/adapters/node-http/content-type/json/index.ts",
|
|
297
|
-
"size":
|
|
298
|
-
"origSize":
|
|
602
|
+
"size": 292,
|
|
603
|
+
"origSize": 450,
|
|
299
604
|
"renderedExports": [
|
|
300
605
|
"nodeHTTPJSONContentTypeHandler"
|
|
301
606
|
],
|
|
@@ -303,8 +608,8 @@
|
|
|
303
608
|
"dependents": [
|
|
304
609
|
"/src/adapters/node-http/nodeHTTPRequestHandler.ts"
|
|
305
610
|
],
|
|
306
|
-
"percent": 0.
|
|
307
|
-
"reduction": 35.
|
|
611
|
+
"percent": 0.28,
|
|
612
|
+
"reduction": 35.11
|
|
308
613
|
},
|
|
309
614
|
{
|
|
310
615
|
"id": "/src/adapters/node-http/internals/contentType.ts",
|
|
@@ -318,22 +623,46 @@
|
|
|
318
623
|
"/src/adapters/node-http/content-type/form-data/index.ts",
|
|
319
624
|
"/src/adapters/node-http/content-type/json/index.ts"
|
|
320
625
|
],
|
|
321
|
-
"percent": 0.
|
|
626
|
+
"percent": 0.11,
|
|
322
627
|
"reduction": 86.68
|
|
323
628
|
},
|
|
629
|
+
{
|
|
630
|
+
"id": "/src/unstable-core-do-not-import/procedure.ts",
|
|
631
|
+
"size": 75,
|
|
632
|
+
"origSize": 3188,
|
|
633
|
+
"renderedExports": [
|
|
634
|
+
"procedureTypes"
|
|
635
|
+
],
|
|
636
|
+
"removedExports": [],
|
|
637
|
+
"dependents": [
|
|
638
|
+
"/src/unstable-core-do-not-import/index.ts",
|
|
639
|
+
"/src/unstable-core-do-not-import/rpc/parseTRPCMessage.ts"
|
|
640
|
+
],
|
|
641
|
+
"percent": 0.07,
|
|
642
|
+
"reduction": 97.65
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"id": "/src/unstable-core-do-not-import/error/formatter.ts",
|
|
646
|
+
"size": 61,
|
|
647
|
+
"origSize": 1030,
|
|
648
|
+
"renderedExports": [
|
|
649
|
+
"defaultFormatter"
|
|
650
|
+
],
|
|
651
|
+
"removedExports": [],
|
|
652
|
+
"dependents": [
|
|
653
|
+
"/src/unstable-core-do-not-import/initTRPC.ts",
|
|
654
|
+
"/src/unstable-core-do-not-import/router.ts"
|
|
655
|
+
],
|
|
656
|
+
"percent": 0.06,
|
|
657
|
+
"reduction": 94.08
|
|
658
|
+
},
|
|
324
659
|
{
|
|
325
660
|
"id": "/src/http.ts",
|
|
326
661
|
"size": 0,
|
|
327
662
|
"origSize": 37,
|
|
328
663
|
"renderedExports": [],
|
|
329
664
|
"removedExports": [],
|
|
330
|
-
"dependents": [
|
|
331
|
-
"/src/adapters/aws-lambda/index.ts",
|
|
332
|
-
"/src/adapters/node-http/content-type/json/index.ts",
|
|
333
|
-
"/src/adapters/node-http/nodeHTTPRequestHandler.ts",
|
|
334
|
-
"/src/adapters/fastify/fastifyRequestHandler.ts",
|
|
335
|
-
"/src/adapters/fetch/fetchRequestHandler.ts"
|
|
336
|
-
],
|
|
665
|
+
"dependents": [],
|
|
337
666
|
"percent": 0,
|
|
338
667
|
"reduction": 100
|
|
339
668
|
},
|
|
@@ -348,9 +677,9 @@
|
|
|
348
677
|
"reduction": 100
|
|
349
678
|
},
|
|
350
679
|
{
|
|
351
|
-
"id": "/src/
|
|
680
|
+
"id": "/src/rpc.ts",
|
|
352
681
|
"size": 0,
|
|
353
|
-
"origSize":
|
|
682
|
+
"origSize": 36,
|
|
354
683
|
"renderedExports": [],
|
|
355
684
|
"removedExports": [],
|
|
356
685
|
"dependents": [],
|
|
@@ -358,9 +687,9 @@
|
|
|
358
687
|
"reduction": 100
|
|
359
688
|
},
|
|
360
689
|
{
|
|
361
|
-
"id": "/src/
|
|
690
|
+
"id": "/src/shared.ts",
|
|
362
691
|
"size": 0,
|
|
363
|
-
"origSize":
|
|
692
|
+
"origSize": 653,
|
|
364
693
|
"renderedExports": [],
|
|
365
694
|
"removedExports": [],
|
|
366
695
|
"dependents": [],
|
|
@@ -368,9 +697,21 @@
|
|
|
368
697
|
"reduction": 100
|
|
369
698
|
},
|
|
370
699
|
{
|
|
371
|
-
"id": "/src/
|
|
700
|
+
"id": "/src/observable/index.ts",
|
|
372
701
|
"size": 0,
|
|
373
|
-
"origSize":
|
|
702
|
+
"origSize": 293,
|
|
703
|
+
"renderedExports": [],
|
|
704
|
+
"removedExports": [],
|
|
705
|
+
"dependents": [
|
|
706
|
+
"/src/adapters/ws.ts"
|
|
707
|
+
],
|
|
708
|
+
"percent": 0,
|
|
709
|
+
"reduction": 100
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
"id": "/src/unstable-core-do-not-import/index.ts",
|
|
713
|
+
"size": 0,
|
|
714
|
+
"origSize": 2877,
|
|
374
715
|
"renderedExports": [],
|
|
375
716
|
"removedExports": [],
|
|
376
717
|
"dependents": [],
|
|
@@ -412,5 +753,5 @@
|
|
|
412
753
|
"reduction": 100
|
|
413
754
|
}
|
|
414
755
|
],
|
|
415
|
-
"moduleCount":
|
|
756
|
+
"moduleCount": 51
|
|
416
757
|
}
|