Skip to content

Commit fe873dc

Browse files
chore(backend): Add missing adminDeleteEnabled param to Organization update method (#6880)
Co-authored-by: Robert Soriano <[email protected]>
1 parent b1ac445 commit fe873dc

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.changeset/ten-suns-add.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ type GetOrganizationParams = ({ organizationId: string } | { slug: string }) & {
4343
type UpdateParams = {
4444
name?: string;
4545
slug?: string;
46+
adminDeleteEnabled?: boolean;
4647
maxAllowedMemberships?: number;
4748
} & MetadataParams;
4849

0 commit comments

Comments
 (0)