Skip to content

Commit

Permalink
feat(APIGuildPreview): add stickers (#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
suneettipirneni committed Jan 19, 2022
1 parent 2c1fbda commit 310c68f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions deno/payloads/v8/guild.ts
Expand Up @@ -582,6 +582,10 @@ export interface APIGuildPreview {
* The description for the guild
*/
description: string;
/**
* Custom guild stickers
*/
stickers: APISticker[];
}

/**
Expand Down
4 changes: 4 additions & 0 deletions deno/payloads/v9/guild.ts
Expand Up @@ -590,6 +590,10 @@ export interface APIGuildPreview {
* The description for the guild
*/
description: string;
/**
* Custom guild stickers
*/
stickers: APISticker[];
}

/**
Expand Down
4 changes: 4 additions & 0 deletions payloads/v8/guild.ts
Expand Up @@ -582,6 +582,10 @@ export interface APIGuildPreview {
* The description for the guild
*/
description: string;
/**
* Custom guild stickers
*/
stickers: APISticker[];
}

/**
Expand Down
4 changes: 4 additions & 0 deletions payloads/v9/guild.ts
Expand Up @@ -590,6 +590,10 @@ export interface APIGuildPreview {
* The description for the guild
*/
description: string;
/**
* Custom guild stickers
*/
stickers: APISticker[];
}

/**
Expand Down

0 comments on commit 310c68f

Please sign in to comment.