@wix/auto_sdk_automations_automations-v-2 1.0.52 → 1.0.53

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.
@@ -98,6 +98,18 @@ interface ActionSettings {
98
98
  * @format GUID
99
99
  */
100
100
  readonlyActionIds?: string[];
101
+ /**
102
+ * Whether to disable the ability to add a delay to the automation.
103
+ *
104
+ * Default: `false`.
105
+ */
106
+ disableDelayAddition?: boolean;
107
+ /**
108
+ * Whether to disable the ability to add a condition to the automation.
109
+ *
110
+ * Default: `false`.
111
+ */
112
+ disableConditionAddition?: boolean;
101
113
  }
102
114
  declare enum Domain {
103
115
  /** User domain (default). */
@@ -109,6 +121,8 @@ declare enum Domain {
109
121
  }
110
122
  /** @enumType */
111
123
  type DomainWithLiterals = Domain | 'USER' | 'WIX' | 'WIX_ACCOUNT';
124
+ interface TriggerSettings {
125
+ }
112
126
  interface Enrichment {
113
127
  /**
114
128
  * Enrichment input mappings.
@@ -859,8 +873,6 @@ declare enum WebhookIdentityType {
859
873
  }
860
874
  /** @enumType */
861
875
  type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
862
- interface TriggerSettings {
863
- }
864
876
  interface CreateAutomationRequest {
865
877
  /** Automation to create. */
866
878
  automation: Automation;