chore: UX design audit cleanup and receipt flow improvements #186
@@ -15,12 +15,13 @@ const SUPPORTED_TYPES = new Set([
|
|||||||
'application/pdf',
|
'application/pdf',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
/** Image-only MIME types for receipt extraction (no PDF) */
|
/** Image-only MIME types for receipt extraction */
|
||||||
const SUPPORTED_IMAGE_TYPES = new Set([
|
const SUPPORTED_IMAGE_TYPES = new Set([
|
||||||
'image/jpeg',
|
'image/jpeg',
|
||||||
'image/png',
|
'image/png',
|
||||||
'image/heic',
|
'image/heic',
|
||||||
'image/heif',
|
'image/heif',
|
||||||
|
'application/pdf',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
export class OcrController {
|
export class OcrController {
|
||||||
@@ -268,7 +269,7 @@ export class OcrController {
|
|||||||
});
|
});
|
||||||
return reply.code(415).send({
|
return reply.code(415).send({
|
||||||
error: 'Unsupported Media Type',
|
error: 'Unsupported Media Type',
|
||||||
message: `Unsupported file type: ${contentType}. Supported: JPEG, PNG, HEIC`,
|
message: `Unsupported file type: ${contentType}. Supported: JPEG, PNG, HEIC, PDF`,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -380,7 +381,7 @@ export class OcrController {
|
|||||||
});
|
});
|
||||||
return reply.code(415).send({
|
return reply.code(415).send({
|
||||||
error: 'Unsupported Media Type',
|
error: 'Unsupported Media Type',
|
||||||
message: `Unsupported file type: ${contentType}. Supported: JPEG, PNG, HEIC`,
|
message: `Unsupported file type: ${contentType}. Supported: JPEG, PNG, HEIC, PDF`,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -31,12 +31,13 @@ const SUPPORTED_TYPES = new Set([
|
|||||||
'application/pdf',
|
'application/pdf',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
/** Image-only MIME types for receipt extraction (no PDF) */
|
/** MIME types for receipt extraction */
|
||||||
const SUPPORTED_IMAGE_TYPES = new Set([
|
const SUPPORTED_IMAGE_TYPES = new Set([
|
||||||
'image/jpeg',
|
'image/jpeg',
|
||||||
'image/png',
|
'image/png',
|
||||||
'image/heic',
|
'image/heic',
|
||||||
'image/heif',
|
'image/heif',
|
||||||
|
'application/pdf',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user