@wix/auto_sdk_automations_automations-v-2 1.0.25 → 1.0.27

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.
@@ -278,6 +278,11 @@ interface AppDefinedAction {
278
278
  *
279
279
  * > **Note**: Actions that follow a skipped action still run.
280
280
  * @maxSize 10
281
+ * @deprecated Action skip conditions. An action is skipped if any of the specified conditions evaluates to `true`.
282
+ *
283
+ * > **Note**: Actions that follow a skipped action still run.
284
+ * @replacedBy skip_expression
285
+ * @targetRemovalDate 2026-02-01
281
286
  */
282
287
  skipConditionOrExpressionGroups?: ConditionExpressionGroup[];
283
288
  /**
@@ -444,6 +449,13 @@ interface Action extends ActionInfoOneOf {
444
449
  * @maxLength 100
445
450
  */
446
451
  namespace?: string | null;
452
+ /**
453
+ * skip_expression: evaluates to a boolean to decide if the action should be skipped
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
456
+ * @maxLength 1000
457
+ */
458
+ skipExpression?: string | null;
447
459
  }
448
460
  /** @oneof */
449
461
  interface ActionInfoOneOf {
@@ -773,6 +773,7 @@ var Namespace = /* @__PURE__ */ ((Namespace2) => {
773
773
  Namespace2["STANDALONE_FORMS"] = "STANDALONE_FORMS";
774
774
  Namespace2["STANDALONE_EVENTS"] = "STANDALONE_EVENTS";
775
775
  Namespace2["MIMIR"] = "MIMIR";
776
+ Namespace2["TWINS"] = "TWINS";
776
777
  return Namespace2;
777
778
  })(Namespace || {});
778
779
  var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {