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