Skip to content

Commit

Permalink
Update client API schema
Browse files Browse the repository at this point in the history
  • Loading branch information
davelopez committed Jun 11, 2024
1 parent 488cfe5 commit fc33042
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down Expand Up @@ -15135,7 +15144,7 @@ export interface operations {
};
requestBody: {
content: {
"application/json": components["schemas"]["GroupCreatePayload"];
"application/json": components["schemas"]["GroupUpdatePayload"];
};
};
responses: {
Expand Down

0 comments on commit fc33042

Please sign in to comment.