@wix/auto_sdk_members_members-about 1.0.45 → 1.0.46

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.
@@ -2223,6 +2223,15 @@ interface EventMetadata extends BaseEventMetadata {
2223
2223
  * 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.
2224
2224
  */
2225
2225
  entityEventSequence?: string | null;
2226
+ accountInfo?: AccountInfoMetadata;
2227
+ }
2228
+ interface AccountInfoMetadata {
2229
+ /** ID of the Wix account associated with the event */
2230
+ accountId: string;
2231
+ /** ID of the Wix site associated with the event. Only included when the event is tied to a specific site. */
2232
+ siteId?: string;
2233
+ /** ID of the parent Wix account. Only included when 'accountId' belongs to a child account. */
2234
+ parentAccountId?: string;
2226
2235
  }
2227
2236
  interface MemberAboutCreatedEnvelope {
2228
2237
  entity: MemberAbout;