@orpc/contract 0.0.0-next.fe39bf3 → 0.0.0-next.ff41b3a

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.
@@ -1,10 +0,0 @@
1
- import type { HTTPMethod, InputStructure } from './route';
2
- export interface ContractConfig {
3
- defaultMethod: HTTPMethod;
4
- defaultSuccessStatus: number;
5
- defaultSuccessDescription: string;
6
- defaultInputStructure: InputStructure;
7
- defaultOutputStructure: InputStructure;
8
- }
9
- export declare function fallbackContractConfig<T extends keyof ContractConfig>(key: T, value: ContractConfig[T] | undefined): ContractConfig[T];
10
- //# sourceMappingURL=config.d.ts.map
@@ -1,27 +0,0 @@
1
- import type { ORPCError, ORPCErrorCode } from '@orpc/client';
2
- import type { StandardSchemaV1 } from '@standard-schema/spec';
3
- import type { Schema, SchemaOutput } from './schema';
4
- export interface ValidationErrorOptions extends ErrorOptions {
5
- message: string;
6
- issues: readonly StandardSchemaV1.Issue[];
7
- }
8
- export declare class ValidationError extends Error {
9
- readonly issues: readonly StandardSchemaV1.Issue[];
10
- constructor(options: ValidationErrorOptions);
11
- }
12
- export type ErrorMapItem<TDataSchema extends Schema> = {
13
- status?: number;
14
- message?: string;
15
- description?: string;
16
- data?: TDataSchema;
17
- };
18
- export type ErrorMap = {
19
- [key in ORPCErrorCode]?: ErrorMapItem<Schema>;
20
- };
21
- export type MergedErrorMap<T1 extends ErrorMap, T2 extends ErrorMap> = Omit<T1, keyof T2> & T2;
22
- export declare function mergeErrorMap<T1 extends ErrorMap, T2 extends ErrorMap>(errorMap1: T1, errorMap2: T2): MergedErrorMap<T1, T2>;
23
- export type ORPCErrorFromErrorMap<TErrorMap extends ErrorMap> = {
24
- [K in keyof TErrorMap]: K extends string ? TErrorMap[K] extends ErrorMapItem<infer TDataSchema> ? ORPCError<K, SchemaOutput<TDataSchema>> : never : never;
25
- }[keyof TErrorMap];
26
- export type ErrorFromErrorMap<TErrorMap extends ErrorMap> = Error | ORPCErrorFromErrorMap<TErrorMap>;
27
- //# sourceMappingURL=error.d.ts.map
@@ -1,8 +0,0 @@
1
- import type { StandardSchemaV1 } from '@standard-schema/spec';
2
- import type { Schema } from './schema';
3
- export declare function eventIterator<TYieldIn, TYieldOut, TReturnIn = unknown, TReturnOut = unknown>(yields: StandardSchemaV1<TYieldIn, TYieldOut>, returns?: StandardSchemaV1<TReturnIn, TReturnOut>): StandardSchemaV1<AsyncIteratorObject<TYieldIn, TReturnIn, void>, AsyncIteratorObject<TYieldOut, TReturnOut, void>>;
4
- export declare function getEventIteratorSchemaDetails(schema: Schema): undefined | {
5
- yields: Schema;
6
- returns: Schema;
7
- };
8
- //# sourceMappingURL=event-iterator.d.ts.map
@@ -1,15 +0,0 @@
1
- /** unnoq */
2
- export * from './builder';
3
- export * from './builder-variants';
4
- export * from './config';
5
- export * from './error';
6
- export * from './event-iterator';
7
- export * from './meta';
8
- export * from './procedure';
9
- export * from './procedure-client';
10
- export * from './route';
11
- export * from './router';
12
- export * from './router-client';
13
- export * from './schema';
14
- export { ORPCError } from '@orpc/client';
15
- //# sourceMappingURL=index.d.ts.map
@@ -1,3 +0,0 @@
1
- export type Meta = Record<string, any>;
2
- export declare function mergeMeta<T extends Meta>(meta1: T, meta2: T): T;
3
- //# sourceMappingURL=meta.d.ts.map
@@ -1,5 +0,0 @@
1
- import type { Client, ClientContext } from '@orpc/client';
2
- import type { ErrorFromErrorMap, ErrorMap } from './error';
3
- import type { Schema, SchemaInput, SchemaOutput } from './schema';
4
- export type ContractProcedureClient<TClientContext extends ClientContext, TInputSchema extends Schema, TOutputSchema extends Schema, TErrorMap extends ErrorMap> = Client<TClientContext, SchemaInput<TInputSchema>, SchemaOutput<TOutputSchema>, ErrorFromErrorMap<TErrorMap>>;
5
- //# sourceMappingURL=procedure-client.d.ts.map
@@ -1,18 +0,0 @@
1
- import type { ErrorMap } from './error';
2
- import type { Meta } from './meta';
3
- import type { Route } from './route';
4
- import type { Schema } from './schema';
5
- export interface ContractProcedureDef<TInputSchema extends Schema, TOutputSchema extends Schema, TErrorMap extends ErrorMap, TMeta extends Meta> {
6
- meta: TMeta;
7
- route: Route;
8
- inputSchema: TInputSchema;
9
- outputSchema: TOutputSchema;
10
- errorMap: TErrorMap;
11
- }
12
- export declare class ContractProcedure<TInputSchema extends Schema, TOutputSchema extends Schema, TErrorMap extends ErrorMap, TMeta extends Meta> {
13
- '~orpc': ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>;
14
- constructor(def: ContractProcedureDef<TInputSchema, TOutputSchema, TErrorMap, TMeta>);
15
- }
16
- export type AnyContractProcedure = ContractProcedure<any, any, any, any>;
17
- export declare function isContractProcedure(item: unknown): item is AnyContractProcedure;
18
- //# sourceMappingURL=procedure.d.ts.map
@@ -1,79 +0,0 @@
1
- export type HTTPPath = `/${string}`;
2
- export type HTTPMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
3
- export type InputStructure = 'compact' | 'detailed';
4
- export type OutputStructure = 'compact' | 'detailed';
5
- export interface Route {
6
- method?: HTTPMethod;
7
- path?: HTTPPath;
8
- summary?: string;
9
- description?: string;
10
- deprecated?: boolean;
11
- tags?: readonly string[];
12
- /**
13
- * The status code of the response when the procedure is successful.
14
- *
15
- * @default 200
16
- */
17
- successStatus?: number;
18
- /**
19
- * The description of the response when the procedure is successful.
20
- *
21
- * @default 'OK'
22
- */
23
- successDescription?: string;
24
- /**
25
- * Determines how the input should be structured based on `params`, `query`, `headers`, and `body`.
26
- *
27
- * @option 'compact'
28
- * Combines `params` and either `query` or `body` (depending on the HTTP method) into a single object.
29
- *
30
- * @option 'detailed'
31
- * Keeps each part of the request (`params`, `query`, `headers`, and `body`) as separate fields in the input object.
32
- *
33
- * Example:
34
- * ```ts
35
- * const input = {
36
- * params: { id: 1 },
37
- * query: { search: 'hello' },
38
- * headers: { 'Content-Type': 'application/json' },
39
- * body: { name: 'John' },
40
- * }
41
- * ```
42
- *
43
- * @default 'compact'
44
- */
45
- inputStructure?: InputStructure;
46
- /**
47
- * Determines how the response should be structured based on the output.
48
- *
49
- * @option 'compact'
50
- * Includes only the body data, encoded directly in the response.
51
- *
52
- * @option 'detailed'
53
- * Separates the output into `headers` and `body` fields.
54
- * - `headers`: Custom headers to merge with the response headers.
55
- * - `body`: The response data.
56
- *
57
- * Example:
58
- * ```ts
59
- * const output = {
60
- * headers: { 'x-custom-header': 'value' },
61
- * body: { message: 'Hello, world!' },
62
- * };
63
- * ```
64
- *
65
- * @default 'compact'
66
- */
67
- outputStructure?: OutputStructure;
68
- }
69
- export declare function mergeRoute(a: Route, b: Route): Route;
70
- export declare function prefixRoute(route: Route, prefix: HTTPPath): Route;
71
- export declare function unshiftTagRoute(route: Route, tags: readonly string[]): Route;
72
- export declare function mergePrefix(a: HTTPPath | undefined, b: HTTPPath): HTTPPath;
73
- export declare function mergeTags(a: readonly string[] | undefined, b: readonly string[]): readonly string[];
74
- export interface AdaptRouteOptions {
75
- prefix?: HTTPPath;
76
- tags?: readonly string[];
77
- }
78
- export declare function adaptRoute(route: Route, options: AdaptRouteOptions): Route;
79
- //# sourceMappingURL=route.d.ts.map
@@ -1,8 +0,0 @@
1
- import type { ClientContext } from '@orpc/client';
2
- import type { ContractProcedure } from './procedure';
3
- import type { ContractProcedureClient } from './procedure-client';
4
- import type { AnyContractRouter } from './router';
5
- export 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> : {
6
- [K in keyof TRouter]: TRouter[K] extends AnyContractRouter ? ContractRouterClient<TRouter[K], TClientContext> : never;
7
- };
8
- //# sourceMappingURL=router-client.d.ts.map
@@ -1,29 +0,0 @@
1
- import type { Meta } from './meta';
2
- import type { SchemaInput, SchemaOutput } from './schema';
3
- import { type ErrorMap, type MergedErrorMap } from './error';
4
- import { ContractProcedure } from './procedure';
5
- import { type HTTPPath } from './route';
6
- export type ContractRouter<TMeta extends Meta> = ContractProcedure<any, any, any, TMeta> | {
7
- [k: string]: ContractRouter<TMeta>;
8
- };
9
- export type AnyContractRouter = ContractRouter<any>;
10
- export type AdaptedContractRouter<TContract extends AnyContractRouter, TErrorMap extends ErrorMap> = {
11
- [K in keyof TContract]: TContract[K] extends ContractProcedure<infer UInputSchema, infer UOutputSchema, infer UErrors, infer UMeta> ? ContractProcedure<UInputSchema, UOutputSchema, MergedErrorMap<TErrorMap, UErrors>, UMeta> : TContract[K] extends AnyContractRouter ? AdaptedContractRouter<TContract[K], TErrorMap> : never;
12
- };
13
- export interface AdaptContractRouterOptions<TErrorMap extends ErrorMap> {
14
- errorMap: TErrorMap;
15
- prefix?: HTTPPath;
16
- tags?: readonly string[];
17
- }
18
- export declare function adaptContractRouter<TRouter extends ContractRouter<any>, TErrorMap extends ErrorMap>(contract: TRouter, options: AdaptContractRouterOptions<TErrorMap>): AdaptedContractRouter<TRouter, TErrorMap>;
19
- export type InferContractRouterInputs<T extends AnyContractRouter> = T extends ContractProcedure<infer UInputSchema, any, any, any> ? SchemaInput<UInputSchema> : {
20
- [K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterInputs<T[K]> : never;
21
- };
22
- export type InferContractRouterOutputs<T extends AnyContractRouter> = T extends ContractProcedure<any, infer UOutputSchema, any, any> ? SchemaOutput<UOutputSchema> : {
23
- [K in keyof T]: T[K] extends AnyContractRouter ? InferContractRouterOutputs<T[K]> : never;
24
- };
25
- export type ContractRouterToErrorMap<T extends AnyContractRouter> = T extends ContractProcedure<any, any, infer UErrorMap, any> ? UErrorMap : {
26
- [K in keyof T]: T[K] extends AnyContractRouter ? ContractRouterToErrorMap<T[K]> : never;
27
- }[keyof T];
28
- export type ContractRouterToMeta<T extends AnyContractRouter> = T extends ContractRouter<infer UMeta> ? UMeta : never;
29
- //# sourceMappingURL=router.d.ts.map
@@ -1,8 +0,0 @@
1
- import type { IsEqual, Promisable } from '@orpc/shared';
2
- import type { StandardSchemaV1 } from '@standard-schema/spec';
3
- export type Schema = StandardSchemaV1 | undefined;
4
- export type SchemaInput<TSchema extends Schema, TFallback = unknown> = TSchema extends undefined ? TFallback : TSchema extends StandardSchemaV1 ? StandardSchemaV1.InferInput<TSchema> : TFallback;
5
- export type SchemaOutput<TSchema extends Schema, TFallback = unknown> = TSchema extends undefined ? TFallback : TSchema extends StandardSchemaV1 ? StandardSchemaV1.InferOutput<TSchema> : TFallback;
6
- export type TypeRest<TInput, TOutput> = [map: (input: TInput) => Promisable<TOutput>] | (IsEqual<TInput, TOutput> extends true ? [] : never);
7
- export declare function type<TInput, TOutput = TInput>(...[map]: TypeRest<TInput, TOutput>): StandardSchemaV1<TInput, TOutput>;
8
- //# sourceMappingURL=schema.d.ts.map