@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
|
@@ -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 {
|
|
@@ -1584,10 +1596,12 @@ declare enum Namespace {
|
|
|
1584
1596
|
/** Standalone events (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
1585
1597
|
STANDALONE_EVENTS = "STANDALONE_EVENTS",
|
|
1586
1598
|
/** MIMIR - Siteless account for MIMIR Ai Job runner. */
|
|
1587
|
-
MIMIR = "MIMIR"
|
|
1599
|
+
MIMIR = "MIMIR",
|
|
1600
|
+
/** Wix Twins platform. */
|
|
1601
|
+
TWINS = "TWINS"
|
|
1588
1602
|
}
|
|
1589
1603
|
/** @enumType */
|
|
1590
|
-
type NamespaceWithLiterals = Namespace | 'UNKNOWN_NAMESPACE' | 'WIX' | 'SHOUT_OUT' | 'ALBUMS' | 'WIX_STORES_TEST_DRIVE' | 'HOTELS' | 'CLUBS' | 'ONBOARDING_DRAFT' | 'DEV_SITE' | 'LOGOS' | 'VIDEO_MAKER' | 'PARTNER_DASHBOARD' | 'DEV_CENTER_COMPANY' | 'HTML_DRAFT' | 'SITELESS_BUSINESS' | 'CREATOR_ECONOMY' | 'DASHBOARD_FIRST' | 'ANYWHERE' | 'HEADLESS' | 'ACCOUNT_MASTER_CMS' | 'RISE' | 'BRANDED_FIRST' | 'NOWNIA' | 'UGC_TEMPLATE' | 'CODUX' | 'MEDIA_DESIGN_CREATOR' | 'SHARED_BLOG_ENTERPRISE' | 'STANDALONE_FORMS' | 'STANDALONE_EVENTS' | 'MIMIR';
|
|
1604
|
+
type NamespaceWithLiterals = Namespace | 'UNKNOWN_NAMESPACE' | 'WIX' | 'SHOUT_OUT' | 'ALBUMS' | 'WIX_STORES_TEST_DRIVE' | 'HOTELS' | 'CLUBS' | 'ONBOARDING_DRAFT' | 'DEV_SITE' | 'LOGOS' | 'VIDEO_MAKER' | 'PARTNER_DASHBOARD' | 'DEV_CENTER_COMPANY' | 'HTML_DRAFT' | 'SITELESS_BUSINESS' | 'CREATOR_ECONOMY' | 'DASHBOARD_FIRST' | 'ANYWHERE' | 'HEADLESS' | 'ACCOUNT_MASTER_CMS' | 'RISE' | 'BRANDED_FIRST' | 'NOWNIA' | 'UGC_TEMPLATE' | 'CODUX' | 'MEDIA_DESIGN_CREATOR' | 'SHARED_BLOG_ENTERPRISE' | 'STANDALONE_FORMS' | 'STANDALONE_EVENTS' | 'MIMIR' | 'TWINS';
|
|
1591
1605
|
/** Site transferred to another user. */
|
|
1592
1606
|
interface SiteTransferred {
|
|
1593
1607
|
/**
|
|
@@ -767,6 +767,7 @@ var Namespace = /* @__PURE__ */ ((Namespace2) => {
|
|
|
767
767
|
Namespace2["STANDALONE_FORMS"] = "STANDALONE_FORMS";
|
|
768
768
|
Namespace2["STANDALONE_EVENTS"] = "STANDALONE_EVENTS";
|
|
769
769
|
Namespace2["MIMIR"] = "MIMIR";
|
|
770
|
+
Namespace2["TWINS"] = "TWINS";
|
|
770
771
|
return Namespace2;
|
|
771
772
|
})(Namespace || {});
|
|
772
773
|
var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {
|