We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 377a722 + 25a5342 commit 10932fbCopy full SHA for 10932fb
ui/src/components/ContentMapper/contentMapper.interface.ts
@@ -65,6 +65,7 @@ export interface FieldMapType {
65
_canSelect?: boolean;
66
advanced?: Advanced;
67
contentstackUid: string;
68
+ _invalid?: boolean;
69
}
70
71
export interface Advanced {
@@ -174,4 +175,21 @@ export interface MappingObj {
174
175
options: Mapping;
176
177
178
+export interface FieldHistoryObj {
179
+ [key: string]: ModifiedField[];
180
+}
181
+
182
+export interface FieldObj {
183
+ [key: string]: ModifiedField;
184
185
186
+export interface ModifiedField {
187
+ at: number;
188
+ checked: boolean;
189
+ id: string;
190
+ otherCmsType: string;
191
+ parentId: string;
192
+ uid: string;
193
194
195
0 commit comments