import type { HttpClient } from '@services' import type { ApiError, Response } from '@types' export type ResetPasswordInput = { password: string password_confirmation: string reset_password_token: string | undefined } const ResetPassword = (http: HttpClient) => ({ query: ( input: ResetPasswordInput, ): Promise> => { return http.put(`v3/admin/auth/password`, input) }, }) export default ResetPassword