Unverified Commit c69e54a1 authored by davelopez's avatar davelopez
Browse files

Update client API schema

parent 0b504cf5
Loading
Loading
Loading
Loading
+10 −1
Original line number Diff line number Diff line
@@ -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: {