@orpc/contract 0.0.0-next.371be67 → 0.0.0-next.37971b1

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/index.d.mts CHANGED
@@ -1,61 +1,122 @@
1
- import { ORPCErrorCode, ORPCError, ClientContext, Client } from '@orpc/client';
2
- export { ORPCError } from '@orpc/client';
1
+ import { ORPCErrorCode, ORPCError, HTTPMethod, HTTPPath, ClientContext, Client } from '@orpc/client';
2
+ export { HTTPMethod, HTTPPath, ORPCError } from '@orpc/client';
3
+ import { Promisable, IsEqual, ThrowableError } from '@orpc/shared';
4
+ export { Registry, ThrowableError } from '@orpc/shared';
3
5
  import { StandardSchemaV1 } from '@standard-schema/spec';
4
- import { Promisable, IsEqual } from '@orpc/shared';
6
+ import { OpenAPIV3_1 } from 'openapi-types';
7
+ export { OpenAPIV3_1 as OpenAPI } from 'openapi-types';
5
8
 
6
- type Schema = StandardSchemaV1 | undefined;
7
- type SchemaInput<TSchema extends Schema, TFallback = unknown> = TSchema extends undefined ? TFallback : TSchema extends StandardSchemaV1 ? StandardSchemaV1.InferInput<TSchema> : TFallback;
8
- type SchemaOutput<TSchema extends Schema, TFallback = unknown> = TSchema extends undefined ? TFallback : TSchema extends StandardSchemaV1 ? StandardSchemaV1.InferOutput<TSchema> : TFallback;
9
+ type Schema<TInput, TOutput> = StandardSchemaV1<TInput, TOutput>;
10
+ type AnySchema = Schema<any, any>;
11
+ type SchemaIssue = StandardSchemaV1.Issue;
12
+ type InferSchemaInput<T extends AnySchema> = T extends StandardSchemaV1<infer UInput, any> ? UInput : never;
13
+ type InferSchemaOutput<T extends AnySchema> = T extends StandardSchemaV1<any, infer UOutput> ? UOutput : never;
9
14
  type TypeRest<TInput, TOutput> = [map: (input: TInput) => Promisable<TOutput>] | (IsEqual<TInput, TOutput> extends true ? [] : never);
10
- declare function type<TInput, TOutput = TInput>(...[map]: TypeRest<TInput, TOutput>): StandardSchemaV1<TInput, TOutput>;
15
+ /**
16
+ * The schema for things can be trust without validation.
17
+ * If the TInput and TOutput are different, you need pass a map function.
18
+ *
19
+ * @see {@link https://orpc.unnoq.com/docs/procedure#type-utility Type Utility Docs}
20
+ */
21
+ declare function type<TInput, TOutput = TInput>(...[map]: TypeRest<TInput, TOutput>): Schema<TInput, TOutput>;
11
22
 
12
23
  interface ValidationErrorOptions extends ErrorOptions {
13
24
  message: string;
14
- issues: readonly StandardSchemaV1.Issue[];
25
+ issues: readonly SchemaIssue[];
15
26
  }
27
+ /**
28
+ * This errors usually used for ORPCError.cause when the error is a validation error.
29
+ *
30
+ * @see {@link https://orpc.unnoq.com/docs/advanced/validation-errors Validation Errors Docs}
31
+ */
16
32
  declare class ValidationError extends Error {
17
- readonly issues: readonly StandardSchemaV1.Issue[];
33
+ readonly issues: readonly SchemaIssue[];
18
34
  constructor(options: ValidationErrorOptions);
19
35
  }
20
- interface ErrorMapItem<TDataSchema extends Schema> {
36
+ interface ErrorMapItem<TDataSchema extends AnySchema> {
21
37
  status?: number;
22
38
  message?: string;
23
- description?: string;
24
39
  data?: TDataSchema;
25
40
  }
26
41
  type ErrorMap = {
27
- [key in ORPCErrorCode]?: ErrorMapItem<Schema>;
42
+ [key in ORPCErrorCode]?: ErrorMapItem<AnySchema>;
28
43
  };
29
44
  type MergedErrorMap<T1 extends ErrorMap, T2 extends ErrorMap> = Omit<T1, keyof T2> & T2;
30
45
  declare function mergeErrorMap<T1 extends ErrorMap, T2 extends ErrorMap>(errorMap1: T1, errorMap2: T2): MergedErrorMap<T1, T2>;
31
46
  type ORPCErrorFromErrorMap<TErrorMap extends ErrorMap> = {
32
- [K in keyof TErrorMap]: K extends string ? TErrorMap[K] extends ErrorMapItem<infer TDataSchema> ? ORPCError<K, SchemaOutput<TDataSchema>> : never : never;
47
+ [K in keyof TErrorMap]: K extends string ? TErrorMap[K] extends ErrorMapItem<infer TDataSchema extends Schema<unknown, unknown>> ? ORPCError<K, InferSchemaOutput<TDataSchema>> : never : never;
33
48
  }[keyof TErrorMap];
34
- type ErrorFromErrorMap<TErrorMap extends ErrorMap> = Error | ORPCErrorFromErrorMap<TErrorMap>;
49
+ type ErrorFromErrorMap<TErrorMap extends ErrorMap> = ORPCErrorFromErrorMap<TErrorMap> | ThrowableError;
35
50
 
36
51
  type Meta = Record<string, any>;
37
52
  declare function mergeMeta<T extends Meta>(meta1: T, meta2: T): T;
38
53
 
39
- type HTTPPath = `/${string}`;
40
- type HTTPMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
41
54
  type InputStructure = 'compact' | 'detailed';
42
55
  type OutputStructure = 'compact' | 'detailed';
43
56
  interface Route {
57
+ /**
58
+ * The HTTP method of the procedure.
59
+ * This option is typically relevant when integrating with OpenAPI.
60
+ *
61
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
62
+ */
44
63
  method?: HTTPMethod;
64
+ /**
65
+ * The HTTP path of the procedure.
66
+ * This option is typically relevant when integrating with OpenAPI.
67
+ *
68
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
69
+ */
45
70
  path?: HTTPPath;
71
+ /**
72
+ * The operation ID of the endpoint.
73
+ * This option is typically relevant when integrating with OpenAPI.
74
+ *
75
+ * @default Concatenation of router segments
76
+ */
77
+ operationId?: string;
78
+ /**
79
+ * The summary of the procedure.
80
+ * This option is typically relevant when integrating with OpenAPI.
81
+ *
82
+ * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
83
+ */
46
84
  summary?: string;
85
+ /**
86
+ * The description of the procedure.
87
+ * This option is typically relevant when integrating with OpenAPI.
88
+ *
89
+ * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
90
+ */
47
91
  description?: string;
92
+ /**
93
+ * Marks the procedure as deprecated.
94
+ * This option is typically relevant when integrating with OpenAPI.
95
+ *
96
+ * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
97
+ */
48
98
  deprecated?: boolean;
99
+ /**
100
+ * The tags of the procedure.
101
+ * This option is typically relevant when integrating with OpenAPI.
102
+ *
103
+ * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
104
+ */
49
105
  tags?: readonly string[];
50
106
  /**
51
107
  * The status code of the response when the procedure is successful.
108
+ * The status code must be in the 200-399 range.
109
+ * This option is typically relevant when integrating with OpenAPI.
52
110
  *
111
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
53
112
  * @default 200
54
113
  */
55
114
  successStatus?: number;
56
115
  /**
57
116
  * The description of the response when the procedure is successful.
117
+ * This option is typically relevant when integrating with OpenAPI.
58
118
  *
119
+ * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
59
120
  * @default 'OK'
60
121
  */
61
122
  successDescription?: string;
@@ -78,6 +139,7 @@ interface Route {
78
139
  * }
79
140
  * ```
80
141
  *
142
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
81
143
  * @default 'compact'
82
144
  */
83
145
  inputStructure?: InputStructure;
@@ -85,129 +147,365 @@ interface Route {
85
147
  * Determines how the response should be structured based on the output.
86
148
  *
87
149
  * @option 'compact'
88
- * Includes only the body data, encoded directly in the response.
150
+ * The output data is directly returned as the response body.
89
151
  *
90
152
  * @option 'detailed'
91
- * Separates the output into `headers` and `body` fields.
92
- * - `headers`: Custom headers to merge with the response headers.
93
- * - `body`: The response data.
153
+ * Return an object with optional properties:
154
+ * - `status`: The response status (must be in 200-399 range) if not set fallback to `successStatus`.
155
+ * - `headers`: Custom headers to merge with the response headers (`Record<string, string | string[] | undefined>`)
156
+ * - `body`: The response body.
94
157
  *
95
158
  * Example:
96
159
  * ```ts
97
160
  * const output = {
161
+ * status: 201,
98
162
  * headers: { 'x-custom-header': 'value' },
99
163
  * body: { message: 'Hello, world!' },
100
164
  * };
101
165
  * ```
102
166
  *
167
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
103
168
  * @default 'compact'
104
169
  */
105
170
  outputStructure?: OutputStructure;
171
+ /**
172
+ * Override entire auto-generated OpenAPI Operation Object Specification.
173
+ *
174
+ * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata Operation Metadata Docs}
175
+ */
176
+ spec?: OpenAPIV3_1.OperationObject | ((current: OpenAPIV3_1.OperationObject) => OpenAPIV3_1.OperationObject);
106
177
  }
107
178
  declare function mergeRoute(a: Route, b: Route): Route;
108
179
  declare function prefixRoute(route: Route, prefix: HTTPPath): Route;
109
180
  declare function unshiftTagRoute(route: Route, tags: readonly string[]): Route;
110
181
  declare function mergePrefix(a: HTTPPath | undefined, b: HTTPPath): HTTPPath;
111
182
  declare function mergeTags(a: readonly string[] | undefined, b: readonly string[]): readonly string[];
112
- interface AdaptRouteOptions {
183
+ interface EnhanceRouteOptions {
113
184
  prefix?: HTTPPath;
114
185
  tags?: readonly string[];
115
186
  }
116
- declare function adaptRoute(route: Route, options: AdaptRouteOptions): Route;
187
+ declare function enhanceRoute(route: Route, options: EnhanceRouteOptions): Route;
117
188
 
118
- interface ContractProcedureDef<TInputSchema extends Schema, TOutputSchema extends Schema, TErrorMap extends ErrorMap, TMeta extends Meta> {
189
+ interface ContractProcedureDef<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> {
119
190
  meta: TMeta;
120
191
  route: Route;
121
- inputSchema: TInputSchema;
122
- outputSchema: TOutputSchema;
192
+ inputSchema?: TInputSchema;
193
+ outputSchema?: TOutputSchema;
123
194
  errorMap: TErrorMap;
124
195
  }
125
- declare class ContractProcedure<TInputSchema extends Schema, TOutputSchema extends Schema, TErrorMap extends ErrorMap, TMeta extends Meta> {
196
+ /**
197
+ * This class represents a contract procedure.
198
+ *
199
+ * @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#procedure-contract Contract Procedure Docs}
200
+ */
201
+ declare class ContractProcedure<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> {
202
+ /**
203
+ * This property holds the defined options for the contract procedure.
204
+ */
126
205
  '~orpc': ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
127
206
  constructor(def: ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>);
128
207
  }
129
208
  type AnyContractProcedure = ContractProcedure<any, any, any, any>;
130
209
  declare function isContractProcedure(item: unknown): item is AnyContractProcedure;
131
210
 
211
+ /**
212
+ * Represents a contract router, which defines a hierarchical structure of contract procedures.
213
+ *
214
+ * @info A contract procedure is a contract router too.
215
+ * @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#contract-router Contract Router Docs}
216
+ */
132
217
  type ContractRouter<TMeta extends Meta> = ContractProcedure<any, any, any, TMeta> | {
133
218
  [k: string]: ContractRouter<TMeta>;
134
219
  };
135
220
  type AnyContractRouter = ContractRouter<any>;
136
- type AdaptedContractRouter<TContract extends AnyContractRouter, TErrorMap extends ErrorMap> = {
137
- [K in keyof TContract]: TContract[K] extends ContractProcedure<infer UInputSchema, infer UOutputSchema, infer UErrors, infer UMeta> ? ContractProcedure<UInputSchema, UOutputSchema, MergedErrorMap<TErrorMap, UErrors>, UMeta> : TContract[K] extends AnyContractRouter ? AdaptedContractRouter<TContract[K], TErrorMap> : never;
138
- };
139
- interface AdaptContractRouterOptions<TErrorMap extends ErrorMap> {
140
- errorMap: TErrorMap;
141
- prefix?: HTTPPath;
142
- tags?: readonly string[];
143
- }
144
- declare function adaptContractRouter<TRouter extends ContractRouter<any>, TErrorMap extends ErrorMap>(contract: TRouter, options: AdaptContractRouterOptions<TErrorMap>): AdaptedContractRouter<TRouter, TErrorMap>;
145
- type InferContractRouterInputs<T extends AnyContractRouter> = T extends ContractProcedure<infer UInputSchema, any, any, any> ? SchemaInput<UInputSchema> : {
221
+ /**
222
+ * Infer all inputs of the contract router.
223
+ *
224
+ * @info A contract procedure is a contract router too.
225
+ * @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#utilities Contract Utilities Docs}
226
+ */
227
+ type InferContractRouterInputs<T extends AnyContractRouter> = T extends ContractProcedure<infer UInputSchema, any, any, any> ? InferSchemaInput<UInputSchema> : {
146
228
  [K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterInputs<T[K]> : never;
147
229
  };
148
- type InferContractRouterOutputs<T extends AnyContractRouter> = T extends ContractProcedure<any, infer UOutputSchema, any, any> ? SchemaOutput<UOutputSchema> : {
230
+ /**
231
+ * Infer all outputs of the contract router.
232
+ *
233
+ * @info A contract procedure is a contract router too.
234
+ * @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#utilities Contract Utilities Docs}
235
+ */
236
+ type InferContractRouterOutputs<T extends AnyContractRouter> = T extends ContractProcedure<any, infer UOutputSchema, any, any> ? InferSchemaOutput<UOutputSchema> : {
149
237
  [K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterOutputs<T[K]> : never;
150
238
  };
151
- type ContractRouterToErrorMap<T extends AnyContractRouter> = T extends ContractProcedure<any, any, infer UErrorMap, any> ? UErrorMap : {
152
- [K in keyof T]: T[K] extends AnyContractRouter ? ContractRouterToErrorMap<T[K]> : never;
239
+ /**
240
+ * Infer all errors of the contract router.
241
+ *
242
+ * @info A contract procedure is a contract router too.
243
+ * @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#utilities Contract Utilities Docs}
244
+ */
245
+ type InferContractRouterErrorMap<T extends AnyContractRouter> = T extends ContractProcedure<any, any, infer UErrorMap, any> ? UErrorMap : {
246
+ [K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterErrorMap<T[K]> : never;
153
247
  }[keyof T];
154
- type ContractRouterToMeta<T extends AnyContractRouter> = T extends ContractRouter<infer UMeta> ? UMeta : never;
248
+ type InferContractRouterMeta<T extends AnyContractRouter> = T extends ContractRouter<infer UMeta> ? UMeta : never;
249
+
250
+ declare function getContractRouter(router: AnyContractRouter, path: readonly string[]): AnyContractRouter | undefined;
251
+ type EnhancedContractRouter<T extends AnyContractRouter, TErrorMap extends ErrorMap> = T extends ContractProcedure<infer UInputSchema, infer UOutputSchema, infer UErrors, infer UMeta> ? ContractProcedure<UInputSchema, UOutputSchema, MergedErrorMap<TErrorMap, UErrors>, UMeta> : {
252
+ [K in keyof T]: T[K] extends AnyContractRouter ? EnhancedContractRouter<T[K], TErrorMap> : never;
253
+ };
254
+ interface EnhanceContractRouterOptions<TErrorMap extends ErrorMap> extends EnhanceRouteOptions {
255
+ errorMap: TErrorMap;
256
+ }
257
+ declare function enhanceContractRouter<T extends AnyContractRouter, TErrorMap extends ErrorMap>(router: T, options: EnhanceContractRouterOptions<TErrorMap>): EnhancedContractRouter<T, TErrorMap>;
258
+ /**
259
+ * Minify a contract router into a smaller object.
260
+ *
261
+ * You should export the result to a JSON file. On the client side, you can import this JSON file and use it as a contract router.
262
+ * This reduces the size of the contract and helps prevent leaking internal details of the router to the client.
263
+ *
264
+ * @see {@link https://orpc.unnoq.com/docs/contract-first/router-to-contract#minify-export-the-contract-router-for-the-client Router to Contract Docs}
265
+ */
266
+ declare function minifyContractRouter(router: AnyContractRouter): AnyContractRouter;
155
267
 
156
- interface ContractProcedureBuilder<TInputSchema extends Schema, TOutputSchema extends Schema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
268
+ interface ContractProcedureBuilder<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
269
+ /**
270
+ * Adds type-safe custom errors to the contract.
271
+ * The provided errors are spared-merged with any existing errors in the contract.
272
+ *
273
+ * @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
274
+ */
157
275
  errors<U extends ErrorMap>(errors: U): ContractProcedureBuilder<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
276
+ /**
277
+ * Sets or updates the metadata for the contract.
278
+ * The provided metadata is spared-merged with any existing metadata in the contract.
279
+ *
280
+ * @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
281
+ */
158
282
  meta(meta: TMeta): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
283
+ /**
284
+ * Sets or updates the route definition for the contract.
285
+ * The provided route is spared-merged with any existing route in the contract.
286
+ * This option is typically relevant when integrating with OpenAPI.
287
+ *
288
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
289
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
290
+ */
159
291
  route(route: Route): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
160
- input<U extends Schema>(schema: U): ContractProcedureBuilderWithInput<U, TOutputSchema, TErrorMap, TMeta>;
161
- output<U extends Schema>(schema: U): ContractProcedureBuilderWithOutput<TInputSchema, U, TErrorMap, TMeta>;
292
+ /**
293
+ * Defines the input validation schema for the contract.
294
+ *
295
+ * @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Input Validation Docs}
296
+ */
297
+ input<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInput<U, TOutputSchema, TErrorMap, TMeta>;
298
+ /**
299
+ * Defines the output validation schema for the contract.
300
+ *
301
+ * @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Output Validation Docs}
302
+ */
303
+ output<U extends AnySchema>(schema: U): ContractProcedureBuilderWithOutput<TInputSchema, U, TErrorMap, TMeta>;
162
304
  }
163
- interface ContractProcedureBuilderWithInput<TInputSchema extends Schema, TOutputSchema extends Schema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
305
+ interface ContractProcedureBuilderWithInput<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
306
+ /**
307
+ * Adds type-safe custom errors to the contract.
308
+ * The provided errors are spared-merged with any existing errors in the contract.
309
+ *
310
+ * @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
311
+ */
164
312
  errors<U extends ErrorMap>(errors: U): ContractProcedureBuilderWithInput<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
313
+ /**
314
+ * Sets or updates the metadata for the contract.
315
+ * The provided metadata is spared-merged with any existing metadata in the contract.
316
+ *
317
+ * @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
318
+ */
165
319
  meta(meta: TMeta): ContractProcedureBuilderWithInput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
320
+ /**
321
+ * Sets or updates the route definition for the contract.
322
+ * The provided route is spared-merged with any existing route in the contract.
323
+ * This option is typically relevant when integrating with OpenAPI.
324
+ *
325
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
326
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
327
+ */
166
328
  route(route: Route): ContractProcedureBuilderWithInput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
167
- output<U extends Schema>(schema: U): ContractProcedureBuilderWithInputOutput<TInputSchema, U, TErrorMap, TMeta>;
329
+ /**
330
+ * Defines the output validation schema for the contract.
331
+ *
332
+ * @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Output Validation Docs}
333
+ */
334
+ output<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInputOutput<TInputSchema, U, TErrorMap, TMeta>;
168
335
  }
169
- interface ContractProcedureBuilderWithOutput<TInputSchema extends Schema, TOutputSchema extends Schema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
336
+ interface ContractProcedureBuilderWithOutput<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
337
+ /**
338
+ * Adds type-safe custom errors to the contract.
339
+ * The provided errors are spared-merged with any existing errors in the contract.
340
+ *
341
+ * @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
342
+ */
170
343
  errors<U extends ErrorMap>(errors: U): ContractProcedureBuilderWithOutput<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
344
+ /**
345
+ * Sets or updates the metadata for the contract.
346
+ * The provided metadata is spared-merged with any existing metadata in the contract.
347
+ *
348
+ * @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
349
+ */
171
350
  meta(meta: TMeta): ContractProcedureBuilderWithOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
351
+ /**
352
+ * Sets or updates the route definition for the contract.
353
+ * The provided route is spared-merged with any existing route in the contract.
354
+ * This option is typically relevant when integrating with OpenAPI.
355
+ *
356
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
357
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
358
+ */
172
359
  route(route: Route): ContractProcedureBuilderWithOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
173
- input<U extends Schema>(schema: U): ContractProcedureBuilderWithInputOutput<U, TOutputSchema, TErrorMap, TMeta>;
360
+ /**
361
+ * Defines the input validation schema for the contract.
362
+ *
363
+ * @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Input Validation Docs}
364
+ */
365
+ input<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInputOutput<U, TOutputSchema, TErrorMap, TMeta>;
174
366
  }
175
- interface ContractProcedureBuilderWithInputOutput<TInputSchema extends Schema, TOutputSchema extends Schema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
367
+ interface ContractProcedureBuilderWithInputOutput<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
368
+ /**
369
+ * Adds type-safe custom errors to the contract.
370
+ * The provided errors are spared-merged with any existing errors in the contract.
371
+ *
372
+ * @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
373
+ */
176
374
  errors<U extends ErrorMap>(errors: U): ContractProcedureBuilderWithInputOutput<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
375
+ /**
376
+ * Sets or updates the metadata for the contract.
377
+ * The provided metadata is spared-merged with any existing metadata in the contract.
378
+ *
379
+ * @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
380
+ */
177
381
  meta(meta: TMeta): ContractProcedureBuilderWithInputOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
382
+ /**
383
+ * Sets or updates the route definition for the contract.
384
+ * The provided route is spared-merged with any existing route in the contract.
385
+ * This option is typically relevant when integrating with OpenAPI.
386
+ *
387
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
388
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
389
+ */
178
390
  route(route: Route): ContractProcedureBuilderWithInputOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
179
391
  }
180
392
  interface ContractRouterBuilder<TErrorMap extends ErrorMap, TMeta extends Meta> {
181
- '~orpc': AdaptContractRouterOptions<TErrorMap>;
393
+ /**
394
+ * This property holds the defined options for the contract router.
395
+ */
396
+ '~orpc': EnhanceContractRouterOptions<TErrorMap>;
397
+ /**
398
+ * Adds type-safe custom errors to the contract.
399
+ * The provided errors are spared-merged with any existing errors in the contract.
400
+ *
401
+ * @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
402
+ */
182
403
  'errors'<U extends ErrorMap>(errors: U): ContractRouterBuilder<MergedErrorMap<TErrorMap, U>, TMeta>;
404
+ /**
405
+ * Prefixes all procedures in the contract router.
406
+ * The provided prefix is post-appended to any existing router prefix.
407
+ *
408
+ * @note This option does not affect procedures that do not define a path in their route definition.
409
+ *
410
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing#route-prefixes OpenAPI Route Prefixes Docs}
411
+ */
183
412
  'prefix'(prefix: HTTPPath): ContractRouterBuilder<TErrorMap, TMeta>;
413
+ /**
414
+ * Adds tags to all procedures in the contract router.
415
+ * This helpful when you want to group procedures together in the OpenAPI specification.
416
+ *
417
+ * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
418
+ */
184
419
  'tag'(...tags: string[]): ContractRouterBuilder<TErrorMap, TMeta>;
185
- 'router'<T extends ContractRouter<TMeta>>(router: T): AdaptedContractRouter<T, TErrorMap>;
420
+ /**
421
+ * Applies all of the previously defined options to the specified contract router.
422
+ *
423
+ * @see {@link https://orpc.unnoq.com/docs/router#extending-router Extending Router Docs}
424
+ */
425
+ 'router'<T extends ContractRouter<TMeta>>(router: T): EnhancedContractRouter<T, TErrorMap>;
186
426
  }
187
427
 
188
- interface ContractBuilderDef<TInputSchema extends Schema, TOutputSchema extends Schema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>, AdaptContractRouterOptions<TErrorMap> {
428
+ interface ContractBuilderDef<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>, EnhanceContractRouterOptions<TErrorMap> {
189
429
  }
190
- declare class ContractBuilder<TInputSchema extends Schema, TOutputSchema extends Schema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
430
+ declare class ContractBuilder<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
431
+ /**
432
+ * This property holds the defined options for the contract.
433
+ */
191
434
  '~orpc': ContractBuilderDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
192
435
  constructor(def: ContractBuilderDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>);
193
436
  /**
194
- * Reset initial meta
437
+ * Sets or overrides the initial meta.
438
+ *
439
+ * @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
195
440
  */
196
- $meta<U extends Meta>(initialMeta: U): ContractBuilder<TInputSchema, TOutputSchema, TErrorMap, U>;
441
+ $meta<U extends Meta>(initialMeta: U): ContractBuilder<TInputSchema, TOutputSchema, TErrorMap, U & Record<never, never>>;
197
442
  /**
198
- * Reset initial route
443
+ * Sets or overrides the initial route.
444
+ * This option is typically relevant when integrating with OpenAPI.
445
+ *
446
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
447
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
199
448
  */
200
449
  $route(initialRoute: Route): ContractBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
450
+ /**
451
+ * Adds type-safe custom errors to the contract.
452
+ * The provided errors are spared-merged with any existing errors in the contract.
453
+ *
454
+ * @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
455
+ */
201
456
  errors<U extends ErrorMap>(errors: U): ContractBuilder<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
457
+ /**
458
+ * Sets or updates the metadata for the contract.
459
+ * The provided metadata is spared-merged with any existing metadata in the contract.
460
+ *
461
+ * @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
462
+ */
202
463
  meta(meta: TMeta): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
464
+ /**
465
+ * Sets or updates the route definition for the contract.
466
+ * The provided route is spared-merged with any existing route in the contract.
467
+ * This option is typically relevant when integrating with OpenAPI.
468
+ *
469
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
470
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
471
+ */
203
472
  route(route: Route): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
204
- input<U extends Schema>(schema: U): ContractProcedureBuilderWithInput<U, TOutputSchema, TErrorMap, TMeta>;
205
- output<U extends Schema>(schema: U): ContractProcedureBuilderWithOutput<TInputSchema, U, TErrorMap, TMeta>;
473
+ /**
474
+ * Defines the input validation schema for the contract.
475
+ *
476
+ * @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Input Validation Docs}
477
+ */
478
+ input<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInput<U, TOutputSchema, TErrorMap, TMeta>;
479
+ /**
480
+ * Defines the output validation schema for the contract.
481
+ *
482
+ * @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Output Validation Docs}
483
+ */
484
+ output<U extends AnySchema>(schema: U): ContractProcedureBuilderWithOutput<TInputSchema, U, TErrorMap, TMeta>;
485
+ /**
486
+ * Prefixes all procedures in the contract router.
487
+ * The provided prefix is post-appended to any existing router prefix.
488
+ *
489
+ * @note This option does not affect procedures that do not define a path in their route definition.
490
+ *
491
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing#route-prefixes OpenAPI Route Prefixes Docs}
492
+ */
206
493
  prefix(prefix: HTTPPath): ContractRouterBuilder<TErrorMap, TMeta>;
494
+ /**
495
+ * Adds tags to all procedures in the contract router.
496
+ * This helpful when you want to group procedures together in the OpenAPI specification.
497
+ *
498
+ * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
499
+ */
207
500
  tag(...tags: string[]): ContractRouterBuilder<TErrorMap, TMeta>;
208
- router<T extends ContractRouter<TMeta>>(router: T): AdaptedContractRouter<T, TErrorMap>;
501
+ /**
502
+ * Applies all of the previously defined options to the specified contract router.
503
+ *
504
+ * @see {@link https://orpc.unnoq.com/docs/router#extending-router Extending Router Docs}
505
+ */
506
+ router<T extends ContractRouter<TMeta>>(router: T): EnhancedContractRouter<T, TErrorMap>;
209
507
  }
210
- declare const oc: ContractBuilder<undefined, undefined, {}, {}>;
508
+ declare const oc: ContractBuilder<Schema<unknown, unknown>, Schema<unknown, unknown>, Record<never, never>, Record<never, never>>;
211
509
 
212
510
  interface ContractConfig {
213
511
  defaultMethod: HTTPMethod;
@@ -218,16 +516,32 @@ interface ContractConfig {
218
516
  }
219
517
  declare function fallbackContractConfig<T extends keyof ContractConfig>(key: T, value: ContractConfig[T] | undefined): ContractConfig[T];
220
518
 
221
- declare function eventIterator<TYieldIn, TYieldOut, TReturnIn = unknown, TReturnOut = unknown>(yields: StandardSchemaV1<TYieldIn, TYieldOut>, returns?: StandardSchemaV1<TReturnIn, TReturnOut>): StandardSchemaV1<AsyncIteratorObject<TYieldIn, TReturnIn, void>, AsyncIteratorObject<TYieldOut, TReturnOut, void>>;
222
- declare function getEventIteratorSchemaDetails(schema: Schema): undefined | {
223
- yields: Schema;
224
- returns: Schema;
225
- };
519
+ interface EventIteratorSchemaDetails {
520
+ yields: AnySchema;
521
+ returns?: AnySchema;
522
+ }
523
+ /**
524
+ * Define schema for an event iterator.
525
+ *
526
+ * @see {@link https://orpc.unnoq.com/docs/event-iterator#validate-event-iterator Validate Event Iterator Docs}
527
+ */
528
+ declare function eventIterator<TYieldIn, TYieldOut, TReturnIn = unknown, TReturnOut = unknown>(yields: Schema<TYieldIn, TYieldOut>, returns?: Schema<TReturnIn, TReturnOut>): Schema<AsyncIteratorObject<TYieldIn, TReturnIn, void>, AsyncIteratorObject<TYieldOut, TReturnOut, void>>;
529
+ declare function getEventIteratorSchemaDetails(schema: AnySchema | undefined): undefined | EventIteratorSchemaDetails;
226
530
 
227
- type ContractProcedureClient<TClientContext extends ClientContext, TInputSchema extends Schema, TOutputSchema extends Schema, TErrorMap extends ErrorMap> = Client<TClientContext, SchemaInput<TInputSchema>, SchemaOutput<TOutputSchema>, ErrorFromErrorMap<TErrorMap>>;
531
+ /**
532
+ * Help RPCLink automatically send requests using the specified HTTP method in the contract.
533
+ *
534
+ * @see {@link https://orpc.unnoq.com/docs/client/rpc-link#custom-request-method RPCLink Custom Request Method}
535
+ */
536
+ declare function inferRPCMethodFromContractRouter(contract: AnyContractRouter): (options: unknown, path: readonly string[]) => Exclude<HTTPMethod, 'HEAD'>;
537
+
538
+ type ContractProcedureClient<TClientContext extends ClientContext, TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap> = Client<TClientContext, InferSchemaInput<TInputSchema>, InferSchemaOutput<TOutputSchema>, ErrorFromErrorMap<TErrorMap>>;
228
539
 
229
540
  type ContractRouterClient<TRouter extends AnyContractRouter, TClientContext extends ClientContext = Record<never, never>> = TRouter extends ContractProcedure<infer UInputSchema, infer UOutputSchema, infer UErrorMap, any> ? ContractProcedureClient<TClientContext, UInputSchema, UOutputSchema, UErrorMap> : {
230
541
  [K in keyof TRouter]: TRouter[K] extends AnyContractRouter ? ContractRouterClient<TRouter[K], TClientContext> : never;
231
542
  };
232
543
 
233
- export { type AdaptContractRouterOptions, type AdaptRouteOptions, type AdaptedContractRouter, type AnyContractProcedure, type AnyContractRouter, ContractBuilder, type ContractBuilderDef, type ContractConfig, ContractProcedure, type ContractProcedureBuilder, type ContractProcedureBuilderWithInput, type ContractProcedureBuilderWithInputOutput, type ContractProcedureBuilderWithOutput, type ContractProcedureClient, type ContractProcedureDef, type ContractRouter, type ContractRouterBuilder, type ContractRouterClient, type ContractRouterToErrorMap, type ContractRouterToMeta, type ErrorFromErrorMap, type ErrorMap, type ErrorMapItem, type HTTPMethod, type HTTPPath, type InferContractRouterInputs, type InferContractRouterOutputs, type InputStructure, type MergedErrorMap, type Meta, type ORPCErrorFromErrorMap, type OutputStructure, type Route, type Schema, type SchemaInput, type SchemaOutput, type TypeRest, ValidationError, type ValidationErrorOptions, adaptContractRouter, adaptRoute, eventIterator, fallbackContractConfig, getEventIteratorSchemaDetails, isContractProcedure, mergeErrorMap, mergeMeta, mergePrefix, mergeRoute, mergeTags, oc, prefixRoute, type, unshiftTagRoute };
544
+ declare function isSchemaIssue(issue: unknown): issue is SchemaIssue;
545
+
546
+ export { ContractBuilder, ContractProcedure, ValidationError, enhanceContractRouter, enhanceRoute, eventIterator, fallbackContractConfig, getContractRouter, getEventIteratorSchemaDetails, inferRPCMethodFromContractRouter, isContractProcedure, isSchemaIssue, mergeErrorMap, mergeMeta, mergePrefix, mergeRoute, mergeTags, minifyContractRouter, oc, prefixRoute, type, unshiftTagRoute };
547
+ export type { AnyContractProcedure, AnyContractRouter, AnySchema, ContractBuilderDef, ContractConfig, ContractProcedureBuilder, ContractProcedureBuilderWithInput, ContractProcedureBuilderWithInputOutput, ContractProcedureBuilderWithOutput, ContractProcedureClient, ContractProcedureDef, ContractRouter, ContractRouterBuilder, ContractRouterClient, EnhanceContractRouterOptions, EnhanceRouteOptions, EnhancedContractRouter, ErrorFromErrorMap, ErrorMap, ErrorMapItem, EventIteratorSchemaDetails, InferContractRouterErrorMap, InferContractRouterInputs, InferContractRouterMeta, InferContractRouterOutputs, InferSchemaInput, InferSchemaOutput, InputStructure, MergedErrorMap, Meta, ORPCErrorFromErrorMap, OutputStructure, Route, Schema, SchemaIssue, TypeRest, ValidationErrorOptions };