import type { OperatedByIdentifier, StatusIdentifier } from './index.ts'; export type IncludedServiceHouse = { extraOptions: Record | null; houseId: string; id: string; includedServiceId: string; operatedBy: OperatedByIdentifier; status: StatusIdentifier; }; export type IncludedServiceHousePayload = { included_service_house: { extra_options?: Record; operated_by?: OperatedByIdentifier | null; status?: StatusIdentifier; }; };