@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.
@@ -521,12 +521,12 @@ interface Action extends ActionInfoOneOf {
521
521
  */
522
522
  namespace?: string | null;
523
523
  /**
524
- * skip_expression: evaluates to a boolean to decide if the action should be skipped
524
+ * skip_action_expression: evaluates to a boolean to decide if the action should be skipped
525
525
  * For ConditionAction: if skipped, true_post_action_ids execute; false_post_action_ids are skipped
526
- * SplitAction and OutputAction do not support skip_expression
526
+ * SplitAction and OutputAction do not support skip_action_expression
527
527
  * @maxLength 1000
528
528
  */
529
- skipExpression?: string | null;
529
+ skipActionExpression?: string | null;
530
530
  }
531
531
  /** @oneof */
532
532
  interface ActionInfoOneOf {