Skip to content

Commit

Permalink
feat(GatewayReadyDispatchData): add resume_gateway_url (#552)
Browse files Browse the repository at this point in the history
  • Loading branch information
vvito7 committed Aug 9, 2022
1 parent dc3d5df commit 9a50367
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions deno/gateway/v10.ts
Expand Up @@ -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
*
Expand Down
4 changes: 4 additions & 0 deletions deno/gateway/v9.ts
Expand Up @@ -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
*
Expand Down
4 changes: 4 additions & 0 deletions gateway/v10.ts
Expand Up @@ -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
*
Expand Down
4 changes: 4 additions & 0 deletions gateway/v9.ts
Expand Up @@ -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
*
Expand Down

0 comments on commit 9a50367

Please sign in to comment.