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 *