TypeAlias.ProductImportResult
type ProductImportResult = {
action: "error" | "created" | "updated" | "unchanged";
error?: {
externalId?: string;
field?: string;
lineNumber: number;
message: string;
};
externalId?: string;
productId?: string;
success: boolean;
};
Result of a single product import within a bulk operation.