Refactor serverless and initial hasura migrations.

This commit is contained in:
Patrick Fic
2026-01-19 15:19:21 -08:00
parent bcdc305251
commit 8954147976
13 changed files with 95 additions and 1062 deletions

View File

@@ -42,12 +42,7 @@ async function ScrubEstimate({
}: {
job: RawJobDataObject;
}): Promise<string | undefined> {
//These are hard coded as they are not secure values and checking happens based on other values.
//No secret or private information is exposed.
//Scrub Estimate Transformer. Original schema kept to keep data in line with ImEX standards.
const transformedJob = await TransformJobForEstimateScrubber(job);
const transformedJob = await TransformJobForEstimateScrubber(job); //Job should be transformed server side.
const currentChannel = autoUpdater.channel;
let estimateScrubberUrl: string;