We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd490b6 commit 1fe7443Copy full SHA for 1fe7443
.changeset/good-snakes-confess.md
@@ -0,0 +1,5 @@
1
+---
2
+"@clerk/backend": patch
3
4
+
5
+Add url property to the Invitation object
packages/backend/src/api/resources/Invitation.ts
@@ -9,6 +9,7 @@ export class Invitation {
9
readonly createdAt: number,
10
readonly updatedAt: number,
11
readonly status: InvitationStatus,
12
+ readonly url?: string,
13
readonly revoked?: boolean,
14
) {}
15
@@ -20,6 +21,7 @@ export class Invitation {
20
21
data.created_at,
22
data.updated_at,
23
data.status,
24
+ data.url,
25
data.revoked,
26
);
27
}
0 commit comments