Skip to content

Commit

Permalink
Update schema
Browse files Browse the repository at this point in the history
  • Loading branch information
zobweyt committed Aug 7, 2024
1 parent 40321ad commit f47cd37
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion frontend/src/lib/api/schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,8 @@ export interface paths {
get?: never;
put?: never;
post?: never;
delete?: never;
/** Delete Current User Avatar */
delete: operations["delete_current_user_avatar_api_v1_users_me_avatar_delete"];
options?: never;
head?: never;
/** Update Current User Avatar */
Expand Down Expand Up @@ -714,6 +715,26 @@ export interface operations {
};
};
};
delete_current_user_avatar_api_v1_users_me_avatar_delete: {
parameters: {
query?: never;
header?: never;
path?: never;
cookie?: never;
};
requestBody?: never;
responses: {
/** @description Successful Response */
200: {
headers: {
[name: string]: unknown;
};
content: {
"application/json": components["schemas"]["CurrentUserResponse"];
};
};
};
};
update_current_user_avatar_api_v1_users_me_avatar_patch: {
parameters: {
query?: never;
Expand Down

0 comments on commit f47cd37

Please sign in to comment.