Type Alias ImportConfigDiff

Type-specific config differences. Only the fields relevant to the type's category are present (REGEX → validationContent/validationPattern, DICTIONARY → validationCriteria/values, COMPOUND → children), and only when they differ.

type ImportConfigDiff = {
    children?: DiffEntry;
    validationContent?: DiffEntry;
    validationCriteria?: DiffEntry;
    validationPattern?: DiffEntry;
    values?: DiffEntry;
}
Index
children?: DiffEntry

A single field difference between the file value and the existing type.

validationContent?: DiffEntry

A single field difference between the file value and the existing type.

validationCriteria?: DiffEntry

A single field difference between the file value and the existing type.

validationPattern?: DiffEntry

A single field difference between the file value and the existing type.

values?: DiffEntry

A single field difference between the file value and the existing type.