File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
packages/backend/src/api/resources Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2
2
' @clerk/backend ' : patch
3
3
---
4
4
5
- Updating types of Verification.status and Verification.strategy
5
+ Updating type of Verification.status
Original file line number Diff line number Diff line change 1
- import type { SignUpStatus , VerificationStatus , VerificationStrategy } from '@clerk/types' ;
1
+ import type { SignUpStatus , VerificationStatus } from '@clerk/types' ;
2
2
3
3
import type {
4
4
ActorTokenStatus ,
@@ -589,7 +589,7 @@ export interface UserJSON extends ClerkResourceJSON {
589
589
590
590
export interface VerificationJSON extends ClerkResourceJSON {
591
591
status : VerificationStatus ;
592
- strategy : VerificationStrategy ;
592
+ strategy : string ;
593
593
attempts : number | null ;
594
594
expire_at : number | null ;
595
595
verified_at_client ?: string ;
Original file line number Diff line number Diff line change 1
- import type { VerificationStatus , VerificationStrategy } from '@clerk/types' ;
1
+ import type { VerificationStatus } from '@clerk/types' ;
2
2
3
3
import type { OrganizationDomainVerificationJSON , VerificationJSON } from './JSON' ;
4
4
@@ -22,7 +22,7 @@ export class Verification {
22
22
/**
23
23
* The strategy pertaining to the parent sign-up or sign-in attempt.
24
24
*/
25
- readonly strategy : VerificationStrategy ,
25
+ readonly strategy : string ,
26
26
/**
27
27
* The redirect URL for an external verification.
28
28
*/
You can’t perform that action at this time.
0 commit comments