@wix/auto_sdk_automations_automations-v-2 1.0.25 → 1.0.26

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.
@@ -321,6 +321,11 @@ interface AppDefinedAction {
321
321
  *
322
322
  * > **Note**: Actions that follow a skipped action still run.
323
323
  * @maxSize 10
324
+ * @deprecated Action skip conditions. An action is skipped if any of the specified conditions evaluates to `true`.
325
+ *
326
+ * > **Note**: Actions that follow a skipped action still run.
327
+ * @replacedBy skip_expression
328
+ * @targetRemovalDate 2026-02-01
324
329
  */
325
330
  skipConditionOrExpressionGroups?: ConditionExpressionGroup[];
326
331
  /**
@@ -515,6 +520,13 @@ interface Action extends ActionInfoOneOf {
515
520
  * @maxLength 100
516
521
  */
517
522
  namespace?: string | null;
523
+ /**
524
+ * skip_expression: evaluates to a boolean to decide if the action should be skipped
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
527
+ * @maxLength 1000
528
+ */
529
+ skipExpression?: string | null;
518
530
  }
519
531
  /** @oneof */
520
532
  interface ActionInfoOneOf {