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