@wix/auto_sdk_restaurants_operations 1.0.91 → 1.0.93
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.
- package/build/cjs/index.js +2 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +11 -4
- package/build/cjs/index.typings.js +2 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +10 -3
- package/build/cjs/meta.js +2 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +2 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +11 -4
- package/build/es/index.typings.mjs +2 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +10 -3
- package/build/es/meta.mjs +2 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +2 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +11 -4
- package/build/internal/cjs/index.typings.js +2 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +10 -3
- package/build/internal/cjs/meta.js +2 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +2 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +11 -4
- package/build/internal/es/index.typings.mjs +2 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +10 -3
- package/build/internal/es/meta.mjs +2 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -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
|
|
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;
|
|
@@ -2690,10 +2690,17 @@ declare enum Namespace {
|
|
|
2690
2690
|
/** Wix Channels Sites */
|
|
2691
2691
|
CHANNELS = "CHANNELS",
|
|
2692
2692
|
/** Nautilus platform. */
|
|
2693
|
-
NAUTILUS = "NAUTILUS"
|
|
2693
|
+
NAUTILUS = "NAUTILUS",
|
|
2694
|
+
/**
|
|
2695
|
+
* Symphony — a siteless site representing a project within Symphony (the evolution of Orion).
|
|
2696
|
+
* Holds project data, conversations, assets, and manages collaborators / shared team members for the project.
|
|
2697
|
+
*/
|
|
2698
|
+
SYMPHONY = "SYMPHONY",
|
|
2699
|
+
/** Nautilus platform app. */
|
|
2700
|
+
NAUTILUS_APPS = "NAUTILUS_APPS"
|
|
2694
2701
|
}
|
|
2695
2702
|
/** @enumType */
|
|
2696
|
-
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';
|
|
2703
|
+
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';
|
|
2697
2704
|
/** Site transferred to another user. */
|
|
2698
2705
|
interface SiteTransferred {
|
|
2699
2706
|
/**
|
|
@@ -1231,6 +1231,8 @@ var Namespace = /* @__PURE__ */ ((Namespace2) => {
|
|
|
1231
1231
|
Namespace2["BASE44"] = "BASE44";
|
|
1232
1232
|
Namespace2["CHANNELS"] = "CHANNELS";
|
|
1233
1233
|
Namespace2["NAUTILUS"] = "NAUTILUS";
|
|
1234
|
+
Namespace2["SYMPHONY"] = "SYMPHONY";
|
|
1235
|
+
Namespace2["NAUTILUS_APPS"] = "NAUTILUS_APPS";
|
|
1234
1236
|
return Namespace2;
|
|
1235
1237
|
})(Namespace || {});
|
|
1236
1238
|
var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {
|