@orpc/server 0.0.0-next.9b9ade5 → 0.0.0-next.9cd157a

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 (39) hide show
  1. package/README.md +25 -17
  2. package/dist/adapters/fetch/index.d.mts +54 -10
  3. package/dist/adapters/fetch/index.d.ts +54 -10
  4. package/dist/adapters/fetch/index.mjs +104 -8
  5. package/dist/adapters/node/index.d.mts +56 -21
  6. package/dist/adapters/node/index.d.ts +56 -21
  7. package/dist/adapters/node/index.mjs +82 -23
  8. package/dist/adapters/standard/index.d.mts +11 -10
  9. package/dist/adapters/standard/index.d.ts +11 -10
  10. package/dist/adapters/standard/index.mjs +6 -4
  11. package/dist/index.d.mts +625 -65
  12. package/dist/index.d.ts +625 -65
  13. package/dist/index.mjs +165 -34
  14. package/dist/plugins/index.d.mts +140 -15
  15. package/dist/plugins/index.d.ts +140 -15
  16. package/dist/plugins/index.mjs +156 -7
  17. package/dist/shared/{server.CSZRzcSW.mjs → server.BM1HMJGg.mjs} +62 -30
  18. package/dist/shared/server.BVwwTHyO.mjs +9 -0
  19. package/dist/shared/server.BW-nUGgA.mjs +36 -0
  20. package/dist/shared/server.BjiJH9Vo.d.ts +10 -0
  21. package/dist/shared/server.CzSMXd8y.d.mts +18 -0
  22. package/dist/shared/server.DEgjJVit.d.ts +18 -0
  23. package/dist/shared/{server.CMrS28Go.mjs → server.DG7Tamti.mjs} +45 -24
  24. package/dist/shared/{server.CPteJIPP.d.mts → server.DPWk5pjW.d.mts} +71 -22
  25. package/dist/shared/{server.CPteJIPP.d.ts → server.DPWk5pjW.d.ts} +71 -22
  26. package/dist/shared/server.QUe9N8P4.d.mts +10 -0
  27. package/dist/shared/server.YZzrREz9.d.ts +74 -0
  28. package/dist/shared/server.eWLxY3lq.d.mts +74 -0
  29. package/package.json +9 -22
  30. package/dist/adapters/hono/index.d.mts +0 -19
  31. package/dist/adapters/hono/index.d.ts +0 -19
  32. package/dist/adapters/hono/index.mjs +0 -32
  33. package/dist/adapters/next/index.d.mts +0 -26
  34. package/dist/adapters/next/index.d.ts +0 -26
  35. package/dist/adapters/next/index.mjs +0 -29
  36. package/dist/shared/server.CM3tWr3C.d.mts +0 -75
  37. package/dist/shared/server.Cq3B6PoL.mjs +0 -28
  38. package/dist/shared/server.DmW25ynm.d.ts +0 -75
  39. package/dist/shared/server.Q6ZmnTgO.mjs +0 -12
@@ -0,0 +1,74 @@
1
+ import { HTTPPath, ORPCError } from '@orpc/client';
2
+ import { Meta, InferSchemaOutput, AnySchema, ErrorFromErrorMap } from '@orpc/contract';
3
+ import { Interceptor, ThrowableError } from '@orpc/shared';
4
+ import { StandardResponse, StandardLazyRequest } from '@orpc/standard-server';
5
+ import { C as Context, R as Router, f as AnyRouter, h as AnyProcedure, F as ProcedureClientInterceptorOptions } from './server.DPWk5pjW.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
+ }
16
+
17
+ type StandardParams = Record<string, string>;
18
+ type StandardMatchResult = {
19
+ path: readonly string[];
20
+ procedure: AnyProcedure;
21
+ params?: StandardParams;
22
+ } | undefined;
23
+ interface StandardMatcher {
24
+ init(router: AnyRouter): void;
25
+ match(method: string, pathname: HTTPPath): Promise<StandardMatchResult>;
26
+ }
27
+ interface StandardCodec {
28
+ encode(output: unknown, procedure: AnyProcedure): StandardResponse;
29
+ encodeError(error: ORPCError<any, any>): StandardResponse;
30
+ decode(request: StandardLazyRequest, params: StandardParams | undefined, procedure: AnyProcedure): Promise<unknown>;
31
+ }
32
+
33
+ interface StandardHandleOptions<T extends Context> {
34
+ prefix?: HTTPPath;
35
+ context: T;
36
+ }
37
+ type StandardHandleResult = {
38
+ matched: true;
39
+ response: StandardResponse;
40
+ } | {
41
+ matched: false;
42
+ response: undefined;
43
+ };
44
+ interface StandardHandlerInterceptorOptions<T extends Context> extends StandardHandleOptions<T> {
45
+ request: StandardLazyRequest;
46
+ }
47
+ interface StandardHandlerOptions<TContext extends Context> {
48
+ plugins?: StandardHandlerPlugin<TContext>[];
49
+ /**
50
+ * Interceptors at the request level, helpful when you want catch errors
51
+ */
52
+ interceptors?: Interceptor<StandardHandlerInterceptorOptions<TContext>, StandardHandleResult, ThrowableError>[];
53
+ /**
54
+ * Interceptors at the root level, helpful when you want override the request/response
55
+ */
56
+ rootInterceptors?: Interceptor<StandardHandlerInterceptorOptions<TContext>, StandardHandleResult, ThrowableError>[];
57
+ /**
58
+ *
59
+ * Interceptors for procedure client.
60
+ */
61
+ clientInterceptors?: Interceptor<ProcedureClientInterceptorOptions<TContext, Record<never, never>, Meta>, InferSchemaOutput<AnySchema>, ErrorFromErrorMap<Record<never, never>>>[];
62
+ }
63
+ declare class StandardHandler<T extends Context> {
64
+ private readonly matcher;
65
+ private readonly codec;
66
+ private readonly interceptors;
67
+ private readonly clientInterceptors;
68
+ private readonly rootInterceptors;
69
+ constructor(router: Router<any, T>, matcher: StandardMatcher, codec: StandardCodec, options: NoInfer<StandardHandlerOptions<T>>);
70
+ handle(request: StandardLazyRequest, options: StandardHandleOptions<T>): Promise<StandardHandleResult>;
71
+ }
72
+
73
+ export { CompositeStandardHandlerPlugin as C, StandardHandler as i };
74
+ export type { StandardHandlerInterceptorOptions as S, StandardHandlerPlugin as a, StandardHandlerOptions as b, StandardCodec as c, StandardParams as d, StandardMatcher as e, StandardMatchResult as f, StandardHandleOptions as g, StandardHandleResult as h };
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.9b9ade5",
4
+ "version": "0.0.0-next.9cd157a",
5
5
  "license": "MIT",
6
6
  "homepage": "https://orpc.unnoq.com",
7
7
  "repository": {
@@ -34,16 +34,6 @@
34
34
  "import": "./dist/adapters/fetch/index.mjs",
35
35
  "default": "./dist/adapters/fetch/index.mjs"
36
36
  },
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
37
  "./node": {
48
38
  "types": "./dist/adapters/node/index.d.mts",
49
39
  "import": "./dist/adapters/node/index.mjs",
@@ -53,20 +43,17 @@
53
43
  "files": [
54
44
  "dist"
55
45
  ],
56
- "peerDependencies": {
57
- "hono": ">=4.6.0",
58
- "next": ">=14.0.0"
59
- },
60
46
  "dependencies": {
61
- "@orpc/contract": "0.0.0-next.9b9ade5",
62
- "@orpc/client": "0.0.0-next.9b9ade5",
63
- "@orpc/shared": "0.0.0-next.9b9ade5",
64
- "@orpc/standard-server": "0.0.0-next.9b9ade5",
65
- "@orpc/standard-server-fetch": "0.0.0-next.9b9ade5",
66
- "@orpc/standard-server-node": "0.0.0-next.9b9ade5"
47
+ "@orpc/client": "0.0.0-next.9cd157a",
48
+ "@orpc/contract": "0.0.0-next.9cd157a",
49
+ "@orpc/shared": "0.0.0-next.9cd157a",
50
+ "@orpc/standard-server": "0.0.0-next.9cd157a",
51
+ "@orpc/standard-server-node": "0.0.0-next.9cd157a",
52
+ "@orpc/standard-server-fetch": "0.0.0-next.9cd157a"
67
53
  },
68
54
  "devDependencies": {
69
- "light-my-request": "^6.5.1"
55
+ "next": "^15.3.0",
56
+ "supertest": "^7.1.0"
70
57
  },
71
58
  "scripts": {
72
59
  "build": "unbuild",
@@ -1,19 +0,0 @@
1
- import { FetchHandler } from '../fetch/index.mjs';
2
- export { FetchHandleResult, 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.CPteJIPP.mjs';
6
- import { S as StandardHandleOptions } from '../../shared/server.CM3tWr3C.mjs';
7
- import '@orpc/standard-server-fetch';
8
- import '@orpc/client';
9
- import '@orpc/contract';
10
- import '@orpc/standard-server';
11
-
12
- type CreateMiddlewareOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
13
- context?: Value<T, [Context$1]>;
14
- } : {
15
- context: Value<T, [Context$1]>;
16
- });
17
- declare function createMiddleware<T extends Context>(handler: FetchHandler<T>, ...[options]: MaybeOptionalOptions<CreateMiddlewareOptions<T>>): MiddlewareHandler;
18
-
19
- export { type CreateMiddlewareOptions, FetchHandler, createMiddleware };
@@ -1,19 +0,0 @@
1
- import { FetchHandler } from '../fetch/index.js';
2
- export { FetchHandleResult, 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.CPteJIPP.js';
6
- import { S as StandardHandleOptions } from '../../shared/server.DmW25ynm.js';
7
- import '@orpc/standard-server-fetch';
8
- import '@orpc/client';
9
- import '@orpc/contract';
10
- import '@orpc/standard-server';
11
-
12
- type CreateMiddlewareOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
13
- context?: Value<T, [Context$1]>;
14
- } : {
15
- context: Value<T, [Context$1]>;
16
- });
17
- declare function createMiddleware<T extends Context>(handler: FetchHandler<T>, ...[options]: MaybeOptionalOptions<CreateMiddlewareOptions<T>>): MiddlewareHandler;
18
-
19
- export { type CreateMiddlewareOptions, FetchHandler, createMiddleware };
@@ -1,32 +0,0 @@
1
- export { R as RPCHandler } from '../../shared/server.Cq3B6PoL.mjs';
2
- import { value } from '@orpc/shared';
3
- import '@orpc/client/standard';
4
- import '@orpc/standard-server-fetch';
5
- import '../../shared/server.CSZRzcSW.mjs';
6
- import '@orpc/client';
7
- import '../../shared/server.Q6ZmnTgO.mjs';
8
- import '../../shared/server.CMrS28Go.mjs';
9
- import '@orpc/contract';
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,26 +0,0 @@
1
- import { FetchHandler } from '../fetch/index.mjs';
2
- export { FetchHandleResult, 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.CPteJIPP.mjs';
6
- import { S as StandardHandleOptions } from '../../shared/server.CM3tWr3C.mjs';
7
- import '@orpc/standard-server-fetch';
8
- import '@orpc/client';
9
- import '@orpc/contract';
10
- import '@orpc/standard-server';
11
-
12
- type ServeOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
13
- context?: Value<T, [NextRequest]>;
14
- } : {
15
- context: Value<T, [NextRequest]>;
16
- });
17
- interface ServeResult {
18
- GET(req: NextRequest): Promise<Response>;
19
- POST(req: NextRequest): Promise<Response>;
20
- PUT(req: NextRequest): Promise<Response>;
21
- PATCH(req: NextRequest): Promise<Response>;
22
- DELETE(req: NextRequest): Promise<Response>;
23
- }
24
- declare function serve<T extends Context>(handler: FetchHandler<T>, ...[options]: MaybeOptionalOptions<ServeOptions<T>>): ServeResult;
25
-
26
- export { FetchHandler, type ServeOptions, type ServeResult, serve };
@@ -1,26 +0,0 @@
1
- import { FetchHandler } from '../fetch/index.js';
2
- export { FetchHandleResult, 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.CPteJIPP.js';
6
- import { S as StandardHandleOptions } from '../../shared/server.DmW25ynm.js';
7
- import '@orpc/standard-server-fetch';
8
- import '@orpc/client';
9
- import '@orpc/contract';
10
- import '@orpc/standard-server';
11
-
12
- type ServeOptions<T extends Context> = Omit<StandardHandleOptions<T>, 'context'> & (Record<never, never> extends T ? {
13
- context?: Value<T, [NextRequest]>;
14
- } : {
15
- context: Value<T, [NextRequest]>;
16
- });
17
- interface ServeResult {
18
- GET(req: NextRequest): Promise<Response>;
19
- POST(req: NextRequest): Promise<Response>;
20
- PUT(req: NextRequest): Promise<Response>;
21
- PATCH(req: NextRequest): Promise<Response>;
22
- DELETE(req: NextRequest): Promise<Response>;
23
- }
24
- declare function serve<T extends Context>(handler: FetchHandler<T>, ...[options]: MaybeOptionalOptions<ServeOptions<T>>): ServeResult;
25
-
26
- export { FetchHandler, type ServeOptions, type ServeResult, serve };
@@ -1,29 +0,0 @@
1
- export { R as RPCHandler } from '../../shared/server.Cq3B6PoL.mjs';
2
- import { value } from '@orpc/shared';
3
- import '@orpc/client/standard';
4
- import '@orpc/standard-server-fetch';
5
- import '../../shared/server.CSZRzcSW.mjs';
6
- import '@orpc/client';
7
- import '../../shared/server.Q6ZmnTgO.mjs';
8
- import '../../shared/server.CMrS28Go.mjs';
9
- import '@orpc/contract';
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 };
@@ -1,75 +0,0 @@
1
- import { HTTPPath, AnySchema, Meta, InferSchemaOutput, ErrorFromErrorMap } from '@orpc/contract';
2
- import { Interceptor, MaybeOptionalOptions } from '@orpc/shared';
3
- import { StandardResponse, StandardLazyRequest } from '@orpc/standard-server';
4
- import { a as AnyRouter, A as AnyProcedure, C as Context, P as ProcedureClientInterceptorOptions, R as Router } from './server.CPteJIPP.mjs';
5
- import { ORPCError } from '@orpc/client';
6
-
7
- type StandardParams = Record<string, string>;
8
- type StandardMatchResult = {
9
- path: readonly string[];
10
- procedure: AnyProcedure;
11
- params?: StandardParams;
12
- } | undefined;
13
- interface StandardMatcher {
14
- init(router: AnyRouter): void;
15
- match(method: string, pathname: HTTPPath): Promise<StandardMatchResult>;
16
- }
17
- interface StandardCodec {
18
- encode(output: unknown, procedure: AnyProcedure): StandardResponse;
19
- encodeError(error: ORPCError<any, any>): StandardResponse;
20
- decode(request: StandardLazyRequest, params: StandardParams | undefined, procedure: AnyProcedure): Promise<unknown>;
21
- }
22
-
23
- type StandardHandleOptions<T extends Context> = {
24
- prefix?: HTTPPath;
25
- } & (Record<never, never> extends T ? {
26
- context?: T;
27
- } : {
28
- context: T;
29
- });
30
- type StandardHandleResult = {
31
- matched: true;
32
- response: StandardResponse;
33
- } | {
34
- matched: false;
35
- response: undefined;
36
- };
37
- type StandardHandlerInterceptorOptions<T extends Context> = StandardHandleOptions<T> & {
38
- context: T;
39
- request: StandardLazyRequest;
40
- };
41
- interface StandardHandlerOptions<TContext extends Context> {
42
- plugins?: HandlerPlugin<TContext>[];
43
- /**
44
- * Interceptors at the request level, helpful when you want catch errors
45
- */
46
- interceptors?: Interceptor<StandardHandlerInterceptorOptions<TContext>, StandardHandleResult, unknown>[];
47
- /**
48
- * Interceptors at the root level, helpful when you want override the request/response
49
- */
50
- rootInterceptors?: Interceptor<StandardHandlerInterceptorOptions<TContext>, StandardHandleResult, unknown>[];
51
- /**
52
- *
53
- * Interceptors for procedure client.
54
- */
55
- clientInterceptors?: Interceptor<ProcedureClientInterceptorOptions<TContext, AnySchema, Record<never, never>, Meta>, InferSchemaOutput<AnySchema>, ErrorFromErrorMap<Record<never, never>>>[];
56
- }
57
- declare class StandardHandler<T extends Context> {
58
- private readonly matcher;
59
- private readonly codec;
60
- private readonly options;
61
- private readonly plugin;
62
- constructor(router: Router<any, T>, matcher: StandardMatcher, codec: StandardCodec, options: NoInfer<StandardHandlerOptions<T>>);
63
- handle(request: StandardLazyRequest, ...[options]: MaybeOptionalOptions<StandardHandleOptions<T>>): Promise<StandardHandleResult>;
64
- }
65
-
66
- interface HandlerPlugin<TContext extends Context> {
67
- init?(options: StandardHandlerOptions<TContext>): void;
68
- }
69
- declare class CompositePlugin<TContext extends Context> implements HandlerPlugin<TContext> {
70
- private readonly plugins;
71
- constructor(plugins?: HandlerPlugin<TContext>[]);
72
- init(options: StandardHandlerOptions<TContext>): void;
73
- }
74
-
75
- export { CompositePlugin as C, type HandlerPlugin as H, type StandardHandleOptions as S, type StandardHandlerInterceptorOptions as a, type StandardHandlerOptions as b, type StandardCodec as c, type StandardParams as d, type StandardMatcher as e, type StandardMatchResult as f, type StandardHandleResult as g, StandardHandler as h };
@@ -1,28 +0,0 @@
1
- import { RPCSerializer } from '@orpc/client/standard';
2
- import { toStandardLazyRequest, toFetchResponse } from '@orpc/standard-server-fetch';
3
- import { S as StandardHandler, a as RPCMatcher, R as RPCCodec } from './server.CSZRzcSW.mjs';
4
-
5
- class RPCHandler {
6
- standardHandler;
7
- constructor(router, options = {}) {
8
- const serializer = new RPCSerializer();
9
- const matcher = new RPCMatcher();
10
- const codec = new RPCCodec(serializer);
11
- this.standardHandler = new StandardHandler(router, matcher, codec, options);
12
- }
13
- async handle(request, ...[
14
- options = {}
15
- ]) {
16
- const standardRequest = toStandardLazyRequest(request);
17
- const result = await this.standardHandler.handle(standardRequest, options);
18
- if (!result.matched) {
19
- return result;
20
- }
21
- return {
22
- matched: true,
23
- response: toFetchResponse(result.response, options)
24
- };
25
- }
26
- }
27
-
28
- export { RPCHandler as R };
@@ -1,75 +0,0 @@
1
- import { HTTPPath, AnySchema, Meta, InferSchemaOutput, ErrorFromErrorMap } from '@orpc/contract';
2
- import { Interceptor, MaybeOptionalOptions } from '@orpc/shared';
3
- import { StandardResponse, StandardLazyRequest } from '@orpc/standard-server';
4
- import { a as AnyRouter, A as AnyProcedure, C as Context, P as ProcedureClientInterceptorOptions, R as Router } from './server.CPteJIPP.js';
5
- import { ORPCError } from '@orpc/client';
6
-
7
- type StandardParams = Record<string, string>;
8
- type StandardMatchResult = {
9
- path: readonly string[];
10
- procedure: AnyProcedure;
11
- params?: StandardParams;
12
- } | undefined;
13
- interface StandardMatcher {
14
- init(router: AnyRouter): void;
15
- match(method: string, pathname: HTTPPath): Promise<StandardMatchResult>;
16
- }
17
- interface StandardCodec {
18
- encode(output: unknown, procedure: AnyProcedure): StandardResponse;
19
- encodeError(error: ORPCError<any, any>): StandardResponse;
20
- decode(request: StandardLazyRequest, params: StandardParams | undefined, procedure: AnyProcedure): Promise<unknown>;
21
- }
22
-
23
- type StandardHandleOptions<T extends Context> = {
24
- prefix?: HTTPPath;
25
- } & (Record<never, never> extends T ? {
26
- context?: T;
27
- } : {
28
- context: T;
29
- });
30
- type StandardHandleResult = {
31
- matched: true;
32
- response: StandardResponse;
33
- } | {
34
- matched: false;
35
- response: undefined;
36
- };
37
- type StandardHandlerInterceptorOptions<T extends Context> = StandardHandleOptions<T> & {
38
- context: T;
39
- request: StandardLazyRequest;
40
- };
41
- interface StandardHandlerOptions<TContext extends Context> {
42
- plugins?: HandlerPlugin<TContext>[];
43
- /**
44
- * Interceptors at the request level, helpful when you want catch errors
45
- */
46
- interceptors?: Interceptor<StandardHandlerInterceptorOptions<TContext>, StandardHandleResult, unknown>[];
47
- /**
48
- * Interceptors at the root level, helpful when you want override the request/response
49
- */
50
- rootInterceptors?: Interceptor<StandardHandlerInterceptorOptions<TContext>, StandardHandleResult, unknown>[];
51
- /**
52
- *
53
- * Interceptors for procedure client.
54
- */
55
- clientInterceptors?: Interceptor<ProcedureClientInterceptorOptions<TContext, AnySchema, Record<never, never>, Meta>, InferSchemaOutput<AnySchema>, ErrorFromErrorMap<Record<never, never>>>[];
56
- }
57
- declare class StandardHandler<T extends Context> {
58
- private readonly matcher;
59
- private readonly codec;
60
- private readonly options;
61
- private readonly plugin;
62
- constructor(router: Router<any, T>, matcher: StandardMatcher, codec: StandardCodec, options: NoInfer<StandardHandlerOptions<T>>);
63
- handle(request: StandardLazyRequest, ...[options]: MaybeOptionalOptions<StandardHandleOptions<T>>): Promise<StandardHandleResult>;
64
- }
65
-
66
- interface HandlerPlugin<TContext extends Context> {
67
- init?(options: StandardHandlerOptions<TContext>): void;
68
- }
69
- declare class CompositePlugin<TContext extends Context> implements HandlerPlugin<TContext> {
70
- private readonly plugins;
71
- constructor(plugins?: HandlerPlugin<TContext>[]);
72
- init(options: StandardHandlerOptions<TContext>): void;
73
- }
74
-
75
- export { CompositePlugin as C, type HandlerPlugin as H, type StandardHandleOptions as S, type StandardHandlerInterceptorOptions as a, type StandardHandlerOptions as b, type StandardCodec as c, type StandardParams as d, type StandardMatcher as e, type StandardMatchResult as f, type StandardHandleResult as g, StandardHandler as h };
@@ -1,12 +0,0 @@
1
- class CompositePlugin {
2
- constructor(plugins = []) {
3
- this.plugins = plugins;
4
- }
5
- init(options) {
6
- for (const plugin of this.plugins) {
7
- plugin.init?.(options);
8
- }
9
- }
10
- }
11
-
12
- export { CompositePlugin as C };