From da9496f291fff364b8d35b02363b93933c19823a Mon Sep 17 00:00:00 2001 From: Almeida Date: Sat, 20 Jul 2024 10:05:30 +0100 Subject: [PATCH] feat(RESTAPIPartialCurrentUserGuild): add `banner` (#1028) --- deno/rest/v10/user.ts | 1 + deno/rest/v9/user.ts | 1 + rest/v10/user.ts | 1 + rest/v9/user.ts | 1 + 4 files changed, 4 insertions(+) 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;