@temporary-name/server 1.9.3-alpha.16e8a4f82a5b0af6e22263774a4af4e6f9afd8bc → 1.9.3-alpha.21b0289906d115f2f3db137ea407a6d8d50b5ad6
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/adapters/aws-lambda/index.d.mts +3 -4
- package/dist/adapters/aws-lambda/index.d.ts +3 -4
- package/dist/adapters/aws-lambda/index.mjs +4 -6
- package/dist/adapters/fetch/index.d.mts +3 -4
- package/dist/adapters/fetch/index.d.ts +3 -4
- package/dist/adapters/fetch/index.mjs +4 -6
- package/dist/adapters/node/index.d.mts +3 -4
- package/dist/adapters/node/index.d.ts +3 -4
- package/dist/adapters/node/index.mjs +4 -6
- package/dist/adapters/standard/index.d.mts +20 -32
- package/dist/adapters/standard/index.d.ts +20 -32
- package/dist/adapters/standard/index.mjs +4 -6
- package/dist/index.d.mts +69 -339
- package/dist/index.d.ts +69 -339
- package/dist/index.mjs +132 -357
- package/dist/openapi/index.d.mts +1 -1
- package/dist/openapi/index.d.ts +1 -1
- package/dist/openapi/index.mjs +60 -77
- package/dist/plugins/index.d.mts +3 -4
- package/dist/plugins/index.d.ts +3 -4
- package/dist/shared/{server.BeuTpcmO.d.mts → server.7aL9gcoU.d.mts} +2 -2
- package/dist/shared/server.BL2R5jcp.d.mts +228 -0
- package/dist/shared/server.BL2R5jcp.d.ts +228 -0
- package/dist/shared/{server.DLsti1Pv.mjs → server.CttFCjkj.mjs} +57 -95
- package/dist/shared/{server.CQyYNJ1H.d.ts → server.D6Qs_UcF.d.mts} +2 -4
- package/dist/shared/{server.SLLuK6_v.d.ts → server.DFptr1Nz.d.ts} +2 -2
- package/dist/shared/server.DmGicgbG.mjs +413 -0
- package/dist/shared/{server.C1fnTLq0.d.mts → server.DpoO_ER_.d.ts} +2 -4
- package/dist/shared/{server.BEHw7Eyx.mjs → server.JtIZ8YG7.mjs} +1 -11
- package/package.json +10 -9
- package/dist/shared/server.BKSOrA6h.d.mts +0 -192
- package/dist/shared/server.BKSOrA6h.d.ts +0 -192
- package/dist/shared/server.BKh8I1Ny.mjs +0 -239
|
@@ -0,0 +1,413 @@
|
|
|
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
|
+
request: callerOptions?.request,
|
|
276
|
+
signal: callerOptions?.signal,
|
|
277
|
+
lastEventId: callerOptions?.lastEventId
|
|
278
|
+
},
|
|
279
|
+
(interceptorOptions) => {
|
|
280
|
+
const { input: input2, ...opts } = interceptorOptions;
|
|
281
|
+
return executeProcedureInternal(interceptorOptions.procedure, input2, opts);
|
|
282
|
+
}
|
|
283
|
+
);
|
|
284
|
+
});
|
|
285
|
+
if (isAsyncIteratorObject(output)) {
|
|
286
|
+
if (output instanceof HibernationEventIterator) {
|
|
287
|
+
return output;
|
|
288
|
+
}
|
|
289
|
+
return overlayProxy(
|
|
290
|
+
output,
|
|
291
|
+
mapEventIterator(
|
|
292
|
+
asyncIteratorWithSpan(
|
|
293
|
+
{ name: "consume_event_iterator_output", signal: callerOptions?.signal },
|
|
294
|
+
output
|
|
295
|
+
),
|
|
296
|
+
{
|
|
297
|
+
value: (v) => v,
|
|
298
|
+
error: (e) => validateError(e)
|
|
299
|
+
}
|
|
300
|
+
)
|
|
301
|
+
);
|
|
302
|
+
}
|
|
303
|
+
return output;
|
|
304
|
+
} catch (e) {
|
|
305
|
+
throw await validateError(e);
|
|
306
|
+
}
|
|
307
|
+
};
|
|
308
|
+
}
|
|
309
|
+
async function validateInput(procedure, input) {
|
|
310
|
+
const schemas = procedure["~orpc"].schemas;
|
|
311
|
+
return runWithSpan({ name: "validate_input" }, async () => {
|
|
312
|
+
const resultBody = await safeParseAsync(schemas.bodySchema, input.body);
|
|
313
|
+
const resultPath = await safeParseAsync(schemas.pathSchema, input.path);
|
|
314
|
+
const resultQuery = await safeParseAsync(schemas.querySchema, input.query);
|
|
315
|
+
const issues = [];
|
|
316
|
+
if (!resultBody.success) {
|
|
317
|
+
issues.push(...resultBody.error.issues.map((i) => ({ ...i, path: ["body", ...i.path] })));
|
|
318
|
+
}
|
|
319
|
+
if (!resultPath.success) {
|
|
320
|
+
issues.push(...resultPath.error.issues.map((i) => ({ ...i, path: ["path", ...i.path] })));
|
|
321
|
+
}
|
|
322
|
+
if (!resultQuery.success) {
|
|
323
|
+
issues.push(...resultQuery.error.issues.map((i) => ({ ...i, path: ["query", ...i.path] })));
|
|
324
|
+
}
|
|
325
|
+
if (issues.length > 0) {
|
|
326
|
+
throw new ORPCError("BAD_REQUEST", {
|
|
327
|
+
message: "Input validation failed",
|
|
328
|
+
data: {
|
|
329
|
+
issues
|
|
330
|
+
},
|
|
331
|
+
cause: new ValidationError({
|
|
332
|
+
message: "Input validation failed",
|
|
333
|
+
issues,
|
|
334
|
+
data: input
|
|
335
|
+
})
|
|
336
|
+
});
|
|
337
|
+
}
|
|
338
|
+
const results = {
|
|
339
|
+
body: resultBody.data,
|
|
340
|
+
path: resultPath.data,
|
|
341
|
+
query: resultQuery.data
|
|
342
|
+
};
|
|
343
|
+
return results;
|
|
344
|
+
});
|
|
345
|
+
}
|
|
346
|
+
async function validateOutput(procedure, output) {
|
|
347
|
+
const schema = procedure["~orpc"].schemas.outputSchema;
|
|
348
|
+
if (!schema) {
|
|
349
|
+
return output;
|
|
350
|
+
}
|
|
351
|
+
return runWithSpan({ name: "validate_output" }, async () => {
|
|
352
|
+
const result = await safeParseAsync(schema, output);
|
|
353
|
+
if (!result.success) {
|
|
354
|
+
throw new ORPCError("INTERNAL_SERVER_ERROR", {
|
|
355
|
+
message: "Output validation failed",
|
|
356
|
+
cause: new ValidationError({
|
|
357
|
+
message: "Output validation failed",
|
|
358
|
+
issues: result.error.issues,
|
|
359
|
+
data: output
|
|
360
|
+
})
|
|
361
|
+
});
|
|
362
|
+
}
|
|
363
|
+
return result.data;
|
|
364
|
+
});
|
|
365
|
+
}
|
|
366
|
+
async function executeProcedureInternal(procedure, input, options) {
|
|
367
|
+
const middlewares = procedure["~orpc"].middlewares;
|
|
368
|
+
const inputValidationIndex = Math.min(
|
|
369
|
+
Math.max(0, procedure["~orpc"].inputValidationIndex),
|
|
370
|
+
middlewares.length
|
|
371
|
+
);
|
|
372
|
+
const outputValidationIndex = Math.min(
|
|
373
|
+
Math.max(0, procedure["~orpc"].outputValidationIndex),
|
|
374
|
+
middlewares.length
|
|
375
|
+
);
|
|
376
|
+
const next = async (index, context, input2) => {
|
|
377
|
+
let currentInput = input2;
|
|
378
|
+
if (index === inputValidationIndex) {
|
|
379
|
+
currentInput = await validateInput(procedure, currentInput);
|
|
380
|
+
}
|
|
381
|
+
const mid = middlewares[index];
|
|
382
|
+
const output = mid ? await runWithSpan({ name: `middleware.${mid.name}`, signal: options.signal }, async (span) => {
|
|
383
|
+
span?.setAttribute("middleware.index", index);
|
|
384
|
+
span?.setAttribute("middleware.name", mid.name);
|
|
385
|
+
const result = await mid(
|
|
386
|
+
{
|
|
387
|
+
...options,
|
|
388
|
+
context,
|
|
389
|
+
next: async (...[nextOptions]) => {
|
|
390
|
+
const nextContext = nextOptions?.context ?? {};
|
|
391
|
+
return {
|
|
392
|
+
output: await next(index + 1, mergeCurrentContext(context, nextContext), currentInput),
|
|
393
|
+
context: nextContext
|
|
394
|
+
};
|
|
395
|
+
}
|
|
396
|
+
},
|
|
397
|
+
currentInput,
|
|
398
|
+
middlewareOutputFn
|
|
399
|
+
);
|
|
400
|
+
return result.output;
|
|
401
|
+
}) : await runWithSpan(
|
|
402
|
+
{ name: "handler", signal: options.signal },
|
|
403
|
+
() => procedure["~orpc"].handler(currentInput, { ...options, context })
|
|
404
|
+
);
|
|
405
|
+
if (index === outputValidationIndex) {
|
|
406
|
+
return await validateOutput(procedure, output);
|
|
407
|
+
}
|
|
408
|
+
return output;
|
|
409
|
+
};
|
|
410
|
+
return next(0, options.context, input);
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
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,6 @@
|
|
|
1
1
|
import { Meta } from '@temporary-name/contract';
|
|
2
|
-
import { HTTPPath, Interceptor } from '@temporary-name/shared';
|
|
3
|
-
import {
|
|
4
|
-
import { C as Context, R as Router, E as ProcedureClientInterceptorOptions } from './server.BKSOrA6h.mjs';
|
|
2
|
+
import { HTTPPath, StandardLazyRequest, Interceptor, StandardResponse } from '@temporary-name/shared';
|
|
3
|
+
import { C as Context, R as Router, G as ProcedureClientInterceptorOptions } from './server.BL2R5jcp.js';
|
|
5
4
|
|
|
6
5
|
interface StandardHandlerPlugin<T extends Context> {
|
|
7
6
|
order?: number;
|
|
@@ -48,7 +47,6 @@ declare class StandardHandler<T extends Context> {
|
|
|
48
47
|
private readonly clientInterceptors;
|
|
49
48
|
private readonly rootInterceptors;
|
|
50
49
|
private readonly matcher;
|
|
51
|
-
private readonly codec;
|
|
52
50
|
constructor(router: Router<any, T>, options: NoInfer<StandardHandlerOptions<T>>);
|
|
53
51
|
handle(request: StandardLazyRequest, options: StandardHandleOptions<T>): Promise<StandardHandleResult>;
|
|
54
52
|
}
|
|
@@ -234,14 +234,4 @@ function deserialize(data) {
|
|
|
234
234
|
return data;
|
|
235
235
|
}
|
|
236
236
|
|
|
237
|
-
|
|
238
|
-
return `/${path.replace(/\/{2,}/g, "/").replace(/^\/|\/$/g, "")}`;
|
|
239
|
-
}
|
|
240
|
-
function getDynamicParams(path) {
|
|
241
|
-
return path ? standardizeHTTPPath(path).match(/\/\{[^}]+\}/g)?.map((v) => ({
|
|
242
|
-
raw: v,
|
|
243
|
-
name: v.match(/\{\+?([^}]+)\}/)[1]
|
|
244
|
-
})) : void 0;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
export { standardizeHTTPPath as a, deserialize as d, getDynamicParams as g, jsonSerialize as j, serialize as s };
|
|
237
|
+
export { bracketNotationDeserialize as b, deserialize as d, jsonSerialize as j, serialize as s };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@temporary-name/server",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.9.3-alpha.
|
|
4
|
+
"version": "1.9.3-alpha.21b0289906d115f2f3db137ea407a6d8d50b5ad6",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://www.stainless.com/",
|
|
7
7
|
"repository": {
|
|
@@ -71,16 +71,17 @@
|
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
73
|
"cookie": "^1.0.2",
|
|
74
|
-
"@standard-schema/spec": "^1.0.0",
|
|
75
74
|
"rou3": "^0.7.7",
|
|
76
75
|
"zod": "^4.1.12",
|
|
77
|
-
"@temporary-name/contract": "1.9.3-alpha.
|
|
78
|
-
"@temporary-name/
|
|
79
|
-
"@temporary-name/
|
|
80
|
-
"@temporary-name/shared": "1.9.3-alpha.
|
|
81
|
-
"@temporary-name/standard-server-aws-lambda": "1.9.3-alpha.
|
|
82
|
-
"@temporary-name/standard-server-fetch": "1.9.3-alpha.
|
|
83
|
-
"@temporary-name/standard-server
|
|
76
|
+
"@temporary-name/contract": "1.9.3-alpha.21b0289906d115f2f3db137ea407a6d8d50b5ad6",
|
|
77
|
+
"@temporary-name/json-schema": "1.9.3-alpha.21b0289906d115f2f3db137ea407a6d8d50b5ad6",
|
|
78
|
+
"@temporary-name/interop": "1.9.3-alpha.21b0289906d115f2f3db137ea407a6d8d50b5ad6",
|
|
79
|
+
"@temporary-name/shared": "1.9.3-alpha.21b0289906d115f2f3db137ea407a6d8d50b5ad6",
|
|
80
|
+
"@temporary-name/standard-server-aws-lambda": "1.9.3-alpha.21b0289906d115f2f3db137ea407a6d8d50b5ad6",
|
|
81
|
+
"@temporary-name/standard-server-fetch": "1.9.3-alpha.21b0289906d115f2f3db137ea407a6d8d50b5ad6",
|
|
82
|
+
"@temporary-name/standard-server": "1.9.3-alpha.21b0289906d115f2f3db137ea407a6d8d50b5ad6",
|
|
83
|
+
"@temporary-name/standard-server-node": "1.9.3-alpha.21b0289906d115f2f3db137ea407a6d8d50b5ad6",
|
|
84
|
+
"@temporary-name/zod": "1.9.3-alpha.21b0289906d115f2f3db137ea407a6d8d50b5ad6"
|
|
84
85
|
},
|
|
85
86
|
"devDependencies": {
|
|
86
87
|
"@types/supertest": "^6.0.3",
|
|
@@ -1,192 +0,0 @@
|
|
|
1
|
-
import { ErrorMap, ErrorMapItem, InferSchemaInput, AnySchema, Meta, ContractProcedureDef, InferSchemaOutput, ErrorFromErrorMap, AnyContractRouter, ContractProcedure } from '@temporary-name/contract';
|
|
2
|
-
import { ORPCErrorCode, MaybeOptionalOptions, ORPCErrorOptions, ORPCError, HTTPPath, Promisable, ClientContext, Interceptor, PromiseWithError, Value, Client } from '@temporary-name/shared';
|
|
3
|
-
|
|
4
|
-
type Context = Record<PropertyKey, any>;
|
|
5
|
-
type MergedInitialContext<TInitial extends Context, TAdditional extends Context, TCurrent extends Context> = TInitial & Omit<TAdditional, keyof TCurrent>;
|
|
6
|
-
type MergedCurrentContext<T extends Context, U extends Context> = Omit<T, keyof U> & U;
|
|
7
|
-
declare function mergeCurrentContext<T extends Context, U extends Context>(context: T, other: U): MergedCurrentContext<T, U>;
|
|
8
|
-
|
|
9
|
-
type ORPCErrorConstructorMapItemOptions<TData> = Omit<ORPCErrorOptions<TData>, 'defined' | 'status'>;
|
|
10
|
-
type ORPCErrorConstructorMapItem<TCode extends ORPCErrorCode, TInData> = (...rest: MaybeOptionalOptions<ORPCErrorConstructorMapItemOptions<TInData>>) => ORPCError<TCode, TInData>;
|
|
11
|
-
type ORPCErrorConstructorMap<T extends ErrorMap> = {
|
|
12
|
-
[K in keyof T]: K extends ORPCErrorCode ? T[K] extends ErrorMapItem<infer UInputSchema> ? ORPCErrorConstructorMapItem<K, InferSchemaInput<UInputSchema>> : never : never;
|
|
13
|
-
};
|
|
14
|
-
declare function createORPCErrorConstructorMap<T extends ErrorMap>(errors: T): ORPCErrorConstructorMap<T>;
|
|
15
|
-
|
|
16
|
-
declare const LAZY_SYMBOL: unique symbol;
|
|
17
|
-
interface LazyMeta {
|
|
18
|
-
prefix?: HTTPPath;
|
|
19
|
-
}
|
|
20
|
-
interface Lazy<T> {
|
|
21
|
-
[LAZY_SYMBOL]: {
|
|
22
|
-
loader: () => Promise<{
|
|
23
|
-
default: T;
|
|
24
|
-
}>;
|
|
25
|
-
meta: LazyMeta;
|
|
26
|
-
};
|
|
27
|
-
}
|
|
28
|
-
type Lazyable<T> = T | Lazy<T>;
|
|
29
|
-
/**
|
|
30
|
-
* Creates a lazy-loaded item.
|
|
31
|
-
*
|
|
32
|
-
* @warning The `prefix` in `meta` only holds metadata and does not apply the prefix to the lazy router, use `os.prefix(...).lazyRoute(...)` instead.
|
|
33
|
-
*/
|
|
34
|
-
declare function lazy<T>(loader: () => Promise<{
|
|
35
|
-
default: T;
|
|
36
|
-
}>, meta?: LazyMeta): Lazy<T>;
|
|
37
|
-
declare function isLazy(item: unknown): item is Lazy<any>;
|
|
38
|
-
declare function getLazyMeta(lazied: Lazy<any>): LazyMeta;
|
|
39
|
-
declare function unlazy<T extends Lazyable<any>>(lazied: T): Promise<{
|
|
40
|
-
default: T extends Lazy<infer U> ? U : T;
|
|
41
|
-
}>;
|
|
42
|
-
|
|
43
|
-
interface ProcedureHandlerOptions<TCurrentContext extends Context, TInput, TErrorConstructorMap extends ORPCErrorConstructorMap<any>, TMeta extends Meta> {
|
|
44
|
-
context: TCurrentContext;
|
|
45
|
-
input: TInput;
|
|
46
|
-
path: readonly string[];
|
|
47
|
-
procedure: Procedure<Context, Context, AnySchema, AnySchema, ErrorMap, TMeta>;
|
|
48
|
-
signal?: AbortSignal;
|
|
49
|
-
lastEventId: string | undefined;
|
|
50
|
-
errors: TErrorConstructorMap;
|
|
51
|
-
}
|
|
52
|
-
interface ProcedureHandler<TCurrentContext extends Context, TInput, THandlerOutput, TErrorMap extends ErrorMap, TMeta extends Meta> {
|
|
53
|
-
(opt: ProcedureHandlerOptions<TCurrentContext, TInput, ORPCErrorConstructorMap<TErrorMap>, TMeta>): Promisable<THandlerOutput>;
|
|
54
|
-
}
|
|
55
|
-
interface ProcedureDef<TInitialContext extends Context, TCurrentContext extends Context, TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
|
|
56
|
-
__initialContext?: (type: TInitialContext) => unknown;
|
|
57
|
-
middlewares: readonly AnyMiddleware[];
|
|
58
|
-
inputValidationIndex: number;
|
|
59
|
-
outputValidationIndex: number;
|
|
60
|
-
handler: ProcedureHandler<TCurrentContext, any, any, any, any>;
|
|
61
|
-
}
|
|
62
|
-
/**
|
|
63
|
-
* This class represents a procedure.
|
|
64
|
-
*
|
|
65
|
-
* @see {@link https://orpc.unnoq.com/docs/procedure Procedure Docs}
|
|
66
|
-
*/
|
|
67
|
-
declare class Procedure<TInitialContext extends Context, TCurrentContext extends Context, TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> {
|
|
68
|
-
/**
|
|
69
|
-
* This property holds the defined options.
|
|
70
|
-
*/
|
|
71
|
-
'~orpc': ProcedureDef<TInitialContext, TCurrentContext, TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
72
|
-
constructor(def: ProcedureDef<TInitialContext, TCurrentContext, TInputSchema, TOutputSchema, TErrorMap, TMeta>);
|
|
73
|
-
}
|
|
74
|
-
type AnyProcedure = Procedure<any, any, any, any, any, any>;
|
|
75
|
-
declare function isProcedure(item: unknown): item is AnyProcedure;
|
|
76
|
-
|
|
77
|
-
type MiddlewareResult<TOutContext extends Context, TOutput> = Promisable<{
|
|
78
|
-
output: TOutput;
|
|
79
|
-
context: TOutContext;
|
|
80
|
-
}>;
|
|
81
|
-
type MiddlewareNextFnOptions<TOutContext extends Context> = Record<never, never> extends TOutContext ? {
|
|
82
|
-
context?: TOutContext;
|
|
83
|
-
} : {
|
|
84
|
-
context: TOutContext;
|
|
85
|
-
};
|
|
86
|
-
interface MiddlewareNextFn<TOutput> {
|
|
87
|
-
<U extends Context = Record<never, never>>(...rest: MaybeOptionalOptions<MiddlewareNextFnOptions<U>>): MiddlewareResult<U, TOutput>;
|
|
88
|
-
}
|
|
89
|
-
interface MiddlewareOutputFn<TOutput> {
|
|
90
|
-
(output: TOutput): MiddlewareResult<Record<never, never>, TOutput>;
|
|
91
|
-
}
|
|
92
|
-
interface MiddlewareOptions<TInContext extends Context, TOutput, TErrorConstructorMap extends ORPCErrorConstructorMap<any>, TMeta extends Meta> {
|
|
93
|
-
context: TInContext;
|
|
94
|
-
path: readonly string[];
|
|
95
|
-
procedure: Procedure<Context, Context, AnySchema, AnySchema, ErrorMap, TMeta>;
|
|
96
|
-
signal?: AbortSignal;
|
|
97
|
-
lastEventId: string | undefined;
|
|
98
|
-
next: MiddlewareNextFn<TOutput>;
|
|
99
|
-
errors: TErrorConstructorMap;
|
|
100
|
-
}
|
|
101
|
-
/**
|
|
102
|
-
* A function that represents a middleware.
|
|
103
|
-
*
|
|
104
|
-
* @see {@link https://orpc.unnoq.com/docs/middleware Middleware Docs}
|
|
105
|
-
*/
|
|
106
|
-
interface Middleware<TInContext extends Context, TOutContext extends Context, TInput, TOutput, TErrorConstructorMap extends ORPCErrorConstructorMap<any>, TMeta extends Meta> {
|
|
107
|
-
(options: MiddlewareOptions<TInContext, TOutput, TErrorConstructorMap, TMeta>, input: TInput, output: MiddlewareOutputFn<TOutput>): Promisable<MiddlewareResult<TOutContext, TOutput>>;
|
|
108
|
-
}
|
|
109
|
-
type AnyMiddleware = Middleware<any, any, any, any, any, any>;
|
|
110
|
-
interface MapInputMiddleware<TInput, TMappedInput> {
|
|
111
|
-
(input: TInput): TMappedInput;
|
|
112
|
-
}
|
|
113
|
-
declare function middlewareOutputFn<TOutput>(output: TOutput): MiddlewareResult<Record<never, never>, TOutput>;
|
|
114
|
-
|
|
115
|
-
type ProcedureClient<TClientContext extends ClientContext, TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap> = Client<TClientContext, InferSchemaInput<TInputSchema>, InferSchemaOutput<TOutputSchema>, ErrorFromErrorMap<TErrorMap>>;
|
|
116
|
-
interface ProcedureClientInterceptorOptions<TInitialContext extends Context, TErrorMap extends ErrorMap, TMeta extends Meta> {
|
|
117
|
-
context: TInitialContext;
|
|
118
|
-
input: unknown;
|
|
119
|
-
errors: ORPCErrorConstructorMap<TErrorMap>;
|
|
120
|
-
path: readonly string[];
|
|
121
|
-
procedure: Procedure<Context, Context, AnySchema, AnySchema, ErrorMap, TMeta>;
|
|
122
|
-
signal?: AbortSignal;
|
|
123
|
-
lastEventId: string | undefined;
|
|
124
|
-
}
|
|
125
|
-
type CreateProcedureClientOptions<TInitialContext extends Context, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta, TClientContext extends ClientContext> = {
|
|
126
|
-
/**
|
|
127
|
-
* This is helpful for logging and analytics.
|
|
128
|
-
*/
|
|
129
|
-
path?: readonly string[];
|
|
130
|
-
interceptors?: Interceptor<ProcedureClientInterceptorOptions<TInitialContext, TErrorMap, TMeta>, PromiseWithError<InferSchemaOutput<TOutputSchema>, ErrorFromErrorMap<TErrorMap>>>[];
|
|
131
|
-
} & (Record<never, never> extends TInitialContext ? {
|
|
132
|
-
context?: Value<Promisable<TInitialContext>, [clientContext: TClientContext]>;
|
|
133
|
-
} : {
|
|
134
|
-
context: Value<Promisable<TInitialContext>, [clientContext: TClientContext]>;
|
|
135
|
-
});
|
|
136
|
-
/**
|
|
137
|
-
* Create Server-side client from a procedure.
|
|
138
|
-
*
|
|
139
|
-
* @see {@link https://orpc.unnoq.com/docs/client/server-side Server-side Client Docs}
|
|
140
|
-
*/
|
|
141
|
-
declare function createProcedureClient<TInitialContext extends Context, TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta, TClientContext extends ClientContext>(lazyableProcedure: Lazyable<Procedure<TInitialContext, any, TInputSchema, TOutputSchema, TErrorMap, TMeta>>, ...rest: MaybeOptionalOptions<CreateProcedureClientOptions<TInitialContext, TOutputSchema, TErrorMap, TMeta, TClientContext>>): ProcedureClient<TClientContext, TInputSchema, TOutputSchema, TErrorMap>;
|
|
142
|
-
|
|
143
|
-
/**
|
|
144
|
-
* Represents a router, which defines a hierarchical structure of procedures.
|
|
145
|
-
*
|
|
146
|
-
* @info A procedure is a router too.
|
|
147
|
-
* @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#contract-router Contract Router Docs}
|
|
148
|
-
*/
|
|
149
|
-
type Router<T extends AnyContractRouter, TInitialContext extends Context> = T extends ContractProcedure<infer UInputSchema, infer UOutputSchema, infer UErrorMap, infer UMeta> ? Procedure<TInitialContext, any, UInputSchema, UOutputSchema, UErrorMap, UMeta> : {
|
|
150
|
-
[K in keyof T]: T[K] extends AnyContractRouter ? Lazyable<Router<T[K], TInitialContext>> : never;
|
|
151
|
-
};
|
|
152
|
-
type AnyRouter = Router<any, any>;
|
|
153
|
-
type InferRouterInitialContext<T extends AnyRouter> = T extends Router<any, infer UInitialContext> ? UInitialContext : never;
|
|
154
|
-
/**
|
|
155
|
-
* Infer all initial context of the router.
|
|
156
|
-
*
|
|
157
|
-
* @info A procedure is a router too.
|
|
158
|
-
* @see {@link https://orpc.unnoq.com/docs/router#utilities Router Utilities Docs}
|
|
159
|
-
*/
|
|
160
|
-
type InferRouterInitialContexts<T extends AnyRouter> = T extends Procedure<infer UInitialContext, any, any, any, any, any> ? UInitialContext : {
|
|
161
|
-
[K in keyof T]: T[K] extends Lazyable<infer U extends AnyRouter> ? InferRouterInitialContexts<U> : never;
|
|
162
|
-
};
|
|
163
|
-
/**
|
|
164
|
-
* Infer all current context of the router.
|
|
165
|
-
*
|
|
166
|
-
* @info A procedure is a router too.
|
|
167
|
-
* @see {@link https://orpc.unnoq.com/docs/router#utilities Router Utilities Docs}
|
|
168
|
-
*/
|
|
169
|
-
type InferRouterCurrentContexts<T extends AnyRouter> = T extends Procedure<any, infer UCurrentContext, any, any, any, any> ? UCurrentContext : {
|
|
170
|
-
[K in keyof T]: T[K] extends Lazyable<infer U extends AnyRouter> ? InferRouterCurrentContexts<U> : never;
|
|
171
|
-
};
|
|
172
|
-
/**
|
|
173
|
-
* Infer all router inputs
|
|
174
|
-
*
|
|
175
|
-
* @info A procedure is a router too.
|
|
176
|
-
* @see {@link https://orpc.unnoq.com/docs/router#utilities Router Utilities Docs}
|
|
177
|
-
*/
|
|
178
|
-
type InferRouterInputs<T extends AnyRouter> = T extends Procedure<any, any, infer UInputSchema, any, any, any> ? InferSchemaInput<UInputSchema> : {
|
|
179
|
-
[K in keyof T]: T[K] extends Lazyable<infer U extends AnyRouter> ? InferRouterInputs<U> : never;
|
|
180
|
-
};
|
|
181
|
-
/**
|
|
182
|
-
* Infer all router outputs
|
|
183
|
-
*
|
|
184
|
-
* @info A procedure is a router too.
|
|
185
|
-
* @see {@link https://orpc.unnoq.com/docs/router#utilities Router Utilities Docs}
|
|
186
|
-
*/
|
|
187
|
-
type InferRouterOutputs<T extends AnyRouter> = T extends Procedure<any, any, any, infer UOutputSchema, any, any> ? InferSchemaOutput<UOutputSchema> : {
|
|
188
|
-
[K in keyof T]: T[K] extends Lazyable<infer U extends AnyRouter> ? InferRouterOutputs<U> : never;
|
|
189
|
-
};
|
|
190
|
-
|
|
191
|
-
export { isProcedure as D, createProcedureClient as F, Procedure as P, createORPCErrorConstructorMap as l, mergeCurrentContext as m, LAZY_SYMBOL as n, lazy as p, isLazy as q, getLazyMeta as r, unlazy as u, middlewareOutputFn as y };
|
|
192
|
-
export type { AnyMiddleware as A, ProcedureDef as B, Context as C, ProcedureClientInterceptorOptions as E, InferRouterInitialContexts as G, InferRouterCurrentContexts as H, InferRouterInitialContext as I, InferRouterInputs as J, InferRouterOutputs as K, Lazyable as L, Middleware as M, ORPCErrorConstructorMap as O, Router as R, MergedInitialContext as a, MergedCurrentContext as b, MapInputMiddleware as c, CreateProcedureClientOptions as d, ProcedureClient as e, AnyRouter as f, Lazy as g, AnyProcedure as h, ProcedureHandler as i, ORPCErrorConstructorMapItemOptions as j, ORPCErrorConstructorMapItem as k, LazyMeta as o, MiddlewareResult as s, MiddlewareNextFnOptions as t, MiddlewareNextFn as v, MiddlewareOutputFn as w, MiddlewareOptions as x, ProcedureHandlerOptions as z };
|