Skip to content

Commit d504763

Browse files
authored
feat(APIApplication): approximate_user_install_count (#1052)
1 parent cbd8d10 commit d504763

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

deno/payloads/v10/application.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@ export interface APIApplication {
108108
* Approximate count of guilds the application has been added to
109109
*/
110110
approximate_guild_count?: number;
111+
/**
112+
* Approximate count of users that have installed the app
113+
*/
114+
approximate_user_install_count?: number;
111115
/**
112116
* Array of redirect URIs for the application
113117
*/

deno/payloads/v9/application.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@ export interface APIApplication {
108108
* Approximate count of guilds the application has been added to
109109
*/
110110
approximate_guild_count?: number;
111+
/**
112+
* Approximate count of users that have installed the app
113+
*/
114+
approximate_user_install_count?: number;
111115
/**
112116
* Array of redirect URIs for the application
113117
*/

payloads/v10/application.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@ export interface APIApplication {
108108
* Approximate count of guilds the application has been added to
109109
*/
110110
approximate_guild_count?: number;
111+
/**
112+
* Approximate count of users that have installed the app
113+
*/
114+
approximate_user_install_count?: number;
111115
/**
112116
* Array of redirect URIs for the application
113117
*/

payloads/v9/application.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@ export interface APIApplication {
108108
* Approximate count of guilds the application has been added to
109109
*/
110110
approximate_guild_count?: number;
111+
/**
112+
* Approximate count of users that have installed the app
113+
*/
114+
approximate_user_install_count?: number;
111115
/**
112116
* Array of redirect URIs for the application
113117
*/

0 commit comments

Comments
 (0)