Skip to content

Commit 7ec95a7

Browse files
chanioxarispanteliselefanagstef
authoredMar 7, 2025··
feat(clerk-js,types): Do not require current password if Reverifaction enabled (#5284)
Co-authored-by: panteliselef <panteliselef@outlook.com> Co-authored-by: Stefanos Anagnostou <anagstef@users.noreply.github.com>
1 parent 8b5645b commit 7ec95a7

File tree

10 files changed

+226
-142
lines changed

10 files changed

+226
-142
lines changed
 

‎.changeset/heavy-hornets-yawn.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
'@clerk/clerk-js': patch
3+
'@clerk/types': patch
4+
'@clerk/clerk-expo': patch
5+
---
6+
7+
Improve the UX on Reverification by not requiring the user's current password.
8+
9+
The user has already verified themselves using Reverification, so there is no point to maintain a two level verification in case they would like to change their password. Also, Reverification is a stronger verification factor, as it includes strategies such as email code.

‎packages/clerk-js/src/core/resources/AuthConfig.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { BaseResource } from './internal';
66
export class AuthConfig extends BaseResource implements AuthConfigResource {
77
singleSessionMode!: boolean;
88
claimedAt: Date | null = null;
9+
reverification!: boolean;
910

1011
public constructor(data: AuthConfigJSON) {
1112
super();
@@ -15,6 +16,7 @@ export class AuthConfig extends BaseResource implements AuthConfigResource {
1516
protected fromJSON(data: AuthConfigJSON | null): this {
1617
this.singleSessionMode = data ? data.single_session_mode : true;
1718
this.claimedAt = data?.claimed_at ? unixEpochToDate(data.claimed_at) : null;
19+
this.reverification = data ? data.reverification : true;
1820
return this;
1921
}
2022

@@ -24,6 +26,7 @@ export class AuthConfig extends BaseResource implements AuthConfigResource {
2426
id: this.id || '',
2527
single_session_mode: this.singleSessionMode,
2628
claimed_at: this.claimedAt ? this.claimedAt.getTime() : null,
29+
reverification: this.reverification,
2730
};
2831
}
2932
}

‎packages/clerk-js/src/core/resources/__tests__/Environment.test.ts

+14-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@ describe('Environment', () => {
77
const environmentJSON = {
88
object: 'environment',
99
id: '',
10-
auth_config: { object: 'auth_config', id: '', single_session_mode: true, claimed_at: null },
10+
auth_config: {
11+
object: 'auth_config',
12+
id: '',
13+
single_session_mode: true,
14+
claimed_at: null,
15+
reverification: true,
16+
},
1117
display_config: {
1218
object: 'display_config',
1319
id: 'display_config_DUMMY_ID',
@@ -240,7 +246,13 @@ describe('Environment', () => {
240246
const environmentJSON = {
241247
object: 'environment',
242248
id: '',
243-
auth_config: { object: 'auth_config', id: '', single_session_mode: true, claimed_at: null },
249+
auth_config: {
250+
object: 'auth_config',
251+
id: '',
252+
single_session_mode: true,
253+
claimed_at: null,
254+
reverification: true,
255+
},
244256
display_config: {
245257
object: 'display_config',
246258
id: 'display_config_DUMMY_ID',

0 commit comments

Comments
 (0)
Please sign in to comment.