adorn-api 1.0.21 → 1.0.23

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.
@@ -3,6 +3,8 @@
3
3
  */
4
4
  export { typeToJsonSchema, createSchemaContext } from './typeToJsonSchema.js';
5
5
  export type { JsonSchema, SchemaContext } from './types.js';
6
+ export { analyzeQueryBuilderWithServiceCalls, } from './queryBuilderAnalyzer.js';
7
+ export { ServiceCallAnalyzer, analyzeMultipleControllersWithServiceCalls, clearServiceCallAnalyzerCaches, type ServiceCallInfo, type MethodCallChain, type ServiceCallAnalyzerOptions, } from './serviceCallAnalyzer.js';
6
8
  export { partitionSchemas, SchemaPartitioner, type PartitionStrategy, type SchemaGroup, type PartitioningResult, type SchemaComplexity, calculateSchemaComplexity, } from './partitioner.js';
7
9
  export { generateModularOpenAPI, generateLazyOpenAPI, type SplitOpenAPIConfig, type SplitOpenAPIResult, } from './splitOpenapi.js';
8
10
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/compiler/schema/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EACL,gBAAgB,EAChB,mBAAmB,EACpB,MAAM,uBAAuB,CAAC;AAC/B,YAAY,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAG5D,OAAO,EACL,gBAAgB,EAChB,iBAAiB,EACjB,KAAK,iBAAiB,EACtB,KAAK,WAAW,EAChB,KAAK,kBAAkB,EACvB,KAAK,gBAAgB,EACrB,yBAAyB,GAC1B,MAAM,kBAAkB,CAAC;AAG1B,OAAO,EACL,sBAAsB,EACtB,mBAAmB,EACnB,KAAK,kBAAkB,EACvB,KAAK,kBAAkB,GACxB,MAAM,mBAAmB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/compiler/schema/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EACL,gBAAgB,EAChB,mBAAmB,EACpB,MAAM,uBAAuB,CAAC;AAC/B,YAAY,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAG5D,OAAO,EACL,mCAAmC,GACpC,MAAM,2BAA2B,CAAC;AAEnC,OAAO,EACL,mBAAmB,EACnB,0CAA0C,EAC1C,8BAA8B,EAC9B,KAAK,eAAe,EACpB,KAAK,eAAe,EACpB,KAAK,0BAA0B,GAChC,MAAM,0BAA0B,CAAC;AAGlC,OAAO,EACL,gBAAgB,EAChB,iBAAiB,EACjB,KAAK,iBAAiB,EACtB,KAAK,WAAW,EAChB,KAAK,kBAAkB,EACvB,KAAK,gBAAgB,EACrB,yBAAyB,GAC1B,MAAM,kBAAkB,CAAC;AAG1B,OAAO,EACL,sBAAsB,EACtB,mBAAmB,EACnB,KAAK,kBAAkB,EACvB,KAAK,kBAAkB,GACxB,MAAM,mBAAmB,CAAC"}
@@ -25,6 +25,33 @@ export interface OpenAPI31 {
25
25
  export interface OpenAPIProgressCallback {
26
26
  (message: string, current: number, total: number): void;
27
27
  }
28
+ /**
29
+ * Detailed progress callback with query builder analysis info
30
+ */
31
+ export interface OpenAPIDetailedProgressCallback {
32
+ (info: {
33
+ /** Controller being processed */
34
+ controller: string;
35
+ /** Operation being processed */
36
+ operation: string;
37
+ /** HTTP method */
38
+ method: string;
39
+ /** Operation path */
40
+ path: string;
41
+ /** Whether query builder pattern was detected */
42
+ queryBuilderDetected: boolean;
43
+ /** Entity name if detected */
44
+ entityName?: string;
45
+ /** Selected fields if detected */
46
+ selectedFields?: string[];
47
+ /** Whether using paged results */
48
+ isPaged?: boolean;
49
+ /** Current progress */
50
+ current: number;
51
+ /** Total operations */
52
+ total: number;
53
+ }): void;
54
+ }
28
55
  /**
29
56
  * Generates an OpenAPI 3.1 specification from scanned controllers.
30
57
  *
@@ -32,11 +59,13 @@ export interface OpenAPIProgressCallback {
32
59
  * @param checker - TypeScript type checker for type analysis
33
60
  * @param options - Optional title and version for the OpenAPI info object
34
61
  * @param onProgress - Optional callback to report progress during generation
62
+ * @param onQueryBuilderProgress - Optional callback to report query builder detection details
35
63
  * @returns Complete OpenAPI 3.1 specification object
36
64
  */
37
65
  export declare function generateOpenAPI(controllers: ScannedController[], checker: ts.TypeChecker, options?: {
38
66
  title?: string;
39
67
  version?: string;
40
68
  onProgress?: OpenAPIProgressCallback;
69
+ onQueryBuilderProgress?: OpenAPIDetailedProgressCallback;
41
70
  }): OpenAPI31;
42
71
  //# sourceMappingURL=openapi.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"openapi.d.ts","sourceRoot":"","sources":["../../../src/compiler/schema/openapi.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,OAAO,EAAE,MAAM,YAAY,CAAC;AAC5B,OAAO,KAAK,EAAE,iBAAiB,EAAsC,MAAM,+BAA+B,CAAC;AAG3G,OAAO,KAAK,EAAiB,UAAU,EAAE,MAAM,YAAY,CAAC;AAY5D;;GAEG;AACH,MAAM,WAAW,SAAS;IACxB,OAAO,EAAE,OAAO,CAAC;IACjB,IAAI,EAAE;QACJ,KAAK,EAAE,MAAM,CAAC;QACd,OAAO,EAAE,MAAM,CAAC;KACjB,CAAC;IACF,UAAU,EAAE;QACV,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;KACrC,CAAC;IACF,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC;CAC5C;AAED;;GAEG;AACH,MAAM,WAAW,uBAAuB;IACtC,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;CACzD;AAED;;;;;;;;GAQG;AACH,wBAAgB,eAAe,CAC7B,WAAW,EAAE,iBAAiB,EAAE,EAChC,OAAO,EAAE,EAAE,CAAC,WAAW,EACvB,OAAO,GAAE;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAC;IAAC,UAAU,CAAC,EAAE,uBAAuB,CAAA;CAAO,GACvF,SAAS,CAkDX"}
1
+ {"version":3,"file":"openapi.d.ts","sourceRoot":"","sources":["../../../src/compiler/schema/openapi.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,OAAO,EAAE,MAAM,YAAY,CAAC;AAC5B,OAAO,KAAK,EAAE,iBAAiB,EAAsC,MAAM,+BAA+B,CAAC;AAG3G,OAAO,KAAK,EAAiB,UAAU,EAAE,MAAM,YAAY,CAAC;AAY5D;;GAEG;AACH,MAAM,WAAW,SAAS;IACxB,OAAO,EAAE,OAAO,CAAC;IACjB,IAAI,EAAE;QACJ,KAAK,EAAE,MAAM,CAAC;QACd,OAAO,EAAE,MAAM,CAAC;KACjB,CAAC;IACF,UAAU,EAAE;QACV,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;KACrC,CAAC;IACF,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAAC;CAC5C;AAED;;GAEG;AACH,MAAM,WAAW,uBAAuB;IACtC,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;CACzD;AAED;;GAEG;AACH,MAAM,WAAW,+BAA+B;IAC9C,CAAC,IAAI,EAAE;QACL,iCAAiC;QACjC,UAAU,EAAE,MAAM,CAAC;QACnB,gCAAgC;QAChC,SAAS,EAAE,MAAM,CAAC;QAClB,kBAAkB;QAClB,MAAM,EAAE,MAAM,CAAC;QACf,qBAAqB;QACrB,IAAI,EAAE,MAAM,CAAC;QACb,iDAAiD;QACjD,oBAAoB,EAAE,OAAO,CAAC;QAC9B,8BAA8B;QAC9B,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,kCAAkC;QAClC,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;QAC1B,kCAAkC;QAClC,OAAO,CAAC,EAAE,OAAO,CAAC;QAClB,uBAAuB;QACvB,OAAO,EAAE,MAAM,CAAC;QAChB,uBAAuB;QACvB,KAAK,EAAE,MAAM,CAAC;KACf,GAAG,IAAI,CAAC;CACV;AAED;;;;;;;;;GASG;AACH,wBAAgB,eAAe,CAC7B,WAAW,EAAE,iBAAiB,EAAE,EAChC,OAAO,EAAE,EAAE,CAAC,WAAW,EACvB,OAAO,GAAE;IACP,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,uBAAuB,CAAC;IACrC,sBAAsB,CAAC,EAAE,+BAA+B,CAAC;CACrD,GACL,SAAS,CAyFX"}
@@ -23,6 +23,23 @@ export interface QueryBuilderSchema {
23
23
  /** Whether query ends with .executePaged() instead of .execute() */
24
24
  isPaged: boolean;
25
25
  }
26
+ /**
27
+ * Result of query builder analysis including operation details for logging
28
+ */
29
+ export interface QueryBuilderAnalysisResult {
30
+ /** Whether a query builder pattern was detected */
31
+ detected: boolean;
32
+ /** Schema information if detected */
33
+ schema: QueryBuilderSchema | null;
34
+ /** Operation method name (for logging) */
35
+ methodName?: string;
36
+ /** Operation HTTP method (for logging) */
37
+ httpMethod?: string;
38
+ /** Operation path (for logging) */
39
+ path?: string;
40
+ /** Operation ID (for logging) */
41
+ operationId?: string;
42
+ }
26
43
  /**
27
44
  * Analysis options for query builder detection
28
45
  */
@@ -40,4 +57,39 @@ export interface QueryBuilderAnalyzerOptions {
40
57
  * @returns Query builder schema if pattern detected, null otherwise
41
58
  */
42
59
  export declare function analyzeQueryBuilderForSchema(methodDeclaration: ts.MethodDeclaration, checker: ts.TypeChecker, options?: QueryBuilderAnalyzerOptions): QueryBuilderSchema | null;
60
+ /**
61
+ * Analyzes a method declaration and returns detailed result with operation info
62
+ * Useful for logging and statistics
63
+ *
64
+ * @param methodDeclaration - The method declaration to analyze
65
+ * @param checker - TypeScript type checker
66
+ * @param options - Analyzer options
67
+ * @param operationInfo - Optional operation metadata for logging
68
+ * @returns Detailed analysis result with operation info
69
+ */
70
+ export declare function analyzeQueryBuilderWithDetails(methodDeclaration: ts.MethodDeclaration, checker: ts.TypeChecker, options?: QueryBuilderAnalyzerOptions, operationInfo?: {
71
+ methodName?: string;
72
+ httpMethod?: string;
73
+ path?: string;
74
+ operationId?: string;
75
+ }): QueryBuilderAnalysisResult;
76
+ /**
77
+ * Enhanced analysis that follows service calls to detect query builder patterns
78
+ *
79
+ * @param methodDeclaration - The method declaration to analyze
80
+ * @param checker - TypeScript type checker
81
+ * @param program - TypeScript program for AST traversal
82
+ * @param options - Analyzer options including service call traversal settings
83
+ * @param operationInfo - Optional operation metadata for logging
84
+ * @returns Detailed analysis result with operation info
85
+ */
86
+ export declare function analyzeQueryBuilderWithServiceCalls(methodDeclaration: ts.MethodDeclaration, checker: ts.TypeChecker, program: ts.Program | null, options?: QueryBuilderAnalyzerOptions & {
87
+ maxDepth?: number;
88
+ analyzeHelpers?: boolean;
89
+ }, operationInfo?: {
90
+ methodName?: string;
91
+ httpMethod?: string;
92
+ path?: string;
93
+ operationId?: string;
94
+ }): QueryBuilderAnalysisResult;
43
95
  //# sourceMappingURL=queryBuilderAnalyzer.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"queryBuilderAnalyzer.d.ts","sourceRoot":"","sources":["../../../src/compiler/schema/queryBuilderAnalyzer.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,MAAM,YAAY,CAAC;AAE5B;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC,2CAA2C;IAC3C,UAAU,EAAE,MAAM,CAAC;IACnB,0CAA0C;IAC1C,cAAc,EAAE,MAAM,EAAE,CAAC;IACzB,8CAA8C;IAC9C,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,kBAAkB,GAAG,OAAO,CAAC,CAAC;IACvD,oEAAoE;IACpE,OAAO,EAAE,OAAO,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,2BAA2B;IAC1C,oDAAoD;IACpD,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;;;;;;;GAQG;AACH,wBAAgB,4BAA4B,CAC1C,iBAAiB,EAAE,EAAE,CAAC,iBAAiB,EACvC,OAAO,EAAE,EAAE,CAAC,WAAW,EACvB,OAAO,GAAE,2BAAgC,GACxC,kBAAkB,GAAG,IAAI,CAyB3B"}
1
+ {"version":3,"file":"queryBuilderAnalyzer.d.ts","sourceRoot":"","sources":["../../../src/compiler/schema/queryBuilderAnalyzer.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,MAAM,YAAY,CAAC;AAG5B;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC,2CAA2C;IAC3C,UAAU,EAAE,MAAM,CAAC;IACnB,0CAA0C;IAC1C,cAAc,EAAE,MAAM,EAAE,CAAC;IACzB,8CAA8C;IAC9C,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,kBAAkB,GAAG,OAAO,CAAC,CAAC;IACvD,oEAAoE;IACpE,OAAO,EAAE,OAAO,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACzC,mDAAmD;IACnD,QAAQ,EAAE,OAAO,CAAC;IAClB,qCAAqC;IACrC,MAAM,EAAE,kBAAkB,GAAG,IAAI,CAAC;IAClC,0CAA0C;IAC1C,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,0CAA0C;IAC1C,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,mCAAmC;IACnC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,iCAAiC;IACjC,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;GAEG;AACH,MAAM,WAAW,2BAA2B;IAC1C,oDAAoD;IACpD,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;;;;;;;GAQG;AACH,wBAAgB,4BAA4B,CAC1C,iBAAiB,EAAE,EAAE,CAAC,iBAAiB,EACvC,OAAO,EAAE,EAAE,CAAC,WAAW,EACvB,OAAO,GAAE,2BAAgC,GACxC,kBAAkB,GAAG,IAAI,CAyB3B;AAED;;;;;;;;;GASG;AACH,wBAAgB,8BAA8B,CAC5C,iBAAiB,EAAE,EAAE,CAAC,iBAAiB,EACvC,OAAO,EAAE,EAAE,CAAC,WAAW,EACvB,OAAO,GAAE,2BAAgC,EACzC,aAAa,CAAC,EAAE;IAAE,UAAU,CAAC,EAAE,MAAM,CAAC;IAAC,UAAU,CAAC,EAAE,MAAM,CAAC;IAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IAAC,WAAW,CAAC,EAAE,MAAM,CAAA;CAAE,GAChG,0BAA0B,CAQ5B;AAED;;;;;;;;;GASG;AACH,wBAAgB,mCAAmC,CACjD,iBAAiB,EAAE,EAAE,CAAC,iBAAiB,EACvC,OAAO,EAAE,EAAE,CAAC,WAAW,EACvB,OAAO,EAAE,EAAE,CAAC,OAAO,GAAG,IAAI,EAC1B,OAAO,GAAE,2BAA2B,GAAG;IACrC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,cAAc,CAAC,EAAE,OAAO,CAAC;CACrB,EACN,aAAa,CAAC,EAAE;IAAE,UAAU,CAAC,EAAE,MAAM,CAAC;IAAC,UAAU,CAAC,EAAE,MAAM,CAAC;IAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IAAC,WAAW,CAAC,EAAE,MAAM,CAAA;CAAE,GAChG,0BAA0B,CAsB5B"}
@@ -0,0 +1,102 @@
1
+ /**
2
+ * Service Call Analyzer
3
+ * Traverses method call chains from controllers to services to detect query builder patterns
4
+ */
5
+ import ts from "typescript";
6
+ import type { QueryBuilderSchema } from "./queryBuilderAnalyzer.js";
7
+ export interface ServiceCallInfo {
8
+ /** Service class name */
9
+ serviceName: string;
10
+ /** Method name being called */
11
+ methodName: string;
12
+ /** File path containing the service */
13
+ filePath: string;
14
+ /** Service class declaration */
15
+ classDeclaration: ts.ClassDeclaration;
16
+ /** Method declaration being called */
17
+ methodDeclaration: ts.MethodDeclaration;
18
+ }
19
+ export interface MethodCallChain {
20
+ /** Original controller method */
21
+ controllerMethod: ts.MethodDeclaration;
22
+ /** Service calls in the chain */
23
+ serviceCalls: ServiceCallInfo[];
24
+ /** Final method that contains query builder (if found) */
25
+ targetMethod: ts.MethodDeclaration | null;
26
+ }
27
+ export interface ServiceCallAnalyzerOptions {
28
+ /** Maximum depth to traverse service calls */
29
+ maxDepth?: number;
30
+ /** Whether to analyze helper functions within service methods */
31
+ analyzeHelpers?: boolean;
32
+ }
33
+ /**
34
+ * Enhanced query builder analyzer that follows service calls
35
+ */
36
+ export declare class ServiceCallAnalyzer {
37
+ private checker;
38
+ private program;
39
+ private cache;
40
+ private analyzedMethods;
41
+ constructor(checker: ts.TypeChecker, program: ts.Program | null);
42
+ /**
43
+ * Analyzes a controller method for query builder patterns, following service calls
44
+ */
45
+ analyzeControllerMethod(methodDeclaration: ts.MethodDeclaration, options?: ServiceCallAnalyzerOptions): QueryBuilderSchema | null;
46
+ /**
47
+ * Recursively analyzes method with service call traversal
48
+ */
49
+ private analyzeMethodWithServiceCalls;
50
+ /**
51
+ * Analyzes a service method for query builder patterns
52
+ */
53
+ private analyzeServiceMethod;
54
+ /**
55
+ * Finds service calls in a method body
56
+ */
57
+ private findServiceCalls;
58
+ /**
59
+ * Resolves a call expression to a service method
60
+ */
61
+ private resolveServiceCall;
62
+ /**
63
+ * Finds class declaration from a symbol
64
+ */
65
+ private findClassDeclaration;
66
+ /**
67
+ * Finds method declaration in a class
68
+ */
69
+ private findMethodDeclaration;
70
+ /**
71
+ * Generates cache key for a method
72
+ */
73
+ private getMethodCacheKey;
74
+ /**
75
+ * Gets class name from method declaration
76
+ */
77
+ private getClassName;
78
+ /**
79
+ * Clears the analysis cache
80
+ */
81
+ clearCache(): void;
82
+ /**
83
+ * Gets cache statistics
84
+ */
85
+ getCacheStats(): {
86
+ cached: number;
87
+ analyzed: number;
88
+ };
89
+ }
90
+ /**
91
+ * Convenience function to create and use service call analyzer
92
+ */
93
+ export declare function analyzeControllerWithServiceCalls(methodDeclaration: ts.MethodDeclaration, checker: ts.TypeChecker, program: ts.Program | null, options?: ServiceCallAnalyzerOptions): QueryBuilderSchema | null;
94
+ /**
95
+ * Performance-optimized batch analysis for multiple controller methods
96
+ */
97
+ export declare function analyzeMultipleControllersWithServiceCalls(methodDeclarations: ts.MethodDeclaration[], checker: ts.TypeChecker, program: ts.Program | null, options?: ServiceCallAnalyzerOptions): Map<ts.MethodDeclaration, QueryBuilderSchema | null>;
98
+ /**
99
+ * Clear all caches for memory optimization
100
+ */
101
+ export declare function clearServiceCallAnalyzerCaches(): void;
102
+ //# sourceMappingURL=serviceCallAnalyzer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"serviceCallAnalyzer.d.ts","sourceRoot":"","sources":["../../../src/compiler/schema/serviceCallAnalyzer.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,MAAM,YAAY,CAAC;AAE5B,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AAEpE,MAAM,WAAW,eAAe;IAC9B,yBAAyB;IACzB,WAAW,EAAE,MAAM,CAAC;IACpB,+BAA+B;IAC/B,UAAU,EAAE,MAAM,CAAC;IACnB,uCAAuC;IACvC,QAAQ,EAAE,MAAM,CAAC;IACjB,gCAAgC;IAChC,gBAAgB,EAAE,EAAE,CAAC,gBAAgB,CAAC;IACtC,sCAAsC;IACtC,iBAAiB,EAAE,EAAE,CAAC,iBAAiB,CAAC;CACzC;AAED,MAAM,WAAW,eAAe;IAC9B,iCAAiC;IACjC,gBAAgB,EAAE,EAAE,CAAC,iBAAiB,CAAC;IACvC,iCAAiC;IACjC,YAAY,EAAE,eAAe,EAAE,CAAC;IAChC,0DAA0D;IAC1D,YAAY,EAAE,EAAE,CAAC,iBAAiB,GAAG,IAAI,CAAC;CAC3C;AAED,MAAM,WAAW,0BAA0B;IACzC,8CAA8C;IAC9C,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,iEAAiE;IACjE,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED;;GAEG;AACH,qBAAa,mBAAmB;IAC9B,OAAO,CAAC,OAAO,CAAiB;IAChC,OAAO,CAAC,OAAO,CAAoB;IACnC,OAAO,CAAC,KAAK,CAAqD;IAClE,OAAO,CAAC,eAAe,CAA0B;gBAErC,OAAO,EAAE,EAAE,CAAC,WAAW,EAAE,OAAO,EAAE,EAAE,CAAC,OAAO,GAAG,IAAI;IAK/D;;OAEG;IACI,uBAAuB,CAC5B,iBAAiB,EAAE,EAAE,CAAC,iBAAiB,EACvC,OAAO,GAAE,0BAA+B,GACvC,kBAAkB,GAAG,IAAI;IAc5B;;OAEG;IACH,OAAO,CAAC,6BAA6B;IAqCrC;;OAEG;IACH,OAAO,CAAC,oBAAoB;IAyB5B;;OAEG;IACH,OAAO,CAAC,gBAAgB;IAuBxB;;OAEG;IACH,OAAO,CAAC,kBAAkB;IA0D1B;;OAEG;IACH,OAAO,CAAC,oBAAoB;IAa5B;;OAEG;IACH,OAAO,CAAC,qBAAqB;IAc7B;;OAEG;IACH,OAAO,CAAC,iBAAiB;IASzB;;OAEG;IACH,OAAO,CAAC,YAAY;IAapB;;OAEG;IACI,UAAU,IAAI,IAAI;IAKzB;;OAEG;IACI,aAAa,IAAI;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE;CAM7D;AAED;;GAEG;AACH,wBAAgB,iCAAiC,CAC/C,iBAAiB,EAAE,EAAE,CAAC,iBAAiB,EACvC,OAAO,EAAE,EAAE,CAAC,WAAW,EACvB,OAAO,EAAE,EAAE,CAAC,OAAO,GAAG,IAAI,EAC1B,OAAO,GAAE,0BAA+B,GACvC,kBAAkB,GAAG,IAAI,CAO3B;AAED;;GAEG;AACH,wBAAgB,0CAA0C,CACxD,kBAAkB,EAAE,EAAE,CAAC,iBAAiB,EAAE,EAC1C,OAAO,EAAE,EAAE,CAAC,WAAW,EACvB,OAAO,EAAE,EAAE,CAAC,OAAO,GAAG,IAAI,EAC1B,OAAO,GAAE,0BAA+B,GACvC,GAAG,CAAC,EAAE,CAAC,iBAAiB,EAAE,kBAAkB,GAAG,IAAI,CAAC,CActD;AAED;;GAEG;AACH,wBAAgB,8BAA8B,IAAI,IAAI,CAGrD"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adorn-api",
3
- "version": "1.0.21",
3
+ "version": "1.0.23",
4
4
  "description": "Stage-3 decorator-first OpenAPI + routing toolkit",
5
5
  "license": "MIT",
6
6
  "type": "module",