dictionary descriptions saved to app

This commit is contained in:
Jan Prochazka
2022-01-29 14:15:39 +01:00
parent ae861ef1ae
commit 9a486c47b0
13 changed files with 180 additions and 100 deletions

View File

@@ -19,10 +19,10 @@ interface VirtualReferenceDefinition {
}[];
}
interface ColumnDescriptionDefinition {
interface DictionaryDescriptionDefinition {
pureName: string;
schemaName?: string;
expresssion?: string;
expresssion: string;
columns: string[];
delimiter: string;
}
@@ -33,5 +33,5 @@ export interface ApplicationDefinition {
queries: ApplicationQuery[];
commands: ApplicationCommand[];
virtualReferences: VirtualReferenceDefinition[];
columnDescriptions: ColumnDescriptionDefinition[];
dictionaryDescriptions: DictionaryDescriptionDefinition[];
}