import type { BackfillEntityStateV3 } from '../schemas/BackfillEntityStateV3'; /** * Aggregated backfill state for an account across all entity types. */ export interface BackfillStateDataV3 { /** * Account identifier the state belongs to. */ accountIdentifier: string; /** * Map of entity type to its current backfill state. */ entities: { [key: string]: BackfillEntityStateV3; }; }