@wix/auto_sdk_faq_question-entry 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.
@@ -2816,7 +2816,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
2816
2816
  /** If present, indicates the action that triggered the event. */
2817
2817
  originatedFrom?: string | null;
2818
2818
  /**
2819
- * 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.
2819
+ * 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.
2820
2820
  * 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.
2821
2821
  */
2822
2822
  entityEventSequence?: string | null;
@@ -3162,10 +3162,12 @@ declare enum Namespace {
3162
3162
  * Symphony — a siteless site representing a project within Symphony (the evolution of Orion).
3163
3163
  * Holds project data, conversations, assets, and manages collaborators / shared team members for the project.
3164
3164
  */
3165
- SYMPHONY = "SYMPHONY"
3165
+ SYMPHONY = "SYMPHONY",
3166
+ /** Nautilus platform app. */
3167
+ NAUTILUS_APPS = "NAUTILUS_APPS"
3166
3168
  }
3167
3169
  /** @enumType */
3168
- 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';
3170
+ 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';
3169
3171
  /** Site transferred to another user. */
3170
3172
  interface SiteTransferred {
3171
3173
  /**
@@ -3516,7 +3518,7 @@ interface EventMetadata extends BaseEventMetadata {
3516
3518
  /** If present, indicates the action that triggered the event. */
3517
3519
  originatedFrom?: string | null;
3518
3520
  /**
3519
- * 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.
3521
+ * 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.
3520
3522
  * 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.
3521
3523
  */
3522
3524
  entityEventSequence?: string | null;
@@ -2355,6 +2355,7 @@ var Namespace = /* @__PURE__ */ ((Namespace2) => {
2355
2355
  Namespace2["CHANNELS"] = "CHANNELS";
2356
2356
  Namespace2["NAUTILUS"] = "NAUTILUS";
2357
2357
  Namespace2["SYMPHONY"] = "SYMPHONY";
2358
+ Namespace2["NAUTILUS_APPS"] = "NAUTILUS_APPS";
2358
2359
  return Namespace2;
2359
2360
  })(Namespace || {});
2360
2361
  var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {