Skip to main content

TypeAlias.ImportError

type ImportError = z.infer<typeof importErrorSchema>;

Detailed error record for a failed product import.

Provides context for debugging import failures.

Example

const error: ImportError = {
lineNumber: 42,
externalId: "SKU-99999",
field: "name",
message: "Product name is required"
};