@atomic-ehr/codegen 0.0.1-canary.20250811235950.67a72a5 → 0.0.1-canary.20250819094151.a48e310
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/api/builder.d.ts.map +1 -1
- package/dist/api/generators/base/BaseGenerator.d.ts +186 -0
- package/dist/api/generators/base/BaseGenerator.d.ts.map +1 -0
- package/dist/api/generators/base/FileManager.d.ts +90 -0
- package/dist/api/generators/base/FileManager.d.ts.map +1 -0
- package/dist/api/generators/base/HandlebarsTemplateEngine.d.ts +60 -0
- package/dist/api/generators/base/HandlebarsTemplateEngine.d.ts.map +1 -0
- package/dist/api/generators/base/PythonTypeMapper.d.ts +17 -0
- package/dist/api/generators/base/PythonTypeMapper.d.ts.map +1 -0
- package/dist/api/generators/base/TemplateEngine.d.ts +127 -0
- package/dist/api/generators/base/TemplateEngine.d.ts.map +1 -0
- package/dist/api/generators/base/TypeMapper.d.ts +130 -0
- package/dist/api/generators/base/TypeMapper.d.ts.map +1 -0
- package/dist/api/generators/base/TypeScriptTypeMapper.d.ts +52 -0
- package/dist/api/generators/base/TypeScriptTypeMapper.d.ts.map +1 -0
- package/dist/api/generators/base/builders/DirectoryBuilder.d.ts +100 -0
- package/dist/api/generators/base/builders/DirectoryBuilder.d.ts.map +1 -0
- package/dist/api/generators/base/builders/FileBuilder.d.ts +161 -0
- package/dist/api/generators/base/builders/FileBuilder.d.ts.map +1 -0
- package/dist/api/generators/base/builders/IndexBuilder.d.ts +127 -0
- package/dist/api/generators/base/builders/IndexBuilder.d.ts.map +1 -0
- package/dist/api/generators/base/enhanced-errors.d.ts +85 -0
- package/dist/api/generators/base/enhanced-errors.d.ts.map +1 -0
- package/dist/api/generators/base/error-handler.d.ts +90 -0
- package/dist/api/generators/base/error-handler.d.ts.map +1 -0
- package/dist/api/generators/base/errors.d.ts +252 -0
- package/dist/api/generators/base/errors.d.ts.map +1 -0
- package/dist/api/generators/base/index.d.ts +104 -0
- package/dist/api/generators/base/index.d.ts.map +1 -0
- package/dist/api/generators/base/types.d.ts +434 -0
- package/dist/api/generators/base/types.d.ts.map +1 -0
- package/dist/api/generators/typescript.d.ts +81 -135
- package/dist/api/generators/typescript.d.ts.map +1 -1
- package/dist/api/index.d.ts +3 -2
- package/dist/api/index.d.ts.map +1 -1
- package/dist/cli/index.js +1 -1
- package/dist/index-vysn9shw.js +14370 -0
- package/dist/index.js +3 -3
- package/package.json +13 -4
- package/dist/index-m60p8fkc.js +0 -6709
|
@@ -1,33 +1,38 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
2
|
+
* Modern TypeScript Generator built on BaseGenerator
|
|
3
3
|
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
4
|
+
* This is the new, clean implementation that replaces the monolithic typescript.ts generator.
|
|
5
|
+
* Built using the BaseGenerator architecture with TypeMapper, TemplateEngine, and FileManager.
|
|
6
6
|
*/
|
|
7
|
-
import {
|
|
8
|
-
import
|
|
7
|
+
import type { TypeSchema } from "../../typeschema";
|
|
8
|
+
import { BaseGenerator } from "./base/BaseGenerator";
|
|
9
|
+
import { type HandlebarsTemplateEngineOptions } from "./base/HandlebarsTemplateEngine";
|
|
10
|
+
import { type TypeScriptTypeMapperOptions } from "./base/TypeScriptTypeMapper";
|
|
11
|
+
import type { BaseGeneratorOptions, GeneratedFile, TemplateContext, TemplateEngine, TypeMapper } from "./base/types";
|
|
9
12
|
/**
|
|
10
|
-
*
|
|
13
|
+
* TypeScript-specific generator options
|
|
11
14
|
*/
|
|
12
|
-
export interface
|
|
13
|
-
|
|
15
|
+
export interface TypeScriptGeneratorOptions extends BaseGeneratorOptions {
|
|
16
|
+
/** Module format for imports/exports */
|
|
14
17
|
moduleFormat?: "esm" | "cjs";
|
|
18
|
+
/** Whether to generate index files */
|
|
15
19
|
generateIndex?: boolean;
|
|
20
|
+
/** Include JSDoc documentation */
|
|
16
21
|
includeDocuments?: boolean;
|
|
22
|
+
/** Naming convention for types */
|
|
17
23
|
namingConvention?: "PascalCase" | "camelCase";
|
|
24
|
+
/** Include FHIR extensions */
|
|
18
25
|
includeExtensions?: boolean;
|
|
26
|
+
/** Include FHIR profiles */
|
|
19
27
|
includeProfiles?: boolean;
|
|
20
|
-
|
|
28
|
+
/** Type mapper options */
|
|
29
|
+
typeMapperOptions?: TypeScriptTypeMapperOptions;
|
|
30
|
+
/** Template engine options */
|
|
31
|
+
templateOptions?: Partial<HandlebarsTemplateEngineOptions>;
|
|
21
32
|
}
|
|
22
33
|
/**
|
|
23
|
-
*
|
|
34
|
+
* Result of generating a single TypeScript file
|
|
24
35
|
*/
|
|
25
|
-
export interface GeneratedFile {
|
|
26
|
-
path: string;
|
|
27
|
-
filename: string;
|
|
28
|
-
content: string;
|
|
29
|
-
exports: string[];
|
|
30
|
-
}
|
|
31
36
|
export interface GeneratedTypeScript {
|
|
32
37
|
content: string;
|
|
33
38
|
imports: Map<string, string>;
|
|
@@ -35,156 +40,97 @@ export interface GeneratedTypeScript {
|
|
|
35
40
|
filename: string;
|
|
36
41
|
}
|
|
37
42
|
/**
|
|
38
|
-
*
|
|
43
|
+
* Modern TypeScript Generator
|
|
39
44
|
*
|
|
40
|
-
* Generates TypeScript interfaces from TypeSchema documents
|
|
41
|
-
*
|
|
45
|
+
* Generates clean, type-safe TypeScript interfaces from FHIR TypeSchema documents.
|
|
46
|
+
* Uses the new BaseGenerator architecture for maintainability and extensibility.
|
|
42
47
|
*/
|
|
43
|
-
export declare class
|
|
44
|
-
private
|
|
45
|
-
private
|
|
46
|
-
private
|
|
47
|
-
|
|
48
|
-
private
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
* Transform a single TypeSchema to TypeScript
|
|
59
|
-
*/
|
|
60
|
-
transformSchema(schema: TypeSchema): Promise<GeneratedTypeScript | undefined>;
|
|
61
|
-
/**
|
|
62
|
-
* Generate TypeScript for a single schema
|
|
63
|
-
*/
|
|
64
|
-
private generateTypeScriptForSchema;
|
|
65
|
-
/**
|
|
66
|
-
* Generate TypeScript for nested type
|
|
67
|
-
*/
|
|
68
|
-
private generateNested;
|
|
69
|
-
/**
|
|
70
|
-
* Generate TypeScript for a field
|
|
71
|
-
*/
|
|
72
|
-
private generateField;
|
|
73
|
-
/**
|
|
74
|
-
* Generate TypeScript for polymorphic instance
|
|
75
|
-
*/
|
|
76
|
-
private generatePolymorphicInstance;
|
|
77
|
-
/**
|
|
78
|
-
* Generate TypeScript for a regular field
|
|
79
|
-
*/
|
|
80
|
-
private generateRegularField;
|
|
81
|
-
private buildReferenceType;
|
|
82
|
-
/**
|
|
83
|
-
* Transform multiple schemas
|
|
48
|
+
export declare class TypeScriptGenerator extends BaseGenerator<TypeScriptGeneratorOptions, GeneratedFile[]> {
|
|
49
|
+
private readonly enumTypes;
|
|
50
|
+
private readonly profilesByPackage;
|
|
51
|
+
private readonly resourceTypes;
|
|
52
|
+
constructor(options: TypeScriptGeneratorOptions);
|
|
53
|
+
private get tsOptions();
|
|
54
|
+
protected getLanguageName(): string;
|
|
55
|
+
protected getFileExtension(): string;
|
|
56
|
+
protected createTypeMapper(): TypeMapper;
|
|
57
|
+
protected createTemplateEngine(): TemplateEngine;
|
|
58
|
+
protected generateSchemaContent(schema: TypeSchema, context: TemplateContext): Promise<string>;
|
|
59
|
+
protected filterAndSortSchemas(schemas: TypeSchema[]): TypeSchema[];
|
|
60
|
+
protected validateContent(content: string, context: TemplateContext): Promise<void>;
|
|
61
|
+
/**
|
|
62
|
+
* Transform multiple schemas into TypeScript
|
|
84
63
|
*/
|
|
85
64
|
transformSchemas(schemas: TypeSchema[]): Promise<GeneratedTypeScript[]>;
|
|
86
65
|
/**
|
|
87
|
-
*
|
|
88
|
-
*/
|
|
89
|
-
generate(schemas: TypeSchema[]): Promise<GeneratedFile[]>;
|
|
90
|
-
private generateImportStatements;
|
|
91
|
-
/**
|
|
92
|
-
* Generate and return results without writing to files
|
|
93
|
-
*/
|
|
94
|
-
build(schemas: TypeSchema[]): Promise<GeneratedFile[]>;
|
|
95
|
-
/**
|
|
96
|
-
* Set output directory
|
|
97
|
-
*/
|
|
98
|
-
setOutputDir(directory: string): void;
|
|
99
|
-
/**
|
|
100
|
-
* Update generator options
|
|
101
|
-
*/
|
|
102
|
-
setOptions(options: Partial<TypeScriptAPIOptions>): void;
|
|
103
|
-
/**
|
|
104
|
-
* Get current options
|
|
105
|
-
*/
|
|
106
|
-
getOptions(): TypeScriptAPIOptions;
|
|
107
|
-
private generateIndexFile;
|
|
108
|
-
private ensureDirectoryExists;
|
|
109
|
-
/**
|
|
110
|
-
* Clean the output directory by removing all existing files and subdirectories
|
|
111
|
-
*/
|
|
112
|
-
private cleanOutputDirectory;
|
|
113
|
-
/**
|
|
114
|
-
* Filter schemas based on includeExtensions option
|
|
66
|
+
* Transform a single schema into TypeScript
|
|
115
67
|
*/
|
|
68
|
+
transformSchema(schema: TypeSchema): Promise<GeneratedTypeScript | undefined>;
|
|
69
|
+
private shouldSkipSchema;
|
|
70
|
+
private getTemplateForSchema;
|
|
116
71
|
private filterSchemas;
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
private
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
72
|
+
private getFilenameForSchema;
|
|
73
|
+
private buildTemplateContext;
|
|
74
|
+
private processSchemaFields;
|
|
75
|
+
private processField;
|
|
76
|
+
private calculateImportsForSchema;
|
|
77
|
+
private extractImportsFromContent;
|
|
78
|
+
private extractExportsFromContent;
|
|
79
|
+
private generateIndexFiles;
|
|
80
|
+
private generateMainIndexFile;
|
|
124
81
|
private generateProfileIndexFiles;
|
|
82
|
+
private hasEnumFields;
|
|
83
|
+
private formatDescription;
|
|
84
|
+
private groupExportsByCategory;
|
|
85
|
+
private isResourceType;
|
|
86
|
+
private sanitizePackageName;
|
|
125
87
|
/**
|
|
126
|
-
* Generate
|
|
127
|
-
*/
|
|
128
|
-
private generatePackageIndex;
|
|
129
|
-
/**
|
|
130
|
-
* Generate main profiles index with namespace exports
|
|
131
|
-
*/
|
|
132
|
-
private generateMainProfilesIndex;
|
|
133
|
-
/**
|
|
134
|
-
* Generate index content for a subfolder
|
|
135
|
-
*/
|
|
136
|
-
private generateSubfolderIndex;
|
|
137
|
-
/**
|
|
138
|
-
* Format type name according to naming convention
|
|
88
|
+
* Generate special Reference interface with generics
|
|
139
89
|
*/
|
|
140
|
-
private
|
|
90
|
+
private generateReferenceInterface;
|
|
141
91
|
/**
|
|
142
|
-
*
|
|
92
|
+
* Generate TypeScript interface directly without templates
|
|
143
93
|
*/
|
|
144
|
-
private
|
|
94
|
+
private generateTypeScriptInterface;
|
|
145
95
|
/**
|
|
146
|
-
*
|
|
96
|
+
* Collect import dependencies from a field
|
|
147
97
|
*/
|
|
148
|
-
private
|
|
98
|
+
private collectFieldImports;
|
|
149
99
|
/**
|
|
150
|
-
*
|
|
100
|
+
* Extract resource types from reference field constraints
|
|
151
101
|
*/
|
|
152
|
-
private
|
|
102
|
+
private extractReferenceTypes;
|
|
153
103
|
/**
|
|
154
|
-
*
|
|
104
|
+
* Extract resource type name from FHIR URL
|
|
155
105
|
*/
|
|
156
|
-
private
|
|
106
|
+
private extractResourceTypeFromUrl;
|
|
157
107
|
/**
|
|
158
|
-
* Generate
|
|
108
|
+
* Generate a single field line
|
|
159
109
|
*/
|
|
160
|
-
private
|
|
110
|
+
private generateFieldLine;
|
|
161
111
|
/**
|
|
162
|
-
*
|
|
112
|
+
* Extract exported symbols from TypeScript content
|
|
163
113
|
*/
|
|
164
|
-
|
|
114
|
+
protected extractExports(content: string): string[];
|
|
165
115
|
/**
|
|
166
|
-
*
|
|
116
|
+
* Set output directory for compatibility with API builder
|
|
167
117
|
*/
|
|
168
|
-
|
|
169
|
-
/**
|
|
170
|
-
* Generate TypeScript for a profile schema
|
|
171
|
-
*/
|
|
172
|
-
private generateTypeScriptForProfile;
|
|
118
|
+
setOutputDir(directory: string): void;
|
|
173
119
|
/**
|
|
174
|
-
*
|
|
120
|
+
* Update generator options for compatibility with API builder
|
|
175
121
|
*/
|
|
176
|
-
|
|
122
|
+
setOptions(options: Partial<TypeScriptGeneratorOptions>): void;
|
|
177
123
|
/**
|
|
178
|
-
*
|
|
124
|
+
* Get current options for compatibility with API builder
|
|
179
125
|
*/
|
|
180
|
-
|
|
126
|
+
getOptions(): TypeScriptGeneratorOptions;
|
|
181
127
|
/**
|
|
182
|
-
*
|
|
128
|
+
* Run post-generation hooks - generate utility files
|
|
183
129
|
*/
|
|
184
|
-
|
|
130
|
+
protected runPostGenerationHooks(): Promise<void>;
|
|
185
131
|
/**
|
|
186
|
-
*
|
|
132
|
+
* Generate utilities.ts file with ResourceType union
|
|
187
133
|
*/
|
|
188
|
-
private
|
|
134
|
+
private generateUtilitiesFile;
|
|
189
135
|
}
|
|
190
136
|
//# sourceMappingURL=typescript.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typescript.d.ts","sourceRoot":"","sources":["../../../src/api/generators/typescript.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;
|
|
1
|
+
{"version":3,"file":"typescript.d.ts","sourceRoot":"","sources":["../../../src/api/generators/typescript.ts"],"names":[],"mappings":"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"}
|
package/dist/api/index.d.ts
CHANGED
|
@@ -10,10 +10,11 @@ export { TypeSchemaCache, TypeSchemaGenerator, TypeSchemaParser, } from "../type
|
|
|
10
10
|
export type { PackageInfo, TypeSchemaField, TypeSchemaIdentifier, } from "../typeschema/types";
|
|
11
11
|
export type { APIBuilderOptions, GenerationResult, ProgressCallback, } from "./builder";
|
|
12
12
|
export { APIBuilder, createAPI, createAPIFromConfig, generateTypesFromFiles, generateTypesFromPackage, } from "./builder";
|
|
13
|
+
export type { GeneratedFile } from "./generators/base";
|
|
13
14
|
export type { GeneratedRestClient, RestClientOptions, } from "./generators/rest-client";
|
|
14
15
|
export { RestClientGenerator } from "./generators/rest-client";
|
|
15
|
-
export type {
|
|
16
|
-
export {
|
|
16
|
+
export type { TypeScriptGeneratorOptions } from "./generators/typescript";
|
|
17
|
+
export { TypeScriptGenerator } from "./generators/typescript";
|
|
17
18
|
/**
|
|
18
19
|
* Quick start examples:
|
|
19
20
|
*
|
package/dist/api/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/api/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAGH,OAAO,EACN,eAAe,EACf,mBAAmB,EACnB,gBAAgB,GAChB,MAAM,eAAe,CAAC;AAEvB,YAAY,EACX,WAAW,EACX,eAAe,EACf,oBAAoB,GACpB,MAAM,qBAAqB,CAAC;AAE7B,YAAY,EACX,iBAAiB,EACjB,gBAAgB,EAChB,gBAAgB,GAChB,MAAM,WAAW,CAAC;AAEnB,OAAO,EACN,UAAU,EACV,SAAS,EACT,mBAAmB,EACnB,sBAAsB,EACtB,wBAAwB,GACxB,MAAM,WAAW,CAAC;AACnB,YAAY,EACX,mBAAmB,EACnB,iBAAiB,GACjB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,YAAY,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/api/index.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAGH,OAAO,EACN,eAAe,EACf,mBAAmB,EACnB,gBAAgB,GAChB,MAAM,eAAe,CAAC;AAEvB,YAAY,EACX,WAAW,EACX,eAAe,EACf,oBAAoB,GACpB,MAAM,qBAAqB,CAAC;AAE7B,YAAY,EACX,iBAAiB,EACjB,gBAAgB,EAChB,gBAAgB,GAChB,MAAM,WAAW,CAAC;AAEnB,OAAO,EACN,UAAU,EACV,SAAS,EACT,mBAAmB,EACnB,sBAAsB,EACtB,wBAAwB,GACxB,MAAM,WAAW,CAAC;AACnB,YAAY,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AACvD,YAAY,EACX,mBAAmB,EACnB,iBAAiB,GACjB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,YAAY,EAAE,0BAA0B,EAAE,MAAM,yBAAyB,CAAC;AAE1E,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAE9D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG"}
|