fix: remove aliases and add createGuildFromTemplate

This commit is contained in:
Skillz
2023-02-13 13:54:41 -06:00
parent 5b2001586b
commit 2dafa8f5f8
2 changed files with 32 additions and 2592 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1059,3 +1059,11 @@ export interface EditGuildStickerOptions extends WithReason {
/** Autocomplete/suggestion tags for the sticker (max 200 characters) */
tags?: string
}
/** https://discord.com/developers/docs/resources/template#create-guild-from-template-json-params */
export interface CreateGuildFromTemplate {
/** Name of the guild (2-100 characters) */
name: string
/** base64 128x128 image for the guild icon */
icon?: string
}