Update gatewayTypes.ts
- Added TypeStart, VoiceServerUpdate, WebhooksUpdate interfaces Co-Authored-By: Aki <71239005+AkiaCode@users.noreply.github.com> Co-Authored-By: Choi Minseo <minseo0388@outlook.com>
This commit is contained in:
parent
d091201ead
commit
e68b00e9a2
1 changed files with 21 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
||||||
// https://discord.com/developers/docs/topics/opcodes-and-status-codes#gateway
|
// https://discord.com/developers/docs/topics/opcodes-and-status-codes#gateway
|
||||||
// https://discord.com/developers/docs/topics/gateway#commands-and-events-gateway-events
|
// https://discord.com/developers/docs/topics/gateway#commands-and-events-gateway-events
|
||||||
import { Emoji } from '../structures/emoji.ts'
|
import { Emoji } from '../structures/emoji.ts'
|
||||||
|
import { Member } from '../structures/member.ts'
|
||||||
import { Role } from '../structures/role.ts'
|
import { Role } from '../structures/role.ts'
|
||||||
import { User } from '../structures/user.ts'
|
import { User } from '../structures/user.ts'
|
||||||
import { MemberPayload } from './guildTypes.ts'
|
import { MemberPayload } from './guildTypes.ts'
|
||||||
|
@ -360,6 +361,7 @@ interface ActivityAssets {
|
||||||
small_image?: string
|
small_image?: string
|
||||||
small_text?: string
|
small_text?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
interface ActivitySecrets {
|
interface ActivitySecrets {
|
||||||
join?: string
|
join?: string
|
||||||
spectate?: string
|
spectate?: string
|
||||||
|
@ -375,5 +377,24 @@ enum ActivityFlags {
|
||||||
PLAY = 1 << 5
|
PLAY = 1 << 5
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface TypeStart {
|
||||||
|
channel_id: string
|
||||||
|
guild_id?: string
|
||||||
|
user_id: string
|
||||||
|
timestamp: number
|
||||||
|
member?: Member
|
||||||
|
}
|
||||||
|
|
||||||
|
interface VoiceServerUpdate {
|
||||||
|
token: string
|
||||||
|
guild_id: string
|
||||||
|
endpoint: string
|
||||||
|
}
|
||||||
|
|
||||||
|
interface WebhooksUpdate {
|
||||||
|
guild_id: string
|
||||||
|
channel_id: string
|
||||||
|
}
|
||||||
|
|
||||||
//https://discord.com/developers/docs/topics/gateway#typing-start-typing-start-event-fields
|
//https://discord.com/developers/docs/topics/gateway#typing-start-typing-start-event-fields
|
||||||
export { GatewayCloseCodes, GatewayOpcodes, GatewayIntents, GatewayEvents }
|
export { GatewayCloseCodes, GatewayOpcodes, GatewayIntents, GatewayEvents }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue