@orpc/openapi 0.0.0-next.f81b4a2 → 0.0.0-next.fcb9d5a
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 +14 -17
- package/dist/adapters/fetch/index.d.mts +1 -1
- package/dist/adapters/fetch/index.d.ts +1 -1
- package/dist/adapters/fetch/index.mjs +2 -1
- package/dist/adapters/node/index.d.mts +1 -1
- package/dist/adapters/node/index.d.ts +1 -1
- package/dist/adapters/node/index.mjs +2 -1
- package/dist/adapters/standard/index.d.mts +1 -0
- package/dist/adapters/standard/index.d.ts +1 -0
- package/dist/adapters/standard/index.mjs +2 -1
- package/dist/index.d.mts +18 -44
- package/dist/index.d.ts +18 -44
- package/dist/index.mjs +31 -535
- package/dist/plugins/index.d.mts +70 -0
- package/dist/plugins/index.d.ts +70 -0
- package/dist/plugins/index.mjs +108 -0
- package/dist/shared/{openapi.p5tsmBXx.mjs → openapi.C_UtQ8Us.mjs} +27 -6
- package/dist/shared/openapi.CwdCLgSU.d.mts +53 -0
- package/dist/shared/openapi.CwdCLgSU.d.ts +53 -0
- package/dist/shared/openapi.PDTdnRIU.mjs +595 -0
- package/package.json +13 -8
package/README.md
CHANGED
|
@@ -21,28 +21,24 @@
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">Typesafe APIs Made Simple 🪄</h3>
|
|
23
23
|
|
|
24
|
-
**oRPC is a powerful combination of RPC and OpenAPI**, makes it easy to build APIs that are end-to-end type-safe and adhere to OpenAPI standards
|
|
24
|
+
**oRPC is a powerful combination of RPC and OpenAPI**, makes it easy to build APIs that are end-to-end type-safe and adhere to OpenAPI standards
|
|
25
25
|
|
|
26
26
|
---
|
|
27
27
|
|
|
28
28
|
## Highlights
|
|
29
29
|
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
-
|
|
38
|
-
-
|
|
39
|
-
-
|
|
40
|
-
-
|
|
41
|
-
-
|
|
42
|
-
- **Reusability 🔄**: Write once and reuse your code across multiple purposes effortlessly.
|
|
43
|
-
- **Extendability 🔌**: Easily enhance oRPC with plugins, middleware, and interceptors.
|
|
44
|
-
- **Reliability 🛡️**: Well-tested, fully TypeScript, production-ready, and MIT licensed for peace of mind.
|
|
45
|
-
- **Simplicity 💡**: Enjoy straightforward, clean code with no hidden magic.
|
|
30
|
+
- **🔗 End-to-End Type Safety**: Ensure type-safe inputs, outputs, and errors from client to server.
|
|
31
|
+
- **📘 First-Class OpenAPI**: Built-in support that fully adheres to the OpenAPI standard.
|
|
32
|
+
- **📝 Contract-First Development**: Optionally define your API contract before implementation.
|
|
33
|
+
- **⚙️ Framework Integrations**: Seamlessly integrate with TanStack Query (React, Vue, Solid, Svelte), Pinia Colada, and more.
|
|
34
|
+
- **🚀 Server Actions**: Fully compatible with React Server Actions on Next.js, TanStack Start, and other platforms.
|
|
35
|
+
- **🔠 Standard Schema Support**: Works out of the box with Zod, Valibot, ArkType, and other schema validators.
|
|
36
|
+
- **🗃️ Native Types**: Supports native types like Date, File, Blob, BigInt, URL, and more.
|
|
37
|
+
- **⏱️ Lazy Router**: Enhance cold start times with our lazy routing feature.
|
|
38
|
+
- **📡 SSE & Streaming**: Enjoy full type-safe support for SSE and streaming.
|
|
39
|
+
- **🌍 Multi-Runtime Support**: Fast and lightweight on Cloudflare, Deno, Bun, Node.js, and beyond.
|
|
40
|
+
- **🔌 Extendability**: Easily extend functionality with plugins, middleware, and interceptors.
|
|
41
|
+
- **🛡️ Reliability**: Well-tested, TypeScript-based, production-ready, and MIT licensed.
|
|
46
42
|
|
|
47
43
|
## Documentation
|
|
48
44
|
|
|
@@ -53,6 +49,7 @@ You can find the full documentation [here](https://orpc.unnoq.com).
|
|
|
53
49
|
- [@orpc/contract](https://www.npmjs.com/package/@orpc/contract): Build your API contract.
|
|
54
50
|
- [@orpc/server](https://www.npmjs.com/package/@orpc/server): Build your API or implement API contract.
|
|
55
51
|
- [@orpc/client](https://www.npmjs.com/package/@orpc/client): Consume your API on the client with type-safety.
|
|
52
|
+
- [@orpc/nest](https://www.npmjs.com/package/@orpc/nest): Deeply integrate oRPC with NestJS.
|
|
56
53
|
- [@orpc/react](https://www.npmjs.com/package/@orpc/react): Utilities for integrating oRPC with React and React Server Actions.
|
|
57
54
|
- [@orpc/react-query](https://www.npmjs.com/package/@orpc/react-query): Integration with [React Query](https://tanstack.com/query/latest/docs/framework/react/overview).
|
|
58
55
|
- [@orpc/vue-query](https://www.npmjs.com/package/@orpc/vue-query): Integration with [Vue Query](https://tanstack.com/query/latest/docs/framework/vue/overview).
|
|
@@ -8,7 +8,7 @@ import '@orpc/server/standard';
|
|
|
8
8
|
* OpenAPI Handler for Fetch Server
|
|
9
9
|
*
|
|
10
10
|
* @see {@link https://orpc.unnoq.com/docs/openapi/openapi-handler OpenAPI Handler Docs}
|
|
11
|
-
* @see {@link https://orpc.unnoq.com/docs/
|
|
11
|
+
* @see {@link https://orpc.unnoq.com/docs/adapters/http HTTP Adapter Docs}
|
|
12
12
|
*/
|
|
13
13
|
declare class OpenAPIHandler<T extends Context> extends FetchHandler<T> {
|
|
14
14
|
constructor(router: Router<any, T>, options?: NoInfer<StandardOpenAPIHandlerOptions<T> & FetchHandlerOptions<T>>);
|
|
@@ -8,7 +8,7 @@ import '@orpc/server/standard';
|
|
|
8
8
|
* OpenAPI Handler for Fetch Server
|
|
9
9
|
*
|
|
10
10
|
* @see {@link https://orpc.unnoq.com/docs/openapi/openapi-handler OpenAPI Handler Docs}
|
|
11
|
-
* @see {@link https://orpc.unnoq.com/docs/
|
|
11
|
+
* @see {@link https://orpc.unnoq.com/docs/adapters/http HTTP Adapter Docs}
|
|
12
12
|
*/
|
|
13
13
|
declare class OpenAPIHandler<T extends Context> extends FetchHandler<T> {
|
|
14
14
|
constructor(router: Router<any, T>, options?: NoInfer<StandardOpenAPIHandlerOptions<T> & FetchHandlerOptions<T>>);
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { FetchHandler } from '@orpc/server/fetch';
|
|
2
|
+
import '@orpc/client';
|
|
2
3
|
import '@orpc/contract';
|
|
3
4
|
import '@orpc/shared';
|
|
4
|
-
import { a as StandardOpenAPIHandler } from '../../shared/openapi.
|
|
5
|
+
import { a as StandardOpenAPIHandler } from '../../shared/openapi.C_UtQ8Us.mjs';
|
|
5
6
|
import '@orpc/client/standard';
|
|
6
7
|
import '@orpc/server';
|
|
7
8
|
import 'rou3';
|
|
@@ -8,7 +8,7 @@ import '@orpc/server/standard';
|
|
|
8
8
|
* OpenAPI Handler for Node Server
|
|
9
9
|
*
|
|
10
10
|
* @see {@link https://orpc.unnoq.com/docs/openapi/openapi-handler OpenAPI Handler Docs}
|
|
11
|
-
* @see {@link https://orpc.unnoq.com/docs/
|
|
11
|
+
* @see {@link https://orpc.unnoq.com/docs/adapters/http HTTP Adapter Docs}
|
|
12
12
|
*/
|
|
13
13
|
declare class OpenAPIHandler<T extends Context> extends NodeHttpHandler<T> {
|
|
14
14
|
constructor(router: Router<any, T>, options?: NoInfer<StandardOpenAPIHandlerOptions<T> & NodeHttpHandlerOptions<T>>);
|
|
@@ -8,7 +8,7 @@ import '@orpc/server/standard';
|
|
|
8
8
|
* OpenAPI Handler for Node Server
|
|
9
9
|
*
|
|
10
10
|
* @see {@link https://orpc.unnoq.com/docs/openapi/openapi-handler OpenAPI Handler Docs}
|
|
11
|
-
* @see {@link https://orpc.unnoq.com/docs/
|
|
11
|
+
* @see {@link https://orpc.unnoq.com/docs/adapters/http HTTP Adapter Docs}
|
|
12
12
|
*/
|
|
13
13
|
declare class OpenAPIHandler<T extends Context> extends NodeHttpHandler<T> {
|
|
14
14
|
constructor(router: Router<any, T>, options?: NoInfer<StandardOpenAPIHandlerOptions<T> & NodeHttpHandlerOptions<T>>);
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { NodeHttpHandler } from '@orpc/server/node';
|
|
2
|
+
import '@orpc/client';
|
|
2
3
|
import '@orpc/contract';
|
|
3
4
|
import '@orpc/shared';
|
|
4
|
-
import { a as StandardOpenAPIHandler } from '../../shared/openapi.
|
|
5
|
+
import { a as StandardOpenAPIHandler } from '../../shared/openapi.C_UtQ8Us.mjs';
|
|
5
6
|
import '@orpc/client/standard';
|
|
6
7
|
import '@orpc/server';
|
|
7
8
|
import 'rou3';
|
|
@@ -6,6 +6,7 @@ import { StandardLazyRequest, StandardResponse } from '@orpc/standard-server';
|
|
|
6
6
|
export { a as StandardOpenAPIHandler, S as StandardOpenAPIHandlerOptions } from '../../shared/openapi.D3j94c9n.mjs';
|
|
7
7
|
|
|
8
8
|
declare class StandardOpenAPICodec implements StandardCodec {
|
|
9
|
+
#private;
|
|
9
10
|
private readonly serializer;
|
|
10
11
|
constructor(serializer: StandardOpenAPISerializer);
|
|
11
12
|
decode(request: StandardLazyRequest, params: StandardParams | undefined, procedure: AnyProcedure): Promise<unknown>;
|
|
@@ -6,6 +6,7 @@ import { StandardLazyRequest, StandardResponse } from '@orpc/standard-server';
|
|
|
6
6
|
export { a as StandardOpenAPIHandler, S as StandardOpenAPIHandlerOptions } from '../../shared/openapi.D3j94c9n.js';
|
|
7
7
|
|
|
8
8
|
declare class StandardOpenAPICodec implements StandardCodec {
|
|
9
|
+
#private;
|
|
9
10
|
private readonly serializer;
|
|
10
11
|
constructor(serializer: StandardOpenAPISerializer);
|
|
11
12
|
decode(request: StandardLazyRequest, params: StandardParams | undefined, procedure: AnyProcedure): Promise<unknown>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
export { S as StandardOpenAPICodec, a as StandardOpenAPIHandler, b as StandardOpenAPIMatcher, d as decodeParams, t as toRou3Pattern } from '../../shared/openapi.
|
|
1
|
+
export { S as StandardOpenAPICodec, a as StandardOpenAPIHandler, b as StandardOpenAPIMatcher, d as decodeParams, t as toRou3Pattern } from '../../shared/openapi.C_UtQ8Us.mjs';
|
|
2
2
|
import '@orpc/openapi-client/standard';
|
|
3
3
|
import '@orpc/server/standard';
|
|
4
|
+
import '@orpc/client';
|
|
4
5
|
import '@orpc/contract';
|
|
5
6
|
import '@orpc/shared';
|
|
6
7
|
import '@orpc/client/standard';
|
package/dist/index.d.mts
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
|
-
import { AnyContractProcedure
|
|
1
|
+
import { AnyContractProcedure } from '@orpc/contract';
|
|
2
2
|
import { OpenAPIV3_1 } from 'openapi-types';
|
|
3
3
|
export { OpenAPIV3_1 as OpenAPI } from 'openapi-types';
|
|
4
|
-
|
|
5
|
-
import { AnyRouter } from '@orpc/server';
|
|
6
|
-
import { Promisable } from '@orpc/shared';
|
|
7
|
-
import { JSONSchema } from 'json-schema-typed/draft-2020-12';
|
|
8
|
-
export { JSONSchema, Format as JSONSchemaFormat } from 'json-schema-typed/draft-2020-12';
|
|
4
|
+
export { d as CompositeSchemaConverter, C as ConditionalSchemaConverter, b as OpenAPIGenerator, a as OpenAPIGeneratorGenerateOptions, O as OpenAPIGeneratorOptions, S as SchemaConvertOptions, c as SchemaConverter } from './shared/openapi.CwdCLgSU.mjs';
|
|
9
5
|
import { HTTPPath, HTTPMethod } from '@orpc/client';
|
|
6
|
+
import { JSONSchema } from 'json-schema-typed/draft-2020-12';
|
|
7
|
+
export { JSONSchema, ContentEncoding as JSONSchemaContentEncoding, Format as JSONSchemaFormat } from 'json-schema-typed/draft-2020-12';
|
|
8
|
+
import { JsonifiedClient } from '@orpc/openapi-client';
|
|
9
|
+
import { AnyRouter, ClientContext, Lazyable, CreateProcedureClientOptions, InferRouterInitialContext, Schema, ErrorMap, Meta, RouterClient } from '@orpc/server';
|
|
10
|
+
import { MaybeOptionalOptions } from '@orpc/shared';
|
|
11
|
+
import '@orpc/openapi-client/standard';
|
|
10
12
|
|
|
11
13
|
type OverrideOperationValue = Partial<OpenAPIV3_1.OperationObject> | ((current: OpenAPIV3_1.OperationObject, procedure: AnyContractProcedure) => OpenAPIV3_1.OperationObject);
|
|
12
14
|
/**
|
|
@@ -36,42 +38,6 @@ type FileSchema = JSONSchema & {
|
|
|
36
38
|
*/
|
|
37
39
|
declare const LOGIC_KEYWORDS: string[];
|
|
38
40
|
|
|
39
|
-
interface SchemaConvertOptions {
|
|
40
|
-
strategy: 'input' | 'output';
|
|
41
|
-
}
|
|
42
|
-
interface SchemaConverter {
|
|
43
|
-
convert(schema: AnySchema | undefined, options: SchemaConvertOptions): Promisable<[required: boolean, jsonSchema: JSONSchema]>;
|
|
44
|
-
}
|
|
45
|
-
interface ConditionalSchemaConverter extends SchemaConverter {
|
|
46
|
-
condition(schema: AnySchema | undefined, options: SchemaConvertOptions): Promisable<boolean>;
|
|
47
|
-
}
|
|
48
|
-
declare class CompositeSchemaConverter implements SchemaConverter {
|
|
49
|
-
private readonly converters;
|
|
50
|
-
constructor(converters: ConditionalSchemaConverter[]);
|
|
51
|
-
convert(schema: AnySchema | undefined, options: SchemaConvertOptions): Promise<[required: boolean, jsonSchema: JSONSchema]>;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
interface OpenAPIGeneratorOptions extends StandardOpenAPIJsonSerializerOptions {
|
|
55
|
-
schemaConverters?: ConditionalSchemaConverter[];
|
|
56
|
-
}
|
|
57
|
-
/**
|
|
58
|
-
* The generator that converts oRPC routers/contracts to OpenAPI specifications.
|
|
59
|
-
*
|
|
60
|
-
* @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification OpenAPI Specification Docs}
|
|
61
|
-
*/
|
|
62
|
-
declare class OpenAPIGenerator {
|
|
63
|
-
#private;
|
|
64
|
-
private readonly serializer;
|
|
65
|
-
private readonly converter;
|
|
66
|
-
constructor(options?: OpenAPIGeneratorOptions);
|
|
67
|
-
/**
|
|
68
|
-
* Generates OpenAPI specifications from oRPC routers/contracts.
|
|
69
|
-
*
|
|
70
|
-
* @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification OpenAPI Specification Docs}
|
|
71
|
-
*/
|
|
72
|
-
generate(router: AnyContractRouter | AnyRouter, base: Omit<OpenAPIV3_1.Document, 'openapi'>): Promise<OpenAPIV3_1.Document>;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
41
|
/**
|
|
76
42
|
* @internal
|
|
77
43
|
*/
|
|
@@ -101,6 +67,8 @@ declare function checkParamsSchema(schema: ObjectSchema, params: string[]): bool
|
|
|
101
67
|
*/
|
|
102
68
|
declare function toOpenAPISchema(schema: JSONSchema): OpenAPIV3_1.SchemaObject & object;
|
|
103
69
|
|
|
70
|
+
declare function createJsonifiedRouterClient<T extends AnyRouter, TClientContext extends ClientContext>(router: Lazyable<T | undefined>, ...rest: MaybeOptionalOptions<CreateProcedureClientOptions<InferRouterInitialContext<T>, Schema<unknown, unknown>, ErrorMap, Meta, TClientContext>>): JsonifiedClient<RouterClient<T, TClientContext>>;
|
|
71
|
+
|
|
104
72
|
/**
|
|
105
73
|
*@internal
|
|
106
74
|
*/
|
|
@@ -122,10 +90,16 @@ declare function separateObjectSchema(schema: ObjectSchema, separatedProperties:
|
|
|
122
90
|
*/
|
|
123
91
|
declare function filterSchemaBranches(schema: JSONSchema, check: (schema: JSONSchema) => boolean, matches?: JSONSchema[]): [matches: JSONSchema[], rest: JSONSchema | undefined];
|
|
124
92
|
declare function applySchemaOptionality(required: boolean, schema: JSONSchema): JSONSchema;
|
|
93
|
+
/**
|
|
94
|
+
* Takes a JSON schema and, if it's primarily a union type (anyOf, oneOf),
|
|
95
|
+
* recursively expands it into an array of its constituent, non-union base schemas.
|
|
96
|
+
* If the schema is not a simple union or is a base type, it's returned as a single-element array.
|
|
97
|
+
*/
|
|
98
|
+
declare function expandUnionSchema(schema: JSONSchema): JSONSchema[];
|
|
125
99
|
|
|
126
100
|
declare const oo: {
|
|
127
101
|
spec: typeof customOpenAPIOperation;
|
|
128
102
|
};
|
|
129
103
|
|
|
130
|
-
export {
|
|
131
|
-
export type {
|
|
104
|
+
export { LOGIC_KEYWORDS, applyCustomOpenAPIOperation, applySchemaOptionality, checkParamsSchema, createJsonifiedRouterClient, customOpenAPIOperation, expandUnionSchema, filterSchemaBranches, getCustomOpenAPIOperation, isAnySchema, isFileSchema, isObjectSchema, oo, separateObjectSchema, toOpenAPIContent, toOpenAPIEventIteratorContent, toOpenAPIMethod, toOpenAPIParameters, toOpenAPIPath, toOpenAPISchema };
|
|
105
|
+
export type { FileSchema, ObjectSchema, OverrideOperationValue };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
|
-
import { AnyContractProcedure
|
|
1
|
+
import { AnyContractProcedure } from '@orpc/contract';
|
|
2
2
|
import { OpenAPIV3_1 } from 'openapi-types';
|
|
3
3
|
export { OpenAPIV3_1 as OpenAPI } from 'openapi-types';
|
|
4
|
-
|
|
5
|
-
import { AnyRouter } from '@orpc/server';
|
|
6
|
-
import { Promisable } from '@orpc/shared';
|
|
7
|
-
import { JSONSchema } from 'json-schema-typed/draft-2020-12';
|
|
8
|
-
export { JSONSchema, Format as JSONSchemaFormat } from 'json-schema-typed/draft-2020-12';
|
|
4
|
+
export { d as CompositeSchemaConverter, C as ConditionalSchemaConverter, b as OpenAPIGenerator, a as OpenAPIGeneratorGenerateOptions, O as OpenAPIGeneratorOptions, S as SchemaConvertOptions, c as SchemaConverter } from './shared/openapi.CwdCLgSU.js';
|
|
9
5
|
import { HTTPPath, HTTPMethod } from '@orpc/client';
|
|
6
|
+
import { JSONSchema } from 'json-schema-typed/draft-2020-12';
|
|
7
|
+
export { JSONSchema, ContentEncoding as JSONSchemaContentEncoding, Format as JSONSchemaFormat } from 'json-schema-typed/draft-2020-12';
|
|
8
|
+
import { JsonifiedClient } from '@orpc/openapi-client';
|
|
9
|
+
import { AnyRouter, ClientContext, Lazyable, CreateProcedureClientOptions, InferRouterInitialContext, Schema, ErrorMap, Meta, RouterClient } from '@orpc/server';
|
|
10
|
+
import { MaybeOptionalOptions } from '@orpc/shared';
|
|
11
|
+
import '@orpc/openapi-client/standard';
|
|
10
12
|
|
|
11
13
|
type OverrideOperationValue = Partial<OpenAPIV3_1.OperationObject> | ((current: OpenAPIV3_1.OperationObject, procedure: AnyContractProcedure) => OpenAPIV3_1.OperationObject);
|
|
12
14
|
/**
|
|
@@ -36,42 +38,6 @@ type FileSchema = JSONSchema & {
|
|
|
36
38
|
*/
|
|
37
39
|
declare const LOGIC_KEYWORDS: string[];
|
|
38
40
|
|
|
39
|
-
interface SchemaConvertOptions {
|
|
40
|
-
strategy: 'input' | 'output';
|
|
41
|
-
}
|
|
42
|
-
interface SchemaConverter {
|
|
43
|
-
convert(schema: AnySchema | undefined, options: SchemaConvertOptions): Promisable<[required: boolean, jsonSchema: JSONSchema]>;
|
|
44
|
-
}
|
|
45
|
-
interface ConditionalSchemaConverter extends SchemaConverter {
|
|
46
|
-
condition(schema: AnySchema | undefined, options: SchemaConvertOptions): Promisable<boolean>;
|
|
47
|
-
}
|
|
48
|
-
declare class CompositeSchemaConverter implements SchemaConverter {
|
|
49
|
-
private readonly converters;
|
|
50
|
-
constructor(converters: ConditionalSchemaConverter[]);
|
|
51
|
-
convert(schema: AnySchema | undefined, options: SchemaConvertOptions): Promise<[required: boolean, jsonSchema: JSONSchema]>;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
interface OpenAPIGeneratorOptions extends StandardOpenAPIJsonSerializerOptions {
|
|
55
|
-
schemaConverters?: ConditionalSchemaConverter[];
|
|
56
|
-
}
|
|
57
|
-
/**
|
|
58
|
-
* The generator that converts oRPC routers/contracts to OpenAPI specifications.
|
|
59
|
-
*
|
|
60
|
-
* @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification OpenAPI Specification Docs}
|
|
61
|
-
*/
|
|
62
|
-
declare class OpenAPIGenerator {
|
|
63
|
-
#private;
|
|
64
|
-
private readonly serializer;
|
|
65
|
-
private readonly converter;
|
|
66
|
-
constructor(options?: OpenAPIGeneratorOptions);
|
|
67
|
-
/**
|
|
68
|
-
* Generates OpenAPI specifications from oRPC routers/contracts.
|
|
69
|
-
*
|
|
70
|
-
* @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification OpenAPI Specification Docs}
|
|
71
|
-
*/
|
|
72
|
-
generate(router: AnyContractRouter | AnyRouter, base: Omit<OpenAPIV3_1.Document, 'openapi'>): Promise<OpenAPIV3_1.Document>;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
41
|
/**
|
|
76
42
|
* @internal
|
|
77
43
|
*/
|
|
@@ -101,6 +67,8 @@ declare function checkParamsSchema(schema: ObjectSchema, params: string[]): bool
|
|
|
101
67
|
*/
|
|
102
68
|
declare function toOpenAPISchema(schema: JSONSchema): OpenAPIV3_1.SchemaObject & object;
|
|
103
69
|
|
|
70
|
+
declare function createJsonifiedRouterClient<T extends AnyRouter, TClientContext extends ClientContext>(router: Lazyable<T | undefined>, ...rest: MaybeOptionalOptions<CreateProcedureClientOptions<InferRouterInitialContext<T>, Schema<unknown, unknown>, ErrorMap, Meta, TClientContext>>): JsonifiedClient<RouterClient<T, TClientContext>>;
|
|
71
|
+
|
|
104
72
|
/**
|
|
105
73
|
*@internal
|
|
106
74
|
*/
|
|
@@ -122,10 +90,16 @@ declare function separateObjectSchema(schema: ObjectSchema, separatedProperties:
|
|
|
122
90
|
*/
|
|
123
91
|
declare function filterSchemaBranches(schema: JSONSchema, check: (schema: JSONSchema) => boolean, matches?: JSONSchema[]): [matches: JSONSchema[], rest: JSONSchema | undefined];
|
|
124
92
|
declare function applySchemaOptionality(required: boolean, schema: JSONSchema): JSONSchema;
|
|
93
|
+
/**
|
|
94
|
+
* Takes a JSON schema and, if it's primarily a union type (anyOf, oneOf),
|
|
95
|
+
* recursively expands it into an array of its constituent, non-union base schemas.
|
|
96
|
+
* If the schema is not a simple union or is a base type, it's returned as a single-element array.
|
|
97
|
+
*/
|
|
98
|
+
declare function expandUnionSchema(schema: JSONSchema): JSONSchema[];
|
|
125
99
|
|
|
126
100
|
declare const oo: {
|
|
127
101
|
spec: typeof customOpenAPIOperation;
|
|
128
102
|
};
|
|
129
103
|
|
|
130
|
-
export {
|
|
131
|
-
export type {
|
|
104
|
+
export { LOGIC_KEYWORDS, applyCustomOpenAPIOperation, applySchemaOptionality, checkParamsSchema, createJsonifiedRouterClient, customOpenAPIOperation, expandUnionSchema, filterSchemaBranches, getCustomOpenAPIOperation, isAnySchema, isFileSchema, isObjectSchema, oo, separateObjectSchema, toOpenAPIContent, toOpenAPIEventIteratorContent, toOpenAPIMethod, toOpenAPIParameters, toOpenAPIPath, toOpenAPISchema };
|
|
105
|
+
export type { FileSchema, ObjectSchema, OverrideOperationValue };
|