Skip to content

Commit 35a4084

Browse files
authored
feat(RESTPatchAPICurrentGuildMemberJSONBody): Add banner, avatar, and bio (#1356)
1 parent 35867c1 commit 35a4084

File tree

4 files changed

+48
-0
lines changed

4 files changed

+48
-0
lines changed

deno/rest/v10/guild.ts

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deno/rest/v9/guild.ts

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rest/v10/guild.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -550,6 +550,18 @@ export interface RESTPatchAPICurrentGuildMemberJSONBody {
550550
* Requires `CHANGE_NICKNAME` permission
551551
*/
552552
nick?: string | null | undefined;
553+
/**
554+
* Data URI base64 encoded banner image
555+
*/
556+
banner?: string | null | undefined;
557+
/**
558+
* Data URI base64 encoded avatar image
559+
*/
560+
avatar?: string | null | undefined;
561+
/**
562+
* Guild member bio
563+
*/
564+
bio?: string | null | undefined;
553565
}
554566

555567
/**

rest/v9/guild.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -550,6 +550,18 @@ export interface RESTPatchAPICurrentGuildMemberJSONBody {
550550
* Requires `CHANGE_NICKNAME` permission
551551
*/
552552
nick?: string | null | undefined;
553+
/**
554+
* Data URI base64 encoded banner image
555+
*/
556+
banner?: string | null | undefined;
557+
/**
558+
* Data URI base64 encoded avatar image
559+
*/
560+
avatar?: string | null | undefined;
561+
/**
562+
* Guild member bio
563+
*/
564+
bio?: string | null | undefined;
553565
}
554566

555567
/**

0 commit comments

Comments
 (0)