@wix/auto_sdk_automations_automations-v-2 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.
@@ -450,12 +450,12 @@ interface Action extends ActionInfoOneOf {
450
450
  */
451
451
  namespace?: string | null;
452
452
  /**
453
- * skip_expression: evaluates to a boolean to decide if the action should be skipped
453
+ * skip_action_expression: evaluates to a boolean to decide if the action should be skipped
454
454
  * For ConditionAction: if skipped, true_post_action_ids execute; false_post_action_ids are skipped
455
- * SplitAction and OutputAction do not support skip_expression
455
+ * SplitAction and OutputAction do not support skip_action_expression
456
456
  * @maxLength 1000
457
457
  */
458
- skipExpression?: string | null;
458
+ skipActionExpression?: string | null;
459
459
  }
460
460
  /** @oneof */
461
461
  interface ActionInfoOneOf {
@@ -203,14 +203,14 @@ declare const getAutomationRevision: MaybeContext<BuildRESTFunction<typeof getAu
203
203
  /**
204
204
  * Triggered when a new automation is created.
205
205
  */
206
- declare const onAutomationCreated: BuildEventDefinition<typeof onAutomationCreated$1>;
206
+ declare const onAutomationCreated: BuildEventDefinition<typeof onAutomationCreated$1> & typeof onAutomationCreated$1;
207
207
  /**
208
208
  * Triggered when an automation is deleted.
209
209
  */
210
- declare const onAutomationDeleted: BuildEventDefinition<typeof onAutomationDeleted$1>;
210
+ declare const onAutomationDeleted: BuildEventDefinition<typeof onAutomationDeleted$1> & typeof onAutomationDeleted$1;
211
211
  /**
212
212
  * Triggered when an automation is updated.
213
213
  */
214
- declare const onAutomationUpdated: BuildEventDefinition<typeof onAutomationUpdated$1>;
214
+ declare const onAutomationUpdated: BuildEventDefinition<typeof onAutomationUpdated$1> & typeof onAutomationUpdated$1;
215
215
 
216
216
  export { Automation, AutomationCreatedEnvelope, AutomationDeletedEnvelope, AutomationUpdatedEnvelope, AutomationsQueryBuilder, BulkCountAutomationsWithDraftsOptions, BulkCountAutomationsWithDraftsResponse, BulkDeleteAutomationsResponse, CopyAutomationOptions, CopyAutomationResponse, CreateDraftAutomationOptions, CreateDraftAutomationResponse, GeneratePreinstalledAutomationOptions, GeneratePreinstalledAutomationResponse, GetAggregatedUsageInfoOptions, GetAggregatedUsageInfoResponse, GetAutomationRevisionOptions, GetAutomationRevisionResponse, GetOrCreateDraftAutomationResponse, PublishDraftAutomationResponse, QueryAutomationsWithDraftsOptions, QueryAutomationsWithDraftsResponse, UpdateAutomation, UpdateDraftAutomation, UpdateDraftAutomationResponse, ValidateAutomationByIdOptions, ValidateAutomationByIdResponse, ValidateAutomationOptions, ValidateAutomationResponse, bulkCountAutomationsWithDrafts, bulkDeleteAutomations, copyAutomation, createAutomation, createDraftAutomation, deleteAutomation, deleteDraftAutomation, generatePreinstalledAutomation, getAggregatedUsageInfo, getAutomation, getAutomationRevision, getOrCreateDraftAutomation, onAutomationCreated, onAutomationDeleted, onAutomationUpdated, publishDraftAutomation, queryAutomations, queryAutomationsWithDrafts, updateAutomation, updateDraftAutomation, validateAutomation, validateAutomationById };
@@ -1573,9 +1573,15 @@ var publishDraftAutomation4 = /* @__PURE__ */ createRESTModule(publishDraftAutom
1573
1573
  var validateAutomation4 = /* @__PURE__ */ createRESTModule(validateAutomation3);
1574
1574
  var validateAutomationById4 = /* @__PURE__ */ createRESTModule(validateAutomationById3);
1575
1575
  var getAutomationRevision4 = /* @__PURE__ */ createRESTModule(getAutomationRevision3);
1576
- var onAutomationCreated2 = createEventModule(onAutomationCreated);
1577
- var onAutomationDeleted2 = createEventModule(onAutomationDeleted);
1578
- var onAutomationUpdated2 = createEventModule(onAutomationUpdated);
1576
+ var onAutomationCreated2 = createEventModule(
1577
+ onAutomationCreated
1578
+ );
1579
+ var onAutomationDeleted2 = createEventModule(
1580
+ onAutomationDeleted
1581
+ );
1582
+ var onAutomationUpdated2 = createEventModule(
1583
+ onAutomationUpdated
1584
+ );
1579
1585
  export {
1580
1586
  ActionErrorType,
1581
1587
  AutomationErrorType,