diff --git a/deno/rest/v10/channel.ts b/deno/rest/v10/channel.ts index 4e1416f61..dc14b0df4 100644 --- a/deno/rest/v10/channel.ts +++ b/deno/rest/v10/channel.ts @@ -373,6 +373,10 @@ export type RESTDeleteAPIChannelMessageUserReactionResult = never; * https://discord.com/developers/docs/resources/channel#get-reactions */ export interface RESTGetAPIChannelMessageReactionUsersQuery { + /** + * The reaction type (0 for normal and 1 for super) + */ + type: ReactionType; /** * Get users after this user ID */ @@ -385,6 +389,14 @@ export interface RESTGetAPIChannelMessageReactionUsersQuery { limit?: number; } +/** + * https://discord.com/developers/docs/resources/channel#get-reactions-reaction-types + */ +export enum ReactionType { + Normal, + Super, +} + /** * https://discord.com/developers/docs/resources/channel#get-reactions */ diff --git a/deno/rest/v9/channel.ts b/deno/rest/v9/channel.ts index 33e8c8c3f..575bb21ea 100644 --- a/deno/rest/v9/channel.ts +++ b/deno/rest/v9/channel.ts @@ -381,6 +381,10 @@ export type RESTDeleteAPIChannelMessageUserReactionResult = never; * https://discord.com/developers/docs/resources/channel#get-reactions */ export interface RESTGetAPIChannelMessageReactionUsersQuery { + /** + * The reaction type (0 for normal and 1 for super) + */ + type: ReactionType; /** * Get users after this user ID */ @@ -393,6 +397,14 @@ export interface RESTGetAPIChannelMessageReactionUsersQuery { limit?: number; } +/** + * https://discord.com/developers/docs/resources/channel#get-reactions-reaction-types + */ +export enum ReactionType { + Normal, + Super, +} + /** * https://discord.com/developers/docs/resources/channel#get-reactions */ diff --git a/rest/v10/channel.ts b/rest/v10/channel.ts index 7fbacebf9..d99361902 100644 --- a/rest/v10/channel.ts +++ b/rest/v10/channel.ts @@ -373,6 +373,10 @@ export type RESTDeleteAPIChannelMessageUserReactionResult = never; * https://discord.com/developers/docs/resources/channel#get-reactions */ export interface RESTGetAPIChannelMessageReactionUsersQuery { + /** + * The reaction type (0 for normal and 1 for super) + */ + type: ReactionType; /** * Get users after this user ID */ @@ -385,6 +389,14 @@ export interface RESTGetAPIChannelMessageReactionUsersQuery { limit?: number; } +/** + * https://discord.com/developers/docs/resources/channel#get-reactions-reaction-types + */ +export enum ReactionType { + Normal, + Super, +} + /** * https://discord.com/developers/docs/resources/channel#get-reactions */ diff --git a/rest/v9/channel.ts b/rest/v9/channel.ts index 86a49db1b..dceea41af 100644 --- a/rest/v9/channel.ts +++ b/rest/v9/channel.ts @@ -381,6 +381,10 @@ export type RESTDeleteAPIChannelMessageUserReactionResult = never; * https://discord.com/developers/docs/resources/channel#get-reactions */ export interface RESTGetAPIChannelMessageReactionUsersQuery { + /** + * The reaction type (0 for normal and 1 for super) + */ + type: ReactionType; /** * Get users after this user ID */ @@ -393,6 +397,14 @@ export interface RESTGetAPIChannelMessageReactionUsersQuery { limit?: number; } +/** + * https://discord.com/developers/docs/resources/channel#get-reactions-reaction-types + */ +export enum ReactionType { + Normal, + Super, +} + /** * https://discord.com/developers/docs/resources/channel#get-reactions */