diff --git a/client/src/api/schema/schema.ts b/client/src/api/schema/schema.ts index a68de4e76d45..f592e3f59745 100644 --- a/client/src/api/schema/schema.ts +++ b/client/src/api/schema/schema.ts @@ -5483,6 +5483,15 @@ export interface components { */ url: string; }; + /** GroupUpdatePayload */ + GroupUpdatePayload: { + /** name of the group */ + name?: string | null; + /** role IDs */ + role_ids?: string[] | null; + /** user IDs */ + user_ids?: string[] | null; + }; /** GroupUserListResponse */ GroupUserListResponse: components["schemas"]["GroupUserResponse"][]; /** GroupUserResponse */ @@ -15135,7 +15144,7 @@ export interface operations { }; requestBody: { content: { - "application/json": components["schemas"]["GroupCreatePayload"]; + "application/json": components["schemas"]["GroupUpdatePayload"]; }; }; responses: {