diff --git a/types/office-js-preview/index.d.ts b/types/office-js-preview/index.d.ts index 5c25c419d1..b522c09c3b 100644 --- a/types/office-js-preview/index.d.ts +++ b/types/office-js-preview/index.d.ts @@ -16405,7 +16405,7 @@ declare namespace Office { * * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read */ - recurrenceProperties: RecurrenceProperties; + recurrenceProperties?: RecurrenceProperties; /** * Gets or sets the properties of the recurring appointment series. * @@ -16417,7 +16417,7 @@ declare namespace Office { * * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read */ - recurrenceTimeZone: RecurrenceTimeZone; + recurrenceTimeZone?: RecurrenceTimeZone; /** * Gets or sets the type of the recurring appointment series. * @@ -16566,28 +16566,28 @@ declare namespace Office { /** * Represents the day of the month. */ - dayOfMonth: number; + dayOfMonth?: number; /** * Represents the day of the week or type of day, for example, weekend day vs weekday. */ - dayOfWeek: MailboxEnums.Days | string; + dayOfWeek?: MailboxEnums.Days | string; /** * Represents the set of days for this recurrence. Valid values are: 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', and 'Sun'. */ - days: MailboxEnums.Days[] | string[]; + days?: MailboxEnums.Days[] | string[]; /** * Represents the number of the week in the selected month e.g. 'first' for first week of the month. */ - weekNumber: MailboxEnums.WeekNumber | string; + weekNumber?: MailboxEnums.WeekNumber | string; /** * Represents the month. */ - month: MailboxEnums.Month | string; + month?: MailboxEnums.Month | string; /** * Represents your chosen first day of the week otherwise the default is the value in the current user's settings. * Valid values are: 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', and 'Sun'. */ - firstDayOfWeek: MailboxEnums.Days | string; + firstDayOfWeek?: MailboxEnums.Days | string; } /** * Represents the time zone of the recurrence. @@ -16609,7 +16609,7 @@ declare namespace Office { /** * Integer value representing the difference in minutes between the local time zone and UTC at the date that the meeting series began. */ - offset: number; + offset?: number; } /** * A file or item attachment. Used when displaying a reply form. diff --git a/types/office-js/index.d.ts b/types/office-js/index.d.ts index 6b48c99366..97cb5d6d39 100644 --- a/types/office-js/index.d.ts +++ b/types/office-js/index.d.ts @@ -15328,7 +15328,7 @@ declare namespace Office { * * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read */ - recurrenceProperties: RecurrenceProperties; + recurrenceProperties?: RecurrenceProperties; /** * Gets or sets the properties of the recurring appointment series. * @@ -15340,7 +15340,7 @@ declare namespace Office { * * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read */ - recurrenceTimeZone: RecurrenceTimeZone; + recurrenceTimeZone?: RecurrenceTimeZone; /** * Gets or sets the type of the recurring appointment series. * @@ -15489,28 +15489,28 @@ declare namespace Office { /** * Represents the day of the month. */ - dayOfMonth: number; + dayOfMonth?: number; /** * Represents the day of the week or type of day, for example, weekend day vs weekday. */ - dayOfWeek: MailboxEnums.Days | string; + dayOfWeek?: MailboxEnums.Days | string; /** * Represents the set of days for this recurrence. Valid values are: 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', and 'Sun'. */ - days: MailboxEnums.Days[] | string[]; + days?: MailboxEnums.Days[] | string[]; /** * Represents the number of the week in the selected month e.g. 'first' for first week of the month. */ - weekNumber: MailboxEnums.WeekNumber | string; + weekNumber?: MailboxEnums.WeekNumber | string; /** * Represents the month. */ - month: MailboxEnums.Month | string; + month?: MailboxEnums.Month | string; /** * Represents your chosen first day of the week otherwise the default is the value in the current user's settings. * Valid values are: 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', and 'Sun'. */ - firstDayOfWeek: MailboxEnums.Days | string; + firstDayOfWeek?: MailboxEnums.Days | string; } /** * Represents the time zone of the recurrence. @@ -15532,7 +15532,7 @@ declare namespace Office { /** * Integer value representing the difference in minutes between the local time zone and UTC at the date that the meeting series began. */ - offset: number; + offset?: number; } /** * A file or item attachment. Used when displaying a reply form.