diff --git a/lib/jdl/core/types/json-config.d.ts b/lib/jdl/core/types/json-config.d.ts index ac07ec80ef0..f7ce6767ed8 100644 --- a/lib/jdl/core/types/json-config.d.ts +++ b/lib/jdl/core/types/json-config.d.ts @@ -14,9 +14,6 @@ type JSONBlueprint = { version?: string; } & Record; -type JSONMicrofrontend = { - baseName: string; -}; type JSONGeneratorJhipsterContentDeployment = { appsFolders?: string[]; clusteredDbApps?: string[]; @@ -27,7 +24,6 @@ type AbstractJSONGeneratorJhipsterContent = ApplicationConfiguration & JSONGener type JSONGeneratorJhipsterContent = { promptValues?: Partial; blueprints?: JSONBlueprint[] | null; - microfrontends?: JSONMicrofrontend[] | null; } & AbstractJSONGeneratorJhipsterContent; type PostProcessedJSONGeneratorJhipsterContent = { diff --git a/lib/types/application/yo-rc.d.ts b/lib/types/application/yo-rc.d.ts index 08a3536d9b1..d10641a8f16 100644 --- a/lib/types/application/yo-rc.d.ts +++ b/lib/types/application/yo-rc.d.ts @@ -11,6 +11,7 @@ export type ApplicationConfiguration = Simplify< lastLiquibaseTimestamp?: number; blueprints?: { name: string }[]; testFrameworks?: string[]; + microfrontends?: { baseName: string }[]; } & ExportStoragePropertiesFromCommand & ExportStoragePropertiesFromCommand & ExportStoragePropertiesFromCommand &