@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.
- 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
|
@@ -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
|
|
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
|
|
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;
|
|
@@ -780,6 +780,8 @@ var Namespace = /* @__PURE__ */ ((Namespace2) => {
|
|
|
780
780
|
Namespace2["BASE44"] = "BASE44";
|
|
781
781
|
Namespace2["CHANNELS"] = "CHANNELS";
|
|
782
782
|
Namespace2["NAUTILUS"] = "NAUTILUS";
|
|
783
|
+
Namespace2["SYMPHONY"] = "SYMPHONY";
|
|
784
|
+
Namespace2["NAUTILUS_APPS"] = "NAUTILUS_APPS";
|
|
783
785
|
return Namespace2;
|
|
784
786
|
})(Namespace || {});
|
|
785
787
|
var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {
|