Files
pig/packages/core/src/hubspot.ts
T
karti 74e37f3e76 Lay the HubSpot and customer-lifecycle foundation
Work in progress from the Codex session, committed so nothing sits undeployed.
Verified before committing: typecheck clean across all packages, 139 unit tests
and the e2e suite green, migrations apply to an empty Postgres.

Adds the HubSpot integration boundary (OAuth, client, contracts, webhook
signature verification, sync), a growth route, customer-lifecycle service,
Piggy lifecycle tools, a Growth page, and shared lifecycle/hubspot types.

Two things are deliberately incomplete and should not be mistaken for finished:

`packages/db/src/schema/hubspot.ts` is NOT exported from the schema index, so it
is inert — no tables, no migration. That is the correct order (the shape can
settle before it becomes a migration), but it does mean the HubSpot routes have
no persistence behind them yet.

`pnpm-workspace.yaml` and `pnpm-lock.yaml` are left uncommitted on purpose. The
workspace file contains a literal unanswered placeholder — "esbuild: set this
to true or false" — and this repository installs with npm, which is also what
CI runs. Committing a second package manager's lockfile would make the install
ambiguous. If the move to pnpm is intended it should be a deliberate change
that updates CI and the Dockerfile together.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-13 03:50:18 -07:00

43 lines
1.4 KiB
TypeScript

export const HUBSPOT_OBJECT_TYPES = ['companies', 'contacts', 'deals'] as const;
export type HubSpotObjectType = (typeof HUBSPOT_OBJECT_TYPES)[number];
export const HUBSPOT_REQUIRED_SCOPES = [
'crm.objects.companies.read',
'crm.objects.contacts.read',
'crm.objects.deals.read',
] as const;
export type HubSpotRequiredScope = (typeof HUBSPOT_REQUIRED_SCOPES)[number];
export const HUBSPOT_CONNECTION_STATUSES = [
'active',
'reauthorization_required',
'disconnected',
'error',
] as const;
export type HubSpotConnectionStatus = (typeof HUBSPOT_CONNECTION_STATUSES)[number];
export const HUBSPOT_SYNC_PHASES = ['initial', 'reconcile'] as const;
export type HubSpotSyncPhase = (typeof HUBSPOT_SYNC_PHASES)[number];
export const HUBSPOT_EVENT_STATUSES = ['pending', 'processing', 'processed', 'failed'] as const;
export type HubSpotEventStatus = (typeof HUBSPOT_EVENT_STATUSES)[number];
export const HUBSPOT_JOB_KINDS = ['full_sync', 'fetch_record', 'reconcile'] as const;
export type HubSpotJobKind = (typeof HUBSPOT_JOB_KINDS)[number];
export const HUBSPOT_JOB_STATUSES = ['pending', 'processing', 'completed', 'failed'] as const;
export type HubSpotJobStatus = (typeof HUBSPOT_JOB_STATUSES)[number];
export interface HubSpotRecord {
id: string;
properties: Record<string, string | null>;
createdAt: string;
updatedAt: string;
archived: boolean;
}
export interface HubSpotRecordPage {
results: HubSpotRecord[];
nextAfter: string | null;
}