Skip to content

Commit

Permalink
feat: bot banners (#906)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaw0r3k committed Mar 31, 2024
1 parent 61ce329 commit 495148d
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions deno/rest/v10/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/**
Expand Down
4 changes: 4 additions & 0 deletions deno/rest/v9/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/**
Expand Down
4 changes: 4 additions & 0 deletions rest/v10/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/**
Expand Down
4 changes: 4 additions & 0 deletions rest/v9/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/**
Expand Down

0 comments on commit 495148d

Please sign in to comment.