diff --git a/deno/rest/v10/user.ts b/deno/rest/v10/user.ts index ff8e45034..09accfe93 100644 --- a/deno/rest/v10/user.ts +++ b/deno/rest/v10/user.ts @@ -76,6 +76,7 @@ export interface RESTAPIPartialCurrentUserGuild { id: Snowflake; name: string; icon: string | null; + banner: string | null; owner: boolean; features: GuildFeature[]; permissions: Permissions; diff --git a/deno/rest/v9/user.ts b/deno/rest/v9/user.ts index e166d6c14..d7ebd63c1 100644 --- a/deno/rest/v9/user.ts +++ b/deno/rest/v9/user.ts @@ -76,6 +76,7 @@ export interface RESTAPIPartialCurrentUserGuild { id: Snowflake; name: string; icon: string | null; + banner: string | null; owner: boolean; features: GuildFeature[]; permissions: Permissions; diff --git a/rest/v10/user.ts b/rest/v10/user.ts index f72ffeaa2..e4318b66b 100644 --- a/rest/v10/user.ts +++ b/rest/v10/user.ts @@ -76,6 +76,7 @@ export interface RESTAPIPartialCurrentUserGuild { id: Snowflake; name: string; icon: string | null; + banner: string | null; owner: boolean; features: GuildFeature[]; permissions: Permissions; diff --git a/rest/v9/user.ts b/rest/v9/user.ts index cd2d78cbb..cbb70b3b8 100644 --- a/rest/v9/user.ts +++ b/rest/v9/user.ts @@ -76,6 +76,7 @@ export interface RESTAPIPartialCurrentUserGuild { id: Snowflake; name: string; icon: string | null; + banner: string | null; owner: boolean; features: GuildFeature[]; permissions: Permissions;