@wix/auto_sdk_portfolio_projects 1.0.52 → 1.0.53

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.
@@ -645,10 +645,12 @@ declare enum Namespace {
645
645
  * Symphony — a siteless site representing a project within Symphony (the evolution of Orion).
646
646
  * Holds project data, conversations, assets, and manages collaborators / shared team members for the project.
647
647
  */
648
- SYMPHONY = "SYMPHONY"
648
+ SYMPHONY = "SYMPHONY",
649
+ /** Nautilus platform app. */
650
+ NAUTILUS_APPS = "NAUTILUS_APPS"
649
651
  }
650
652
  /** @enumType */
651
- 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' | 'CHANNELS' | 'NAUTILUS' | 'SYMPHONY';
653
+ 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' | 'CHANNELS' | 'NAUTILUS' | 'SYMPHONY' | 'NAUTILUS_APPS';
652
654
  /** Site transferred to another user. */
653
655
  interface SiteTransferred {
654
656
  /**
@@ -1440,7 +1442,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
1440
1442
  /** If present, indicates the action that triggered the event. */
1441
1443
  originatedFrom?: string | null;
1442
1444
  /**
1443
- * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
1445
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at `16:00` and then again at `16:01`, the second update will always have a higher sequence number.
1444
1446
  * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
1445
1447
  */
1446
1448
  entityEventSequence?: string | null;
@@ -1541,7 +1543,7 @@ interface EventMetadata extends BaseEventMetadata {
1541
1543
  /** If present, indicates the action that triggered the event. */
1542
1544
  originatedFrom?: string | null;
1543
1545
  /**
1544
- * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
1546
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at `16:00` and then again at `16:01`, the second update will always have a higher sequence number.
1545
1547
  * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
1546
1548
  */
1547
1549
  entityEventSequence?: string | null;
@@ -781,6 +781,7 @@ var Namespace = /* @__PURE__ */ ((Namespace2) => {
781
781
  Namespace2["CHANNELS"] = "CHANNELS";
782
782
  Namespace2["NAUTILUS"] = "NAUTILUS";
783
783
  Namespace2["SYMPHONY"] = "SYMPHONY";
784
+ Namespace2["NAUTILUS_APPS"] = "NAUTILUS_APPS";
784
785
  return Namespace2;
785
786
  })(Namespace || {});
786
787
  var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {