Skip to content
HomePagesHomePages template kit

UnitRow

One property unit in the fixture/render-time view: its scalar facts plus its AI-generated `description`/`features` — baked into content by the floorplan section's per-unit fill decision, not aggregated from any canonical field — and its attached `floor_plans`.

One property unit in the fixture/render-time view: its scalar facts plus its AI-generated description/features — baked into content by the floorplan section’s per-unit fill decision, not aggregated from any canonical field — and its attached floor_plans.

Import from @homepages/template-kit.

export type UnitRow = {
unit_id: string;
unit_label: string | null;
beds: number | null;
baths: number | null;
sqft: number | null;
price: string | null;
description: string | null;
features: string[];
position: number;
floor_plans: FloorplanAssignment[];
};