Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | 8x 8x 2x 6x 6x 4x 3x | import { authService } from '@/features/auth/services/auth.service';
import { apiClient } from '@/lib/http-client';
import { API_ENDPOINTS, SERVICE_ERRORS } from '@/constants/setting';
export interface ChangePasswordData {
currentPassword: string;
newPassword: string;
}
export interface ChangePasswordResponse {
message: string;
}
class PasswordService {
async changePassword(
data: ChangePasswordData
): Promise<ChangePasswordResponse> {
const token = authService.getAuthToken();
if (!token) {
throw new Error(SERVICE_ERRORS.COMMON.UNAUTHENTICATED);
}
try {
return await apiClient.post(API_ENDPOINTS.PASSWORD_CHANGE, {
currentPassword: data.currentPassword,
newPassword: data.newPassword,
});
} catch (error: any) {
throw new Error(
error?.response?.data?.error?.message ||
error?.response?.data?.message ||
SERVICE_ERRORS.PASSWORD.CHANGE_FAILED
);
}
}
}
export const passwordService = new PasswordService();
|