/** * WIRE CONTRACT for the BRP address lookup ("BFF-lite" — one screen-shaped call). * * In production this is GENERATED from the OpenAPI/TypeSpec spec and served by our * own backend, which talks to the BRP behind an adapter. The frontend never sees * the BRP's own wire format. See docs/reference/architecture/0001-bff-lite-decision-dtos.md. * * "Geen adres bekend" is a first-class outcome (`gevonden: false`), not an error — * the wizard falls back to manual entry (PRD §7). Slice 1 ships only the happy * path (gevonden: true). */ export interface BrpAddressDto { gevonden: boolean; adres?: { straat: string; postcode: string; woonplaats: string }; }