Merge pull request #311 from Hestia-Homes/feature/additional_hubspot_proeprties

Feature/additional hubspot proeprties
This commit is contained in:
Jun-te Kim 2026-06-08 16:12:18 +01:00 committed by GitHub
commit c6091af34c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 10948 additions and 4 deletions

View file

@ -14,8 +14,7 @@
// the mounted host ~/.config/gh.
"postCreateCommand": "gh repo clone Hestia-Homes/agentic-toolkit /tmp/agentic-toolkit -- --branch 0.0.5 --depth 1 && bash /tmp/agentic-toolkit/setup.sh && npm install",
"forwardPorts": [3000],
"appPort": ["3000:3000"],
"forwardPorts": ["frontend:3000", "pgadmin:80"],
"mounts": [
// Optional, just makes getting from Downloads (local env) easier

View file

@ -9,7 +9,10 @@ services:
USER_GID: ${GID:-1000}
command: sleep infinity
ports:
- "3000:3000"
# Host port left unspecified so Docker assigns a free one — lets multiple
# worktrees of this repo run at once without colliding. VS Code's
# forwardPorts (below) forwards container :3000 to your machine.
- "3000"
volumes:
- ..:/workspaces/assessment-model
- ~/.gitconfig:/home/vscode/.gitconfig
@ -29,7 +32,9 @@ services:
image: dpage/pgadmin4
hostname: pgadmin
ports:
- 5556:80
# Dynamic host port (see frontend above). VS Code auto-detects and
# forwards the listening container port when the container comes up.
- "80"
env_file:
- ../.db-env
restart: unless-stopped

View file

@ -0,0 +1,4 @@
ALTER TABLE "hubspot_deal_data" ADD COLUMN "date_booking_made" timestamp (6) with time zone;--> statement-breakpoint
ALTER TABLE "hubspot_deal_data" ADD COLUMN "last_contact_date" timestamp (6) with time zone;--> statement-breakpoint
ALTER TABLE "hubspot_deal_data" ADD COLUMN "last_outbound_call" timestamp (6) with time zone;--> statement-breakpoint
ALTER TABLE "hubspot_deal_data" ADD COLUMN "last_outbound_email" timestamp (6) with time zone;

File diff suppressed because it is too large Load diff

View file

@ -1597,6 +1597,13 @@
"when": 1780910657380,
"tag": "0228_deep_betty_ross",
"breakpoints": true
},
{
"idx": 229,
"version": "7",
"when": 1780929304935,
"tag": "0229_lively_kree",
"breakpoints": true
}
]
}

View file

@ -74,6 +74,11 @@ export const hubspotDealData = pgTable("hubspot_deal_data", {
domnaSurveyType: text("domna_survey_type"),
domnaSurveyDate: timestamp("domna_survey_date", { precision: 6, withTimezone: true }),
dateBookingMade: timestamp("date_booking_made", { precision: 6, withTimezone: true }),
lastContactDate: timestamp("last_contact_date", { precision: 6, withTimezone: true }),
lastOutboundCall: timestamp("last_outbound_call", { precision: 6, withTimezone: true }),
lastOutboundEmail: timestamp("last_outbound_email", { precision: 6, withTimezone: true }),
createdAt: timestamp("created_at", { precision: 6, withTimezone: true })
.defaultNow()
.notNull(),