import type { OperatedByIdentifier, StatusIdentifier } from '@entities' 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 } }