@orpc/server 0.40.0 → 0.41.0

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.
@@ -2,7 +2,7 @@ import {
2
2
  RPCCodec,
3
3
  RPCMatcher,
4
4
  StandardHandler
5
- } from "./chunk-NXEANHUK.js";
5
+ } from "./chunk-LXOL226G.js";
6
6
 
7
7
  // src/adapters/fetch/rpc-handler.ts
8
8
  import { toFetchResponse, toStandardRequest } from "@orpc/server-standard-fetch";
@@ -29,4 +29,4 @@ var RPCHandler = class {
29
29
  export {
30
30
  RPCHandler
31
31
  };
32
- //# sourceMappingURL=chunk-L4ESXQX7.js.map
32
+ //# sourceMappingURL=chunk-KPT6FDBK.js.map
@@ -6,13 +6,13 @@ import {
6
6
  getRouterChild,
7
7
  isProcedure,
8
8
  unlazy
9
- } from "./chunk-XXBE6CYD.js";
9
+ } from "./chunk-MHVECKBC.js";
10
10
  import {
11
11
  CompositePlugin
12
12
  } from "./chunk-XI6WGCB3.js";
13
13
 
14
14
  // src/adapters/standard/handler.ts
15
- import { ORPCError, toORPCError } from "@orpc/contract";
15
+ import { ORPCError, toORPCError } from "@orpc/client";
16
16
  import { intercept, trim } from "@orpc/shared";
17
17
  var StandardHandler = class {
18
18
  constructor(router, matcher, codec, options = {}) {
@@ -81,175 +81,8 @@ var StandardHandler = class {
81
81
  }
82
82
  };
83
83
 
84
- // src/adapters/standard/rpc-serializer.ts
85
- import { mapEventIterator, ORPCError as ORPCError2, toORPCError as toORPCError2 } from "@orpc/contract";
86
- import { ErrorEvent, isAsyncIteratorObject } from "@orpc/server-standard";
87
- import { findDeepMatches, isObject, set } from "@orpc/shared";
88
- var RPCSerializer = class {
89
- serialize(data) {
90
- if (isAsyncIteratorObject(data)) {
91
- return mapEventIterator(data, {
92
- value: async (value) => serializeRPCJson(value),
93
- error: async (e) => {
94
- if (e instanceof ErrorEvent) {
95
- return new ErrorEvent({
96
- data: serializeRPCJson(e.data),
97
- cause: e
98
- });
99
- }
100
- return new ErrorEvent({
101
- data: serializeRPCJson(toORPCError2(e).toJSON()),
102
- cause: e
103
- });
104
- }
105
- });
106
- }
107
- const serializedJSON = serializeRPCJson(data);
108
- const { maps, values: blobs } = findDeepMatches((v) => v instanceof Blob, serializedJSON.json);
109
- if (blobs.length === 0) {
110
- return serializedJSON;
111
- }
112
- const form = new FormData();
113
- form.set("data", JSON.stringify(serializedJSON));
114
- form.set("maps", JSON.stringify(maps));
115
- for (const i in blobs) {
116
- form.set(i, blobs[i]);
117
- }
118
- return form;
119
- }
120
- deserialize(serialized) {
121
- if (isAsyncIteratorObject(serialized)) {
122
- return mapEventIterator(serialized, {
123
- value: async (value) => deserializeRPCJson(value),
124
- error: async (e) => {
125
- if (!(e instanceof ErrorEvent)) {
126
- return e;
127
- }
128
- const deserialized = deserializeRPCJson(e.data);
129
- if (ORPCError2.isValidJSON(deserialized)) {
130
- return ORPCError2.fromJSON(deserialized, { cause: e });
131
- }
132
- return new ErrorEvent({
133
- data: deserialized,
134
- cause: e
135
- });
136
- }
137
- });
138
- }
139
- if (!(serialized instanceof FormData)) {
140
- return deserializeRPCJson(serialized);
141
- }
142
- const data = JSON.parse(serialized.get("data"));
143
- const maps = JSON.parse(serialized.get("maps"));
144
- for (const i in maps) {
145
- data.json = set(data.json, maps[i], serialized.get(i));
146
- }
147
- return deserializeRPCJson(data);
148
- }
149
- };
150
- function serializeRPCJson(value, segments = [], meta = []) {
151
- if (typeof value === "bigint") {
152
- meta.push(["bigint", segments]);
153
- return { json: value.toString(), meta };
154
- }
155
- if (value instanceof Date) {
156
- meta.push(["date", segments]);
157
- const data = Number.isNaN(value.getTime()) ? "Invalid Date" : value.toISOString();
158
- return { json: data, meta };
159
- }
160
- if (Number.isNaN(value)) {
161
- meta.push(["nan", segments]);
162
- return { json: "NaN", meta };
163
- }
164
- if (value instanceof RegExp) {
165
- meta.push(["regexp", segments]);
166
- return { json: value.toString(), meta };
167
- }
168
- if (value instanceof URL) {
169
- meta.push(["url", segments]);
170
- return { json: value.toString(), meta };
171
- }
172
- if (isObject(value)) {
173
- const json = {};
174
- for (const k in value) {
175
- json[k] = serializeRPCJson(value[k], [...segments, k], meta).json;
176
- }
177
- return { json, meta };
178
- }
179
- if (Array.isArray(value)) {
180
- const json = value.map((v, i) => {
181
- if (v === void 0) {
182
- meta.push(["undefined", [...segments, i]]);
183
- return null;
184
- }
185
- return serializeRPCJson(v, [...segments, i], meta).json;
186
- });
187
- return { json, meta };
188
- }
189
- if (value instanceof Set) {
190
- const result = serializeRPCJson(Array.from(value), segments, meta);
191
- meta.push(["set", segments]);
192
- return result;
193
- }
194
- if (value instanceof Map) {
195
- const result = serializeRPCJson(Array.from(value.entries()), segments, meta);
196
- meta.push(["map", segments]);
197
- return result;
198
- }
199
- return { json: value, meta };
200
- }
201
- function deserializeRPCJson({
202
- json,
203
- meta
204
- }) {
205
- if (meta.length === 0) {
206
- return json;
207
- }
208
- const ref = { data: json };
209
- for (const [type, segments] of meta) {
210
- let currentRef = ref;
211
- let preSegment = "data";
212
- for (let i = 0; i < segments.length; i++) {
213
- currentRef = currentRef[preSegment];
214
- preSegment = segments[i];
215
- }
216
- switch (type) {
217
- case "nan":
218
- currentRef[preSegment] = Number.NaN;
219
- break;
220
- case "bigint":
221
- currentRef[preSegment] = BigInt(currentRef[preSegment]);
222
- break;
223
- case "date":
224
- currentRef[preSegment] = new Date(currentRef[preSegment]);
225
- break;
226
- case "regexp": {
227
- const [, pattern, flags] = currentRef[preSegment].match(/^\/(.*)\/([a-z]*)$/);
228
- currentRef[preSegment] = new RegExp(pattern, flags);
229
- break;
230
- }
231
- case "url":
232
- currentRef[preSegment] = new URL(currentRef[preSegment]);
233
- break;
234
- case "undefined":
235
- currentRef[preSegment] = void 0;
236
- break;
237
- case "map":
238
- currentRef[preSegment] = new Map(currentRef[preSegment]);
239
- break;
240
- case "set":
241
- currentRef[preSegment] = new Set(currentRef[preSegment]);
242
- break;
243
- /* v8 ignore next 3 */
244
- default: {
245
- const _expected = type;
246
- }
247
- }
248
- }
249
- return ref.data;
250
- }
251
-
252
84
  // src/adapters/standard/rpc-codec.ts
85
+ import { RPCSerializer } from "@orpc/client/rpc";
253
86
  var RPCCodec = class {
254
87
  serializer;
255
88
  constructor(options = {}) {
@@ -343,9 +176,7 @@ var RPCMatcher = class {
343
176
 
344
177
  export {
345
178
  StandardHandler,
346
- RPCSerializer,
347
- serializeRPCJson,
348
179
  RPCCodec,
349
180
  RPCMatcher
350
181
  };
351
- //# sourceMappingURL=chunk-NXEANHUK.js.map
182
+ //# sourceMappingURL=chunk-LXOL226G.js.map
@@ -62,8 +62,50 @@ function middlewareOutputFn(output) {
62
62
  }
63
63
 
64
64
  // src/procedure-client.ts
65
- import { createORPCErrorConstructorMap, ORPCError, validateORPCError, ValidationError } from "@orpc/contract";
65
+ import { ORPCError as ORPCError2 } from "@orpc/client";
66
+ import { ValidationError } from "@orpc/contract";
66
67
  import { intercept, toError, value } from "@orpc/shared";
68
+
69
+ // src/error.ts
70
+ import { fallbackORPCErrorStatus, ORPCError } from "@orpc/client";
71
+ function createORPCErrorConstructorMap(errors) {
72
+ const proxy = new Proxy(errors, {
73
+ get(target, code) {
74
+ if (typeof code !== "string") {
75
+ return Reflect.get(target, code);
76
+ }
77
+ const item = (...[options]) => {
78
+ const config = errors[code];
79
+ return new ORPCError(code, {
80
+ defined: Boolean(config),
81
+ status: config?.status,
82
+ message: options?.message ?? config?.message,
83
+ data: options?.data,
84
+ cause: options?.cause
85
+ });
86
+ };
87
+ return item;
88
+ }
89
+ });
90
+ return proxy;
91
+ }
92
+ async function validateORPCError(map, error) {
93
+ const { code, status, message, data, cause, defined } = error;
94
+ const config = map?.[error.code];
95
+ if (!config || fallbackORPCErrorStatus(error.code, config.status) !== error.status) {
96
+ return defined ? new ORPCError(code, { defined: false, status, message, data, cause }) : error;
97
+ }
98
+ if (!config.data) {
99
+ return defined ? error : new ORPCError(code, { defined: true, status, message, data, cause });
100
+ }
101
+ const validated = await config.data["~standard"].validate(error.data);
102
+ if (validated.issues) {
103
+ return defined ? new ORPCError(code, { defined: false, status, message, data, cause }) : error;
104
+ }
105
+ return new ORPCError(code, { defined: true, status, message, data: validated.value, cause });
106
+ }
107
+
108
+ // src/procedure-client.ts
67
109
  function createProcedureClient(lazyableProcedure, ...[options]) {
68
110
  return async (...[input, callerOptions]) => {
69
111
  const path = options?.path ?? [];
@@ -87,7 +129,7 @@ function createProcedureClient(lazyableProcedure, ...[options]) {
87
129
  (interceptorOptions) => executeProcedureInternal(interceptorOptions.procedure, interceptorOptions)
88
130
  );
89
131
  } catch (e) {
90
- if (!(e instanceof ORPCError)) {
132
+ if (!(e instanceof ORPCError2)) {
91
133
  throw toError(e);
92
134
  }
93
135
  const validated = await validateORPCError(procedure["~orpc"].errorMap, e);
@@ -102,7 +144,7 @@ async function validateInput(procedure, input) {
102
144
  }
103
145
  const result = await schema["~standard"].validate(input);
104
146
  if (result.issues) {
105
- throw new ORPCError("BAD_REQUEST", {
147
+ throw new ORPCError2("BAD_REQUEST", {
106
148
  message: "Input validation failed",
107
149
  data: {
108
150
  issues: result.issues
@@ -119,7 +161,7 @@ async function validateOutput(procedure, output) {
119
161
  }
120
162
  const result = await schema["~standard"].validate(output);
121
163
  if (result.issues) {
122
- throw new ORPCError("INTERNAL_SERVER_ERROR", {
164
+ throw new ORPCError2("INTERNAL_SERVER_ERROR", {
123
165
  message: "Output validation failed",
124
166
  cause: new ValidationError({ message: "Output validation failed", issues: result.issues })
125
167
  });
@@ -376,4 +418,4 @@ export {
376
418
  convertPathToHttpPath,
377
419
  createContractedProcedure
378
420
  };
379
- //# sourceMappingURL=chunk-XXBE6CYD.js.map
421
+ //# sourceMappingURL=chunk-MHVECKBC.js.map
package/dist/fetch.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  RPCHandler
3
- } from "./chunk-L4ESXQX7.js";
4
- import "./chunk-NXEANHUK.js";
5
- import "./chunk-XXBE6CYD.js";
3
+ } from "./chunk-KPT6FDBK.js";
4
+ import "./chunk-LXOL226G.js";
5
+ import "./chunk-MHVECKBC.js";
6
6
  import "./chunk-XI6WGCB3.js";
7
7
  export {
8
8
  RPCHandler
package/dist/hono.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  RPCHandler
3
- } from "./chunk-L4ESXQX7.js";
4
- import "./chunk-NXEANHUK.js";
5
- import "./chunk-XXBE6CYD.js";
3
+ } from "./chunk-KPT6FDBK.js";
4
+ import "./chunk-LXOL226G.js";
5
+ import "./chunk-MHVECKBC.js";
6
6
  import "./chunk-XI6WGCB3.js";
7
7
 
8
8
  // src/adapters/hono/middleware.ts
package/dist/index.js CHANGED
@@ -21,7 +21,7 @@ import {
21
21
  middlewareOutputFn,
22
22
  setRouterContract,
23
23
  unlazy
24
- } from "./chunk-XXBE6CYD.js";
24
+ } from "./chunk-MHVECKBC.js";
25
25
 
26
26
  // src/builder.ts
27
27
  import { mergeErrorMap as mergeErrorMap2, mergeMeta as mergeMeta2, mergePrefix, mergeRoute as mergeRoute2, mergeTags } from "@orpc/contract";
@@ -361,7 +361,8 @@ function createRouterClient(router, ...rest) {
361
361
  }
362
362
 
363
363
  // src/index.ts
364
- import { eventIterator, isDefinedError, ORPCError, safe, type, ValidationError } from "@orpc/contract";
364
+ import { isDefinedError, ORPCError, safe } from "@orpc/client";
365
+ import { eventIterator, type, ValidationError } from "@orpc/contract";
365
366
  import { getEventMeta, withEventMeta } from "@orpc/server-standard";
366
367
  import { onError, onFinish, onStart, onSuccess } from "@orpc/shared";
367
368
  export {
package/dist/next.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  RPCHandler
3
- } from "./chunk-L4ESXQX7.js";
4
- import "./chunk-NXEANHUK.js";
5
- import "./chunk-XXBE6CYD.js";
3
+ } from "./chunk-KPT6FDBK.js";
4
+ import "./chunk-LXOL226G.js";
5
+ import "./chunk-MHVECKBC.js";
6
6
  import "./chunk-XI6WGCB3.js";
7
7
 
8
8
  // src/adapters/next/serve.ts
package/dist/node.js CHANGED
@@ -2,8 +2,8 @@ import {
2
2
  RPCCodec,
3
3
  RPCMatcher,
4
4
  StandardHandler
5
- } from "./chunk-NXEANHUK.js";
6
- import "./chunk-XXBE6CYD.js";
5
+ } from "./chunk-LXOL226G.js";
6
+ import "./chunk-MHVECKBC.js";
7
7
  import "./chunk-XI6WGCB3.js";
8
8
 
9
9
  // src/adapters/node/rpc-handler.ts
@@ -2,6 +2,5 @@ export * from './handler';
2
2
  export * from './rpc-codec';
3
3
  export * from './rpc-handler';
4
4
  export * from './rpc-matcher';
5
- export * from './rpc-serializer';
6
5
  export * from './types';
7
6
  //# sourceMappingURL=index.d.ts.map
@@ -1,8 +1,8 @@
1
- import type { ORPCError } from '@orpc/contract';
1
+ import type { ORPCError } from '@orpc/client';
2
2
  import type { StandardRequest, StandardResponse } from '@orpc/server-standard';
3
3
  import type { AnyProcedure } from '../../procedure';
4
4
  import type { StandardCodec, StandardParams } from './types';
5
- import { RPCSerializer } from './rpc-serializer';
5
+ import { RPCSerializer } from '@orpc/client/rpc';
6
6
  export interface StandardCodecOptions {
7
7
  serializer?: RPCSerializer;
8
8
  }
@@ -1,4 +1,5 @@
1
- import type { HTTPPath, ORPCError } from '@orpc/contract';
1
+ import type { ORPCError } from '@orpc/client';
2
+ import type { HTTPPath } from '@orpc/contract';
2
3
  import type { StandardRequest, StandardResponse } from '@orpc/server-standard';
3
4
  import type { AnyProcedure } from '../../procedure';
4
5
  import type { AnyRouter } from '../../router';
@@ -1,6 +1,7 @@
1
- import type { ContractRouter, ErrorMap, HTTPPath, MergedErrorMap, Meta, ORPCErrorConstructorMap, Route, Schema, SchemaInput, SchemaOutput } from '@orpc/contract';
1
+ import type { ContractRouter, ErrorMap, HTTPPath, MergedErrorMap, Meta, Route, Schema, SchemaInput, SchemaOutput } from '@orpc/contract';
2
2
  import type { BuilderDef } from './builder';
3
3
  import type { ConflictContextGuard, Context, MergedContext } from './context';
4
+ import type { ORPCErrorConstructorMap } from './error';
4
5
  import type { FlattenLazy } from './lazy-utils';
5
6
  import type { MapInputMiddleware, Middleware } from './middleware';
6
7
  import type { ProcedureHandler } from './procedure';
@@ -1,6 +1,7 @@
1
- import type { ContractProcedureDef, ContractRouter, ErrorMap, HTTPPath, MergedErrorMap, Meta, ORPCErrorConstructorMap, Route, Schema, SchemaInput, SchemaOutput } from '@orpc/contract';
1
+ import type { ContractProcedureDef, ContractRouter, ErrorMap, HTTPPath, MergedErrorMap, Meta, Route, Schema, SchemaInput, SchemaOutput } from '@orpc/contract';
2
2
  import type { BuilderWithMiddlewares, ProcedureBuilder, ProcedureBuilderWithInput, ProcedureBuilderWithOutput, RouterBuilder } from './builder-variants';
3
3
  import type { ConflictContextGuard, Context, MergedContext } from './context';
4
+ import type { ORPCErrorConstructorMap } from './error';
4
5
  import type { FlattenLazy } from './lazy-utils';
5
6
  import type { AnyMiddleware, MapInputMiddleware, Middleware } from './middleware';
6
7
  import type { DecoratedMiddleware } from './middleware-decorated';
@@ -0,0 +1,12 @@
1
+ import type { ORPCErrorCode, ORPCErrorOptions } from '@orpc/client';
2
+ import type { ErrorMap, ErrorMapItem, SchemaInput } from '@orpc/contract';
3
+ import type { MaybeOptionalOptions } from '@orpc/shared';
4
+ import { ORPCError } from '@orpc/client';
5
+ export type ORPCErrorConstructorMapItemOptions<TData> = Omit<ORPCErrorOptions<TData>, 'defined' | 'status'>;
6
+ export type ORPCErrorConstructorMapItem<TCode extends ORPCErrorCode, TInData> = (...rest: MaybeOptionalOptions<ORPCErrorConstructorMapItemOptions<TInData>>) => ORPCError<TCode, TInData>;
7
+ export type ORPCErrorConstructorMap<T extends ErrorMap> = {
8
+ [K in keyof T]: K extends ORPCErrorCode ? T[K] extends ErrorMapItem<infer UInputSchema> ? ORPCErrorConstructorMapItem<K, SchemaInput<UInputSchema>> : never : never;
9
+ };
10
+ export declare function createORPCErrorConstructorMap<T extends ErrorMap>(errors: T): ORPCErrorConstructorMap<T>;
11
+ export declare function validateORPCError(map: ErrorMap, error: ORPCError<any, any>): Promise<ORPCError<string, unknown>>;
12
+ //# sourceMappingURL=error.d.ts.map
@@ -1,7 +1,9 @@
1
- import type { ClientContext, ClientRest, ErrorMap, Meta, ORPCErrorConstructorMap, Schema, SchemaInput, SchemaOutput } from '@orpc/contract';
1
+ import type { ClientContext, ClientRest } from '@orpc/client';
2
+ import type { ErrorMap, Meta, Schema, SchemaInput, SchemaOutput } from '@orpc/contract';
2
3
  import type { MaybeOptionalOptions } from '@orpc/shared';
3
4
  import type { BuilderDef } from './builder';
4
5
  import type { ConflictContextGuard, Context, MergedContext } from './context';
6
+ import type { ORPCErrorConstructorMap } from './error';
5
7
  import type { MapInputMiddleware, Middleware } from './middleware';
6
8
  import type { Procedure, ProcedureHandler } from './procedure';
7
9
  import type { CreateProcedureClientOptions, ProcedureClient } from './procedure-client';
@@ -1,5 +1,6 @@
1
- import type { AnyContractRouter, ContractProcedure, ContractRouterToErrorMap, ContractRouterToMeta, ORPCErrorConstructorMap } from '@orpc/contract';
1
+ import type { AnyContractRouter, ContractProcedure, ContractRouterToErrorMap, ContractRouterToMeta } from '@orpc/contract';
2
2
  import type { ConflictContextGuard, Context, MergedContext } from './context';
3
+ import type { ORPCErrorConstructorMap } from './error';
3
4
  import type { ProcedureImplementer } from './implementer-procedure';
4
5
  import type { FlattenLazy } from './lazy-utils';
5
6
  import type { Middleware } from './middleware';
@@ -1,5 +1,6 @@
1
- import type { AnyContractRouter, ContractProcedure, ContractRouterToErrorMap, ContractRouterToMeta, ORPCErrorConstructorMap } from '@orpc/contract';
1
+ import type { AnyContractRouter, ContractProcedure, ContractRouterToErrorMap, ContractRouterToMeta } from '@orpc/contract';
2
2
  import type { ConflictContextGuard, Context, MergedContext } from './context';
3
+ import type { ORPCErrorConstructorMap } from './error';
3
4
  import type { ProcedureImplementer } from './implementer-procedure';
4
5
  import type { ImplementerInternalWithMiddlewares } from './implementer-variants';
5
6
  import type { AnyMiddleware, Middleware } from './middleware';
@@ -18,7 +18,8 @@ export * from './router';
18
18
  export * from './router-accessible-lazy';
19
19
  export * from './router-client';
20
20
  export * from './utils';
21
- export { eventIterator, isDefinedError, ORPCError, safe, type, ValidationError } from '@orpc/contract';
21
+ export { isDefinedError, ORPCError, safe } from '@orpc/client';
22
+ export { eventIterator, type, ValidationError } from '@orpc/contract';
22
23
  export { getEventMeta, withEventMeta } from '@orpc/server-standard';
23
24
  export { onError, onFinish, onStart, onSuccess } from '@orpc/shared';
24
25
  //# sourceMappingURL=index.d.ts.map
@@ -1,5 +1,6 @@
1
- import type { Meta, ORPCErrorConstructorMap } from '@orpc/contract';
1
+ import type { Meta } from '@orpc/contract';
2
2
  import type { Context, MergedContext } from './context';
3
+ import type { ORPCErrorConstructorMap } from './error';
3
4
  import type { MapInputMiddleware, Middleware } from './middleware';
4
5
  export interface DecoratedMiddleware<TInContext extends Context, TOutContext extends Context, TInput, TOutput, TErrorConstructorMap extends ORPCErrorConstructorMap<any>, TMeta extends Meta> extends Middleware<TInContext, TOutContext, TInput, TOutput, TErrorConstructorMap, TMeta> {
5
6
  concat<UOutContext extends Context, UInput>(middleware: Middleware<TInContext & TOutContext, UOutContext, UInput & TInput, TOutput, TErrorConstructorMap, TMeta>): DecoratedMiddleware<TInContext, MergedContext<TOutContext, UOutContext>, UInput & TInput, TOutput, TErrorConstructorMap, TMeta>;
@@ -1,6 +1,7 @@
1
- import type { ErrorMap, Meta, ORPCErrorConstructorMap, Schema } from '@orpc/contract';
1
+ import type { ErrorMap, Meta, Schema } from '@orpc/contract';
2
2
  import type { MaybeOptionalOptions, Promisable } from '@orpc/shared';
3
3
  import type { Context } from './context';
4
+ import type { ORPCErrorConstructorMap } from './error';
4
5
  import type { Procedure } from './procedure';
5
6
  export type MiddlewareResult<TOutContext extends Context, TOutput> = Promisable<{
6
7
  output: TOutput;
@@ -1,8 +1,10 @@
1
- import type { Client, ClientContext, ErrorFromErrorMap, ErrorMap, Meta, ORPCErrorConstructorMap, Schema, SchemaInput, SchemaOutput } from '@orpc/contract';
1
+ import type { Client, ClientContext } from '@orpc/client';
2
2
  import type { Interceptor, MaybeOptionalOptions, Value } from '@orpc/shared';
3
3
  import type { Context } from './context';
4
4
  import type { Lazyable } from './lazy';
5
5
  import type { Procedure } from './procedure';
6
+ import { type ErrorFromErrorMap, type ErrorMap, type Meta, type Schema, type SchemaInput, type SchemaOutput } from '@orpc/contract';
7
+ import { type ORPCErrorConstructorMap } from './error';
6
8
  export type ProcedureClient<TClientContext extends ClientContext, TInputSchema extends Schema, TOutputSchema extends Schema, THandlerOutput extends SchemaInput<TOutputSchema>, TErrorMap extends ErrorMap> = Client<TClientContext, SchemaInput<TInputSchema>, SchemaOutput<TOutputSchema, THandlerOutput>, ErrorFromErrorMap<TErrorMap>>;
7
9
  export interface ProcedureClientInterceptorOptions<TInitialContext extends Context, TInputSchema extends Schema, TErrorMap extends ErrorMap, TMeta extends Meta> {
8
10
  context: TInitialContext;
@@ -1,6 +1,8 @@
1
- import type { ClientContext, ClientRest, ErrorMap, MergedErrorMap, Meta, ORPCErrorConstructorMap, Route, Schema, SchemaInput, SchemaOutput } from '@orpc/contract';
1
+ import type { ClientContext, ClientRest } from '@orpc/client';
2
+ import type { ErrorMap, MergedErrorMap, Meta, Route, Schema, SchemaInput, SchemaOutput } from '@orpc/contract';
2
3
  import type { MaybeOptionalOptions } from '@orpc/shared';
3
4
  import type { ConflictContextGuard, Context, MergedContext } from './context';
5
+ import type { ORPCErrorConstructorMap } from './error';
4
6
  import type { MapInputMiddleware, Middleware } from './middleware';
5
7
  import type { CreateProcedureClientOptions, ProcedureClient } from './procedure-client';
6
8
  import { Procedure } from './procedure';
@@ -1,4 +1,5 @@
1
- import type { ClientPromiseResult, ErrorFromErrorMap, ErrorMap, Meta, Schema, SchemaInput, SchemaOutput } from '@orpc/contract';
1
+ import type { ClientPromiseResult } from '@orpc/client';
2
+ import type { ErrorFromErrorMap, ErrorMap, Meta, Schema, SchemaInput, SchemaOutput } from '@orpc/contract';
2
3
  import type { MaybeOptionalOptions } from '@orpc/shared';
3
4
  import type { Context } from './context';
4
5
  import type { Lazyable } from './lazy';
@@ -1,6 +1,7 @@
1
- import type { ContractProcedureDef, ErrorMap, Meta, ORPCErrorConstructorMap, Schema, SchemaInput, SchemaOutput } from '@orpc/contract';
1
+ import type { ContractProcedureDef, ErrorMap, Meta, Schema, SchemaInput, SchemaOutput } from '@orpc/contract';
2
2
  import type { Promisable } from '@orpc/shared';
3
3
  import type { Context } from './context';
4
+ import type { ORPCErrorConstructorMap } from './error';
4
5
  import type { AnyMiddleware } from './middleware';
5
6
  export interface ProcedureHandlerOptions<TCurrentContext extends Context, TInput, TErrorConstructorMap extends ORPCErrorConstructorMap<any>, TMeta extends Meta> {
6
7
  context: TCurrentContext;
@@ -1,10 +1,11 @@
1
- import type { ClientContext, ErrorMap, Meta } from '@orpc/contract';
1
+ import type { ClientContext } from '@orpc/client';
2
+ import type { ErrorMap, Meta } from '@orpc/contract';
2
3
  import type { MaybeOptionalOptions } from '@orpc/shared';
3
4
  import type { Lazy } from './lazy';
4
5
  import type { Procedure } from './procedure';
5
6
  import type { CreateProcedureClientOptions, ProcedureClient } from './procedure-client';
6
7
  import type { AnyRouter, InferRouterInitialContext } from './router';
7
- export type RouterClient<TRouter extends AnyRouter, TClientContext extends ClientContext> = TRouter extends Lazy<infer U extends AnyRouter> ? RouterClient<U, TClientContext> : TRouter extends Procedure<any, any, infer UInputSchema, infer UOutputSchema, infer UFuncOutput, infer UErrorMap, any> ? ProcedureClient<TClientContext, UInputSchema, UOutputSchema, UFuncOutput, UErrorMap> : {
8
+ export type RouterClient<TRouter extends AnyRouter, TClientContext extends ClientContext = Record<never, never>> = TRouter extends Lazy<infer U extends AnyRouter> ? RouterClient<U, TClientContext> : TRouter extends Procedure<any, any, infer UInputSchema, infer UOutputSchema, infer UFuncOutput, infer UErrorMap, any> ? ProcedureClient<TClientContext, UInputSchema, UOutputSchema, UFuncOutput, UErrorMap> : {
8
9
  [K in keyof TRouter]: TRouter[K] extends AnyRouter ? RouterClient<TRouter[K], TClientContext> : never;
9
10
  };
10
11
  export declare function createRouterClient<TRouter extends AnyRouter, TClientContext extends ClientContext>(router: TRouter | Lazy<undefined>, ...rest: MaybeOptionalOptions<CreateProcedureClientOptions<InferRouterInitialContext<TRouter>, undefined, undefined, unknown, ErrorMap, Meta, TClientContext>>): RouterClient<TRouter, TClientContext>;
package/dist/standard.js CHANGED
@@ -1,17 +1,13 @@
1
1
  import {
2
2
  RPCCodec,
3
3
  RPCMatcher,
4
- RPCSerializer,
5
- StandardHandler,
6
- serializeRPCJson
7
- } from "./chunk-NXEANHUK.js";
8
- import "./chunk-XXBE6CYD.js";
4
+ StandardHandler
5
+ } from "./chunk-LXOL226G.js";
6
+ import "./chunk-MHVECKBC.js";
9
7
  import "./chunk-XI6WGCB3.js";
10
8
  export {
11
9
  RPCCodec,
12
10
  RPCMatcher,
13
- RPCSerializer,
14
- StandardHandler,
15
- serializeRPCJson
11
+ StandardHandler
16
12
  };
17
13
  //# sourceMappingURL=standard.js.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@orpc/server",
3
3
  "type": "module",
4
- "version": "0.40.0",
4
+ "version": "0.41.0",
5
5
  "license": "MIT",
6
6
  "homepage": "https://orpc.unnoq.com",
7
7
  "repository": {
@@ -66,8 +66,9 @@
66
66
  "@orpc/server-standard": "^0.4.0",
67
67
  "@orpc/server-standard-fetch": "^0.4.0",
68
68
  "@orpc/server-standard-node": "^0.4.0",
69
- "@orpc/contract": "0.40.0",
70
- "@orpc/shared": "0.40.0"
69
+ "@orpc/client": "0.41.0",
70
+ "@orpc/shared": "0.41.0",
71
+ "@orpc/contract": "0.41.0"
71
72
  },
72
73
  "devDependencies": {
73
74
  "light-my-request": "^6.5.1"
@@ -1,22 +0,0 @@
1
- import type { Segment } from '@orpc/shared';
2
- export type RPCSerializedJsonMeta = ['bigint' | 'date' | 'nan' | 'undefined' | 'set' | 'map' | 'regexp' | 'url', Segment[]][];
3
- export type RPCSerialized = {
4
- json: unknown;
5
- meta: RPCSerializedJsonMeta;
6
- } | FormData | AsyncIteratorObject<{
7
- json: unknown;
8
- meta: RPCSerializedJsonMeta;
9
- }, {
10
- json: unknown;
11
- meta: RPCSerializedJsonMeta;
12
- }, void>;
13
- export type RPCSerializedFormDataMaps = Segment[][];
14
- export declare class RPCSerializer {
15
- serialize(data: unknown): RPCSerialized;
16
- deserialize(serialized: RPCSerialized): unknown;
17
- }
18
- export declare function serializeRPCJson(value: unknown, segments?: Segment[], meta?: RPCSerializedJsonMeta): {
19
- json: unknown;
20
- meta: RPCSerializedJsonMeta;
21
- };
22
- //# sourceMappingURL=rpc-serializer.d.ts.map