Skip to content

Commit

Permalink
feat(RESTAPIPartialCurrentUserGuild): add approximate count fields
Browse files Browse the repository at this point in the history
  • Loading branch information
almeidx committed Feb 23, 2023
1 parent 0253d38 commit 86db0ad
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions deno/rest/v10/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ export interface RESTAPIPartialCurrentUserGuild {
owner: boolean;
features: GuildFeature[];
permissions: Permissions;
approximate_member_count?: number;
approximate_presence_count?: number;
}

/**
Expand Down
2 changes: 2 additions & 0 deletions deno/rest/v9/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ export interface RESTAPIPartialCurrentUserGuild {
owner: boolean;
features: GuildFeature[];
permissions: Permissions;
approximate_member_count?: number;
approximate_presence_count?: number;
}

/**
Expand Down
2 changes: 2 additions & 0 deletions rest/v10/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ export interface RESTAPIPartialCurrentUserGuild {
owner: boolean;
features: GuildFeature[];
permissions: Permissions;
approximate_member_count?: number;
approximate_presence_count?: number;
}

/**
Expand Down
2 changes: 2 additions & 0 deletions rest/v9/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ export interface RESTAPIPartialCurrentUserGuild {
owner: boolean;
features: GuildFeature[];
permissions: Permissions;
approximate_member_count?: number;
approximate_presence_count?: number;
}

/**
Expand Down

0 comments on commit 86db0ad

Please sign in to comment.