All checks were successful
Deploy to Staging / Build Images (pull_request) Successful in 8m40s
Deploy to Staging / Deploy to Staging (pull_request) Successful in 52s
Deploy to Staging / Verify Staging (pull_request) Successful in 8s
Deploy to Staging / Notify Staging Ready (pull_request) Successful in 7s
Deploy to Staging / Notify Staging Failure (pull_request) Has been skipped
Backend: Add authenticated endpoints for pending association CRUD (GET/POST/DELETE /api/email-ingestion/pending). Service methods for resolving (creates fuel/maintenance record) and dismissing associations. Frontend: New email-ingestion feature with types, API client, hooks, PendingAssociationBanner (dashboard), PendingAssociationList, and ResolveAssociationDialog. Mobile-first responsive with 44px touch targets and full-screen dialogs on small screens. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
23 lines
929 B
TypeScript
23 lines
929 B
TypeScript
/**
|
|
* @ai-summary Email ingestion feature barrel export
|
|
* @ai-context Exports webhook routes, services, and types for Resend inbound email processing
|
|
*/
|
|
|
|
export { emailIngestionWebhookRoutes, emailIngestionRoutes } from './api/email-ingestion.routes';
|
|
export { EmailIngestionService } from './domain/email-ingestion.service';
|
|
export { EmailIngestionRepository } from './data/email-ingestion.repository';
|
|
export { ReceiptClassifier } from './domain/receipt-classifier';
|
|
export { ResendInboundClient } from './external/resend-inbound.client';
|
|
export type { ParsedEmailResult, ParsedEmailAttachment } from './external/resend-inbound.client';
|
|
export type {
|
|
ClassificationResult,
|
|
EmailIngestionQueueRecord,
|
|
EmailIngestionStatus,
|
|
EmailProcessingResult,
|
|
ExtractedReceiptData,
|
|
PendingVehicleAssociation,
|
|
ReceiptClassificationType,
|
|
ResendWebhookEvent,
|
|
ResendWebhookEventData,
|
|
} from './domain/email-ingestion.types';
|