chore: further refinements

This commit is contained in:
James
2022-09-11 20:57:30 -07:00
parent ad4f7a5fff
commit 21eb19edd1
10 changed files with 100 additions and 40 deletions

View File

@@ -72,6 +72,13 @@ export interface BlockField {
blockName?: string;
blockType: 'subBlocks';
}
| {
textInCollapsible?: string;
textInRow?: string;
id?: string;
blockName?: string;
blockType: 'tabs';
}
)[];
localizedBlocks: (
| {
@@ -108,6 +115,13 @@ export interface BlockField {
blockName?: string;
blockType: 'subBlocks';
}
| {
textInCollapsible?: string;
textInRow?: string;
id?: string;
blockName?: string;
blockType: 'tabs';
}
)[];
createdAt: string;
updatedAt: string;
@@ -273,12 +287,25 @@ export interface TabsField {
blockName?: string;
blockType: 'subBlocks';
}
| {
textInCollapsible?: string;
textInRow?: string;
id?: string;
blockName?: string;
blockType: 'tabs';
}
)[];
group: {
number: number;
};
textInRow: string;
numberInRow: number;
text?: string;
defaultValue?: string;
beforeValidate?: boolean;
beforeChange?: boolean;
afterChange?: boolean;
afterRead?: boolean;
textarea?: string;
anotherText: string;
createdAt: string;
@@ -325,6 +352,8 @@ export interface Upload {
filename?: string;
mimeType?: string;
filesize?: number;
width?: number;
height?: number;
createdAt: string;
updatedAt: string;
}