update scheduleDate props

This commit is contained in:
2024-11-25 15:02:56 +07:00
parent 0f7bb3367e
commit 6d509a4487
3 changed files with 3 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ export interface ScheduleDateInput {
dayOfWeek: number
slot: number
serviceId: string
participants: string[]
participantIds: string[]
orderId: string | null
}

View File

@@ -96,7 +96,7 @@ export class ScheduleService {
end: endTime.toISO() ?? '',
dayOfWeek: date.weekday,
slot: slot,
participants: [],
participantIds: [],
serviceId: schedule.managedServiceId,
orderId: schedule.orderId,
})