@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.
- package/build/cjs/index.d.ts +3 -3
- package/build/cjs/index.js +9 -3
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +3 -3
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +3 -3
- package/build/es/index.d.mts +3 -3
- package/build/es/index.mjs +9 -3
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +3 -3
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +3 -3
- package/build/internal/cjs/index.d.ts +3 -3
- package/build/internal/cjs/index.js +9 -3
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +3 -3
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +3 -3
- package/build/internal/es/index.d.mts +3 -3
- package/build/internal/es/index.mjs +9 -3
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +3 -3
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +3 -3
- package/package.json +2 -2
|
@@ -521,12 +521,12 @@ interface Action extends ActionInfoOneOf {
|
|
|
521
521
|
*/
|
|
522
522
|
namespace?: string | null;
|
|
523
523
|
/**
|
|
524
|
-
*
|
|
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
|
|
526
|
+
* SplitAction and OutputAction do not support skip_action_expression
|
|
527
527
|
* @maxLength 1000
|
|
528
528
|
*/
|
|
529
|
-
|
|
529
|
+
skipActionExpression?: string | null;
|
|
530
530
|
}
|
|
531
531
|
/** @oneof */
|
|
532
532
|
interface ActionInfoOneOf {
|