@orpc/openapi 0.0.0-next.999d654 → 0.0.0-next.99d5d75

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.
Files changed (37) hide show
  1. package/README.md +145 -30
  2. package/dist/adapters/aws-lambda/index.d.mts +20 -0
  3. package/dist/adapters/aws-lambda/index.d.ts +20 -0
  4. package/dist/adapters/aws-lambda/index.mjs +18 -0
  5. package/dist/adapters/fastify/index.d.mts +23 -0
  6. package/dist/adapters/fastify/index.d.ts +23 -0
  7. package/dist/adapters/fastify/index.mjs +18 -0
  8. package/dist/adapters/fetch/index.d.mts +18 -8
  9. package/dist/adapters/fetch/index.d.ts +18 -8
  10. package/dist/adapters/fetch/index.mjs +14 -7
  11. package/dist/adapters/node/index.d.mts +18 -8
  12. package/dist/adapters/node/index.d.ts +18 -8
  13. package/dist/adapters/node/index.mjs +9 -24
  14. package/dist/adapters/standard/index.d.mts +8 -22
  15. package/dist/adapters/standard/index.d.ts +8 -22
  16. package/dist/adapters/standard/index.mjs +5 -3
  17. package/dist/index.d.mts +42 -45
  18. package/dist/index.d.ts +42 -45
  19. package/dist/index.mjs +30 -292
  20. package/dist/plugins/index.d.mts +86 -0
  21. package/dist/plugins/index.d.ts +86 -0
  22. package/dist/plugins/index.mjs +157 -0
  23. package/dist/shared/openapi.BGy4N6eR.d.mts +120 -0
  24. package/dist/shared/openapi.BGy4N6eR.d.ts +120 -0
  25. package/dist/shared/openapi.CoREqFh3.mjs +853 -0
  26. package/dist/shared/{openapi.CJTe38Ya.mjs → openapi.DIt-Z9W1.mjs} +60 -15
  27. package/dist/shared/openapi.DwaweYRb.d.mts +54 -0
  28. package/dist/shared/openapi.DwaweYRb.d.ts +54 -0
  29. package/package.json +29 -26
  30. package/dist/adapters/hono/index.d.mts +0 -6
  31. package/dist/adapters/hono/index.d.ts +0 -6
  32. package/dist/adapters/hono/index.mjs +0 -11
  33. package/dist/adapters/next/index.d.mts +0 -6
  34. package/dist/adapters/next/index.d.ts +0 -6
  35. package/dist/adapters/next/index.mjs +0 -11
  36. package/dist/shared/openapi.CbzTVvGL.mjs +0 -31
  37. package/dist/shared/openapi.DZzpQAb-.mjs +0 -231
@@ -1,24 +1,10 @@
1
- import { ORPCError } from '@orpc/client';
2
- import { OpenAPISerializer } from '@orpc/openapi-client/standard';
3
- import { AnyProcedure, AnyRouter } from '@orpc/server';
4
- import { StandardCodec, StandardParams, StandardMatcher, StandardMatchResult } from '@orpc/server/standard';
5
- import { StandardLazyRequest, StandardResponse } from '@orpc/standard-server';
6
- import { HTTPPath } from '@orpc/contract';
7
-
8
- declare class OpenAPICodec implements StandardCodec {
9
- private readonly serializer;
10
- constructor(serializer: OpenAPISerializer);
11
- decode(request: StandardLazyRequest, params: StandardParams | undefined, procedure: AnyProcedure): Promise<unknown>;
12
- encode(output: unknown, procedure: AnyProcedure): StandardResponse;
13
- encodeError(error: ORPCError<any, any>): StandardResponse;
14
- }
15
-
16
- declare class OpenAPIMatcher implements StandardMatcher {
17
- private readonly tree;
18
- private pendingRouters;
19
- init(router: AnyRouter, path?: readonly string[]): void;
20
- match(method: string, pathname: HTTPPath): Promise<StandardMatchResult>;
21
- }
1
+ export { a as StandardOpenAPICodec, S as StandardOpenAPICodecOptions, c as StandardOpenAPIHandler, b as StandardOpenAPIHandlerOptions, e as StandardOpenAPIMatcher, d as StandardOpenAPIMatcherOptions } from '../../shared/openapi.DwaweYRb.mjs';
2
+ import { HTTPPath } from '@orpc/client';
3
+ import '@orpc/openapi-client/standard';
4
+ import '@orpc/server';
5
+ import '@orpc/server/standard';
6
+ import '@orpc/standard-server';
7
+ import '@orpc/shared';
22
8
 
23
9
  /**
24
10
  * {@link https://github.com/unjs/rou3}
@@ -31,4 +17,4 @@ declare function toRou3Pattern(path: HTTPPath): string;
31
17
  */
32
18
  declare function decodeParams(params: Record<string, string>): Record<string, string>;
33
19
 
34
- export { OpenAPICodec, OpenAPIMatcher, decodeParams, toRou3Pattern };
20
+ export { decodeParams, toRou3Pattern };
@@ -1,24 +1,10 @@
1
- import { ORPCError } from '@orpc/client';
2
- import { OpenAPISerializer } from '@orpc/openapi-client/standard';
3
- import { AnyProcedure, AnyRouter } from '@orpc/server';
4
- import { StandardCodec, StandardParams, StandardMatcher, StandardMatchResult } from '@orpc/server/standard';
5
- import { StandardLazyRequest, StandardResponse } from '@orpc/standard-server';
6
- import { HTTPPath } from '@orpc/contract';
7
-
8
- declare class OpenAPICodec implements StandardCodec {
9
- private readonly serializer;
10
- constructor(serializer: OpenAPISerializer);
11
- decode(request: StandardLazyRequest, params: StandardParams | undefined, procedure: AnyProcedure): Promise<unknown>;
12
- encode(output: unknown, procedure: AnyProcedure): StandardResponse;
13
- encodeError(error: ORPCError<any, any>): StandardResponse;
14
- }
15
-
16
- declare class OpenAPIMatcher implements StandardMatcher {
17
- private readonly tree;
18
- private pendingRouters;
19
- init(router: AnyRouter, path?: readonly string[]): void;
20
- match(method: string, pathname: HTTPPath): Promise<StandardMatchResult>;
21
- }
1
+ export { a as StandardOpenAPICodec, S as StandardOpenAPICodecOptions, c as StandardOpenAPIHandler, b as StandardOpenAPIHandlerOptions, e as StandardOpenAPIMatcher, d as StandardOpenAPIMatcherOptions } from '../../shared/openapi.DwaweYRb.js';
2
+ import { HTTPPath } from '@orpc/client';
3
+ import '@orpc/openapi-client/standard';
4
+ import '@orpc/server';
5
+ import '@orpc/server/standard';
6
+ import '@orpc/standard-server';
7
+ import '@orpc/shared';
22
8
 
23
9
  /**
24
10
  * {@link https://github.com/unjs/rou3}
@@ -31,4 +17,4 @@ declare function toRou3Pattern(path: HTTPPath): string;
31
17
  */
32
18
  declare function decodeParams(params: Record<string, string>): Record<string, string>;
33
19
 
34
- export { OpenAPICodec, OpenAPIMatcher, decodeParams, toRou3Pattern };
20
+ export { decodeParams, toRou3Pattern };
@@ -1,7 +1,9 @@
1
- export { O as OpenAPICodec, a as OpenAPIMatcher, d as decodeParams, t as toRou3Pattern } from '../../shared/openapi.CJTe38Ya.mjs';
1
+ export { S as StandardOpenAPICodec, a as StandardOpenAPIHandler, b as StandardOpenAPIMatcher, d as decodeParams, t as toRou3Pattern } from '../../shared/openapi.DIt-Z9W1.mjs';
2
+ import '@orpc/openapi-client/standard';
3
+ import '@orpc/server/standard';
4
+ import '@orpc/client';
2
5
  import '@orpc/contract';
3
6
  import '@orpc/shared';
7
+ import '@orpc/client/standard';
4
8
  import '@orpc/server';
5
9
  import 'rou3';
6
- import '../../shared/openapi.DZzpQAb-.mjs';
7
- import 'json-schema-typed/draft-2020-12';
package/dist/index.d.mts CHANGED
@@ -1,14 +1,23 @@
1
- import { AnyContractProcedure, AnySchema, AnyContractRouter, HTTPPath, HTTPMethod } from '@orpc/contract';
2
- import { OpenAPIV3_1 } from 'openapi-types';
3
- export { OpenAPIV3_1 as OpenAPI } from 'openapi-types';
4
- import { AnyRouter } from '@orpc/server';
1
+ import { OpenAPI, AnyContractProcedure } from '@orpc/contract';
2
+ export { OpenAPI } from '@orpc/contract';
3
+ export { e as CompositeSchemaConverter, C as ConditionalSchemaConverter, b as OpenAPIGenerator, a as OpenAPIGeneratorGenerateOptions, O as OpenAPIGeneratorOptions, c as SchemaConvertOptions, d as SchemaConverter, S as SchemaConverterComponent } from './shared/openapi.BGy4N6eR.mjs';
4
+ import { HTTPPath, HTTPMethod } from '@orpc/client';
5
5
  import { JSONSchema } from 'json-schema-typed/draft-2020-12';
6
- export { JSONSchema, Format as JSONSchemaFormat } from 'json-schema-typed/draft-2020-12';
6
+ export { JSONSchema, ContentEncoding as JSONSchemaContentEncoding, Format as JSONSchemaFormat, TypeName as JSONSchemaTypeName } from 'json-schema-typed/draft-2020-12';
7
+ import { JsonifiedClient } from '@orpc/openapi-client';
8
+ import { AnyRouter, ClientContext, Lazyable, CreateProcedureClientOptions, InferRouterInitialContext, Schema, ErrorMap, Meta, RouterClient } from '@orpc/server';
9
+ import { MaybeOptionalOptions } from '@orpc/shared';
10
+ import '@orpc/openapi-client/standard';
7
11
 
8
- type OverrideOperationValue = Partial<OpenAPIV3_1.OperationObject> | ((current: OpenAPIV3_1.OperationObject, procedure: AnyContractProcedure) => OpenAPIV3_1.OperationObject);
12
+ type OverrideOperationValue = Partial<OpenAPI.OperationObject> | ((current: OpenAPI.OperationObject, procedure: AnyContractProcedure) => OpenAPI.OperationObject);
13
+ /**
14
+ * Customize The Operation Object by proxy an error map item or a middleware.
15
+ *
16
+ * @see {@link https://orpc.dev/docs/openapi/openapi-specification#customizing-operation-objects Customizing Operation Objects Docs}
17
+ */
9
18
  declare function customOpenAPIOperation<T extends object>(o: T, extend: OverrideOperationValue): T;
10
19
  declare function getCustomOpenAPIOperation(o: object): OverrideOperationValue | undefined;
11
- declare function applyCustomOpenAPIOperation(operation: OpenAPIV3_1.OperationObject, contract: AnyContractProcedure): OpenAPIV3_1.OperationObject;
20
+ declare function applyCustomOpenAPIOperation(operation: OpenAPI.OperationObject, contract: AnyContractProcedure): OpenAPI.OperationObject;
12
21
 
13
22
  /**
14
23
  * @internal
@@ -28,36 +37,6 @@ type FileSchema = JSONSchema & {
28
37
  */
29
38
  declare const LOGIC_KEYWORDS: string[];
30
39
 
31
- interface SchemaConvertOptions {
32
- strategy: 'input' | 'output';
33
- }
34
- interface SchemaConverter {
35
- convert(schema: AnySchema | undefined, options: SchemaConvertOptions): [required: boolean, jsonSchema: JSONSchema];
36
- }
37
- interface ConditionalSchemaConverter extends SchemaConverter {
38
- condition(schema: AnySchema | undefined, options: SchemaConvertOptions): boolean;
39
- }
40
- declare class CompositeSchemaConverter implements SchemaConverter {
41
- private readonly converters;
42
- constructor(converters: ConditionalSchemaConverter[]);
43
- convert(schema: AnySchema | undefined, options: SchemaConvertOptions): [required: boolean, jsonSchema: JSONSchema];
44
- }
45
-
46
- interface OpenAPIGeneratorOptions {
47
- schemaConverters?: ConditionalSchemaConverter[];
48
- }
49
- declare class OpenAPIGenerator {
50
- #private;
51
- private readonly serializer;
52
- private readonly converter;
53
- constructor(options?: OpenAPIGeneratorOptions);
54
- generate(router: AnyContractRouter | AnyRouter, base: Omit<OpenAPIV3_1.Document, 'openapi'>): Promise<OpenAPIV3_1.Document>;
55
- }
56
-
57
- /**
58
- * @internal
59
- */
60
- declare function standardizeHTTPPath(path: HTTPPath): HTTPPath;
61
40
  /**
62
41
  * @internal
63
42
  */
@@ -69,27 +48,32 @@ declare function toOpenAPIMethod(method: HTTPMethod): Lowercase<HTTPMethod>;
69
48
  /**
70
49
  * @internal
71
50
  */
72
- declare function getDynamicParams(path: HTTPPath | undefined): string[] | undefined;
51
+ declare function toOpenAPIContent(schema: JSONSchema): Record<string, OpenAPI.MediaTypeObject>;
73
52
  /**
74
53
  * @internal
75
54
  */
76
- declare function toOpenAPIContent(schema: JSONSchema): Record<string, OpenAPIV3_1.MediaTypeObject>;
55
+ declare function toOpenAPIEventIteratorContent([yieldsRequired, yieldsSchema]: [boolean, JSONSchema], [returnsRequired, returnsSchema]: [boolean, JSONSchema]): Record<string, OpenAPI.MediaTypeObject>;
77
56
  /**
78
57
  * @internal
79
58
  */
80
- declare function toOpenAPIEventIteratorContent([yieldsRequired, yieldsSchema]: [boolean, JSONSchema], [returnsRequired, returnsSchema]: [boolean, JSONSchema]): Record<string, OpenAPIV3_1.MediaTypeObject>;
59
+ declare function toOpenAPIParameters(schema: ObjectSchema, parameterIn: 'path' | 'query' | 'header' | 'cookie'): OpenAPI.ParameterObject[];
81
60
  /**
82
61
  * @internal
83
62
  */
84
- declare function toOpenAPIParameters(schema: ObjectSchema, parameterIn: 'path' | 'query' | 'header' | 'cookie'): OpenAPIV3_1.ParameterObject[];
63
+ declare function checkParamsSchema(schema: ObjectSchema, params: string[]): boolean;
85
64
  /**
86
65
  * @internal
87
66
  */
88
- declare function checkParamsSchema(schema: ObjectSchema, params: string[]): boolean;
67
+ declare function toOpenAPISchema(schema: JSONSchema): OpenAPI.SchemaObject & object;
68
+ declare function resolveOpenAPIJsonSchemaRef(doc: OpenAPI.Document, schema: JSONSchema): JSONSchema;
89
69
  /**
90
- * @internal
70
+ * Simplifies composed object JSON Schemas (using anyOf, oneOf, allOf) by flattening nested compositions
71
+ *
72
+ * @warning The result is looser than the original schema and may not fully validate the same data.
91
73
  */
92
- declare function toOpenAPISchema(schema: JSONSchema): OpenAPIV3_1.SchemaObject & object;
74
+ declare function simplifyComposedObjectJsonSchemasAndRefs(schema: JSONSchema, doc?: OpenAPI.Document): JSONSchema;
75
+
76
+ 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>>;
93
77
 
94
78
  /**
95
79
  *@internal
@@ -111,9 +95,22 @@ declare function separateObjectSchema(schema: ObjectSchema, separatedProperties:
111
95
  * @internal
112
96
  */
113
97
  declare function filterSchemaBranches(schema: JSONSchema, check: (schema: JSONSchema) => boolean, matches?: JSONSchema[]): [matches: JSONSchema[], rest: JSONSchema | undefined];
98
+ declare function applySchemaOptionality(required: boolean, schema: JSONSchema): JSONSchema;
99
+ /**
100
+ * Takes a JSON schema and, if it's primarily a union type (anyOf, oneOf),
101
+ * recursively expands it into an array of its constituent, non-union base schemas.
102
+ * If the schema is not a simple union or is a base type, it's returned as a single-element array.
103
+ */
104
+ declare function expandUnionSchema(schema: JSONSchema): JSONSchema[];
105
+ declare function expandArrayableSchema(schema: JSONSchema): undefined | [items: JSONSchema, array: JSONSchema & {
106
+ type: 'array';
107
+ items?: JSONSchema;
108
+ }];
109
+ declare function isPrimitiveSchema(schema: JSONSchema): boolean;
114
110
 
115
111
  declare const oo: {
116
112
  spec: typeof customOpenAPIOperation;
117
113
  };
118
114
 
119
- export { CompositeSchemaConverter, type ConditionalSchemaConverter, type FileSchema, LOGIC_KEYWORDS, type ObjectSchema, OpenAPIGenerator, type OpenAPIGeneratorOptions, type OverrideOperationValue, type SchemaConvertOptions, type SchemaConverter, applyCustomOpenAPIOperation, checkParamsSchema, customOpenAPIOperation, filterSchemaBranches, getCustomOpenAPIOperation, getDynamicParams, isAnySchema, isFileSchema, isObjectSchema, oo, separateObjectSchema, standardizeHTTPPath, toOpenAPIContent, toOpenAPIEventIteratorContent, toOpenAPIMethod, toOpenAPIParameters, toOpenAPIPath, toOpenAPISchema };
115
+ export { LOGIC_KEYWORDS, applyCustomOpenAPIOperation, applySchemaOptionality, checkParamsSchema, createJsonifiedRouterClient, customOpenAPIOperation, expandArrayableSchema, expandUnionSchema, filterSchemaBranches, getCustomOpenAPIOperation, isAnySchema, isFileSchema, isObjectSchema, isPrimitiveSchema, oo, resolveOpenAPIJsonSchemaRef, separateObjectSchema, simplifyComposedObjectJsonSchemasAndRefs, toOpenAPIContent, toOpenAPIEventIteratorContent, toOpenAPIMethod, toOpenAPIParameters, toOpenAPIPath, toOpenAPISchema };
116
+ export type { FileSchema, ObjectSchema, OverrideOperationValue };
package/dist/index.d.ts CHANGED
@@ -1,14 +1,23 @@
1
- import { AnyContractProcedure, AnySchema, AnyContractRouter, HTTPPath, HTTPMethod } from '@orpc/contract';
2
- import { OpenAPIV3_1 } from 'openapi-types';
3
- export { OpenAPIV3_1 as OpenAPI } from 'openapi-types';
4
- import { AnyRouter } from '@orpc/server';
1
+ import { OpenAPI, AnyContractProcedure } from '@orpc/contract';
2
+ export { OpenAPI } from '@orpc/contract';
3
+ export { e as CompositeSchemaConverter, C as ConditionalSchemaConverter, b as OpenAPIGenerator, a as OpenAPIGeneratorGenerateOptions, O as OpenAPIGeneratorOptions, c as SchemaConvertOptions, d as SchemaConverter, S as SchemaConverterComponent } from './shared/openapi.BGy4N6eR.js';
4
+ import { HTTPPath, HTTPMethod } from '@orpc/client';
5
5
  import { JSONSchema } from 'json-schema-typed/draft-2020-12';
6
- export { JSONSchema, Format as JSONSchemaFormat } from 'json-schema-typed/draft-2020-12';
6
+ export { JSONSchema, ContentEncoding as JSONSchemaContentEncoding, Format as JSONSchemaFormat, TypeName as JSONSchemaTypeName } from 'json-schema-typed/draft-2020-12';
7
+ import { JsonifiedClient } from '@orpc/openapi-client';
8
+ import { AnyRouter, ClientContext, Lazyable, CreateProcedureClientOptions, InferRouterInitialContext, Schema, ErrorMap, Meta, RouterClient } from '@orpc/server';
9
+ import { MaybeOptionalOptions } from '@orpc/shared';
10
+ import '@orpc/openapi-client/standard';
7
11
 
8
- type OverrideOperationValue = Partial<OpenAPIV3_1.OperationObject> | ((current: OpenAPIV3_1.OperationObject, procedure: AnyContractProcedure) => OpenAPIV3_1.OperationObject);
12
+ type OverrideOperationValue = Partial<OpenAPI.OperationObject> | ((current: OpenAPI.OperationObject, procedure: AnyContractProcedure) => OpenAPI.OperationObject);
13
+ /**
14
+ * Customize The Operation Object by proxy an error map item or a middleware.
15
+ *
16
+ * @see {@link https://orpc.dev/docs/openapi/openapi-specification#customizing-operation-objects Customizing Operation Objects Docs}
17
+ */
9
18
  declare function customOpenAPIOperation<T extends object>(o: T, extend: OverrideOperationValue): T;
10
19
  declare function getCustomOpenAPIOperation(o: object): OverrideOperationValue | undefined;
11
- declare function applyCustomOpenAPIOperation(operation: OpenAPIV3_1.OperationObject, contract: AnyContractProcedure): OpenAPIV3_1.OperationObject;
20
+ declare function applyCustomOpenAPIOperation(operation: OpenAPI.OperationObject, contract: AnyContractProcedure): OpenAPI.OperationObject;
12
21
 
13
22
  /**
14
23
  * @internal
@@ -28,36 +37,6 @@ type FileSchema = JSONSchema & {
28
37
  */
29
38
  declare const LOGIC_KEYWORDS: string[];
30
39
 
31
- interface SchemaConvertOptions {
32
- strategy: 'input' | 'output';
33
- }
34
- interface SchemaConverter {
35
- convert(schema: AnySchema | undefined, options: SchemaConvertOptions): [required: boolean, jsonSchema: JSONSchema];
36
- }
37
- interface ConditionalSchemaConverter extends SchemaConverter {
38
- condition(schema: AnySchema | undefined, options: SchemaConvertOptions): boolean;
39
- }
40
- declare class CompositeSchemaConverter implements SchemaConverter {
41
- private readonly converters;
42
- constructor(converters: ConditionalSchemaConverter[]);
43
- convert(schema: AnySchema | undefined, options: SchemaConvertOptions): [required: boolean, jsonSchema: JSONSchema];
44
- }
45
-
46
- interface OpenAPIGeneratorOptions {
47
- schemaConverters?: ConditionalSchemaConverter[];
48
- }
49
- declare class OpenAPIGenerator {
50
- #private;
51
- private readonly serializer;
52
- private readonly converter;
53
- constructor(options?: OpenAPIGeneratorOptions);
54
- generate(router: AnyContractRouter | AnyRouter, base: Omit<OpenAPIV3_1.Document, 'openapi'>): Promise<OpenAPIV3_1.Document>;
55
- }
56
-
57
- /**
58
- * @internal
59
- */
60
- declare function standardizeHTTPPath(path: HTTPPath): HTTPPath;
61
40
  /**
62
41
  * @internal
63
42
  */
@@ -69,27 +48,32 @@ declare function toOpenAPIMethod(method: HTTPMethod): Lowercase<HTTPMethod>;
69
48
  /**
70
49
  * @internal
71
50
  */
72
- declare function getDynamicParams(path: HTTPPath | undefined): string[] | undefined;
51
+ declare function toOpenAPIContent(schema: JSONSchema): Record<string, OpenAPI.MediaTypeObject>;
73
52
  /**
74
53
  * @internal
75
54
  */
76
- declare function toOpenAPIContent(schema: JSONSchema): Record<string, OpenAPIV3_1.MediaTypeObject>;
55
+ declare function toOpenAPIEventIteratorContent([yieldsRequired, yieldsSchema]: [boolean, JSONSchema], [returnsRequired, returnsSchema]: [boolean, JSONSchema]): Record<string, OpenAPI.MediaTypeObject>;
77
56
  /**
78
57
  * @internal
79
58
  */
80
- declare function toOpenAPIEventIteratorContent([yieldsRequired, yieldsSchema]: [boolean, JSONSchema], [returnsRequired, returnsSchema]: [boolean, JSONSchema]): Record<string, OpenAPIV3_1.MediaTypeObject>;
59
+ declare function toOpenAPIParameters(schema: ObjectSchema, parameterIn: 'path' | 'query' | 'header' | 'cookie'): OpenAPI.ParameterObject[];
81
60
  /**
82
61
  * @internal
83
62
  */
84
- declare function toOpenAPIParameters(schema: ObjectSchema, parameterIn: 'path' | 'query' | 'header' | 'cookie'): OpenAPIV3_1.ParameterObject[];
63
+ declare function checkParamsSchema(schema: ObjectSchema, params: string[]): boolean;
85
64
  /**
86
65
  * @internal
87
66
  */
88
- declare function checkParamsSchema(schema: ObjectSchema, params: string[]): boolean;
67
+ declare function toOpenAPISchema(schema: JSONSchema): OpenAPI.SchemaObject & object;
68
+ declare function resolveOpenAPIJsonSchemaRef(doc: OpenAPI.Document, schema: JSONSchema): JSONSchema;
89
69
  /**
90
- * @internal
70
+ * Simplifies composed object JSON Schemas (using anyOf, oneOf, allOf) by flattening nested compositions
71
+ *
72
+ * @warning The result is looser than the original schema and may not fully validate the same data.
91
73
  */
92
- declare function toOpenAPISchema(schema: JSONSchema): OpenAPIV3_1.SchemaObject & object;
74
+ declare function simplifyComposedObjectJsonSchemasAndRefs(schema: JSONSchema, doc?: OpenAPI.Document): JSONSchema;
75
+
76
+ 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>>;
93
77
 
94
78
  /**
95
79
  *@internal
@@ -111,9 +95,22 @@ declare function separateObjectSchema(schema: ObjectSchema, separatedProperties:
111
95
  * @internal
112
96
  */
113
97
  declare function filterSchemaBranches(schema: JSONSchema, check: (schema: JSONSchema) => boolean, matches?: JSONSchema[]): [matches: JSONSchema[], rest: JSONSchema | undefined];
98
+ declare function applySchemaOptionality(required: boolean, schema: JSONSchema): JSONSchema;
99
+ /**
100
+ * Takes a JSON schema and, if it's primarily a union type (anyOf, oneOf),
101
+ * recursively expands it into an array of its constituent, non-union base schemas.
102
+ * If the schema is not a simple union or is a base type, it's returned as a single-element array.
103
+ */
104
+ declare function expandUnionSchema(schema: JSONSchema): JSONSchema[];
105
+ declare function expandArrayableSchema(schema: JSONSchema): undefined | [items: JSONSchema, array: JSONSchema & {
106
+ type: 'array';
107
+ items?: JSONSchema;
108
+ }];
109
+ declare function isPrimitiveSchema(schema: JSONSchema): boolean;
114
110
 
115
111
  declare const oo: {
116
112
  spec: typeof customOpenAPIOperation;
117
113
  };
118
114
 
119
- export { CompositeSchemaConverter, type ConditionalSchemaConverter, type FileSchema, LOGIC_KEYWORDS, type ObjectSchema, OpenAPIGenerator, type OpenAPIGeneratorOptions, type OverrideOperationValue, type SchemaConvertOptions, type SchemaConverter, applyCustomOpenAPIOperation, checkParamsSchema, customOpenAPIOperation, filterSchemaBranches, getCustomOpenAPIOperation, getDynamicParams, isAnySchema, isFileSchema, isObjectSchema, oo, separateObjectSchema, standardizeHTTPPath, toOpenAPIContent, toOpenAPIEventIteratorContent, toOpenAPIMethod, toOpenAPIParameters, toOpenAPIPath, toOpenAPISchema };
115
+ export { LOGIC_KEYWORDS, applyCustomOpenAPIOperation, applySchemaOptionality, checkParamsSchema, createJsonifiedRouterClient, customOpenAPIOperation, expandArrayableSchema, expandUnionSchema, filterSchemaBranches, getCustomOpenAPIOperation, isAnySchema, isFileSchema, isObjectSchema, isPrimitiveSchema, oo, resolveOpenAPIJsonSchemaRef, separateObjectSchema, simplifyComposedObjectJsonSchemasAndRefs, toOpenAPIContent, toOpenAPIEventIteratorContent, toOpenAPIMethod, toOpenAPIParameters, toOpenAPIPath, toOpenAPISchema };
116
+ export type { FileSchema, ObjectSchema, OverrideOperationValue };