@orpc/server 0.0.0-next.a419c18 → 0.0.0-next.a4bc49e
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/README.md +19 -23
- package/dist/adapters/aws-lambda/index.d.mts +45 -0
- package/dist/adapters/aws-lambda/index.d.ts +45 -0
- package/dist/adapters/aws-lambda/index.mjs +41 -0
- package/dist/adapters/bun-ws/index.d.mts +35 -0
- package/dist/adapters/bun-ws/index.d.ts +35 -0
- package/dist/adapters/bun-ws/index.mjs +47 -0
- package/dist/adapters/crossws/index.d.mts +32 -0
- package/dist/adapters/crossws/index.d.ts +32 -0
- package/dist/adapters/crossws/index.mjs +47 -0
- package/dist/adapters/fetch/index.d.mts +34 -10
- package/dist/adapters/fetch/index.d.ts +34 -10
- package/dist/adapters/fetch/index.mjs +109 -8
- package/dist/adapters/message-port/index.d.mts +30 -0
- package/dist/adapters/message-port/index.d.ts +30 -0
- package/dist/adapters/message-port/index.mjs +41 -0
- package/dist/adapters/node/index.d.mts +35 -11
- package/dist/adapters/node/index.d.ts +35 -11
- package/dist/adapters/node/index.mjs +23 -13
- package/dist/adapters/standard/index.d.mts +7 -6
- package/dist/adapters/standard/index.d.ts +7 -6
- package/dist/adapters/standard/index.mjs +5 -2
- package/dist/adapters/standard-peer/index.d.mts +14 -0
- package/dist/adapters/standard-peer/index.d.ts +14 -0
- package/dist/adapters/standard-peer/index.mjs +7 -0
- package/dist/adapters/websocket/index.d.mts +53 -0
- package/dist/adapters/websocket/index.d.ts +53 -0
- package/dist/adapters/websocket/index.mjs +69 -0
- package/dist/adapters/ws/index.d.mts +30 -0
- package/dist/adapters/ws/index.d.ts +30 -0
- package/dist/adapters/ws/index.mjs +39 -0
- package/dist/hibernation/index.d.mts +44 -0
- package/dist/hibernation/index.d.ts +44 -0
- package/dist/hibernation/index.mjs +65 -0
- package/dist/index.d.mts +601 -44
- package/dist/index.d.ts +601 -44
- package/dist/index.mjs +163 -17
- package/dist/plugins/index.d.mts +135 -9
- package/dist/plugins/index.d.ts +135 -9
- package/dist/plugins/index.mjs +163 -11
- package/dist/shared/{server.MZvbGc3n.d.mts → server.6ohwBdwx.d.mts} +64 -15
- package/dist/shared/{server.MZvbGc3n.d.ts → server.6ohwBdwx.d.ts} +64 -15
- package/dist/shared/server.B3dVpAsJ.d.mts +12 -0
- package/dist/shared/server.B6GspgNq.d.ts +12 -0
- package/dist/shared/{server.23VRZIfj.d.ts → server.BE3B4vij.d.ts} +18 -10
- package/dist/shared/server.BW-nUGgA.mjs +36 -0
- package/dist/shared/{server.DJqfB27m.d.mts → server.BtQsqpPB.d.mts} +18 -10
- package/dist/shared/server.C6Q5sqYw.mjs +20 -0
- package/dist/shared/{server.DnR6v9pj.mjs → server.CB8Snncu.mjs} +42 -16
- package/dist/shared/server.CKafa5G2.d.mts +12 -0
- package/dist/shared/server.CeW2jMCj.d.ts +12 -0
- package/dist/shared/{server.BtxZnWJ9.mjs → server.DLJzqnSX.mjs} +24 -30
- package/dist/shared/{server.BVwwTHyO.mjs → server.DZ5BIITo.mjs} +1 -1
- package/package.json +64 -20
- package/dist/adapters/hono/index.d.mts +0 -22
- package/dist/adapters/hono/index.d.ts +0 -22
- package/dist/adapters/hono/index.mjs +0 -32
- package/dist/adapters/next/index.d.mts +0 -29
- package/dist/adapters/next/index.d.ts +0 -29
- package/dist/adapters/next/index.mjs +0 -29
- package/dist/shared/server.B4eSvRkD.mjs +0 -98
- package/dist/shared/server.BG5ftPWa.d.ts +0 -10
- package/dist/shared/server.C-CCcROC.d.mts +0 -10
- package/dist/shared/server.CIbpOMZX.d.mts +0 -8
- package/dist/shared/server.DCcCuA52.d.ts +0 -8
@@ -1,8 +1,18 @@
|
|
1
|
-
import { HTTPPath,
|
1
|
+
import { HTTPPath, ORPCError } from '@orpc/client';
|
2
|
+
import { Meta } from '@orpc/contract';
|
2
3
|
import { Interceptor } from '@orpc/shared';
|
3
4
|
import { StandardResponse, StandardLazyRequest } from '@orpc/standard-server';
|
4
|
-
import {
|
5
|
-
|
5
|
+
import { C as Context, R as Router, a as AnyRouter, A as AnyProcedure, P as ProcedureClientInterceptorOptions } from './server.6ohwBdwx.mjs';
|
6
|
+
|
7
|
+
interface StandardHandlerPlugin<T extends Context> {
|
8
|
+
order?: number;
|
9
|
+
init?(options: StandardHandlerOptions<T>, router: Router<any, T>): void;
|
10
|
+
}
|
11
|
+
declare class CompositeStandardHandlerPlugin<T extends Context, TPlugin extends StandardHandlerPlugin<T>> implements StandardHandlerPlugin<T> {
|
12
|
+
protected readonly plugins: TPlugin[];
|
13
|
+
constructor(plugins?: readonly TPlugin[]);
|
14
|
+
init(options: StandardHandlerOptions<T>, router: Router<any, T>): void;
|
15
|
+
}
|
6
16
|
|
7
17
|
type StandardParams = Record<string, string>;
|
8
18
|
type StandardMatchResult = {
|
@@ -31,9 +41,6 @@ type StandardHandleResult = {
|
|
31
41
|
matched: false;
|
32
42
|
response: undefined;
|
33
43
|
};
|
34
|
-
interface StandardHandlerPlugin<TContext extends Context> {
|
35
|
-
init?(options: StandardHandlerOptions<TContext>): void;
|
36
|
-
}
|
37
44
|
interface StandardHandlerInterceptorOptions<T extends Context> extends StandardHandleOptions<T> {
|
38
45
|
request: StandardLazyRequest;
|
39
46
|
}
|
@@ -42,16 +49,16 @@ interface StandardHandlerOptions<TContext extends Context> {
|
|
42
49
|
/**
|
43
50
|
* Interceptors at the request level, helpful when you want catch errors
|
44
51
|
*/
|
45
|
-
interceptors?: Interceptor<StandardHandlerInterceptorOptions<TContext>, StandardHandleResult
|
52
|
+
interceptors?: Interceptor<StandardHandlerInterceptorOptions<TContext>, Promise<StandardHandleResult>>[];
|
46
53
|
/**
|
47
54
|
* Interceptors at the root level, helpful when you want override the request/response
|
48
55
|
*/
|
49
|
-
rootInterceptors?: Interceptor<StandardHandlerInterceptorOptions<TContext>, StandardHandleResult
|
56
|
+
rootInterceptors?: Interceptor<StandardHandlerInterceptorOptions<TContext>, Promise<StandardHandleResult>>[];
|
50
57
|
/**
|
51
58
|
*
|
52
59
|
* Interceptors for procedure client.
|
53
60
|
*/
|
54
|
-
clientInterceptors?: Interceptor<ProcedureClientInterceptorOptions<TContext,
|
61
|
+
clientInterceptors?: Interceptor<ProcedureClientInterceptorOptions<TContext, Record<never, never>, Meta>, Promise<unknown>>[];
|
55
62
|
}
|
56
63
|
declare class StandardHandler<T extends Context> {
|
57
64
|
private readonly matcher;
|
@@ -63,4 +70,5 @@ declare class StandardHandler<T extends Context> {
|
|
63
70
|
handle(request: StandardLazyRequest, options: StandardHandleOptions<T>): Promise<StandardHandleResult>;
|
64
71
|
}
|
65
72
|
|
66
|
-
export {
|
73
|
+
export { CompositeStandardHandlerPlugin as C, StandardHandler as a };
|
74
|
+
export type { StandardHandlerOptions as S, StandardHandleOptions as b, StandardHandlerPlugin as c, StandardCodec as d, StandardParams as e, StandardMatcher as f, StandardMatchResult as g, StandardHandleResult as h, StandardHandlerInterceptorOptions as i };
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import '@orpc/client';
|
2
|
+
import '@orpc/shared';
|
3
|
+
import '@orpc/standard-server';
|
4
|
+
import '@orpc/contract';
|
5
|
+
import '@orpc/client/standard';
|
6
|
+
import { r as resolveFriendlyStandardHandleOptions } from './server.DZ5BIITo.mjs';
|
7
|
+
|
8
|
+
async function handleStandardServerPeerMessage(handler, peer, message, options) {
|
9
|
+
const [id, request] = await peer.message(message);
|
10
|
+
if (!request) {
|
11
|
+
return;
|
12
|
+
}
|
13
|
+
const { response } = await handler.handle(
|
14
|
+
{ ...request, body: () => Promise.resolve(request.body) },
|
15
|
+
resolveFriendlyStandardHandleOptions(options)
|
16
|
+
);
|
17
|
+
await peer.response(id, response ?? { status: 404, headers: {}, body: "No procedure matched" });
|
18
|
+
}
|
19
|
+
|
20
|
+
export { handleStandardServerPeerMessage as h };
|
@@ -1,14 +1,27 @@
|
|
1
|
+
import { toHttpPath, StandardRPCJsonSerializer, StandardRPCSerializer } from '@orpc/client/standard';
|
1
2
|
import { ORPCError, toORPCError } from '@orpc/client';
|
2
|
-
import { toArray, intercept, parseEmptyableJSON } from '@orpc/shared';
|
3
|
-
import {
|
3
|
+
import { toArray, intercept, parseEmptyableJSON, NullProtoObj } from '@orpc/shared';
|
4
|
+
import { flattenHeader } from '@orpc/standard-server';
|
5
|
+
import { c as createProcedureClient, t as traverseContractProcedures, i as isProcedure, u as unlazy, g as getRouter, a as createContractedProcedure } from './server.DLJzqnSX.mjs';
|
6
|
+
|
7
|
+
class CompositeStandardHandlerPlugin {
|
8
|
+
plugins;
|
9
|
+
constructor(plugins = []) {
|
10
|
+
this.plugins = [...plugins].sort((a, b) => (a.order ?? 0) - (b.order ?? 0));
|
11
|
+
}
|
12
|
+
init(options, router) {
|
13
|
+
for (const plugin of this.plugins) {
|
14
|
+
plugin.init?.(options, router);
|
15
|
+
}
|
16
|
+
}
|
17
|
+
}
|
4
18
|
|
5
19
|
class StandardHandler {
|
6
20
|
constructor(router, matcher, codec, options) {
|
7
21
|
this.matcher = matcher;
|
8
22
|
this.codec = codec;
|
9
|
-
|
10
|
-
|
11
|
-
}
|
23
|
+
const plugins = new CompositeStandardHandlerPlugin(options.plugins);
|
24
|
+
plugins.init(options, router);
|
12
25
|
this.interceptors = toArray(options.interceptors);
|
13
26
|
this.clientInterceptors = toArray(options.clientInterceptors);
|
14
27
|
this.rootInterceptors = toArray(options.rootInterceptors);
|
@@ -17,23 +30,24 @@ class StandardHandler {
|
|
17
30
|
interceptors;
|
18
31
|
clientInterceptors;
|
19
32
|
rootInterceptors;
|
20
|
-
handle(request, options) {
|
33
|
+
async handle(request, options) {
|
34
|
+
const prefix = options.prefix?.replace(/\/$/, "") || void 0;
|
35
|
+
if (prefix && !request.url.pathname.startsWith(`${prefix}/`) && request.url.pathname !== prefix) {
|
36
|
+
return { matched: false, response: void 0 };
|
37
|
+
}
|
21
38
|
return intercept(
|
22
39
|
this.rootInterceptors,
|
23
|
-
{ ...options, request },
|
40
|
+
{ ...options, request, prefix },
|
24
41
|
async (interceptorOptions) => {
|
25
42
|
let isDecoding = false;
|
26
43
|
try {
|
27
44
|
return await intercept(
|
28
45
|
this.interceptors,
|
29
46
|
interceptorOptions,
|
30
|
-
async ({ request: request2, context, prefix }) => {
|
47
|
+
async ({ request: request2, context, prefix: prefix2 }) => {
|
31
48
|
const method = request2.method;
|
32
49
|
const url = request2.url;
|
33
|
-
|
34
|
-
return { matched: false, response: void 0 };
|
35
|
-
}
|
36
|
-
const pathname = prefix ? url.pathname.replace(prefix, "") : url.pathname;
|
50
|
+
const pathname = prefix2 ? url.pathname.replace(prefix2, "") : url.pathname;
|
37
51
|
const match = await this.matcher.match(method, `/${pathname.replace(/^\/|\/$/g, "")}`);
|
38
52
|
if (!match) {
|
39
53
|
return { matched: false, response: void 0 };
|
@@ -46,8 +60,10 @@ class StandardHandler {
|
|
46
60
|
isDecoding = true;
|
47
61
|
const input = await this.codec.decode(request2, match.params, match.procedure);
|
48
62
|
isDecoding = false;
|
49
|
-
const
|
50
|
-
|
63
|
+
const output = await client(input, {
|
64
|
+
signal: request2.signal,
|
65
|
+
lastEventId: flattenHeader(request2.headers["last-event-id"])
|
66
|
+
});
|
51
67
|
const response = this.codec.encode(output, match.procedure);
|
52
68
|
return {
|
53
69
|
matched: true,
|
@@ -96,7 +112,7 @@ class StandardRPCCodec {
|
|
96
112
|
}
|
97
113
|
|
98
114
|
class StandardRPCMatcher {
|
99
|
-
tree =
|
115
|
+
tree = new NullProtoObj();
|
100
116
|
pendingRouters = [];
|
101
117
|
init(router, path = []) {
|
102
118
|
const laziedOptions = traverseContractProcedures({ router, path }, ({ path: path2, contract }) => {
|
@@ -157,4 +173,14 @@ class StandardRPCMatcher {
|
|
157
173
|
}
|
158
174
|
}
|
159
175
|
|
160
|
-
|
176
|
+
class StandardRPCHandler extends StandardHandler {
|
177
|
+
constructor(router, options = {}) {
|
178
|
+
const jsonSerializer = new StandardRPCJsonSerializer(options);
|
179
|
+
const serializer = new StandardRPCSerializer(jsonSerializer);
|
180
|
+
const matcher = new StandardRPCMatcher();
|
181
|
+
const codec = new StandardRPCCodec(serializer);
|
182
|
+
super(router, matcher, codec, options);
|
183
|
+
}
|
184
|
+
}
|
185
|
+
|
186
|
+
export { CompositeStandardHandlerPlugin as C, StandardHandler as S, StandardRPCCodec as a, StandardRPCHandler as b, StandardRPCMatcher as c };
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { StandardRPCJsonSerializerOptions } from '@orpc/client/standard';
|
2
|
+
import { C as Context, R as Router } from './server.6ohwBdwx.mjs';
|
3
|
+
import { S as StandardHandlerOptions, a as StandardHandler } from './server.BtQsqpPB.mjs';
|
4
|
+
|
5
|
+
interface StandardRPCHandlerOptions<T extends Context> extends StandardHandlerOptions<T>, StandardRPCJsonSerializerOptions {
|
6
|
+
}
|
7
|
+
declare class StandardRPCHandler<T extends Context> extends StandardHandler<T> {
|
8
|
+
constructor(router: Router<any, T>, options?: StandardRPCHandlerOptions<T>);
|
9
|
+
}
|
10
|
+
|
11
|
+
export { StandardRPCHandler as a };
|
12
|
+
export type { StandardRPCHandlerOptions as S };
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { C as Context } from './server.6ohwBdwx.js';
|
2
|
+
import { b as StandardHandleOptions } from './server.BE3B4vij.js';
|
3
|
+
|
4
|
+
type FriendlyStandardHandleOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
|
5
|
+
context?: T;
|
6
|
+
} : {
|
7
|
+
context: T;
|
8
|
+
});
|
9
|
+
declare function resolveFriendlyStandardHandleOptions<T extends Context>(options: FriendlyStandardHandleOptions<T>): StandardHandleOptions<T>;
|
10
|
+
|
11
|
+
export { resolveFriendlyStandardHandleOptions as r };
|
12
|
+
export type { FriendlyStandardHandleOptions as F };
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { isContractProcedure, ValidationError, mergePrefix, mergeErrorMap, enhanceRoute } from '@orpc/contract';
|
2
|
+
import { value, intercept, resolveMaybeOptionalOptions } from '@orpc/shared';
|
2
3
|
import { fallbackORPCErrorStatus, ORPCError } from '@orpc/client';
|
3
|
-
import { value, intercept, toError } from '@orpc/shared';
|
4
4
|
|
5
5
|
const LAZY_SYMBOL = Symbol("ORPC_LAZY_SYMBOL");
|
6
6
|
function lazy(loader, meta = {}) {
|
@@ -46,6 +46,9 @@ function addMiddleware(middlewares, addition) {
|
|
46
46
|
}
|
47
47
|
|
48
48
|
class Procedure {
|
49
|
+
/**
|
50
|
+
* This property holds the defined options.
|
51
|
+
*/
|
49
52
|
"~orpc";
|
50
53
|
constructor(def) {
|
51
54
|
this["~orpc"] = def;
|
@@ -127,7 +130,7 @@ function createProcedureClient(lazyableProcedure, ...[options]) {
|
|
127
130
|
);
|
128
131
|
} catch (e) {
|
129
132
|
if (!(e instanceof ORPCError)) {
|
130
|
-
throw
|
133
|
+
throw e;
|
131
134
|
}
|
132
135
|
const validated = await validateORPCError(procedure["~orpc"].errorMap, e);
|
133
136
|
throw validated;
|
@@ -169,35 +172,29 @@ async function executeProcedureInternal(procedure, options) {
|
|
169
172
|
const middlewares = procedure["~orpc"].middlewares;
|
170
173
|
const inputValidationIndex = Math.min(Math.max(0, procedure["~orpc"].inputValidationIndex), middlewares.length);
|
171
174
|
const outputValidationIndex = Math.min(Math.max(0, procedure["~orpc"].outputValidationIndex), middlewares.length);
|
172
|
-
|
173
|
-
|
174
|
-
let currentInput = options.input;
|
175
|
-
const next = async (...[nextOptions]) => {
|
176
|
-
const index = currentIndex;
|
177
|
-
const midContext = nextOptions?.context ?? {};
|
178
|
-
currentIndex += 1;
|
179
|
-
currentContext = mergeCurrentContext(currentContext, midContext);
|
175
|
+
const next = async (index, context, input) => {
|
176
|
+
let currentInput = input;
|
180
177
|
if (index === inputValidationIndex) {
|
181
178
|
currentInput = await validateInput(procedure, currentInput);
|
182
179
|
}
|
183
180
|
const mid = middlewares[index];
|
184
|
-
const
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
181
|
+
const output = mid ? (await mid({
|
182
|
+
...options,
|
183
|
+
context,
|
184
|
+
next: async (...[nextOptions]) => {
|
185
|
+
const nextContext = nextOptions?.context ?? {};
|
186
|
+
return {
|
187
|
+
output: await next(index + 1, mergeCurrentContext(context, nextContext), currentInput),
|
188
|
+
context: nextContext
|
189
|
+
};
|
190
|
+
}
|
191
|
+
}, currentInput, middlewareOutputFn)).output : await procedure["~orpc"].handler({ ...options, context, input: currentInput });
|
191
192
|
if (index === outputValidationIndex) {
|
192
|
-
|
193
|
-
return {
|
194
|
-
context: result.context,
|
195
|
-
output: validatedOutput
|
196
|
-
};
|
193
|
+
return await validateOutput(procedure, output);
|
197
194
|
}
|
198
|
-
return
|
195
|
+
return output;
|
199
196
|
};
|
200
|
-
return (
|
197
|
+
return next(0, options.context, options.input);
|
201
198
|
}
|
202
199
|
|
203
200
|
const HIDDEN_ROUTER_CONTRACT_SYMBOL = Symbol("ORPC_HIDDEN_ROUTER_CONTRACT");
|
@@ -364,11 +361,8 @@ function createContractedProcedure(procedure, contract) {
|
|
364
361
|
});
|
365
362
|
}
|
366
363
|
function call(procedure, input, ...rest) {
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
function toHttpPath(path) {
|
371
|
-
return `/${path.map(encodeURIComponent).join("/")}`;
|
364
|
+
const options = resolveMaybeOptionalOptions(rest);
|
365
|
+
return createProcedureClient(procedure, options)(input, options);
|
372
366
|
}
|
373
367
|
|
374
|
-
export { LAZY_SYMBOL as L, Procedure as P,
|
368
|
+
export { LAZY_SYMBOL as L, Procedure as P, createContractedProcedure as a, addMiddleware as b, createProcedureClient as c, isLazy as d, enhanceRouter as e, createAssertedLazyProcedure as f, getRouter as g, createORPCErrorConstructorMap as h, isProcedure as i, getLazyMeta as j, middlewareOutputFn as k, lazy as l, mergeCurrentContext as m, isStartWithMiddlewares as n, mergeMiddlewares as o, call as p, getHiddenRouterContract as q, createAccessibleLazyRouter as r, setHiddenRouterContract as s, traverseContractProcedures as t, unlazy as u, validateORPCError as v, resolveContractProcedures as w, unlazyRouter as x };
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@orpc/server",
|
3
3
|
"type": "module",
|
4
|
-
"version": "0.0.0-next.
|
4
|
+
"version": "0.0.0-next.a4bc49e",
|
5
5
|
"license": "MIT",
|
6
6
|
"homepage": "https://orpc.unnoq.com",
|
7
7
|
"repository": {
|
@@ -24,49 +24,93 @@
|
|
24
24
|
"import": "./dist/plugins/index.mjs",
|
25
25
|
"default": "./dist/plugins/index.mjs"
|
26
26
|
},
|
27
|
+
"./hibernation": {
|
28
|
+
"types": "./dist/hibernation/index.d.mts",
|
29
|
+
"import": "./dist/hibernation/index.mjs",
|
30
|
+
"default": "./dist/hibernation/index.mjs"
|
31
|
+
},
|
27
32
|
"./standard": {
|
28
33
|
"types": "./dist/adapters/standard/index.d.mts",
|
29
34
|
"import": "./dist/adapters/standard/index.mjs",
|
30
35
|
"default": "./dist/adapters/standard/index.mjs"
|
31
36
|
},
|
37
|
+
"./standard-peer": {
|
38
|
+
"types": "./dist/adapters/standard-peer/index.d.mts",
|
39
|
+
"import": "./dist/adapters/standard-peer/index.mjs",
|
40
|
+
"default": "./dist/adapters/standard-peer/index.mjs"
|
41
|
+
},
|
32
42
|
"./fetch": {
|
33
43
|
"types": "./dist/adapters/fetch/index.d.mts",
|
34
44
|
"import": "./dist/adapters/fetch/index.mjs",
|
35
45
|
"default": "./dist/adapters/fetch/index.mjs"
|
36
46
|
},
|
37
|
-
"./hono": {
|
38
|
-
"types": "./dist/adapters/hono/index.d.mts",
|
39
|
-
"import": "./dist/adapters/hono/index.mjs",
|
40
|
-
"default": "./dist/adapters/hono/index.mjs"
|
41
|
-
},
|
42
|
-
"./next": {
|
43
|
-
"types": "./dist/adapters/next/index.d.mts",
|
44
|
-
"import": "./dist/adapters/next/index.mjs",
|
45
|
-
"default": "./dist/adapters/next/index.mjs"
|
46
|
-
},
|
47
47
|
"./node": {
|
48
48
|
"types": "./dist/adapters/node/index.d.mts",
|
49
49
|
"import": "./dist/adapters/node/index.mjs",
|
50
50
|
"default": "./dist/adapters/node/index.mjs"
|
51
|
+
},
|
52
|
+
"./aws-lambda": {
|
53
|
+
"types": "./dist/adapters/aws-lambda/index.d.mts",
|
54
|
+
"import": "./dist/adapters/aws-lambda/index.mjs",
|
55
|
+
"default": "./dist/adapters/aws-lambda/index.mjs"
|
56
|
+
},
|
57
|
+
"./websocket": {
|
58
|
+
"types": "./dist/adapters/websocket/index.d.mts",
|
59
|
+
"import": "./dist/adapters/websocket/index.mjs",
|
60
|
+
"default": "./dist/adapters/websocket/index.mjs"
|
61
|
+
},
|
62
|
+
"./crossws": {
|
63
|
+
"types": "./dist/adapters/crossws/index.d.mts",
|
64
|
+
"import": "./dist/adapters/crossws/index.mjs",
|
65
|
+
"default": "./dist/adapters/crossws/index.mjs"
|
66
|
+
},
|
67
|
+
"./ws": {
|
68
|
+
"types": "./dist/adapters/ws/index.d.mts",
|
69
|
+
"import": "./dist/adapters/ws/index.mjs",
|
70
|
+
"default": "./dist/adapters/ws/index.mjs"
|
71
|
+
},
|
72
|
+
"./bun-ws": {
|
73
|
+
"types": "./dist/adapters/bun-ws/index.d.mts",
|
74
|
+
"import": "./dist/adapters/bun-ws/index.mjs",
|
75
|
+
"default": "./dist/adapters/bun-ws/index.mjs"
|
76
|
+
},
|
77
|
+
"./message-port": {
|
78
|
+
"types": "./dist/adapters/message-port/index.d.mts",
|
79
|
+
"import": "./dist/adapters/message-port/index.mjs",
|
80
|
+
"default": "./dist/adapters/message-port/index.mjs"
|
51
81
|
}
|
52
82
|
},
|
53
83
|
"files": [
|
54
84
|
"dist"
|
55
85
|
],
|
56
86
|
"peerDependencies": {
|
57
|
-
"
|
58
|
-
"
|
87
|
+
"crossws": ">=0.3.4",
|
88
|
+
"ws": ">=8.18.1"
|
89
|
+
},
|
90
|
+
"peerDependenciesMeta": {
|
91
|
+
"crossws": {
|
92
|
+
"optional": true
|
93
|
+
},
|
94
|
+
"ws": {
|
95
|
+
"optional": true
|
96
|
+
}
|
59
97
|
},
|
60
98
|
"dependencies": {
|
61
|
-
"@orpc/client": "0.0.0-next.
|
62
|
-
"@orpc/shared": "0.0.0-next.
|
63
|
-
"@orpc/contract": "0.0.0-next.
|
64
|
-
"@orpc/standard-server": "0.0.0-next.
|
65
|
-
"@orpc/standard-server-
|
66
|
-
"@orpc/standard-server-
|
99
|
+
"@orpc/client": "0.0.0-next.a4bc49e",
|
100
|
+
"@orpc/shared": "0.0.0-next.a4bc49e",
|
101
|
+
"@orpc/contract": "0.0.0-next.a4bc49e",
|
102
|
+
"@orpc/standard-server": "0.0.0-next.a4bc49e",
|
103
|
+
"@orpc/standard-server-aws-lambda": "0.0.0-next.a4bc49e",
|
104
|
+
"@orpc/standard-server-fetch": "0.0.0-next.a4bc49e",
|
105
|
+
"@orpc/standard-server-peer": "0.0.0-next.a4bc49e",
|
106
|
+
"@orpc/standard-server-node": "0.0.0-next.a4bc49e"
|
67
107
|
},
|
68
108
|
"devDependencies": {
|
69
|
-
"
|
109
|
+
"@types/ws": "^8.18.1",
|
110
|
+
"crossws": "^0.4.1",
|
111
|
+
"next": "^15.3.5",
|
112
|
+
"supertest": "^7.1.3",
|
113
|
+
"ws": "^8.18.3"
|
70
114
|
},
|
71
115
|
"scripts": {
|
72
116
|
"build": "unbuild",
|
@@ -1,22 +0,0 @@
|
|
1
|
-
import { FetchHandler } from '../fetch/index.mjs';
|
2
|
-
export { BodyLimitPlugin, BodyLimitPluginOptions, FetchHandleResult, FetchHandlerInterceptorOptions, FetchHandlerOptions, FetchHandlerPlugin, RPCHandler } from '../fetch/index.mjs';
|
3
|
-
import { Value, MaybeOptionalOptions } from '@orpc/shared';
|
4
|
-
import { Context as Context$1, MiddlewareHandler } from 'hono';
|
5
|
-
import { C as Context } from '../../shared/server.MZvbGc3n.mjs';
|
6
|
-
import { S as StandardHandleOptions } from '../../shared/server.DJqfB27m.mjs';
|
7
|
-
import '../../shared/server.C-CCcROC.mjs';
|
8
|
-
import '@orpc/standard-server-fetch';
|
9
|
-
import '../../shared/server.CIbpOMZX.mjs';
|
10
|
-
import '@orpc/client/standard';
|
11
|
-
import '@orpc/client';
|
12
|
-
import '@orpc/contract';
|
13
|
-
import '@orpc/standard-server';
|
14
|
-
|
15
|
-
type CreateMiddlewareOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
|
16
|
-
context?: Value<T, [Context$1]>;
|
17
|
-
} : {
|
18
|
-
context: Value<T, [Context$1]>;
|
19
|
-
});
|
20
|
-
declare function createMiddleware<T extends Context>(handler: FetchHandler<T>, ...[options]: MaybeOptionalOptions<CreateMiddlewareOptions<T>>): MiddlewareHandler;
|
21
|
-
|
22
|
-
export { type CreateMiddlewareOptions, FetchHandler, createMiddleware };
|
@@ -1,22 +0,0 @@
|
|
1
|
-
import { FetchHandler } from '../fetch/index.js';
|
2
|
-
export { BodyLimitPlugin, BodyLimitPluginOptions, FetchHandleResult, FetchHandlerInterceptorOptions, FetchHandlerOptions, FetchHandlerPlugin, RPCHandler } from '../fetch/index.js';
|
3
|
-
import { Value, MaybeOptionalOptions } from '@orpc/shared';
|
4
|
-
import { Context as Context$1, MiddlewareHandler } from 'hono';
|
5
|
-
import { C as Context } from '../../shared/server.MZvbGc3n.js';
|
6
|
-
import { S as StandardHandleOptions } from '../../shared/server.23VRZIfj.js';
|
7
|
-
import '../../shared/server.BG5ftPWa.js';
|
8
|
-
import '@orpc/standard-server-fetch';
|
9
|
-
import '../../shared/server.DCcCuA52.js';
|
10
|
-
import '@orpc/client/standard';
|
11
|
-
import '@orpc/client';
|
12
|
-
import '@orpc/contract';
|
13
|
-
import '@orpc/standard-server';
|
14
|
-
|
15
|
-
type CreateMiddlewareOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
|
16
|
-
context?: Value<T, [Context$1]>;
|
17
|
-
} : {
|
18
|
-
context: Value<T, [Context$1]>;
|
19
|
-
});
|
20
|
-
declare function createMiddleware<T extends Context>(handler: FetchHandler<T>, ...[options]: MaybeOptionalOptions<CreateMiddlewareOptions<T>>): MiddlewareHandler;
|
21
|
-
|
22
|
-
export { type CreateMiddlewareOptions, FetchHandler, createMiddleware };
|
@@ -1,32 +0,0 @@
|
|
1
|
-
export { B as BodyLimitPlugin, F as FetchHandler, R as RPCHandler } from '../../shared/server.B4eSvRkD.mjs';
|
2
|
-
import { value } from '@orpc/shared';
|
3
|
-
import '@orpc/client';
|
4
|
-
import '@orpc/client/standard';
|
5
|
-
import '../../shared/server.DnR6v9pj.mjs';
|
6
|
-
import '../../shared/server.BtxZnWJ9.mjs';
|
7
|
-
import '@orpc/contract';
|
8
|
-
import '@orpc/standard-server-fetch';
|
9
|
-
import '../../shared/server.BVwwTHyO.mjs';
|
10
|
-
|
11
|
-
function createMiddleware(handler, ...[options]) {
|
12
|
-
return async (c, next) => {
|
13
|
-
const bodyProps = /* @__PURE__ */ new Set(["arrayBuffer", "blob", "formData", "json", "text"]);
|
14
|
-
const request = c.req.method === "GET" || c.req.method === "HEAD" ? c.req.raw : new Proxy(c.req.raw, {
|
15
|
-
// https://github.com/honojs/middleware/blob/main/packages/trpc-server/src/index.ts#L39
|
16
|
-
get(target, prop) {
|
17
|
-
if (bodyProps.has(prop)) {
|
18
|
-
return () => c.req[prop]();
|
19
|
-
}
|
20
|
-
return Reflect.get(target, prop, target);
|
21
|
-
}
|
22
|
-
});
|
23
|
-
const context = await value(options?.context ?? {}, c);
|
24
|
-
const { matched, response } = await handler.handle(request, { ...options, context });
|
25
|
-
if (matched) {
|
26
|
-
return c.newResponse(response.body, response);
|
27
|
-
}
|
28
|
-
await next();
|
29
|
-
};
|
30
|
-
}
|
31
|
-
|
32
|
-
export { createMiddleware };
|
@@ -1,29 +0,0 @@
|
|
1
|
-
import { FetchHandler } from '../fetch/index.mjs';
|
2
|
-
export { BodyLimitPlugin, BodyLimitPluginOptions, FetchHandleResult, FetchHandlerInterceptorOptions, FetchHandlerOptions, FetchHandlerPlugin, RPCHandler } from '../fetch/index.mjs';
|
3
|
-
import { Value, MaybeOptionalOptions } from '@orpc/shared';
|
4
|
-
import { NextRequest } from 'next/server';
|
5
|
-
import { C as Context } from '../../shared/server.MZvbGc3n.mjs';
|
6
|
-
import { S as StandardHandleOptions } from '../../shared/server.DJqfB27m.mjs';
|
7
|
-
import '../../shared/server.C-CCcROC.mjs';
|
8
|
-
import '@orpc/standard-server-fetch';
|
9
|
-
import '../../shared/server.CIbpOMZX.mjs';
|
10
|
-
import '@orpc/client/standard';
|
11
|
-
import '@orpc/client';
|
12
|
-
import '@orpc/contract';
|
13
|
-
import '@orpc/standard-server';
|
14
|
-
|
15
|
-
type ServeOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
|
16
|
-
context?: Value<T, [NextRequest]>;
|
17
|
-
} : {
|
18
|
-
context: Value<T, [NextRequest]>;
|
19
|
-
});
|
20
|
-
interface ServeResult {
|
21
|
-
GET(req: NextRequest): Promise<Response>;
|
22
|
-
POST(req: NextRequest): Promise<Response>;
|
23
|
-
PUT(req: NextRequest): Promise<Response>;
|
24
|
-
PATCH(req: NextRequest): Promise<Response>;
|
25
|
-
DELETE(req: NextRequest): Promise<Response>;
|
26
|
-
}
|
27
|
-
declare function serve<T extends Context>(handler: FetchHandler<T>, ...[options]: MaybeOptionalOptions<ServeOptions<T>>): ServeResult;
|
28
|
-
|
29
|
-
export { FetchHandler, type ServeOptions, type ServeResult, serve };
|
@@ -1,29 +0,0 @@
|
|
1
|
-
import { FetchHandler } from '../fetch/index.js';
|
2
|
-
export { BodyLimitPlugin, BodyLimitPluginOptions, FetchHandleResult, FetchHandlerInterceptorOptions, FetchHandlerOptions, FetchHandlerPlugin, RPCHandler } from '../fetch/index.js';
|
3
|
-
import { Value, MaybeOptionalOptions } from '@orpc/shared';
|
4
|
-
import { NextRequest } from 'next/server';
|
5
|
-
import { C as Context } from '../../shared/server.MZvbGc3n.js';
|
6
|
-
import { S as StandardHandleOptions } from '../../shared/server.23VRZIfj.js';
|
7
|
-
import '../../shared/server.BG5ftPWa.js';
|
8
|
-
import '@orpc/standard-server-fetch';
|
9
|
-
import '../../shared/server.DCcCuA52.js';
|
10
|
-
import '@orpc/client/standard';
|
11
|
-
import '@orpc/client';
|
12
|
-
import '@orpc/contract';
|
13
|
-
import '@orpc/standard-server';
|
14
|
-
|
15
|
-
type ServeOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
|
16
|
-
context?: Value<T, [NextRequest]>;
|
17
|
-
} : {
|
18
|
-
context: Value<T, [NextRequest]>;
|
19
|
-
});
|
20
|
-
interface ServeResult {
|
21
|
-
GET(req: NextRequest): Promise<Response>;
|
22
|
-
POST(req: NextRequest): Promise<Response>;
|
23
|
-
PUT(req: NextRequest): Promise<Response>;
|
24
|
-
PATCH(req: NextRequest): Promise<Response>;
|
25
|
-
DELETE(req: NextRequest): Promise<Response>;
|
26
|
-
}
|
27
|
-
declare function serve<T extends Context>(handler: FetchHandler<T>, ...[options]: MaybeOptionalOptions<ServeOptions<T>>): ServeResult;
|
28
|
-
|
29
|
-
export { FetchHandler, type ServeOptions, type ServeResult, serve };
|
@@ -1,29 +0,0 @@
|
|
1
|
-
export { B as BodyLimitPlugin, F as FetchHandler, R as RPCHandler } from '../../shared/server.B4eSvRkD.mjs';
|
2
|
-
import { value } from '@orpc/shared';
|
3
|
-
import '@orpc/client';
|
4
|
-
import '@orpc/client/standard';
|
5
|
-
import '../../shared/server.DnR6v9pj.mjs';
|
6
|
-
import '../../shared/server.BtxZnWJ9.mjs';
|
7
|
-
import '@orpc/contract';
|
8
|
-
import '@orpc/standard-server-fetch';
|
9
|
-
import '../../shared/server.BVwwTHyO.mjs';
|
10
|
-
|
11
|
-
function serve(handler, ...[options]) {
|
12
|
-
const main = async (req) => {
|
13
|
-
const context = await value(options?.context ?? {}, req);
|
14
|
-
const { matched, response } = await handler.handle(req, { ...options, context });
|
15
|
-
if (matched) {
|
16
|
-
return response;
|
17
|
-
}
|
18
|
-
return new Response(`Cannot find a matching procedure for ${req.url}`, { status: 404 });
|
19
|
-
};
|
20
|
-
return {
|
21
|
-
GET: main,
|
22
|
-
POST: main,
|
23
|
-
PUT: main,
|
24
|
-
PATCH: main,
|
25
|
-
DELETE: main
|
26
|
-
};
|
27
|
-
}
|
28
|
-
|
29
|
-
export { serve };
|