@@ -2,6 +2,7 @@ import type { REST } from '@discordjs/rest';
22import  {  ApplicationCommandsAPI  }  from  './applicationCommands.js' ; 
33import  {  ApplicationsAPI  }  from  './applications.js' ; 
44import  {  ChannelsAPI  }  from  './channel.js' ; 
5+ import  {  GatewayAPI  }  from  './gateway.js' ; 
56import  {  GuildsAPI  }  from  './guild.js' ; 
67import  {  InteractionsAPI  }  from  './interactions.js' ; 
78import  {  InvitesAPI  }  from  './invite.js' ; 
@@ -19,6 +20,7 @@ import { WebhooksAPI } from './webhook.js';
1920export  *  from  './applicationCommands.js' ; 
2021export  *  from  './applications.js' ; 
2122export  *  from  './channel.js' ; 
23+ export  *  from  './gateway.js' ; 
2224export  *  from  './guild.js' ; 
2325export  *  from  './interactions.js' ; 
2426export  *  from  './invite.js' ; 
@@ -40,6 +42,8 @@ export class API {
4042
4143	public  readonly  channels : ChannelsAPI ; 
4244
45+ 	public  readonly  gateway : GatewayAPI ; 
46+ 
4347	public  readonly  guilds : GuildsAPI ; 
4448
4549	public  readonly  interactions : InteractionsAPI ; 
@@ -70,6 +74,7 @@ export class API {
7074		this . applicationCommands  =  new  ApplicationCommandsAPI ( rest ) ; 
7175		this . applications  =  new  ApplicationsAPI ( rest ) ; 
7276		this . channels  =  new  ChannelsAPI ( rest ) ; 
77+ 		this . gateway  =  new  GatewayAPI ( rest ) ; 
7378		this . guilds  =  new  GuildsAPI ( rest ) ; 
7479		this . invites  =  new  InvitesAPI ( rest ) ; 
7580		this . monetization  =  new  MonetizationAPI ( rest ) ; 
0 commit comments