@wix/auto_sdk_forms_interactive-form-sessions 1.0.27 → 1.0.28

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.
@@ -6211,6 +6211,15 @@ interface EventMetadata extends BaseEventMetadata {
6211
6211
  * 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.
6212
6212
  */
6213
6213
  entityEventSequence?: string | null;
6214
+ accountInfo?: AccountInfoMetadata;
6215
+ }
6216
+ interface AccountInfoMetadata {
6217
+ /** ID of the Wix account associated with the event */
6218
+ accountId: string;
6219
+ /** ID of the Wix site associated with the event. Only included when the event is tied to a specific site. */
6220
+ siteId?: string;
6221
+ /** ID of the parent Wix account. Only included when 'accountId' belongs to a child account. */
6222
+ parentAccountId?: string;
6214
6223
  }
6215
6224
  interface InteractiveFormSessionCreatedEnvelope {
6216
6225
  entity: InteractiveFormSession;