Skip to content
Merged
18 changes: 18 additions & 0 deletions ui/src/components/ContentMapper/contentMapper.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ export interface FieldMapType {
_canSelect?: boolean;
advanced?: Advanced;
contentstackUid: string;
_invalid?: boolean;
}

export interface Advanced {
Expand Down Expand Up @@ -174,4 +175,21 @@ export interface MappingObj {
options: Mapping;
}

export interface FieldHistoryObj {
[key: string]: ModifiedField[];
}

export interface FieldObj {
[key: string]: ModifiedField;
}

export interface ModifiedField {
at: number;
checked: boolean;
id: string;
otherCmsType: string;
parentId: string;
uid: string;
}


Loading