Skip to content

Commit

Permalink
feat(RESTAPIPartialCurrentUserGuild): add banner (#1028)
Browse files Browse the repository at this point in the history
  • Loading branch information
almeidx committed Jul 20, 2024
1 parent b1e1c60 commit da9496f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions deno/rest/v10/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ export interface RESTAPIPartialCurrentUserGuild {
id: Snowflake;
name: string;
icon: string | null;
banner: string | null;
owner: boolean;
features: GuildFeature[];
permissions: Permissions;
Expand Down
1 change: 1 addition & 0 deletions deno/rest/v9/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ export interface RESTAPIPartialCurrentUserGuild {
id: Snowflake;
name: string;
icon: string | null;
banner: string | null;
owner: boolean;
features: GuildFeature[];
permissions: Permissions;
Expand Down
1 change: 1 addition & 0 deletions rest/v10/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ export interface RESTAPIPartialCurrentUserGuild {
id: Snowflake;
name: string;
icon: string | null;
banner: string | null;
owner: boolean;
features: GuildFeature[];
permissions: Permissions;
Expand Down
1 change: 1 addition & 0 deletions rest/v9/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ export interface RESTAPIPartialCurrentUserGuild {
id: Snowflake;
name: string;
icon: string | null;
banner: string | null;
owner: boolean;
features: GuildFeature[];
permissions: Permissions;
Expand Down

0 comments on commit da9496f

Please sign in to comment.