@wix/members 1.0.31 → 1.0.33

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.
Files changed (25) hide show
  1. package/build/cjs/src/identity-members-v1-member.http.d.ts +21 -3
  2. package/build/cjs/src/identity-members-v1-member.http.js +57 -3
  3. package/build/cjs/src/identity-members-v1-member.http.js.map +1 -1
  4. package/build/cjs/src/identity-members-v1-member.universal.d.ts +91 -92
  5. package/build/cjs/src/identity-members-v1-member.universal.js +17 -3
  6. package/build/cjs/src/identity-members-v1-member.universal.js.map +1 -1
  7. package/build/cjs/src/members-v1-member.http.d.ts +2 -3
  8. package/build/cjs/src/members-v1-member.http.js +2 -3
  9. package/build/cjs/src/members-v1-member.http.js.map +1 -1
  10. package/build/cjs/src/members-v1-member.universal.d.ts +2 -3
  11. package/build/cjs/src/members-v1-member.universal.js +2 -3
  12. package/build/cjs/src/members-v1-member.universal.js.map +1 -1
  13. package/build/es/src/identity-members-v1-member.http.d.ts +21 -3
  14. package/build/es/src/identity-members-v1-member.http.js +57 -3
  15. package/build/es/src/identity-members-v1-member.http.js.map +1 -1
  16. package/build/es/src/identity-members-v1-member.universal.d.ts +91 -92
  17. package/build/es/src/identity-members-v1-member.universal.js +17 -3
  18. package/build/es/src/identity-members-v1-member.universal.js.map +1 -1
  19. package/build/es/src/members-v1-member.http.d.ts +2 -3
  20. package/build/es/src/members-v1-member.http.js +2 -3
  21. package/build/es/src/members-v1-member.http.js.map +1 -1
  22. package/build/es/src/members-v1-member.universal.d.ts +2 -3
  23. package/build/es/src/members-v1-member.universal.js +2 -3
  24. package/build/es/src/members-v1-member.universal.js.map +1 -1
  25. package/package.json +2 -2
@@ -1,6 +1,14 @@
1
1
  import { RequestOptionsFactory } from '@wix/sdk-types';
2
2
  import { ApproveMemberRequest, ApproveMemberResponse, BlockMemberRequest, BlockMemberResponse, ChangeLoginEmailRequest, ChangeLoginEmailResponse, LoginRequest, LoginResponse, RegisterRequest, RegisterResponse, SendSetPasswordEmailRequest, SendSetPasswordEmailResponse, ChangeLoginEmailResponseNonNullableFields, RegisterResponseNonNullableFields, LoginResponseNonNullableFields, SendSetPasswordEmailResponseNonNullableFields } from './identity-members-v1-member.types';
3
- /** Change the login email of existing member. */
3
+ /**
4
+ * Changes a member's login email address.
5
+ *
6
+ * 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.
7
+ *
8
+ * 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.
9
+ *
10
+ * > **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).
11
+ */
4
12
  export declare function changeLoginEmail(payload: ChangeLoginEmailRequest): RequestOptionsFactory<ChangeLoginEmailResponse & ChangeLoginEmailResponseNonNullableFields>;
5
13
  /**
6
14
  * Approves a pending member using an email address or approval token.
@@ -63,9 +71,19 @@ export declare function approve(payload: ApproveMemberRequest): RequestOptionsFa
63
71
  * <!--END:ONLY:VELO-->
64
72
  */
65
73
  export declare function block(payload: BlockMemberRequest): RequestOptionsFactory<BlockMemberResponse>;
66
- /** Registers new site member. */
74
+ /**
75
+ * Registers a new site member.
76
+ *
77
+ * The specified `password` must be between 4 and 100 ASCII characters.
78
+ *
79
+ * >**Note:** The `register()` function behaves differently depending on your site's [member signup settings](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-members/enabling-custom-site-registration. Details are outlined in the **Before you begin** section of the introduction.
80
+ */
67
81
  export declare function register(payload: RegisterRequest): RequestOptionsFactory<RegisterResponse & RegisterResponseNonNullableFields>;
68
- /** Logs a member in with an email and password. */
82
+ /**
83
+ * The `login()` function only works with existing members. To register a new member use the [`register()`](#register) function.
84
+ *
85
+ * To complete the login, the returned session token must be applied using the `applySessionToken()` function in the wix-members-frontend API.
86
+ */
69
87
  export declare function login(payload: LoginRequest): RequestOptionsFactory<LoginResponse & LoginResponseNonNullableFields>;
70
88
  /**
71
89
  * Sends a site member an email with a link to set their password.
@@ -107,6 +107,10 @@ function resolveWixMembersApiV1AuthServiceUrl(opts) {
107
107
  srcPath: '/api/wix-sm',
108
108
  destPath: '/api',
109
109
  },
110
+ {
111
+ srcPath: '/api/wix-sm/v1',
112
+ destPath: '/api/v1',
113
+ },
110
114
  ],
111
115
  'editor._base_domain_': [
112
116
  {
@@ -159,6 +163,14 @@ function resolveWixMembersApiV1AuthServiceUrl(opts) {
159
163
  srcPath: '/wow/[a-z0-9-_]+/api/wix-sm/v1',
160
164
  destPath: '/api/v1',
161
165
  },
166
+ {
167
+ srcPath: '/_api/wix-sm/v1',
168
+ destPath: '/api/v1',
169
+ },
170
+ {
171
+ srcPath: '/api/wix-sm/v1',
172
+ destPath: '/api/v1',
173
+ },
162
174
  ],
163
175
  'dev._base_domain_': [
164
176
  {
@@ -208,6 +220,12 @@ function resolveWixMembersApiV1AuthServiceUrl(opts) {
208
220
  destPath: '/api/v1',
209
221
  },
210
222
  ],
223
+ 'bo._base_domain': [
224
+ {
225
+ srcPath: '/_api/wix-sm/v1',
226
+ destPath: '/api/v1',
227
+ },
228
+ ],
211
229
  };
212
230
  return (0, metro_runtime_1.resolveUrl)(Object.assign(opts, { domainToMappings }));
213
231
  }
@@ -290,6 +308,10 @@ function resolveWixMembersApiV1MembersServiceUrl(opts) {
290
308
  srcPath: '/api/wix-sm',
291
309
  destPath: '/api',
292
310
  },
311
+ {
312
+ srcPath: '/api/wix-sm/v1',
313
+ destPath: '/api/v1',
314
+ },
293
315
  ],
294
316
  'editor._base_domain_': [
295
317
  {
@@ -342,6 +364,14 @@ function resolveWixMembersApiV1MembersServiceUrl(opts) {
342
364
  srcPath: '/wow/[a-z0-9-_]+/api/wix-sm/v1',
343
365
  destPath: '/api/v1',
344
366
  },
367
+ {
368
+ srcPath: '/_api/wix-sm/v1',
369
+ destPath: '/api/v1',
370
+ },
371
+ {
372
+ srcPath: '/api/wix-sm/v1',
373
+ destPath: '/api/v1',
374
+ },
345
375
  ],
346
376
  'dev._base_domain_': [
347
377
  {
@@ -391,10 +421,24 @@ function resolveWixMembersApiV1MembersServiceUrl(opts) {
391
421
  destPath: '/api/v1',
392
422
  },
393
423
  ],
424
+ 'bo._base_domain': [
425
+ {
426
+ srcPath: '/_api/wix-sm/v1',
427
+ destPath: '/api/v1',
428
+ },
429
+ ],
394
430
  };
395
431
  return (0, metro_runtime_1.resolveUrl)(Object.assign(opts, { domainToMappings }));
396
432
  }
397
- /** Change the login email of existing member. */
433
+ /**
434
+ * Changes a member's login email address.
435
+ *
436
+ * 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.
437
+ *
438
+ * 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.
439
+ *
440
+ * > **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).
441
+ */
398
442
  function changeLoginEmail(payload) {
399
443
  const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_changeLoginEmailRequest, {});
400
444
  const { fromJSON: fromRes } = (0, ambassador_1.serializer)(_changeLoginEmailResponse, {
@@ -527,7 +571,13 @@ function block(payload) {
527
571
  return __block;
528
572
  }
529
573
  exports.block = block;
530
- /** Registers new site member. */
574
+ /**
575
+ * Registers a new site member.
576
+ *
577
+ * The specified `password` must be between 4 and 100 ASCII characters.
578
+ *
579
+ * >**Note:** The `register()` function behaves differently depending on your site's [member signup settings](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-members/enabling-custom-site-registration. Details are outlined in the **Before you begin** section of the introduction.
580
+ */
531
581
  function register(payload) {
532
582
  const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_registerRequest, {
533
583
  _customField,
@@ -558,7 +608,11 @@ function register(payload) {
558
608
  return __register;
559
609
  }
560
610
  exports.register = register;
561
- /** Logs a member in with an email and password. */
611
+ /**
612
+ * The `login()` function only works with existing members. To register a new member use the [`register()`](#register) function.
613
+ *
614
+ * To complete the login, the returned session token must be applied using the `applySessionToken()` function in the wix-members-frontend API.
615
+ */
562
616
  function login(payload) {
563
617
  const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_loginRequest, {});
564
618
  const { fromJSON: fromRes } = (0, ambassador_1.serializer)(_loginResponse, {
@@ -1 +1 @@
1
- {"version":3,"file":"identity-members-v1-member.http.js","sourceRoot":"","sources":["../../../src/identity-members-v1-member.http.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"identity-members-v1-member.http.js","sourceRoot":"","sources":["../../../src/identity-members-v1-member.http.ts"],"names":[],"mappings":"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"}
@@ -6,7 +6,7 @@ export declare const __debug: {
6
6
  };
7
7
  export interface Member {
8
8
  /**
9
- * member's id
9
+ * Member ID.
10
10
  * @readonly
11
11
  */
12
12
  _id?: string;
@@ -23,65 +23,76 @@ export interface Member {
23
23
  * `MEMBER` - other members that registered to site
24
24
  */
25
25
  role?: Role;
26
- /** email to be used when logging in */
26
+ /**
27
+ * Email used by the member to log in to the site.
28
+ *
29
+ *
30
+ */
27
31
  loginEmail?: string | null;
28
32
  /** member's full name */
29
33
  memberName?: string | null;
30
- /** member's first name */
34
+ /** Member's first name. */
31
35
  firstName?: string | null;
32
- /** member's last name */
36
+ /** Member's last name. */
33
37
  lastName?: string | null;
34
38
  /**
35
39
  * Deprecated: please use `picture` field instead.
36
40
  * URL for member's profile image
37
41
  */
38
42
  imageUrl?: string | null;
39
- /** member's nickname (exposed to other members) */
43
+ /** Name that identifies the member to other members. Displayed on the member's profile page and interactions in the forum or blog. */
40
44
  nickname?: string | null;
41
- /** `PUBLIC` if other members can view this profile, `PRIVATE` otherwise */
45
+ /**
46
+ * Member privacy status.
47
+ *
48
+ * One of:
49
+ * - `"PUBLIC"`: Member is visible to everyone.
50
+ * - `"PRIVATE"`: Member is hidden from site visitors and other site members. Member is returned only to site contributors and apps with the appropriate permissions.
51
+ * - `"UNKNOWN"`: Insufficient permissions to get the status.
52
+ */
42
53
  profilePrivacyStatus?: SiteMemberPrivacyStatus;
43
- /** url segment for accessing the member's profile */
54
+ /** URL segment that determines the member's profile page. */
44
55
  slug?: string | null;
45
56
  /** member's language */
46
57
  language?: string | null;
47
58
  /**
48
- * member's status:
59
+ * Member site access status.
49
60
  *
50
- * `ACTIVE` - when member is approved
51
- * `APPLICANT` - when pending site owner's approval
52
- * `BLOCKED` - when member is blocked by the site's owner
53
- * `INACTIVE` - not used
61
+ * One of:
62
+ * - `"PENDING"`: Member created and is waiting for approval by site owner.
63
+ * - `"APPROVED"`: Member can log in to the site.
64
+ * - "OFFLINE"`: Member is a guest author for the site blog and cannot log in to the site.
65
+ * - `"BLOCKED"`: Member is blocked and cannot log in to the site.
66
+ * - `"UNKNOWN"`: Insufficient permissions to get the status.
54
67
  */
55
68
  status?: SiteMemberStatus;
56
69
  /**
57
- * date the member was created
70
+ * Date and time when the member was created.
58
71
  * @readonly
59
72
  */
60
73
  creationDate?: Date;
61
74
  /**
62
- * date the member was last updated
75
+ * Date and time when the member was last updated.
76
+ *
77
+ *
63
78
  * @readonly
64
79
  */
65
80
  lastUpdateDate?: Date;
66
81
  /**
67
- * date of last login
82
+ * Date and time when the member last logged in to the site.
83
+ *
68
84
  * @readonly
69
85
  */
70
86
  lastLoginDate?: Date;
71
87
  /**
72
- * member's email addresses
73
- * (returned when `include_contact_details` is set to `true`)
88
+ * List of email addresses.
89
+ *
90
+ *
74
91
  */
75
92
  emails?: string[];
76
- /**
77
- * member's phone numbers
78
- * (returned when `include_contact_details` is set to `true`)
79
- */
93
+ /** List of phone numbers. */
80
94
  phones?: string[];
81
- /**
82
- * member's addresses
83
- * (returned when `include_contact_details` is set to `true`)
84
- */
95
+ /** List of street addresses. */
85
96
  addresses?: Address[];
86
97
  /**
87
98
  * labels attached to the member by the owner (in contacts dashboard)
@@ -89,21 +100,21 @@ export interface Member {
89
100
  */
90
101
  labels?: string[];
91
102
  /**
92
- * custom fields set for the member by the owner (in contacts dashboard)
93
- * (returned when `include_contact_details` is set to `true`)
103
+ * Custom fields, structured as key:object pairs. Custom field keys are defined in the Contacts Extended Fields API. The paired object contains the `name` and `value` properties, where `name` is the display name and `value` is the value stored for the member.
104
+ *
105
+ * Only custom fields added to the member profile in the Dashboard are available through the Members API. Empty fields are not returned.
106
+ *
107
+ * When updating a member, `name` is ignored.
94
108
  */
95
109
  customFields?: CustomField[];
96
- /**
97
- * member's profile picture
98
- * supports both media-items and external urls
99
- */
110
+ /** Member's profile picture URL. */
100
111
  picture?: string;
101
112
  /** member's user id */
102
113
  userId?: string | null;
103
114
  /** Groups the the member is registered to */
104
115
  groups?: Group[];
105
116
  /**
106
- * member's contact id
117
+ * Member's contact ID.
107
118
  * @readonly
108
119
  */
109
120
  contactId?: string | null;
@@ -129,21 +140,25 @@ export declare enum SiteMemberStatus {
129
140
  OFFLINE_ONLY = "OFFLINE_ONLY"
130
141
  }
131
142
  export interface Address {
132
- /** member's street address */
143
+ /** Street address. */
133
144
  street?: string | null;
134
- /** member's city */
145
+ /** City name. */
135
146
  city?: string | null;
136
- /** member's region */
147
+ /** Region name. */
137
148
  region?: string | null;
138
- /** member's country */
149
+ /** 2-letter country code in an [ISO-3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) format. */
139
150
  country?: string | null;
140
- /** member's postal code */
151
+ /** Postal code. */
141
152
  postalCode?: string | null;
142
153
  }
143
154
  export interface CustomField extends CustomFieldValueOneOf {
155
+ /** String value. */
144
156
  strValue?: string | null;
157
+ /** Number value. */
145
158
  numValue?: number;
159
+ /** Date value. */
146
160
  dateValue?: Date;
161
+ /** Display name. */
147
162
  name?: string;
148
163
  }
149
164
  /** @oneof */
@@ -370,11 +385,7 @@ export interface ApproveMemberRequest extends ApproveMemberRequestMemberIdentifi
370
385
  _id?: string;
371
386
  /** Login email address of the member to approve. */
372
387
  email?: string;
373
- /**
374
- * <!--ONLY:VELO
375
- * Approval token returned by `register()`.
376
- * <!--END:ONLY:VELO-->
377
- */
388
+ /** Approval token returned by the [`register()`](#register) function. */
378
389
  token?: string;
379
390
  }
380
391
  /** @oneof */
@@ -391,12 +402,15 @@ export interface ApproveMemberRequestMemberIdentifierOneOf {
391
402
  token?: string;
392
403
  }
393
404
  export interface ApproveMemberResponse {
405
+ /** Approval session token. */
394
406
  session?: Session;
395
407
  }
396
408
  export interface Session {
409
+ /** Session token when the current member is logged into the site. */
397
410
  token?: string | null;
398
411
  }
399
412
  export interface BlockMemberRequest extends BlockMemberRequestMemberIdentifierOneOf {
413
+ /** ID of the member to block. */
400
414
  _id?: string;
401
415
  /** Login email address of the member to block. */
402
416
  email?: string;
@@ -495,9 +509,12 @@ export interface DialogData {
495
509
  initiator?: string | null;
496
510
  }
497
511
  export interface EmailVerification {
498
- /** Id of the verification process */
512
+ /** ID of the verification process. */
499
513
  verificationId?: string;
500
- /** 6-digit code to verify (between 100000 and 999999) */
514
+ /**
515
+ * 6-digit code for verification. Code can be between 100000 and 999999.
516
+ *
517
+ */
501
518
  otp?: string;
502
519
  }
503
520
  export interface RegisterResponse {
@@ -516,11 +533,11 @@ export interface RegisterResponse {
516
533
  approvalToken?: string | null;
517
534
  }
518
535
  export interface EmailVerificationRequired {
519
- /** Id of the verification process. */
536
+ /** ID of the verification process. */
520
537
  verificationId?: string;
521
538
  }
522
539
  export interface EmailVerificationFailed {
523
- /** Id of the failed verification process. */
540
+ /** ID of the failed verification process. */
524
541
  verificationId?: string;
525
542
  /** Reason for verification failure. */
526
543
  verificationFailureReason?: VerificationFailureReason;
@@ -544,15 +561,14 @@ export interface LoginRequest {
544
561
  recaptchaToken?: string;
545
562
  /** invisible recaptcha token */
546
563
  invisibleRecaptchaToken?: string;
564
+ /** Email verification. */
547
565
  emailVerification?: EmailVerification;
548
- /**
549
- * an indication that the request needs to follow mobile login flow
550
- * difference from the regular flow is the OTP email
551
- */
566
+ /** Whether the login request needs to follow the mobile login flow. */
552
567
  isMobile?: boolean | null;
553
568
  }
554
569
  /** Session token for logging the member in. */
555
570
  export interface LoginResponse {
571
+ /** Session token. */
556
572
  session?: Session;
557
573
  /** the member's details */
558
574
  member?: Member;
@@ -572,21 +588,8 @@ export interface SendSetPasswordEmailRequest {
572
588
  /** Login email of the member whose password will be set. */
573
589
  email: string;
574
590
  /**
575
- * > **Deprecated:**
576
- * > This field has been replaced with
577
- * > `hideIgnoreMessage`
578
- * > and will be removed on June 30, 2022.
579
- * > If your app uses this field,
580
- * > we recommend updating your code as soon as possible.
581
- *
582
- * Whether the email is being sent by member request.
583
- *
584
- * If `true`, the email tells the member
585
- * they can safely ignore
586
- * if they did not request the password change.
587
- *
588
- * Defaults to `false`.
589
- */
591
+ * @internal
592
+ * @internal */
590
593
  requestedByMember?: boolean;
591
594
  /**
592
595
  * Whether to hide the ignore this email message .
@@ -709,11 +712,18 @@ export interface SendSetPasswordEmailResponseNonNullableFields {
709
712
  accepted: boolean;
710
713
  }
711
714
  /**
712
- * Change the login email of existing member.
715
+ * Changes a member's login email address.
716
+ *
717
+ * 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.
718
+ *
719
+ * 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.
720
+ *
721
+ * > **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).
713
722
  * @param _id - unique identifier of the requested member(required)
714
723
  * @public
715
724
  * @documentationMaturity preview
716
725
  * @requiredField _id
726
+ * @param options - Options for changing a login email address.
717
727
  */
718
728
  export declare function changeLoginEmail(_id: string, options?: ChangeLoginEmailOptions): Promise<ChangeLoginEmailResponse & ChangeLoginEmailResponseNonNullableFields>;
719
729
  export interface ChangeLoginEmailOptions {
@@ -773,11 +783,7 @@ export interface ApproveOptions extends ApproveMemberRequestMemberIdentifierOneO
773
783
  _id?: string;
774
784
  /** Login email address of the member to approve. */
775
785
  email?: string;
776
- /**
777
- * <!--ONLY:VELO
778
- * Approval token returned by `register()`.
779
- * <!--END:ONLY:VELO-->
780
- */
786
+ /** Approval token returned by the [`register()`](#register) function. */
781
787
  token?: string;
782
788
  }
783
789
  /**
@@ -802,6 +808,7 @@ export interface ApproveOptions extends ApproveMemberRequestMemberIdentifierOneO
802
808
  */
803
809
  export declare function block(options?: BlockOptions): Promise<void>;
804
810
  export interface BlockOptions extends BlockMemberRequestMemberIdentifierOneOf {
811
+ /** ID of the member to block. */
805
812
  _id?: string;
806
813
  /** Login email address of the member to block. */
807
814
  email?: string;
@@ -809,7 +816,11 @@ export interface BlockOptions extends BlockMemberRequestMemberIdentifierOneOf {
809
816
  source?: Source;
810
817
  }
811
818
  /**
812
- * Registers new site member.
819
+ * Registers a new site member.
820
+ *
821
+ * The specified `password` must be between 4 and 100 ASCII characters.
822
+ *
823
+ * >**Note:** The `register()` function behaves differently depending on your site's [member signup settings](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-members/enabling-custom-site-registration. Details are outlined in the **Before you begin** section of the introduction.
813
824
  * @public
814
825
  * @documentationMaturity preview
815
826
  */
@@ -847,7 +858,9 @@ export interface RegisterOptions {
847
858
  isMobile?: boolean | null;
848
859
  }
849
860
  /**
850
- * Logs a member in with an email and password.
861
+ * The `login()` function only works with existing members. To register a new member use the [`register()`](#register) function.
862
+ *
863
+ * To complete the login, the returned session token must be applied using the `applySessionToken()` function in the wix-members-frontend API.
851
864
  * @public
852
865
  * @documentationMaturity preview
853
866
  * @returns Session token for logging the member in.
@@ -862,11 +875,9 @@ export interface LoginOptions {
862
875
  recaptchaToken?: string;
863
876
  /** invisible recaptcha token */
864
877
  invisibleRecaptchaToken?: string;
878
+ /** Email verification. */
865
879
  emailVerification?: EmailVerification;
866
- /**
867
- * an indication that the request needs to follow mobile login flow
868
- * difference from the regular flow is the OTP email
869
- */
880
+ /** Whether the login request needs to follow the mobile login flow. */
870
881
  isMobile?: boolean | null;
871
882
  }
872
883
  /**
@@ -879,6 +890,7 @@ export interface LoginOptions {
879
890
  * @public
880
891
  * @documentationMaturity preview
881
892
  * @requiredField email
893
+ * @param options - Email display options.
882
894
  * @permissionScope Manage Members
883
895
  * @applicableIdentity APP
884
896
  * @applicableIdentity VISITOR
@@ -886,21 +898,8 @@ export interface LoginOptions {
886
898
  export declare function sendSetPasswordEmail(email: string, options?: SendSetPasswordEmailOptions): Promise<SendSetPasswordEmailResponse & SendSetPasswordEmailResponseNonNullableFields>;
887
899
  export interface SendSetPasswordEmailOptions {
888
900
  /**
889
- * > **Deprecated:**
890
- * > This field has been replaced with
891
- * > `hideIgnoreMessage`
892
- * > and will be removed on June 30, 2022.
893
- * > If your app uses this field,
894
- * > we recommend updating your code as soon as possible.
895
- *
896
- * Whether the email is being sent by member request.
897
- *
898
- * If `true`, the email tells the member
899
- * they can safely ignore
900
- * if they did not request the password change.
901
- *
902
- * Defaults to `false`.
903
- */
901
+ * @internal
902
+ * @internal */
904
903
  requestedByMember?: boolean;
905
904
  /**
906
905
  * Whether to hide the ignore this email message .
@@ -104,11 +104,18 @@ const _registerResponse = { member: '_member' };
104
104
  const _sendSetPasswordEmailRequest = {};
105
105
  const _sendSetPasswordEmailResponse = {};
106
106
  /**
107
- * Change the login email of existing member.
107
+ * Changes a member's login email address.
108
+ *
109
+ * 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.
110
+ *
111
+ * 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.
112
+ *
113
+ * > **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).
108
114
  * @param _id - unique identifier of the requested member(required)
109
115
  * @public
110
116
  * @documentationMaturity preview
111
117
  * @requiredField _id
118
+ * @param options - Options for changing a login email address.
112
119
  */
113
120
  function changeLoginEmail(_id, options) {
114
121
  var _a, _b, _c;
@@ -321,7 +328,11 @@ function block(options) {
321
328
  }
322
329
  exports.block = block;
323
330
  /**
324
- * Registers new site member.
331
+ * Registers a new site member.
332
+ *
333
+ * The specified `password` must be between 4 and 100 ASCII characters.
334
+ *
335
+ * >**Note:** The `register()` function behaves differently depending on your site's [member signup settings](https://dev.wix.com/docs/develop-websites/articles/wix-apps/wix-members/enabling-custom-site-registration. Details are outlined in the **Before you begin** section of the introduction.
325
336
  * @public
326
337
  * @documentationMaturity preview
327
338
  */
@@ -381,7 +392,9 @@ function register(options) {
381
392
  }
382
393
  exports.register = register;
383
394
  /**
384
- * Logs a member in with an email and password.
395
+ * The `login()` function only works with existing members. To register a new member use the [`register()`](#register) function.
396
+ *
397
+ * To complete the login, the returned session token must be applied using the `applySessionToken()` function in the wix-members-frontend API.
385
398
  * @public
386
399
  * @documentationMaturity preview
387
400
  * @returns Session token for logging the member in.
@@ -447,6 +460,7 @@ exports.login = login;
447
460
  * @public
448
461
  * @documentationMaturity preview
449
462
  * @requiredField email
463
+ * @param options - Email display options.
450
464
  * @permissionScope Manage Members
451
465
  * @applicableIdentity APP
452
466
  * @applicableIdentity VISITOR