From 08c9f2395baaf87e32dabff909143765aa565995 Mon Sep 17 00:00:00 2001 From: LTS20050703 Date: Mon, 12 Sep 2022 08:08:40 +0700 Subject: [PATCH] chore: Add note about missing webhook following source (#2460) --- types/discord.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/discord.ts b/types/discord.ts index 400f943d3..5b1165463 100644 --- a/types/discord.ts +++ b/types/discord.ts @@ -502,9 +502,9 @@ export interface DiscordApplicationWebhook { avatar: string | null; /** The bot/OAuth2 application that created this webhook */ application_id: string | null; - /** The guild of the channel that this webhook is following (returned for Channel Follower Webhooks) */ + /** The guild of the channel that this webhook is following (returned for Channel Follower Webhooks), field will be absent if the webhook creator has since lost access to the guild where the followed channel resides */ source_guild?: Partial; - /** The channel that this webhook is following (returned for Channel Follower Webhooks) */ + /** The channel that this webhook is following (returned for Channel Follower Webhooks), field will be absent if the webhook creator has since lost access to the guild where the followed channel resides */ source_channel?: Partial; }