Skip to content

Commit 10247ba

Browse files
authored
fix(backend): Missing invitation status expired (#5335)
1 parent 3dddcda commit 10247ba

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/calm-files-confess.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@clerk/backend': patch
3+
---
4+
5+
Added invitation status `expired`

packages/backend/src/api/resources/Enums.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ export type SignInStatus = 'needs_identifier' | 'needs_factor_one' | 'needs_fact
3535

3636
export type SignUpStatus = 'missing_requirements' | 'complete' | 'abandoned';
3737

38-
export type InvitationStatus = 'pending' | 'accepted' | 'revoked';
38+
export type InvitationStatus = 'pending' | 'accepted' | 'revoked' | 'expired';

0 commit comments

Comments
 (0)