@wix/auto_sdk_portfolio_projects 1.0.51 → 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.
@@ -640,10 +640,17 @@ declare enum Namespace {
640
640
  /** Wix Channels Sites */
641
641
  CHANNELS = "CHANNELS",
642
642
  /** Nautilus platform. */
643
- NAUTILUS = "NAUTILUS"
643
+ NAUTILUS = "NAUTILUS",
644
+ /**
645
+ * Symphony — a siteless site representing a project within Symphony (the evolution of Orion).
646
+ * Holds project data, conversations, assets, and manages collaborators / shared team members for the project.
647
+ */
648
+ SYMPHONY = "SYMPHONY",
649
+ /** Nautilus platform app. */
650
+ NAUTILUS_APPS = "NAUTILUS_APPS"
644
651
  }
645
652
  /** @enumType */
646
- 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';
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';
647
654
  /** Site transferred to another user. */
648
655
  interface SiteTransferred {
649
656
  /**
@@ -1435,7 +1442,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
1435
1442
  /** If present, indicates the action that triggered the event. */
1436
1443
  originatedFrom?: string | null;
1437
1444
  /**
1438
- * 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.
1439
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.
1440
1447
  */
1441
1448
  entityEventSequence?: string | null;
@@ -1536,7 +1543,7 @@ interface EventMetadata extends BaseEventMetadata {
1536
1543
  /** If present, indicates the action that triggered the event. */
1537
1544
  originatedFrom?: string | null;
1538
1545
  /**
1539
- * 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.
1540
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.
1541
1548
  */
1542
1549
  entityEventSequence?: string | null;
@@ -738,6 +738,8 @@ var Namespace = /* @__PURE__ */ ((Namespace2) => {
738
738
  Namespace2["BASE44"] = "BASE44";
739
739
  Namespace2["CHANNELS"] = "CHANNELS";
740
740
  Namespace2["NAUTILUS"] = "NAUTILUS";
741
+ Namespace2["SYMPHONY"] = "SYMPHONY";
742
+ Namespace2["NAUTILUS_APPS"] = "NAUTILUS_APPS";
741
743
  return Namespace2;
742
744
  })(Namespace || {});
743
745
  var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {