@orpc/contract 0.0.0-next.62795ca → 0.0.0-next.6464764
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 +23 -22
- package/dist/index.d.mts +221 -149
- package/dist/index.d.ts +221 -149
- package/dist/index.mjs +109 -35
- package/dist/plugins/index.d.mts +43 -0
- package/dist/plugins/index.d.ts +43 -0
- package/dist/plugins/index.mjs +81 -0
- package/dist/shared/contract.CvRxURhn.d.mts +254 -0
- package/dist/shared/contract.CvRxURhn.d.ts +254 -0
- package/dist/shared/contract.D_dZrO__.mjs +53 -0
- package/package.json +12 -7
package/dist/index.d.ts
CHANGED
|
@@ -1,211 +1,268 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export { ORPCError } from '@orpc/client';
|
|
3
|
-
import {
|
|
4
|
-
|
|
1
|
+
import { HTTPPath, HTTPMethod, ClientContext, Client } from '@orpc/client';
|
|
2
|
+
export { HTTPMethod, HTTPPath, ORPCError } from '@orpc/client';
|
|
3
|
+
import { E as ErrorMap, a as EnhanceRouteOptions, A as AnyContractRouter, C as ContractProcedure, M as MergedErrorMap, b as AnySchema, c as Meta, R as Route, d as ContractRouter, e as ContractProcedureDef, S as Schema, I as InputStructure, O as OutputStructure, f as InferSchemaInput, g as InferSchemaOutput, h as ErrorFromErrorMap, i as SchemaIssue } from './shared/contract.CvRxURhn.js';
|
|
4
|
+
export { o as AnyContractProcedure, k as ErrorMapItem, z as InferContractRouterErrorMap, x as InferContractRouterInputs, B as InferContractRouterMeta, y as InferContractRouterOutputs, l as ORPCErrorFromErrorMap, T as TypeRest, j as ValidationError, V as ValidationErrorOptions, w as enhanceRoute, p as isContractProcedure, m as mergeErrorMap, n as mergeMeta, s as mergePrefix, q as mergeRoute, t as mergeTags, r as prefixRoute, D as type, u as unshiftTagRoute, v as validateORPCError } from './shared/contract.CvRxURhn.js';
|
|
5
|
+
import { AsyncIteratorClass } from '@orpc/shared';
|
|
6
|
+
export { AsyncIteratorClass, Registry, ThrowableError } from '@orpc/shared';
|
|
7
|
+
export { OpenAPIV3_1 as OpenAPI } from 'openapi-types';
|
|
8
|
+
import '@standard-schema/spec';
|
|
5
9
|
|
|
6
|
-
|
|
7
|
-
type
|
|
8
|
-
|
|
9
|
-
type InferSchemaInput<T extends AnySchema> = T extends StandardSchemaV1<infer UInput, any> ? UInput : never;
|
|
10
|
-
type InferSchemaOutput<T extends AnySchema> = T extends StandardSchemaV1<any, infer UOutput> ? UOutput : never;
|
|
11
|
-
type TypeRest<TInput, TOutput> = [map: (input: TInput) => Promisable<TOutput>] | (IsEqual<TInput, TOutput> extends true ? [] : never);
|
|
12
|
-
declare function type<TInput, TOutput = TInput>(...[map]: TypeRest<TInput, TOutput>): Schema<TInput, TOutput>;
|
|
13
|
-
|
|
14
|
-
interface ValidationErrorOptions extends ErrorOptions {
|
|
15
|
-
message: string;
|
|
16
|
-
issues: readonly SchemaIssue[];
|
|
17
|
-
}
|
|
18
|
-
declare class ValidationError extends Error {
|
|
19
|
-
readonly issues: readonly SchemaIssue[];
|
|
20
|
-
constructor(options: ValidationErrorOptions);
|
|
21
|
-
}
|
|
22
|
-
interface ErrorMapItem<TDataSchema extends AnySchema> {
|
|
23
|
-
status?: number;
|
|
24
|
-
message?: string;
|
|
25
|
-
data?: TDataSchema;
|
|
26
|
-
}
|
|
27
|
-
type ErrorMap = {
|
|
28
|
-
[key in ORPCErrorCode]?: ErrorMapItem<AnySchema>;
|
|
10
|
+
declare function getContractRouter(router: AnyContractRouter, path: readonly string[]): AnyContractRouter | undefined;
|
|
11
|
+
type EnhancedContractRouter<T extends AnyContractRouter, TErrorMap extends ErrorMap> = T extends ContractProcedure<infer UInputSchema, infer UOutputSchema, infer UErrors, infer UMeta> ? ContractProcedure<UInputSchema, UOutputSchema, MergedErrorMap<TErrorMap, UErrors>, UMeta> : {
|
|
12
|
+
[K in keyof T]: T[K] extends AnyContractRouter ? EnhancedContractRouter<T[K], TErrorMap> : never;
|
|
29
13
|
};
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
14
|
+
interface EnhanceContractRouterOptions<TErrorMap extends ErrorMap> extends EnhanceRouteOptions {
|
|
15
|
+
errorMap: TErrorMap;
|
|
16
|
+
}
|
|
17
|
+
declare function enhanceContractRouter<T extends AnyContractRouter, TErrorMap extends ErrorMap>(router: T, options: EnhanceContractRouterOptions<TErrorMap>): EnhancedContractRouter<T, TErrorMap>;
|
|
18
|
+
/**
|
|
19
|
+
* Minify a contract router into a smaller object.
|
|
20
|
+
*
|
|
21
|
+
* 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.
|
|
22
|
+
* This reduces the size of the contract and helps prevent leaking internal details of the router to the client.
|
|
23
|
+
*
|
|
24
|
+
* @see {@link https://orpc.unnoq.com/docs/contract-first/router-to-contract#minify-export-the-contract-router-for-the-client Router to Contract Docs}
|
|
25
|
+
*/
|
|
26
|
+
declare function minifyContractRouter(router: AnyContractRouter): AnyContractRouter;
|
|
39
27
|
|
|
40
|
-
|
|
41
|
-
type HTTPMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
42
|
-
type InputStructure = 'compact' | 'detailed';
|
|
43
|
-
type OutputStructure = 'compact' | 'detailed';
|
|
44
|
-
interface Route {
|
|
45
|
-
method?: HTTPMethod;
|
|
46
|
-
path?: HTTPPath;
|
|
47
|
-
summary?: string;
|
|
48
|
-
description?: string;
|
|
49
|
-
deprecated?: boolean;
|
|
50
|
-
tags?: readonly string[];
|
|
28
|
+
interface ContractProcedureBuilder<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
|
|
51
29
|
/**
|
|
52
|
-
*
|
|
30
|
+
* Adds type-safe custom errors to the contract.
|
|
31
|
+
* The provided errors are spared-merged with any existing errors in the contract.
|
|
53
32
|
*
|
|
54
|
-
* @
|
|
33
|
+
* @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
|
|
55
34
|
*/
|
|
56
|
-
|
|
35
|
+
errors<U extends ErrorMap>(errors: U): ContractProcedureBuilder<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
|
|
57
36
|
/**
|
|
58
|
-
*
|
|
37
|
+
* Sets or updates the metadata for the contract.
|
|
38
|
+
* The provided metadata is spared-merged with any existing metadata in the contract.
|
|
59
39
|
*
|
|
60
|
-
* @
|
|
40
|
+
* @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
|
|
61
41
|
*/
|
|
62
|
-
|
|
42
|
+
meta(meta: TMeta): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
63
43
|
/**
|
|
64
|
-
*
|
|
65
|
-
*
|
|
66
|
-
*
|
|
67
|
-
* Combines `params` and either `query` or `body` (depending on the HTTP method) into a single object.
|
|
44
|
+
* Sets or updates the route definition for the contract.
|
|
45
|
+
* The provided route is spared-merged with any existing route in the contract.
|
|
46
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
68
47
|
*
|
|
69
|
-
* @
|
|
70
|
-
*
|
|
71
|
-
*
|
|
72
|
-
* Example:
|
|
73
|
-
* ```ts
|
|
74
|
-
* const input = {
|
|
75
|
-
* params: { id: 1 },
|
|
76
|
-
* query: { search: 'hello' },
|
|
77
|
-
* headers: { 'Content-Type': 'application/json' },
|
|
78
|
-
* body: { name: 'John' },
|
|
79
|
-
* }
|
|
80
|
-
* ```
|
|
81
|
-
*
|
|
82
|
-
* @default 'compact'
|
|
48
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
|
|
49
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
83
50
|
*/
|
|
84
|
-
|
|
51
|
+
route(route: Route): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
85
52
|
/**
|
|
86
|
-
*
|
|
87
|
-
*
|
|
88
|
-
* @option 'compact'
|
|
89
|
-
* Includes only the body data, encoded directly in the response.
|
|
53
|
+
* Defines the input validation schema for the contract.
|
|
90
54
|
*
|
|
91
|
-
* @
|
|
92
|
-
* Separates the output into `headers` and `body` fields.
|
|
93
|
-
* - `headers`: Custom headers to merge with the response headers.
|
|
94
|
-
* - `body`: The response data.
|
|
95
|
-
*
|
|
96
|
-
* Example:
|
|
97
|
-
* ```ts
|
|
98
|
-
* const output = {
|
|
99
|
-
* headers: { 'x-custom-header': 'value' },
|
|
100
|
-
* body: { message: 'Hello, world!' },
|
|
101
|
-
* };
|
|
102
|
-
* ```
|
|
103
|
-
*
|
|
104
|
-
* @default 'compact'
|
|
55
|
+
* @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Input Validation Docs}
|
|
105
56
|
*/
|
|
106
|
-
outputStructure?: OutputStructure;
|
|
107
|
-
}
|
|
108
|
-
declare function mergeRoute(a: Route, b: Route): Route;
|
|
109
|
-
declare function prefixRoute(route: Route, prefix: HTTPPath): Route;
|
|
110
|
-
declare function unshiftTagRoute(route: Route, tags: readonly string[]): Route;
|
|
111
|
-
declare function mergePrefix(a: HTTPPath | undefined, b: HTTPPath): HTTPPath;
|
|
112
|
-
declare function mergeTags(a: readonly string[] | undefined, b: readonly string[]): readonly string[];
|
|
113
|
-
interface EnhanceRouteOptions {
|
|
114
|
-
prefix?: HTTPPath;
|
|
115
|
-
tags?: readonly string[];
|
|
116
|
-
}
|
|
117
|
-
declare function enhanceRoute(route: Route, options: EnhanceRouteOptions): Route;
|
|
118
|
-
|
|
119
|
-
interface ContractProcedureDef<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> {
|
|
120
|
-
meta: TMeta;
|
|
121
|
-
route: Route;
|
|
122
|
-
inputSchema?: TInputSchema;
|
|
123
|
-
outputSchema?: TOutputSchema;
|
|
124
|
-
errorMap: TErrorMap;
|
|
125
|
-
}
|
|
126
|
-
declare class ContractProcedure<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> {
|
|
127
|
-
'~orpc': ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
128
|
-
constructor(def: ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>);
|
|
129
|
-
}
|
|
130
|
-
type AnyContractProcedure = ContractProcedure<any, any, any, any>;
|
|
131
|
-
declare function isContractProcedure(item: unknown): item is AnyContractProcedure;
|
|
132
|
-
|
|
133
|
-
type ContractRouter<TMeta extends Meta> = ContractProcedure<any, any, any, TMeta> | {
|
|
134
|
-
[k: string]: ContractRouter<TMeta>;
|
|
135
|
-
};
|
|
136
|
-
type AnyContractRouter = ContractRouter<any>;
|
|
137
|
-
type InferContractRouterInputs<T extends AnyContractRouter> = T extends ContractProcedure<infer UInputSchema, any, any, any> ? InferSchemaInput<UInputSchema> : {
|
|
138
|
-
[K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterInputs<T[K]> : never;
|
|
139
|
-
};
|
|
140
|
-
type InferContractRouterOutputs<T extends AnyContractRouter> = T extends ContractProcedure<any, infer UOutputSchema, any, any> ? InferSchemaOutput<UOutputSchema> : {
|
|
141
|
-
[K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterOutputs<T[K]> : never;
|
|
142
|
-
};
|
|
143
|
-
type InferContractRouterErrorMap<T extends AnyContractRouter> = T extends ContractProcedure<any, any, infer UErrorMap, any> ? UErrorMap : {
|
|
144
|
-
[K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterErrorMap<T[K]> : never;
|
|
145
|
-
}[keyof T];
|
|
146
|
-
type InferContractRouterMeta<T extends AnyContractRouter> = T extends ContractRouter<infer UMeta> ? UMeta : never;
|
|
147
|
-
|
|
148
|
-
declare function getContractRouter(router: AnyContractRouter, path: readonly string[]): AnyContractRouter | undefined;
|
|
149
|
-
type EnhancedContractRouter<T extends AnyContractRouter, TErrorMap extends ErrorMap> = T extends ContractProcedure<infer UInputSchema, infer UOutputSchema, infer UErrors, infer UMeta> ? ContractProcedure<UInputSchema, UOutputSchema, MergedErrorMap<TErrorMap, UErrors>, UMeta> : {
|
|
150
|
-
[K in keyof T]: T[K] extends AnyContractRouter ? EnhancedContractRouter<T[K], TErrorMap> : never;
|
|
151
|
-
};
|
|
152
|
-
interface EnhanceContractRouterOptions<TErrorMap extends ErrorMap> extends EnhanceRouteOptions {
|
|
153
|
-
errorMap: TErrorMap;
|
|
154
|
-
}
|
|
155
|
-
declare function enhanceContractRouter<T extends AnyContractRouter, TErrorMap extends ErrorMap>(router: T, options: EnhanceContractRouterOptions<TErrorMap>): EnhancedContractRouter<T, TErrorMap>;
|
|
156
|
-
|
|
157
|
-
interface ContractProcedureBuilder<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
|
|
158
|
-
errors<U extends ErrorMap>(errors: U): ContractProcedureBuilder<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
|
|
159
|
-
meta(meta: TMeta): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
160
|
-
route(route: Route): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
161
57
|
input<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInput<U, TOutputSchema, TErrorMap, TMeta>;
|
|
58
|
+
/**
|
|
59
|
+
* Defines the output validation schema for the contract.
|
|
60
|
+
*
|
|
61
|
+
* @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Output Validation Docs}
|
|
62
|
+
*/
|
|
162
63
|
output<U extends AnySchema>(schema: U): ContractProcedureBuilderWithOutput<TInputSchema, U, TErrorMap, TMeta>;
|
|
163
64
|
}
|
|
164
65
|
interface ContractProcedureBuilderWithInput<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
|
|
66
|
+
/**
|
|
67
|
+
* Adds type-safe custom errors to the contract.
|
|
68
|
+
* The provided errors are spared-merged with any existing errors in the contract.
|
|
69
|
+
*
|
|
70
|
+
* @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
|
|
71
|
+
*/
|
|
165
72
|
errors<U extends ErrorMap>(errors: U): ContractProcedureBuilderWithInput<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
|
|
73
|
+
/**
|
|
74
|
+
* Sets or updates the metadata for the contract.
|
|
75
|
+
* The provided metadata is spared-merged with any existing metadata in the contract.
|
|
76
|
+
*
|
|
77
|
+
* @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
|
|
78
|
+
*/
|
|
166
79
|
meta(meta: TMeta): ContractProcedureBuilderWithInput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
80
|
+
/**
|
|
81
|
+
* Sets or updates the route definition for the contract.
|
|
82
|
+
* The provided route is spared-merged with any existing route in the contract.
|
|
83
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
84
|
+
*
|
|
85
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
|
|
86
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
87
|
+
*/
|
|
167
88
|
route(route: Route): ContractProcedureBuilderWithInput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
89
|
+
/**
|
|
90
|
+
* Defines the output validation schema for the contract.
|
|
91
|
+
*
|
|
92
|
+
* @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Output Validation Docs}
|
|
93
|
+
*/
|
|
168
94
|
output<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInputOutput<TInputSchema, U, TErrorMap, TMeta>;
|
|
169
95
|
}
|
|
170
96
|
interface ContractProcedureBuilderWithOutput<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
|
|
97
|
+
/**
|
|
98
|
+
* Adds type-safe custom errors to the contract.
|
|
99
|
+
* The provided errors are spared-merged with any existing errors in the contract.
|
|
100
|
+
*
|
|
101
|
+
* @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
|
|
102
|
+
*/
|
|
171
103
|
errors<U extends ErrorMap>(errors: U): ContractProcedureBuilderWithOutput<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
|
|
104
|
+
/**
|
|
105
|
+
* Sets or updates the metadata for the contract.
|
|
106
|
+
* The provided metadata is spared-merged with any existing metadata in the contract.
|
|
107
|
+
*
|
|
108
|
+
* @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
|
|
109
|
+
*/
|
|
172
110
|
meta(meta: TMeta): ContractProcedureBuilderWithOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
111
|
+
/**
|
|
112
|
+
* Sets or updates the route definition for the contract.
|
|
113
|
+
* The provided route is spared-merged with any existing route in the contract.
|
|
114
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
115
|
+
*
|
|
116
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
|
|
117
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
118
|
+
*/
|
|
173
119
|
route(route: Route): ContractProcedureBuilderWithOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
120
|
+
/**
|
|
121
|
+
* Defines the input validation schema for the contract.
|
|
122
|
+
*
|
|
123
|
+
* @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Input Validation Docs}
|
|
124
|
+
*/
|
|
174
125
|
input<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInputOutput<U, TOutputSchema, TErrorMap, TMeta>;
|
|
175
126
|
}
|
|
176
127
|
interface ContractProcedureBuilderWithInputOutput<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
|
|
128
|
+
/**
|
|
129
|
+
* Adds type-safe custom errors to the contract.
|
|
130
|
+
* The provided errors are spared-merged with any existing errors in the contract.
|
|
131
|
+
*
|
|
132
|
+
* @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
|
|
133
|
+
*/
|
|
177
134
|
errors<U extends ErrorMap>(errors: U): ContractProcedureBuilderWithInputOutput<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
|
|
135
|
+
/**
|
|
136
|
+
* Sets or updates the metadata for the contract.
|
|
137
|
+
* The provided metadata is spared-merged with any existing metadata in the contract.
|
|
138
|
+
*
|
|
139
|
+
* @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
|
|
140
|
+
*/
|
|
178
141
|
meta(meta: TMeta): ContractProcedureBuilderWithInputOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
142
|
+
/**
|
|
143
|
+
* Sets or updates the route definition for the contract.
|
|
144
|
+
* The provided route is spared-merged with any existing route in the contract.
|
|
145
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
146
|
+
*
|
|
147
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
|
|
148
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
149
|
+
*/
|
|
179
150
|
route(route: Route): ContractProcedureBuilderWithInputOutput<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
180
151
|
}
|
|
181
152
|
interface ContractRouterBuilder<TErrorMap extends ErrorMap, TMeta extends Meta> {
|
|
153
|
+
/**
|
|
154
|
+
* This property holds the defined options for the contract router.
|
|
155
|
+
*/
|
|
182
156
|
'~orpc': EnhanceContractRouterOptions<TErrorMap>;
|
|
157
|
+
/**
|
|
158
|
+
* Adds type-safe custom errors to the contract.
|
|
159
|
+
* The provided errors are spared-merged with any existing errors in the contract.
|
|
160
|
+
*
|
|
161
|
+
* @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
|
|
162
|
+
*/
|
|
183
163
|
'errors'<U extends ErrorMap>(errors: U): ContractRouterBuilder<MergedErrorMap<TErrorMap, U>, TMeta>;
|
|
164
|
+
/**
|
|
165
|
+
* Prefixes all procedures in the contract router.
|
|
166
|
+
* The provided prefix is post-appended to any existing router prefix.
|
|
167
|
+
*
|
|
168
|
+
* @note This option does not affect procedures that do not define a path in their route definition.
|
|
169
|
+
*
|
|
170
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing#route-prefixes OpenAPI Route Prefixes Docs}
|
|
171
|
+
*/
|
|
184
172
|
'prefix'(prefix: HTTPPath): ContractRouterBuilder<TErrorMap, TMeta>;
|
|
173
|
+
/**
|
|
174
|
+
* Adds tags to all procedures in the contract router.
|
|
175
|
+
* This helpful when you want to group procedures together in the OpenAPI specification.
|
|
176
|
+
*
|
|
177
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
|
|
178
|
+
*/
|
|
185
179
|
'tag'(...tags: string[]): ContractRouterBuilder<TErrorMap, TMeta>;
|
|
180
|
+
/**
|
|
181
|
+
* Applies all of the previously defined options to the specified contract router.
|
|
182
|
+
*
|
|
183
|
+
* @see {@link https://orpc.unnoq.com/docs/router#extending-router Extending Router Docs}
|
|
184
|
+
*/
|
|
186
185
|
'router'<T extends ContractRouter<TMeta>>(router: T): EnhancedContractRouter<T, TErrorMap>;
|
|
187
186
|
}
|
|
188
187
|
|
|
189
188
|
interface ContractBuilderDef<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>, EnhanceContractRouterOptions<TErrorMap> {
|
|
190
189
|
}
|
|
191
190
|
declare class ContractBuilder<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> extends ContractProcedure<TInputSchema, TOutputSchema, TErrorMap, TMeta> {
|
|
191
|
+
/**
|
|
192
|
+
* This property holds the defined options for the contract.
|
|
193
|
+
*/
|
|
192
194
|
'~orpc': ContractBuilderDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
193
195
|
constructor(def: ContractBuilderDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>);
|
|
194
196
|
/**
|
|
195
|
-
*
|
|
197
|
+
* Sets or overrides the initial meta.
|
|
198
|
+
*
|
|
199
|
+
* @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
|
|
196
200
|
*/
|
|
197
201
|
$meta<U extends Meta>(initialMeta: U): ContractBuilder<TInputSchema, TOutputSchema, TErrorMap, U & Record<never, never>>;
|
|
198
202
|
/**
|
|
199
|
-
*
|
|
203
|
+
* Sets or overrides the initial route.
|
|
204
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
205
|
+
*
|
|
206
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
|
|
207
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
200
208
|
*/
|
|
201
209
|
$route(initialRoute: Route): ContractBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
210
|
+
/**
|
|
211
|
+
* Adds type-safe custom errors to the contract.
|
|
212
|
+
* The provided errors are spared-merged with any existing errors in the contract.
|
|
213
|
+
*
|
|
214
|
+
* @see {@link https://orpc.unnoq.com/docs/error-handling#type%E2%80%90safe-error-handling Type-Safe Error Handling Docs}
|
|
215
|
+
*/
|
|
202
216
|
errors<U extends ErrorMap>(errors: U): ContractBuilder<TInputSchema, TOutputSchema, MergedErrorMap<TErrorMap, U>, TMeta>;
|
|
217
|
+
/**
|
|
218
|
+
* Sets or updates the metadata for the contract.
|
|
219
|
+
* The provided metadata is spared-merged with any existing metadata in the contract.
|
|
220
|
+
*
|
|
221
|
+
* @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
|
|
222
|
+
*/
|
|
203
223
|
meta(meta: TMeta): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
224
|
+
/**
|
|
225
|
+
* Sets or updates the route definition for the contract.
|
|
226
|
+
* The provided route is spared-merged with any existing route in the contract.
|
|
227
|
+
* This option is typically relevant when integrating with OpenAPI.
|
|
228
|
+
*
|
|
229
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
|
|
230
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
231
|
+
*/
|
|
204
232
|
route(route: Route): ContractProcedureBuilder<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
|
|
233
|
+
/**
|
|
234
|
+
* Defines the input validation schema for the contract.
|
|
235
|
+
*
|
|
236
|
+
* @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Input Validation Docs}
|
|
237
|
+
*/
|
|
205
238
|
input<U extends AnySchema>(schema: U): ContractProcedureBuilderWithInput<U, TOutputSchema, TErrorMap, TMeta>;
|
|
239
|
+
/**
|
|
240
|
+
* Defines the output validation schema for the contract.
|
|
241
|
+
*
|
|
242
|
+
* @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Output Validation Docs}
|
|
243
|
+
*/
|
|
206
244
|
output<U extends AnySchema>(schema: U): ContractProcedureBuilderWithOutput<TInputSchema, U, TErrorMap, TMeta>;
|
|
245
|
+
/**
|
|
246
|
+
* Prefixes all procedures in the contract router.
|
|
247
|
+
* The provided prefix is post-appended to any existing router prefix.
|
|
248
|
+
*
|
|
249
|
+
* @note This option does not affect procedures that do not define a path in their route definition.
|
|
250
|
+
*
|
|
251
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/routing#route-prefixes OpenAPI Route Prefixes Docs}
|
|
252
|
+
*/
|
|
207
253
|
prefix(prefix: HTTPPath): ContractRouterBuilder<TErrorMap, TMeta>;
|
|
254
|
+
/**
|
|
255
|
+
* Adds tags to all procedures in the contract router.
|
|
256
|
+
* This helpful when you want to group procedures together in the OpenAPI specification.
|
|
257
|
+
*
|
|
258
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
|
|
259
|
+
*/
|
|
208
260
|
tag(...tags: string[]): ContractRouterBuilder<TErrorMap, TMeta>;
|
|
261
|
+
/**
|
|
262
|
+
* Applies all of the previously defined options to the specified contract router.
|
|
263
|
+
*
|
|
264
|
+
* @see {@link https://orpc.unnoq.com/docs/router#extending-router Extending Router Docs}
|
|
265
|
+
*/
|
|
209
266
|
router<T extends ContractRouter<TMeta>>(router: T): EnhancedContractRouter<T, TErrorMap>;
|
|
210
267
|
}
|
|
211
268
|
declare const oc: ContractBuilder<Schema<unknown, unknown>, Schema<unknown, unknown>, Record<never, never>, Record<never, never>>;
|
|
@@ -223,13 +280,28 @@ interface EventIteratorSchemaDetails {
|
|
|
223
280
|
yields: AnySchema;
|
|
224
281
|
returns?: AnySchema;
|
|
225
282
|
}
|
|
226
|
-
|
|
283
|
+
/**
|
|
284
|
+
* Define schema for an event iterator.
|
|
285
|
+
*
|
|
286
|
+
* @see {@link https://orpc.unnoq.com/docs/event-iterator#validate-event-iterator Validate Event Iterator Docs}
|
|
287
|
+
*/
|
|
288
|
+
declare function eventIterator<TYieldIn, TYieldOut, TReturnIn = unknown, TReturnOut = unknown>(yields: Schema<TYieldIn, TYieldOut>, returns?: Schema<TReturnIn, TReturnOut>): Schema<AsyncIteratorObject<TYieldIn, TReturnIn, void>, AsyncIteratorClass<TYieldOut, TReturnOut, void>>;
|
|
227
289
|
declare function getEventIteratorSchemaDetails(schema: AnySchema | undefined): undefined | EventIteratorSchemaDetails;
|
|
228
290
|
|
|
291
|
+
/**
|
|
292
|
+
* Help RPCLink automatically send requests using the specified HTTP method in the contract.
|
|
293
|
+
*
|
|
294
|
+
* @see {@link https://orpc.unnoq.com/docs/client/rpc-link#custom-request-method RPCLink Custom Request Method}
|
|
295
|
+
*/
|
|
296
|
+
declare function inferRPCMethodFromContractRouter(contract: AnyContractRouter): (options: unknown, path: readonly string[]) => Exclude<HTTPMethod, 'HEAD'>;
|
|
297
|
+
|
|
229
298
|
type ContractProcedureClient<TClientContext extends ClientContext, TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap> = Client<TClientContext, InferSchemaInput<TInputSchema>, InferSchemaOutput<TOutputSchema>, ErrorFromErrorMap<TErrorMap>>;
|
|
230
299
|
|
|
231
300
|
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
301
|
[K in keyof TRouter]: TRouter[K] extends AnyContractRouter ? ContractRouterClient<TRouter[K], TClientContext> : never;
|
|
233
302
|
};
|
|
234
303
|
|
|
235
|
-
|
|
304
|
+
declare function isSchemaIssue(issue: unknown): issue is SchemaIssue;
|
|
305
|
+
|
|
306
|
+
export { AnyContractRouter, AnySchema, ContractBuilder, ContractProcedure, ContractProcedureDef, ContractRouter, EnhanceRouteOptions, ErrorFromErrorMap, ErrorMap, InferSchemaInput, InferSchemaOutput, InputStructure, MergedErrorMap, Meta, OutputStructure, Route, Schema, SchemaIssue, enhanceContractRouter, eventIterator, fallbackContractConfig, getContractRouter, getEventIteratorSchemaDetails, inferRPCMethodFromContractRouter, isSchemaIssue, minifyContractRouter, oc };
|
|
307
|
+
export type { ContractBuilderDef, ContractConfig, ContractProcedureBuilder, ContractProcedureBuilderWithInput, ContractProcedureBuilderWithInputOutput, ContractProcedureBuilderWithOutput, ContractProcedureClient, ContractRouterBuilder, ContractRouterClient, EnhanceContractRouterOptions, EnhancedContractRouter, EventIteratorSchemaDetails };
|