Skip to content

Commit da9496f

Browse files
authored
feat(RESTAPIPartialCurrentUserGuild): add banner (#1028)
1 parent b1e1c60 commit da9496f

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

deno/rest/v10/user.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ export interface RESTAPIPartialCurrentUserGuild {
7676
id: Snowflake;
7777
name: string;
7878
icon: string | null;
79+
banner: string | null;
7980
owner: boolean;
8081
features: GuildFeature[];
8182
permissions: Permissions;

deno/rest/v9/user.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ export interface RESTAPIPartialCurrentUserGuild {
7676
id: Snowflake;
7777
name: string;
7878
icon: string | null;
79+
banner: string | null;
7980
owner: boolean;
8081
features: GuildFeature[];
8182
permissions: Permissions;

rest/v10/user.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ export interface RESTAPIPartialCurrentUserGuild {
7676
id: Snowflake;
7777
name: string;
7878
icon: string | null;
79+
banner: string | null;
7980
owner: boolean;
8081
features: GuildFeature[];
8182
permissions: Permissions;

rest/v9/user.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ export interface RESTAPIPartialCurrentUserGuild {
7676
id: Snowflake;
7777
name: string;
7878
icon: string | null;
79+
banner: string | null;
7980
owner: boolean;
8081
features: GuildFeature[];
8182
permissions: Permissions;

0 commit comments

Comments
 (0)