@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.
- package/build/cjs/index.js +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +16 -2
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +12 -0
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +16 -2
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +12 -0
- package/build/internal/cjs/index.js +1 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +16 -2
- package/build/internal/cjs/index.typings.js +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +12 -0
- package/build/internal/es/index.mjs +1 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +16 -2
- package/build/internal/es/index.typings.mjs +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +12 -0
- package/package.json +2 -2
|
@@ -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) => {
|