Use same lock values as mobile clients
[ProtonMail-WebClient.git] / packages / shared / lib / api / invites.ts
blob26f55a6e2b9992aad1857ac128ad7dbebea4286c
1 import type { CLIENT_TYPES } from '../constants';
3 export const createInvitation = ({ Email, Type }: { Email: string; Type: CLIENT_TYPES }) => ({
4     method: 'post',
5     url: 'core/v4/invites',
6     data: { Email, Type },
7 });
9 export const checkInvitation = (data: { Selector: string; Token: string; Type: CLIENT_TYPES }) => ({
10     method: 'post',
11     url: 'core/v4/invites/check',
12     data,
13 });