Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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