chore: fix actions reported errors

This commit is contained in:
Vlad Frangu
2020-08-22 21:53:08 +03:00
parent 267cb2fa32
commit a11df8f7df
2 changed files with 3 additions and 3 deletions

View File

@@ -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

View File

@@ -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;
}