export interface AliasKeyResponseValue { key: string; } export interface AliasKeyResponse { data: AliasKeyResponseValue[]; } export interface EncryptedAliasResponseValue { ciphertext: string; hash: string; created_at: number; } export interface EncryptedAliasResponse { primary_user_id: string; encrypted_aliases: EncryptedAliasResponseValue[]; }