Use same lock values as mobile clients
[ProtonMail-WebClient.git] / packages / shared / lib / api / images.ts
blobba1807fc3493e6cf03c0751122bf951736cc9b0a
1 export const getImage = (Url: string, DryRun = 0, UID?: string) => ({
2     method: 'get',
3     url: 'core/v4/images',
4     params: { Url, DryRun, UID },
5 });
7 export type SenderImageMode = 'light' | 'dark';
9 /**
10  * Get logo corresponding to address
11  * @param Address encoded email address
12  * @param Size The size of the logo to be returned, default 48
13  * @returns
14  */
15 export const getLogo = (
16     Address: string,
17     Size?: number,
18     BimiSelector?: string,
19     Mode?: SenderImageMode,
20     UID?: string
21 ) => ({
22     method: 'get',
23     url: 'core/v4/images/logo',
24     params: { UID, Address, Size, BimiSelector, Mode },
25 });