@wix/members 1.0.127 → 1.0.129

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.
@@ -811,7 +811,7 @@ interface DomainEventBodyOneOf$5 {
811
811
  interface EntityCreatedEvent$5 {
812
812
  entity?: string;
813
813
  }
814
- interface RestoreInfo$5 {
814
+ interface RestoreInfo$4 {
815
815
  deletedDate?: Date | null;
816
816
  }
817
817
  interface EntityUpdatedEvent$5 {
@@ -953,23 +953,23 @@ interface EventMetadata$1 extends BaseEventMetadata$1 {
953
953
  */
954
954
  entityEventSequence?: string | null;
955
955
  }
956
- interface BadgeAssignedEnvelope {
957
- data: BadgeAssigned;
958
- metadata: EventMetadata$1;
959
- }
960
- interface BadgeUnassignedEnvelope {
961
- data: BadgeUnassigned;
956
+ interface BadgeCreatedEnvelope {
957
+ entity: Badge;
962
958
  metadata: EventMetadata$1;
963
959
  }
964
- interface BadgeCreatedEnvelope {
960
+ interface BadgeUpdatedEnvelope {
965
961
  entity: Badge;
966
962
  metadata: EventMetadata$1;
967
963
  }
968
964
  interface BadgeDeletedEnvelope {
969
965
  metadata: EventMetadata$1;
970
966
  }
971
- interface BadgeUpdatedEnvelope {
972
- entity: Badge;
967
+ interface BadgeAssignedEnvelope {
968
+ data: BadgeAssigned;
969
+ metadata: EventMetadata$1;
970
+ }
971
+ interface BadgeUnassignedEnvelope {
972
+ data: BadgeUnassigned;
973
973
  metadata: EventMetadata$1;
974
974
  }
975
975
  interface UpdateBadge {
@@ -1193,11 +1193,11 @@ interface UpdateBadgesDisplayOrderSignature {
1193
1193
  */
1194
1194
  (badgeIds: string[]): Promise<UpdateBadgesDisplayOrderResponse & UpdateBadgesDisplayOrderResponseNonNullableFields>;
1195
1195
  }
1196
- declare const onBadgeAssigned$1: EventDefinition<BadgeAssignedEnvelope, "wix.badges.v3.badge_badge_assigned">;
1197
- declare const onBadgeUnassigned$1: EventDefinition<BadgeUnassignedEnvelope, "wix.badges.v3.badge_badge_unassigned">;
1198
1196
  declare const onBadgeCreated$1: EventDefinition<BadgeCreatedEnvelope, "wix.badges.v3.badge_created">;
1199
- declare const onBadgeDeleted$1: EventDefinition<BadgeDeletedEnvelope, "wix.badges.v3.badge_deleted">;
1200
1197
  declare const onBadgeUpdated$1: EventDefinition<BadgeUpdatedEnvelope, "wix.badges.v3.badge_updated">;
1198
+ declare const onBadgeDeleted$1: EventDefinition<BadgeDeletedEnvelope, "wix.badges.v3.badge_deleted">;
1199
+ declare const onBadgeAssigned$1: EventDefinition<BadgeAssignedEnvelope, "wix.badges.v3.badge_badge_assigned">;
1200
+ declare const onBadgeUnassigned$1: EventDefinition<BadgeUnassignedEnvelope, "wix.badges.v3.badge_badge_unassigned">;
1201
1201
 
1202
1202
  declare function createEventModule$1<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
1203
1203
 
@@ -1213,35 +1213,35 @@ declare const listBadgesPerMember: MaybeContext<BuildRESTFunction<typeof listBad
1213
1213
  declare const getMemberCountsPerBadge: MaybeContext<BuildRESTFunction<typeof getMemberCountsPerBadge$1> & typeof getMemberCountsPerBadge$1>;
1214
1214
  declare const updateBadgesDisplayOrder: MaybeContext<BuildRESTFunction<typeof updateBadgesDisplayOrder$1> & typeof updateBadgesDisplayOrder$1>;
1215
1215
 
1216
- type _publicOnBadgeAssignedType = typeof onBadgeAssigned$1;
1217
- /**
1218
- * Triggered when a member receives a badge.
1219
- */
1220
- declare const onBadgeAssigned: ReturnType<typeof createEventModule$1<_publicOnBadgeAssignedType>>;
1221
-
1222
- type _publicOnBadgeUnassignedType = typeof onBadgeUnassigned$1;
1223
- /**
1224
- * Triggered when a member's badge is removed.
1225
- */
1226
- declare const onBadgeUnassigned: ReturnType<typeof createEventModule$1<_publicOnBadgeUnassignedType>>;
1227
-
1228
1216
  type _publicOnBadgeCreatedType = typeof onBadgeCreated$1;
1229
1217
  /**
1230
1218
  * Triggered when a badge is created.
1231
1219
  */
1232
1220
  declare const onBadgeCreated: ReturnType<typeof createEventModule$1<_publicOnBadgeCreatedType>>;
1233
1221
 
1222
+ type _publicOnBadgeUpdatedType = typeof onBadgeUpdated$1;
1223
+ /**
1224
+ * Triggered when a badge is updated.
1225
+ */
1226
+ declare const onBadgeUpdated: ReturnType<typeof createEventModule$1<_publicOnBadgeUpdatedType>>;
1227
+
1234
1228
  type _publicOnBadgeDeletedType = typeof onBadgeDeleted$1;
1235
1229
  /**
1236
1230
  * Triggered when a badge is deleted.
1237
1231
  */
1238
1232
  declare const onBadgeDeleted: ReturnType<typeof createEventModule$1<_publicOnBadgeDeletedType>>;
1239
1233
 
1240
- type _publicOnBadgeUpdatedType = typeof onBadgeUpdated$1;
1234
+ type _publicOnBadgeAssignedType = typeof onBadgeAssigned$1;
1241
1235
  /**
1242
- * Triggered when a badge is updated.
1236
+ * Triggered when a member receives a badge.
1243
1237
  */
1244
- declare const onBadgeUpdated: ReturnType<typeof createEventModule$1<_publicOnBadgeUpdatedType>>;
1238
+ declare const onBadgeAssigned: ReturnType<typeof createEventModule$1<_publicOnBadgeAssignedType>>;
1239
+
1240
+ type _publicOnBadgeUnassignedType = typeof onBadgeUnassigned$1;
1241
+ /**
1242
+ * Triggered when a member's badge is removed.
1243
+ */
1244
+ declare const onBadgeUnassigned: ReturnType<typeof createEventModule$1<_publicOnBadgeUnassignedType>>;
1245
1245
 
1246
1246
  type context$a_AssignBadgeRequest = AssignBadgeRequest;
1247
1247
  type context$a_AssignBadgeResponse = AssignBadgeResponse;
@@ -1315,7 +1315,7 @@ declare const context$a_unassignBadge: typeof unassignBadge;
1315
1315
  declare const context$a_updateBadge: typeof updateBadge;
1316
1316
  declare const context$a_updateBadgesDisplayOrder: typeof updateBadgesDisplayOrder;
1317
1317
  declare namespace context$a {
1318
- export { type ActionEvent$5 as ActionEvent, type context$a_AssignBadgeRequest as AssignBadgeRequest, type context$a_AssignBadgeResponse as AssignBadgeResponse, type context$a_AssignBadgeResponseNonNullableFields as AssignBadgeResponseNonNullableFields, type context$a_AssignBadgesRequest as AssignBadgesRequest, type context$a_AssignBadgesResponse as AssignBadgesResponse, type context$a_Badge as Badge, type context$a_BadgeAssigned as BadgeAssigned, type context$a_BadgeAssignedEnvelope as BadgeAssignedEnvelope, type context$a_BadgeCreatedEnvelope as BadgeCreatedEnvelope, type context$a_BadgeDeletedEnvelope as BadgeDeletedEnvelope, type context$a_BadgeMemberCount as BadgeMemberCount, type context$a_BadgeNonNullableFields as BadgeNonNullableFields, type context$a_BadgeUnassigned as BadgeUnassigned, type context$a_BadgeUnassignedEnvelope as BadgeUnassignedEnvelope, type context$a_BadgeUpdatedEnvelope as BadgeUpdatedEnvelope, type BaseEventMetadata$1 as BaseEventMetadata, type context$a_CountBadgesRequest as CountBadgesRequest, type context$a_CountBadgesResponse as CountBadgesResponse, type context$a_CreateBadgeRequest as CreateBadgeRequest, type context$a_CreateBadgeResponse as CreateBadgeResponse, type context$a_CreateBadgeResponseNonNullableFields as CreateBadgeResponseNonNullableFields, type CursorPaging$4 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type Cursors$4 as Cursors, type context$a_DeleteBadgeRequest as DeleteBadgeRequest, type context$a_DeleteBadgeResponse as DeleteBadgeResponse, type DomainEvent$5 as DomainEvent, type DomainEventBodyOneOf$5 as DomainEventBodyOneOf, type EntityCreatedEvent$5 as EntityCreatedEvent, type EntityDeletedEvent$5 as EntityDeletedEvent, type EntityUpdatedEvent$5 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type context$a_GetBadgeRequest as GetBadgeRequest, type context$a_GetBadgeResponse as GetBadgeResponse, type context$a_GetBadgeResponseNonNullableFields as GetBadgeResponseNonNullableFields, type context$a_GetMemberCountsPerBadgeRequest as GetMemberCountsPerBadgeRequest, type context$a_GetMemberCountsPerBadgeResponse as GetMemberCountsPerBadgeResponse, type context$a_GetMemberCountsPerBadgeResponseNonNullableFields as GetMemberCountsPerBadgeResponseNonNullableFields, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type context$a_ListBadgesOptions as ListBadgesOptions, type context$a_ListBadgesRequest as ListBadgesRequest, type context$a_ListBadgesResponse as ListBadgesResponse, type context$a_ListBadgesResponseNonNullableFields as ListBadgesResponseNonNullableFields, type context$a_ListMembersBadgeIdsRequest as ListMembersBadgeIdsRequest, type context$a_ListMembersBadgeIdsResponse as ListMembersBadgeIdsResponse, type context$a_ListMembersBadgeIdsResponseNonNullableFields as ListMembersBadgeIdsResponseNonNullableFields, type context$a_ListMembersByBadgeOptions as ListMembersByBadgeOptions, type ListMembersRequest$2 as ListMembersRequest, type ListMembersResponse$2 as ListMembersResponse, type ListMembersResponseNonNullableFields$1 as ListMembersResponseNonNullableFields, type context$a_ListMembersWithBadgesRequest as ListMembersWithBadgesRequest, type context$a_ListMembersWithBadgesResponse as ListMembersWithBadgesResponse, type context$a_MemberBadgeIds as MemberBadgeIds, type MessageEnvelope$4 as MessageEnvelope, type Paging$5 as Paging, type PagingMetadata$3 as PagingMetadata, type context$a_QueryBadgesRequest as QueryBadgesRequest, type context$a_QueryBadgesResponse as QueryBadgesResponse, type RestoreInfo$5 as RestoreInfo, SortOrder$4 as SortOrder, type Sorting$5 as Sorting, type context$a_UnassignBadgeRequest as UnassignBadgeRequest, type context$a_UnassignBadgeResponse as UnassignBadgeResponse, type context$a_UpdateBadge as UpdateBadge, type context$a_UpdateBadgeRequest as UpdateBadgeRequest, type context$a_UpdateBadgeResponse as UpdateBadgeResponse, type context$a_UpdateBadgeResponseNonNullableFields as UpdateBadgeResponseNonNullableFields, type context$a_UpdateBadgesDisplayOrderRequest as UpdateBadgesDisplayOrderRequest, type context$a_UpdateBadgesDisplayOrderResponse as UpdateBadgesDisplayOrderResponse, type context$a_UpdateBadgesDisplayOrderResponseNonNullableFields as UpdateBadgesDisplayOrderResponseNonNullableFields, WebhookIdentityType$4 as WebhookIdentityType, type context$a__publicOnBadgeAssignedType as _publicOnBadgeAssignedType, type context$a__publicOnBadgeCreatedType as _publicOnBadgeCreatedType, type context$a__publicOnBadgeDeletedType as _publicOnBadgeDeletedType, type context$a__publicOnBadgeUnassignedType as _publicOnBadgeUnassignedType, type context$a__publicOnBadgeUpdatedType as _publicOnBadgeUpdatedType, context$a_assignBadge as assignBadge, context$a_createBadge as createBadge, context$a_deleteBadge as deleteBadge, context$a_getBadge as getBadge, context$a_getMemberCountsPerBadge as getMemberCountsPerBadge, context$a_listBadges as listBadges, context$a_listBadgesPerMember as listBadgesPerMember, context$a_listMembersByBadge as listMembersByBadge, context$a_onBadgeAssigned as onBadgeAssigned, context$a_onBadgeCreated as onBadgeCreated, context$a_onBadgeDeleted as onBadgeDeleted, context$a_onBadgeUnassigned as onBadgeUnassigned, context$a_onBadgeUpdated as onBadgeUpdated, onBadgeAssigned$1 as publicOnBadgeAssigned, onBadgeCreated$1 as publicOnBadgeCreated, onBadgeDeleted$1 as publicOnBadgeDeleted, onBadgeUnassigned$1 as publicOnBadgeUnassigned, onBadgeUpdated$1 as publicOnBadgeUpdated, context$a_unassignBadge as unassignBadge, context$a_updateBadge as updateBadge, context$a_updateBadgesDisplayOrder as updateBadgesDisplayOrder };
1318
+ export { type ActionEvent$5 as ActionEvent, type context$a_AssignBadgeRequest as AssignBadgeRequest, type context$a_AssignBadgeResponse as AssignBadgeResponse, type context$a_AssignBadgeResponseNonNullableFields as AssignBadgeResponseNonNullableFields, type context$a_AssignBadgesRequest as AssignBadgesRequest, type context$a_AssignBadgesResponse as AssignBadgesResponse, type context$a_Badge as Badge, type context$a_BadgeAssigned as BadgeAssigned, type context$a_BadgeAssignedEnvelope as BadgeAssignedEnvelope, type context$a_BadgeCreatedEnvelope as BadgeCreatedEnvelope, type context$a_BadgeDeletedEnvelope as BadgeDeletedEnvelope, type context$a_BadgeMemberCount as BadgeMemberCount, type context$a_BadgeNonNullableFields as BadgeNonNullableFields, type context$a_BadgeUnassigned as BadgeUnassigned, type context$a_BadgeUnassignedEnvelope as BadgeUnassignedEnvelope, type context$a_BadgeUpdatedEnvelope as BadgeUpdatedEnvelope, type BaseEventMetadata$1 as BaseEventMetadata, type context$a_CountBadgesRequest as CountBadgesRequest, type context$a_CountBadgesResponse as CountBadgesResponse, type context$a_CreateBadgeRequest as CreateBadgeRequest, type context$a_CreateBadgeResponse as CreateBadgeResponse, type context$a_CreateBadgeResponseNonNullableFields as CreateBadgeResponseNonNullableFields, type CursorPaging$4 as CursorPaging, type CursorPagingMetadata$2 as CursorPagingMetadata, type Cursors$4 as Cursors, type context$a_DeleteBadgeRequest as DeleteBadgeRequest, type context$a_DeleteBadgeResponse as DeleteBadgeResponse, type DomainEvent$5 as DomainEvent, type DomainEventBodyOneOf$5 as DomainEventBodyOneOf, type EntityCreatedEvent$5 as EntityCreatedEvent, type EntityDeletedEvent$5 as EntityDeletedEvent, type EntityUpdatedEvent$5 as EntityUpdatedEvent, type EventMetadata$1 as EventMetadata, type context$a_GetBadgeRequest as GetBadgeRequest, type context$a_GetBadgeResponse as GetBadgeResponse, type context$a_GetBadgeResponseNonNullableFields as GetBadgeResponseNonNullableFields, type context$a_GetMemberCountsPerBadgeRequest as GetMemberCountsPerBadgeRequest, type context$a_GetMemberCountsPerBadgeResponse as GetMemberCountsPerBadgeResponse, type context$a_GetMemberCountsPerBadgeResponseNonNullableFields as GetMemberCountsPerBadgeResponseNonNullableFields, type IdentificationData$4 as IdentificationData, type IdentificationDataIdOneOf$4 as IdentificationDataIdOneOf, type context$a_ListBadgesOptions as ListBadgesOptions, type context$a_ListBadgesRequest as ListBadgesRequest, type context$a_ListBadgesResponse as ListBadgesResponse, type context$a_ListBadgesResponseNonNullableFields as ListBadgesResponseNonNullableFields, type context$a_ListMembersBadgeIdsRequest as ListMembersBadgeIdsRequest, type context$a_ListMembersBadgeIdsResponse as ListMembersBadgeIdsResponse, type context$a_ListMembersBadgeIdsResponseNonNullableFields as ListMembersBadgeIdsResponseNonNullableFields, type context$a_ListMembersByBadgeOptions as ListMembersByBadgeOptions, type ListMembersRequest$2 as ListMembersRequest, type ListMembersResponse$2 as ListMembersResponse, type ListMembersResponseNonNullableFields$1 as ListMembersResponseNonNullableFields, type context$a_ListMembersWithBadgesRequest as ListMembersWithBadgesRequest, type context$a_ListMembersWithBadgesResponse as ListMembersWithBadgesResponse, type context$a_MemberBadgeIds as MemberBadgeIds, type MessageEnvelope$4 as MessageEnvelope, type Paging$5 as Paging, type PagingMetadata$3 as PagingMetadata, type context$a_QueryBadgesRequest as QueryBadgesRequest, type context$a_QueryBadgesResponse as QueryBadgesResponse, type RestoreInfo$4 as RestoreInfo, SortOrder$4 as SortOrder, type Sorting$5 as Sorting, type context$a_UnassignBadgeRequest as UnassignBadgeRequest, type context$a_UnassignBadgeResponse as UnassignBadgeResponse, type context$a_UpdateBadge as UpdateBadge, type context$a_UpdateBadgeRequest as UpdateBadgeRequest, type context$a_UpdateBadgeResponse as UpdateBadgeResponse, type context$a_UpdateBadgeResponseNonNullableFields as UpdateBadgeResponseNonNullableFields, type context$a_UpdateBadgesDisplayOrderRequest as UpdateBadgesDisplayOrderRequest, type context$a_UpdateBadgesDisplayOrderResponse as UpdateBadgesDisplayOrderResponse, type context$a_UpdateBadgesDisplayOrderResponseNonNullableFields as UpdateBadgesDisplayOrderResponseNonNullableFields, WebhookIdentityType$4 as WebhookIdentityType, type context$a__publicOnBadgeAssignedType as _publicOnBadgeAssignedType, type context$a__publicOnBadgeCreatedType as _publicOnBadgeCreatedType, type context$a__publicOnBadgeDeletedType as _publicOnBadgeDeletedType, type context$a__publicOnBadgeUnassignedType as _publicOnBadgeUnassignedType, type context$a__publicOnBadgeUpdatedType as _publicOnBadgeUpdatedType, context$a_assignBadge as assignBadge, context$a_createBadge as createBadge, context$a_deleteBadge as deleteBadge, context$a_getBadge as getBadge, context$a_getMemberCountsPerBadge as getMemberCountsPerBadge, context$a_listBadges as listBadges, context$a_listBadgesPerMember as listBadgesPerMember, context$a_listMembersByBadge as listMembersByBadge, context$a_onBadgeAssigned as onBadgeAssigned, context$a_onBadgeCreated as onBadgeCreated, context$a_onBadgeDeleted as onBadgeDeleted, context$a_onBadgeUnassigned as onBadgeUnassigned, context$a_onBadgeUpdated as onBadgeUpdated, onBadgeAssigned$1 as publicOnBadgeAssigned, onBadgeCreated$1 as publicOnBadgeCreated, onBadgeDeleted$1 as publicOnBadgeDeleted, onBadgeUnassigned$1 as publicOnBadgeUnassigned, onBadgeUpdated$1 as publicOnBadgeUpdated, context$a_unassignBadge as unassignBadge, context$a_updateBadge as updateBadge, context$a_updateBadgesDisplayOrder as updateBadgesDisplayOrder };
1319
1319
  }
1320
1320
 
1321
1321
  interface Member$1 {
@@ -1491,6 +1491,229 @@ interface Group {
1491
1491
  name?: string;
1492
1492
  type?: string;
1493
1493
  }
1494
+ /** Registration options. */
1495
+ interface RegisterRequest {
1496
+ /** Login email address for the new site member. */
1497
+ email?: string;
1498
+ /**
1499
+ * Password the new site member will use to log in.
1500
+ *
1501
+ * Must be 4 to 15 ASCII-printable characters.
1502
+ */
1503
+ password?: string;
1504
+ /** Contact information for the registered member. */
1505
+ contactInfo?: MemberContactInfo;
1506
+ /**
1507
+ * @internal
1508
+ * @internal */
1509
+ dialogData?: DialogData;
1510
+ /**
1511
+ * Sets the privacy status of a new member upon registration.
1512
+ *
1513
+ * - `PUBLIC`: Member is visible to everyone.
1514
+ * - `PRIVATE`: Member is hidden from site visitors and other site members. Member is returned only to site contributors and apps with the appropriate permissions.
1515
+ * - `UNKNOWN`: Insufficient permissions to get the status.
1516
+ */
1517
+ profilePrivacyStatus?: SiteMemberPrivacyStatus;
1518
+ /**
1519
+ * @internal
1520
+ * @internal */
1521
+ isOfflineRegistration?: boolean;
1522
+ /**
1523
+ * @internal
1524
+ * @internal */
1525
+ recaptchaToken?: string | null;
1526
+ /**
1527
+ * @internal
1528
+ * @internal */
1529
+ invisibleRecaptchaToken?: string | null;
1530
+ /**
1531
+ * @internal
1532
+ * @internal */
1533
+ emailVerification?: EmailVerification;
1534
+ /**
1535
+ * @internal
1536
+ * @internal */
1537
+ isMobile?: boolean | null;
1538
+ }
1539
+ interface MemberContactInfo {
1540
+ /** First name. */
1541
+ firstName?: string | null;
1542
+ /** Last name. */
1543
+ lastName?: string | null;
1544
+ /** Contact's profile picture. */
1545
+ picture?: string | null;
1546
+ /** Contact's email addresses. */
1547
+ emails?: string[];
1548
+ /** Contact's phone numbers. */
1549
+ phones?: string[];
1550
+ /** List of contact's labels. */
1551
+ labels?: string[];
1552
+ /**
1553
+ * @internal
1554
+ * @internal */
1555
+ locale?: string | null;
1556
+ /**
1557
+ * Any number of custom fields.
1558
+ * [Custom fields](https://support.wix.com/en/article/adding-custom-fields-to-contacts)
1559
+ * are used to store additional information about your site's contacts.
1560
+ * When setting a custom field, use key:value pairs,
1561
+ * where the key matches the names defined in your site's
1562
+ * [Contact List](https://support.wix.com/en/article/accessing-your-contact-list).
1563
+ * You can only set values for custom fields that already exist in the Contacts application.
1564
+ */
1565
+ customFields?: CustomField$2[];
1566
+ }
1567
+ interface DialogData {
1568
+ visitorId?: string | null;
1569
+ appId?: string | null;
1570
+ initiator?: string | null;
1571
+ }
1572
+ interface EmailVerification {
1573
+ /** ID of the verification process. */
1574
+ verificationId?: string;
1575
+ /**
1576
+ * 6-digit code for verification. Code can be between 100000 and 999999.
1577
+ *
1578
+ */
1579
+ otp?: string;
1580
+ }
1581
+ interface RegisterResponse {
1582
+ /** Newly registered member. */
1583
+ member?: Member$1;
1584
+ /**
1585
+ * in case the site is open for registration, all members are automatically
1586
+ * approved. they will get a temporary token for obtaining a valid session
1587
+ */
1588
+ session?: Session;
1589
+ /**
1590
+ * in case the site requires members approval, the registered member
1591
+ * will be an applicant until he's approved. the token can be used as a member
1592
+ * identifier for approval using the `MembersService.Approve` API
1593
+ */
1594
+ approvalToken?: string | null;
1595
+ }
1596
+ interface Session {
1597
+ /** Session token when the current member is logged into the site. */
1598
+ token?: string | null;
1599
+ }
1600
+ interface EmailVerificationRequired {
1601
+ /** ID of the verification process. */
1602
+ verificationId?: string;
1603
+ }
1604
+ interface EmailVerificationFailed {
1605
+ /** ID of the failed verification process. */
1606
+ verificationId?: string;
1607
+ /** Reason for verification failure. */
1608
+ verificationFailureReason?: VerificationFailureReason;
1609
+ }
1610
+ declare enum VerificationFailureReason {
1611
+ /** Default value - means no failure */
1612
+ UNSPECIFIED = "UNSPECIFIED",
1613
+ /** Bad verification code */
1614
+ BAD_CODE = "BAD_CODE",
1615
+ /** Verification code was not found */
1616
+ NOT_FOUND = "NOT_FOUND",
1617
+ /** Error while sending the code to the user */
1618
+ SEND_CODE_ERROR = "SEND_CODE_ERROR"
1619
+ }
1620
+ interface LoginRequest {
1621
+ /** Login email address. */
1622
+ email?: string;
1623
+ /** Member password. */
1624
+ password?: string;
1625
+ /**
1626
+ * @internal
1627
+ * @internal */
1628
+ recaptchaToken?: string;
1629
+ /**
1630
+ * @internal
1631
+ * @internal */
1632
+ invisibleRecaptchaToken?: string;
1633
+ /**
1634
+ * @internal
1635
+ * @internal */
1636
+ emailVerification?: EmailVerification;
1637
+ /**
1638
+ * @internal
1639
+ * @internal */
1640
+ isMobile?: boolean | null;
1641
+ }
1642
+ /** Session token for logging the member in. */
1643
+ interface LoginResponse {
1644
+ /** Session token. */
1645
+ session?: Session;
1646
+ /** the member's details */
1647
+ member?: Member$1;
1648
+ }
1649
+ interface GetResetPasswordLinkRequest {
1650
+ /** Contact ID of the member whose password will be reset. */
1651
+ contactId?: string;
1652
+ }
1653
+ interface GetResetPasswordLinkResponse {
1654
+ /**
1655
+ * Reset password link.
1656
+ * Valid for one use, up to two weeks from when it is created.
1657
+ */
1658
+ resetPasswordLink?: string;
1659
+ }
1660
+ interface SendSetPasswordEmailRequest {
1661
+ /** Login email of the member whose password will be set. */
1662
+ email: string;
1663
+ /**
1664
+ * @internal
1665
+ * @internal
1666
+ * @deprecated
1667
+ */
1668
+ requestedByMember?: boolean;
1669
+ /**
1670
+ * Whether to hide the ignore this email message .
1671
+ *
1672
+ * If `true`, the email tells the member
1673
+ * they can safely ignore
1674
+ * if they did not request the password change.
1675
+ *
1676
+ * Default: `false`.
1677
+ */
1678
+ hideIgnoreMessage?: boolean;
1679
+ }
1680
+ interface SendSetPasswordEmailResponse {
1681
+ /** Indicates if the request was successfully received. */
1682
+ accepted?: boolean;
1683
+ }
1684
+ interface ResetPasswordRequest {
1685
+ /** Contact ID of the member whose password will be reset. */
1686
+ contactId?: string;
1687
+ }
1688
+ interface ResetPasswordResponse {
1689
+ /** Indicates if the request was successfully received. */
1690
+ accepted?: boolean;
1691
+ }
1692
+ interface SocialLoginRequest extends SocialLoginRequestLoginOneOf {
1693
+ appleLogin?: AppleLogin;
1694
+ googleLogin?: GoogleLogin;
1695
+ facebookLogin?: FacebookLogin;
1696
+ /** Must either pass explicit msid OR signed instance with visitor */
1697
+ metaSiteId?: string | null;
1698
+ }
1699
+ /** @oneof */
1700
+ interface SocialLoginRequestLoginOneOf {
1701
+ appleLogin?: AppleLogin;
1702
+ googleLogin?: GoogleLogin;
1703
+ facebookLogin?: FacebookLogin;
1704
+ }
1705
+ interface AppleLogin {
1706
+ /** JWT signed by apple, contains target (aud), email etc */
1707
+ token?: string;
1708
+ }
1709
+ interface GoogleLogin {
1710
+ /** JWT signed by Google, contains target (aud), email etc */
1711
+ token?: string;
1712
+ }
1713
+ interface FacebookLogin {
1714
+ /** AccessToken created by Facebook, used to later fetch details over API */
1715
+ token?: string;
1716
+ }
1494
1717
  interface ListMembersRequest$1 {
1495
1718
  /** for paging - maximum number of records to retrieve */
1496
1719
  limit?: number;
@@ -1692,285 +1915,62 @@ interface DeleteMemberRequest$1 {
1692
1915
  /** id of member that should be deleted (required) */
1693
1916
  _id?: string;
1694
1917
  /** defines if the request is a bulk action */
1695
- isBulkAction?: boolean;
1696
- }
1697
- interface DeleteMemberResponse$1 {
1698
- }
1699
- interface ApproveMemberRequest$1 extends ApproveMemberRequestMemberIdentifierOneOf {
1700
- /** ID of the member to approve. */
1701
- _id?: string;
1702
- /** Login email address of the member to approve. */
1703
- email?: string;
1704
- /** Approval token returned by the [`register()`](#register) function. */
1705
- token?: string;
1706
- }
1707
- /** @oneof */
1708
- interface ApproveMemberRequestMemberIdentifierOneOf {
1709
- /** ID of the member to approve. */
1710
- _id?: string;
1711
- /** Login email address of the member to approve. */
1712
- email?: string;
1713
- /**
1714
- * <!--ONLY:VELO
1715
- * Approval token returned by `register()`.
1716
- * <!--END:ONLY:VELO-->
1717
- */
1718
- token?: string;
1719
- }
1720
- interface ApproveMemberResponse$1 {
1721
- /** Approval session token. */
1722
- session?: Session;
1723
- }
1724
- interface Session {
1725
- /** Session token when the current member is logged into the site. */
1726
- token?: string | null;
1727
- }
1728
- interface BlockMemberRequest$2 extends BlockMemberRequestMemberIdentifierOneOf {
1729
- /** ID of the member to block. */
1730
- _id?: string;
1731
- /** Login email address of the member to block. */
1732
- email?: string;
1733
- /**
1734
- * @internal
1735
- * @internal */
1736
- source?: Source;
1737
- }
1738
- /** @oneof */
1739
- interface BlockMemberRequestMemberIdentifierOneOf {
1740
- _id?: string;
1741
- /** Login email address of the member to block. */
1742
- email?: string;
1743
- }
1744
- declare enum Source {
1745
- UNKNOWN = "UNKNOWN",
1746
- HANDLING_SPAM = "HANDLING_SPAM"
1747
- }
1748
- interface BlockMemberResponse$2 {
1749
- }
1750
- interface MakeMemberOfflineRequest {
1751
- /** unique identifier of the requested member */
1752
- _id?: string;
1753
- }
1754
- interface MakeMemberOfflineResponse {
1755
- }
1756
- /** Registration options. */
1757
- interface RegisterRequest {
1758
- /** Login email address for the new site member. */
1759
- email?: string;
1760
- /**
1761
- * Password the new site member will use to log in.
1762
- *
1763
- * Must be 4 to 15 ASCII-printable characters.
1764
- */
1765
- password?: string;
1766
- /** Contact information for the registered member. */
1767
- contactInfo?: MemberContactInfo;
1768
- /**
1769
- * @internal
1770
- * @internal */
1771
- dialogData?: DialogData;
1772
- /**
1773
- * Sets the privacy status of a new member upon registration.
1774
- *
1775
- * - `PUBLIC`: Member is visible to everyone.
1776
- * - `PRIVATE`: Member is hidden from site visitors and other site members. Member is returned only to site contributors and apps with the appropriate permissions.
1777
- * - `UNKNOWN`: Insufficient permissions to get the status.
1778
- */
1779
- profilePrivacyStatus?: SiteMemberPrivacyStatus;
1780
- /**
1781
- * @internal
1782
- * @internal */
1783
- isOfflineRegistration?: boolean;
1784
- /**
1785
- * @internal
1786
- * @internal */
1787
- recaptchaToken?: string | null;
1788
- /**
1789
- * @internal
1790
- * @internal */
1791
- invisibleRecaptchaToken?: string | null;
1792
- /**
1793
- * @internal
1794
- * @internal */
1795
- emailVerification?: EmailVerification;
1796
- /**
1797
- * @internal
1798
- * @internal */
1799
- isMobile?: boolean | null;
1800
- }
1801
- interface MemberContactInfo {
1802
- /** First name. */
1803
- firstName?: string | null;
1804
- /** Last name. */
1805
- lastName?: string | null;
1806
- /** Contact's profile picture. */
1807
- picture?: string | null;
1808
- /** Contact's email addresses. */
1809
- emails?: string[];
1810
- /** Contact's phone numbers. */
1811
- phones?: string[];
1812
- /** List of contact's labels. */
1813
- labels?: string[];
1814
- /**
1815
- * @internal
1816
- * @internal */
1817
- locale?: string | null;
1818
- /**
1819
- * Any number of custom fields.
1820
- * [Custom fields](https://support.wix.com/en/article/adding-custom-fields-to-contacts)
1821
- * are used to store additional information about your site's contacts.
1822
- * When setting a custom field, use key:value pairs,
1823
- * where the key matches the names defined in your site's
1824
- * [Contact List](https://support.wix.com/en/article/accessing-your-contact-list).
1825
- * You can only set values for custom fields that already exist in the Contacts application.
1826
- */
1827
- customFields?: CustomField$2[];
1828
- }
1829
- interface DialogData {
1830
- visitorId?: string | null;
1831
- appId?: string | null;
1832
- initiator?: string | null;
1833
- }
1834
- interface EmailVerification {
1835
- /** ID of the verification process. */
1836
- verificationId?: string;
1837
- /**
1838
- * 6-digit code for verification. Code can be between 100000 and 999999.
1839
- *
1840
- */
1841
- otp?: string;
1842
- }
1843
- interface RegisterResponse {
1844
- /** Newly registered member. */
1845
- member?: Member$1;
1846
- /**
1847
- * in case the site is open for registration, all members are automatically
1848
- * approved. they will get a temporary token for obtaining a valid session
1849
- */
1850
- session?: Session;
1851
- /**
1852
- * in case the site requires members approval, the registered member
1853
- * will be an applicant until he's approved. the token can be used as a member
1854
- * identifier for approval using the `MembersService.Approve` API
1855
- */
1856
- approvalToken?: string | null;
1857
- }
1858
- interface EmailVerificationRequired {
1859
- /** ID of the verification process. */
1860
- verificationId?: string;
1861
- }
1862
- interface EmailVerificationFailed {
1863
- /** ID of the failed verification process. */
1864
- verificationId?: string;
1865
- /** Reason for verification failure. */
1866
- verificationFailureReason?: VerificationFailureReason;
1867
- }
1868
- declare enum VerificationFailureReason {
1869
- /** Default value - means no failure */
1870
- UNSPECIFIED = "UNSPECIFIED",
1871
- /** Bad verification code */
1872
- BAD_CODE = "BAD_CODE",
1873
- /** Verification code was not found */
1874
- NOT_FOUND = "NOT_FOUND",
1875
- /** Error while sending the code to the user */
1876
- SEND_CODE_ERROR = "SEND_CODE_ERROR"
1877
- }
1878
- interface LoginRequest {
1879
- /** Login email address. */
1880
- email?: string;
1881
- /** Member password. */
1882
- password?: string;
1883
- /**
1884
- * @internal
1885
- * @internal */
1886
- recaptchaToken?: string;
1887
- /**
1888
- * @internal
1889
- * @internal */
1890
- invisibleRecaptchaToken?: string;
1891
- /**
1892
- * @internal
1893
- * @internal */
1894
- emailVerification?: EmailVerification;
1895
- /**
1896
- * @internal
1897
- * @internal */
1898
- isMobile?: boolean | null;
1899
- }
1900
- /** Session token for logging the member in. */
1901
- interface LoginResponse {
1902
- /** Session token. */
1903
- session?: Session;
1904
- /** the member's details */
1905
- member?: Member$1;
1918
+ isBulkAction?: boolean;
1906
1919
  }
1907
- interface GetResetPasswordLinkRequest {
1908
- /** Contact ID of the member whose password will be reset. */
1909
- contactId?: string;
1920
+ interface DeleteMemberResponse$1 {
1910
1921
  }
1911
- interface GetResetPasswordLinkResponse {
1912
- /**
1913
- * Reset password link.
1914
- * Valid for one use, up to two weeks from when it is created.
1915
- */
1916
- resetPasswordLink?: string;
1922
+ interface ApproveMemberRequest$1 extends ApproveMemberRequestMemberIdentifierOneOf {
1923
+ /** ID of the member to approve. */
1924
+ _id?: string;
1925
+ /** Login email address of the member to approve. */
1926
+ email?: string;
1927
+ /** Approval token returned by the [`register()`](#register) function. */
1928
+ token?: string;
1917
1929
  }
1918
- interface SendSetPasswordEmailRequest {
1919
- /** Login email of the member whose password will be set. */
1920
- email: string;
1921
- /**
1922
- * @internal
1923
- * @internal
1924
- * @deprecated
1925
- */
1926
- requestedByMember?: boolean;
1930
+ /** @oneof */
1931
+ interface ApproveMemberRequestMemberIdentifierOneOf {
1932
+ /** ID of the member to approve. */
1933
+ _id?: string;
1934
+ /** Login email address of the member to approve. */
1935
+ email?: string;
1927
1936
  /**
1928
- * Whether to hide the ignore this email message .
1929
- *
1930
- * If `true`, the email tells the member
1931
- * they can safely ignore
1932
- * if they did not request the password change.
1933
- *
1934
- * Default: `false`.
1937
+ * <!--ONLY:VELO
1938
+ * Approval token returned by `register()`.
1939
+ * <!--END:ONLY:VELO-->
1935
1940
  */
1936
- hideIgnoreMessage?: boolean;
1937
- }
1938
- interface SendSetPasswordEmailResponse {
1939
- /** Indicates if the request was successfully received. */
1940
- accepted?: boolean;
1941
- }
1942
- interface ResetPasswordRequest {
1943
- /** Contact ID of the member whose password will be reset. */
1944
- contactId?: string;
1941
+ token?: string;
1945
1942
  }
1946
- interface ResetPasswordResponse {
1947
- /** Indicates if the request was successfully received. */
1948
- accepted?: boolean;
1943
+ interface ApproveMemberResponse$1 {
1944
+ /** Approval session token. */
1945
+ session?: Session;
1949
1946
  }
1950
- interface SocialLoginRequest extends SocialLoginRequestLoginOneOf {
1951
- appleLogin?: AppleLogin;
1952
- googleLogin?: GoogleLogin;
1953
- facebookLogin?: FacebookLogin;
1954
- /** Must either pass explicit msid OR signed instance with visitor */
1955
- metaSiteId?: string | null;
1947
+ interface BlockMemberRequest$2 extends BlockMemberRequestMemberIdentifierOneOf {
1948
+ /** ID of the member to block. */
1949
+ _id?: string;
1950
+ /** Login email address of the member to block. */
1951
+ email?: string;
1952
+ /**
1953
+ * @internal
1954
+ * @internal */
1955
+ source?: Source;
1956
1956
  }
1957
1957
  /** @oneof */
1958
- interface SocialLoginRequestLoginOneOf {
1959
- appleLogin?: AppleLogin;
1960
- googleLogin?: GoogleLogin;
1961
- facebookLogin?: FacebookLogin;
1958
+ interface BlockMemberRequestMemberIdentifierOneOf {
1959
+ _id?: string;
1960
+ /** Login email address of the member to block. */
1961
+ email?: string;
1962
1962
  }
1963
- interface AppleLogin {
1964
- /** JWT signed by apple, contains target (aud), email etc */
1965
- token?: string;
1963
+ declare enum Source {
1964
+ UNKNOWN = "UNKNOWN",
1965
+ HANDLING_SPAM = "HANDLING_SPAM"
1966
1966
  }
1967
- interface GoogleLogin {
1968
- /** JWT signed by Google, contains target (aud), email etc */
1969
- token?: string;
1967
+ interface BlockMemberResponse$2 {
1970
1968
  }
1971
- interface FacebookLogin {
1972
- /** AccessToken created by Facebook, used to later fetch details over API */
1973
- token?: string;
1969
+ interface MakeMemberOfflineRequest {
1970
+ /** unique identifier of the requested member */
1971
+ _id?: string;
1972
+ }
1973
+ interface MakeMemberOfflineResponse {
1974
1974
  }
1975
1975
  interface CustomFieldNonNullableFields$1 {
1976
1976
  numValue: number;
@@ -1994,9 +1994,6 @@ interface MemberNonNullableFields$1 {
1994
1994
  picture: string;
1995
1995
  groups: GroupNonNullableFields[];
1996
1996
  }
1997
- interface ChangeLoginEmailResponseNonNullableFields {
1998
- member?: MemberNonNullableFields$1;
1999
- }
2000
1997
  interface RegisterResponseNonNullableFields {
2001
1998
  member?: MemberNonNullableFields$1;
2002
1999
  }
@@ -2006,29 +2003,8 @@ interface LoginResponseNonNullableFields {
2006
2003
  interface SendSetPasswordEmailResponseNonNullableFields {
2007
2004
  accepted: boolean;
2008
2005
  }
2009
- interface ChangeLoginEmailOptions {
2010
- /**
2011
- * @internal
2012
- * @internal */
2013
- revokeCurrentSessions?: boolean | null;
2014
- }
2015
- interface ApproveOptions extends ApproveMemberRequestMemberIdentifierOneOf {
2016
- /** ID of the member to approve. */
2017
- _id?: string;
2018
- /** Login email address of the member to approve. */
2019
- email?: string;
2020
- /** Approval token returned by the [`register()`](#register) function. */
2021
- token?: string;
2022
- }
2023
- interface BlockOptions extends BlockMemberRequestMemberIdentifierOneOf {
2024
- /** ID of the member to block. */
2025
- _id?: string;
2026
- /** Login email address of the member to block. */
2027
- email?: string;
2028
- /**
2029
- * @internal
2030
- * @internal */
2031
- source?: Source;
2006
+ interface ChangeLoginEmailResponseNonNullableFields {
2007
+ member?: MemberNonNullableFields$1;
2032
2008
  }
2033
2009
  interface RegisterOptions {
2034
2010
  /** Contact information for the registered member. */
@@ -2084,51 +2060,31 @@ interface SendSetPasswordEmailOptions {
2084
2060
  */
2085
2061
  hideIgnoreMessage?: boolean;
2086
2062
  }
2087
-
2088
- declare function changeLoginEmail$1(httpClient: HttpClient): ChangeLoginEmailSignature;
2089
- interface ChangeLoginEmailSignature {
2063
+ interface ChangeLoginEmailOptions {
2090
2064
  /**
2091
- * Changes a member's login email address.
2092
- *
2093
- * After running this function, the specified member can log in with the new email address. If the member uses social login (for example, Google login) and the member tries to log in with the old email address, they will be re-registered with the old email address.
2094
- *
2095
- * Site collaborators can use `changeLoginEmail()` to change another member's login email. Members who are not site collaborators can use `changeLoginEmail()` to change their own login email only.
2096
- *
2097
- * > **Note:** `changeLoginEmail()` cannot be used to change the login email of a site collaborator. Site collaborators can change their login emails from their Wix [account settings](https://manage.wix.com/account/account-settings).
2098
- * @param - Member ID.
2099
- * @param - New login email address.
2100
- * @param - Options for changing a login email address.
2101
- */
2102
- (_id: string, newEmail: string, options?: ChangeLoginEmailOptions | undefined): Promise<ChangeLoginEmailResponse & ChangeLoginEmailResponseNonNullableFields>;
2065
+ * @internal
2066
+ * @internal */
2067
+ revokeCurrentSessions?: boolean | null;
2103
2068
  }
2104
- declare function approve$1(httpClient: HttpClient): ApproveSignature;
2105
- interface ApproveSignature {
2106
- /**
2107
- * Approves a pending member using an ID, email address or approval token.
2108
- *
2109
- * Tokens must be approved within 30 hours of token creation.
2110
- * Use the `approvalToken` parameter returned from the
2111
- * [`register()`](#register) function when approving a member by `token`.
2112
- *
2113
- * > **Note:**
2114
- * > A new member's status is `"PENDING"` when the site's membership policy is set to manual approval.
2115
- * > To learn more about setting your site's membership approval policy, see
2116
- * > [Editing Your Member Signup Settings](https://support.wix.com/en/article/editing-your-member-signup-settings-for-the-default-form).
2117
- *
2118
- * Members are typically associated with a contact, each having a distinct member and contact ID. When passing the ID as a parameter, avoid presuming the IDs are identical since they represent separate entities.
2119
- */
2120
- (options?: ApproveOptions | undefined): Promise<ApproveMemberResponse$1>;
2069
+ interface ApproveOptions extends ApproveMemberRequestMemberIdentifierOneOf {
2070
+ /** ID of the member to approve. */
2071
+ _id?: string;
2072
+ /** Login email address of the member to approve. */
2073
+ email?: string;
2074
+ /** Approval token returned by the [`register()`](#register) function. */
2075
+ token?: string;
2121
2076
  }
2122
- declare function block$1(httpClient: HttpClient): BlockSignature;
2123
- interface BlockSignature {
2077
+ interface BlockOptions extends BlockMemberRequestMemberIdentifierOneOf {
2078
+ /** ID of the member to block. */
2079
+ _id?: string;
2080
+ /** Login email address of the member to block. */
2081
+ email?: string;
2124
2082
  /**
2125
- * Blocks a member from logging in to the site using an ID or email address.
2126
- *
2127
- * To unblock the member and allow them to log in to the site, use the [`approve()`](#approve) function.
2128
- * @param - Options for blocking a member from logging in.
2129
- */
2130
- (options?: BlockOptions | undefined): Promise<void>;
2083
+ * @internal
2084
+ * @internal */
2085
+ source?: Source;
2131
2086
  }
2087
+
2132
2088
  declare function register$1(httpClient: HttpClient): RegisterSignature;
2133
2089
  interface RegisterSignature {
2134
2090
  /**
@@ -2173,13 +2129,57 @@ interface SendSetPasswordEmailSignature {
2173
2129
  */
2174
2130
  (email: string, options?: SendSetPasswordEmailOptions | undefined): Promise<SendSetPasswordEmailResponse & SendSetPasswordEmailResponseNonNullableFields>;
2175
2131
  }
2132
+ declare function changeLoginEmail$1(httpClient: HttpClient): ChangeLoginEmailSignature;
2133
+ interface ChangeLoginEmailSignature {
2134
+ /**
2135
+ * Changes a member's login email address.
2136
+ *
2137
+ * After running this function, the specified member can log in with the new email address. If the member uses social login (for example, Google login) and the member tries to log in with the old email address, they will be re-registered with the old email address.
2138
+ *
2139
+ * Site collaborators can use `changeLoginEmail()` to change another member's login email. Members who are not site collaborators can use `changeLoginEmail()` to change their own login email only.
2140
+ *
2141
+ * > **Note:** `changeLoginEmail()` cannot be used to change the login email of a site collaborator. Site collaborators can change their login emails from their Wix [account settings](https://manage.wix.com/account/account-settings).
2142
+ * @param - Member ID.
2143
+ * @param - New login email address.
2144
+ * @param - Options for changing a login email address.
2145
+ */
2146
+ (_id: string, newEmail: string, options?: ChangeLoginEmailOptions | undefined): Promise<ChangeLoginEmailResponse & ChangeLoginEmailResponseNonNullableFields>;
2147
+ }
2148
+ declare function approve$1(httpClient: HttpClient): ApproveSignature;
2149
+ interface ApproveSignature {
2150
+ /**
2151
+ * Approves a pending member using an ID, email address or approval token.
2152
+ *
2153
+ * Tokens must be approved within 30 hours of token creation.
2154
+ * Use the `approvalToken` parameter returned from the
2155
+ * [`register()`](#register) function when approving a member by `token`.
2156
+ *
2157
+ * > **Note:**
2158
+ * > A new member's status is `"PENDING"` when the site's membership policy is set to manual approval.
2159
+ * > To learn more about setting your site's membership approval policy, see
2160
+ * > [Editing Your Member Signup Settings](https://support.wix.com/en/article/editing-your-member-signup-settings-for-the-default-form).
2161
+ *
2162
+ * Members are typically associated with a contact, each having a distinct member and contact ID. When passing the ID as a parameter, avoid presuming the IDs are identical since they represent separate entities.
2163
+ */
2164
+ (options?: ApproveOptions | undefined): Promise<ApproveMemberResponse$1>;
2165
+ }
2166
+ declare function block$1(httpClient: HttpClient): BlockSignature;
2167
+ interface BlockSignature {
2168
+ /**
2169
+ * Blocks a member from logging in to the site using an ID or email address.
2170
+ *
2171
+ * To unblock the member and allow them to log in to the site, use the [`approve()`](#approve) function.
2172
+ * @param - Options for blocking a member from logging in.
2173
+ */
2174
+ (options?: BlockOptions | undefined): Promise<void>;
2175
+ }
2176
2176
 
2177
- declare const changeLoginEmail: MaybeContext<BuildRESTFunction<typeof changeLoginEmail$1> & typeof changeLoginEmail$1>;
2178
- declare const approve: MaybeContext<BuildRESTFunction<typeof approve$1> & typeof approve$1>;
2179
- declare const block: MaybeContext<BuildRESTFunction<typeof block$1> & typeof block$1>;
2180
2177
  declare const register: MaybeContext<BuildRESTFunction<typeof register$1> & typeof register$1>;
2181
2178
  declare const login: MaybeContext<BuildRESTFunction<typeof login$1> & typeof login$1>;
2182
2179
  declare const sendSetPasswordEmail: MaybeContext<BuildRESTFunction<typeof sendSetPasswordEmail$1> & typeof sendSetPasswordEmail$1>;
2180
+ declare const changeLoginEmail: MaybeContext<BuildRESTFunction<typeof changeLoginEmail$1> & typeof changeLoginEmail$1>;
2181
+ declare const approve: MaybeContext<BuildRESTFunction<typeof approve$1> & typeof approve$1>;
2182
+ declare const block: MaybeContext<BuildRESTFunction<typeof block$1> & typeof block$1>;
2183
2183
 
2184
2184
  type context$9_AppleLogin = AppleLogin;
2185
2185
  type context$9_ApproveMemberRequestMemberIdentifierOneOf = ApproveMemberRequestMemberIdentifierOneOf;
@@ -2479,7 +2479,7 @@ interface DomainEventBodyOneOf$4 {
2479
2479
  interface EntityCreatedEvent$4 {
2480
2480
  entity?: string;
2481
2481
  }
2482
- interface RestoreInfo$4 {
2482
+ interface RestoreInfo$3 {
2483
2483
  deletedDate?: Date | null;
2484
2484
  }
2485
2485
  interface EntityUpdatedEvent$4 {
@@ -2875,7 +2875,7 @@ type context$8_UserMembersQueryBuilder = UserMembersQueryBuilder;
2875
2875
  type context$8_UserMembersQueryResult = UserMembersQueryResult;
2876
2876
  declare const context$8_queryUserMembers: typeof queryUserMembers;
2877
2877
  declare namespace context$8 {
2878
- export { type ActionEvent$4 as ActionEvent, ActivityStatusStatus$1 as ActivityStatusStatus, type Asset$3 as Asset, type CursorPaging$3 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type context$8_CursorQuery as CursorQuery, type context$8_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type Cursors$3 as Cursors, type DeleteContext$3 as DeleteContext, DeleteStatus$3 as DeleteStatus, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type Empty$6 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type Image$1 as Image, type MetaSiteSpecialEvent$3 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$3 as MetaSiteSpecialEventPayloadOneOf, Namespace$3 as Namespace, type NamespaceChanged$3 as NamespaceChanged, PrivacyStatusStatus$1 as PrivacyStatusStatus, type context$8_QueryUserMembersRequest as QueryUserMembersRequest, type context$8_QueryUserMembersResponse as QueryUserMembersResponse, type context$8_QueryUserMembersResponseNonNullableFields as QueryUserMembersResponseNonNullableFields, type RestoreInfo$4 as RestoreInfo, type ServiceProvisioned$3 as ServiceProvisioned, type ServiceRemoved$3 as ServiceRemoved, type SiteCreated$3 as SiteCreated, SiteCreatedContext$3 as SiteCreatedContext, type SiteDeleted$3 as SiteDeleted, type SiteHardDeleted$3 as SiteHardDeleted, type SiteMarkedAsTemplate$3 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$3 as SiteMarkedAsWixSite, type SitePublished$3 as SitePublished, type SiteRenamed$3 as SiteRenamed, type SiteTransferred$3 as SiteTransferred, type SiteUndeleted$3 as SiteUndeleted, type SiteUnpublished$3 as SiteUnpublished, SortOrder$3 as SortOrder, type Sorting$3 as Sorting, State$3 as State, Status$1 as Status, type StudioAssigned$3 as StudioAssigned, type StudioUnassigned$3 as StudioUnassigned, type context$8_UserMember as UserMember, type context$8_UserMembersQueryBuilder as UserMembersQueryBuilder, type context$8_UserMembersQueryResult as UserMembersQueryResult, context$8_queryUserMembers as queryUserMembers };
2878
+ export { type ActionEvent$4 as ActionEvent, ActivityStatusStatus$1 as ActivityStatusStatus, type Asset$3 as Asset, type CursorPaging$3 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type context$8_CursorQuery as CursorQuery, type context$8_CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOf, type Cursors$3 as Cursors, type DeleteContext$3 as DeleteContext, DeleteStatus$3 as DeleteStatus, type DomainEvent$4 as DomainEvent, type DomainEventBodyOneOf$4 as DomainEventBodyOneOf, type Empty$6 as Empty, type EntityCreatedEvent$4 as EntityCreatedEvent, type EntityDeletedEvent$4 as EntityDeletedEvent, type EntityUpdatedEvent$4 as EntityUpdatedEvent, type Image$1 as Image, type MetaSiteSpecialEvent$3 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$3 as MetaSiteSpecialEventPayloadOneOf, Namespace$3 as Namespace, type NamespaceChanged$3 as NamespaceChanged, PrivacyStatusStatus$1 as PrivacyStatusStatus, type context$8_QueryUserMembersRequest as QueryUserMembersRequest, type context$8_QueryUserMembersResponse as QueryUserMembersResponse, type context$8_QueryUserMembersResponseNonNullableFields as QueryUserMembersResponseNonNullableFields, type RestoreInfo$3 as RestoreInfo, type ServiceProvisioned$3 as ServiceProvisioned, type ServiceRemoved$3 as ServiceRemoved, type SiteCreated$3 as SiteCreated, SiteCreatedContext$3 as SiteCreatedContext, type SiteDeleted$3 as SiteDeleted, type SiteHardDeleted$3 as SiteHardDeleted, type SiteMarkedAsTemplate$3 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$3 as SiteMarkedAsWixSite, type SitePublished$3 as SitePublished, type SiteRenamed$3 as SiteRenamed, type SiteTransferred$3 as SiteTransferred, type SiteUndeleted$3 as SiteUndeleted, type SiteUnpublished$3 as SiteUnpublished, SortOrder$3 as SortOrder, type Sorting$3 as Sorting, State$3 as State, Status$1 as Status, type StudioAssigned$3 as StudioAssigned, type StudioUnassigned$3 as StudioUnassigned, type context$8_UserMember as UserMember, type context$8_UserMembersQueryBuilder as UserMembersQueryBuilder, type context$8_UserMembersQueryResult as UserMembersQueryResult, context$8_queryUserMembers as queryUserMembers };
2879
2879
  }
2880
2880
 
2881
2881
  /** Custom field */
@@ -3103,10 +3103,7 @@ interface MetaSiteSpecialEvent$2 extends MetaSiteSpecialEventPayloadOneOf$2 {
3103
3103
  version?: string;
3104
3104
  /** A timestamp of the event. */
3105
3105
  timestamp?: string;
3106
- /**
3107
- * TODO(meta-site): Change validation once validations are disabled for consumers
3108
- * More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
3109
- */
3106
+ /** A list of "assets" (applications). The same as MetaSiteContext. */
3110
3107
  assets?: Asset$2[];
3111
3108
  }
3112
3109
  /** @oneof */
@@ -3403,7 +3400,7 @@ interface DomainEventBodyOneOf$3 {
3403
3400
  interface EntityCreatedEvent$3 {
3404
3401
  entity?: string;
3405
3402
  }
3406
- interface RestoreInfo$3 {
3403
+ interface RestoreInfo$2 {
3407
3404
  deletedDate?: Date | null;
3408
3405
  }
3409
3406
  interface EntityUpdatedEvent$3 {
@@ -3666,7 +3663,7 @@ declare const context$7_listCustomFields: typeof listCustomFields;
3666
3663
  declare const context$7_updateCustomField: typeof updateCustomField;
3667
3664
  declare const context$7_updateCustomFieldsOrder: typeof updateCustomFieldsOrder;
3668
3665
  declare namespace context$7 {
3669
- export { type ActionEvent$3 as ActionEvent, context$7_AppliesTo as AppliesTo, type Asset$2 as Asset, type context$7_CreateCustomFieldRequest as CreateCustomFieldRequest, type context$7_CreateCustomFieldResponse as CreateCustomFieldResponse, type context$7_CreateCustomFieldResponseNonNullableFields as CreateCustomFieldResponseNonNullableFields, type CustomField$1 as CustomField, type context$7_CustomFieldNonNullableFields as CustomFieldNonNullableFields, type context$7_DefaultPrivacyChanged as DefaultPrivacyChanged, type DeleteContext$2 as DeleteContext, type context$7_DeleteCustomFieldRequest as DeleteCustomFieldRequest, type context$7_DeleteCustomFieldResponse as DeleteCustomFieldResponse, DeleteStatus$2 as DeleteStatus, type DomainEvent$3 as DomainEvent, type DomainEventBodyOneOf$3 as DomainEventBodyOneOf, type Empty$5 as Empty, type EntityCreatedEvent$3 as EntityCreatedEvent, type EntityDeletedEvent$3 as EntityDeletedEvent, type EntityUpdatedEvent$3 as EntityUpdatedEvent, type context$7_GetCustomFieldRequest as GetCustomFieldRequest, type context$7_GetCustomFieldResponse as GetCustomFieldResponse, type context$7_GetCustomFieldResponseNonNullableFields as GetCustomFieldResponseNonNullableFields, type context$7_HideCustomFieldRequest as HideCustomFieldRequest, type context$7_HideCustomFieldResponse as HideCustomFieldResponse, type IdentificationData$3 as IdentificationData, type IdentificationDataIdOneOf$3 as IdentificationDataIdOneOf, type context$7_IncorrectFieldTypeData as IncorrectFieldTypeData, type context$7_IncorrectPrivacyData as IncorrectPrivacyData, type context$7_InvalidSocialTypeData as InvalidSocialTypeData, type context$7_ListCustomFieldsOptions as ListCustomFieldsOptions, type context$7_ListCustomFieldsRequest as ListCustomFieldsRequest, type context$7_ListCustomFieldsResponse as ListCustomFieldsResponse, type context$7_ListCustomFieldsResponseNonNullableFields as ListCustomFieldsResponseNonNullableFields, type MessageEnvelope$3 as MessageEnvelope, type MetaSiteSpecialEvent$2 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$2 as MetaSiteSpecialEventPayloadOneOf, Namespace$2 as Namespace, type NamespaceChanged$2 as NamespaceChanged, Origin$1 as Origin, type Paging$3 as Paging, type PagingMetadata$2 as PagingMetadata, Privacy$2 as Privacy, type context$7_ReservedFieldNameNonEditable as ReservedFieldNameNonEditable, type RestoreInfo$3 as RestoreInfo, context$7_Section as Section, type ServiceProvisioned$2 as ServiceProvisioned, type ServiceRemoved$2 as ServiceRemoved, type SiteCreated$2 as SiteCreated, SiteCreatedContext$2 as SiteCreatedContext, type SiteDeleted$2 as SiteDeleted, type SiteHardDeleted$2 as SiteHardDeleted, type SiteMarkedAsTemplate$2 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$2 as SiteMarkedAsWixSite, type SitePublished$2 as SitePublished, type SiteRenamed$2 as SiteRenamed, type SiteTransferred$2 as SiteTransferred, type SiteUndeleted$2 as SiteUndeleted, type SiteUnpublished$2 as SiteUnpublished, SocialTypeType$1 as SocialTypeType, State$2 as State, type StudioAssigned$2 as StudioAssigned, type StudioUnassigned$2 as StudioUnassigned, Type$1 as Type, type context$7_UpdateCustomField as UpdateCustomField, type context$7_UpdateCustomFieldRequest as UpdateCustomFieldRequest, type context$7_UpdateCustomFieldResponse as UpdateCustomFieldResponse, type context$7_UpdateCustomFieldResponseNonNullableFields as UpdateCustomFieldResponseNonNullableFields, type context$7_UpdateCustomFieldsOrderOptions as UpdateCustomFieldsOrderOptions, type context$7_UpdateCustomFieldsOrderRequest as UpdateCustomFieldsOrderRequest, type context$7_UpdateCustomFieldsOrderResponse as UpdateCustomFieldsOrderResponse, type context$7_UpdateCustomFieldsOrderResponseNonNullableFields as UpdateCustomFieldsOrderResponseNonNullableFields, WebhookIdentityType$3 as WebhookIdentityType, context$7_createCustomField as createCustomField, context$7_deleteCustomField as deleteCustomField, context$7_getCustomField as getCustomField, context$7_hideCustomField as hideCustomField, context$7_listCustomFields as listCustomFields, context$7_updateCustomField as updateCustomField, context$7_updateCustomFieldsOrder as updateCustomFieldsOrder };
3666
+ export { type ActionEvent$3 as ActionEvent, context$7_AppliesTo as AppliesTo, type Asset$2 as Asset, type context$7_CreateCustomFieldRequest as CreateCustomFieldRequest, type context$7_CreateCustomFieldResponse as CreateCustomFieldResponse, type context$7_CreateCustomFieldResponseNonNullableFields as CreateCustomFieldResponseNonNullableFields, type CustomField$1 as CustomField, type context$7_CustomFieldNonNullableFields as CustomFieldNonNullableFields, type context$7_DefaultPrivacyChanged as DefaultPrivacyChanged, type DeleteContext$2 as DeleteContext, type context$7_DeleteCustomFieldRequest as DeleteCustomFieldRequest, type context$7_DeleteCustomFieldResponse as DeleteCustomFieldResponse, DeleteStatus$2 as DeleteStatus, type DomainEvent$3 as DomainEvent, type DomainEventBodyOneOf$3 as DomainEventBodyOneOf, type Empty$5 as Empty, type EntityCreatedEvent$3 as EntityCreatedEvent, type EntityDeletedEvent$3 as EntityDeletedEvent, type EntityUpdatedEvent$3 as EntityUpdatedEvent, type context$7_GetCustomFieldRequest as GetCustomFieldRequest, type context$7_GetCustomFieldResponse as GetCustomFieldResponse, type context$7_GetCustomFieldResponseNonNullableFields as GetCustomFieldResponseNonNullableFields, type context$7_HideCustomFieldRequest as HideCustomFieldRequest, type context$7_HideCustomFieldResponse as HideCustomFieldResponse, type IdentificationData$3 as IdentificationData, type IdentificationDataIdOneOf$3 as IdentificationDataIdOneOf, type context$7_IncorrectFieldTypeData as IncorrectFieldTypeData, type context$7_IncorrectPrivacyData as IncorrectPrivacyData, type context$7_InvalidSocialTypeData as InvalidSocialTypeData, type context$7_ListCustomFieldsOptions as ListCustomFieldsOptions, type context$7_ListCustomFieldsRequest as ListCustomFieldsRequest, type context$7_ListCustomFieldsResponse as ListCustomFieldsResponse, type context$7_ListCustomFieldsResponseNonNullableFields as ListCustomFieldsResponseNonNullableFields, type MessageEnvelope$3 as MessageEnvelope, type MetaSiteSpecialEvent$2 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$2 as MetaSiteSpecialEventPayloadOneOf, Namespace$2 as Namespace, type NamespaceChanged$2 as NamespaceChanged, Origin$1 as Origin, type Paging$3 as Paging, type PagingMetadata$2 as PagingMetadata, Privacy$2 as Privacy, type context$7_ReservedFieldNameNonEditable as ReservedFieldNameNonEditable, type RestoreInfo$2 as RestoreInfo, context$7_Section as Section, type ServiceProvisioned$2 as ServiceProvisioned, type ServiceRemoved$2 as ServiceRemoved, type SiteCreated$2 as SiteCreated, SiteCreatedContext$2 as SiteCreatedContext, type SiteDeleted$2 as SiteDeleted, type SiteHardDeleted$2 as SiteHardDeleted, type SiteMarkedAsTemplate$2 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$2 as SiteMarkedAsWixSite, type SitePublished$2 as SitePublished, type SiteRenamed$2 as SiteRenamed, type SiteTransferred$2 as SiteTransferred, type SiteUndeleted$2 as SiteUndeleted, type SiteUnpublished$2 as SiteUnpublished, SocialTypeType$1 as SocialTypeType, State$2 as State, type StudioAssigned$2 as StudioAssigned, type StudioUnassigned$2 as StudioUnassigned, Type$1 as Type, type context$7_UpdateCustomField as UpdateCustomField, type context$7_UpdateCustomFieldRequest as UpdateCustomFieldRequest, type context$7_UpdateCustomFieldResponse as UpdateCustomFieldResponse, type context$7_UpdateCustomFieldResponseNonNullableFields as UpdateCustomFieldResponseNonNullableFields, type context$7_UpdateCustomFieldsOrderOptions as UpdateCustomFieldsOrderOptions, type context$7_UpdateCustomFieldsOrderRequest as UpdateCustomFieldsOrderRequest, type context$7_UpdateCustomFieldsOrderResponse as UpdateCustomFieldsOrderResponse, type context$7_UpdateCustomFieldsOrderResponseNonNullableFields as UpdateCustomFieldsOrderResponseNonNullableFields, WebhookIdentityType$3 as WebhookIdentityType, context$7_createCustomField as createCustomField, context$7_deleteCustomField as deleteCustomField, context$7_getCustomField as getCustomField, context$7_hideCustomField as hideCustomField, context$7_listCustomFields as listCustomFields, context$7_updateCustomField as updateCustomField, context$7_updateCustomFieldsOrder as updateCustomFieldsOrder };
3670
3667
  }
3671
3668
 
3672
3669
  interface CustomFieldSuggestion {
@@ -4699,7 +4696,7 @@ interface DomainEventBodyOneOf$2 {
4699
4696
  interface EntityCreatedEvent$2 {
4700
4697
  entity?: string;
4701
4698
  }
4702
- interface RestoreInfo$2 {
4699
+ interface RestoreInfo$1 {
4703
4700
  deletedDate?: Date | null;
4704
4701
  }
4705
4702
  interface EntityUpdatedEvent$2 {
@@ -5936,7 +5933,7 @@ declare const context$4_updateCurrentMemberSlug: typeof updateCurrentMemberSlug;
5936
5933
  declare const context$4_updateMember: typeof updateMember;
5937
5934
  declare const context$4_updateMemberSlug: typeof updateMemberSlug;
5938
5935
  declare namespace context$4 {
5939
- export { type ActionEvent$2 as ActionEvent, type context$4_ActiveSubscriptionMemberBlockForbiddenPayload as ActiveSubscriptionMemberBlockForbiddenPayload, type context$4_ActiveSubscriptionMemberDeleteForbiddenPayload as ActiveSubscriptionMemberDeleteForbiddenPayload, context$4_ActivityStatusStatus as ActivityStatusStatus, type context$4_Address as Address, type context$4_AddressStreetOneOf as AddressStreetOneOf, type context$4_App as App, type context$4_ApplicationError as ApplicationError, type context$4_ApproveMemberRequest as ApproveMemberRequest, type context$4_ApproveMemberResponse as ApproveMemberResponse, type context$4_ApproveMemberResponseNonNullableFields as ApproveMemberResponseNonNullableFields, type Asset$1 as Asset, type context$4_BaseEventMetadata as BaseEventMetadata, type BlockMemberRequest$1 as BlockMemberRequest, type BlockMemberResponse$1 as BlockMemberResponse, type context$4_BlockMemberResponseNonNullableFields as BlockMemberResponseNonNullableFields, type context$4_BulkActionMetadata as BulkActionMetadata, type context$4_BulkApproveMembersRequest as BulkApproveMembersRequest, type context$4_BulkApproveMembersResponse as BulkApproveMembersResponse, type context$4_BulkApproveMembersResponseNonNullableFields as BulkApproveMembersResponseNonNullableFields, type context$4_BulkBlockMembersRequest as BulkBlockMembersRequest, type context$4_BulkBlockMembersResponse as BulkBlockMembersResponse, type context$4_BulkBlockMembersResponseNonNullableFields as BulkBlockMembersResponseNonNullableFields, type context$4_BulkDeleteMembersByFilterOptions as BulkDeleteMembersByFilterOptions, type context$4_BulkDeleteMembersByFilterRequest as BulkDeleteMembersByFilterRequest, type context$4_BulkDeleteMembersByFilterResponse as BulkDeleteMembersByFilterResponse, type context$4_BulkDeleteMembersByFilterResponseNonNullableFields as BulkDeleteMembersByFilterResponseNonNullableFields, type context$4_BulkDeleteMembersRequest as BulkDeleteMembersRequest, type context$4_BulkDeleteMembersResponse as BulkDeleteMembersResponse, type context$4_BulkDeleteMembersResponseNonNullableFields as BulkDeleteMembersResponseNonNullableFields, type context$4_BulkMemberResult as BulkMemberResult, type context$4_Contact as Contact, type context$4_ContentDeletionRequested as ContentDeletionRequested, type context$4_ContentReassignmentRequested as ContentReassignmentRequested, type context$4_CreateMemberOptions as CreateMemberOptions, type context$4_CreateMemberRequest as CreateMemberRequest, type context$4_CreateMemberResponse as CreateMemberResponse, type context$4_CreateMemberResponseNonNullableFields as CreateMemberResponseNonNullableFields, type CursorPaging$2 as CursorPaging, type context$4_CursorPagingMetadata as CursorPagingMetadata, type Cursors$2 as Cursors, type context$4_CustomField as CustomField, type DeleteContext$1 as DeleteContext, type context$4_DeleteMemberAddressesRequest as DeleteMemberAddressesRequest, type context$4_DeleteMemberAddressesResponse as DeleteMemberAddressesResponse, type context$4_DeleteMemberAddressesResponseNonNullableFields as DeleteMemberAddressesResponseNonNullableFields, type context$4_DeleteMemberEmailsRequest as DeleteMemberEmailsRequest, type context$4_DeleteMemberEmailsResponse as DeleteMemberEmailsResponse, type context$4_DeleteMemberEmailsResponseNonNullableFields as DeleteMemberEmailsResponseNonNullableFields, type context$4_DeleteMemberPhonesRequest as DeleteMemberPhonesRequest, type context$4_DeleteMemberPhonesResponse as DeleteMemberPhonesResponse, type context$4_DeleteMemberPhonesResponseNonNullableFields as DeleteMemberPhonesResponseNonNullableFields, type context$4_DeleteMemberRequest as DeleteMemberRequest, type context$4_DeleteMemberResponse as DeleteMemberResponse, type context$4_DeleteMyMemberOptions as DeleteMyMemberOptions, type context$4_DeleteMyMemberRequest as DeleteMyMemberRequest, type context$4_DeleteMyMemberResponse as DeleteMyMemberResponse, DeleteStatus$1 as DeleteStatus, type context$4_DisconnectMemberRequest as DisconnectMemberRequest, type context$4_DisconnectMemberResponse as DisconnectMemberResponse, type context$4_DisconnectMemberResponseNonNullableFields as DisconnectMemberResponseNonNullableFields, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type Empty$4 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type context$4_EventMetadata as EventMetadata, type context$4_ExtendedFields as ExtendedFields, type context$4_File as File, type context$4_GetCurrentMemberOptions as GetCurrentMemberOptions, type context$4_GetMemberOptions as GetMemberOptions, type context$4_GetMemberRequest as GetMemberRequest, type context$4_GetMemberResponse as GetMemberResponse, type context$4_GetMemberResponseNonNullableFields as GetMemberResponseNonNullableFields, type context$4_GetMyMemberRequest as GetMyMemberRequest, type context$4_GetMyMemberResponse as GetMyMemberResponse, type context$4_GetMyMemberResponseNonNullableFields as GetMyMemberResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type context$4_Image as Image, type context$4_InvalidCustomFieldUrlPayload as InvalidCustomFieldUrlPayload, type context$4_InvalidateCache as InvalidateCache, type context$4_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type context$4_ItemMetadata as ItemMetadata, type context$4_JoinCommunityRequest as JoinCommunityRequest, type context$4_JoinCommunityResponse as JoinCommunityResponse, type context$4_JoinCommunityResponseNonNullableFields as JoinCommunityResponseNonNullableFields, type context$4_LeaveCommunityRequest as LeaveCommunityRequest, type context$4_LeaveCommunityResponse as LeaveCommunityResponse, type context$4_LeaveCommunityResponseNonNullableFields as LeaveCommunityResponseNonNullableFields, type context$4_ListMembersOptions as ListMembersOptions, type context$4_ListMembersRequest as ListMembersRequest, type context$4_ListMembersResponse as ListMembersResponse, type context$4_ListMembersResponseNonNullableFields as ListMembersResponseNonNullableFields, type context$4_Member as Member, type context$4_MemberApproved as MemberApproved, type context$4_MemberBlocked as MemberBlocked, type context$4_MemberCreatedEnvelope as MemberCreatedEnvelope, type context$4_MemberDeletedEnvelope as MemberDeletedEnvelope, type context$4_MemberIdChanged as MemberIdChanged, type context$4_MemberJoinedCommunity as MemberJoinedCommunity, type context$4_MemberLeftCommunity as MemberLeftCommunity, type context$4_MemberMuted as MemberMuted, type context$4_MemberNonNullableFields as MemberNonNullableFields, type context$4_MemberOwnershipTransferred as MemberOwnershipTransferred, type context$4_MemberSelfBlockForbiddenPayload as MemberSelfBlockForbiddenPayload, type context$4_MemberToMemberBlockedPayload as MemberToMemberBlockedPayload, type context$4_MemberUnmuted as MemberUnmuted, type context$4_MemberUpdatedEnvelope as MemberUpdatedEnvelope, type context$4_MembersQueryBuilder as MembersQueryBuilder, type context$4_MembersQueryResult as MembersQueryResult, type MessageEnvelope$2 as MessageEnvelope, type MetaSiteSpecialEvent$1 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$1 as MetaSiteSpecialEventPayloadOneOf, type context$4_MuteMemberRequest as MuteMemberRequest, type context$4_MuteMemberResponse as MuteMemberResponse, type context$4_MuteMemberResponseNonNullableFields as MuteMemberResponseNonNullableFields, Namespace$1 as Namespace, type NamespaceChanged$1 as NamespaceChanged, type context$4_OwnerMemberBlockForbiddenPayload as OwnerMemberBlockForbiddenPayload, type context$4_OwnerOrContributorDeleteForbiddenPayload as OwnerOrContributorDeleteForbiddenPayload, type context$4_Page as Page, type Paging$1 as Paging, type context$4_PagingMetadata as PagingMetadata, context$4_PrivacyStatusStatus as PrivacyStatusStatus, type context$4_Profile as Profile, type Query$1 as Query, type context$4_QueryMembersOptions as QueryMembersOptions, type context$4_QueryMembersRequest as QueryMembersRequest, type context$4_QueryMembersResponse as QueryMembersResponse, type context$4_QueryMembersResponseNonNullableFields as QueryMembersResponseNonNullableFields, type RestoreInfo$2 as RestoreInfo, type context$4_Search as Search, type ServiceProvisioned$1 as ServiceProvisioned, type ServiceRemoved$1 as ServiceRemoved, context$4_Set as Set, type SiteCreated$1 as SiteCreated, SiteCreatedContext$1 as SiteCreatedContext, type SiteDeleted$1 as SiteDeleted, type SiteHardDeleted$1 as SiteHardDeleted, type SiteMarkedAsTemplate$1 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$1 as SiteMarkedAsWixSite, type SitePublished$1 as SitePublished, type SiteRenamed$1 as SiteRenamed, type SiteTransferred$1 as SiteTransferred, type SiteUndeleted$1 as SiteUndeleted, type SiteUnpublished$1 as SiteUnpublished, type context$4_SlugAlreadyExistsPayload as SlugAlreadyExistsPayload, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, State$1 as State, context$4_Status as Status, type context$4_StreetAddress as StreetAddress, type StudioAssigned$1 as StudioAssigned, type StudioUnassigned$1 as StudioUnassigned, type context$4_URI as URI, type context$4_UnmuteMemberRequest as UnmuteMemberRequest, type context$4_UnmuteMemberResponse as UnmuteMemberResponse, type context$4_UnmuteMemberResponseNonNullableFields as UnmuteMemberResponseNonNullableFields, type context$4_UpdateMember as UpdateMember, type context$4_UpdateMemberRequest as UpdateMemberRequest, type context$4_UpdateMemberResponse as UpdateMemberResponse, type context$4_UpdateMemberResponseNonNullableFields as UpdateMemberResponseNonNullableFields, type context$4_UpdateMemberSlugRequest as UpdateMemberSlugRequest, type context$4_UpdateMemberSlugResponse as UpdateMemberSlugResponse, type context$4_UpdateMemberSlugResponseNonNullableFields as UpdateMemberSlugResponseNonNullableFields, type context$4_UpdateMySlugRequest as UpdateMySlugRequest, type context$4_UpdateMySlugResponse as UpdateMySlugResponse, type context$4_UpdateMySlugResponseNonNullableFields as UpdateMySlugResponseNonNullableFields, WebhookIdentityType$2 as WebhookIdentityType, type context$4__publicOnMemberCreatedType as _publicOnMemberCreatedType, type context$4__publicOnMemberDeletedType as _publicOnMemberDeletedType, type context$4__publicOnMemberUpdatedType as _publicOnMemberUpdatedType, context$4_approveMember as approveMember, blockMember$2 as blockMember, context$4_bulkApproveMembers as bulkApproveMembers, context$4_bulkBlockMembers as bulkBlockMembers, context$4_bulkDeleteMembers as bulkDeleteMembers, context$4_bulkDeleteMembersByFilter as bulkDeleteMembersByFilter, context$4_createMember as createMember, context$4_deleteMember as deleteMember, context$4_deleteMemberAddresses as deleteMemberAddresses, context$4_deleteMemberEmails as deleteMemberEmails, context$4_deleteMemberPhones as deleteMemberPhones, context$4_deleteMyMember as deleteMyMember, context$4_disconnectMember as disconnectMember, context$4_getCurrentMember as getCurrentMember, context$4_getMember as getMember, context$4_joinCommunity as joinCommunity, context$4_leaveCommunity as leaveCommunity, context$4_listMembers as listMembers, context$4_muteMember as muteMember, context$4_onMemberCreated as onMemberCreated, context$4_onMemberDeleted as onMemberDeleted, context$4_onMemberUpdated as onMemberUpdated, onMemberCreated$1 as publicOnMemberCreated, onMemberDeleted$1 as publicOnMemberDeleted, onMemberUpdated$1 as publicOnMemberUpdated, context$4_queryMembers as queryMembers, context$4_unmuteMember as unmuteMember, context$4_updateCurrentMemberSlug as updateCurrentMemberSlug, context$4_updateMember as updateMember, context$4_updateMemberSlug as updateMemberSlug };
5936
+ export { type ActionEvent$2 as ActionEvent, type context$4_ActiveSubscriptionMemberBlockForbiddenPayload as ActiveSubscriptionMemberBlockForbiddenPayload, type context$4_ActiveSubscriptionMemberDeleteForbiddenPayload as ActiveSubscriptionMemberDeleteForbiddenPayload, context$4_ActivityStatusStatus as ActivityStatusStatus, type context$4_Address as Address, type context$4_AddressStreetOneOf as AddressStreetOneOf, type context$4_App as App, type context$4_ApplicationError as ApplicationError, type context$4_ApproveMemberRequest as ApproveMemberRequest, type context$4_ApproveMemberResponse as ApproveMemberResponse, type context$4_ApproveMemberResponseNonNullableFields as ApproveMemberResponseNonNullableFields, type Asset$1 as Asset, type context$4_BaseEventMetadata as BaseEventMetadata, type BlockMemberRequest$1 as BlockMemberRequest, type BlockMemberResponse$1 as BlockMemberResponse, type context$4_BlockMemberResponseNonNullableFields as BlockMemberResponseNonNullableFields, type context$4_BulkActionMetadata as BulkActionMetadata, type context$4_BulkApproveMembersRequest as BulkApproveMembersRequest, type context$4_BulkApproveMembersResponse as BulkApproveMembersResponse, type context$4_BulkApproveMembersResponseNonNullableFields as BulkApproveMembersResponseNonNullableFields, type context$4_BulkBlockMembersRequest as BulkBlockMembersRequest, type context$4_BulkBlockMembersResponse as BulkBlockMembersResponse, type context$4_BulkBlockMembersResponseNonNullableFields as BulkBlockMembersResponseNonNullableFields, type context$4_BulkDeleteMembersByFilterOptions as BulkDeleteMembersByFilterOptions, type context$4_BulkDeleteMembersByFilterRequest as BulkDeleteMembersByFilterRequest, type context$4_BulkDeleteMembersByFilterResponse as BulkDeleteMembersByFilterResponse, type context$4_BulkDeleteMembersByFilterResponseNonNullableFields as BulkDeleteMembersByFilterResponseNonNullableFields, type context$4_BulkDeleteMembersRequest as BulkDeleteMembersRequest, type context$4_BulkDeleteMembersResponse as BulkDeleteMembersResponse, type context$4_BulkDeleteMembersResponseNonNullableFields as BulkDeleteMembersResponseNonNullableFields, type context$4_BulkMemberResult as BulkMemberResult, type context$4_Contact as Contact, type context$4_ContentDeletionRequested as ContentDeletionRequested, type context$4_ContentReassignmentRequested as ContentReassignmentRequested, type context$4_CreateMemberOptions as CreateMemberOptions, type context$4_CreateMemberRequest as CreateMemberRequest, type context$4_CreateMemberResponse as CreateMemberResponse, type context$4_CreateMemberResponseNonNullableFields as CreateMemberResponseNonNullableFields, type CursorPaging$2 as CursorPaging, type context$4_CursorPagingMetadata as CursorPagingMetadata, type Cursors$2 as Cursors, type context$4_CustomField as CustomField, type DeleteContext$1 as DeleteContext, type context$4_DeleteMemberAddressesRequest as DeleteMemberAddressesRequest, type context$4_DeleteMemberAddressesResponse as DeleteMemberAddressesResponse, type context$4_DeleteMemberAddressesResponseNonNullableFields as DeleteMemberAddressesResponseNonNullableFields, type context$4_DeleteMemberEmailsRequest as DeleteMemberEmailsRequest, type context$4_DeleteMemberEmailsResponse as DeleteMemberEmailsResponse, type context$4_DeleteMemberEmailsResponseNonNullableFields as DeleteMemberEmailsResponseNonNullableFields, type context$4_DeleteMemberPhonesRequest as DeleteMemberPhonesRequest, type context$4_DeleteMemberPhonesResponse as DeleteMemberPhonesResponse, type context$4_DeleteMemberPhonesResponseNonNullableFields as DeleteMemberPhonesResponseNonNullableFields, type context$4_DeleteMemberRequest as DeleteMemberRequest, type context$4_DeleteMemberResponse as DeleteMemberResponse, type context$4_DeleteMyMemberOptions as DeleteMyMemberOptions, type context$4_DeleteMyMemberRequest as DeleteMyMemberRequest, type context$4_DeleteMyMemberResponse as DeleteMyMemberResponse, DeleteStatus$1 as DeleteStatus, type context$4_DisconnectMemberRequest as DisconnectMemberRequest, type context$4_DisconnectMemberResponse as DisconnectMemberResponse, type context$4_DisconnectMemberResponseNonNullableFields as DisconnectMemberResponseNonNullableFields, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type Empty$4 as Empty, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type context$4_EventMetadata as EventMetadata, type context$4_ExtendedFields as ExtendedFields, type context$4_File as File, type context$4_GetCurrentMemberOptions as GetCurrentMemberOptions, type context$4_GetMemberOptions as GetMemberOptions, type context$4_GetMemberRequest as GetMemberRequest, type context$4_GetMemberResponse as GetMemberResponse, type context$4_GetMemberResponseNonNullableFields as GetMemberResponseNonNullableFields, type context$4_GetMyMemberRequest as GetMyMemberRequest, type context$4_GetMyMemberResponse as GetMyMemberResponse, type context$4_GetMyMemberResponseNonNullableFields as GetMyMemberResponseNonNullableFields, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, type context$4_Image as Image, type context$4_InvalidCustomFieldUrlPayload as InvalidCustomFieldUrlPayload, type context$4_InvalidateCache as InvalidateCache, type context$4_InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOf, type context$4_ItemMetadata as ItemMetadata, type context$4_JoinCommunityRequest as JoinCommunityRequest, type context$4_JoinCommunityResponse as JoinCommunityResponse, type context$4_JoinCommunityResponseNonNullableFields as JoinCommunityResponseNonNullableFields, type context$4_LeaveCommunityRequest as LeaveCommunityRequest, type context$4_LeaveCommunityResponse as LeaveCommunityResponse, type context$4_LeaveCommunityResponseNonNullableFields as LeaveCommunityResponseNonNullableFields, type context$4_ListMembersOptions as ListMembersOptions, type context$4_ListMembersRequest as ListMembersRequest, type context$4_ListMembersResponse as ListMembersResponse, type context$4_ListMembersResponseNonNullableFields as ListMembersResponseNonNullableFields, type context$4_Member as Member, type context$4_MemberApproved as MemberApproved, type context$4_MemberBlocked as MemberBlocked, type context$4_MemberCreatedEnvelope as MemberCreatedEnvelope, type context$4_MemberDeletedEnvelope as MemberDeletedEnvelope, type context$4_MemberIdChanged as MemberIdChanged, type context$4_MemberJoinedCommunity as MemberJoinedCommunity, type context$4_MemberLeftCommunity as MemberLeftCommunity, type context$4_MemberMuted as MemberMuted, type context$4_MemberNonNullableFields as MemberNonNullableFields, type context$4_MemberOwnershipTransferred as MemberOwnershipTransferred, type context$4_MemberSelfBlockForbiddenPayload as MemberSelfBlockForbiddenPayload, type context$4_MemberToMemberBlockedPayload as MemberToMemberBlockedPayload, type context$4_MemberUnmuted as MemberUnmuted, type context$4_MemberUpdatedEnvelope as MemberUpdatedEnvelope, type context$4_MembersQueryBuilder as MembersQueryBuilder, type context$4_MembersQueryResult as MembersQueryResult, type MessageEnvelope$2 as MessageEnvelope, type MetaSiteSpecialEvent$1 as MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf$1 as MetaSiteSpecialEventPayloadOneOf, type context$4_MuteMemberRequest as MuteMemberRequest, type context$4_MuteMemberResponse as MuteMemberResponse, type context$4_MuteMemberResponseNonNullableFields as MuteMemberResponseNonNullableFields, Namespace$1 as Namespace, type NamespaceChanged$1 as NamespaceChanged, type context$4_OwnerMemberBlockForbiddenPayload as OwnerMemberBlockForbiddenPayload, type context$4_OwnerOrContributorDeleteForbiddenPayload as OwnerOrContributorDeleteForbiddenPayload, type context$4_Page as Page, type Paging$1 as Paging, type context$4_PagingMetadata as PagingMetadata, context$4_PrivacyStatusStatus as PrivacyStatusStatus, type context$4_Profile as Profile, type Query$1 as Query, type context$4_QueryMembersOptions as QueryMembersOptions, type context$4_QueryMembersRequest as QueryMembersRequest, type context$4_QueryMembersResponse as QueryMembersResponse, type context$4_QueryMembersResponseNonNullableFields as QueryMembersResponseNonNullableFields, type RestoreInfo$1 as RestoreInfo, type context$4_Search as Search, type ServiceProvisioned$1 as ServiceProvisioned, type ServiceRemoved$1 as ServiceRemoved, context$4_Set as Set, type SiteCreated$1 as SiteCreated, SiteCreatedContext$1 as SiteCreatedContext, type SiteDeleted$1 as SiteDeleted, type SiteHardDeleted$1 as SiteHardDeleted, type SiteMarkedAsTemplate$1 as SiteMarkedAsTemplate, type SiteMarkedAsWixSite$1 as SiteMarkedAsWixSite, type SitePublished$1 as SitePublished, type SiteRenamed$1 as SiteRenamed, type SiteTransferred$1 as SiteTransferred, type SiteUndeleted$1 as SiteUndeleted, type SiteUnpublished$1 as SiteUnpublished, type context$4_SlugAlreadyExistsPayload as SlugAlreadyExistsPayload, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, State$1 as State, context$4_Status as Status, type context$4_StreetAddress as StreetAddress, type StudioAssigned$1 as StudioAssigned, type StudioUnassigned$1 as StudioUnassigned, type context$4_URI as URI, type context$4_UnmuteMemberRequest as UnmuteMemberRequest, type context$4_UnmuteMemberResponse as UnmuteMemberResponse, type context$4_UnmuteMemberResponseNonNullableFields as UnmuteMemberResponseNonNullableFields, type context$4_UpdateMember as UpdateMember, type context$4_UpdateMemberRequest as UpdateMemberRequest, type context$4_UpdateMemberResponse as UpdateMemberResponse, type context$4_UpdateMemberResponseNonNullableFields as UpdateMemberResponseNonNullableFields, type context$4_UpdateMemberSlugRequest as UpdateMemberSlugRequest, type context$4_UpdateMemberSlugResponse as UpdateMemberSlugResponse, type context$4_UpdateMemberSlugResponseNonNullableFields as UpdateMemberSlugResponseNonNullableFields, type context$4_UpdateMySlugRequest as UpdateMySlugRequest, type context$4_UpdateMySlugResponse as UpdateMySlugResponse, type context$4_UpdateMySlugResponseNonNullableFields as UpdateMySlugResponseNonNullableFields, WebhookIdentityType$2 as WebhookIdentityType, type context$4__publicOnMemberCreatedType as _publicOnMemberCreatedType, type context$4__publicOnMemberDeletedType as _publicOnMemberDeletedType, type context$4__publicOnMemberUpdatedType as _publicOnMemberUpdatedType, context$4_approveMember as approveMember, blockMember$2 as blockMember, context$4_bulkApproveMembers as bulkApproveMembers, context$4_bulkBlockMembers as bulkBlockMembers, context$4_bulkDeleteMembers as bulkDeleteMembers, context$4_bulkDeleteMembersByFilter as bulkDeleteMembersByFilter, context$4_createMember as createMember, context$4_deleteMember as deleteMember, context$4_deleteMemberAddresses as deleteMemberAddresses, context$4_deleteMemberEmails as deleteMemberEmails, context$4_deleteMemberPhones as deleteMemberPhones, context$4_deleteMyMember as deleteMyMember, context$4_disconnectMember as disconnectMember, context$4_getCurrentMember as getCurrentMember, context$4_getMember as getMember, context$4_joinCommunity as joinCommunity, context$4_leaveCommunity as leaveCommunity, context$4_listMembers as listMembers, context$4_muteMember as muteMember, context$4_onMemberCreated as onMemberCreated, context$4_onMemberDeleted as onMemberDeleted, context$4_onMemberUpdated as onMemberUpdated, onMemberCreated$1 as publicOnMemberCreated, onMemberDeleted$1 as publicOnMemberDeleted, onMemberUpdated$1 as publicOnMemberUpdated, context$4_queryMembers as queryMembers, context$4_unmuteMember as unmuteMember, context$4_updateCurrentMemberSlug as updateCurrentMemberSlug, context$4_updateMember as updateMember, context$4_updateMemberSlug as updateMemberSlug };
5940
5937
  }
5941
5938
 
5942
5939
  interface MemberReport {
@@ -6181,7 +6178,7 @@ interface DomainEventBodyOneOf$1 {
6181
6178
  interface EntityCreatedEvent$1 {
6182
6179
  entity?: string;
6183
6180
  }
6184
- interface RestoreInfo$1 {
6181
+ interface RestoreInfo {
6185
6182
  deletedDate?: Date | null;
6186
6183
  }
6187
6184
  interface EntityUpdatedEvent$1 {
@@ -6382,6 +6379,7 @@ type context$3_ReportedMember = ReportedMember;
6382
6379
  type context$3_ReportedMemberCreated = ReportedMemberCreated;
6383
6380
  type context$3_ReportedMemberDeleted = ReportedMemberDeleted;
6384
6381
  type context$3_ReportedMemberUpdated = ReportedMemberUpdated;
6382
+ type context$3_RestoreInfo = RestoreInfo;
6385
6383
  type context$3_SelfReportingForbiddenError = SelfReportingForbiddenError;
6386
6384
  type context$3_SortOrder = SortOrder;
6387
6385
  declare const context$3_SortOrder: typeof SortOrder;
@@ -6393,7 +6391,7 @@ declare const context$3_queryMemberReports: typeof queryMemberReports;
6393
6391
  declare const context$3_queryReportedMembers: typeof queryReportedMembers;
6394
6392
  declare const context$3_reportMember: typeof reportMember;
6395
6393
  declare namespace context$3 {
6396
- export { type ActionEvent$1 as ActionEvent, type context$3_CannotReportBlockedMemberError as CannotReportBlockedMemberError, context$3_Category as Category, type CursorPaging$1 as CursorPaging, type Cursors$1 as Cursors, type context$3_DeleteMemberReportsRequest as DeleteMemberReportsRequest, type context$3_DeleteMemberReportsResponse as DeleteMemberReportsResponse, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type Empty$3 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type context$3_ListReportedMembersOptions as ListReportedMembersOptions, type context$3_ListReportedMembersRequest as ListReportedMembersRequest, type context$3_ListReportedMembersRequestPagingMethodOneOf as ListReportedMembersRequestPagingMethodOneOf, type context$3_ListReportedMembersResponse as ListReportedMembersResponse, type context$3_ListReportedMembersResponseNonNullableFields as ListReportedMembersResponseNonNullableFields, type context$3_MarkMemberReportsAsReviewedRequest as MarkMemberReportsAsReviewedRequest, type context$3_MarkMemberReportsAsReviewedResponse as MarkMemberReportsAsReviewedResponse, type context$3_MarkMemberReportsAsReviewedResponseNonNullableFields as MarkMemberReportsAsReviewedResponseNonNullableFields, type context$3_MemberReport as MemberReport, type MessageEnvelope$1 as MessageEnvelope, type context$3_Paging as Paging, type PagingMetadataV2$1 as PagingMetadataV2, type context$3_QueryMemberReportsOptions as QueryMemberReportsOptions, type context$3_QueryMemberReportsRequest as QueryMemberReportsRequest, type context$3_QueryMemberReportsResponse as QueryMemberReportsResponse, type context$3_QueryMemberReportsResponseNonNullableFields as QueryMemberReportsResponseNonNullableFields, type context$3_QueryReportedMembersOptions as QueryReportedMembersOptions, type context$3_QueryReportedMembersRequest as QueryReportedMembersRequest, type context$3_QueryReportedMembersResponse as QueryReportedMembersResponse, type context$3_QueryReportedMembersResponseNonNullableFields as QueryReportedMembersResponseNonNullableFields, type context$3_QueryV2 as QueryV2, type context$3_Reason as Reason, type context$3_ReportMemberRequest as ReportMemberRequest, type context$3_ReportMemberResponse as ReportMemberResponse, type context$3_ReportMemberResponseNonNullableFields as ReportMemberResponseNonNullableFields, type context$3_ReportedMember as ReportedMember, type context$3_ReportedMemberCreated as ReportedMemberCreated, type context$3_ReportedMemberDeleted as ReportedMemberDeleted, type context$3_ReportedMemberUpdated as ReportedMemberUpdated, type RestoreInfo$1 as RestoreInfo, type context$3_SelfReportingForbiddenError as SelfReportingForbiddenError, context$3_SortOrder as SortOrder, type context$3_Sorting as Sorting, WebhookIdentityType$1 as WebhookIdentityType, context$3_deleteMemberReports as deleteMemberReports, context$3_listReportedMembers as listReportedMembers, context$3_markMemberReportsAsReviewed as markMemberReportsAsReviewed, context$3_queryMemberReports as queryMemberReports, context$3_queryReportedMembers as queryReportedMembers, context$3_reportMember as reportMember };
6394
+ export { type ActionEvent$1 as ActionEvent, type context$3_CannotReportBlockedMemberError as CannotReportBlockedMemberError, context$3_Category as Category, type CursorPaging$1 as CursorPaging, type Cursors$1 as Cursors, type context$3_DeleteMemberReportsRequest as DeleteMemberReportsRequest, type context$3_DeleteMemberReportsResponse as DeleteMemberReportsResponse, type DomainEvent$1 as DomainEvent, type DomainEventBodyOneOf$1 as DomainEventBodyOneOf, type Empty$3 as Empty, type EntityCreatedEvent$1 as EntityCreatedEvent, type EntityDeletedEvent$1 as EntityDeletedEvent, type EntityUpdatedEvent$1 as EntityUpdatedEvent, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, type context$3_ListReportedMembersOptions as ListReportedMembersOptions, type context$3_ListReportedMembersRequest as ListReportedMembersRequest, type context$3_ListReportedMembersRequestPagingMethodOneOf as ListReportedMembersRequestPagingMethodOneOf, type context$3_ListReportedMembersResponse as ListReportedMembersResponse, type context$3_ListReportedMembersResponseNonNullableFields as ListReportedMembersResponseNonNullableFields, type context$3_MarkMemberReportsAsReviewedRequest as MarkMemberReportsAsReviewedRequest, type context$3_MarkMemberReportsAsReviewedResponse as MarkMemberReportsAsReviewedResponse, type context$3_MarkMemberReportsAsReviewedResponseNonNullableFields as MarkMemberReportsAsReviewedResponseNonNullableFields, type context$3_MemberReport as MemberReport, type MessageEnvelope$1 as MessageEnvelope, type context$3_Paging as Paging, type PagingMetadataV2$1 as PagingMetadataV2, type context$3_QueryMemberReportsOptions as QueryMemberReportsOptions, type context$3_QueryMemberReportsRequest as QueryMemberReportsRequest, type context$3_QueryMemberReportsResponse as QueryMemberReportsResponse, type context$3_QueryMemberReportsResponseNonNullableFields as QueryMemberReportsResponseNonNullableFields, type context$3_QueryReportedMembersOptions as QueryReportedMembersOptions, type context$3_QueryReportedMembersRequest as QueryReportedMembersRequest, type context$3_QueryReportedMembersResponse as QueryReportedMembersResponse, type context$3_QueryReportedMembersResponseNonNullableFields as QueryReportedMembersResponseNonNullableFields, type context$3_QueryV2 as QueryV2, type context$3_Reason as Reason, type context$3_ReportMemberRequest as ReportMemberRequest, type context$3_ReportMemberResponse as ReportMemberResponse, type context$3_ReportMemberResponseNonNullableFields as ReportMemberResponseNonNullableFields, type context$3_ReportedMember as ReportedMember, type context$3_ReportedMemberCreated as ReportedMemberCreated, type context$3_ReportedMemberDeleted as ReportedMemberDeleted, type context$3_ReportedMemberUpdated as ReportedMemberUpdated, type context$3_RestoreInfo as RestoreInfo, type context$3_SelfReportingForbiddenError as SelfReportingForbiddenError, context$3_SortOrder as SortOrder, type context$3_Sorting as Sorting, WebhookIdentityType$1 as WebhookIdentityType, context$3_deleteMemberReports as deleteMemberReports, context$3_listReportedMembers as listReportedMembers, context$3_markMemberReportsAsReviewed as markMemberReportsAsReviewed, context$3_queryMemberReports as queryMemberReports, context$3_queryReportedMembers as queryReportedMembers, context$3_reportMember as reportMember };
6397
6395
  }
6398
6396
 
6399
6397
  interface MemberRoleDefinition {
@@ -6480,10 +6478,7 @@ interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
6480
6478
  version?: string;
6481
6479
  /** A timestamp of the event. */
6482
6480
  timestamp?: string;
6483
- /**
6484
- * TODO(meta-site): Change validation once validations are disabled for consumers
6485
- * More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
6486
- */
6481
+ /** A list of "assets" (applications). The same as MetaSiteContext. */
6487
6482
  assets?: Asset[];
6488
6483
  }
6489
6484
  /** @oneof */
@@ -6978,7 +6973,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
6978
6973
  slug?: string;
6979
6974
  /** ID of the entity associated with the event. */
6980
6975
  entityId?: string;
6981
- /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
6976
+ /** Event timestamp. */
6982
6977
  eventTime?: Date | null;
6983
6978
  /**
6984
6979
  * Whether the event was triggered as a result of a privacy regulation application
@@ -7007,7 +7002,7 @@ interface DomainEventBodyOneOf {
7007
7002
  interface EntityCreatedEvent {
7008
7003
  entity?: string;
7009
7004
  }
7010
- interface RestoreInfo {
7005
+ interface UndeleteInfo {
7011
7006
  deletedDate?: Date | null;
7012
7007
  }
7013
7008
  interface EntityUpdatedEvent {
@@ -7154,11 +7149,11 @@ type context$1_MemberToMemberBlock = MemberToMemberBlock;
7154
7149
  type context$1_MemberUnblockedByMember = MemberUnblockedByMember;
7155
7150
  type context$1_MessageEnvelope = MessageEnvelope;
7156
7151
  type context$1_PagingMetadataV2 = PagingMetadataV2;
7157
- type context$1_RestoreInfo = RestoreInfo;
7158
7152
  type context$1_SelfBlockingForbiddenError = SelfBlockingForbiddenError;
7159
7153
  type context$1_SelfUnblockingForbiddenError = SelfUnblockingForbiddenError;
7160
7154
  type context$1_UnblockMemberRequest = UnblockMemberRequest;
7161
7155
  type context$1_UnblockMemberResponse = UnblockMemberResponse;
7156
+ type context$1_UndeleteInfo = UndeleteInfo;
7162
7157
  type context$1_WebhookIdentityType = WebhookIdentityType;
7163
7158
  declare const context$1_WebhookIdentityType: typeof WebhookIdentityType;
7164
7159
  declare const context$1_blockMember: typeof blockMember;
@@ -7166,7 +7161,7 @@ declare const context$1_listCurrentMemberBlocking: typeof listCurrentMemberBlock
7166
7161
  declare const context$1_listMemberBlocks: typeof listMemberBlocks;
7167
7162
  declare const context$1_unblockMember: typeof unblockMember;
7168
7163
  declare namespace context$1 {
7169
- export { type context$1_ActionEvent as ActionEvent, type context$1_AdminBlockingForbiddenError as AdminBlockingForbiddenError, context$1_BlockDirection as BlockDirection, type context$1_BlockDoesNotExistError as BlockDoesNotExistError, type context$1_BlockMemberRequest as BlockMemberRequest, type context$1_BlockMemberResponse as BlockMemberResponse, type context$1_CursorPaging as CursorPaging, type context$1_Cursors as Cursors, type context$1_DomainEvent as DomainEvent, type context$1_DomainEventBodyOneOf as DomainEventBodyOneOf, type Empty$1 as Empty, type context$1_EntityCreatedEvent as EntityCreatedEvent, type context$1_EntityDeletedEvent as EntityDeletedEvent, type context$1_EntityUpdatedEvent as EntityUpdatedEvent, type context$1_IdentificationData as IdentificationData, type context$1_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context$1_ListCurrentMemberBlockingOptions as ListCurrentMemberBlockingOptions, type context$1_ListCurrentMemberBlockingRequest as ListCurrentMemberBlockingRequest, type context$1_ListCurrentMemberBlockingResponse as ListCurrentMemberBlockingResponse, type context$1_ListCurrentMemberBlockingResponseNonNullableFields as ListCurrentMemberBlockingResponseNonNullableFields, type context$1_ListMemberBlocksOptions as ListMemberBlocksOptions, type context$1_ListMemberBlocksRequest as ListMemberBlocksRequest, type context$1_ListMemberBlocksResponse as ListMemberBlocksResponse, type context$1_ListMemberBlocksResponseNonNullableFields as ListMemberBlocksResponseNonNullableFields, type context$1_MemberAlreadyBlockedError as MemberAlreadyBlockedError, type context$1_MemberBlock as MemberBlock, type context$1_MemberBlockedByMember as MemberBlockedByMember, type context$1_MemberToMemberBlock as MemberToMemberBlock, type context$1_MemberUnblockedByMember as MemberUnblockedByMember, type context$1_MessageEnvelope as MessageEnvelope, type context$1_PagingMetadataV2 as PagingMetadataV2, type context$1_RestoreInfo as RestoreInfo, type context$1_SelfBlockingForbiddenError as SelfBlockingForbiddenError, type context$1_SelfUnblockingForbiddenError as SelfUnblockingForbiddenError, type context$1_UnblockMemberRequest as UnblockMemberRequest, type context$1_UnblockMemberResponse as UnblockMemberResponse, context$1_WebhookIdentityType as WebhookIdentityType, context$1_blockMember as blockMember, context$1_listCurrentMemberBlocking as listCurrentMemberBlocking, context$1_listMemberBlocks as listMemberBlocks, context$1_unblockMember as unblockMember };
7164
+ export { type context$1_ActionEvent as ActionEvent, type context$1_AdminBlockingForbiddenError as AdminBlockingForbiddenError, context$1_BlockDirection as BlockDirection, type context$1_BlockDoesNotExistError as BlockDoesNotExistError, type context$1_BlockMemberRequest as BlockMemberRequest, type context$1_BlockMemberResponse as BlockMemberResponse, type context$1_CursorPaging as CursorPaging, type context$1_Cursors as Cursors, type context$1_DomainEvent as DomainEvent, type context$1_DomainEventBodyOneOf as DomainEventBodyOneOf, type Empty$1 as Empty, type context$1_EntityCreatedEvent as EntityCreatedEvent, type context$1_EntityDeletedEvent as EntityDeletedEvent, type context$1_EntityUpdatedEvent as EntityUpdatedEvent, type context$1_IdentificationData as IdentificationData, type context$1_IdentificationDataIdOneOf as IdentificationDataIdOneOf, type context$1_ListCurrentMemberBlockingOptions as ListCurrentMemberBlockingOptions, type context$1_ListCurrentMemberBlockingRequest as ListCurrentMemberBlockingRequest, type context$1_ListCurrentMemberBlockingResponse as ListCurrentMemberBlockingResponse, type context$1_ListCurrentMemberBlockingResponseNonNullableFields as ListCurrentMemberBlockingResponseNonNullableFields, type context$1_ListMemberBlocksOptions as ListMemberBlocksOptions, type context$1_ListMemberBlocksRequest as ListMemberBlocksRequest, type context$1_ListMemberBlocksResponse as ListMemberBlocksResponse, type context$1_ListMemberBlocksResponseNonNullableFields as ListMemberBlocksResponseNonNullableFields, type context$1_MemberAlreadyBlockedError as MemberAlreadyBlockedError, type context$1_MemberBlock as MemberBlock, type context$1_MemberBlockedByMember as MemberBlockedByMember, type context$1_MemberToMemberBlock as MemberToMemberBlock, type context$1_MemberUnblockedByMember as MemberUnblockedByMember, type context$1_MessageEnvelope as MessageEnvelope, type context$1_PagingMetadataV2 as PagingMetadataV2, type context$1_SelfBlockingForbiddenError as SelfBlockingForbiddenError, type context$1_SelfUnblockingForbiddenError as SelfUnblockingForbiddenError, type context$1_UnblockMemberRequest as UnblockMemberRequest, type context$1_UnblockMemberResponse as UnblockMemberResponse, type context$1_UndeleteInfo as UndeleteInfo, context$1_WebhookIdentityType as WebhookIdentityType, context$1_blockMember as blockMember, context$1_listCurrentMemberBlocking as listCurrentMemberBlocking, context$1_listMemberBlocks as listMemberBlocks, context$1_unblockMember as unblockMember };
7170
7165
  }
7171
7166
 
7172
7167
  interface Role {