@orpc/contract 0.0.0-next.d17ef5e → 0.0.0-next.d2a7109

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 CHANGED
@@ -21,28 +21,24 @@
21
21
 
22
22
  <h3 align="center">Typesafe APIs Made Simple 🪄</h3>
23
23
 
24
- **oRPC is a powerful combination of RPC and OpenAPI**, makes it easy to build APIs that are end-to-end type-safe and adhere to OpenAPI standards, ensuring a smooth and enjoyable developer experience.
24
+ **oRPC is a powerful combination of RPC and OpenAPI**, makes it easy to build APIs that are end-to-end type-safe and adhere to OpenAPI standards
25
25
 
26
26
  ---
27
27
 
28
28
  ## Highlights
29
29
 
30
- - **End-to-End Type Safety 🔒**: Ensure complete type safety from inputs to outputs and errors, bridging server and client seamlessly.
31
- - **First-Class OpenAPI 📄**: Adheres to the OpenAPI standard out of the box, ensuring seamless integration and comprehensive API documentation.
32
- - **Contract-First Development 📜**: (Optional) Define your API contract upfront and implement it with confidence.
33
- - **Exceptional Developer Experience ✨**: Enjoy a streamlined workflow with robust typing and clear, in-code documentation.
34
- - **Multi-Runtime Support 🌍**: Run your code seamlessly on Cloudflare, Deno, Bun, Node.js, and more.
35
- - **Framework Integrations 🧩**: Supports Tanstack Query (React, Vue, Solid, Svelte), Pinia Colada, and more.
36
- - **Server Actions ⚡️**: Fully compatible with React Server Actions on Next.js, TanStack Start, and more.
37
- - **Standard Schema Support 🗂️**: Effortlessly work with Zod, Valibot, ArkType, and others right out of the box.
38
- - **Fast & Lightweight 💨**: Built on native APIs across all runtimes – optimized for speed and efficiency.
39
- - **Native Types 📦**: Enjoy built-in support for Date, File, Blob, BigInt, URL and more with no extra setup.
40
- - **Lazy Router ⏱️**: Improve cold start times with our lazy routing feature.
41
- - **SSE & Streaming 📡**: Provides SSE and streaming features – perfect for real-time notifications and AI-powered streaming responses.
42
- - **Reusability 🔄**: Write once and reuse your code across multiple purposes effortlessly.
43
- - **Extendability 🔌**: Easily enhance oRPC with plugins, middleware, and interceptors.
44
- - **Reliability 🛡️**: Well-tested, fully TypeScript, production-ready, and MIT licensed for peace of mind.
45
- - **Simplicity 💡**: Enjoy straightforward, clean code with no hidden magic.
30
+ - **🔗 End-to-End Type Safety**: Ensure type-safe inputs, outputs, and errors from client to server.
31
+ - **📘 First-Class OpenAPI**: Built-in support that fully adheres to the OpenAPI standard.
32
+ - **📝 Contract-First Development**: Optionally define your API contract before implementation.
33
+ - **⚙️ Framework Integrations**: Seamlessly integrate with TanStack Query (React, Vue, Solid, Svelte), Pinia Colada, and more.
34
+ - **🚀 Server Actions**: Fully compatible with React Server Actions on Next.js, TanStack Start, and other platforms.
35
+ - **🔠 Standard Schema Support**: Works out of the box with Zod, Valibot, ArkType, and other schema validators.
36
+ - **🗃️ Native Types**: Supports native types like Date, File, Blob, BigInt, URL, and more.
37
+ - **⏱️ Lazy Router**: Enhance cold start times with our lazy routing feature.
38
+ - **📡 SSE & Streaming**: Enjoy full type-safe support for SSE and streaming.
39
+ - **🌍 Multi-Runtime Support**: Fast and lightweight on Cloudflare, Deno, Bun, Node.js, and beyond.
40
+ - **🔌 Extendability**: Easily extend functionality with plugins, middleware, and interceptors.
41
+ - **🛡️ Reliability**: Well-tested, TypeScript-based, production-ready, and MIT licensed.
46
42
 
47
43
  ## Documentation
48
44
 
@@ -53,6 +49,8 @@ You can find the full documentation [here](https://orpc.unnoq.com).
53
49
  - [@orpc/contract](https://www.npmjs.com/package/@orpc/contract): Build your API contract.
54
50
  - [@orpc/server](https://www.npmjs.com/package/@orpc/server): Build your API or implement API contract.
55
51
  - [@orpc/client](https://www.npmjs.com/package/@orpc/client): Consume your API on the client with type-safety.
52
+ - [@orpc/nest](https://www.npmjs.com/package/@orpc/nest): Deeply integrate oRPC with NestJS.
53
+ - [@orpc/react](https://www.npmjs.com/package/@orpc/react): Utilities for integrating oRPC with React and React Server Actions.
56
54
  - [@orpc/react-query](https://www.npmjs.com/package/@orpc/react-query): Integration with [React Query](https://tanstack.com/query/latest/docs/framework/react/overview).
57
55
  - [@orpc/vue-query](https://www.npmjs.com/package/@orpc/vue-query): Integration with [Vue Query](https://tanstack.com/query/latest/docs/framework/vue/overview).
58
56
  - [@orpc/solid-query](https://www.npmjs.com/package/@orpc/solid-query): Integration with [Solid Query](https://tanstack.com/query/latest/docs/framework/solid/overview).
package/dist/index.d.mts CHANGED
@@ -1,6 +1,7 @@
1
- import { ORPCErrorCode, ORPCError, ClientContext, Client } from '@orpc/client';
2
- export { ORPCError } from '@orpc/client';
3
- import { Promisable, IsEqual } from '@orpc/shared';
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';
4
5
  import { StandardSchemaV1 } from '@standard-schema/spec';
5
6
 
6
7
  type Schema<TInput, TOutput> = StandardSchemaV1<TInput, TOutput>;
@@ -9,12 +10,23 @@ type SchemaIssue = StandardSchemaV1.Issue;
9
10
  type InferSchemaInput<T extends AnySchema> = T extends StandardSchemaV1<infer UInput, any> ? UInput : never;
10
11
  type InferSchemaOutput<T extends AnySchema> = T extends StandardSchemaV1<any, infer UOutput> ? UOutput : never;
11
12
  type TypeRest<TInput, TOutput> = [map: (input: TInput) => Promisable<TOutput>] | (IsEqual<TInput, TOutput> extends true ? [] : never);
13
+ /**
14
+ * The schema for things can be trust without validation.
15
+ * If the TInput and TOutput are different, you need pass a map function.
16
+ *
17
+ * @see {@link https://orpc.unnoq.com/docs/procedure#type-utility Type Utility Docs}
18
+ */
12
19
  declare function type<TInput, TOutput = TInput>(...[map]: TypeRest<TInput, TOutput>): Schema<TInput, TOutput>;
13
20
 
14
21
  interface ValidationErrorOptions extends ErrorOptions {
15
22
  message: string;
16
23
  issues: readonly SchemaIssue[];
17
24
  }
25
+ /**
26
+ * This errors usually used for ORPCError.cause when the error is a validation error.
27
+ *
28
+ * @see {@link https://orpc.unnoq.com/docs/advanced/validation-errors Validation Errors Docs}
29
+ */
18
30
  declare class ValidationError extends Error {
19
31
  readonly issues: readonly SchemaIssue[];
20
32
  constructor(options: ValidationErrorOptions);
@@ -32,31 +44,70 @@ declare function mergeErrorMap<T1 extends ErrorMap, T2 extends ErrorMap>(errorMa
32
44
  type ORPCErrorFromErrorMap<TErrorMap extends ErrorMap> = {
33
45
  [K in keyof TErrorMap]: K extends string ? TErrorMap[K] extends ErrorMapItem<infer TDataSchema extends Schema<unknown, unknown>> ? ORPCError<K, InferSchemaOutput<TDataSchema>> : never : never;
34
46
  }[keyof TErrorMap];
35
- type ErrorFromErrorMap<TErrorMap extends ErrorMap> = Error | ORPCErrorFromErrorMap<TErrorMap>;
47
+ type ErrorFromErrorMap<TErrorMap extends ErrorMap> = ORPCErrorFromErrorMap<TErrorMap> | ThrowableError;
36
48
 
37
49
  type Meta = Record<string, any>;
38
50
  declare function mergeMeta<T extends Meta>(meta1: T, meta2: T): T;
39
51
 
40
- type HTTPPath = `/${string}`;
41
- type HTTPMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
42
52
  type InputStructure = 'compact' | 'detailed';
43
53
  type OutputStructure = 'compact' | 'detailed';
44
54
  interface Route {
55
+ /**
56
+ * The HTTP method of the procedure.
57
+ * This option is typically relevant when integrating with OpenAPI.
58
+ *
59
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
60
+ */
45
61
  method?: HTTPMethod;
62
+ /**
63
+ * The HTTP path of the procedure.
64
+ * This option is typically relevant when integrating with OpenAPI.
65
+ *
66
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
67
+ */
46
68
  path?: HTTPPath;
69
+ /**
70
+ * The summary of the procedure.
71
+ * This option is typically relevant when integrating with OpenAPI.
72
+ *
73
+ * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
74
+ */
47
75
  summary?: string;
76
+ /**
77
+ * The description of the procedure.
78
+ * This option is typically relevant when integrating with OpenAPI.
79
+ *
80
+ * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
81
+ */
48
82
  description?: string;
83
+ /**
84
+ * Marks the procedure as deprecated.
85
+ * This option is typically relevant when integrating with OpenAPI.
86
+ *
87
+ * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
88
+ */
49
89
  deprecated?: boolean;
90
+ /**
91
+ * The tags of the procedure.
92
+ * This option is typically relevant when integrating with OpenAPI.
93
+ *
94
+ * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
95
+ */
50
96
  tags?: readonly string[];
51
97
  /**
52
98
  * The status code of the response when the procedure is successful.
99
+ * The status code must be in the 200-399 range.
100
+ * This option is typically relevant when integrating with OpenAPI.
53
101
  *
102
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
54
103
  * @default 200
55
104
  */
56
105
  successStatus?: number;
57
106
  /**
58
107
  * The description of the response when the procedure is successful.
108
+ * This option is typically relevant when integrating with OpenAPI.
59
109
  *
110
+ * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
60
111
  * @default 'OK'
61
112
  */
62
113
  successDescription?: string;
@@ -79,6 +130,7 @@ interface Route {
79
130
  * }
80
131
  * ```
81
132
  *
133
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
82
134
  * @default 'compact'
83
135
  */
84
136
  inputStructure?: InputStructure;
@@ -86,21 +138,24 @@ interface Route {
86
138
  * Determines how the response should be structured based on the output.
87
139
  *
88
140
  * @option 'compact'
89
- * Includes only the body data, encoded directly in the response.
141
+ * The output data is directly returned as the response body.
90
142
  *
91
143
  * @option 'detailed'
92
- * Separates the output into `headers` and `body` fields.
93
- * - `headers`: Custom headers to merge with the response headers.
94
- * - `body`: The response data.
144
+ * Return an object with optional properties:
145
+ * - `status`: The response status (must be in 200-399 range) if not set fallback to `successStatus`.
146
+ * - `headers`: Custom headers to merge with the response headers (`Record<string, string | string[] | undefined>`)
147
+ * - `body`: The response body.
95
148
  *
96
149
  * Example:
97
150
  * ```ts
98
151
  * const output = {
152
+ * status: 201,
99
153
  * headers: { 'x-custom-header': 'value' },
100
154
  * body: { message: 'Hello, world!' },
101
155
  * };
102
156
  * ```
103
157
  *
158
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
104
159
  * @default 'compact'
105
160
  */
106
161
  outputStructure?: OutputStructure;
@@ -123,23 +178,55 @@ interface ContractProcedureDef<TInputSchema extends AnySchema, TOutputSchema ext
123
178
  outputSchema?: TOutputSchema;
124
179
  errorMap: TErrorMap;
125
180
  }
181
+ /**
182
+ * This class represents a contract procedure.
183
+ *
184
+ * @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#procedure-contract Contract Procedure Docs}
185
+ */
126
186
  declare class ContractProcedure<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> {
187
+ /**
188
+ * This property holds the defined options for the contract procedure.
189
+ */
127
190
  '~orpc': ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
128
191
  constructor(def: ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>);
129
192
  }
130
193
  type AnyContractProcedure = ContractProcedure<any, any, any, any>;
131
194
  declare function isContractProcedure(item: unknown): item is AnyContractProcedure;
132
195
 
196
+ /**
197
+ * Represents a contract router, which defines a hierarchical structure of contract procedures.
198
+ *
199
+ * @info A contract procedure is a contract router too.
200
+ * @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#contract-router Contract Router Docs}
201
+ */
133
202
  type ContractRouter<TMeta extends Meta> = ContractProcedure<any, any, any, TMeta> | {
134
203
  [k: string]: ContractRouter<TMeta>;
135
204
  };
136
205
  type AnyContractRouter = ContractRouter<any>;
206
+ /**
207
+ * Infer all inputs of the contract router.
208
+ *
209
+ * @info A contract procedure is a contract router too.
210
+ * @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#utilities Contract Utilities Docs}
211
+ */
137
212
  type InferContractRouterInputs<T extends AnyContractRouter> = T extends ContractProcedure<infer UInputSchema, any, any, any> ? InferSchemaInput<UInputSchema> : {
138
213
  [K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterInputs<T[K]> : never;
139
214
  };
215
+ /**
216
+ * Infer all outputs of the contract router.
217
+ *
218
+ * @info A contract procedure is a contract router too.
219
+ * @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#utilities Contract Utilities Docs}
220
+ */
140
221
  type InferContractRouterOutputs<T extends AnyContractRouter> = T extends ContractProcedure<any, infer UOutputSchema, any, any> ? InferSchemaOutput<UOutputSchema> : {
141
222
  [K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterOutputs<T[K]> : never;
142
223
  };
224
+ /**
225
+ * Infer all errors of the contract router.
226
+ *
227
+ * @info A contract procedure is a contract router too.
228
+ * @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#utilities Contract Utilities Docs}
229
+ */
143
230
  type InferContractRouterErrorMap<T extends AnyContractRouter> = T extends ContractProcedure<any, any, infer UErrorMap, any> ? UErrorMap : {
144
231
  [K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterErrorMap<T[K]> : never;
145
232
  }[keyof T];
@@ -155,57 +242,243 @@ interface EnhanceContractRouterOptions<TErrorMap extends ErrorMap> extends Enhan
155
242
  declare function enhanceContractRouter<T extends AnyContractRouter, TErrorMap extends ErrorMap>(router: T, options: EnhanceContractRouterOptions<TErrorMap>): EnhancedContractRouter<T, TErrorMap>;
156
243
 
157
244
  interface ContractProcedureBuilder<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
245
+ /**
246
+ * Adds type-safe custom errors to the contract.
247
+ * The provided errors are spared-merged with any existing errors in the contract.
248
+ *
249
+ * @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
250
+ */
158
251
  errors<U extends ErrorMap>(errors: U): ContractProcedureBuilder<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
252
+ /**
253
+ * Sets or updates the metadata for the contract.
254
+ * The provided metadata is spared-merged with any existing metadata in the contract.
255
+ *
256
+ * @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
257
+ */
159
258
  meta(meta: TMeta): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
259
+ /**
260
+ * Sets or updates the route definition for the contract.
261
+ * The provided route is spared-merged with any existing route in the contract.
262
+ * This option is typically relevant when integrating with OpenAPI.
263
+ *
264
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
265
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
266
+ */
160
267
  route(route: Route): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
268
+ /**
269
+ * Defines the input validation schema for the contract.
270
+ *
271
+ * @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Input Validation Docs}
272
+ */
161
273
  input<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInput<U, TOutputSchema, TErrorMap, TMeta>;
274
+ /**
275
+ * Defines the output validation schema for the contract.
276
+ *
277
+ * @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Output Validation Docs}
278
+ */
162
279
  output<U extends AnySchema>(schema: U): ContractProcedureBuilderWithOutput<TInputSchema, U, TErrorMap, TMeta>;
163
280
  }
164
281
  interface ContractProcedureBuilderWithInput<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
282
+ /**
283
+ * Adds type-safe custom errors to the contract.
284
+ * The provided errors are spared-merged with any existing errors in the contract.
285
+ *
286
+ * @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
287
+ */
165
288
  errors<U extends ErrorMap>(errors: U): ContractProcedureBuilderWithInput<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
289
+ /**
290
+ * Sets or updates the metadata for the contract.
291
+ * The provided metadata is spared-merged with any existing metadata in the contract.
292
+ *
293
+ * @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
294
+ */
166
295
  meta(meta: TMeta): ContractProcedureBuilderWithInput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
296
+ /**
297
+ * Sets or updates the route definition for the contract.
298
+ * The provided route is spared-merged with any existing route in the contract.
299
+ * This option is typically relevant when integrating with OpenAPI.
300
+ *
301
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
302
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
303
+ */
167
304
  route(route: Route): ContractProcedureBuilderWithInput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
305
+ /**
306
+ * Defines the output validation schema for the contract.
307
+ *
308
+ * @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Output Validation Docs}
309
+ */
168
310
  output<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInputOutput<TInputSchema, U, TErrorMap, TMeta>;
169
311
  }
170
312
  interface ContractProcedureBuilderWithOutput<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
313
+ /**
314
+ * Adds type-safe custom errors to the contract.
315
+ * The provided errors are spared-merged with any existing errors in the contract.
316
+ *
317
+ * @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
318
+ */
171
319
  errors<U extends ErrorMap>(errors: U): ContractProcedureBuilderWithOutput<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
320
+ /**
321
+ * Sets or updates the metadata for the contract.
322
+ * The provided metadata is spared-merged with any existing metadata in the contract.
323
+ *
324
+ * @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
325
+ */
172
326
  meta(meta: TMeta): ContractProcedureBuilderWithOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
327
+ /**
328
+ * Sets or updates the route definition for the contract.
329
+ * The provided route is spared-merged with any existing route in the contract.
330
+ * This option is typically relevant when integrating with OpenAPI.
331
+ *
332
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
333
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
334
+ */
173
335
  route(route: Route): ContractProcedureBuilderWithOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
336
+ /**
337
+ * Defines the input validation schema for the contract.
338
+ *
339
+ * @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Input Validation Docs}
340
+ */
174
341
  input<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInputOutput<U, TOutputSchema, TErrorMap, TMeta>;
175
342
  }
176
343
  interface ContractProcedureBuilderWithInputOutput<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
344
+ /**
345
+ * Adds type-safe custom errors to the contract.
346
+ * The provided errors are spared-merged with any existing errors in the contract.
347
+ *
348
+ * @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
349
+ */
177
350
  errors<U extends ErrorMap>(errors: U): ContractProcedureBuilderWithInputOutput<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
351
+ /**
352
+ * Sets or updates the metadata for the contract.
353
+ * The provided metadata is spared-merged with any existing metadata in the contract.
354
+ *
355
+ * @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
356
+ */
178
357
  meta(meta: TMeta): ContractProcedureBuilderWithInputOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
358
+ /**
359
+ * Sets or updates the route definition for the contract.
360
+ * The provided route is spared-merged with any existing route in the contract.
361
+ * This option is typically relevant when integrating with OpenAPI.
362
+ *
363
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
364
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
365
+ */
179
366
  route(route: Route): ContractProcedureBuilderWithInputOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
180
367
  }
181
368
  interface ContractRouterBuilder<TErrorMap extends ErrorMap, TMeta extends Meta> {
369
+ /**
370
+ * This property holds the defined options for the contract router.
371
+ */
182
372
  '~orpc': EnhanceContractRouterOptions<TErrorMap>;
373
+ /**
374
+ * Adds type-safe custom errors to the contract.
375
+ * The provided errors are spared-merged with any existing errors in the contract.
376
+ *
377
+ * @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
378
+ */
183
379
  'errors'<U extends ErrorMap>(errors: U): ContractRouterBuilder<MergedErrorMap<TErrorMap, U>, TMeta>;
380
+ /**
381
+ * Prefixes all procedures in the contract router.
382
+ * The provided prefix is post-appended to any existing router prefix.
383
+ *
384
+ * @note This option does not affect procedures that do not define a path in their route definition.
385
+ *
386
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing#route-prefixes OpenAPI Route Prefixes Docs}
387
+ */
184
388
  'prefix'(prefix: HTTPPath): ContractRouterBuilder<TErrorMap, TMeta>;
389
+ /**
390
+ * Adds tags to all procedures in the contract router.
391
+ * This helpful when you want to group procedures together in the OpenAPI specification.
392
+ *
393
+ * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
394
+ */
185
395
  'tag'(...tags: string[]): ContractRouterBuilder<TErrorMap, TMeta>;
396
+ /**
397
+ * Applies all of the previously defined options to the specified contract router.
398
+ *
399
+ * @see {@link https://orpc.unnoq.com/docs/router#extending-router Extending Router Docs}
400
+ */
186
401
  'router'<T extends ContractRouter<TMeta>>(router: T): EnhancedContractRouter<T, TErrorMap>;
187
402
  }
188
403
 
189
404
  interface ContractBuilderDef<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>, EnhanceContractRouterOptions<TErrorMap> {
190
405
  }
191
406
  declare class ContractBuilder<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
407
+ /**
408
+ * This property holds the defined options for the contract.
409
+ */
192
410
  '~orpc': ContractBuilderDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
193
411
  constructor(def: ContractBuilderDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>);
194
412
  /**
195
- * Reset initial meta
413
+ * Sets or overrides the initial meta.
414
+ *
415
+ * @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
196
416
  */
197
417
  $meta<U extends Meta>(initialMeta: U): ContractBuilder<TInputSchema, TOutputSchema, TErrorMap, U & Record<never, never>>;
198
418
  /**
199
- * Reset initial route
419
+ * Sets or overrides the initial route.
420
+ * This option is typically relevant when integrating with OpenAPI.
421
+ *
422
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
423
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
200
424
  */
201
425
  $route(initialRoute: Route): ContractBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
426
+ /**
427
+ * Adds type-safe custom errors to the contract.
428
+ * The provided errors are spared-merged with any existing errors in the contract.
429
+ *
430
+ * @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
431
+ */
202
432
  errors<U extends ErrorMap>(errors: U): ContractBuilder<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
433
+ /**
434
+ * Sets or updates the metadata for the contract.
435
+ * The provided metadata is spared-merged with any existing metadata in the contract.
436
+ *
437
+ * @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
438
+ */
203
439
  meta(meta: TMeta): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
440
+ /**
441
+ * Sets or updates the route definition for the contract.
442
+ * The provided route is spared-merged with any existing route in the contract.
443
+ * This option is typically relevant when integrating with OpenAPI.
444
+ *
445
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
446
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
447
+ */
204
448
  route(route: Route): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
449
+ /**
450
+ * Defines the input validation schema for the contract.
451
+ *
452
+ * @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Input Validation Docs}
453
+ */
205
454
  input<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInput<U, TOutputSchema, TErrorMap, TMeta>;
455
+ /**
456
+ * Defines the output validation schema for the contract.
457
+ *
458
+ * @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Output Validation Docs}
459
+ */
206
460
  output<U extends AnySchema>(schema: U): ContractProcedureBuilderWithOutput<TInputSchema, U, TErrorMap, TMeta>;
461
+ /**
462
+ * Prefixes all procedures in the contract router.
463
+ * The provided prefix is post-appended to any existing router prefix.
464
+ *
465
+ * @note This option does not affect procedures that do not define a path in their route definition.
466
+ *
467
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing#route-prefixes OpenAPI Route Prefixes Docs}
468
+ */
207
469
  prefix(prefix: HTTPPath): ContractRouterBuilder<TErrorMap, TMeta>;
470
+ /**
471
+ * Adds tags to all procedures in the contract router.
472
+ * This helpful when you want to group procedures together in the OpenAPI specification.
473
+ *
474
+ * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
475
+ */
208
476
  tag(...tags: string[]): ContractRouterBuilder<TErrorMap, TMeta>;
477
+ /**
478
+ * Applies all of the previously defined options to the specified contract router.
479
+ *
480
+ * @see {@link https://orpc.unnoq.com/docs/router#extending-router Extending Router Docs}
481
+ */
209
482
  router<T extends ContractRouter<TMeta>>(router: T): EnhancedContractRouter<T, TErrorMap>;
210
483
  }
211
484
  declare const oc: ContractBuilder<Schema<unknown, unknown>, Schema<unknown, unknown>, Record<never, never>, Record<never, never>>;
@@ -223,6 +496,11 @@ interface EventIteratorSchemaDetails {
223
496
  yields: AnySchema;
224
497
  returns?: AnySchema;
225
498
  }
499
+ /**
500
+ * Define schema for an event iterator.
501
+ *
502
+ * @see {@link https://orpc.unnoq.com/docs/event-iterator#validate-event-iterator Validate Event Iterator Docs}
503
+ */
226
504
  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>>;
227
505
  declare function getEventIteratorSchemaDetails(schema: AnySchema | undefined): undefined | EventIteratorSchemaDetails;
228
506
 
@@ -232,4 +510,5 @@ type ContractRouterClient<TRouter extends AnyContractRouter, TClientContext exte
232
510
  [K in keyof TRouter]: TRouter[K] extends AnyContractRouter ? ContractRouterClient<TRouter[K], TClientContext> : never;
233
511
  };
234
512
 
235
- export { type AnyContractProcedure, type AnyContractRouter, type AnySchema, 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 EnhanceContractRouterOptions, type EnhanceRouteOptions, type EnhancedContractRouter, type ErrorFromErrorMap, type ErrorMap, type ErrorMapItem, type EventIteratorSchemaDetails, type HTTPMethod, type HTTPPath, type InferContractRouterErrorMap, type InferContractRouterInputs, type InferContractRouterMeta, type InferContractRouterOutputs, type InferSchemaInput, type InferSchemaOutput, type InputStructure, type MergedErrorMap, type Meta, type ORPCErrorFromErrorMap, type OutputStructure, type Route, type Schema, type SchemaIssue, type TypeRest, ValidationError, type ValidationErrorOptions, enhanceContractRouter, enhanceRoute, eventIterator, fallbackContractConfig, getContractRouter, getEventIteratorSchemaDetails, isContractProcedure, mergeErrorMap, mergeMeta, mergePrefix, mergeRoute, mergeTags, oc, prefixRoute, type, unshiftTagRoute };
513
+ export { ContractBuilder, ContractProcedure, ValidationError, enhanceContractRouter, enhanceRoute, eventIterator, fallbackContractConfig, getContractRouter, getEventIteratorSchemaDetails, isContractProcedure, mergeErrorMap, mergeMeta, mergePrefix, mergeRoute, mergeTags, oc, prefixRoute, type, unshiftTagRoute };
514
+ 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 };
package/dist/index.d.ts CHANGED
@@ -1,6 +1,7 @@
1
- import { ORPCErrorCode, ORPCError, ClientContext, Client } from '@orpc/client';
2
- export { ORPCError } from '@orpc/client';
3
- import { Promisable, IsEqual } from '@orpc/shared';
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';
4
5
  import { StandardSchemaV1 } from '@standard-schema/spec';
5
6
 
6
7
  type Schema<TInput, TOutput> = StandardSchemaV1<TInput, TOutput>;
@@ -9,12 +10,23 @@ type SchemaIssue = StandardSchemaV1.Issue;
9
10
  type InferSchemaInput<T extends AnySchema> = T extends StandardSchemaV1<infer UInput, any> ? UInput : never;
10
11
  type InferSchemaOutput<T extends AnySchema> = T extends StandardSchemaV1<any, infer UOutput> ? UOutput : never;
11
12
  type TypeRest<TInput, TOutput> = [map: (input: TInput) => Promisable<TOutput>] | (IsEqual<TInput, TOutput> extends true ? [] : never);
13
+ /**
14
+ * The schema for things can be trust without validation.
15
+ * If the TInput and TOutput are different, you need pass a map function.
16
+ *
17
+ * @see {@link https://orpc.unnoq.com/docs/procedure#type-utility Type Utility Docs}
18
+ */
12
19
  declare function type<TInput, TOutput = TInput>(...[map]: TypeRest<TInput, TOutput>): Schema<TInput, TOutput>;
13
20
 
14
21
  interface ValidationErrorOptions extends ErrorOptions {
15
22
  message: string;
16
23
  issues: readonly SchemaIssue[];
17
24
  }
25
+ /**
26
+ * This errors usually used for ORPCError.cause when the error is a validation error.
27
+ *
28
+ * @see {@link https://orpc.unnoq.com/docs/advanced/validation-errors Validation Errors Docs}
29
+ */
18
30
  declare class ValidationError extends Error {
19
31
  readonly issues: readonly SchemaIssue[];
20
32
  constructor(options: ValidationErrorOptions);
@@ -32,31 +44,70 @@ declare function mergeErrorMap<T1 extends ErrorMap, T2 extends ErrorMap>(errorMa
32
44
  type ORPCErrorFromErrorMap<TErrorMap extends ErrorMap> = {
33
45
  [K in keyof TErrorMap]: K extends string ? TErrorMap[K] extends ErrorMapItem<infer TDataSchema extends Schema<unknown, unknown>> ? ORPCError<K, InferSchemaOutput<TDataSchema>> : never : never;
34
46
  }[keyof TErrorMap];
35
- type ErrorFromErrorMap<TErrorMap extends ErrorMap> = Error | ORPCErrorFromErrorMap<TErrorMap>;
47
+ type ErrorFromErrorMap<TErrorMap extends ErrorMap> = ORPCErrorFromErrorMap<TErrorMap> | ThrowableError;
36
48
 
37
49
  type Meta = Record<string, any>;
38
50
  declare function mergeMeta<T extends Meta>(meta1: T, meta2: T): T;
39
51
 
40
- type HTTPPath = `/${string}`;
41
- type HTTPMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
42
52
  type InputStructure = 'compact' | 'detailed';
43
53
  type OutputStructure = 'compact' | 'detailed';
44
54
  interface Route {
55
+ /**
56
+ * The HTTP method of the procedure.
57
+ * This option is typically relevant when integrating with OpenAPI.
58
+ *
59
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
60
+ */
45
61
  method?: HTTPMethod;
62
+ /**
63
+ * The HTTP path of the procedure.
64
+ * This option is typically relevant when integrating with OpenAPI.
65
+ *
66
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
67
+ */
46
68
  path?: HTTPPath;
69
+ /**
70
+ * The summary of the procedure.
71
+ * This option is typically relevant when integrating with OpenAPI.
72
+ *
73
+ * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
74
+ */
47
75
  summary?: string;
76
+ /**
77
+ * The description of the procedure.
78
+ * This option is typically relevant when integrating with OpenAPI.
79
+ *
80
+ * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
81
+ */
48
82
  description?: string;
83
+ /**
84
+ * Marks the procedure as deprecated.
85
+ * This option is typically relevant when integrating with OpenAPI.
86
+ *
87
+ * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
88
+ */
49
89
  deprecated?: boolean;
90
+ /**
91
+ * The tags of the procedure.
92
+ * This option is typically relevant when integrating with OpenAPI.
93
+ *
94
+ * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
95
+ */
50
96
  tags?: readonly string[];
51
97
  /**
52
98
  * The status code of the response when the procedure is successful.
99
+ * The status code must be in the 200-399 range.
100
+ * This option is typically relevant when integrating with OpenAPI.
53
101
  *
102
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
54
103
  * @default 200
55
104
  */
56
105
  successStatus?: number;
57
106
  /**
58
107
  * The description of the response when the procedure is successful.
108
+ * This option is typically relevant when integrating with OpenAPI.
59
109
  *
110
+ * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
60
111
  * @default 'OK'
61
112
  */
62
113
  successDescription?: string;
@@ -79,6 +130,7 @@ interface Route {
79
130
  * }
80
131
  * ```
81
132
  *
133
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
82
134
  * @default 'compact'
83
135
  */
84
136
  inputStructure?: InputStructure;
@@ -86,21 +138,24 @@ interface Route {
86
138
  * Determines how the response should be structured based on the output.
87
139
  *
88
140
  * @option 'compact'
89
- * Includes only the body data, encoded directly in the response.
141
+ * The output data is directly returned as the response body.
90
142
  *
91
143
  * @option 'detailed'
92
- * Separates the output into `headers` and `body` fields.
93
- * - `headers`: Custom headers to merge with the response headers.
94
- * - `body`: The response data.
144
+ * Return an object with optional properties:
145
+ * - `status`: The response status (must be in 200-399 range) if not set fallback to `successStatus`.
146
+ * - `headers`: Custom headers to merge with the response headers (`Record<string, string | string[] | undefined>`)
147
+ * - `body`: The response body.
95
148
  *
96
149
  * Example:
97
150
  * ```ts
98
151
  * const output = {
152
+ * status: 201,
99
153
  * headers: { 'x-custom-header': 'value' },
100
154
  * body: { message: 'Hello, world!' },
101
155
  * };
102
156
  * ```
103
157
  *
158
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
104
159
  * @default 'compact'
105
160
  */
106
161
  outputStructure?: OutputStructure;
@@ -123,23 +178,55 @@ interface ContractProcedureDef<TInputSchema extends AnySchema, TOutputSchema ext
123
178
  outputSchema?: TOutputSchema;
124
179
  errorMap: TErrorMap;
125
180
  }
181
+ /**
182
+ * This class represents a contract procedure.
183
+ *
184
+ * @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#procedure-contract Contract Procedure Docs}
185
+ */
126
186
  declare class ContractProcedure<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> {
187
+ /**
188
+ * This property holds the defined options for the contract procedure.
189
+ */
127
190
  '~orpc': ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
128
191
  constructor(def: ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>);
129
192
  }
130
193
  type AnyContractProcedure = ContractProcedure<any, any, any, any>;
131
194
  declare function isContractProcedure(item: unknown): item is AnyContractProcedure;
132
195
 
196
+ /**
197
+ * Represents a contract router, which defines a hierarchical structure of contract procedures.
198
+ *
199
+ * @info A contract procedure is a contract router too.
200
+ * @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#contract-router Contract Router Docs}
201
+ */
133
202
  type ContractRouter<TMeta extends Meta> = ContractProcedure<any, any, any, TMeta> | {
134
203
  [k: string]: ContractRouter<TMeta>;
135
204
  };
136
205
  type AnyContractRouter = ContractRouter<any>;
206
+ /**
207
+ * Infer all inputs of the contract router.
208
+ *
209
+ * @info A contract procedure is a contract router too.
210
+ * @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#utilities Contract Utilities Docs}
211
+ */
137
212
  type InferContractRouterInputs<T extends AnyContractRouter> = T extends ContractProcedure<infer UInputSchema, any, any, any> ? InferSchemaInput<UInputSchema> : {
138
213
  [K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterInputs<T[K]> : never;
139
214
  };
215
+ /**
216
+ * Infer all outputs of the contract router.
217
+ *
218
+ * @info A contract procedure is a contract router too.
219
+ * @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#utilities Contract Utilities Docs}
220
+ */
140
221
  type InferContractRouterOutputs<T extends AnyContractRouter> = T extends ContractProcedure<any, infer UOutputSchema, any, any> ? InferSchemaOutput<UOutputSchema> : {
141
222
  [K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterOutputs<T[K]> : never;
142
223
  };
224
+ /**
225
+ * Infer all errors of the contract router.
226
+ *
227
+ * @info A contract procedure is a contract router too.
228
+ * @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#utilities Contract Utilities Docs}
229
+ */
143
230
  type InferContractRouterErrorMap<T extends AnyContractRouter> = T extends ContractProcedure<any, any, infer UErrorMap, any> ? UErrorMap : {
144
231
  [K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterErrorMap<T[K]> : never;
145
232
  }[keyof T];
@@ -155,57 +242,243 @@ interface EnhanceContractRouterOptions<TErrorMap extends ErrorMap> extends Enhan
155
242
  declare function enhanceContractRouter<T extends AnyContractRouter, TErrorMap extends ErrorMap>(router: T, options: EnhanceContractRouterOptions<TErrorMap>): EnhancedContractRouter<T, TErrorMap>;
156
243
 
157
244
  interface ContractProcedureBuilder<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
245
+ /**
246
+ * Adds type-safe custom errors to the contract.
247
+ * The provided errors are spared-merged with any existing errors in the contract.
248
+ *
249
+ * @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
250
+ */
158
251
  errors<U extends ErrorMap>(errors: U): ContractProcedureBuilder<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
252
+ /**
253
+ * Sets or updates the metadata for the contract.
254
+ * The provided metadata is spared-merged with any existing metadata in the contract.
255
+ *
256
+ * @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
257
+ */
159
258
  meta(meta: TMeta): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
259
+ /**
260
+ * Sets or updates the route definition for the contract.
261
+ * The provided route is spared-merged with any existing route in the contract.
262
+ * This option is typically relevant when integrating with OpenAPI.
263
+ *
264
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
265
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
266
+ */
160
267
  route(route: Route): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
268
+ /**
269
+ * Defines the input validation schema for the contract.
270
+ *
271
+ * @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Input Validation Docs}
272
+ */
161
273
  input<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInput<U, TOutputSchema, TErrorMap, TMeta>;
274
+ /**
275
+ * Defines the output validation schema for the contract.
276
+ *
277
+ * @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Output Validation Docs}
278
+ */
162
279
  output<U extends AnySchema>(schema: U): ContractProcedureBuilderWithOutput<TInputSchema, U, TErrorMap, TMeta>;
163
280
  }
164
281
  interface ContractProcedureBuilderWithInput<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
282
+ /**
283
+ * Adds type-safe custom errors to the contract.
284
+ * The provided errors are spared-merged with any existing errors in the contract.
285
+ *
286
+ * @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
287
+ */
165
288
  errors<U extends ErrorMap>(errors: U): ContractProcedureBuilderWithInput<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
289
+ /**
290
+ * Sets or updates the metadata for the contract.
291
+ * The provided metadata is spared-merged with any existing metadata in the contract.
292
+ *
293
+ * @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
294
+ */
166
295
  meta(meta: TMeta): ContractProcedureBuilderWithInput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
296
+ /**
297
+ * Sets or updates the route definition for the contract.
298
+ * The provided route is spared-merged with any existing route in the contract.
299
+ * This option is typically relevant when integrating with OpenAPI.
300
+ *
301
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
302
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
303
+ */
167
304
  route(route: Route): ContractProcedureBuilderWithInput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
305
+ /**
306
+ * Defines the output validation schema for the contract.
307
+ *
308
+ * @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Output Validation Docs}
309
+ */
168
310
  output<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInputOutput<TInputSchema, U, TErrorMap, TMeta>;
169
311
  }
170
312
  interface ContractProcedureBuilderWithOutput<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
313
+ /**
314
+ * Adds type-safe custom errors to the contract.
315
+ * The provided errors are spared-merged with any existing errors in the contract.
316
+ *
317
+ * @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
318
+ */
171
319
  errors<U extends ErrorMap>(errors: U): ContractProcedureBuilderWithOutput<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
320
+ /**
321
+ * Sets or updates the metadata for the contract.
322
+ * The provided metadata is spared-merged with any existing metadata in the contract.
323
+ *
324
+ * @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
325
+ */
172
326
  meta(meta: TMeta): ContractProcedureBuilderWithOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
327
+ /**
328
+ * Sets or updates the route definition for the contract.
329
+ * The provided route is spared-merged with any existing route in the contract.
330
+ * This option is typically relevant when integrating with OpenAPI.
331
+ *
332
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
333
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
334
+ */
173
335
  route(route: Route): ContractProcedureBuilderWithOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
336
+ /**
337
+ * Defines the input validation schema for the contract.
338
+ *
339
+ * @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Input Validation Docs}
340
+ */
174
341
  input<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInputOutput<U, TOutputSchema, TErrorMap, TMeta>;
175
342
  }
176
343
  interface ContractProcedureBuilderWithInputOutput<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
344
+ /**
345
+ * Adds type-safe custom errors to the contract.
346
+ * The provided errors are spared-merged with any existing errors in the contract.
347
+ *
348
+ * @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
349
+ */
177
350
  errors<U extends ErrorMap>(errors: U): ContractProcedureBuilderWithInputOutput<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
351
+ /**
352
+ * Sets or updates the metadata for the contract.
353
+ * The provided metadata is spared-merged with any existing metadata in the contract.
354
+ *
355
+ * @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
356
+ */
178
357
  meta(meta: TMeta): ContractProcedureBuilderWithInputOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
358
+ /**
359
+ * Sets or updates the route definition for the contract.
360
+ * The provided route is spared-merged with any existing route in the contract.
361
+ * This option is typically relevant when integrating with OpenAPI.
362
+ *
363
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
364
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
365
+ */
179
366
  route(route: Route): ContractProcedureBuilderWithInputOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
180
367
  }
181
368
  interface ContractRouterBuilder<TErrorMap extends ErrorMap, TMeta extends Meta> {
369
+ /**
370
+ * This property holds the defined options for the contract router.
371
+ */
182
372
  '~orpc': EnhanceContractRouterOptions<TErrorMap>;
373
+ /**
374
+ * Adds type-safe custom errors to the contract.
375
+ * The provided errors are spared-merged with any existing errors in the contract.
376
+ *
377
+ * @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
378
+ */
183
379
  'errors'<U extends ErrorMap>(errors: U): ContractRouterBuilder<MergedErrorMap<TErrorMap, U>, TMeta>;
380
+ /**
381
+ * Prefixes all procedures in the contract router.
382
+ * The provided prefix is post-appended to any existing router prefix.
383
+ *
384
+ * @note This option does not affect procedures that do not define a path in their route definition.
385
+ *
386
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing#route-prefixes OpenAPI Route Prefixes Docs}
387
+ */
184
388
  'prefix'(prefix: HTTPPath): ContractRouterBuilder<TErrorMap, TMeta>;
389
+ /**
390
+ * Adds tags to all procedures in the contract router.
391
+ * This helpful when you want to group procedures together in the OpenAPI specification.
392
+ *
393
+ * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
394
+ */
185
395
  'tag'(...tags: string[]): ContractRouterBuilder<TErrorMap, TMeta>;
396
+ /**
397
+ * Applies all of the previously defined options to the specified contract router.
398
+ *
399
+ * @see {@link https://orpc.unnoq.com/docs/router#extending-router Extending Router Docs}
400
+ */
186
401
  'router'<T extends ContractRouter<TMeta>>(router: T): EnhancedContractRouter<T, TErrorMap>;
187
402
  }
188
403
 
189
404
  interface ContractBuilderDef<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>, EnhanceContractRouterOptions<TErrorMap> {
190
405
  }
191
406
  declare class ContractBuilder<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
407
+ /**
408
+ * This property holds the defined options for the contract.
409
+ */
192
410
  '~orpc': ContractBuilderDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
193
411
  constructor(def: ContractBuilderDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>);
194
412
  /**
195
- * Reset initial meta
413
+ * Sets or overrides the initial meta.
414
+ *
415
+ * @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
196
416
  */
197
417
  $meta<U extends Meta>(initialMeta: U): ContractBuilder<TInputSchema, TOutputSchema, TErrorMap, U & Record<never, never>>;
198
418
  /**
199
- * Reset initial route
419
+ * Sets or overrides the initial route.
420
+ * This option is typically relevant when integrating with OpenAPI.
421
+ *
422
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
423
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
200
424
  */
201
425
  $route(initialRoute: Route): ContractBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
426
+ /**
427
+ * Adds type-safe custom errors to the contract.
428
+ * The provided errors are spared-merged with any existing errors in the contract.
429
+ *
430
+ * @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
431
+ */
202
432
  errors<U extends ErrorMap>(errors: U): ContractBuilder<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
433
+ /**
434
+ * Sets or updates the metadata for the contract.
435
+ * The provided metadata is spared-merged with any existing metadata in the contract.
436
+ *
437
+ * @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
438
+ */
203
439
  meta(meta: TMeta): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
440
+ /**
441
+ * Sets or updates the route definition for the contract.
442
+ * The provided route is spared-merged with any existing route in the contract.
443
+ * This option is typically relevant when integrating with OpenAPI.
444
+ *
445
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
446
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
447
+ */
204
448
  route(route: Route): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
449
+ /**
450
+ * Defines the input validation schema for the contract.
451
+ *
452
+ * @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Input Validation Docs}
453
+ */
205
454
  input<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInput<U, TOutputSchema, TErrorMap, TMeta>;
455
+ /**
456
+ * Defines the output validation schema for the contract.
457
+ *
458
+ * @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Output Validation Docs}
459
+ */
206
460
  output<U extends AnySchema>(schema: U): ContractProcedureBuilderWithOutput<TInputSchema, U, TErrorMap, TMeta>;
461
+ /**
462
+ * Prefixes all procedures in the contract router.
463
+ * The provided prefix is post-appended to any existing router prefix.
464
+ *
465
+ * @note This option does not affect procedures that do not define a path in their route definition.
466
+ *
467
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing#route-prefixes OpenAPI Route Prefixes Docs}
468
+ */
207
469
  prefix(prefix: HTTPPath): ContractRouterBuilder<TErrorMap, TMeta>;
470
+ /**
471
+ * Adds tags to all procedures in the contract router.
472
+ * This helpful when you want to group procedures together in the OpenAPI specification.
473
+ *
474
+ * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
475
+ */
208
476
  tag(...tags: string[]): ContractRouterBuilder<TErrorMap, TMeta>;
477
+ /**
478
+ * Applies all of the previously defined options to the specified contract router.
479
+ *
480
+ * @see {@link https://orpc.unnoq.com/docs/router#extending-router Extending Router Docs}
481
+ */
209
482
  router<T extends ContractRouter<TMeta>>(router: T): EnhancedContractRouter<T, TErrorMap>;
210
483
  }
211
484
  declare const oc: ContractBuilder<Schema<unknown, unknown>, Schema<unknown, unknown>, Record<never, never>, Record<never, never>>;
@@ -223,6 +496,11 @@ interface EventIteratorSchemaDetails {
223
496
  yields: AnySchema;
224
497
  returns?: AnySchema;
225
498
  }
499
+ /**
500
+ * Define schema for an event iterator.
501
+ *
502
+ * @see {@link https://orpc.unnoq.com/docs/event-iterator#validate-event-iterator Validate Event Iterator Docs}
503
+ */
226
504
  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>>;
227
505
  declare function getEventIteratorSchemaDetails(schema: AnySchema | undefined): undefined | EventIteratorSchemaDetails;
228
506
 
@@ -232,4 +510,5 @@ type ContractRouterClient<TRouter extends AnyContractRouter, TClientContext exte
232
510
  [K in keyof TRouter]: TRouter[K] extends AnyContractRouter ? ContractRouterClient<TRouter[K], TClientContext> : never;
233
511
  };
234
512
 
235
- export { type AnyContractProcedure, type AnyContractRouter, type AnySchema, 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 EnhanceContractRouterOptions, type EnhanceRouteOptions, type EnhancedContractRouter, type ErrorFromErrorMap, type ErrorMap, type ErrorMapItem, type EventIteratorSchemaDetails, type HTTPMethod, type HTTPPath, type InferContractRouterErrorMap, type InferContractRouterInputs, type InferContractRouterMeta, type InferContractRouterOutputs, type InferSchemaInput, type InferSchemaOutput, type InputStructure, type MergedErrorMap, type Meta, type ORPCErrorFromErrorMap, type OutputStructure, type Route, type Schema, type SchemaIssue, type TypeRest, ValidationError, type ValidationErrorOptions, enhanceContractRouter, enhanceRoute, eventIterator, fallbackContractConfig, getContractRouter, getEventIteratorSchemaDetails, isContractProcedure, mergeErrorMap, mergeMeta, mergePrefix, mergeRoute, mergeTags, oc, prefixRoute, type, unshiftTagRoute };
513
+ export { ContractBuilder, ContractProcedure, ValidationError, enhanceContractRouter, enhanceRoute, eventIterator, fallbackContractConfig, getContractRouter, getEventIteratorSchemaDetails, isContractProcedure, mergeErrorMap, mergeMeta, mergePrefix, mergeRoute, mergeTags, oc, prefixRoute, type, unshiftTagRoute };
514
+ 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 };
package/dist/index.mjs CHANGED
@@ -1,4 +1,4 @@
1
- import { mapEventIterator, ORPCError } from '@orpc/client';
1
+ import { isORPCErrorStatus, mapEventIterator, ORPCError } from '@orpc/client';
2
2
  export { ORPCError } from '@orpc/client';
3
3
  import { isAsyncIteratorObject } from '@orpc/shared';
4
4
 
@@ -18,13 +18,16 @@ function mergeMeta(meta1, meta2) {
18
18
  }
19
19
 
20
20
  class ContractProcedure {
21
+ /**
22
+ * This property holds the defined options for the contract procedure.
23
+ */
21
24
  "~orpc";
22
25
  constructor(def) {
23
- if (def.route?.successStatus && (def.route.successStatus < 200 || def.route?.successStatus > 299)) {
24
- throw new Error("[ContractProcedure] The successStatus must be between 200 and 299");
26
+ if (def.route?.successStatus && isORPCErrorStatus(def.route.successStatus)) {
27
+ throw new Error("[ContractProcedure] Invalid successStatus.");
25
28
  }
26
- if (Object.values(def.errorMap).some((val) => val && val.status && (val.status < 400 || val.status > 599))) {
27
- throw new Error("[ContractProcedure] The error status code must be in the 400-599 range.");
29
+ if (Object.values(def.errorMap).some((val) => val && val.status && !isORPCErrorStatus(val.status))) {
30
+ throw new Error("[ContractProcedure] Invalid error status code.");
28
31
  }
29
32
  this["~orpc"] = def;
30
33
  }
@@ -108,7 +111,9 @@ class ContractBuilder extends ContractProcedure {
108
111
  this["~orpc"].tags = def.tags;
109
112
  }
110
113
  /**
111
- * Reset initial meta
114
+ * Sets or overrides the initial meta.
115
+ *
116
+ * @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
112
117
  */
113
118
  $meta(initialMeta) {
114
119
  return new ContractBuilder({
@@ -117,7 +122,11 @@ class ContractBuilder extends ContractProcedure {
117
122
  });
118
123
  }
119
124
  /**
120
- * Reset initial route
125
+ * Sets or overrides the initial route.
126
+ * This option is typically relevant when integrating with OpenAPI.
127
+ *
128
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
129
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
121
130
  */
122
131
  $route(initialRoute) {
123
132
  return new ContractBuilder({
@@ -125,48 +134,97 @@ class ContractBuilder extends ContractProcedure {
125
134
  route: initialRoute
126
135
  });
127
136
  }
137
+ /**
138
+ * Adds type-safe custom errors to the contract.
139
+ * The provided errors are spared-merged with any existing errors in the contract.
140
+ *
141
+ * @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
142
+ */
128
143
  errors(errors) {
129
144
  return new ContractBuilder({
130
145
  ...this["~orpc"],
131
146
  errorMap: mergeErrorMap(this["~orpc"].errorMap, errors)
132
147
  });
133
148
  }
149
+ /**
150
+ * Sets or updates the metadata for the contract.
151
+ * The provided metadata is spared-merged with any existing metadata in the contract.
152
+ *
153
+ * @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
154
+ */
134
155
  meta(meta) {
135
156
  return new ContractBuilder({
136
157
  ...this["~orpc"],
137
158
  meta: mergeMeta(this["~orpc"].meta, meta)
138
159
  });
139
160
  }
161
+ /**
162
+ * Sets or updates the route definition for the contract.
163
+ * The provided route is spared-merged with any existing route in the contract.
164
+ * This option is typically relevant when integrating with OpenAPI.
165
+ *
166
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
167
+ * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
168
+ */
140
169
  route(route) {
141
170
  return new ContractBuilder({
142
171
  ...this["~orpc"],
143
172
  route: mergeRoute(this["~orpc"].route, route)
144
173
  });
145
174
  }
175
+ /**
176
+ * Defines the input validation schema for the contract.
177
+ *
178
+ * @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Input Validation Docs}
179
+ */
146
180
  input(schema) {
147
181
  return new ContractBuilder({
148
182
  ...this["~orpc"],
149
183
  inputSchema: schema
150
184
  });
151
185
  }
186
+ /**
187
+ * Defines the output validation schema for the contract.
188
+ *
189
+ * @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Output Validation Docs}
190
+ */
152
191
  output(schema) {
153
192
  return new ContractBuilder({
154
193
  ...this["~orpc"],
155
194
  outputSchema: schema
156
195
  });
157
196
  }
197
+ /**
198
+ * Prefixes all procedures in the contract router.
199
+ * The provided prefix is post-appended to any existing router prefix.
200
+ *
201
+ * @note This option does not affect procedures that do not define a path in their route definition.
202
+ *
203
+ * @see {@link https://orpc.unnoq.com/docs/openapi/routing#route-prefixes OpenAPI Route Prefixes Docs}
204
+ */
158
205
  prefix(prefix) {
159
206
  return new ContractBuilder({
160
207
  ...this["~orpc"],
161
208
  prefix: mergePrefix(this["~orpc"].prefix, prefix)
162
209
  });
163
210
  }
211
+ /**
212
+ * Adds tags to all procedures in the contract router.
213
+ * This helpful when you want to group procedures together in the OpenAPI specification.
214
+ *
215
+ * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
216
+ */
164
217
  tag(...tags) {
165
218
  return new ContractBuilder({
166
219
  ...this["~orpc"],
167
220
  tags: mergeTags(this["~orpc"].tags, tags)
168
221
  });
169
222
  }
223
+ /**
224
+ * Applies all of the previously defined options to the specified contract router.
225
+ *
226
+ * @see {@link https://orpc.unnoq.com/docs/router#extending-router Extending Router Docs}
227
+ */
170
228
  router(router) {
171
229
  return enhanceContractRouter(router, this["~orpc"]);
172
230
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@orpc/contract",
3
3
  "type": "module",
4
- "version": "0.0.0-next.d17ef5e",
4
+ "version": "0.0.0-next.d2a7109",
5
5
  "license": "MIT",
6
6
  "homepage": "https://orpc.unnoq.com",
7
7
  "repository": {
@@ -25,14 +25,13 @@
25
25
  ],
26
26
  "dependencies": {
27
27
  "@standard-schema/spec": "^1.0.0",
28
- "@orpc/client": "0.0.0-next.d17ef5e",
29
- "@orpc/shared": "0.0.0-next.d17ef5e",
30
- "@orpc/standard-server": "0.0.0-next.d17ef5e"
28
+ "@orpc/client": "0.0.0-next.d2a7109",
29
+ "@orpc/shared": "0.0.0-next.d2a7109"
31
30
  },
32
31
  "devDependencies": {
33
- "arktype": "2.0.0-rc.26",
34
- "valibot": "1.0.0-beta.9",
35
- "zod": "^3.24.2"
32
+ "arktype": "2.1.20",
33
+ "valibot": "1.0.0",
34
+ "zod": "3.25.0-beta.20250516T005923"
36
35
  },
37
36
  "scripts": {
38
37
  "build": "unbuild",