@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.
Files changed (40) hide show
  1. package/dist/api/builder.d.ts.map +1 -1
  2. package/dist/api/generators/base/BaseGenerator.d.ts +186 -0
  3. package/dist/api/generators/base/BaseGenerator.d.ts.map +1 -0
  4. package/dist/api/generators/base/FileManager.d.ts +90 -0
  5. package/dist/api/generators/base/FileManager.d.ts.map +1 -0
  6. package/dist/api/generators/base/HandlebarsTemplateEngine.d.ts +60 -0
  7. package/dist/api/generators/base/HandlebarsTemplateEngine.d.ts.map +1 -0
  8. package/dist/api/generators/base/PythonTypeMapper.d.ts +17 -0
  9. package/dist/api/generators/base/PythonTypeMapper.d.ts.map +1 -0
  10. package/dist/api/generators/base/TemplateEngine.d.ts +127 -0
  11. package/dist/api/generators/base/TemplateEngine.d.ts.map +1 -0
  12. package/dist/api/generators/base/TypeMapper.d.ts +130 -0
  13. package/dist/api/generators/base/TypeMapper.d.ts.map +1 -0
  14. package/dist/api/generators/base/TypeScriptTypeMapper.d.ts +52 -0
  15. package/dist/api/generators/base/TypeScriptTypeMapper.d.ts.map +1 -0
  16. package/dist/api/generators/base/builders/DirectoryBuilder.d.ts +100 -0
  17. package/dist/api/generators/base/builders/DirectoryBuilder.d.ts.map +1 -0
  18. package/dist/api/generators/base/builders/FileBuilder.d.ts +161 -0
  19. package/dist/api/generators/base/builders/FileBuilder.d.ts.map +1 -0
  20. package/dist/api/generators/base/builders/IndexBuilder.d.ts +127 -0
  21. package/dist/api/generators/base/builders/IndexBuilder.d.ts.map +1 -0
  22. package/dist/api/generators/base/enhanced-errors.d.ts +85 -0
  23. package/dist/api/generators/base/enhanced-errors.d.ts.map +1 -0
  24. package/dist/api/generators/base/error-handler.d.ts +90 -0
  25. package/dist/api/generators/base/error-handler.d.ts.map +1 -0
  26. package/dist/api/generators/base/errors.d.ts +252 -0
  27. package/dist/api/generators/base/errors.d.ts.map +1 -0
  28. package/dist/api/generators/base/index.d.ts +104 -0
  29. package/dist/api/generators/base/index.d.ts.map +1 -0
  30. package/dist/api/generators/base/types.d.ts +434 -0
  31. package/dist/api/generators/base/types.d.ts.map +1 -0
  32. package/dist/api/generators/typescript.d.ts +81 -135
  33. package/dist/api/generators/typescript.d.ts.map +1 -1
  34. package/dist/api/index.d.ts +3 -2
  35. package/dist/api/index.d.ts.map +1 -1
  36. package/dist/cli/index.js +1 -1
  37. package/dist/index-vysn9shw.js +14370 -0
  38. package/dist/index.js +3 -3
  39. package/package.json +13 -4
  40. package/dist/index-m60p8fkc.js +0 -6709
@@ -0,0 +1,434 @@
1
+ /**
2
+ * Core types and interfaces for the base generator system
3
+ *
4
+ * This module provides the foundational type definitions that all generators
5
+ * build upon, ensuring consistency and type safety across the system.
6
+ */
7
+ import type { TypeSchema, TypeSchemaIdentifier } from "../../../typeschema";
8
+ import type { CodegenLogger } from "../../../utils/codegen-logger";
9
+ /**
10
+ * Base configuration options that all generators must support
11
+ * These options provide the minimum required configuration for any generator
12
+ */
13
+ export interface BaseGeneratorOptions {
14
+ /** Output directory where generated files will be written */
15
+ outputDir: string;
16
+ /** Logger instance for tracking generation progress and errors */
17
+ logger?: CodegenLogger;
18
+ /** Whether to overwrite existing files (default: true) */
19
+ overwrite?: boolean;
20
+ /** Whether to validate schemas and generated content (default: true) */
21
+ validate?: boolean;
22
+ /** Enable detailed logging for debugging (default: false) */
23
+ verbose?: boolean;
24
+ /** Enable beginner-friendly error messages and guidance (default: false) */
25
+ beginnerMode?: boolean;
26
+ /** Format for error output: console, json, or structured (default: 'console') */
27
+ errorFormat?: "console" | "json" | "structured";
28
+ }
29
+ /**
30
+ * Language-specific type representation
31
+ * This interface standardizes how FHIR types are mapped to target languages
32
+ */
33
+ export interface LanguageType {
34
+ /** The type string in the target language (e.g., "string", "number", "Patient") */
35
+ name: string;
36
+ /** Whether this is a primitive type that doesn't need imports */
37
+ isPrimitive: boolean;
38
+ /** Import path if this type needs to be imported from another module */
39
+ importPath?: string;
40
+ /** Generic parameters if this is a generic type (e.g., ["T", "K"] for Map<T,K>) */
41
+ generics?: string[];
42
+ /** Whether this type is nullable/optional in the target language */
43
+ nullable?: boolean;
44
+ /** Additional metadata specific to the target language */
45
+ metadata?: Record<string, unknown>;
46
+ }
47
+ /**
48
+ * Generated file metadata and content
49
+ * Represents a single generated file with all its associated information
50
+ */
51
+ export interface GeneratedFile {
52
+ /** Full file system path where the file was/will be written */
53
+ path: string;
54
+ /** Filename only (without directory path) */
55
+ filename: string;
56
+ /** The generated content of the file */
57
+ content: string;
58
+ /** List of symbols exported from this file */
59
+ exports: string[];
60
+ /** File size in bytes */
61
+ size: number;
62
+ /** When this file was generated */
63
+ timestamp: Date;
64
+ /** Additional metadata about the generation process */
65
+ metadata?: {
66
+ /** Time taken to generate this file in milliseconds */
67
+ generationTime?: number;
68
+ /** Number of schemas processed for this file */
69
+ schemaCount?: number;
70
+ /** Template used to generate this file */
71
+ templateName?: string;
72
+ /** Any warnings generated during processing */
73
+ warnings?: string[];
74
+ };
75
+ }
76
+ /**
77
+ * Template context provided to template engines
78
+ * Contains all the data needed to render templates for code generation
79
+ */
80
+ export interface TemplateContext {
81
+ /** The schema being processed */
82
+ schema: TypeSchema;
83
+ /** Type mapper for the target language */
84
+ typeMapper: TypeMapper;
85
+ /** Current file being generated */
86
+ filename: string;
87
+ /** Target language name (e.g., "TypeScript", "Python") */
88
+ language: string;
89
+ /** Generation timestamp in ISO format */
90
+ timestamp: string;
91
+ /** Import map for the current file */
92
+ imports?: Map<string, string>;
93
+ /** Export set for the current file */
94
+ exports?: Set<string>;
95
+ /** Additional context data that templates can use */
96
+ [key: string]: unknown;
97
+ }
98
+ /**
99
+ * File builder context passed to lifecycle hooks
100
+ * Provides access to file generation state during the build process
101
+ */
102
+ export interface FileContext {
103
+ /** Name of the file being generated */
104
+ filename: string;
105
+ /** Current file content */
106
+ content: string;
107
+ /** Map of imports (symbol name -> import path) */
108
+ imports: Map<string, string>;
109
+ /** Set of exported symbols */
110
+ exports: Set<string>;
111
+ /** Additional metadata about the file */
112
+ metadata: Record<string, unknown>;
113
+ /** The schema that generated this file (if applicable) */
114
+ schema?: TypeSchema;
115
+ /** Template name used to generate this file (if applicable) */
116
+ templateName?: string;
117
+ }
118
+ /**
119
+ * Statistics about file operations
120
+ * Used for performance monitoring and optimization
121
+ */
122
+ export interface FileStats {
123
+ /** File size in bytes */
124
+ size: number;
125
+ /** Time taken to generate content in milliseconds */
126
+ generationTime: number;
127
+ /** Time taken to write to disk in milliseconds */
128
+ writeTime: number;
129
+ /** Memory used during generation in bytes */
130
+ memoryUsed?: number;
131
+ /** Number of template renders performed */
132
+ templateRenders?: number;
133
+ }
134
+ /**
135
+ * Progress callback signature for monitoring generation
136
+ * Allows consumers to track progress of long-running operations
137
+ */
138
+ export type ProgressCallback = (
139
+ /** Current phase of generation */
140
+ phase: "validation" | "generation" | "writing" | "complete",
141
+ /** Current item number being processed */
142
+ current: number,
143
+ /** Total number of items to process */
144
+ total: number,
145
+ /** Optional message describing current operation */
146
+ message?: string,
147
+ /** Schema being processed (if applicable) */
148
+ schema?: TypeSchema) => void;
149
+ /**
150
+ * Lifecycle hook signatures for file operations
151
+ * These hooks allow customization of the file generation process
152
+ */
153
+ /** Hook called before saving a file - can modify content or abort save */
154
+ export type BeforeSaveHook = (context: FileContext) => void | Promise<void>;
155
+ /** Hook called after successfully saving a file */
156
+ export type AfterSaveHook = (filePath: string, stats: FileStats) => void | Promise<void>;
157
+ /** Hook called when an error occurs during file operations */
158
+ export type ErrorHook = (error: Error, context: FileContext) => void | Promise<void>;
159
+ /**
160
+ * File builder configuration options
161
+ * Controls how files are generated and processed
162
+ */
163
+ export interface FileBuilderOptions {
164
+ /** Template name to use for content generation */
165
+ template?: string;
166
+ /** Strategy for resolving import paths */
167
+ importStrategy?: "auto" | "manual" | "none";
168
+ /** Level of content validation to perform */
169
+ validation?: "strict" | "loose" | "none";
170
+ /** Enable pretty printing of generated content */
171
+ prettify?: boolean;
172
+ /** Custom formatting options */
173
+ formatting?: {
174
+ /** Number of spaces for indentation (default: 2) */
175
+ indentSize?: number;
176
+ /** Use tabs instead of spaces (default: false) */
177
+ useTabs?: boolean;
178
+ /** Maximum line length before wrapping (default: 100) */
179
+ maxLineLength?: number;
180
+ };
181
+ /** File encoding (default: 'utf-8') */
182
+ encoding?: BufferEncoding;
183
+ }
184
+ /**
185
+ * Abstract base class for type mapping between FHIR and target languages
186
+ * Each language-specific generator must implement this interface
187
+ */
188
+ export declare abstract class TypeMapper {
189
+ /**
190
+ * Map a FHIR primitive type to the target language
191
+ * @param fhirType - FHIR primitive type name (e.g., "string", "integer")
192
+ * @returns Language-specific type representation
193
+ */
194
+ abstract mapPrimitive(fhirType: string): LanguageType;
195
+ /**
196
+ * Map a FHIR reference to the target language
197
+ * @param targets - Array of possible reference targets
198
+ * @returns Language-specific reference type
199
+ */
200
+ abstract mapReference(targets: TypeSchemaIdentifier[]): LanguageType;
201
+ /**
202
+ * Map an array type in the target language
203
+ * @param elementType - The element type name
204
+ * @returns Language-specific array type
205
+ */
206
+ abstract mapArray(elementType: string): LanguageType;
207
+ /**
208
+ * Map optional/nullable types
209
+ * @param type - The base type
210
+ * @param required - Whether the field is required
211
+ * @returns Language-specific optional type
212
+ */
213
+ abstract mapOptional(type: string, required: boolean): LanguageType;
214
+ /**
215
+ * Map enumerated values to the target language
216
+ * @param values - Array of possible values
217
+ * @param name - Optional name for the enum type
218
+ * @returns Language-specific enum type
219
+ */
220
+ abstract mapEnum(values: string[], name?: string): LanguageType;
221
+ /**
222
+ * Format a FHIR type name according to target language conventions
223
+ * @param name - FHIR type name
224
+ * @returns Formatted type name
225
+ */
226
+ abstract formatTypeName(name: string): string;
227
+ /**
228
+ * Format a field name according to target language conventions
229
+ * @param name - FHIR field name
230
+ * @returns Formatted field name
231
+ */
232
+ abstract formatFieldName(name: string): string;
233
+ /**
234
+ * Format a filename according to target language conventions
235
+ * @param name - Base filename
236
+ * @returns Formatted filename (without extension)
237
+ */
238
+ abstract formatFileName(name: string): string;
239
+ /**
240
+ * Map a complete TypeSchema identifier to target language type
241
+ * @param identifier - FHIR type identifier
242
+ * @returns Language-specific type representation
243
+ */
244
+ abstract mapType(identifier: TypeSchemaIdentifier): LanguageType;
245
+ /**
246
+ * Get import statement format for the target language
247
+ * @param symbols - Symbols to import
248
+ * @param from - Module to import from
249
+ * @returns Formatted import statement
250
+ */
251
+ formatImport?(symbols: string[], from: string): string;
252
+ /**
253
+ * Get export statement format for the target language
254
+ * @param symbols - Symbols to export
255
+ * @returns Formatted export statement
256
+ */
257
+ formatExport?(symbols: string[]): string;
258
+ }
259
+ /**
260
+ * Directory builder configuration
261
+ * Used for batch directory operations
262
+ */
263
+ export interface DirectoryBuilderConfig {
264
+ /** Directory path relative to output directory */
265
+ path: string;
266
+ /** File manager instance for file operations */
267
+ fileManager: any;
268
+ /** Logger for directory operations */
269
+ logger: CodegenLogger;
270
+ /** Whether to clean directory before creating files */
271
+ clean?: boolean;
272
+ }
273
+ /**
274
+ * Index builder configuration
275
+ * Used for generating index/barrel files
276
+ */
277
+ export interface IndexBuilderConfig {
278
+ /** Directory to create index for */
279
+ directory: string;
280
+ /** File manager instance */
281
+ fileManager: any;
282
+ /** Template engine for rendering index files */
283
+ templateEngine: any;
284
+ /** Logger instance */
285
+ logger: CodegenLogger;
286
+ /** Header to include in index file */
287
+ header?: string;
288
+ /** Footer to include in index file */
289
+ footer?: string;
290
+ }
291
+ /**
292
+ * Batch operation result
293
+ * Used for tracking results of operations on multiple items
294
+ */
295
+ export interface BatchResult<T> {
296
+ /** Successful results */
297
+ successes: T[];
298
+ /** Failed operations with their errors */
299
+ failures: Array<{
300
+ /** The item that failed */
301
+ item: unknown;
302
+ /** The error that occurred */
303
+ error: Error;
304
+ /** Index of the failed item */
305
+ index: number;
306
+ }>;
307
+ /** Total number of items processed */
308
+ total: number;
309
+ /** Time taken for the entire batch operation */
310
+ duration: number;
311
+ }
312
+ /**
313
+ * Template engine interface
314
+ * Abstraction for different template engines (Handlebars, etc.)
315
+ */
316
+ export interface TemplateEngine {
317
+ /**
318
+ * Render a template with the given context
319
+ * @param templateName - Name of the template to render
320
+ * @param context - Data to pass to the template
321
+ * @returns Rendered content
322
+ */
323
+ render(templateName: string, context: Record<string, unknown>): string;
324
+ /**
325
+ * Register a template
326
+ * @param name - Template name
327
+ * @param template - Template content or compiled template
328
+ */
329
+ registerTemplate(name: string, template: string | Function): void;
330
+ /**
331
+ * Register a helper function
332
+ * @param name - Helper name
333
+ * @param helper - Helper function
334
+ */
335
+ registerHelper(name: string, helper: Function): void;
336
+ /**
337
+ * Check if a template exists
338
+ * @param name - Template name
339
+ * @returns True if template exists
340
+ */
341
+ hasTemplate(name: string): boolean;
342
+ /**
343
+ * Get list of available templates
344
+ * @returns Array of template names
345
+ */
346
+ getAvailableTemplates(): string[];
347
+ }
348
+ /**
349
+ * File manager interface
350
+ * Abstraction for file system operations
351
+ */
352
+ export interface FileManager {
353
+ /**
354
+ * Write a file with automatic directory creation
355
+ * @param relativePath - Path relative to output directory
356
+ * @param content - File content
357
+ * @param options - Write options
358
+ * @returns Write result with path and stats
359
+ */
360
+ writeFile(relativePath: string, content: string, options?: {
361
+ encoding?: BufferEncoding;
362
+ overwrite?: boolean;
363
+ }): Promise<{
364
+ path: string;
365
+ size: number;
366
+ writeTime: number;
367
+ }>;
368
+ /**
369
+ * Write multiple files in batch
370
+ * @param files - Map of path to content
371
+ * @returns Array of write results
372
+ */
373
+ writeBatch(files: Map<string, string>): Promise<Array<{
374
+ path: string;
375
+ size: number;
376
+ writeTime: number;
377
+ }>>;
378
+ /**
379
+ * Ensure directory exists
380
+ * @param dirPath - Directory path
381
+ */
382
+ ensureDirectory(dirPath: string): Promise<void>;
383
+ /**
384
+ * Clean directory contents
385
+ * @param relativePath - Path relative to output directory
386
+ */
387
+ cleanDirectory(relativePath?: string): Promise<void>;
388
+ /**
389
+ * Get relative import path between files
390
+ * @param fromFile - Source file
391
+ * @param toFile - Target file
392
+ * @returns Relative import path
393
+ */
394
+ getRelativeImportPath(fromFile: string, toFile: string): string;
395
+ }
396
+ /**
397
+ * Generator configuration validation result
398
+ * Used to validate generator options before initialization
399
+ */
400
+ export interface ConfigValidationResult {
401
+ /** Whether the configuration is valid */
402
+ isValid: boolean;
403
+ /** Validation errors if any */
404
+ errors: string[];
405
+ /** Non-fatal warnings */
406
+ warnings: string[];
407
+ /** Suggested fixes for invalid configuration */
408
+ suggestions: string[];
409
+ }
410
+ /**
411
+ * Generator capabilities interface
412
+ * Describes what a generator can do - used for introspection
413
+ */
414
+ export interface GeneratorCapabilities {
415
+ /** Programming language this generator targets */
416
+ language: string;
417
+ /** File extensions this generator produces */
418
+ fileExtensions: string[];
419
+ /** Whether this generator supports templates */
420
+ supportsTemplates: boolean;
421
+ /** Whether this generator supports custom type mapping */
422
+ supportsCustomTypeMapping: boolean;
423
+ /** Whether this generator supports incremental generation */
424
+ supportsIncrementalGeneration: boolean;
425
+ /** Whether this generator supports validation */
426
+ supportsValidation: boolean;
427
+ /** Supported schema kinds */
428
+ supportedSchemaKinds: Array<"resource" | "complex-type" | "profile" | "primitive-type" | "logical">;
429
+ /** Version of the generator */
430
+ version: string;
431
+ /** Additional metadata about capabilities */
432
+ metadata?: Record<string, unknown>;
433
+ }
434
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/api/generators/base/types.ts"],"names":[],"mappings":"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"}