mirror of
https://github.com/discordjs/discord-api-types.git
synced 2026-05-29 23:00:08 +00:00
chore: fix actions reported errors
This commit is contained in:
2
.github/workflows/codequality.yml
vendored
2
.github/workflows/codequality.yml
vendored
@@ -31,7 +31,7 @@ jobs:
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
custom-glob: 'v*/** default/** common/**'
|
||||
custom-glob: '{v,default,common}*/**'
|
||||
|
||||
TypeScript:
|
||||
name: TypeScript
|
||||
|
||||
@@ -147,7 +147,7 @@ export enum GatewayDispatchEvents {
|
||||
WebhooksUpdate = 'WEBHOOKS_UPDATE',
|
||||
}
|
||||
|
||||
export type GatewaySendPayload = GatewayHeartbeat | GatewayIdentify | GatewayPresenceUpdate | GatewayVoiceStateUpdate | GatewayResume | GatewayRequestGuildMembers;
|
||||
export type GatewaySendPayload = GatewayHeartbeat | GatewayIdentify | GatewayUpdatePresence | GatewayVoiceStateUpdate | GatewayResume | GatewayRequestGuildMembers;
|
||||
|
||||
export type GatewayReceivePayload = GatewayHello | GatewayHeartbeatRequest | GatewayHeartbeatAck | GatewayInvalidSession | GatewayReconnect | GatewayDispatchPayload;
|
||||
|
||||
@@ -563,7 +563,7 @@ export interface GatewayVoiceStateUpdate {
|
||||
/**
|
||||
* https://discord.com/developers/docs/topics/gateway#update-status
|
||||
*/
|
||||
export interface GatewayPresenceUpdate {
|
||||
export interface GatewayUpdatePresence {
|
||||
op: GatewayOPCodes.PresenceUpdate;
|
||||
d: GatewayPresenceUpdateData;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user