From 8d77142ca52d50e17c474b51fbc5e50d864c22f9 Mon Sep 17 00:00:00 2001 From: TTtie Date: Sun, 13 Dec 2020 12:00:51 +0100 Subject: [PATCH] types(GatewayChannelPinsUpdateDispatch): make last_pin_timestamp nullable (#46) Ref: https://github.com/discord/discord-api-docs/commit/14460930d859237dc6cf8d464378b482d712fd6e Ref: discord/ discord-api-docs #2215 --- v8/gateway/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v8/gateway/index.ts b/v8/gateway/index.ts index 60cc836c..68b9c191 100644 --- a/v8/gateway/index.ts +++ b/v8/gateway/index.ts @@ -298,7 +298,7 @@ export type GatewayChannelPinsUpdateDispatch = DataPayload< { guild_id?: string; channel_id: string; - last_pin_timestamp?: string; + last_pin_timestamp?: string | null; } >;