Variable ScannerMigrationStateSchemaConst

ScannerMigrationStateSchema: ZodObject<{
    completedAt: ZodOptional<ZodString>;
    cursor: ZodString;
    error: ZodOptional<ZodString>;
    startedAt: ZodString;
    status: ZodEnum<["pending", "running", "completed", "failed"]>;
    totalIndexed: ZodNumber;
}, "strip", ZodTypeAny, {
    completedAt?: string;
    cursor: string;
    error?: string;
    startedAt: string;
    status:
        | "pending"
        | "running"
        | "completed"
        | "failed";
    totalIndexed: number;
}, {
    completedAt?: string;
    cursor: string;
    error?: string;
    startedAt: string;
    status:
        | "pending"
        | "running"
        | "completed"
        | "failed";
    totalIndexed: number;
}> = ...

Backfill progress for scanner indexes.