chore: update generated types for all test suites (#9577)

This commit is contained in:
Alessio Gravili
2024-11-27 13:36:37 -07:00
committed by GitHub
parent 3c35d81fe5
commit c7138b9aab
48 changed files with 323 additions and 139 deletions

View File

@@ -153,21 +153,6 @@ export interface BlocksField {
blockType: 'blockInsideBlock';
}[]
| null;
nonLocalizedBlocksField?:
| {
array?:
| {
link?: {
label?: string | null;
};
id?: string | null;
}[]
| null;
id?: string | null;
blockName?: string | null;
blockType: 'blockInsideBlock';
}[]
| null;
updatedAt: string;
createdAt: string;
}
@@ -786,26 +771,6 @@ export interface BlocksFieldsSelect<T extends boolean = true> {
blockName?: T;
};
};
nonLocalizedBlocksField?:
| T
| {
blockInsideBlock?:
| T
| {
array?:
| T
| {
link?:
| T
| {
label?: T;
};
id?: T;
};
id?: T;
blockName?: T;
};
};
updatedAt?: T;
createdAt?: T;
}