@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.
@@ -55,7 +55,7 @@ interface Automation extends AutomationOriginInfoOneOf {
55
55
  * @immutable
56
56
  */
57
57
  origin?: OriginWithLiterals;
58
- /** Automation settings. */
58
+ /** Automation settings. Applied only for pre-installed and application automations. Not applied to User origin automations */
59
59
  settings?: AutomationSettings;
60
60
  /**
61
61
  * When the automation is a draft, the draft details.
@@ -651,6 +651,9 @@ interface AutomationSettings {
651
651
  hidden?: boolean;
652
652
  /**
653
653
  * Whether the automation is read-only.
654
+ * If true - modifications to the automation trigger or action/s are disabled.
655
+ * **Note**: this setting takes precedent over triggerSettings/actionSettings.
656
+ * If false - allows selective read-only settings via those fields.
654
657
  *
655
658
  * Default: `false`
656
659
  */
@@ -1558,10 +1561,12 @@ declare enum Namespace {
1558
1561
  /** Wix Twins platform. */
1559
1562
  TWINS = "TWINS",
1560
1563
  /** Wix Nano. */
1561
- NANO = "NANO"
1564
+ NANO = "NANO",
1565
+ /** Base44 headless sites. */
1566
+ BASE44 = "BASE44"
1562
1567
  }
1563
1568
  /** @enumType */
1564
- 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';
1569
+ 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';
1565
1570
  /** Site transferred to another user. */
1566
1571
  interface SiteTransferred {
1567
1572
  /**
@@ -2531,7 +2536,7 @@ interface UpdateAutomation {
2531
2536
  * @immutable
2532
2537
  */
2533
2538
  origin?: OriginWithLiterals;
2534
- /** Automation settings. */
2539
+ /** Automation settings. Applied only for pre-installed and application automations. Not applied to User origin automations */
2535
2540
  settings?: AutomationSettings;
2536
2541
  /**
2537
2542
  * When the automation is a draft, the draft details.
@@ -2828,7 +2833,7 @@ interface UpdateDraftAutomation {
2828
2833
  * @immutable
2829
2834
  */
2830
2835
  origin?: OriginWithLiterals;
2831
- /** Automation settings. */
2836
+ /** Automation settings. Applied only for pre-installed and application automations. Not applied to User origin automations */
2832
2837
  settings?: AutomationSettings;
2833
2838
  /**
2834
2839
  * When the automation is a draft, the draft details.
@@ -826,6 +826,7 @@ var Namespace = /* @__PURE__ */ ((Namespace2) => {
826
826
  Namespace2["MIMIR"] = "MIMIR";
827
827
  Namespace2["TWINS"] = "TWINS";
828
828
  Namespace2["NANO"] = "NANO";
829
+ Namespace2["BASE44"] = "BASE44";
829
830
  return Namespace2;
830
831
  })(Namespace || {});
831
832
  var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {