@wix/auto_sdk_calendar_events 1.0.56 → 1.0.57

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1916,6 +1916,15 @@ interface EventMetadata extends BaseEventMetadata {
1916
1916
  * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
1917
1917
  */
1918
1918
  entityEventSequence?: string | null;
1919
+ accountInfo?: AccountInfoMetadata;
1920
+ }
1921
+ interface AccountInfoMetadata {
1922
+ /** ID of the Wix account associated with the event */
1923
+ accountId: string;
1924
+ /** ID of the Wix site associated with the event. Only included when the event is tied to a specific site. */
1925
+ siteId?: string;
1926
+ /** ID of the parent Wix account. Only included when 'accountId' belongs to a child account. */
1927
+ parentAccountId?: string;
1919
1928
  }
1920
1929
  interface EventCancelledEnvelope {
1921
1930
  data: EventCancelled;