We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
expired
1 parent 3dddcda commit 10247baCopy full SHA for 10247ba
.changeset/calm-files-confess.md
@@ -0,0 +1,5 @@
1
+---
2
+'@clerk/backend': patch
3
4
+
5
+Added invitation status `expired`
packages/backend/src/api/resources/Enums.ts
@@ -35,4 +35,4 @@ export type SignInStatus = 'needs_identifier' | 'needs_factor_one' | 'needs_fact
35
36
export type SignUpStatus = 'missing_requirements' | 'complete' | 'abandoned';
37
38
-export type InvitationStatus = 'pending' | 'accepted' | 'revoked';
+export type InvitationStatus = 'pending' | 'accepted' | 'revoked' | 'expired';
0 commit comments