@orpc/contract 0.0.0-next.d452413 → 0.0.0-next.d5f6b77
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 +24 -17
- package/dist/index.d.mts +286 -11
- package/dist/index.d.ts +286 -11
- package/dist/index.mjs +65 -7
- package/package.json +5 -6
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
|
|
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
|
-
-
|
|
31
|
-
-
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
-
|
|
38
|
-
-
|
|
39
|
-
-
|
|
40
|
-
-
|
|
41
|
-
-
|
|
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,7 @@ 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/react](https://www.npmjs.com/package/@orpc/react): Utilities for integrating oRPC with React and React Server Actions.
|
|
56
53
|
- [@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
54
|
- [@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
55
|
- [@orpc/solid-query](https://www.npmjs.com/package/@orpc/solid-query): Integration with [Solid Query](https://tanstack.com/query/latest/docs/framework/solid/overview).
|
|
@@ -60,6 +57,8 @@ You can find the full documentation [here](https://orpc.unnoq.com).
|
|
|
60
57
|
- [@orpc/vue-colada](https://www.npmjs.com/package/@orpc/vue-colada): Integration with [Pinia Colada](https://pinia-colada.esm.dev/).
|
|
61
58
|
- [@orpc/openapi](https://www.npmjs.com/package/@orpc/openapi): Generate OpenAPI specs and handle OpenAPI requests.
|
|
62
59
|
- [@orpc/zod](https://www.npmjs.com/package/@orpc/zod): More schemas that [Zod](https://zod.dev/) doesn't support yet.
|
|
60
|
+
- [@orpc/valibot](https://www.npmjs.com/package/@orpc/valibot): OpenAPI spec generation from [Valibot](https://valibot.dev/).
|
|
61
|
+
- [@orpc/arktype](https://www.npmjs.com/package/@orpc/arktype): OpenAPI spec generation from [ArkType](https://arktype.io/).
|
|
63
62
|
|
|
64
63
|
## `@orpc/contract`
|
|
65
64
|
|
|
@@ -98,6 +97,14 @@ export const contract = {
|
|
|
98
97
|
}
|
|
99
98
|
```
|
|
100
99
|
|
|
100
|
+
## Sponsors
|
|
101
|
+
|
|
102
|
+
<p align="center">
|
|
103
|
+
<a href="https://cdn.jsdelivr.net/gh/unnoq/unnoq/sponsors.svg">
|
|
104
|
+
<img src='https://cdn.jsdelivr.net/gh/unnoq/unnoq/sponsors.svg'/>
|
|
105
|
+
</a>
|
|
106
|
+
</p>
|
|
107
|
+
|
|
101
108
|
## License
|
|
102
109
|
|
|
103
110
|
Distributed under the MIT License. See [LICENSE](https://github.com/unnoq/orpc/blob/main/LICENSE) for more information.
|
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);
|
|
@@ -22,7 +34,6 @@ declare class ValidationError extends Error {
|
|
|
22
34
|
interface ErrorMapItem<TDataSchema extends AnySchema> {
|
|
23
35
|
status?: number;
|
|
24
36
|
message?: string;
|
|
25
|
-
description?: string;
|
|
26
37
|
data?: TDataSchema;
|
|
27
38
|
}
|
|
28
39
|
type ErrorMap = {
|
|
@@ -33,31 +44,69 @@ declare function mergeErrorMap<T1 extends ErrorMap, T2 extends ErrorMap>(errorMa
|
|
|
33
44
|
type ORPCErrorFromErrorMap<TErrorMap extends ErrorMap> = {
|
|
34
45
|
[K in keyof TErrorMap]: K extends string ? TErrorMap[K] extends ErrorMapItem<infer TDataSchema extends Schema<unknown, unknown>> ? ORPCError<K, InferSchemaOutput<TDataSchema>> : never : never;
|
|
35
46
|
}[keyof TErrorMap];
|
|
36
|
-
type ErrorFromErrorMap<TErrorMap extends ErrorMap> =
|
|
47
|
+
type ErrorFromErrorMap<TErrorMap extends ErrorMap> = ORPCErrorFromErrorMap<TErrorMap> | ThrowableError;
|
|
37
48
|
|
|
38
49
|
type Meta = Record<string, any>;
|
|
39
50
|
declare function mergeMeta<T extends Meta>(meta1: T, meta2: T): T;
|
|
40
51
|
|
|
41
|
-
type HTTPPath = `/${string}`;
|
|
42
|
-
type HTTPMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
43
52
|
type InputStructure = 'compact' | 'detailed';
|
|
44
53
|
type OutputStructure = 'compact' | 'detailed';
|
|
45
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
|
+
*/
|
|
46
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
|
+
*/
|
|
47
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
|
+
*/
|
|
48
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
|
+
*/
|
|
49
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
|
+
*/
|
|
50
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
|
+
*/
|
|
51
96
|
tags?: readonly string[];
|
|
52
97
|
/**
|
|
53
98
|
* The status code of the response when the procedure is successful.
|
|
99
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
54
100
|
*
|
|
101
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
|
|
55
102
|
* @default 200
|
|
56
103
|
*/
|
|
57
104
|
successStatus?: number;
|
|
58
105
|
/**
|
|
59
106
|
* The description of the response when the procedure is successful.
|
|
107
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
60
108
|
*
|
|
109
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
|
|
61
110
|
* @default 'OK'
|
|
62
111
|
*/
|
|
63
112
|
successDescription?: string;
|
|
@@ -80,6 +129,7 @@ interface Route {
|
|
|
80
129
|
* }
|
|
81
130
|
* ```
|
|
82
131
|
*
|
|
132
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
83
133
|
* @default 'compact'
|
|
84
134
|
*/
|
|
85
135
|
inputStructure?: InputStructure;
|
|
@@ -102,6 +152,7 @@ interface Route {
|
|
|
102
152
|
* };
|
|
103
153
|
* ```
|
|
104
154
|
*
|
|
155
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
105
156
|
* @default 'compact'
|
|
106
157
|
*/
|
|
107
158
|
outputStructure?: OutputStructure;
|
|
@@ -124,23 +175,55 @@ interface ContractProcedureDef<TInputSchema extends AnySchema, TOutputSchema ext
|
|
|
124
175
|
outputSchema?: TOutputSchema;
|
|
125
176
|
errorMap: TErrorMap;
|
|
126
177
|
}
|
|
178
|
+
/**
|
|
179
|
+
* This class represents a contract procedure.
|
|
180
|
+
*
|
|
181
|
+
* @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#procedure-contract Contract Procedure Docs}
|
|
182
|
+
*/
|
|
127
183
|
declare class ContractProcedure<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> {
|
|
184
|
+
/**
|
|
185
|
+
* This property holds the defined options for the contract procedure.
|
|
186
|
+
*/
|
|
128
187
|
'~orpc': ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
129
188
|
constructor(def: ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>);
|
|
130
189
|
}
|
|
131
190
|
type AnyContractProcedure = ContractProcedure<any, any, any, any>;
|
|
132
191
|
declare function isContractProcedure(item: unknown): item is AnyContractProcedure;
|
|
133
192
|
|
|
193
|
+
/**
|
|
194
|
+
* Represents a contract router, which defines a hierarchical structure of contract procedures.
|
|
195
|
+
*
|
|
196
|
+
* @info A contract procedure is a contract router too.
|
|
197
|
+
* @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#contract-router Contract Router Docs}
|
|
198
|
+
*/
|
|
134
199
|
type ContractRouter<TMeta extends Meta> = ContractProcedure<any, any, any, TMeta> | {
|
|
135
200
|
[k: string]: ContractRouter<TMeta>;
|
|
136
201
|
};
|
|
137
202
|
type AnyContractRouter = ContractRouter<any>;
|
|
203
|
+
/**
|
|
204
|
+
* Infer all inputs of the contract router.
|
|
205
|
+
*
|
|
206
|
+
* @info A contract procedure is a contract router too.
|
|
207
|
+
* @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#utilities Contract Utilities Docs}
|
|
208
|
+
*/
|
|
138
209
|
type InferContractRouterInputs<T extends AnyContractRouter> = T extends ContractProcedure<infer UInputSchema, any, any, any> ? InferSchemaInput<UInputSchema> : {
|
|
139
210
|
[K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterInputs<T[K]> : never;
|
|
140
211
|
};
|
|
212
|
+
/**
|
|
213
|
+
* Infer all outputs of the contract router.
|
|
214
|
+
*
|
|
215
|
+
* @info A contract procedure is a contract router too.
|
|
216
|
+
* @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#utilities Contract Utilities Docs}
|
|
217
|
+
*/
|
|
141
218
|
type InferContractRouterOutputs<T extends AnyContractRouter> = T extends ContractProcedure<any, infer UOutputSchema, any, any> ? InferSchemaOutput<UOutputSchema> : {
|
|
142
219
|
[K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterOutputs<T[K]> : never;
|
|
143
220
|
};
|
|
221
|
+
/**
|
|
222
|
+
* Infer all errors 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
|
+
*/
|
|
144
227
|
type InferContractRouterErrorMap<T extends AnyContractRouter> = T extends ContractProcedure<any, any, infer UErrorMap, any> ? UErrorMap : {
|
|
145
228
|
[K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterErrorMap<T[K]> : never;
|
|
146
229
|
}[keyof T];
|
|
@@ -156,57 +239,243 @@ interface EnhanceContractRouterOptions<TErrorMap extends ErrorMap> extends Enhan
|
|
|
156
239
|
declare function enhanceContractRouter<T extends AnyContractRouter, TErrorMap extends ErrorMap>(router: T, options: EnhanceContractRouterOptions<TErrorMap>): EnhancedContractRouter<T, TErrorMap>;
|
|
157
240
|
|
|
158
241
|
interface ContractProcedureBuilder<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
|
|
242
|
+
/**
|
|
243
|
+
* Adds type-safe custom errors to the contract.
|
|
244
|
+
* The provided errors are spared-merged with any existing errors in the contract.
|
|
245
|
+
*
|
|
246
|
+
* @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
|
|
247
|
+
*/
|
|
159
248
|
errors<U extends ErrorMap>(errors: U): ContractProcedureBuilder<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
|
|
249
|
+
/**
|
|
250
|
+
* Sets or updates the metadata for the contract.
|
|
251
|
+
* The provided metadata is spared-merged with any existing metadata in the contract.
|
|
252
|
+
*
|
|
253
|
+
* @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
|
|
254
|
+
*/
|
|
160
255
|
meta(meta: TMeta): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
256
|
+
/**
|
|
257
|
+
* Sets or updates the route definition for the contract.
|
|
258
|
+
* The provided route is spared-merged with any existing route in the contract.
|
|
259
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
260
|
+
*
|
|
261
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
|
|
262
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
263
|
+
*/
|
|
161
264
|
route(route: Route): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
265
|
+
/**
|
|
266
|
+
* Defines the input validation schema for the contract.
|
|
267
|
+
*
|
|
268
|
+
* @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Input Validation Docs}
|
|
269
|
+
*/
|
|
162
270
|
input<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInput<U, TOutputSchema, TErrorMap, TMeta>;
|
|
271
|
+
/**
|
|
272
|
+
* Defines the output validation schema for the contract.
|
|
273
|
+
*
|
|
274
|
+
* @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Output Validation Docs}
|
|
275
|
+
*/
|
|
163
276
|
output<U extends AnySchema>(schema: U): ContractProcedureBuilderWithOutput<TInputSchema, U, TErrorMap, TMeta>;
|
|
164
277
|
}
|
|
165
278
|
interface ContractProcedureBuilderWithInput<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
|
|
279
|
+
/**
|
|
280
|
+
* Adds type-safe custom errors to the contract.
|
|
281
|
+
* The provided errors are spared-merged with any existing errors in the contract.
|
|
282
|
+
*
|
|
283
|
+
* @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
|
|
284
|
+
*/
|
|
166
285
|
errors<U extends ErrorMap>(errors: U): ContractProcedureBuilderWithInput<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
|
|
286
|
+
/**
|
|
287
|
+
* Sets or updates the metadata for the contract.
|
|
288
|
+
* The provided metadata is spared-merged with any existing metadata in the contract.
|
|
289
|
+
*
|
|
290
|
+
* @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
|
|
291
|
+
*/
|
|
167
292
|
meta(meta: TMeta): ContractProcedureBuilderWithInput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
293
|
+
/**
|
|
294
|
+
* Sets or updates the route definition for the contract.
|
|
295
|
+
* The provided route is spared-merged with any existing route in the contract.
|
|
296
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
297
|
+
*
|
|
298
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
|
|
299
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
300
|
+
*/
|
|
168
301
|
route(route: Route): ContractProcedureBuilderWithInput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
302
|
+
/**
|
|
303
|
+
* Defines the output validation schema for the contract.
|
|
304
|
+
*
|
|
305
|
+
* @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Output Validation Docs}
|
|
306
|
+
*/
|
|
169
307
|
output<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInputOutput<TInputSchema, U, TErrorMap, TMeta>;
|
|
170
308
|
}
|
|
171
309
|
interface ContractProcedureBuilderWithOutput<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
|
|
310
|
+
/**
|
|
311
|
+
* Adds type-safe custom errors to the contract.
|
|
312
|
+
* The provided errors are spared-merged with any existing errors in the contract.
|
|
313
|
+
*
|
|
314
|
+
* @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
|
|
315
|
+
*/
|
|
172
316
|
errors<U extends ErrorMap>(errors: U): ContractProcedureBuilderWithOutput<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
|
|
317
|
+
/**
|
|
318
|
+
* Sets or updates the metadata for the contract.
|
|
319
|
+
* The provided metadata is spared-merged with any existing metadata in the contract.
|
|
320
|
+
*
|
|
321
|
+
* @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
|
|
322
|
+
*/
|
|
173
323
|
meta(meta: TMeta): ContractProcedureBuilderWithOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
324
|
+
/**
|
|
325
|
+
* Sets or updates the route definition for the contract.
|
|
326
|
+
* The provided route is spared-merged with any existing route in the contract.
|
|
327
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
328
|
+
*
|
|
329
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
|
|
330
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
331
|
+
*/
|
|
174
332
|
route(route: Route): ContractProcedureBuilderWithOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
333
|
+
/**
|
|
334
|
+
* Defines the input validation schema for the contract.
|
|
335
|
+
*
|
|
336
|
+
* @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Input Validation Docs}
|
|
337
|
+
*/
|
|
175
338
|
input<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInputOutput<U, TOutputSchema, TErrorMap, TMeta>;
|
|
176
339
|
}
|
|
177
340
|
interface ContractProcedureBuilderWithInputOutput<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
|
|
341
|
+
/**
|
|
342
|
+
* Adds type-safe custom errors to the contract.
|
|
343
|
+
* The provided errors are spared-merged with any existing errors in the contract.
|
|
344
|
+
*
|
|
345
|
+
* @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
|
|
346
|
+
*/
|
|
178
347
|
errors<U extends ErrorMap>(errors: U): ContractProcedureBuilderWithInputOutput<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
|
|
348
|
+
/**
|
|
349
|
+
* Sets or updates the metadata for the contract.
|
|
350
|
+
* The provided metadata is spared-merged with any existing metadata in the contract.
|
|
351
|
+
*
|
|
352
|
+
* @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
|
|
353
|
+
*/
|
|
179
354
|
meta(meta: TMeta): ContractProcedureBuilderWithInputOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
355
|
+
/**
|
|
356
|
+
* Sets or updates the route definition for the contract.
|
|
357
|
+
* The provided route is spared-merged with any existing route in the contract.
|
|
358
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
359
|
+
*
|
|
360
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
|
|
361
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
362
|
+
*/
|
|
180
363
|
route(route: Route): ContractProcedureBuilderWithInputOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
181
364
|
}
|
|
182
365
|
interface ContractRouterBuilder<TErrorMap extends ErrorMap, TMeta extends Meta> {
|
|
366
|
+
/**
|
|
367
|
+
* This property holds the defined options for the contract router.
|
|
368
|
+
*/
|
|
183
369
|
'~orpc': EnhanceContractRouterOptions<TErrorMap>;
|
|
370
|
+
/**
|
|
371
|
+
* Adds type-safe custom errors to the contract.
|
|
372
|
+
* The provided errors are spared-merged with any existing errors in the contract.
|
|
373
|
+
*
|
|
374
|
+
* @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
|
|
375
|
+
*/
|
|
184
376
|
'errors'<U extends ErrorMap>(errors: U): ContractRouterBuilder<MergedErrorMap<TErrorMap, U>, TMeta>;
|
|
377
|
+
/**
|
|
378
|
+
* Prefixes all procedures in the contract router.
|
|
379
|
+
* The provided prefix is post-appended to any existing router prefix.
|
|
380
|
+
*
|
|
381
|
+
* @note This option does not affect procedures that do not define a path in their route definition.
|
|
382
|
+
*
|
|
383
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing#route-prefixes OpenAPI Route Prefixes Docs}
|
|
384
|
+
*/
|
|
185
385
|
'prefix'(prefix: HTTPPath): ContractRouterBuilder<TErrorMap, TMeta>;
|
|
386
|
+
/**
|
|
387
|
+
* Adds tags to all procedures in the contract router.
|
|
388
|
+
* This helpful when you want to group procedures together in the OpenAPI specification.
|
|
389
|
+
*
|
|
390
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
|
|
391
|
+
*/
|
|
186
392
|
'tag'(...tags: string[]): ContractRouterBuilder<TErrorMap, TMeta>;
|
|
393
|
+
/**
|
|
394
|
+
* Applies all of the previously defined options to the specified contract router.
|
|
395
|
+
*
|
|
396
|
+
* @see {@link https://orpc.unnoq.com/docs/router#extending-router Extending Router Docs}
|
|
397
|
+
*/
|
|
187
398
|
'router'<T extends ContractRouter<TMeta>>(router: T): EnhancedContractRouter<T, TErrorMap>;
|
|
188
399
|
}
|
|
189
400
|
|
|
190
401
|
interface ContractBuilderDef<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>, EnhanceContractRouterOptions<TErrorMap> {
|
|
191
402
|
}
|
|
192
403
|
declare class ContractBuilder<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
|
|
404
|
+
/**
|
|
405
|
+
* This property holds the defined options for the contract.
|
|
406
|
+
*/
|
|
193
407
|
'~orpc': ContractBuilderDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
194
408
|
constructor(def: ContractBuilderDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>);
|
|
195
409
|
/**
|
|
196
|
-
*
|
|
410
|
+
* Sets or overrides the initial meta.
|
|
411
|
+
*
|
|
412
|
+
* @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
|
|
197
413
|
*/
|
|
198
|
-
$meta<U extends Meta>(initialMeta: U): ContractBuilder<TInputSchema, TOutputSchema, TErrorMap, U
|
|
414
|
+
$meta<U extends Meta>(initialMeta: U): ContractBuilder<TInputSchema, TOutputSchema, TErrorMap, U & Record<never, never>>;
|
|
199
415
|
/**
|
|
200
|
-
*
|
|
416
|
+
* Sets or overrides the initial route.
|
|
417
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
418
|
+
*
|
|
419
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
|
|
420
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
201
421
|
*/
|
|
202
422
|
$route(initialRoute: Route): ContractBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
423
|
+
/**
|
|
424
|
+
* Adds type-safe custom errors to the contract.
|
|
425
|
+
* The provided errors are spared-merged with any existing errors in the contract.
|
|
426
|
+
*
|
|
427
|
+
* @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
|
|
428
|
+
*/
|
|
203
429
|
errors<U extends ErrorMap>(errors: U): ContractBuilder<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
|
|
430
|
+
/**
|
|
431
|
+
* Sets or updates the metadata for the contract.
|
|
432
|
+
* The provided metadata is spared-merged with any existing metadata in the contract.
|
|
433
|
+
*
|
|
434
|
+
* @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
|
|
435
|
+
*/
|
|
204
436
|
meta(meta: TMeta): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
437
|
+
/**
|
|
438
|
+
* Sets or updates the route definition for the contract.
|
|
439
|
+
* The provided route is spared-merged with any existing route in the contract.
|
|
440
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
441
|
+
*
|
|
442
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
|
|
443
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
444
|
+
*/
|
|
205
445
|
route(route: Route): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
446
|
+
/**
|
|
447
|
+
* Defines the input validation schema for the contract.
|
|
448
|
+
*
|
|
449
|
+
* @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Input Validation Docs}
|
|
450
|
+
*/
|
|
206
451
|
input<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInput<U, TOutputSchema, TErrorMap, TMeta>;
|
|
452
|
+
/**
|
|
453
|
+
* Defines the output validation schema for the contract.
|
|
454
|
+
*
|
|
455
|
+
* @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Output Validation Docs}
|
|
456
|
+
*/
|
|
207
457
|
output<U extends AnySchema>(schema: U): ContractProcedureBuilderWithOutput<TInputSchema, U, TErrorMap, TMeta>;
|
|
458
|
+
/**
|
|
459
|
+
* Prefixes all procedures in the contract router.
|
|
460
|
+
* The provided prefix is post-appended to any existing router prefix.
|
|
461
|
+
*
|
|
462
|
+
* @note This option does not affect procedures that do not define a path in their route definition.
|
|
463
|
+
*
|
|
464
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing#route-prefixes OpenAPI Route Prefixes Docs}
|
|
465
|
+
*/
|
|
208
466
|
prefix(prefix: HTTPPath): ContractRouterBuilder<TErrorMap, TMeta>;
|
|
467
|
+
/**
|
|
468
|
+
* Adds tags to all procedures in the contract router.
|
|
469
|
+
* This helpful when you want to group procedures together in the OpenAPI specification.
|
|
470
|
+
*
|
|
471
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
|
|
472
|
+
*/
|
|
209
473
|
tag(...tags: string[]): ContractRouterBuilder<TErrorMap, TMeta>;
|
|
474
|
+
/**
|
|
475
|
+
* Applies all of the previously defined options to the specified contract router.
|
|
476
|
+
*
|
|
477
|
+
* @see {@link https://orpc.unnoq.com/docs/router#extending-router Extending Router Docs}
|
|
478
|
+
*/
|
|
210
479
|
router<T extends ContractRouter<TMeta>>(router: T): EnhancedContractRouter<T, TErrorMap>;
|
|
211
480
|
}
|
|
212
481
|
declare const oc: ContractBuilder<Schema<unknown, unknown>, Schema<unknown, unknown>, Record<never, never>, Record<never, never>>;
|
|
@@ -224,6 +493,11 @@ interface EventIteratorSchemaDetails {
|
|
|
224
493
|
yields: AnySchema;
|
|
225
494
|
returns?: AnySchema;
|
|
226
495
|
}
|
|
496
|
+
/**
|
|
497
|
+
* Define schema for an event iterator.
|
|
498
|
+
*
|
|
499
|
+
* @see {@link https://orpc.unnoq.com/docs/event-iterator#validate-event-iterator Validate Event Iterator Docs}
|
|
500
|
+
*/
|
|
227
501
|
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>>;
|
|
228
502
|
declare function getEventIteratorSchemaDetails(schema: AnySchema | undefined): undefined | EventIteratorSchemaDetails;
|
|
229
503
|
|
|
@@ -233,4 +507,5 @@ type ContractRouterClient<TRouter extends AnyContractRouter, TClientContext exte
|
|
|
233
507
|
[K in keyof TRouter]: TRouter[K] extends AnyContractRouter ? ContractRouterClient<TRouter[K], TClientContext> : never;
|
|
234
508
|
};
|
|
235
509
|
|
|
236
|
-
export {
|
|
510
|
+
export { ContractBuilder, ContractProcedure, ValidationError, enhanceContractRouter, enhanceRoute, eventIterator, fallbackContractConfig, getContractRouter, getEventIteratorSchemaDetails, isContractProcedure, mergeErrorMap, mergeMeta, mergePrefix, mergeRoute, mergeTags, oc, prefixRoute, type, unshiftTagRoute };
|
|
511
|
+
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);
|
|
@@ -22,7 +34,6 @@ declare class ValidationError extends Error {
|
|
|
22
34
|
interface ErrorMapItem<TDataSchema extends AnySchema> {
|
|
23
35
|
status?: number;
|
|
24
36
|
message?: string;
|
|
25
|
-
description?: string;
|
|
26
37
|
data?: TDataSchema;
|
|
27
38
|
}
|
|
28
39
|
type ErrorMap = {
|
|
@@ -33,31 +44,69 @@ declare function mergeErrorMap<T1 extends ErrorMap, T2 extends ErrorMap>(errorMa
|
|
|
33
44
|
type ORPCErrorFromErrorMap<TErrorMap extends ErrorMap> = {
|
|
34
45
|
[K in keyof TErrorMap]: K extends string ? TErrorMap[K] extends ErrorMapItem<infer TDataSchema extends Schema<unknown, unknown>> ? ORPCError<K, InferSchemaOutput<TDataSchema>> : never : never;
|
|
35
46
|
}[keyof TErrorMap];
|
|
36
|
-
type ErrorFromErrorMap<TErrorMap extends ErrorMap> =
|
|
47
|
+
type ErrorFromErrorMap<TErrorMap extends ErrorMap> = ORPCErrorFromErrorMap<TErrorMap> | ThrowableError;
|
|
37
48
|
|
|
38
49
|
type Meta = Record<string, any>;
|
|
39
50
|
declare function mergeMeta<T extends Meta>(meta1: T, meta2: T): T;
|
|
40
51
|
|
|
41
|
-
type HTTPPath = `/${string}`;
|
|
42
|
-
type HTTPMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
43
52
|
type InputStructure = 'compact' | 'detailed';
|
|
44
53
|
type OutputStructure = 'compact' | 'detailed';
|
|
45
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
|
+
*/
|
|
46
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
|
+
*/
|
|
47
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
|
+
*/
|
|
48
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
|
+
*/
|
|
49
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
|
+
*/
|
|
50
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
|
+
*/
|
|
51
96
|
tags?: readonly string[];
|
|
52
97
|
/**
|
|
53
98
|
* The status code of the response when the procedure is successful.
|
|
99
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
54
100
|
*
|
|
101
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
|
|
55
102
|
* @default 200
|
|
56
103
|
*/
|
|
57
104
|
successStatus?: number;
|
|
58
105
|
/**
|
|
59
106
|
* The description of the response when the procedure is successful.
|
|
107
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
60
108
|
*
|
|
109
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
|
|
61
110
|
* @default 'OK'
|
|
62
111
|
*/
|
|
63
112
|
successDescription?: string;
|
|
@@ -80,6 +129,7 @@ interface Route {
|
|
|
80
129
|
* }
|
|
81
130
|
* ```
|
|
82
131
|
*
|
|
132
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
83
133
|
* @default 'compact'
|
|
84
134
|
*/
|
|
85
135
|
inputStructure?: InputStructure;
|
|
@@ -102,6 +152,7 @@ interface Route {
|
|
|
102
152
|
* };
|
|
103
153
|
* ```
|
|
104
154
|
*
|
|
155
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
105
156
|
* @default 'compact'
|
|
106
157
|
*/
|
|
107
158
|
outputStructure?: OutputStructure;
|
|
@@ -124,23 +175,55 @@ interface ContractProcedureDef<TInputSchema extends AnySchema, TOutputSchema ext
|
|
|
124
175
|
outputSchema?: TOutputSchema;
|
|
125
176
|
errorMap: TErrorMap;
|
|
126
177
|
}
|
|
178
|
+
/**
|
|
179
|
+
* This class represents a contract procedure.
|
|
180
|
+
*
|
|
181
|
+
* @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#procedure-contract Contract Procedure Docs}
|
|
182
|
+
*/
|
|
127
183
|
declare class ContractProcedure<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> {
|
|
184
|
+
/**
|
|
185
|
+
* This property holds the defined options for the contract procedure.
|
|
186
|
+
*/
|
|
128
187
|
'~orpc': ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
129
188
|
constructor(def: ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>);
|
|
130
189
|
}
|
|
131
190
|
type AnyContractProcedure = ContractProcedure<any, any, any, any>;
|
|
132
191
|
declare function isContractProcedure(item: unknown): item is AnyContractProcedure;
|
|
133
192
|
|
|
193
|
+
/**
|
|
194
|
+
* Represents a contract router, which defines a hierarchical structure of contract procedures.
|
|
195
|
+
*
|
|
196
|
+
* @info A contract procedure is a contract router too.
|
|
197
|
+
* @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#contract-router Contract Router Docs}
|
|
198
|
+
*/
|
|
134
199
|
type ContractRouter<TMeta extends Meta> = ContractProcedure<any, any, any, TMeta> | {
|
|
135
200
|
[k: string]: ContractRouter<TMeta>;
|
|
136
201
|
};
|
|
137
202
|
type AnyContractRouter = ContractRouter<any>;
|
|
203
|
+
/**
|
|
204
|
+
* Infer all inputs of the contract router.
|
|
205
|
+
*
|
|
206
|
+
* @info A contract procedure is a contract router too.
|
|
207
|
+
* @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#utilities Contract Utilities Docs}
|
|
208
|
+
*/
|
|
138
209
|
type InferContractRouterInputs<T extends AnyContractRouter> = T extends ContractProcedure<infer UInputSchema, any, any, any> ? InferSchemaInput<UInputSchema> : {
|
|
139
210
|
[K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterInputs<T[K]> : never;
|
|
140
211
|
};
|
|
212
|
+
/**
|
|
213
|
+
* Infer all outputs of the contract router.
|
|
214
|
+
*
|
|
215
|
+
* @info A contract procedure is a contract router too.
|
|
216
|
+
* @see {@link https://orpc.unnoq.com/docs/contract-first/define-contract#utilities Contract Utilities Docs}
|
|
217
|
+
*/
|
|
141
218
|
type InferContractRouterOutputs<T extends AnyContractRouter> = T extends ContractProcedure<any, infer UOutputSchema, any, any> ? InferSchemaOutput<UOutputSchema> : {
|
|
142
219
|
[K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterOutputs<T[K]> : never;
|
|
143
220
|
};
|
|
221
|
+
/**
|
|
222
|
+
* Infer all errors 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
|
+
*/
|
|
144
227
|
type InferContractRouterErrorMap<T extends AnyContractRouter> = T extends ContractProcedure<any, any, infer UErrorMap, any> ? UErrorMap : {
|
|
145
228
|
[K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterErrorMap<T[K]> : never;
|
|
146
229
|
}[keyof T];
|
|
@@ -156,57 +239,243 @@ interface EnhanceContractRouterOptions<TErrorMap extends ErrorMap> extends Enhan
|
|
|
156
239
|
declare function enhanceContractRouter<T extends AnyContractRouter, TErrorMap extends ErrorMap>(router: T, options: EnhanceContractRouterOptions<TErrorMap>): EnhancedContractRouter<T, TErrorMap>;
|
|
157
240
|
|
|
158
241
|
interface ContractProcedureBuilder<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
|
|
242
|
+
/**
|
|
243
|
+
* Adds type-safe custom errors to the contract.
|
|
244
|
+
* The provided errors are spared-merged with any existing errors in the contract.
|
|
245
|
+
*
|
|
246
|
+
* @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
|
|
247
|
+
*/
|
|
159
248
|
errors<U extends ErrorMap>(errors: U): ContractProcedureBuilder<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
|
|
249
|
+
/**
|
|
250
|
+
* Sets or updates the metadata for the contract.
|
|
251
|
+
* The provided metadata is spared-merged with any existing metadata in the contract.
|
|
252
|
+
*
|
|
253
|
+
* @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
|
|
254
|
+
*/
|
|
160
255
|
meta(meta: TMeta): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
256
|
+
/**
|
|
257
|
+
* Sets or updates the route definition for the contract.
|
|
258
|
+
* The provided route is spared-merged with any existing route in the contract.
|
|
259
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
260
|
+
*
|
|
261
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
|
|
262
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
263
|
+
*/
|
|
161
264
|
route(route: Route): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
265
|
+
/**
|
|
266
|
+
* Defines the input validation schema for the contract.
|
|
267
|
+
*
|
|
268
|
+
* @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Input Validation Docs}
|
|
269
|
+
*/
|
|
162
270
|
input<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInput<U, TOutputSchema, TErrorMap, TMeta>;
|
|
271
|
+
/**
|
|
272
|
+
* Defines the output validation schema for the contract.
|
|
273
|
+
*
|
|
274
|
+
* @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Output Validation Docs}
|
|
275
|
+
*/
|
|
163
276
|
output<U extends AnySchema>(schema: U): ContractProcedureBuilderWithOutput<TInputSchema, U, TErrorMap, TMeta>;
|
|
164
277
|
}
|
|
165
278
|
interface ContractProcedureBuilderWithInput<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
|
|
279
|
+
/**
|
|
280
|
+
* Adds type-safe custom errors to the contract.
|
|
281
|
+
* The provided errors are spared-merged with any existing errors in the contract.
|
|
282
|
+
*
|
|
283
|
+
* @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
|
|
284
|
+
*/
|
|
166
285
|
errors<U extends ErrorMap>(errors: U): ContractProcedureBuilderWithInput<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
|
|
286
|
+
/**
|
|
287
|
+
* Sets or updates the metadata for the contract.
|
|
288
|
+
* The provided metadata is spared-merged with any existing metadata in the contract.
|
|
289
|
+
*
|
|
290
|
+
* @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
|
|
291
|
+
*/
|
|
167
292
|
meta(meta: TMeta): ContractProcedureBuilderWithInput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
293
|
+
/**
|
|
294
|
+
* Sets or updates the route definition for the contract.
|
|
295
|
+
* The provided route is spared-merged with any existing route in the contract.
|
|
296
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
297
|
+
*
|
|
298
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
|
|
299
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
300
|
+
*/
|
|
168
301
|
route(route: Route): ContractProcedureBuilderWithInput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
302
|
+
/**
|
|
303
|
+
* Defines the output validation schema for the contract.
|
|
304
|
+
*
|
|
305
|
+
* @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Output Validation Docs}
|
|
306
|
+
*/
|
|
169
307
|
output<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInputOutput<TInputSchema, U, TErrorMap, TMeta>;
|
|
170
308
|
}
|
|
171
309
|
interface ContractProcedureBuilderWithOutput<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
|
|
310
|
+
/**
|
|
311
|
+
* Adds type-safe custom errors to the contract.
|
|
312
|
+
* The provided errors are spared-merged with any existing errors in the contract.
|
|
313
|
+
*
|
|
314
|
+
* @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
|
|
315
|
+
*/
|
|
172
316
|
errors<U extends ErrorMap>(errors: U): ContractProcedureBuilderWithOutput<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
|
|
317
|
+
/**
|
|
318
|
+
* Sets or updates the metadata for the contract.
|
|
319
|
+
* The provided metadata is spared-merged with any existing metadata in the contract.
|
|
320
|
+
*
|
|
321
|
+
* @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
|
|
322
|
+
*/
|
|
173
323
|
meta(meta: TMeta): ContractProcedureBuilderWithOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
324
|
+
/**
|
|
325
|
+
* Sets or updates the route definition for the contract.
|
|
326
|
+
* The provided route is spared-merged with any existing route in the contract.
|
|
327
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
328
|
+
*
|
|
329
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
|
|
330
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
331
|
+
*/
|
|
174
332
|
route(route: Route): ContractProcedureBuilderWithOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
333
|
+
/**
|
|
334
|
+
* Defines the input validation schema for the contract.
|
|
335
|
+
*
|
|
336
|
+
* @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Input Validation Docs}
|
|
337
|
+
*/
|
|
175
338
|
input<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInputOutput<U, TOutputSchema, TErrorMap, TMeta>;
|
|
176
339
|
}
|
|
177
340
|
interface ContractProcedureBuilderWithInputOutput<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
|
|
341
|
+
/**
|
|
342
|
+
* Adds type-safe custom errors to the contract.
|
|
343
|
+
* The provided errors are spared-merged with any existing errors in the contract.
|
|
344
|
+
*
|
|
345
|
+
* @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
|
|
346
|
+
*/
|
|
178
347
|
errors<U extends ErrorMap>(errors: U): ContractProcedureBuilderWithInputOutput<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
|
|
348
|
+
/**
|
|
349
|
+
* Sets or updates the metadata for the contract.
|
|
350
|
+
* The provided metadata is spared-merged with any existing metadata in the contract.
|
|
351
|
+
*
|
|
352
|
+
* @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
|
|
353
|
+
*/
|
|
179
354
|
meta(meta: TMeta): ContractProcedureBuilderWithInputOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
355
|
+
/**
|
|
356
|
+
* Sets or updates the route definition for the contract.
|
|
357
|
+
* The provided route is spared-merged with any existing route in the contract.
|
|
358
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
359
|
+
*
|
|
360
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
|
|
361
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
362
|
+
*/
|
|
180
363
|
route(route: Route): ContractProcedureBuilderWithInputOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
181
364
|
}
|
|
182
365
|
interface ContractRouterBuilder<TErrorMap extends ErrorMap, TMeta extends Meta> {
|
|
366
|
+
/**
|
|
367
|
+
* This property holds the defined options for the contract router.
|
|
368
|
+
*/
|
|
183
369
|
'~orpc': EnhanceContractRouterOptions<TErrorMap>;
|
|
370
|
+
/**
|
|
371
|
+
* Adds type-safe custom errors to the contract.
|
|
372
|
+
* The provided errors are spared-merged with any existing errors in the contract.
|
|
373
|
+
*
|
|
374
|
+
* @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
|
|
375
|
+
*/
|
|
184
376
|
'errors'<U extends ErrorMap>(errors: U): ContractRouterBuilder<MergedErrorMap<TErrorMap, U>, TMeta>;
|
|
377
|
+
/**
|
|
378
|
+
* Prefixes all procedures in the contract router.
|
|
379
|
+
* The provided prefix is post-appended to any existing router prefix.
|
|
380
|
+
*
|
|
381
|
+
* @note This option does not affect procedures that do not define a path in their route definition.
|
|
382
|
+
*
|
|
383
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing#route-prefixes OpenAPI Route Prefixes Docs}
|
|
384
|
+
*/
|
|
185
385
|
'prefix'(prefix: HTTPPath): ContractRouterBuilder<TErrorMap, TMeta>;
|
|
386
|
+
/**
|
|
387
|
+
* Adds tags to all procedures in the contract router.
|
|
388
|
+
* This helpful when you want to group procedures together in the OpenAPI specification.
|
|
389
|
+
*
|
|
390
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
|
|
391
|
+
*/
|
|
186
392
|
'tag'(...tags: string[]): ContractRouterBuilder<TErrorMap, TMeta>;
|
|
393
|
+
/**
|
|
394
|
+
* Applies all of the previously defined options to the specified contract router.
|
|
395
|
+
*
|
|
396
|
+
* @see {@link https://orpc.unnoq.com/docs/router#extending-router Extending Router Docs}
|
|
397
|
+
*/
|
|
187
398
|
'router'<T extends ContractRouter<TMeta>>(router: T): EnhancedContractRouter<T, TErrorMap>;
|
|
188
399
|
}
|
|
189
400
|
|
|
190
401
|
interface ContractBuilderDef<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>, EnhanceContractRouterOptions<TErrorMap> {
|
|
191
402
|
}
|
|
192
403
|
declare class ContractBuilder<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
|
|
404
|
+
/**
|
|
405
|
+
* This property holds the defined options for the contract.
|
|
406
|
+
*/
|
|
193
407
|
'~orpc': ContractBuilderDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
194
408
|
constructor(def: ContractBuilderDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>);
|
|
195
409
|
/**
|
|
196
|
-
*
|
|
410
|
+
* Sets or overrides the initial meta.
|
|
411
|
+
*
|
|
412
|
+
* @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
|
|
197
413
|
*/
|
|
198
|
-
$meta<U extends Meta>(initialMeta: U): ContractBuilder<TInputSchema, TOutputSchema, TErrorMap, U
|
|
414
|
+
$meta<U extends Meta>(initialMeta: U): ContractBuilder<TInputSchema, TOutputSchema, TErrorMap, U & Record<never, never>>;
|
|
199
415
|
/**
|
|
200
|
-
*
|
|
416
|
+
* Sets or overrides the initial route.
|
|
417
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
418
|
+
*
|
|
419
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
|
|
420
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
201
421
|
*/
|
|
202
422
|
$route(initialRoute: Route): ContractBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
423
|
+
/**
|
|
424
|
+
* Adds type-safe custom errors to the contract.
|
|
425
|
+
* The provided errors are spared-merged with any existing errors in the contract.
|
|
426
|
+
*
|
|
427
|
+
* @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
|
|
428
|
+
*/
|
|
203
429
|
errors<U extends ErrorMap>(errors: U): ContractBuilder<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
|
|
430
|
+
/**
|
|
431
|
+
* Sets or updates the metadata for the contract.
|
|
432
|
+
* The provided metadata is spared-merged with any existing metadata in the contract.
|
|
433
|
+
*
|
|
434
|
+
* @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
|
|
435
|
+
*/
|
|
204
436
|
meta(meta: TMeta): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
437
|
+
/**
|
|
438
|
+
* Sets or updates the route definition for the contract.
|
|
439
|
+
* The provided route is spared-merged with any existing route in the contract.
|
|
440
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
441
|
+
*
|
|
442
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
|
|
443
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
444
|
+
*/
|
|
205
445
|
route(route: Route): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
446
|
+
/**
|
|
447
|
+
* Defines the input validation schema for the contract.
|
|
448
|
+
*
|
|
449
|
+
* @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Input Validation Docs}
|
|
450
|
+
*/
|
|
206
451
|
input<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInput<U, TOutputSchema, TErrorMap, TMeta>;
|
|
452
|
+
/**
|
|
453
|
+
* Defines the output validation schema for the contract.
|
|
454
|
+
*
|
|
455
|
+
* @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Output Validation Docs}
|
|
456
|
+
*/
|
|
207
457
|
output<U extends AnySchema>(schema: U): ContractProcedureBuilderWithOutput<TInputSchema, U, TErrorMap, TMeta>;
|
|
458
|
+
/**
|
|
459
|
+
* Prefixes all procedures in the contract router.
|
|
460
|
+
* The provided prefix is post-appended to any existing router prefix.
|
|
461
|
+
*
|
|
462
|
+
* @note This option does not affect procedures that do not define a path in their route definition.
|
|
463
|
+
*
|
|
464
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing#route-prefixes OpenAPI Route Prefixes Docs}
|
|
465
|
+
*/
|
|
208
466
|
prefix(prefix: HTTPPath): ContractRouterBuilder<TErrorMap, TMeta>;
|
|
467
|
+
/**
|
|
468
|
+
* Adds tags to all procedures in the contract router.
|
|
469
|
+
* This helpful when you want to group procedures together in the OpenAPI specification.
|
|
470
|
+
*
|
|
471
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
|
|
472
|
+
*/
|
|
209
473
|
tag(...tags: string[]): ContractRouterBuilder<TErrorMap, TMeta>;
|
|
474
|
+
/**
|
|
475
|
+
* Applies all of the previously defined options to the specified contract router.
|
|
476
|
+
*
|
|
477
|
+
* @see {@link https://orpc.unnoq.com/docs/router#extending-router Extending Router Docs}
|
|
478
|
+
*/
|
|
210
479
|
router<T extends ContractRouter<TMeta>>(router: T): EnhancedContractRouter<T, TErrorMap>;
|
|
211
480
|
}
|
|
212
481
|
declare const oc: ContractBuilder<Schema<unknown, unknown>, Schema<unknown, unknown>, Record<never, never>, Record<never, never>>;
|
|
@@ -224,6 +493,11 @@ interface EventIteratorSchemaDetails {
|
|
|
224
493
|
yields: AnySchema;
|
|
225
494
|
returns?: AnySchema;
|
|
226
495
|
}
|
|
496
|
+
/**
|
|
497
|
+
* Define schema for an event iterator.
|
|
498
|
+
*
|
|
499
|
+
* @see {@link https://orpc.unnoq.com/docs/event-iterator#validate-event-iterator Validate Event Iterator Docs}
|
|
500
|
+
*/
|
|
227
501
|
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>>;
|
|
228
502
|
declare function getEventIteratorSchemaDetails(schema: AnySchema | undefined): undefined | EventIteratorSchemaDetails;
|
|
229
503
|
|
|
@@ -233,4 +507,5 @@ type ContractRouterClient<TRouter extends AnyContractRouter, TClientContext exte
|
|
|
233
507
|
[K in keyof TRouter]: TRouter[K] extends AnyContractRouter ? ContractRouterClient<TRouter[K], TClientContext> : never;
|
|
234
508
|
};
|
|
235
509
|
|
|
236
|
-
export {
|
|
510
|
+
export { ContractBuilder, ContractProcedure, ValidationError, enhanceContractRouter, enhanceRoute, eventIterator, fallbackContractConfig, getContractRouter, getEventIteratorSchemaDetails, isContractProcedure, mergeErrorMap, mergeMeta, mergePrefix, mergeRoute, mergeTags, oc, prefixRoute, type, unshiftTagRoute };
|
|
511
|
+
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
|
|
24
|
-
throw new Error("[ContractProcedure]
|
|
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
|
|
27
|
-
throw new Error("[ContractProcedure]
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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.
|
|
4
|
+
"version": "0.0.0-next.d5f6b77",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://orpc.unnoq.com",
|
|
7
7
|
"repository": {
|
|
@@ -25,13 +25,12 @@
|
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@standard-schema/spec": "^1.0.0",
|
|
28
|
-
"@orpc/
|
|
29
|
-
"@orpc/shared": "0.0.0-next.
|
|
30
|
-
"@orpc/client": "0.0.0-next.d452413"
|
|
28
|
+
"@orpc/client": "0.0.0-next.d5f6b77",
|
|
29
|
+
"@orpc/shared": "0.0.0-next.d5f6b77"
|
|
31
30
|
},
|
|
32
31
|
"devDependencies": {
|
|
33
|
-
"arktype": "2.
|
|
34
|
-
"valibot": "1.0.0
|
|
32
|
+
"arktype": "2.1.20",
|
|
33
|
+
"valibot": "1.0.0",
|
|
35
34
|
"zod": "^3.24.2"
|
|
36
35
|
},
|
|
37
36
|
"scripts": {
|