2022-04-22 20:03:08 +05:30
|
|
|
import axios from 'api';
|
|
|
|
|
import { ErrorResponseHandler } from 'api/ErrorResponseHandler';
|
|
|
|
|
import { AxiosError } from 'axios';
|
|
|
|
|
import createQueryParams from 'lib/createQueryParams';
|
|
|
|
|
import { ErrorResponse, SuccessResponse } from 'types/api';
|
|
|
|
|
import { PayloadProps, Props } from 'types/api/errors/getAll';
|
|
|
|
|
|
|
|
|
|
const getAll = async (
|
|
|
|
|
props: Props,
|
|
|
|
|
): Promise<SuccessResponse<PayloadProps> | ErrorResponse> => {
|
|
|
|
|
try {
|
|
|
|
|
const response = await axios.get(
|
|
|
|
|
`/errors?${createQueryParams({
|
|
|
|
|
start: props.start.toString(),
|
|
|
|
|
end: props.end.toString(),
|
|
|
|
|
})}`,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
statusCode: 200,
|
|
|
|
|
error: null,
|
2022-05-05 16:16:13 +05:30
|
|
|
message: 'Success',
|
2022-04-22 20:03:08 +05:30
|
|
|
payload: response.data,
|
|
|
|
|
};
|
|
|
|
|
} catch (error) {
|
|
|
|
|
return ErrorResponseHandler(error as AxiosError);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default getAll;
|