import { BreakfastPackageEnum } from "@/types/enums/breakfast" export function hasBreakfastPackage( packages: { code: string }[] ) { return packages.some( (p) => p.code === BreakfastPackageEnum.REGULAR_BREAKFAST || p.code === BreakfastPackageEnum.FREE_MEMBER_BREAKFAST || p.code === BreakfastPackageEnum.SPECIAL_PACKAGE_BREAKFAST ) }