From 83d34ef00c4e25d5050c7fc47562b3faa9125215 Mon Sep 17 00:00:00 2001 From: Snazzah Date: Tue, 3 Jun 2025 00:46:14 -0500 Subject: [PATCH] fix(voice): add `max_dave_protocol_version` to identify (#1260) --- deno/voice/v8.ts | 4 ++++ voice/v8.ts | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/deno/voice/v8.ts b/deno/voice/v8.ts index 7e2dc818..7997c641 100644 --- a/deno/voice/v8.ts +++ b/deno/voice/v8.ts @@ -476,6 +476,10 @@ export interface VoiceIdentifyData { * Voice connection token */ token: string; + /** + * The maximum DAVE protocol version supported + */ + max_dave_protocol_version?: number; } /** diff --git a/voice/v8.ts b/voice/v8.ts index 7e2dc818..7997c641 100644 --- a/voice/v8.ts +++ b/voice/v8.ts @@ -476,6 +476,10 @@ export interface VoiceIdentifyData { * Voice connection token */ token: string; + /** + * The maximum DAVE protocol version supported + */ + max_dave_protocol_version?: number; } /**