@temporary-name/server 1.9.3-alpha.03f5d40e5b399f85012c2fb4e98167e26d551d36 → 1.9.3-alpha.102eab0800942eb736f7669a86c850ebfdfcd4a3

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.
Files changed (32) hide show
  1. package/dist/adapters/aws-lambda/index.d.mts +3 -3
  2. package/dist/adapters/aws-lambda/index.d.ts +3 -3
  3. package/dist/adapters/aws-lambda/index.mjs +4 -3
  4. package/dist/adapters/fetch/index.d.mts +3 -3
  5. package/dist/adapters/fetch/index.d.ts +3 -3
  6. package/dist/adapters/fetch/index.mjs +4 -3
  7. package/dist/adapters/node/index.d.mts +3 -3
  8. package/dist/adapters/node/index.d.ts +3 -3
  9. package/dist/adapters/node/index.mjs +4 -3
  10. package/dist/adapters/standard/index.d.mts +10 -5
  11. package/dist/adapters/standard/index.d.ts +10 -5
  12. package/dist/adapters/standard/index.mjs +4 -3
  13. package/dist/index.d.mts +55 -103
  14. package/dist/index.d.ts +55 -103
  15. package/dist/index.mjs +60 -223
  16. package/dist/openapi/index.d.mts +1 -1
  17. package/dist/openapi/index.d.ts +1 -1
  18. package/dist/openapi/index.mjs +60 -76
  19. package/dist/plugins/index.d.mts +2 -2
  20. package/dist/plugins/index.d.ts +2 -2
  21. package/dist/shared/{server.CbLTWfgn.d.mts → server.BCcLYvdF.d.mts} +1 -1
  22. package/dist/shared/server.CHV9AQHl.mjs +412 -0
  23. package/dist/shared/{server.Bk5r0-2R.d.ts → server.CdeqmULw.d.ts} +1 -1
  24. package/dist/shared/{server.Bs6ka_UE.d.mts → server.DHezmW6C.d.mts} +2 -2
  25. package/dist/shared/server.DN9mVGfv.mjs +11 -0
  26. package/dist/shared/{server.BVxcyR6X.mjs → server.DWwaAM-a.mjs} +12 -44
  27. package/dist/shared/{server.D2UFMrxf.d.ts → server.Da-qLzdU.d.ts} +2 -2
  28. package/dist/shared/{server.CZNLCQBm.d.mts → server.DecvGKtb.d.mts} +125 -75
  29. package/dist/shared/{server.CZNLCQBm.d.ts → server.DecvGKtb.d.ts} +125 -75
  30. package/dist/shared/{server.BEHw7Eyx.mjs → server.JtIZ8YG7.mjs} +1 -11
  31. package/package.json +10 -10
  32. package/dist/shared/server.DcfsPloY.mjs +0 -202
@@ -0,0 +1,412 @@
1
+ import { isContractProcedure, mergePrefix, mergeErrorMap, enhanceRoute, validateORPCError, ValidationError } from '@temporary-name/contract';
2
+ import { resolveMaybeOptionalOptions, ORPCError, toArray, value, runWithSpan, intercept, isAsyncIteratorObject, overlayProxy, asyncIteratorWithSpan } from '@temporary-name/shared';
3
+ import { HibernationEventIterator, mapEventIterator } from '@temporary-name/standard-server';
4
+ import { safeParseAsync } from '@temporary-name/zod';
5
+
6
+ function isStartWithMiddlewares(middlewares, compare) {
7
+ if (compare.length > middlewares.length) {
8
+ return false;
9
+ }
10
+ for (let i = 0; i < middlewares.length; i++) {
11
+ if (compare[i] === void 0) {
12
+ return true;
13
+ }
14
+ if (middlewares[i] !== compare[i]) {
15
+ return false;
16
+ }
17
+ }
18
+ return true;
19
+ }
20
+ function mergeMiddlewares(first, second, options) {
21
+ if (options.dedupeLeading && isStartWithMiddlewares(second, first)) {
22
+ return second;
23
+ }
24
+ return [...first, ...second];
25
+ }
26
+ function addMiddleware(middlewares, addition) {
27
+ return [...middlewares, addition];
28
+ }
29
+
30
+ class Procedure {
31
+ /**
32
+ * This property holds the defined options.
33
+ */
34
+ "~orpc";
35
+ constructor(def) {
36
+ this["~orpc"] = def;
37
+ }
38
+ }
39
+ function isProcedure(item) {
40
+ if (item instanceof Procedure) {
41
+ return true;
42
+ }
43
+ return isContractProcedure(item) && "middlewares" in item["~orpc"] && "handler" in item["~orpc"];
44
+ }
45
+
46
+ function mergeCurrentContext(context, other) {
47
+ return { ...context, ...other };
48
+ }
49
+
50
+ function createORPCErrorConstructorMap(errors) {
51
+ const proxy = new Proxy(errors, {
52
+ get(target, code) {
53
+ if (typeof code !== "string") {
54
+ return Reflect.get(target, code);
55
+ }
56
+ const item = (...rest) => {
57
+ const options = resolveMaybeOptionalOptions(rest);
58
+ const config = errors[code];
59
+ return new ORPCError(code, {
60
+ defined: Boolean(config),
61
+ status: config?.status,
62
+ message: options.message ?? config?.message,
63
+ data: options.data,
64
+ cause: options.cause
65
+ });
66
+ };
67
+ return item;
68
+ }
69
+ });
70
+ return proxy;
71
+ }
72
+
73
+ const HIDDEN_ROUTER_CONTRACT_SYMBOL = Symbol("ORPC_HIDDEN_ROUTER_CONTRACT");
74
+ function setHiddenRouterContract(router, contract) {
75
+ return new Proxy(router, {
76
+ get(target, key) {
77
+ if (key === HIDDEN_ROUTER_CONTRACT_SYMBOL) {
78
+ return contract;
79
+ }
80
+ return Reflect.get(target, key);
81
+ }
82
+ });
83
+ }
84
+ function getHiddenRouterContract(router) {
85
+ return router[HIDDEN_ROUTER_CONTRACT_SYMBOL];
86
+ }
87
+
88
+ function getRouter(router, path) {
89
+ let current = router;
90
+ for (let i = 0; i < path.length; i++) {
91
+ const segment = path[i];
92
+ if (!current) {
93
+ return void 0;
94
+ }
95
+ if (isProcedure(current)) {
96
+ return void 0;
97
+ }
98
+ if (!isLazy(current)) {
99
+ current = current[segment];
100
+ continue;
101
+ }
102
+ const lazied = current;
103
+ const rest = path.slice(i);
104
+ return lazyInternal(async () => {
105
+ const unwrapped = await unlazy(lazied);
106
+ const next = getRouter(unwrapped.default, rest);
107
+ return unlazy(next);
108
+ }, getLazyMeta(lazied));
109
+ }
110
+ return current;
111
+ }
112
+ function createAccessibleLazyRouter(lazied) {
113
+ const recursive = new Proxy(lazied, {
114
+ get(target, key) {
115
+ if (typeof key !== "string") {
116
+ return Reflect.get(target, key);
117
+ }
118
+ const next = getRouter(lazied, [key]);
119
+ return createAccessibleLazyRouter(next);
120
+ }
121
+ });
122
+ return recursive;
123
+ }
124
+ function enhanceRouter(router, options) {
125
+ if (isLazy(router)) {
126
+ const laziedMeta = getLazyMeta(router);
127
+ const enhancedPrefix = laziedMeta?.prefix ? mergePrefix(options.prefix, laziedMeta?.prefix) : options.prefix;
128
+ const enhanced2 = lazyInternal(
129
+ async () => {
130
+ const { default: unlaziedRouter } = await unlazy(router);
131
+ const enhanced3 = enhanceRouter(unlaziedRouter, options);
132
+ return unlazy(enhanced3);
133
+ },
134
+ {
135
+ ...laziedMeta,
136
+ prefix: enhancedPrefix
137
+ }
138
+ );
139
+ const accessible = createAccessibleLazyRouter(enhanced2);
140
+ return accessible;
141
+ }
142
+ if (isProcedure(router)) {
143
+ const newMiddlewares = mergeMiddlewares(options.middlewares, router["~orpc"].middlewares, {
144
+ dedupeLeading: options.dedupeLeadingMiddlewares
145
+ });
146
+ const newMiddlewareAdded = newMiddlewares.length - router["~orpc"].middlewares.length;
147
+ const enhanced2 = new Procedure({
148
+ ...router["~orpc"],
149
+ route: enhanceRoute(router["~orpc"].route, options),
150
+ errorMap: mergeErrorMap(options.errorMap, router["~orpc"].errorMap),
151
+ middlewares: newMiddlewares,
152
+ inputValidationIndex: router["~orpc"].inputValidationIndex + newMiddlewareAdded,
153
+ outputValidationIndex: router["~orpc"].outputValidationIndex + newMiddlewareAdded
154
+ });
155
+ return enhanced2;
156
+ }
157
+ const enhanced = {};
158
+ for (const key in router) {
159
+ enhanced[key] = enhanceRouter(router[key], options);
160
+ }
161
+ return enhanced;
162
+ }
163
+ function traverseContractProcedures(options, callback, lazyOptions = []) {
164
+ let currentRouter = options.router;
165
+ const hiddenContract = getHiddenRouterContract(options.router);
166
+ if (hiddenContract !== void 0) {
167
+ currentRouter = hiddenContract;
168
+ }
169
+ if (isLazy(currentRouter)) {
170
+ lazyOptions.push({
171
+ router: currentRouter,
172
+ path: options.path
173
+ });
174
+ } else if (isContractProcedure(currentRouter)) {
175
+ callback({
176
+ contract: currentRouter,
177
+ path: options.path
178
+ });
179
+ } else {
180
+ for (const key in currentRouter) {
181
+ traverseContractProcedures(
182
+ {
183
+ router: currentRouter[key],
184
+ path: [...options.path, key]
185
+ },
186
+ callback,
187
+ lazyOptions
188
+ );
189
+ }
190
+ }
191
+ return lazyOptions;
192
+ }
193
+ async function resolveContractProcedures(options, callback) {
194
+ const pending = [options];
195
+ for (const options2 of pending) {
196
+ const lazyOptions = traverseContractProcedures(options2, callback);
197
+ for (const options3 of lazyOptions) {
198
+ const { default: router } = await unlazy(options3.router);
199
+ pending.push({
200
+ router,
201
+ path: options3.path
202
+ });
203
+ }
204
+ }
205
+ }
206
+ async function unlazyRouter(router) {
207
+ if (isProcedure(router)) {
208
+ return router;
209
+ }
210
+ const unlazied = {};
211
+ for (const key in router) {
212
+ const item = router[key];
213
+ const { default: unlaziedRouter } = await unlazy(item);
214
+ unlazied[key] = await unlazyRouter(unlaziedRouter);
215
+ }
216
+ return unlazied;
217
+ }
218
+
219
+ const LAZY_SYMBOL = Symbol("ORPC_LAZY_SYMBOL");
220
+ function lazyInternal(loader, meta = {}) {
221
+ return {
222
+ [LAZY_SYMBOL]: {
223
+ loader,
224
+ meta
225
+ }
226
+ };
227
+ }
228
+ function lazy(prefix, loader) {
229
+ return enhanceRouter(lazyInternal(loader), {
230
+ middlewares: [],
231
+ errorMap: {},
232
+ dedupeLeadingMiddlewares: true,
233
+ prefix
234
+ });
235
+ }
236
+ function isLazy(item) {
237
+ return (typeof item === "object" || typeof item === "function") && item !== null && LAZY_SYMBOL in item;
238
+ }
239
+ function getLazyMeta(lazied) {
240
+ return lazied[LAZY_SYMBOL].meta;
241
+ }
242
+ function unlazy(lazied) {
243
+ return isLazy(lazied) ? lazied[LAZY_SYMBOL].loader() : Promise.resolve({ default: lazied });
244
+ }
245
+
246
+ function middlewareOutputFn(output) {
247
+ return { output, context: {} };
248
+ }
249
+
250
+ function createProcedureClient(lazyableProcedure, ...rest) {
251
+ const options = resolveMaybeOptionalOptions(rest);
252
+ return async (...[input, callerOptions]) => {
253
+ const path = toArray(options.path);
254
+ const { default: procedure } = await unlazy(lazyableProcedure);
255
+ const clientContext = callerOptions?.context ?? {};
256
+ const context = await value(options.context ?? {}, clientContext);
257
+ const errors = createORPCErrorConstructorMap(procedure["~orpc"].errorMap);
258
+ const validateError = async (e) => {
259
+ if (e instanceof ORPCError) {
260
+ return await validateORPCError(procedure["~orpc"].errorMap, e);
261
+ }
262
+ return e;
263
+ };
264
+ try {
265
+ const output = await runWithSpan({ name: "call_procedure", signal: callerOptions?.signal }, (span) => {
266
+ span?.setAttribute("procedure.path", [...path]);
267
+ return intercept(
268
+ toArray(options.interceptors),
269
+ {
270
+ context,
271
+ input,
272
+ errors,
273
+ path,
274
+ procedure,
275
+ signal: callerOptions?.signal,
276
+ lastEventId: callerOptions?.lastEventId
277
+ },
278
+ (interceptorOptions) => {
279
+ const { input: input2, ...opts } = interceptorOptions;
280
+ return executeProcedureInternal(interceptorOptions.procedure, input2, opts);
281
+ }
282
+ );
283
+ });
284
+ if (isAsyncIteratorObject(output)) {
285
+ if (output instanceof HibernationEventIterator) {
286
+ return output;
287
+ }
288
+ return overlayProxy(
289
+ output,
290
+ mapEventIterator(
291
+ asyncIteratorWithSpan(
292
+ { name: "consume_event_iterator_output", signal: callerOptions?.signal },
293
+ output
294
+ ),
295
+ {
296
+ value: (v) => v,
297
+ error: (e) => validateError(e)
298
+ }
299
+ )
300
+ );
301
+ }
302
+ return output;
303
+ } catch (e) {
304
+ throw await validateError(e);
305
+ }
306
+ };
307
+ }
308
+ async function validateInput(procedure, input) {
309
+ const schemas = procedure["~orpc"].schemas;
310
+ return runWithSpan({ name: "validate_input" }, async () => {
311
+ const resultBody = await safeParseAsync(schemas.bodySchema, input.body);
312
+ const resultPath = await safeParseAsync(schemas.pathSchema, input.path);
313
+ const resultQuery = await safeParseAsync(schemas.querySchema, input.query);
314
+ const issues = [];
315
+ if (!resultBody.success) {
316
+ issues.push(...resultBody.error.issues.map((i) => ({ ...i, path: ["body", ...i.path] })));
317
+ }
318
+ if (!resultPath.success) {
319
+ issues.push(...resultPath.error.issues.map((i) => ({ ...i, path: ["path", ...i.path] })));
320
+ }
321
+ if (!resultQuery.success) {
322
+ issues.push(...resultQuery.error.issues.map((i) => ({ ...i, path: ["query", ...i.path] })));
323
+ }
324
+ if (issues.length > 0) {
325
+ throw new ORPCError("BAD_REQUEST", {
326
+ message: "Input validation failed",
327
+ data: {
328
+ issues
329
+ },
330
+ cause: new ValidationError({
331
+ message: "Input validation failed",
332
+ issues,
333
+ data: input
334
+ })
335
+ });
336
+ }
337
+ const results = {
338
+ body: resultBody.data,
339
+ path: resultPath.data,
340
+ query: resultQuery.data
341
+ };
342
+ return results;
343
+ });
344
+ }
345
+ async function validateOutput(procedure, output) {
346
+ const schema = procedure["~orpc"].schemas.outputSchema;
347
+ if (!schema) {
348
+ return output;
349
+ }
350
+ return runWithSpan({ name: "validate_output" }, async () => {
351
+ const result = await safeParseAsync(schema, output);
352
+ if (!result.success) {
353
+ throw new ORPCError("INTERNAL_SERVER_ERROR", {
354
+ message: "Output validation failed",
355
+ cause: new ValidationError({
356
+ message: "Output validation failed",
357
+ issues: result.error.issues,
358
+ data: output
359
+ })
360
+ });
361
+ }
362
+ return result.data;
363
+ });
364
+ }
365
+ async function executeProcedureInternal(procedure, input, options) {
366
+ const middlewares = procedure["~orpc"].middlewares;
367
+ const inputValidationIndex = Math.min(
368
+ Math.max(0, procedure["~orpc"].inputValidationIndex),
369
+ middlewares.length
370
+ );
371
+ const outputValidationIndex = Math.min(
372
+ Math.max(0, procedure["~orpc"].outputValidationIndex),
373
+ middlewares.length
374
+ );
375
+ const next = async (index, context, input2) => {
376
+ let currentInput = input2;
377
+ if (index === inputValidationIndex) {
378
+ currentInput = await validateInput(procedure, currentInput);
379
+ }
380
+ const mid = middlewares[index];
381
+ const output = mid ? await runWithSpan({ name: `middleware.${mid.name}`, signal: options.signal }, async (span) => {
382
+ span?.setAttribute("middleware.index", index);
383
+ span?.setAttribute("middleware.name", mid.name);
384
+ const result = await mid(
385
+ {
386
+ ...options,
387
+ context,
388
+ next: async (...[nextOptions]) => {
389
+ const nextContext = nextOptions?.context ?? {};
390
+ return {
391
+ output: await next(index + 1, mergeCurrentContext(context, nextContext), currentInput),
392
+ context: nextContext
393
+ };
394
+ }
395
+ },
396
+ currentInput,
397
+ middlewareOutputFn
398
+ );
399
+ return result.output;
400
+ }) : await runWithSpan(
401
+ { name: "handler", signal: options.signal },
402
+ () => procedure["~orpc"].handler(currentInput, { ...options, context })
403
+ );
404
+ if (index === outputValidationIndex) {
405
+ return await validateOutput(procedure, output);
406
+ }
407
+ return output;
408
+ };
409
+ return next(0, options.context, input);
410
+ }
411
+
412
+ export { LAZY_SYMBOL as L, Procedure as P, addMiddleware as a, isLazy as b, createProcedureClient as c, getRouter as d, enhanceRouter as e, createORPCErrorConstructorMap as f, getLazyMeta as g, lazy as h, isProcedure as i, middlewareOutputFn as j, isStartWithMiddlewares as k, lazyInternal as l, mergeCurrentContext as m, mergeMiddlewares as n, getHiddenRouterContract as o, createAccessibleLazyRouter as p, unlazyRouter as q, resolveContractProcedures as r, setHiddenRouterContract as s, traverseContractProcedures as t, unlazy as u };
@@ -1,7 +1,7 @@
1
1
  import { Meta } from '@temporary-name/contract';
2
2
  import { HTTPPath, Interceptor } from '@temporary-name/shared';
3
3
  import { StandardLazyRequest, StandardResponse } from '@temporary-name/standard-server';
4
- import { C as Context, R as Router, E as ProcedureClientInterceptorOptions } from './server.CZNLCQBm.js';
4
+ import { C as Context, R as Router, H as ProcedureClientInterceptorOptions } from './server.DecvGKtb.js';
5
5
 
6
6
  interface StandardHandlerPlugin<T extends Context> {
7
7
  order?: number;
@@ -1,6 +1,6 @@
1
1
  import { HTTPPath } from '@temporary-name/shared';
2
- import { C as Context } from './server.CZNLCQBm.mjs';
3
- import { c as StandardHandleOptions } from './server.CbLTWfgn.mjs';
2
+ import { C as Context } from './server.DecvGKtb.mjs';
3
+ import { c as StandardHandleOptions } from './server.BCcLYvdF.mjs';
4
4
 
5
5
  type FriendlyStandardHandleOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
6
6
  context?: T;
@@ -0,0 +1,11 @@
1
+ function standardizeHTTPPath(path) {
2
+ return `/${path.replace(/\/{2,}/g, "/").replace(/^\/|\/$/g, "")}`;
3
+ }
4
+ function getDynamicParams(path) {
5
+ return path ? standardizeHTTPPath(path).match(/\/\{[^}]+\}/g)?.map((v) => ({
6
+ raw: v,
7
+ name: v.match(/\{\+?([^}]+)\}/)[1]
8
+ })) : void 0;
9
+ }
10
+
11
+ export { getDynamicParams as g, standardizeHTTPPath as s };
@@ -1,44 +1,18 @@
1
- import { isObject, stringifyJSON, isORPCErrorStatus, tryDecodeURIComponent, value, toHttpPath, toArray, intercept, runWithSpan, ORPC_NAME, isAsyncIteratorObject, asyncIteratorWithSpan, setSpanError, ORPCError, toORPCError } from '@temporary-name/shared';
1
+ import { stringifyJSON, isObject, isORPCErrorStatus, tryDecodeURIComponent, toHttpPath, toArray, intercept, runWithSpan, ORPC_NAME, isAsyncIteratorObject, asyncIteratorWithSpan, setSpanError, ORPCError, toORPCError } from '@temporary-name/shared';
2
2
  import { flattenHeader } from '@temporary-name/standard-server';
3
- import { c as createProcedureClient } from './server.DcfsPloY.mjs';
3
+ import { c as createProcedureClient } from './server.CHV9AQHl.mjs';
4
4
  import { fallbackContractConfig } from '@temporary-name/contract';
5
- import { d as deserialize, s as serialize, a as standardizeHTTPPath } from './server.BEHw7Eyx.mjs';
5
+ import { d as deserialize, b as bracketNotationDeserialize, s as serialize } from './server.JtIZ8YG7.mjs';
6
6
  import { traverseContractProcedures, isProcedure, getLazyMeta, unlazy, getRouter, createContractedProcedure } from '@temporary-name/server';
7
7
  import { createRouter, addRoute, findRoute } from 'rou3';
8
+ import { s as standardizeHTTPPath } from './server.DN9mVGfv.mjs';
8
9
 
9
- async function decode(request, params, procedure) {
10
- const inputStructure = fallbackContractConfig(
11
- "defaultInputStructure",
12
- procedure["~orpc"].route.inputStructure
13
- );
14
- if (inputStructure === "compact") {
15
- const data = request.method === "GET" ? deserialize(request.url.searchParams) : deserialize(await request.body());
16
- if (data === void 0) {
17
- return params;
18
- }
19
- if (isObject(data)) {
20
- return {
21
- ...params,
22
- ...data
23
- };
24
- }
25
- return data;
26
- }
27
- const deserializeSearchParams = () => {
28
- return deserialize(request.url.searchParams);
29
- };
10
+ async function decode(request, pathParams) {
30
11
  return {
31
- params,
32
- get query() {
33
- const value = deserializeSearchParams();
34
- Object.defineProperty(this, "query", { value, writable: true });
35
- return value;
36
- },
37
- set query(value) {
38
- Object.defineProperty(this, "query", { value, writable: true });
39
- },
12
+ path: pathParams ?? {},
13
+ query: bracketNotationDeserialize(Array.from(request.url.searchParams.entries())),
40
14
  headers: request.headers,
41
- body: deserialize(await request.body())
15
+ body: deserialize(await request.body()) ?? {}
42
16
  };
43
17
  }
44
18
  function encode(output, procedure) {
@@ -117,9 +91,6 @@ class StandardOpenAPIMatcher {
117
91
  pendingRouters = [];
118
92
  init(router, path = []) {
119
93
  const laziedOptions = traverseContractProcedures({ router, path }, (traverseOptions) => {
120
- if (!value(true, traverseOptions)) {
121
- return;
122
- }
123
94
  const { path: path2, contract } = traverseOptions;
124
95
  const method = fallbackContractConfig("defaultMethod", contract["~orpc"].route.method);
125
96
  const httpPath = toRou3Pattern(contract["~orpc"].route.path ?? toHttpPath(path2));
@@ -236,15 +207,12 @@ class StandardHandler {
236
207
  span?.setAttribute("rpc.system", ORPC_NAME);
237
208
  span?.setAttribute("rpc.method", match.path.join("."));
238
209
  step = "decode_input";
239
- let input = await runWithSpan(
240
- { name: "decode_input" },
241
- () => decode(request2, match.params, match.procedure)
242
- );
210
+ const input = await runWithSpan({ name: "decode_input" }, () => decode(request2, match.params));
243
211
  step = void 0;
244
- if (isAsyncIteratorObject(input)) {
245
- input = asyncIteratorWithSpan(
212
+ if (isAsyncIteratorObject(input.body)) {
213
+ input.body = asyncIteratorWithSpan(
246
214
  { name: "consume_event_iterator_input", signal: request2.signal },
247
- input
215
+ input.body
248
216
  );
249
217
  }
250
218
  const client = createProcedureClient(match.procedure, {
@@ -1,6 +1,6 @@
1
1
  import { HTTPPath } from '@temporary-name/shared';
2
- import { C as Context } from './server.CZNLCQBm.js';
3
- import { c as StandardHandleOptions } from './server.Bk5r0-2R.js';
2
+ import { C as Context } from './server.DecvGKtb.js';
3
+ import { c as StandardHandleOptions } from './server.CdeqmULw.js';
4
4
 
5
5
  type FriendlyStandardHandleOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
6
6
  context?: T;