@stytch/vanilla-js 2.0.1 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @stytch/vanilla-js
2
2
 
3
+ ## 2.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 0a18c34: Add docs for new verified fields on Member objects, and fix some docs links
8
+ - Updated dependencies [0a18c34]
9
+ - @stytch/core@0.15.1
10
+
3
11
  ## 2.0.1
4
12
 
5
13
  ### Patch Changes
@@ -150,9 +150,13 @@ interface Member {
150
150
  */
151
151
  member_id: string;
152
152
  /**
153
- * The email address of the member
153
+ * The email address of the member.
154
154
  */
155
155
  email_address: string;
156
+ /**
157
+ * Whether the member's email address is verified.
158
+ */
159
+ email_address_verified: boolean;
156
160
  /**
157
161
  * The `status` value denotes whether or not a user has successfully logged in at least once with any available login method.
158
162
  */
@@ -186,9 +190,13 @@ interface Member {
186
190
  */
187
191
  mfa_enrolled: boolean;
188
192
  /**
189
- * Returned if the member has a phone number
193
+ * Returned if the member has a phone number.
190
194
  */
191
195
  mfa_phone_number: string;
196
+ /**
197
+ * Whether the member's phone number is verified.
198
+ */
199
+ mfa_phone_number_verified: boolean;
192
200
  }
193
201
  type B2BAuthenticateResponse = ResponseCommon & {
194
202
  /**
@@ -150,9 +150,13 @@ interface Member {
150
150
  */
151
151
  member_id: string;
152
152
  /**
153
- * The email address of the member
153
+ * The email address of the member.
154
154
  */
155
155
  email_address: string;
156
+ /**
157
+ * Whether the member's email address is verified.
158
+ */
159
+ email_address_verified: boolean;
156
160
  /**
157
161
  * The `status` value denotes whether or not a user has successfully logged in at least once with any available login method.
158
162
  */
@@ -186,9 +190,13 @@ interface Member {
186
190
  */
187
191
  mfa_enrolled: boolean;
188
192
  /**
189
- * Returned if the member has a phone number
193
+ * Returned if the member has a phone number.
190
194
  */
191
195
  mfa_phone_number: string;
196
+ /**
197
+ * Whether the member's phone number is verified.
198
+ */
199
+ mfa_phone_number_verified: boolean;
192
200
  }
193
201
  type B2BAuthenticateResponse = ResponseCommon & {
194
202
  /**