@wix/auto_sdk_pricing-plans_orders 1.0.93 → 1.0.95

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.
@@ -1840,6 +1840,15 @@ interface EventMetadata extends BaseEventMetadata {
1840
1840
  * 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.
1841
1841
  */
1842
1842
  entityEventSequence?: string | null;
1843
+ accountInfo?: AccountInfoMetadata;
1844
+ }
1845
+ interface AccountInfoMetadata {
1846
+ /** ID of the Wix account associated with the event */
1847
+ accountId: string;
1848
+ /** ID of the Wix site associated with the event. Only included when the event is tied to a specific site. */
1849
+ siteId?: string;
1850
+ /** ID of the parent Wix account. Only included when 'accountId' belongs to a child account. */
1851
+ parentAccountId?: string;
1843
1852
  }
1844
1853
  interface OrderAutoRenewCanceledEnvelope {
1845
1854
  data: OrderAutoRenewCanceled;