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