@wix/auto_sdk_automations_automations-v-2 1.0.91 → 1.0.92

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.
@@ -884,6 +884,23 @@ declare enum WebhookIdentityType {
884
884
  }
885
885
  /** @enumType */
886
886
  type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
887
+ interface AccountDetails {
888
+ /**
889
+ * ID of the account.
890
+ * @format GUID
891
+ */
892
+ accountId?: string | null;
893
+ /**
894
+ * ID of the parent account.
895
+ * @format GUID
896
+ */
897
+ parentAccountId?: string | null;
898
+ /**
899
+ * ID of the site, if applicable.
900
+ * @format GUID
901
+ */
902
+ siteId?: string | null;
903
+ }
887
904
  interface CreateAutomationRequest {
888
905
  /** Automation to create. */
889
906
  automation: Automation;
@@ -2418,23 +2435,6 @@ interface MergeOverridePreinstalledWithRuntimeVersionResponse {
2418
2435
  /** The merged automation after applying the latest runtime version of the preinstalled automation. */
2419
2436
  automation?: Automation;
2420
2437
  }
2421
- interface AccountDetails {
2422
- /**
2423
- * ID of the account.
2424
- * @format GUID
2425
- */
2426
- accountId?: string | null;
2427
- /**
2428
- * ID of the parent account.
2429
- * @format GUID
2430
- */
2431
- parentAccountId?: string | null;
2432
- /**
2433
- * ID of the site, if applicable.
2434
- * @format GUID
2435
- */
2436
- siteId?: string | null;
2437
- }
2438
2438
  interface GetAutomationRevisionRequest {
2439
2439
  /**
2440
2440
  * Automation ID.