Freeze Design Frontend - TypeScript API
    Preparing search index...

    Interface BulkActionResult

    Result of a bulk admin action (partial success: some updated, some failed).

    interface BulkActionResult {
        updated_count: number;
        updated: Record<string, unknown>[];
        error_count?: number;
        errors?: { id: number; order_number?: string | null; reason: string }[];
    }
    Index

    Properties

    updated_count: number
    updated: Record<string, unknown>[]
    error_count?: number
    errors?: { id: number; order_number?: string | null; reason: string }[]