@wix/auto_sdk_blog_posts 1.0.109 → 1.0.110

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.
@@ -3659,6 +3659,15 @@ interface EventMetadata extends BaseEventMetadata {
3659
3659
  * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
3660
3660
  */
3661
3661
  entityEventSequence?: string | null;
3662
+ accountInfo?: AccountInfoMetadata;
3663
+ }
3664
+ interface AccountInfoMetadata {
3665
+ /** ID of the Wix account associated with the event */
3666
+ accountId: string;
3667
+ /** ID of the Wix site associated with the event. Only included when the event is tied to a specific site. */
3668
+ siteId?: string;
3669
+ /** ID of the parent Wix account. Only included when 'accountId' belongs to a child account. */
3670
+ parentAccountId?: string;
3662
3671
  }
3663
3672
  interface PostLikedEnvelope {
3664
3673
  data: PostLiked;