/** * Payload for the session initialisation message sent by ElevenLabs. */ export interface InitPayload { /** The message type identifier. */ type: "init"; /** Unique identifier for this conversation session. */ conversationId: string; }