import type { HttpClient } from '@services' import type { ApiError, Response } from '@types' export type ForgotPasswordInput = { email: string } const forgotPassword = (http: HttpClient) => ({ query: ( input: ForgotPasswordInput, ): Promise> => { return http.post(`v3/admin/auth/password`, input) }, }) export default forgotPassword