1 import type { ApiKeysConfig } from '../EncryptionPreferences';
3 export type GetPublicKeysForInbox = ({
7 includeInternalKeysWithE2EEDisabledForMail,
12 internalKeysOnly?: boolean;
14 * Whether to return internal keys which cannot be used for email encryption, as the owner has disabled E2EE.
15 * These keys may still be used for e.g. calendar sharing or message verification.
17 includeInternalKeysWithE2EEDisabledForMail?: boolean;
19 }) => Promise<ApiKeysConfig>;