@wix/auto_sdk_automations_automations-v-2 1.0.71 → 1.0.76
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 +10 -5
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +8 -3
- package/build/cjs/meta.js +1 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +10 -5
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +8 -3
- package/build/es/meta.mjs +1 -0
- package/build/es/meta.mjs.map +1 -1
- 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 +10 -5
- 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 +8 -3
- package/build/internal/cjs/meta.js +1 -0
- package/build/internal/cjs/meta.js.map +1 -1
- 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 +10 -5
- 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 +8 -3
- package/build/internal/es/meta.mjs +1 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -56,7 +56,7 @@ interface Automation extends AutomationOriginInfoOneOf {
|
|
|
56
56
|
* @immutable
|
|
57
57
|
*/
|
|
58
58
|
origin?: OriginWithLiterals;
|
|
59
|
-
/** Automation settings. */
|
|
59
|
+
/** Automation settings. Applied only for pre-installed and application automations. Not applied to User origin automations */
|
|
60
60
|
settings?: AutomationSettings;
|
|
61
61
|
/**
|
|
62
62
|
* When the automation is a draft, the draft details.
|
|
@@ -652,6 +652,9 @@ interface AutomationSettings {
|
|
|
652
652
|
hidden?: boolean;
|
|
653
653
|
/**
|
|
654
654
|
* Whether the automation is read-only.
|
|
655
|
+
* If true - modifications to the automation trigger or action/s are disabled.
|
|
656
|
+
* **Note**: this setting takes precedent over triggerSettings/actionSettings.
|
|
657
|
+
* If false - allows selective read-only settings via those fields.
|
|
655
658
|
*
|
|
656
659
|
* Default: `false`
|
|
657
660
|
*/
|
|
@@ -1561,10 +1564,12 @@ declare enum Namespace {
|
|
|
1561
1564
|
/** Wix Twins platform. */
|
|
1562
1565
|
TWINS = "TWINS",
|
|
1563
1566
|
/** Wix Nano. */
|
|
1564
|
-
NANO = "NANO"
|
|
1567
|
+
NANO = "NANO",
|
|
1568
|
+
/** Base44 headless sites. */
|
|
1569
|
+
BASE44 = "BASE44"
|
|
1565
1570
|
}
|
|
1566
1571
|
/** @enumType */
|
|
1567
|
-
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' | 'NANO';
|
|
1572
|
+
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' | 'NANO' | 'BASE44';
|
|
1568
1573
|
/** Site transferred to another user. */
|
|
1569
1574
|
interface SiteTransferred {
|
|
1570
1575
|
/**
|
|
@@ -884,6 +884,7 @@ var Namespace = /* @__PURE__ */ ((Namespace2) => {
|
|
|
884
884
|
Namespace2["MIMIR"] = "MIMIR";
|
|
885
885
|
Namespace2["TWINS"] = "TWINS";
|
|
886
886
|
Namespace2["NANO"] = "NANO";
|
|
887
|
+
Namespace2["BASE44"] = "BASE44";
|
|
887
888
|
return Namespace2;
|
|
888
889
|
})(Namespace || {});
|
|
889
890
|
var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {
|