We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
RevokeOrganizationInvitationParams.requestUserId
1 parent 49c0a69 commit 27d66a5Copy full SHA for 27d66a5
.changeset/cool-suits-sell.md
@@ -0,0 +1,5 @@
1
+---
2
+'@clerk/backend': patch
3
4
+
5
+Update `RevokeOrganizationInvitationParams.requestUserId` to optional
packages/backend/src/api/endpoints/OrganizationApi.ts
@@ -98,7 +98,7 @@ type GetOrganizationInvitationParams = {
98
type RevokeOrganizationInvitationParams = {
99
organizationId: string;
100
invitationId: string;
101
- requestingUserId: string;
+ requestingUserId?: string;
102
};
103
104
type GetOrganizationDomainListParams = {
0 commit comments