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 41 42 43 44 45 | 51x 3x 51x 6x 6x 6x 9x 6x 51x 51x | import { customInstance } from "..";
export const getRiskProfile = (id: string) => {
return customInstance({
url: `/risk/ips/${id}`,
method: "GET",
});
};
type TGroupBy = "minute" | "hour" | "day" | "week" | "month";
type Options = Partial<{
filter: string;
groupBy?: TGroupBy;
}>;
export const getRiskProfileTransactions = (id: string, options?: Options) => {
let URL = `/risk/ips/${id}/transactions?sort=-createdAt`;
Eif (options) {
Object.keys(options).forEach(
(option) => (URL += `&${option}=${options[option as keyof Options]}`),
);
}
return customInstance({
url: URL,
method: "GET",
});
};
export const getRiskProfileExcalations = (id: string) =>
customInstance({
url: `/risk/ips/${id}/escalations`,
method: "GET",
});
export const getRiskProfileExcalationByID = (
riskProfileID: string,
id: number,
) =>
customInstance({
url: `/risk/ips/${riskProfileID}/escalations/${id}`,
method: "GET",
});
|