@wix/auto_sdk_calendar_events 1.0.53 → 1.0.54

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.
@@ -841,6 +841,23 @@ declare enum WebhookIdentityType {
841
841
  }
842
842
  /** @enumType */
843
843
  type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
844
+ interface AccountDetails {
845
+ /**
846
+ * ID of the account.
847
+ * @format GUID
848
+ */
849
+ accountId?: string | null;
850
+ /**
851
+ * ID of the parent account.
852
+ * @format GUID
853
+ */
854
+ parentAccountId?: string | null;
855
+ /**
856
+ * ID of the site, if applicable.
857
+ * @format GUID
858
+ */
859
+ siteId?: string | null;
860
+ }
844
861
  interface ListEventsByContactIdRequest {
845
862
  /**
846
863
  * ID of the [contact](https://dev.wix.com/docs/rest/crm/members-contacts/contacts/contacts/contact-v4/contact-object)
@@ -1851,23 +1868,6 @@ interface BulkCancelEventResponse {
1851
1868
  /** Total successes and failures. */
1852
1869
  bulkActionMetadata?: BulkActionMetadata;
1853
1870
  }
1854
- interface AccountDetails {
1855
- /**
1856
- * ID of the account.
1857
- * @format GUID
1858
- */
1859
- accountId?: string | null;
1860
- /**
1861
- * ID of the parent account.
1862
- * @format GUID
1863
- */
1864
- parentAccountId?: string | null;
1865
- /**
1866
- * ID of the site, if applicable.
1867
- * @format GUID
1868
- */
1869
- siteId?: string | null;
1870
- }
1871
1871
  /** @docsIgnore */
1872
1872
  type CancelEventApplicationErrors = {
1873
1873
  code?: 'EVENT_ALREADY_CANCELLED';