From 9a50367dad3a06fbca6e8d1fdd98fbf144595d4e Mon Sep 17 00:00:00 2001 From: Vitor Date: Tue, 9 Aug 2022 21:37:50 +0100 Subject: [PATCH] feat(GatewayReadyDispatchData): add `resume_gateway_url` (#552) --- deno/gateway/v10.ts | 4 ++++ deno/gateway/v9.ts | 4 ++++ gateway/v10.ts | 4 ++++ gateway/v9.ts | 4 ++++ 4 files changed, 16 insertions(+) diff --git a/deno/gateway/v10.ts b/deno/gateway/v10.ts index 8b1ea853a..db0497500 100644 --- a/deno/gateway/v10.ts +++ b/deno/gateway/v10.ts @@ -409,6 +409,10 @@ export interface GatewayReadyDispatchData { * Used for resuming connections */ session_id: string; + /** + * Gateway url for resuming connections + */ + resume_gateway_url: string; /** * The shard information associated with this session, if sent when identifying * diff --git a/deno/gateway/v9.ts b/deno/gateway/v9.ts index eb8a4d534..1c6e71796 100644 --- a/deno/gateway/v9.ts +++ b/deno/gateway/v9.ts @@ -408,6 +408,10 @@ export interface GatewayReadyDispatchData { * Used for resuming connections */ session_id: string; + /** + * Gateway url for resuming connections + */ + resume_gateway_url: string; /** * The shard information associated with this session, if sent when identifying * diff --git a/gateway/v10.ts b/gateway/v10.ts index 23ce8ea8b..a463141b7 100644 --- a/gateway/v10.ts +++ b/gateway/v10.ts @@ -409,6 +409,10 @@ export interface GatewayReadyDispatchData { * Used for resuming connections */ session_id: string; + /** + * Gateway url for resuming connections + */ + resume_gateway_url: string; /** * The shard information associated with this session, if sent when identifying * diff --git a/gateway/v9.ts b/gateway/v9.ts index a66c097a8..e6ace3c9c 100644 --- a/gateway/v9.ts +++ b/gateway/v9.ts @@ -408,6 +408,10 @@ export interface GatewayReadyDispatchData { * Used for resuming connections */ session_id: string; + /** + * Gateway url for resuming connections + */ + resume_gateway_url: string; /** * The shard information associated with this session, if sent when identifying *