From 9e5c5b5aac30e931255f39790123b4bd3458a16f Mon Sep 17 00:00:00 2001 From: Sugden <28943913+NotSugden@users.noreply.github.com> Date: Sat, 19 Sep 2020 12:50:13 +0100 Subject: [PATCH] fix(GatewayIdentifyProperties): rename `device` to `$device` (#17) ref: https://discord.com/developers/docs/topics/gateway#identify-identify-connection-properties --- v6/gateway/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v6/gateway/index.ts b/v6/gateway/index.ts index eb08db47..fdd5a454 100644 --- a/v6/gateway/index.ts +++ b/v6/gateway/index.ts @@ -590,7 +590,7 @@ export interface GatewayHeartbeat { export interface GatewayIdentifyProperties { $os: string; $browser: string; - device: string; + $device: string; } /**