@wix/auto_sdk_ecom_cart 1.0.123 → 1.0.124

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.
@@ -3052,6 +3052,15 @@ interface EventMetadata extends BaseEventMetadata {
3052
3052
  * 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.
3053
3053
  */
3054
3054
  entityEventSequence?: string | null;
3055
+ accountInfo?: AccountInfoMetadata;
3056
+ }
3057
+ interface AccountInfoMetadata {
3058
+ /** ID of the Wix account associated with the event */
3059
+ accountId: string;
3060
+ /** ID of the Wix site associated with the event. Only included when the event is tied to a specific site. */
3061
+ siteId?: string;
3062
+ /** ID of the parent Wix account. Only included when 'accountId' belongs to a child account. */
3063
+ parentAccountId?: string;
3055
3064
  }
3056
3065
  interface CartDeletedEnvelope {
3057
3066
  metadata: EventMetadata;