phonepe #30

Merged
allentj merged 10 commits from phonepe into dev 2025-05-20 08:04:46 +00:00
2 changed files with 4 additions and 3 deletions

View File

@ -2,11 +2,12 @@ import { getInvoiceUrl } from './getInvoiceUrl';
import { InvoiceService } from './invoiceService'; import { InvoiceService } from './invoiceService';
import { processInvoice } from './processInvoice'; import { processInvoice } from './processInvoice';
import { sendInvoiceEmail } from './sendInvoiceEmail'; import { sendInvoiceEmail } from './sendInvoiceEmail';
import { directGenerateInvoice } from './directInvoice';
// Export all invoice-related functions
export { export {
getInvoiceUrl, getInvoiceUrl,
InvoiceService, InvoiceService,
processInvoice, processInvoice,
sendInvoiceEmail sendInvoiceEmail,
directGenerateInvoice,
}; };

View File

@ -7,7 +7,7 @@ import { sendEmailWithAttachmentUtil } from "../../../utils/emailService";
import * as pdfMake from 'pdfmake/build/pdfmake'; import * as pdfMake from 'pdfmake/build/pdfmake';
import * as pdfFonts from 'pdfmake/build/vfs_fonts'; import * as pdfFonts from 'pdfmake/build/vfs_fonts';
(pdfMake as any).vfs = pdfFonts.vfs; (pdfMake as any).vfs = (pdfFonts as any).pdfMake ? (pdfFonts as any).pdfMake.vfs : pdfFonts.vfs;
const admin = getAdmin(); const admin = getAdmin();
const logger = getLogger(); const logger = getLogger();