diff --git a/deno/rest/v10/user.ts b/deno/rest/v10/user.ts index ff8e4503..09accfe9 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 e166d6c1..d7ebd63c 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 f72ffeaa..e4318b66 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 cd2d78cb..cbb70b3b 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;