feat(claim-pre-auth) - fixed route issue
This commit is contained in:
@@ -13,6 +13,7 @@ import {
|
||||
InputServiceLine,
|
||||
updateClaimSchema,
|
||||
} from "@repo/db/types";
|
||||
import { forwardToSeleniumClaimPreAuthAgent } from "../services/seleniumInsuranceClaimPreAuthClient";
|
||||
|
||||
const router = Router();
|
||||
|
||||
@@ -207,7 +208,7 @@ router.post(
|
||||
massdhpPassword: credentials.password,
|
||||
};
|
||||
|
||||
const result = await forwardToSeleniumClaimAgent(enrichedData, [
|
||||
const result = await forwardToSeleniumClaimPreAuthAgent(enrichedData, [
|
||||
...pdfs,
|
||||
...images,
|
||||
]);
|
||||
|
||||
@@ -12,7 +12,7 @@ export interface SeleniumPayload {
|
||||
}[];
|
||||
}
|
||||
|
||||
export async function forwardToSeleniumClaimAgent(
|
||||
export async function forwardToSeleniumClaimPreAuthAgent(
|
||||
claimData: any,
|
||||
files: Express.Multer.File[]
|
||||
): Promise<any> {
|
||||
|
||||
Reference in New Issue
Block a user