Skip to content

Commit

Permalink
feat(APIApplication): approximate_user_install_count (#1052)
Browse files Browse the repository at this point in the history
  • Loading branch information
almeidx authored Aug 14, 2024
1 parent cbd8d10 commit d504763
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions deno/payloads/v10/application.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,10 @@ export interface APIApplication {
* Approximate count of guilds the application has been added to
*/
approximate_guild_count?: number;
/**
* Approximate count of users that have installed the app
*/
approximate_user_install_count?: number;
/**
* Array of redirect URIs for the application
*/
Expand Down
4 changes: 4 additions & 0 deletions deno/payloads/v9/application.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,10 @@ export interface APIApplication {
* Approximate count of guilds the application has been added to
*/
approximate_guild_count?: number;
/**
* Approximate count of users that have installed the app
*/
approximate_user_install_count?: number;
/**
* Array of redirect URIs for the application
*/
Expand Down
4 changes: 4 additions & 0 deletions payloads/v10/application.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,10 @@ export interface APIApplication {
* Approximate count of guilds the application has been added to
*/
approximate_guild_count?: number;
/**
* Approximate count of users that have installed the app
*/
approximate_user_install_count?: number;
/**
* Array of redirect URIs for the application
*/
Expand Down
4 changes: 4 additions & 0 deletions payloads/v9/application.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,10 @@ export interface APIApplication {
* Approximate count of guilds the application has been added to
*/
approximate_guild_count?: number;
/**
* Approximate count of users that have installed the app
*/
approximate_user_install_count?: number;
/**
* Array of redirect URIs for the application
*/
Expand Down

0 comments on commit d504763

Please sign in to comment.