diff --git a/src/resource_clients/schedule.ts b/src/resource_clients/schedule.ts index 52ab6aca..7218225a 100644 --- a/src/resource_clients/schedule.ts +++ b/src/resource_clients/schedule.ts @@ -81,6 +81,9 @@ export interface Schedule { nextRunAt: string; lastRunAt: string; actions: ScheduleAction[]; + notifications: { + email: boolean; + }; } export type ScheduleCreateOrUpdateData = Partial< @@ -93,6 +96,7 @@ export type ScheduleCreateOrUpdateData = Partial< | 'isEnabled' | 'isExclusive' | 'description' + | 'notifications' > & { actions: DistributiveOptional[] }