Merge branch 'main' of https://github.com/Hestia-Homes/assessment-model into feature/installer-interaction

This commit is contained in:
Khalim Conn-Kowlessar 2026-04-21 09:02:14 +00:00
commit 3fc53cd1fa
6 changed files with 13949 additions and 0 deletions

View file

@ -0,0 +1,5 @@
ALTER TABLE "hubspot_deal_data" ADD COLUMN "batch" text;--> statement-breakpoint
ALTER TABLE "hubspot_deal_data" ADD COLUMN "block_reference" text;--> statement-breakpoint
ALTER TABLE "hubspot_deal_data" ADD COLUMN "epc_prn" text;--> statement-breakpoint
ALTER TABLE "hubspot_deal_data" ADD COLUMN "potential_post_sap_score_dropdown" text;--> statement-breakpoint
ALTER TABLE "property_removal_requests" ADD COLUMN "original_batch" text;

View file

@ -0,0 +1,4 @@
ALTER TABLE "hubspot_deal_data" ADD COLUMN "ei_score" text;--> statement-breakpoint
ALTER TABLE "hubspot_deal_data" ADD COLUMN "ei_score__potential_" text;--> statement-breakpoint
ALTER TABLE "hubspot_deal_data" ADD COLUMN "epc_sap_score" text;--> statement-breakpoint
ALTER TABLE "hubspot_deal_data" ADD COLUMN "epc_sap_score__potential_" text;

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1268,6 +1268,20 @@
"when": 1776683523665,
"tag": "0180_ambitious_jane_foster",
"breakpoints": true
},
{
"idx": 181,
"version": "7",
"when": 1776697748194,
"tag": "0181_concerned_electro",
"breakpoints": true
},
{
"idx": 182,
"version": "7",
"when": 1776699608018,
"tag": "0182_messy_calypso",
"breakpoints": true
}
]
}

View file

@ -46,6 +46,14 @@ export const hubspotDealData = pgTable("hubspot_deal_data", {
coordination_comments: text("coordination_comments"),
surveyor: text("surveyor"),
damnpMouldAndRepairComments: text("damp_mould_and_repairs_comments"),
batch: text("batch"),
blockReference: text("block_reference"),
epcPrn: text("epc_prn"),
potentialPostSapScoreDropdown: text("potential_post_sap_score_dropdown"),
eiScore: text("ei_score"),
eiScorePotential: text("ei_score__potential_"),
epcSapScore: text("epc_sap_score"),
epcSapScorePotential: text("epc_sap_score__potential_"),
confirmedSurveyDate: timestamp("confirmed_survey_date", { precision: 6, withTimezone: true }),
confirmedSurveyTime: text("confirmed_survey_time"),
surveyedDate: timestamp("surveyed_date", { precision: 6, withTimezone: true }),