UNPKG

@accounter/server

Version:
52 lines 2.09 kB
import { IngestOutcome } from '../contracts.js'; import { EmailIngestionIngestProvider } from '../providers/email-ingestion-ingest.provider.js'; const OUTCOME_MAP = { [IngestOutcome.INSERTED]: 'INSERTED', [IngestOutcome.DUPLICATE]: 'DUPLICATE', [IngestOutcome.QUARANTINED]: 'QUARANTINED', [IngestOutcome.REJECTED]: 'REJECTED', }; const ingestEmail = async (_parent, { input }, { injector }) => { const ingestProvider = injector.get(EmailIngestionIngestProvider); try { const result = await ingestProvider.performIngest({ grantJti: input.grantJti, idempotencyKey: input.idempotencyKey, tenantId: input.tenantId, messageId: input.messageId, rawMessageHash: input.rawMessageHash, correlationId: input.correlationId ?? undefined, extractedDocuments: input.extractedDocuments.map(doc => ({ hash: doc.hash, sizeBytes: doc.sizeBytes, mimeType: doc.mimeType, filename: doc.filename ?? undefined, content: doc.content ?? undefined, })), }, // Pass the operation injector so the provider can run OCR (getOcrData → // AnthropicProvider) without injecting an Injector into the singleton. injector); const outcome = OUTCOME_MAP[result.outcome]; return { __typename: 'IngestEmailSuccess', outcome, ingestId: 'ingestId' in result ? result.ingestId : null, existingIngestId: 'existingIngestId' in result ? result.existingIngestId : null, auditId: 'auditId' in result ? result.auditId : '', reasonCode: 'reasonCode' in result ? result.reasonCode : null, }; } catch { return { __typename: 'CommonError', message: 'Failed to process email ingest request', }; } }; export const emailIngestionIngestResolver = { Mutation: { ingestEmail, }, }; //# sourceMappingURL=email-ingestion-ingest.resolver.js.map