import api from '..'; const USERS_API = 'api/admin'; export const usersApi = api.injectEndpoints({ endpoints: (build) => ({ login: build.mutation, UserAuthI>({ query: (userAuth) => ({ url: `${USERS_API}/login`, method: 'POST', body: userAuth, }), }), register: build.mutation, UserRegisterI>({ query: (userRegister) => ({ url: `${USERS_API}/register`, method: 'POST', body: userRegister, }), invalidatesTags: ['users'], }), logout: build.mutation, void>({ query: () => ({ url: `${USERS_API}/logout`, method: 'POST', }), }), getUser: build.mutation, void>({ query: () => ({ url: `${USERS_API}/profile`, method: 'GET', }), }), getAllUsers: build.query, void>({ query: () => ({ url: `${USERS_API}/users`, method: 'GET', }), providesTags: ['users'], }), resetPassword: build.mutation< ResponseI, { userId: string; password: string } >({ query: (body) => ({ url: `${USERS_API}/password`, method: 'PUT', body, }), }), updateProfile: build.mutation< ResponseI, UserUpdateI >({ query: (body) => ({ url: `${USERS_API}/profile`, method: 'PUT', body, }), invalidatesTags: ['users'], }), delete: build.mutation, string>({ query: (userId) => ({ url: `${USERS_API}/delete`, method: 'DELETE', body: { userId }, }), invalidatesTags: ['users'], }), }), }); export const { useLoginMutation, useRegisterMutation, useLogoutMutation, useGetUserMutation, useGetAllUsersQuery, useResetPasswordMutation, useDeleteMutation, useUpdateProfileMutation, } = usersApi;