@wix/auto_sdk_restaurants_operations 1.0.91 → 1.0.92

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.
@@ -686,7 +686,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
686
686
  /** If present, indicates the action that triggered the event. */
687
687
  originatedFrom?: string | null;
688
688
  /**
689
- * 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.
689
+ * 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.
690
690
  * 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.
691
691
  */
692
692
  entityEventSequence?: string | null;
@@ -2688,10 +2688,15 @@ declare enum Namespace {
2688
2688
  /** Wix Channels Sites */
2689
2689
  CHANNELS = "CHANNELS",
2690
2690
  /** Nautilus platform. */
2691
- NAUTILUS = "NAUTILUS"
2691
+ NAUTILUS = "NAUTILUS",
2692
+ /**
2693
+ * Symphony — a siteless site representing a project within Symphony (the evolution of Orion).
2694
+ * Holds project data, conversations, assets, and manages collaborators / shared team members for the project.
2695
+ */
2696
+ SYMPHONY = "SYMPHONY"
2692
2697
  }
2693
2698
  /** @enumType */
2694
- 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';
2699
+ 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';
2695
2700
  /** Site transferred to another user. */
2696
2701
  interface SiteTransferred {
2697
2702
  /**
@@ -3049,7 +3054,7 @@ interface EventMetadata extends BaseEventMetadata {
3049
3054
  /** If present, indicates the action that triggered the event. */
3050
3055
  originatedFrom?: string | null;
3051
3056
  /**
3052
- * 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.
3057
+ * 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.
3053
3058
  * 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.
3054
3059
  */
3055
3060
  entityEventSequence?: string | null;
@@ -1243,6 +1243,7 @@ var Namespace = /* @__PURE__ */ ((Namespace2) => {
1243
1243
  Namespace2["BASE44"] = "BASE44";
1244
1244
  Namespace2["CHANNELS"] = "CHANNELS";
1245
1245
  Namespace2["NAUTILUS"] = "NAUTILUS";
1246
+ Namespace2["SYMPHONY"] = "SYMPHONY";
1246
1247
  return Namespace2;
1247
1248
  })(Namespace || {});
1248
1249
  var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {