From 495148dc466fcc3cd47ff62377369a97a9cec13d Mon Sep 17 00:00:00 2001 From: Jaw0r3k Date: Sun, 31 Mar 2024 20:24:03 +0200 Subject: [PATCH] feat: bot banners (#906) --- deno/rest/v10/user.ts | 4 ++++ deno/rest/v9/user.ts | 4 ++++ rest/v10/user.ts | 4 ++++ rest/v9/user.ts | 4 ++++ 4 files changed, 16 insertions(+) diff --git a/deno/rest/v10/user.ts b/deno/rest/v10/user.ts index 4bfd5692..ff8e4503 100644 --- a/deno/rest/v10/user.ts +++ b/deno/rest/v10/user.ts @@ -35,6 +35,10 @@ export interface RESTPatchAPICurrentUserJSONBody { * If passed, modifies the user's avatar */ avatar?: string | null | undefined; + /** + * If passed, modifies the user's banner + */ + banner?: string | null | undefined; } /** diff --git a/deno/rest/v9/user.ts b/deno/rest/v9/user.ts index c7576216..e166d6c1 100644 --- a/deno/rest/v9/user.ts +++ b/deno/rest/v9/user.ts @@ -35,6 +35,10 @@ export interface RESTPatchAPICurrentUserJSONBody { * If passed, modifies the user's avatar */ avatar?: string | null | undefined; + /** + * If passed, modifies the user's banner + */ + banner?: string | null | undefined; } /** diff --git a/rest/v10/user.ts b/rest/v10/user.ts index 19e63fb3..f72ffeaa 100644 --- a/rest/v10/user.ts +++ b/rest/v10/user.ts @@ -35,6 +35,10 @@ export interface RESTPatchAPICurrentUserJSONBody { * If passed, modifies the user's avatar */ avatar?: string | null | undefined; + /** + * If passed, modifies the user's banner + */ + banner?: string | null | undefined; } /** diff --git a/rest/v9/user.ts b/rest/v9/user.ts index 756e9e72..cd2d78cb 100644 --- a/rest/v9/user.ts +++ b/rest/v9/user.ts @@ -35,6 +35,10 @@ export interface RESTPatchAPICurrentUserJSONBody { * If passed, modifies the user's avatar */ avatar?: string | null | undefined; + /** + * If passed, modifies the user's banner + */ + banner?: string | null | undefined; } /**