We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
adminDeleteEnabled
1 parent b1ac445 commit fe873dcCopy full SHA for fe873dc
.changeset/ten-suns-add.md
@@ -0,0 +1,5 @@
1
+---
2
+"@clerk/backend": patch
3
4
+
5
+Added `adminDeleteEnabled` param to Organization update method
packages/backend/src/api/endpoints/OrganizationApi.ts
@@ -43,6 +43,7 @@ type GetOrganizationParams = ({ organizationId: string } | { slug: string }) & {
43
type UpdateParams = {
44
name?: string;
45
slug?: string;
46
+ adminDeleteEnabled?: boolean;
47
maxAllowedMemberships?: number;
48
} & MetadataParams;
49
0 commit comments