Use same lock values as mobile clients
[ProtonMail-WebClient.git] / packages / shared / lib / api / breaches.ts
blob74d514988a3be205192f7a2af9bfa93aeaca0b65
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 });