Type Alias ImportTypeDiff

Field-by-field comparison between the type from the import file and the existing type in the tenant. Only present when status is CONFLICT. Each field shows the value from the file and the existing value so the user can make an informed OVERWRITE / SKIP / KEEP_BOTH decision.

type ImportTypeDiff = {
    activated?: DiffEntry;
    category?: DiffEntry;
    config?: ImportConfigDiff;
    description?: DiffEntry;
    useForValidation?: DiffEntry;
}
Index
activated?: DiffEntry

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

category?: DiffEntry

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

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.

description?: DiffEntry

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

useForValidation?: DiffEntry

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