Type Alias ConflictResolution

Resolution decision for a single conflicting semantic type.

type ConflictResolution = {
    label: string;
    strategy: "OVERWRITE" | "SKIP" | "KEEP_BOTH";
}
Index
label: string

Label of the conflicting semantic type.

strategy: "OVERWRITE" | "SKIP" | "KEEP_BOTH"

OVERWRITE: replace the existing type with the version from the file. SKIP: keep the existing type unchanged, do not import. KEEP_BOTH: keep the existing type and create the version from the file with a deduplicated label.