export type ArrayRowToInsert = { arrays: { [tableName: string]: ArrayRowToInsert[]; }; arraysToPush: { [tableName: string]: ArrayRowToInsert[]; }; locales: { [locale: string]: Record; }; row: Record; }; export type BlockRowToInsert = { arrays: { [tableName: string]: ArrayRowToInsert[]; }; arraysToPush: { [tableName: string]: ArrayRowToInsert[]; }; locales: { [locale: string]: Record; }; row: Record; }; export type RelationshipToDelete = { itemToRemove?: any; locale?: string; path: string; relationTo?: string; }; export type RelationshipToAppend = { locale?: string; path: string; relationTo?: string; value: any; }; export type TextToDelete = { locale?: string; path: string; }; export type NumberToDelete = { locale?: string; path: string; }; export type RowToInsert = { arrays: { [tableName: string]: ArrayRowToInsert[]; }; arraysToPush: { [tableName: string]: ArrayRowToInsert[]; }; blocks: { [tableName: string]: BlockRowToInsert[]; }; blocksToDelete: Set; locales: { [locale: string]: Record; }; numbers: Record[]; numbersToDelete: NumberToDelete[]; relationships: Record[]; relationshipsToAppend: RelationshipToAppend[]; relationshipsToDelete: RelationshipToDelete[]; row: Record; selects: { [tableName: string]: Record[]; }; texts: Record[]; textsToDelete: TextToDelete[]; }; //# sourceMappingURL=types.d.ts.map