@orpc/contract 0.0.0-next.fd1ee2a → 0.0.0-next.fdd2389

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -17,6 +17,9 @@
17
17
  <a href="https://discord.gg/TXEbwRBvQn">
18
18
  <img alt="Discord" src="https://img.shields.io/discord/1308966753044398161?color=7389D8&label&logo=discord&logoColor=ffffff" />
19
19
  </a>
20
+ <a href="https://deepwiki.com/unnoq/orpc">
21
+ <img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki">
22
+ </a>
20
23
  </div>
21
24
 
22
25
  <h3 align="center">Typesafe APIs Made Simple 🪄</h3>
@@ -30,7 +33,8 @@
30
33
  - **🔗 End-to-End Type Safety**: Ensure type-safe inputs, outputs, and errors from client to server.
31
34
  - **📘 First-Class OpenAPI**: Built-in support that fully adheres to the OpenAPI standard.
32
35
  - **📝 Contract-First Development**: Optionally define your API contract before implementation.
33
- - **⚙️ Framework Integrations**: Seamlessly integrate with TanStack Query (React, Vue, Solid, Svelte, Angular), Pinia Colada, and more.
36
+ - **🔍 First-Class OpenTelemetry**: Seamlessly integrate with OpenTelemetry for observability.
37
+ - **⚙️ Framework Integrations**: Seamlessly integrate with TanStack Query (React, Vue, Solid, Svelte, Angular), SWR, Pinia Colada, and more.
34
38
  - **🚀 Server Actions**: Fully compatible with React Server Actions on Next.js, TanStack Start, and other platforms.
35
39
  - **🔠 Standard Schema Support**: Works out of the box with Zod, Valibot, ArkType, and other schema validators.
36
40
  - **🗃️ Native Types**: Supports native types like Date, File, Blob, BigInt, URL, and more.
@@ -38,7 +42,6 @@
38
42
  - **📡 SSE & Streaming**: Enjoy full type-safe support for SSE and streaming.
39
43
  - **🌍 Multi-Runtime Support**: Fast and lightweight on Cloudflare, Deno, Bun, Node.js, and beyond.
40
44
  - **🔌 Extendability**: Easily extend functionality with plugins, middleware, and interceptors.
41
- - **🛡️ Reliability**: Well-tested, TypeScript-based, production-ready, and MIT licensed.
42
45
 
43
46
  ## Documentation
44
47
 
@@ -50,9 +53,11 @@ You can find the full documentation [here](https://orpc.unnoq.com).
50
53
  - [@orpc/server](https://www.npmjs.com/package/@orpc/server): Build your API or implement API contract.
51
54
  - [@orpc/client](https://www.npmjs.com/package/@orpc/client): Consume your API on the client with type-safety.
52
55
  - [@orpc/openapi](https://www.npmjs.com/package/@orpc/openapi): Generate OpenAPI specs and handle OpenAPI requests.
56
+ - [@orpc/otel](https://www.npmjs.com/package/@orpc/otel): [OpenTelemetry](https://opentelemetry.io/) integration for observability.
53
57
  - [@orpc/nest](https://www.npmjs.com/package/@orpc/nest): Deeply integrate oRPC with [NestJS](https://nestjs.com/).
54
58
  - [@orpc/react](https://www.npmjs.com/package/@orpc/react): Utilities for integrating oRPC with React and React Server Actions.
55
59
  - [@orpc/tanstack-query](https://www.npmjs.com/package/@orpc/tanstack-query): [TanStack Query](https://tanstack.com/query/latest) integration.
60
+ - [@orpc/experimental-react-swr](https://www.npmjs.com/package/@orpc/experimental-react-swr): [SWR](https://swr.vercel.app/) integration.
56
61
  - [@orpc/vue-colada](https://www.npmjs.com/package/@orpc/vue-colada): Integration with [Pinia Colada](https://pinia-colada.esm.dev/).
57
62
  - [@orpc/hey-api](https://www.npmjs.com/package/@orpc/hey-api): [Hey API](https://heyapi.dev/) integration.
58
63
  - [@orpc/zod](https://www.npmjs.com/package/@orpc/zod): More schemas that [Zod](https://zod.dev/) doesn't support yet.
package/dist/index.d.mts CHANGED
@@ -1,244 +1,11 @@
1
- import { ORPCErrorCode, ORPCError, HTTPMethod, HTTPPath, ClientContext, Client } from '@orpc/client';
1
+ import { HTTPPath, HTTPMethod, ClientContext, Client } from '@orpc/client';
2
2
  export { HTTPMethod, HTTPPath, ORPCError } from '@orpc/client';
3
- import { Promisable, IsEqual, ThrowableError } from '@orpc/shared';
4
- export { Registry, ThrowableError } from '@orpc/shared';
5
- import { StandardSchemaV1 } from '@standard-schema/spec';
6
- import { OpenAPIV3_1 } from 'openapi-types';
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.mjs';
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.mjs';
5
+ import { AsyncIteratorClass } from '@orpc/shared';
6
+ export { AsyncIteratorClass, Registry, ThrowableError } from '@orpc/shared';
7
7
  export { OpenAPIV3_1 as OpenAPI } from 'openapi-types';
8
-
9
- type Schema<TInput, TOutput> = StandardSchemaV1<TInput, TOutput>;
10
- type AnySchema = Schema<any, any>;
11
- type SchemaIssue = StandardSchemaV1.Issue;
12
- type InferSchemaInput<T extends AnySchema> = T extends StandardSchemaV1<infer UInput, any> ? UInput : never;
13
- type InferSchemaOutput<T extends AnySchema> = T extends StandardSchemaV1<any, infer UOutput> ? UOutput : never;
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
- */
21
- declare function type<TInput, TOutput = TInput>(...[map]: TypeRest<TInput, TOutput>): Schema<TInput, TOutput>;
22
-
23
- interface ValidationErrorOptions extends ErrorOptions {
24
- message: string;
25
- issues: readonly SchemaIssue[];
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
- */
32
- declare class ValidationError extends Error {
33
- readonly issues: readonly SchemaIssue[];
34
- constructor(options: ValidationErrorOptions);
35
- }
36
- interface ErrorMapItem<TDataSchema extends AnySchema> {
37
- status?: number;
38
- message?: string;
39
- data?: TDataSchema;
40
- }
41
- type ErrorMap = {
42
- [key in ORPCErrorCode]?: ErrorMapItem<AnySchema>;
43
- };
44
- type MergedErrorMap<T1 extends ErrorMap, T2 extends ErrorMap> = Omit<T1, keyof T2> & T2;
45
- declare function mergeErrorMap<T1 extends ErrorMap, T2 extends ErrorMap>(errorMap1: T1, errorMap2: T2): MergedErrorMap<T1, T2>;
46
- type ORPCErrorFromErrorMap<TErrorMap extends ErrorMap> = {
47
- [K in keyof TErrorMap]: K extends string ? TErrorMap[K] extends ErrorMapItem<infer TDataSchema extends Schema<unknown, unknown>> ? ORPCError<K, InferSchemaOutput<TDataSchema>> : never : never;
48
- }[keyof TErrorMap];
49
- type ErrorFromErrorMap<TErrorMap extends ErrorMap> = ORPCErrorFromErrorMap<TErrorMap> | ThrowableError;
50
-
51
- type Meta = Record<string, any>;
52
- declare function mergeMeta<T extends Meta>(meta1: T, meta2: T): T;
53
-
54
- type InputStructure = 'compact' | 'detailed';
55
- type OutputStructure = 'compact' | 'detailed';
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
- */
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
- */
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
- */
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
- */
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
- */
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
- */
98
- tags?: readonly string[];
99
- /**
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.
103
- *
104
- * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
105
- * @default 200
106
- */
107
- successStatus?: number;
108
- /**
109
- * The description of the response when the procedure is successful.
110
- * This option is typically relevant when integrating with OpenAPI.
111
- *
112
- * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
113
- * @default 'OK'
114
- */
115
- successDescription?: string;
116
- /**
117
- * Determines how the input should be structured based on `params`, `query`, `headers`, and `body`.
118
- *
119
- * @option 'compact'
120
- * Combines `params` and either `query` or `body` (depending on the HTTP method) into a single object.
121
- *
122
- * @option 'detailed'
123
- * Keeps each part of the request (`params`, `query`, `headers`, and `body`) as separate fields in the input object.
124
- *
125
- * Example:
126
- * ```ts
127
- * const input = {
128
- * params: { id: 1 },
129
- * query: { search: 'hello' },
130
- * headers: { 'Content-Type': 'application/json' },
131
- * body: { name: 'John' },
132
- * }
133
- * ```
134
- *
135
- * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
136
- * @default 'compact'
137
- */
138
- inputStructure?: InputStructure;
139
- /**
140
- * Determines how the response should be structured based on the output.
141
- *
142
- * @option 'compact'
143
- * The output data is directly returned as the response body.
144
- *
145
- * @option 'detailed'
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.
150
- *
151
- * Example:
152
- * ```ts
153
- * const output = {
154
- * status: 201,
155
- * headers: { 'x-custom-header': 'value' },
156
- * body: { message: 'Hello, world!' },
157
- * };
158
- * ```
159
- *
160
- * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
161
- * @default 'compact'
162
- */
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;
170
- }
171
- declare function mergeRoute(a: Route, b: Route): Route;
172
- declare function prefixRoute(route: Route, prefix: HTTPPath): Route;
173
- declare function unshiftTagRoute(route: Route, tags: readonly string[]): Route;
174
- declare function mergePrefix(a: HTTPPath | undefined, b: HTTPPath): HTTPPath;
175
- declare function mergeTags(a: readonly string[] | undefined, b: readonly string[]): readonly string[];
176
- interface EnhanceRouteOptions {
177
- prefix?: HTTPPath;
178
- tags?: readonly string[];
179
- }
180
- declare function enhanceRoute(route: Route, options: EnhanceRouteOptions): Route;
181
-
182
- interface ContractProcedureDef<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> {
183
- meta: TMeta;
184
- route: Route;
185
- inputSchema?: TInputSchema;
186
- outputSchema?: TOutputSchema;
187
- errorMap: TErrorMap;
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
- */
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
- */
198
- '~orpc': ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
199
- constructor(def: ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>);
200
- }
201
- type AnyContractProcedure = ContractProcedure<any, any, any, any>;
202
- declare function isContractProcedure(item: unknown): item is AnyContractProcedure;
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
- */
210
- type ContractRouter<TMeta extends Meta> = ContractProcedure<any, any, any, TMeta> | {
211
- [k: string]: ContractRouter<TMeta>;
212
- };
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
- */
220
- type InferContractRouterInputs<T extends AnyContractRouter> = T extends ContractProcedure<infer UInputSchema, any, any, any> ? InferSchemaInput<UInputSchema> : {
221
- [K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterInputs<T[K]> : never;
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
- */
229
- type InferContractRouterOutputs<T extends AnyContractRouter> = T extends ContractProcedure<any, infer UOutputSchema, any, any> ? InferSchemaOutput<UOutputSchema> : {
230
- [K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterOutputs<T[K]> : never;
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
- */
238
- type InferContractRouterErrorMap<T extends AnyContractRouter> = T extends ContractProcedure<any, any, infer UErrorMap, any> ? UErrorMap : {
239
- [K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterErrorMap<T[K]> : never;
240
- }[keyof T];
241
- type InferContractRouterMeta<T extends AnyContractRouter> = T extends ContractRouter<infer UMeta> ? UMeta : never;
8
+ import '@standard-schema/spec';
242
9
 
243
10
  declare function getContractRouter(router: AnyContractRouter, path: readonly string[]): AnyContractRouter | undefined;
244
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> : {
@@ -518,7 +285,7 @@ interface EventIteratorSchemaDetails {
518
285
  *
519
286
  * @see {@link https://orpc.unnoq.com/docs/event-iterator#validate-event-iterator Validate Event Iterator Docs}
520
287
  */
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>>;
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>>;
522
289
  declare function getEventIteratorSchemaDetails(schema: AnySchema | undefined): undefined | EventIteratorSchemaDetails;
523
290
 
524
291
  /**
@@ -536,5 +303,5 @@ type ContractRouterClient<TRouter extends AnyContractRouter, TClientContext exte
536
303
 
537
304
  declare function isSchemaIssue(issue: unknown): issue is SchemaIssue;
538
305
 
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 };
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 };
package/dist/index.d.ts CHANGED
@@ -1,244 +1,11 @@
1
- import { ORPCErrorCode, ORPCError, HTTPMethod, HTTPPath, ClientContext, Client } from '@orpc/client';
1
+ import { HTTPPath, HTTPMethod, ClientContext, Client } from '@orpc/client';
2
2
  export { HTTPMethod, HTTPPath, ORPCError } from '@orpc/client';
3
- import { Promisable, IsEqual, ThrowableError } from '@orpc/shared';
4
- export { Registry, ThrowableError } from '@orpc/shared';
5
- import { StandardSchemaV1 } from '@standard-schema/spec';
6
- import { OpenAPIV3_1 } from 'openapi-types';
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
7
  export { OpenAPIV3_1 as OpenAPI } from 'openapi-types';
8
-
9
- type Schema<TInput, TOutput> = StandardSchemaV1<TInput, TOutput>;
10
- type AnySchema = Schema<any, any>;
11
- type SchemaIssue = StandardSchemaV1.Issue;
12
- type InferSchemaInput<T extends AnySchema> = T extends StandardSchemaV1<infer UInput, any> ? UInput : never;
13
- type InferSchemaOutput<T extends AnySchema> = T extends StandardSchemaV1<any, infer UOutput> ? UOutput : never;
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
- */
21
- declare function type<TInput, TOutput = TInput>(...[map]: TypeRest<TInput, TOutput>): Schema<TInput, TOutput>;
22
-
23
- interface ValidationErrorOptions extends ErrorOptions {
24
- message: string;
25
- issues: readonly SchemaIssue[];
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
- */
32
- declare class ValidationError extends Error {
33
- readonly issues: readonly SchemaIssue[];
34
- constructor(options: ValidationErrorOptions);
35
- }
36
- interface ErrorMapItem<TDataSchema extends AnySchema> {
37
- status?: number;
38
- message?: string;
39
- data?: TDataSchema;
40
- }
41
- type ErrorMap = {
42
- [key in ORPCErrorCode]?: ErrorMapItem<AnySchema>;
43
- };
44
- type MergedErrorMap<T1 extends ErrorMap, T2 extends ErrorMap> = Omit<T1, keyof T2> & T2;
45
- declare function mergeErrorMap<T1 extends ErrorMap, T2 extends ErrorMap>(errorMap1: T1, errorMap2: T2): MergedErrorMap<T1, T2>;
46
- type ORPCErrorFromErrorMap<TErrorMap extends ErrorMap> = {
47
- [K in keyof TErrorMap]: K extends string ? TErrorMap[K] extends ErrorMapItem<infer TDataSchema extends Schema<unknown, unknown>> ? ORPCError<K, InferSchemaOutput<TDataSchema>> : never : never;
48
- }[keyof TErrorMap];
49
- type ErrorFromErrorMap<TErrorMap extends ErrorMap> = ORPCErrorFromErrorMap<TErrorMap> | ThrowableError;
50
-
51
- type Meta = Record<string, any>;
52
- declare function mergeMeta<T extends Meta>(meta1: T, meta2: T): T;
53
-
54
- type InputStructure = 'compact' | 'detailed';
55
- type OutputStructure = 'compact' | 'detailed';
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
- */
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
- */
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
- */
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
- */
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
- */
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
- */
98
- tags?: readonly string[];
99
- /**
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.
103
- *
104
- * @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
105
- * @default 200
106
- */
107
- successStatus?: number;
108
- /**
109
- * The description of the response when the procedure is successful.
110
- * This option is typically relevant when integrating with OpenAPI.
111
- *
112
- * @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
113
- * @default 'OK'
114
- */
115
- successDescription?: string;
116
- /**
117
- * Determines how the input should be structured based on `params`, `query`, `headers`, and `body`.
118
- *
119
- * @option 'compact'
120
- * Combines `params` and either `query` or `body` (depending on the HTTP method) into a single object.
121
- *
122
- * @option 'detailed'
123
- * Keeps each part of the request (`params`, `query`, `headers`, and `body`) as separate fields in the input object.
124
- *
125
- * Example:
126
- * ```ts
127
- * const input = {
128
- * params: { id: 1 },
129
- * query: { search: 'hello' },
130
- * headers: { 'Content-Type': 'application/json' },
131
- * body: { name: 'John' },
132
- * }
133
- * ```
134
- *
135
- * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
136
- * @default 'compact'
137
- */
138
- inputStructure?: InputStructure;
139
- /**
140
- * Determines how the response should be structured based on the output.
141
- *
142
- * @option 'compact'
143
- * The output data is directly returned as the response body.
144
- *
145
- * @option 'detailed'
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.
150
- *
151
- * Example:
152
- * ```ts
153
- * const output = {
154
- * status: 201,
155
- * headers: { 'x-custom-header': 'value' },
156
- * body: { message: 'Hello, world!' },
157
- * };
158
- * ```
159
- *
160
- * @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
161
- * @default 'compact'
162
- */
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;
170
- }
171
- declare function mergeRoute(a: Route, b: Route): Route;
172
- declare function prefixRoute(route: Route, prefix: HTTPPath): Route;
173
- declare function unshiftTagRoute(route: Route, tags: readonly string[]): Route;
174
- declare function mergePrefix(a: HTTPPath | undefined, b: HTTPPath): HTTPPath;
175
- declare function mergeTags(a: readonly string[] | undefined, b: readonly string[]): readonly string[];
176
- interface EnhanceRouteOptions {
177
- prefix?: HTTPPath;
178
- tags?: readonly string[];
179
- }
180
- declare function enhanceRoute(route: Route, options: EnhanceRouteOptions): Route;
181
-
182
- interface ContractProcedureDef<TInputSchema extends AnySchema, TOutputSchema extends AnySchema, TErrorMap extends ErrorMap, TMeta extends Meta> {
183
- meta: TMeta;
184
- route: Route;
185
- inputSchema?: TInputSchema;
186
- outputSchema?: TOutputSchema;
187
- errorMap: TErrorMap;
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
- */
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
- */
198
- '~orpc': ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
199
- constructor(def: ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>);
200
- }
201
- type AnyContractProcedure = ContractProcedure<any, any, any, any>;
202
- declare function isContractProcedure(item: unknown): item is AnyContractProcedure;
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
- */
210
- type ContractRouter<TMeta extends Meta> = ContractProcedure<any, any, any, TMeta> | {
211
- [k: string]: ContractRouter<TMeta>;
212
- };
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
- */
220
- type InferContractRouterInputs<T extends AnyContractRouter> = T extends ContractProcedure<infer UInputSchema, any, any, any> ? InferSchemaInput<UInputSchema> : {
221
- [K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterInputs<T[K]> : never;
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
- */
229
- type InferContractRouterOutputs<T extends AnyContractRouter> = T extends ContractProcedure<any, infer UOutputSchema, any, any> ? InferSchemaOutput<UOutputSchema> : {
230
- [K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterOutputs<T[K]> : never;
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
- */
238
- type InferContractRouterErrorMap<T extends AnyContractRouter> = T extends ContractProcedure<any, any, infer UErrorMap, any> ? UErrorMap : {
239
- [K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterErrorMap<T[K]> : never;
240
- }[keyof T];
241
- type InferContractRouterMeta<T extends AnyContractRouter> = T extends ContractRouter<infer UMeta> ? UMeta : never;
8
+ import '@standard-schema/spec';
242
9
 
243
10
  declare function getContractRouter(router: AnyContractRouter, path: readonly string[]): AnyContractRouter | undefined;
244
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> : {
@@ -518,7 +285,7 @@ interface EventIteratorSchemaDetails {
518
285
  *
519
286
  * @see {@link https://orpc.unnoq.com/docs/event-iterator#validate-event-iterator Validate Event Iterator Docs}
520
287
  */
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>>;
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>>;
522
289
  declare function getEventIteratorSchemaDetails(schema: AnySchema | undefined): undefined | EventIteratorSchemaDetails;
523
290
 
524
291
  /**
@@ -536,5 +303,5 @@ type ContractRouterClient<TRouter extends AnyContractRouter, TClientContext exte
536
303
 
537
304
  declare function isSchemaIssue(issue: unknown): issue is SchemaIssue;
538
305
 
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 };
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 };
package/dist/index.mjs CHANGED
@@ -1,44 +1,14 @@
1
- import { isORPCErrorStatus, mapEventIterator, ORPCError } from '@orpc/client';
1
+ import { i as isContractProcedure, C as ContractProcedure, m as mergeErrorMap, V as ValidationError } from './shared/contract.D_dZrO__.mjs';
2
+ export { v as validateORPCError } from './shared/contract.D_dZrO__.mjs';
3
+ import { mapEventIterator, ORPCError } from '@orpc/client';
2
4
  export { ORPCError } from '@orpc/client';
3
5
  import { isAsyncIteratorObject, get, isTypescriptObject, isPropertyKey } from '@orpc/shared';
4
-
5
- class ValidationError extends Error {
6
- issues;
7
- constructor(options) {
8
- super(options.message, options);
9
- this.issues = options.issues;
10
- }
11
- }
12
- function mergeErrorMap(errorMap1, errorMap2) {
13
- return { ...errorMap1, ...errorMap2 };
14
- }
6
+ export { AsyncIteratorClass } from '@orpc/shared';
15
7
 
16
8
  function mergeMeta(meta1, meta2) {
17
9
  return { ...meta1, ...meta2 };
18
10
  }
19
11
 
20
- class ContractProcedure {
21
- /**
22
- * This property holds the defined options for the contract procedure.
23
- */
24
- "~orpc";
25
- constructor(def) {
26
- if (def.route?.successStatus && isORPCErrorStatus(def.route.successStatus)) {
27
- throw new Error("[ContractProcedure] Invalid successStatus.");
28
- }
29
- if (Object.values(def.errorMap).some((val) => val && val.status && !isORPCErrorStatus(val.status))) {
30
- throw new Error("[ContractProcedure] Invalid error status code.");
31
- }
32
- this["~orpc"] = def;
33
- }
34
- }
35
- function isContractProcedure(item) {
36
- if (item instanceof ContractProcedure) {
37
- return true;
38
- }
39
- return (typeof item === "object" || typeof item === "function") && item !== null && "~orpc" in item && typeof item["~orpc"] === "object" && item["~orpc"] !== null && "errorMap" in item["~orpc"] && "route" in item["~orpc"] && "meta" in item["~orpc"];
40
- }
41
-
42
12
  function mergeRoute(a, b) {
43
13
  return { ...a, ...b };
44
14
  }
@@ -289,7 +259,8 @@ function eventIterator(yields, returns) {
289
259
  message: "Event iterator validation failed",
290
260
  cause: new ValidationError({
291
261
  issues: result.issues,
292
- message: "Event iterator validation failed"
262
+ message: "Event iterator validation failed",
263
+ data: value
293
264
  })
294
265
  });
295
266
  }