From 4619c440b4b4863aa5de286dc097d4dd95100bff Mon Sep 17 00:00:00 2001 From: etn <1438257+etn406@users.noreply.github.com> Date: Mon, 16 Feb 2026 11:28:23 +0100 Subject: [PATCH] Added `parentId` to `GroupRepresentation` Closes #46366 Signed-off-by: etn <1438257+etn406@users.noreply.github.com> --- js/libs/keycloak-admin-client/src/defs/groupRepresentation.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/js/libs/keycloak-admin-client/src/defs/groupRepresentation.ts b/js/libs/keycloak-admin-client/src/defs/groupRepresentation.ts index 4cb184cea7e..6c247ee57fe 100644 --- a/js/libs/keycloak-admin-client/src/defs/groupRepresentation.ts +++ b/js/libs/keycloak-admin-client/src/defs/groupRepresentation.ts @@ -7,6 +7,7 @@ export default interface GroupRepresentation { name?: string; description?: string; path?: string; + parentId?: string; subGroupCount?: number; subGroups?: GroupRepresentation[];