From df0d39030398721790fa0e09af100763a5c9d8db Mon Sep 17 00:00:00 2001 From: Jiralite <33201955+Jiralite@users.noreply.github.com> Date: Tue, 12 Nov 2024 18:49:52 +0000 Subject: [PATCH] docs(RESTPostAPIChannelMessageJSONBody): Make message reference generic (#1139) * docs: make message reference generic * docs: keep 1:1 with Discord --- deno/rest/v10/channel.ts | 2 +- deno/rest/v9/channel.ts | 2 +- rest/v10/channel.ts | 2 +- rest/v9/channel.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/deno/rest/v10/channel.ts b/deno/rest/v10/channel.ts index dbd8b460..bf6ab9ab 100644 --- a/deno/rest/v10/channel.ts +++ b/deno/rest/v10/channel.ts @@ -301,7 +301,7 @@ export interface RESTPostAPIChannelMessageJSONBody { */ allowed_mentions?: APIAllowedMentions | undefined; /** - * Include to make your message a reply + * Include to make your message a reply or a forward * * See https://discord.com/developers/docs/resources/channel#message-reference-object-message-reference-structure */ diff --git a/deno/rest/v9/channel.ts b/deno/rest/v9/channel.ts index 11da76ad..2d4bb953 100644 --- a/deno/rest/v9/channel.ts +++ b/deno/rest/v9/channel.ts @@ -309,7 +309,7 @@ export interface RESTPostAPIChannelMessageJSONBody { */ allowed_mentions?: APIAllowedMentions | undefined; /** - * Include to make your message a reply + * Include to make your message a reply or a forward * * See https://discord.com/developers/docs/resources/channel#message-reference-object-message-reference-structure */ diff --git a/rest/v10/channel.ts b/rest/v10/channel.ts index 000eca8c..15f1dcad 100644 --- a/rest/v10/channel.ts +++ b/rest/v10/channel.ts @@ -301,7 +301,7 @@ export interface RESTPostAPIChannelMessageJSONBody { */ allowed_mentions?: APIAllowedMentions | undefined; /** - * Include to make your message a reply + * Include to make your message a reply or a forward * * See https://discord.com/developers/docs/resources/channel#message-reference-object-message-reference-structure */ diff --git a/rest/v9/channel.ts b/rest/v9/channel.ts index 7624aebd..da4b68d5 100644 --- a/rest/v9/channel.ts +++ b/rest/v9/channel.ts @@ -309,7 +309,7 @@ export interface RESTPostAPIChannelMessageJSONBody { */ allowed_mentions?: APIAllowedMentions | undefined; /** - * Include to make your message a reply + * Include to make your message a reply or a forward * * See https://discord.com/developers/docs/resources/channel#message-reference-object-message-reference-structure */