@temporary-name/server 1.9.3-alpha.4275e976ddda4d8be107c2cfde9899bdea9a337d → 1.9.3-alpha.65222302f1b71807a849530b3fe0fa0326d3c1a2
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/dist/adapters/aws-lambda/index.d.mts +12 -6
- package/dist/adapters/aws-lambda/index.d.ts +12 -6
- package/dist/adapters/aws-lambda/index.mjs +14 -4
- package/dist/adapters/fetch/index.d.mts +12 -6
- package/dist/adapters/fetch/index.d.ts +12 -6
- package/dist/adapters/fetch/index.mjs +11 -8
- package/dist/adapters/node/index.d.mts +12 -6
- package/dist/adapters/node/index.d.ts +12 -6
- package/dist/adapters/node/index.mjs +11 -8
- package/dist/adapters/standard/index.d.mts +39 -13
- package/dist/adapters/standard/index.d.ts +39 -13
- package/dist/adapters/standard/index.mjs +7 -97
- package/dist/index.d.mts +29 -334
- package/dist/index.d.ts +29 -334
- package/dist/index.mjs +69 -107
- package/dist/openapi/index.d.mts +220 -0
- package/dist/openapi/index.d.ts +220 -0
- package/dist/openapi/index.mjs +776 -0
- package/dist/plugins/index.d.mts +2 -2
- package/dist/plugins/index.d.ts +2 -2
- package/dist/shared/server.BEHw7Eyx.mjs +247 -0
- package/dist/shared/{server.C1YnHvvf.d.ts → server.BKSOrA6h.d.mts} +2 -2
- package/dist/shared/{server.C1YnHvvf.d.mts → server.BKSOrA6h.d.ts} +2 -2
- package/dist/shared/{server.BEQrAa3A.mjs → server.BKh8I1Ny.mjs} +34 -2
- package/dist/shared/server.BeuTpcmO.d.mts +23 -0
- package/dist/shared/{server.Btxrgkj5.d.ts → server.C1fnTLq0.d.mts} +8 -24
- package/dist/shared/{server.Bo94xDTv.d.mts → server.CQyYNJ1H.d.ts} +8 -24
- package/dist/shared/server.DLsti1Pv.mjs +293 -0
- package/dist/shared/server.SLLuK6_v.d.ts +23 -0
- package/package.json +17 -12
- package/dist/shared/server.D6K9uoPI.mjs +0 -35
- package/dist/shared/server.DZ5BIITo.mjs +0 -9
- package/dist/shared/server.X0YaZxSJ.mjs +0 -13
package/dist/index.mjs
CHANGED
|
@@ -1,15 +1,38 @@
|
|
|
1
|
-
import { isContractProcedure, mergeErrorMap, mergeMeta, mergeRoute, mergePrefix, enhanceRoute, mergeTags, getContractRouter } from '@temporary-name/contract';
|
|
2
|
-
export { ValidationError, eventIterator, type, validateORPCError } from '@temporary-name/contract';
|
|
3
1
|
import { onError, resolveMaybeOptionalOptions } from '@temporary-name/shared';
|
|
4
2
|
export { AsyncIteratorClass, EventPublisher, ORPCError, asyncIteratorToStream as eventIteratorToStream, isDefinedError, onError, onFinish, onStart, onSuccess, safe, streamToAsyncIteratorClass as streamToEventIterator } from '@temporary-name/shared';
|
|
5
|
-
import {
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
import { isContractProcedure, mergeErrorMap, mergeMeta, mergeRoute, mergePrefix, enhanceRoute, mergeTags, ContractProcedureBuilder, getContractRouter } from '@temporary-name/contract';
|
|
4
|
+
export { ValidationError, eventIterator, type, validateORPCError } from '@temporary-name/contract';
|
|
5
|
+
import { c as createProcedureClient, i as isLazy, g as getLazyMeta, l as lazy, u as unlazy, a as gatingContext } from './shared/server.BKh8I1Ny.mjs';
|
|
6
|
+
export { L as LAZY_SYMBOL, b as createORPCErrorConstructorMap, m as mergeCurrentContext, d as middlewareOutputFn } from './shared/server.BKh8I1Ny.mjs';
|
|
8
7
|
export { getEventMeta, withEventMeta } from '@temporary-name/standard-server';
|
|
9
8
|
import 'node:async_hooks';
|
|
10
9
|
import 'zod';
|
|
11
10
|
import 'zod/v4/core';
|
|
12
11
|
|
|
12
|
+
function isStartWithMiddlewares(middlewares, compare) {
|
|
13
|
+
if (compare.length > middlewares.length) {
|
|
14
|
+
return false;
|
|
15
|
+
}
|
|
16
|
+
for (let i = 0; i < middlewares.length; i++) {
|
|
17
|
+
if (compare[i] === void 0) {
|
|
18
|
+
return true;
|
|
19
|
+
}
|
|
20
|
+
if (middlewares[i] !== compare[i]) {
|
|
21
|
+
return false;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
return true;
|
|
25
|
+
}
|
|
26
|
+
function mergeMiddlewares(first, second, options) {
|
|
27
|
+
if (options.dedupeLeading && isStartWithMiddlewares(second, first)) {
|
|
28
|
+
return second;
|
|
29
|
+
}
|
|
30
|
+
return [...first, ...second];
|
|
31
|
+
}
|
|
32
|
+
function addMiddleware(middlewares, addition) {
|
|
33
|
+
return [...middlewares, addition];
|
|
34
|
+
}
|
|
35
|
+
|
|
13
36
|
function decorateMiddleware(middleware) {
|
|
14
37
|
const decorated = ((...args) => middleware(...args));
|
|
15
38
|
decorated.mapInput = (mapInput) => {
|
|
@@ -46,30 +69,6 @@ function decorateMiddleware(middleware) {
|
|
|
46
69
|
return decorated;
|
|
47
70
|
}
|
|
48
71
|
|
|
49
|
-
function isStartWithMiddlewares(middlewares, compare) {
|
|
50
|
-
if (compare.length > middlewares.length) {
|
|
51
|
-
return false;
|
|
52
|
-
}
|
|
53
|
-
for (let i = 0; i < middlewares.length; i++) {
|
|
54
|
-
if (compare[i] === void 0) {
|
|
55
|
-
return true;
|
|
56
|
-
}
|
|
57
|
-
if (middlewares[i] !== compare[i]) {
|
|
58
|
-
return false;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
return true;
|
|
62
|
-
}
|
|
63
|
-
function mergeMiddlewares(first, second, options) {
|
|
64
|
-
if (options.dedupeLeading && isStartWithMiddlewares(second, first)) {
|
|
65
|
-
return second;
|
|
66
|
-
}
|
|
67
|
-
return [...first, ...second];
|
|
68
|
-
}
|
|
69
|
-
function addMiddleware(middlewares, addition) {
|
|
70
|
-
return [...middlewares, addition];
|
|
71
|
-
}
|
|
72
|
-
|
|
73
72
|
class Procedure {
|
|
74
73
|
/**
|
|
75
74
|
* This property holds the defined options.
|
|
@@ -296,40 +295,32 @@ async function unlazyRouter(router) {
|
|
|
296
295
|
return unlazied;
|
|
297
296
|
}
|
|
298
297
|
|
|
299
|
-
class
|
|
300
|
-
/**
|
|
301
|
-
* This property holds the defined options.
|
|
302
|
-
*/
|
|
303
|
-
"~orpc";
|
|
298
|
+
class ProcedureBuilder extends ContractProcedureBuilder {
|
|
304
299
|
constructor(def) {
|
|
305
|
-
|
|
300
|
+
super(def);
|
|
306
301
|
}
|
|
307
302
|
/**
|
|
308
|
-
*
|
|
309
|
-
*
|
|
310
|
-
* @see {@link https://orpc.unnoq.com/docs/context Context Docs}
|
|
311
|
-
*/
|
|
312
|
-
$context() {
|
|
313
|
-
return this;
|
|
314
|
-
}
|
|
315
|
-
/**
|
|
316
|
-
* Creates a middleware.
|
|
303
|
+
* Defines the input validation schema.
|
|
317
304
|
*
|
|
318
|
-
* @see {@link https://orpc.unnoq.com/docs/
|
|
305
|
+
* @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Input Validation Docs}
|
|
319
306
|
*/
|
|
320
|
-
|
|
321
|
-
return
|
|
307
|
+
input(schema) {
|
|
308
|
+
return new ProcedureBuilder({
|
|
309
|
+
...this["~orpc"],
|
|
310
|
+
inputSchema: schema,
|
|
311
|
+
inputValidationIndex: this["~orpc"].middlewares.length
|
|
312
|
+
});
|
|
322
313
|
}
|
|
323
314
|
/**
|
|
324
|
-
*
|
|
325
|
-
* The provided errors are spared-merged with any existing errors.
|
|
315
|
+
* Defines the output validation schema.
|
|
326
316
|
*
|
|
327
|
-
* @see {@link https://orpc.unnoq.com/docs/
|
|
317
|
+
* @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Output Validation Docs}
|
|
328
318
|
*/
|
|
329
|
-
|
|
330
|
-
return new
|
|
319
|
+
output(schema) {
|
|
320
|
+
return new ProcedureBuilder({
|
|
331
321
|
...this["~orpc"],
|
|
332
|
-
|
|
322
|
+
outputSchema: schema,
|
|
323
|
+
outputValidationIndex: this["~orpc"].middlewares.length
|
|
333
324
|
});
|
|
334
325
|
}
|
|
335
326
|
/**
|
|
@@ -340,7 +331,7 @@ class Builder {
|
|
|
340
331
|
* @see {@link https://orpc.unnoq.com/docs/middleware Middleware Docs}
|
|
341
332
|
*/
|
|
342
333
|
use(middleware) {
|
|
343
|
-
return new
|
|
334
|
+
return new this.constructor({
|
|
344
335
|
...this["~orpc"],
|
|
345
336
|
middlewares: addMiddleware(this["~orpc"].middlewares, middleware)
|
|
346
337
|
});
|
|
@@ -353,56 +344,6 @@ class Builder {
|
|
|
353
344
|
);
|
|
354
345
|
});
|
|
355
346
|
}
|
|
356
|
-
/**
|
|
357
|
-
* Sets or updates the metadata.
|
|
358
|
-
* The provided metadata is spared-merged with any existing metadata.
|
|
359
|
-
*
|
|
360
|
-
* @see {@link https://orpc.unnoq.com/docs/metadata Metadata Docs}
|
|
361
|
-
*/
|
|
362
|
-
meta(meta) {
|
|
363
|
-
return new Builder({
|
|
364
|
-
...this["~orpc"],
|
|
365
|
-
meta: mergeMeta(this["~orpc"].meta, meta)
|
|
366
|
-
});
|
|
367
|
-
}
|
|
368
|
-
/**
|
|
369
|
-
* Sets or updates the route definition.
|
|
370
|
-
* The provided route is spared-merged with any existing route.
|
|
371
|
-
* This option is typically relevant when integrating with OpenAPI.
|
|
372
|
-
*
|
|
373
|
-
* @see {@link https://orpc.unnoq.com/docs/openapi/routing OpenAPI Routing Docs}
|
|
374
|
-
* @see {@link https://orpc.unnoq.com/docs/openapi/input-output-structure OpenAPI Input/Output Structure Docs}
|
|
375
|
-
*/
|
|
376
|
-
route(route) {
|
|
377
|
-
return new Builder({
|
|
378
|
-
...this["~orpc"],
|
|
379
|
-
route: mergeRoute(this["~orpc"].route, route)
|
|
380
|
-
});
|
|
381
|
-
}
|
|
382
|
-
/**
|
|
383
|
-
* Defines the input validation schema.
|
|
384
|
-
*
|
|
385
|
-
* @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Input Validation Docs}
|
|
386
|
-
*/
|
|
387
|
-
input(schema) {
|
|
388
|
-
return new Builder({
|
|
389
|
-
...this["~orpc"],
|
|
390
|
-
inputSchema: schema,
|
|
391
|
-
inputValidationIndex: this["~orpc"].middlewares.length
|
|
392
|
-
});
|
|
393
|
-
}
|
|
394
|
-
/**
|
|
395
|
-
* Defines the output validation schema.
|
|
396
|
-
*
|
|
397
|
-
* @see {@link https://orpc.unnoq.com/docs/procedure#input-output-validation Output Validation Docs}
|
|
398
|
-
*/
|
|
399
|
-
output(schema) {
|
|
400
|
-
return new Builder({
|
|
401
|
-
...this["~orpc"],
|
|
402
|
-
outputSchema: schema,
|
|
403
|
-
outputValidationIndex: this["~orpc"].middlewares.length
|
|
404
|
-
});
|
|
405
|
-
}
|
|
406
347
|
/**
|
|
407
348
|
* Defines the handler of the procedure.
|
|
408
349
|
*
|
|
@@ -414,6 +355,8 @@ class Builder {
|
|
|
414
355
|
handler
|
|
415
356
|
});
|
|
416
357
|
}
|
|
358
|
+
}
|
|
359
|
+
class BuilderWithMiddlewares extends ProcedureBuilder {
|
|
417
360
|
/**
|
|
418
361
|
* Prefixes all procedures in the router.
|
|
419
362
|
* The provided prefix is post-appended to any existing router prefix.
|
|
@@ -423,7 +366,7 @@ class Builder {
|
|
|
423
366
|
* @see {@link https://orpc.unnoq.com/docs/openapi/routing#route-prefixes OpenAPI Route Prefixes Docs}
|
|
424
367
|
*/
|
|
425
368
|
prefix(prefix) {
|
|
426
|
-
return new
|
|
369
|
+
return new this.constructor({
|
|
427
370
|
...this["~orpc"],
|
|
428
371
|
prefix: mergePrefix(this["~orpc"].prefix, prefix)
|
|
429
372
|
});
|
|
@@ -435,7 +378,7 @@ class Builder {
|
|
|
435
378
|
* @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#operation-metadata OpenAPI Operation Metadata Docs}
|
|
436
379
|
*/
|
|
437
380
|
tag(...tags) {
|
|
438
|
-
return new
|
|
381
|
+
return new this.constructor({
|
|
439
382
|
...this["~orpc"],
|
|
440
383
|
tags: mergeTags(this["~orpc"].tags, tags)
|
|
441
384
|
});
|
|
@@ -458,6 +401,25 @@ class Builder {
|
|
|
458
401
|
return enhanceRouter(lazy(loader), this["~orpc"]);
|
|
459
402
|
}
|
|
460
403
|
}
|
|
404
|
+
|
|
405
|
+
class Builder extends BuilderWithMiddlewares {
|
|
406
|
+
/**
|
|
407
|
+
* Set or override the initial context.
|
|
408
|
+
*
|
|
409
|
+
* @see {@link https://orpc.unnoq.com/docs/context Context Docs}
|
|
410
|
+
*/
|
|
411
|
+
$context() {
|
|
412
|
+
return this;
|
|
413
|
+
}
|
|
414
|
+
/**
|
|
415
|
+
* Creates a middleware.
|
|
416
|
+
*
|
|
417
|
+
* @see {@link https://orpc.unnoq.com/docs/middleware Middleware Docs}
|
|
418
|
+
*/
|
|
419
|
+
middleware(middleware) {
|
|
420
|
+
return decorateMiddleware(middleware);
|
|
421
|
+
}
|
|
422
|
+
}
|
|
461
423
|
function createApiBuilder(opts = {}) {
|
|
462
424
|
const base = new Builder({
|
|
463
425
|
route: {},
|
|
@@ -615,4 +577,4 @@ function createRouterClient(router, ...rest) {
|
|
|
615
577
|
return recursive;
|
|
616
578
|
}
|
|
617
579
|
|
|
618
|
-
export { Builder, DecoratedProcedure, Procedure, addMiddleware, call, createAccessibleLazyRouter, createApiBuilder, createAssertedLazyProcedure, createContractedProcedure, createProcedureClient, createRouterClient, decorateMiddleware, enhanceRouter, getHiddenRouterContract, getLazyMeta, getRouter, implement, implementerInternal, isLazy, isProcedure, isStartWithMiddlewares, lazy, mergeMiddlewares, os, resolveContractProcedures, setHiddenRouterContract, traverseContractProcedures, unlazy, unlazyRouter };
|
|
580
|
+
export { Builder, BuilderWithMiddlewares, DecoratedProcedure, Procedure, ProcedureBuilder, addMiddleware, call, createAccessibleLazyRouter, createApiBuilder, createAssertedLazyProcedure, createContractedProcedure, createProcedureClient, createRouterClient, decorateMiddleware, enhanceRouter, getHiddenRouterContract, getLazyMeta, getRouter, implement, implementerInternal, isLazy, isProcedure, isStartWithMiddlewares, lazy, mergeMiddlewares, os, resolveContractProcedures, setHiddenRouterContract, traverseContractProcedures, unlazy, unlazyRouter };
|
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
import { OpenAPI, AnyContractProcedure, AnySchema, AnyContractRouter } from '@temporary-name/contract';
|
|
2
|
+
export { OpenAPI } from '@temporary-name/contract';
|
|
3
|
+
import { AnyProcedure, TraverseContractProcedureCallbackOptions, AnyRouter, ORPCError, ClientContext, Lazyable, CreateProcedureClientOptions, InferRouterInitialContext, Schema, ErrorMap, Meta, RouterClient } from '@temporary-name/server';
|
|
4
|
+
import { Promisable, Value, HTTPPath, HTTPMethod, NestedClient, Client, MaybeOptionalOptions } from '@temporary-name/shared';
|
|
5
|
+
import { JSONSchema } from '@temporary-name/interop/json-schema-typed/draft-2020-12';
|
|
6
|
+
export { JSONSchema, ContentEncoding as JSONSchemaContentEncoding, Format as JSONSchemaFormat, TypeName as JSONSchemaTypeName } from '@temporary-name/interop/json-schema-typed/draft-2020-12';
|
|
7
|
+
|
|
8
|
+
type OverrideOperationValue = Partial<OpenAPI.OperationObject> | ((current: OpenAPI.OperationObject, procedure: AnyContractProcedure) => OpenAPI.OperationObject);
|
|
9
|
+
/**
|
|
10
|
+
* Customize The Operation Object by proxy an error map item or a middleware.
|
|
11
|
+
*
|
|
12
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification#customizing-operation-objects Customizing Operation Objects Docs}
|
|
13
|
+
*/
|
|
14
|
+
declare function customOpenAPIOperation<T extends object>(o: T, extend: OverrideOperationValue): T;
|
|
15
|
+
declare function getCustomOpenAPIOperation(o: object): OverrideOperationValue | undefined;
|
|
16
|
+
declare function applyCustomOpenAPIOperation(operation: OpenAPI.OperationObject, contract: AnyContractProcedure): OpenAPI.OperationObject;
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* @internal
|
|
20
|
+
*/
|
|
21
|
+
type ObjectSchema = JSONSchema & {
|
|
22
|
+
type: 'object';
|
|
23
|
+
} & object;
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
type FileSchema = JSONSchema & {
|
|
28
|
+
type: 'string';
|
|
29
|
+
contentMediaType: string;
|
|
30
|
+
} & object;
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
declare const LOGIC_KEYWORDS: string[];
|
|
35
|
+
|
|
36
|
+
interface SchemaConverterComponent {
|
|
37
|
+
allowedStrategies: readonly SchemaConvertOptions['strategy'][];
|
|
38
|
+
schema: AnySchema;
|
|
39
|
+
required: boolean;
|
|
40
|
+
ref: string;
|
|
41
|
+
}
|
|
42
|
+
interface SchemaConvertOptions {
|
|
43
|
+
strategy: 'input' | 'output';
|
|
44
|
+
/**
|
|
45
|
+
* Common components should use `$ref` to represent themselves if matched.
|
|
46
|
+
*/
|
|
47
|
+
components?: readonly SchemaConverterComponent[];
|
|
48
|
+
/**
|
|
49
|
+
* Minimum schema structure depth required before using `$ref` for components.
|
|
50
|
+
*
|
|
51
|
+
* For example, if set to 2, `$ref` will only be used for schemas nested at depth 2 or greater.
|
|
52
|
+
*
|
|
53
|
+
* @default 0 - No depth limit;
|
|
54
|
+
*/
|
|
55
|
+
minStructureDepthForRef?: number;
|
|
56
|
+
}
|
|
57
|
+
interface SchemaConverter {
|
|
58
|
+
convert(schema: AnySchema | undefined, options: SchemaConvertOptions): Promisable<[required: boolean, jsonSchema: JSONSchema]>;
|
|
59
|
+
}
|
|
60
|
+
interface ConditionalSchemaConverter extends SchemaConverter {
|
|
61
|
+
condition(schema: AnySchema | undefined, options: SchemaConvertOptions): Promisable<boolean>;
|
|
62
|
+
}
|
|
63
|
+
declare class CompositeSchemaConverter implements SchemaConverter {
|
|
64
|
+
private readonly converters;
|
|
65
|
+
constructor(converters: readonly ConditionalSchemaConverter[]);
|
|
66
|
+
convert(schema: AnySchema | undefined, options: SchemaConvertOptions): Promise<[required: boolean, jsonSchema: JSONSchema]>;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
interface OpenAPIGeneratorOptions {
|
|
70
|
+
schemaConverters?: ConditionalSchemaConverter[];
|
|
71
|
+
}
|
|
72
|
+
interface OpenAPIGeneratorGenerateOptions extends Partial<Omit<OpenAPI.Document, 'openapi'>> {
|
|
73
|
+
/**
|
|
74
|
+
* Exclude procedures from the OpenAPI specification.
|
|
75
|
+
*
|
|
76
|
+
* @deprecated Use `filter` option instead.
|
|
77
|
+
* @default () => false
|
|
78
|
+
*/
|
|
79
|
+
exclude?: (procedure: AnyProcedure | AnyContractProcedure, path: readonly string[]) => boolean;
|
|
80
|
+
/**
|
|
81
|
+
* Filter procedures. Return `false` to exclude a procedure from the OpenAPI specification.
|
|
82
|
+
*
|
|
83
|
+
* @default true
|
|
84
|
+
*/
|
|
85
|
+
filter?: Value<boolean, [options: TraverseContractProcedureCallbackOptions]>;
|
|
86
|
+
/**
|
|
87
|
+
* Common schemas to be used for $ref resolution.
|
|
88
|
+
*/
|
|
89
|
+
commonSchemas?: Record<string, {
|
|
90
|
+
/**
|
|
91
|
+
* Determines which schema definition to use when input and output schemas differ.
|
|
92
|
+
* This is needed because some schemas transform data differently between input and output,
|
|
93
|
+
* making it impossible to use a single $ref for both cases.
|
|
94
|
+
*
|
|
95
|
+
* @example
|
|
96
|
+
* ```ts
|
|
97
|
+
* // This schema transforms a string input into a number output
|
|
98
|
+
* const Schema = z.string()
|
|
99
|
+
* .transform(v => Number(v))
|
|
100
|
+
* .pipe(z.number())
|
|
101
|
+
*
|
|
102
|
+
* // Input schema: { type: 'string' }
|
|
103
|
+
* // Output schema: { type: 'number' }
|
|
104
|
+
* ```
|
|
105
|
+
*
|
|
106
|
+
* When schemas differ between input and output, you must explicitly choose
|
|
107
|
+
* which version to use for the OpenAPI specification.
|
|
108
|
+
*
|
|
109
|
+
* @default 'input' - Uses the input schema definition by default
|
|
110
|
+
*/
|
|
111
|
+
strategy?: SchemaConvertOptions['strategy'];
|
|
112
|
+
schema: AnySchema;
|
|
113
|
+
} | {
|
|
114
|
+
error: 'UndefinedError';
|
|
115
|
+
schema?: never;
|
|
116
|
+
}>;
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* The generator that converts oRPC routers/contracts to OpenAPI specifications.
|
|
120
|
+
*
|
|
121
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification OpenAPI Specification Docs}
|
|
122
|
+
*/
|
|
123
|
+
declare class OpenAPIGenerator {
|
|
124
|
+
#private;
|
|
125
|
+
private readonly converter;
|
|
126
|
+
constructor(options?: OpenAPIGeneratorOptions);
|
|
127
|
+
/**
|
|
128
|
+
* Generates OpenAPI specifications from oRPC routers/contracts.
|
|
129
|
+
*
|
|
130
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/openapi-specification OpenAPI Specification Docs}
|
|
131
|
+
*/
|
|
132
|
+
generate(router: AnyContractRouter | AnyRouter, options?: OpenAPIGeneratorGenerateOptions): Promise<OpenAPI.Document>;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
/**
|
|
136
|
+
* @internal
|
|
137
|
+
*/
|
|
138
|
+
declare function toOpenAPIPath(path: HTTPPath): string;
|
|
139
|
+
/**
|
|
140
|
+
* @internal
|
|
141
|
+
*/
|
|
142
|
+
declare function toOpenAPIMethod(method: HTTPMethod): Lowercase<HTTPMethod>;
|
|
143
|
+
/**
|
|
144
|
+
* @internal
|
|
145
|
+
*/
|
|
146
|
+
declare function toOpenAPIContent(schema: JSONSchema): Record<string, OpenAPI.MediaTypeObject>;
|
|
147
|
+
/**
|
|
148
|
+
* @internal
|
|
149
|
+
*/
|
|
150
|
+
declare function toOpenAPIEventIteratorContent([yieldsRequired, yieldsSchema]: [boolean, JSONSchema], [returnsRequired, returnsSchema]: [boolean, JSONSchema]): Record<string, OpenAPI.MediaTypeObject>;
|
|
151
|
+
/**
|
|
152
|
+
* @internal
|
|
153
|
+
*/
|
|
154
|
+
declare function toOpenAPIParameters(schema: ObjectSchema, parameterIn: 'path' | 'query' | 'header' | 'cookie'): OpenAPI.ParameterObject[];
|
|
155
|
+
/**
|
|
156
|
+
* @internal
|
|
157
|
+
*/
|
|
158
|
+
declare function checkParamsSchema(schema: ObjectSchema, params: string[]): boolean;
|
|
159
|
+
/**
|
|
160
|
+
* @internal
|
|
161
|
+
*/
|
|
162
|
+
declare function toOpenAPISchema(schema: JSONSchema): OpenAPI.SchemaObject & object;
|
|
163
|
+
declare function resolveOpenAPIJsonSchemaRef(doc: OpenAPI.Document, schema: JSONSchema): JSONSchema;
|
|
164
|
+
|
|
165
|
+
type JsonifiedValue<T> = T extends string ? T : T extends number ? T : T extends boolean ? T : T extends null ? T : T extends undefined ? T : T extends Array<unknown> ? JsonifiedArray<T> : T extends Record<string, unknown> ? {
|
|
166
|
+
[K in keyof T]: JsonifiedValue<T[K]>;
|
|
167
|
+
} : T extends Date ? string : T extends bigint ? string : T extends File ? File : T extends Blob ? Blob : T extends RegExp ? string : T extends URL ? string : T extends Map<infer K, infer V> ? JsonifiedArray<[K, V][]> : T extends Set<infer U> ? JsonifiedArray<U[]> : T extends AsyncIteratorObject<infer U, infer V> ? AsyncIteratorObject<JsonifiedValue<U>, JsonifiedValue<V>> : unknown;
|
|
168
|
+
type JsonifiedArray<T extends Array<unknown>> = T extends readonly [] ? [] : T extends readonly [infer U, ...infer V] ? [
|
|
169
|
+
U extends undefined ? null : JsonifiedValue<U>,
|
|
170
|
+
...JsonifiedArray<V>
|
|
171
|
+
] : T extends Array<infer U> ? Array<JsonifiedValue<U>> : unknown;
|
|
172
|
+
/**
|
|
173
|
+
* Convert types that JSON not support to corresponding json types
|
|
174
|
+
*
|
|
175
|
+
* @see {@link https://orpc.unnoq.com/docs/openapi/client/openapi-link OpenAPI Link Docs}
|
|
176
|
+
*/
|
|
177
|
+
type JsonifiedClient<T extends NestedClient<any>> = T extends Client<infer UClientContext, infer UInput, infer UOutput, infer UError> ? Client<UClientContext, UInput, JsonifiedValue<UOutput>, UError extends ORPCError<infer UCode, infer UData> ? ORPCError<UCode, JsonifiedValue<UData>> : UError> : {
|
|
178
|
+
[K in keyof T]: T[K] extends NestedClient<any> ? JsonifiedClient<T[K]> : T[K];
|
|
179
|
+
};
|
|
180
|
+
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>>;
|
|
181
|
+
|
|
182
|
+
/**
|
|
183
|
+
*@internal
|
|
184
|
+
*/
|
|
185
|
+
declare function isFileSchema(schema: JSONSchema): schema is FileSchema;
|
|
186
|
+
/**
|
|
187
|
+
* @internal
|
|
188
|
+
*/
|
|
189
|
+
declare function isObjectSchema(schema: JSONSchema): schema is ObjectSchema;
|
|
190
|
+
/**
|
|
191
|
+
* @internal
|
|
192
|
+
*/
|
|
193
|
+
declare function isAnySchema(schema: JSONSchema): boolean;
|
|
194
|
+
/**
|
|
195
|
+
* @internal
|
|
196
|
+
*/
|
|
197
|
+
declare function separateObjectSchema(schema: ObjectSchema, separatedProperties: string[]): [matched: ObjectSchema, rest: ObjectSchema];
|
|
198
|
+
/**
|
|
199
|
+
* @internal
|
|
200
|
+
*/
|
|
201
|
+
declare function filterSchemaBranches(schema: JSONSchema, check: (schema: JSONSchema) => boolean, matches?: JSONSchema[]): [matches: JSONSchema[], rest: JSONSchema | undefined];
|
|
202
|
+
declare function applySchemaOptionality(required: boolean, schema: JSONSchema): JSONSchema;
|
|
203
|
+
/**
|
|
204
|
+
* Takes a JSON schema and, if it's primarily a union type (anyOf, oneOf),
|
|
205
|
+
* recursively expands it into an array of its constituent, non-union base schemas.
|
|
206
|
+
* If the schema is not a simple union or is a base type, it's returned as a single-element array.
|
|
207
|
+
*/
|
|
208
|
+
declare function expandUnionSchema(schema: JSONSchema): JSONSchema[];
|
|
209
|
+
declare function expandArrayableSchema(schema: JSONSchema): undefined | [items: JSONSchema, array: JSONSchema & {
|
|
210
|
+
type: 'array';
|
|
211
|
+
items?: JSONSchema;
|
|
212
|
+
}];
|
|
213
|
+
declare function isPrimitiveSchema(schema: JSONSchema): boolean;
|
|
214
|
+
|
|
215
|
+
declare const oo: {
|
|
216
|
+
spec: typeof customOpenAPIOperation;
|
|
217
|
+
};
|
|
218
|
+
|
|
219
|
+
export { CompositeSchemaConverter, LOGIC_KEYWORDS, OpenAPIGenerator, applyCustomOpenAPIOperation, applySchemaOptionality, checkParamsSchema, createJsonifiedRouterClient, customOpenAPIOperation, expandArrayableSchema, expandUnionSchema, filterSchemaBranches, getCustomOpenAPIOperation, isAnySchema, isFileSchema, isObjectSchema, isPrimitiveSchema, oo, resolveOpenAPIJsonSchemaRef, separateObjectSchema, toOpenAPIContent, toOpenAPIEventIteratorContent, toOpenAPIMethod, toOpenAPIParameters, toOpenAPIPath, toOpenAPISchema };
|
|
220
|
+
export type { ConditionalSchemaConverter, FileSchema, JsonifiedArray, JsonifiedClient, JsonifiedValue, ObjectSchema, OpenAPIGeneratorGenerateOptions, OpenAPIGeneratorOptions, OverrideOperationValue, SchemaConvertOptions, SchemaConverter, SchemaConverterComponent };
|