Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / packages / shared / lib / api / breaches.ts
blobc61d15e17dc69d7ab40187ce4a0a2738b9e158e5
1 export const getBreaches = (Recent?: boolean) => ({
2     url: 'account/v4/breaches',
3     method: 'get',
4     params: { Recent },
5 });
7 export const updateBreachState = (data: { ID: string; State: number }) => ({
8     url: 'account/v4/breaches/state',
9     method: 'put',
10     data,
11 });
13 export const getUnreadBreachesCount = () => ({
14     url: 'account/v4/breaches/unread/count',
15     method: 'get',
16 });
18 export const updateBreachEmailNotificationsState = (data: any) => ({
19     url: 'account/v1/breaches/email-notifications',
20     method: 'PATCH',
21     data,
22 });