@wix/auto_sdk_members_members 1.0.64 → 1.0.66
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 +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +12 -2
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +12 -2
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.js +1 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +12 -2
- package/build/internal/cjs/index.typings.js +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.mjs +1 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +12 -2
- package/build/internal/es/index.typings.mjs +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1241,10 +1241,12 @@ declare enum Namespace {
|
|
|
1241
1241
|
/** Standalone events (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
1242
1242
|
STANDALONE_EVENTS = "STANDALONE_EVENTS",
|
|
1243
1243
|
/** MIMIR - Siteless account for MIMIR Ai Job runner. */
|
|
1244
|
-
MIMIR = "MIMIR"
|
|
1244
|
+
MIMIR = "MIMIR",
|
|
1245
|
+
/** Wix Twins platform. */
|
|
1246
|
+
TWINS = "TWINS"
|
|
1245
1247
|
}
|
|
1246
1248
|
/** @enumType */
|
|
1247
|
-
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';
|
|
1249
|
+
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';
|
|
1248
1250
|
/** Site transferred to another user. */
|
|
1249
1251
|
interface SiteTransferred {
|
|
1250
1252
|
/**
|
|
@@ -1516,26 +1518,31 @@ declare enum WebhookIdentityType {
|
|
|
1516
1518
|
}
|
|
1517
1519
|
/** @enumType */
|
|
1518
1520
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
1521
|
+
/** @docsIgnore */
|
|
1519
1522
|
type UpdateCurrentMemberSlugApplicationErrors = {
|
|
1520
1523
|
code?: 'SLUG_ALREADY_EXISTS';
|
|
1521
1524
|
description?: string;
|
|
1522
1525
|
data?: SlugAlreadyExistsPayload;
|
|
1523
1526
|
};
|
|
1527
|
+
/** @docsIgnore */
|
|
1524
1528
|
type UpdateMemberSlugApplicationErrors = {
|
|
1525
1529
|
code?: 'SLUG_ALREADY_EXISTS';
|
|
1526
1530
|
description?: string;
|
|
1527
1531
|
data?: SlugAlreadyExistsPayload;
|
|
1528
1532
|
};
|
|
1533
|
+
/** @docsIgnore */
|
|
1529
1534
|
type JoinCommunityApplicationErrors = {
|
|
1530
1535
|
code?: 'COMMUNITY_JOIN_IMPOSSIBLE';
|
|
1531
1536
|
description?: string;
|
|
1532
1537
|
data?: Record<string, any>;
|
|
1533
1538
|
};
|
|
1539
|
+
/** @docsIgnore */
|
|
1534
1540
|
type GetMemberApplicationErrors = {
|
|
1535
1541
|
code?: 'MEMBER_TO_MEMBER_BLOCKED';
|
|
1536
1542
|
description?: string;
|
|
1537
1543
|
data?: MemberToMemberBlockedPayload;
|
|
1538
1544
|
};
|
|
1545
|
+
/** @docsIgnore */
|
|
1539
1546
|
type BlockMemberApplicationErrors = {
|
|
1540
1547
|
code?: 'MEMBER_SELF_BLOCK_FORBIDDEN';
|
|
1541
1548
|
description?: string;
|
|
@@ -1549,14 +1556,17 @@ type BlockMemberApplicationErrors = {
|
|
|
1549
1556
|
description?: string;
|
|
1550
1557
|
data?: ActiveSubscriptionMemberBlockForbiddenPayload;
|
|
1551
1558
|
};
|
|
1559
|
+
/** @docsIgnore */
|
|
1552
1560
|
type DeleteMemberValidationErrors = {
|
|
1553
1561
|
ruleName?: 'OWNER_OR_CONTRIBUTOR_MEMBER_DELETE_FORBIDDEN';
|
|
1554
1562
|
} | {
|
|
1555
1563
|
ruleName?: 'ACTIVE_SUBSCRIPTION_MEMBER_DELETE_FORBIDDEN';
|
|
1556
1564
|
};
|
|
1565
|
+
/** @docsIgnore */
|
|
1557
1566
|
type DeleteMyMemberValidationErrors = {
|
|
1558
1567
|
ruleName?: 'OWNER_OR_CONTRIBUTOR_MEMBER_DELETE_FORBIDDEN';
|
|
1559
1568
|
};
|
|
1569
|
+
/** @docsIgnore */
|
|
1560
1570
|
type UpdateMemberValidationErrors = {
|
|
1561
1571
|
ruleName?: 'INVALID_CUSTOM_FIELD_URL';
|
|
1562
1572
|
};
|
|
@@ -872,6 +872,7 @@ var Namespace = /* @__PURE__ */ ((Namespace2) => {
|
|
|
872
872
|
Namespace2["STANDALONE_FORMS"] = "STANDALONE_FORMS";
|
|
873
873
|
Namespace2["STANDALONE_EVENTS"] = "STANDALONE_EVENTS";
|
|
874
874
|
Namespace2["MIMIR"] = "MIMIR";
|
|
875
|
+
Namespace2["TWINS"] = "TWINS";
|
|
875
876
|
return Namespace2;
|
|
876
877
|
})(Namespace || {});
|
|
877
878
|
var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {
|