TypeAlias.ProductImportJobListItem
type ProductImportJobListItem = {
createdAt: string;
createdCount: number;
errorCount: number;
fileName: string;
jobId: string;
status: "PENDING" | "PROCESSING" | "COMPLETED" | "FAILED";
successCount: number;
totalRows: number;
unchangedCount: number;
updatedCount: number;
};
Summary item for listing bulk import jobs.
Flat representation of a BullMQ import job used by the Operations page.