This commit is contained in:
Jan Prochazka
2022-01-29 14:22:01 +01:00
parent 9a486c47b0
commit 70e0dd47a6
2 changed files with 3 additions and 3 deletions

View File

@@ -245,7 +245,7 @@ module.exports = {
}, },
saveDictionaryDescription_meta: true, saveDictionaryDescription_meta: true,
async saveDictionaryDescription({ appFolder, pureName, schemaName, expresssion, columns, delimiter }) { async saveDictionaryDescription({ appFolder, pureName, schemaName, expression, columns, delimiter }) {
await this.saveConfigFile( await this.saveConfigFile(
appFolder, appFolder,
'dictionary-descriptions.config.json', 'dictionary-descriptions.config.json',
@@ -253,7 +253,7 @@ module.exports = {
{ {
schemaName, schemaName,
pureName, pureName,
expresssion, expression,
columns, columns,
delimiter, delimiter,
} }

View File

@@ -22,7 +22,7 @@ interface VirtualReferenceDefinition {
interface DictionaryDescriptionDefinition { interface DictionaryDescriptionDefinition {
pureName: string; pureName: string;
schemaName?: string; schemaName?: string;
expresssion: string; expression: string;
columns: string[]; columns: string[];
delimiter: string; delimiter: string;
} }