Skip to content

Commit

Permalink
♻️ Update client services (#1223)
Browse files Browse the repository at this point in the history
  • Loading branch information
alejsdev committed Jun 5, 2024
1 parent 90aa3dc commit 2f0a682
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions frontend/src/client/services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,19 @@ requestBody,
});
}

/**
* Delete User Me
* Delete own user.
* @returns Message Successful Response
* @throws ApiError
*/
public static deleteUserMe(): CancelablePromise<Message> {
return __request(OpenAPI, {
method: 'DELETE',
url: '/api/v1/users/me',
});
}

/**
* Update User Me
* Update own user.
Expand Down

0 comments on commit 2f0a682

Please sign in to comment.