Skip to content

Commit e60f1a1

Browse files
authored
Merge pull request #147 from TogetherCrew/add-isBot-field-to-guildMember-updateBody
[FEATURE]: add isBot to IGuildMemberUpdateBody
2 parents 823b8ba + 72535e9 commit e60f1a1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@togethercrew.dev/db",
3-
"version": "3.0.26",
3+
"version": "3.0.27",
44
"description": "All interactions with DB",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",

src/interfaces/GuildMember.interface.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export interface IGuildMemberUpdateBody {
2525
deletedAt?: Date | null;
2626
globalName?: string | null;
2727
nickname?: string | null;
28+
isBot?: boolean;
2829
}
2930

3031
export interface IGuildMemberMethods {

0 commit comments

Comments
 (0)