@atomic-ehr/codegen 0.0.1-canary.20250930151649.b68ce8a → 0.0.1-canary.20251001124254.ddbda7d
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/index.d.ts +1 -1
- package/dist/cli/index.js +19 -19
- package/dist/typeschema/core/field-builder.d.ts +5 -22
- package/dist/typeschema/core/field-builder.js +18 -95
- package/dist/typeschema/core/identifier.d.ts +1 -1
- package/dist/typeschema/core/identifier.js +1 -1
- package/dist/typeschema/core/nested-types.d.ts +4 -13
- package/dist/typeschema/core/nested-types.js +9 -25
- package/dist/typeschema/core/transformer.d.ts +3 -3
- package/dist/typeschema/core/transformer.js +29 -15
- package/dist/typeschema/profile/processor.js +7 -5
- package/dist/typeschema/register.d.ts +1 -1
- package/dist/typeschema/register.js +11 -5
- package/dist/typeschema/types.d.ts +7 -14
- package/package.json +1 -1
package/dist/api/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* @packageDocumentation
|
|
8
8
|
*/
|
|
9
9
|
export { TypeSchemaCache, TypeSchemaGenerator, TypeSchemaParser, } from "@typeschema/index";
|
|
10
|
-
export type { Identifier as TypeSchemaIdentifier, PackageMeta as PackageInfo, TypeSchema,
|
|
10
|
+
export type { Field as TypeSchemaField, Identifier as TypeSchemaIdentifier, PackageMeta as PackageInfo, TypeSchema, } from "@typeschema/types";
|
|
11
11
|
export type { APIBuilderOptions, GenerationResult, ProgressCallback, } from "./builder";
|
|
12
12
|
export { APIBuilder, createAPI, createAPIFromConfig, generateTypesFromFiles, generateTypesFromPackage, } from "./builder";
|
|
13
13
|
export type { GeneratedFile } from "./generators/base/index";
|