export type PeriodTypeInquiry = 'weekly_by_sunday' | 'weekly_by_monday' | 'weekly_by_tuesday' | 'weekly_by_wednesday' | 'weekly_by_thursday' | 'weekly_by_friday' | 'weekly_by_saturday'; export type DayRuleType = 'nightly' | PeriodTypeInquiry; export type PeriodDurationInquiry = { endAt: string; id: string; minimumDuration: number; periodType: DayRuleType; startAt: string; };