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; } /**