/** * Parameters for getting a specific conversation. */ export type GetConversationParams = /** * Retrieve conversation information by ID. */ { id: string; } /** * Retrieve conversation information by sender and recipient. */ | { recipient: string; sender: string; };