@wix/auto_sdk_members_members 1.0.64 → 1.0.65

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.
@@ -1516,26 +1516,31 @@ declare enum WebhookIdentityType {
1516
1516
  }
1517
1517
  /** @enumType */
1518
1518
  type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
1519
+ /** @docsIgnore */
1519
1520
  type UpdateCurrentMemberSlugApplicationErrors = {
1520
1521
  code?: 'SLUG_ALREADY_EXISTS';
1521
1522
  description?: string;
1522
1523
  data?: SlugAlreadyExistsPayload;
1523
1524
  };
1525
+ /** @docsIgnore */
1524
1526
  type UpdateMemberSlugApplicationErrors = {
1525
1527
  code?: 'SLUG_ALREADY_EXISTS';
1526
1528
  description?: string;
1527
1529
  data?: SlugAlreadyExistsPayload;
1528
1530
  };
1531
+ /** @docsIgnore */
1529
1532
  type JoinCommunityApplicationErrors = {
1530
1533
  code?: 'COMMUNITY_JOIN_IMPOSSIBLE';
1531
1534
  description?: string;
1532
1535
  data?: Record<string, any>;
1533
1536
  };
1537
+ /** @docsIgnore */
1534
1538
  type GetMemberApplicationErrors = {
1535
1539
  code?: 'MEMBER_TO_MEMBER_BLOCKED';
1536
1540
  description?: string;
1537
1541
  data?: MemberToMemberBlockedPayload;
1538
1542
  };
1543
+ /** @docsIgnore */
1539
1544
  type BlockMemberApplicationErrors = {
1540
1545
  code?: 'MEMBER_SELF_BLOCK_FORBIDDEN';
1541
1546
  description?: string;
@@ -1549,14 +1554,17 @@ type BlockMemberApplicationErrors = {
1549
1554
  description?: string;
1550
1555
  data?: ActiveSubscriptionMemberBlockForbiddenPayload;
1551
1556
  };
1557
+ /** @docsIgnore */
1552
1558
  type DeleteMemberValidationErrors = {
1553
1559
  ruleName?: 'OWNER_OR_CONTRIBUTOR_MEMBER_DELETE_FORBIDDEN';
1554
1560
  } | {
1555
1561
  ruleName?: 'ACTIVE_SUBSCRIPTION_MEMBER_DELETE_FORBIDDEN';
1556
1562
  };
1563
+ /** @docsIgnore */
1557
1564
  type DeleteMyMemberValidationErrors = {
1558
1565
  ruleName?: 'OWNER_OR_CONTRIBUTOR_MEMBER_DELETE_FORBIDDEN';
1559
1566
  };
1567
+ /** @docsIgnore */
1560
1568
  type UpdateMemberValidationErrors = {
1561
1569
  ruleName?: 'INVALID_CUSTOM_FIELD_URL';
1562
1570
  };