Skip to content

Commit 4361739

Browse files
committed
Update dependencies, add INTERACTION_CREATE to events enum
1 parent 11d7f30 commit 4361739

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
22
"name": "detritus-client-socket",
3-
"version": "0.7.1",
3+
"version": "0.7.2",
44
"description": "A TypeScript NodeJS library to interact with Discord's Gateway",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",
77
"files": [
88
"lib/**/*"
99
],
1010
"dependencies": {
11-
"detritus-utils": "^0.3.0",
12-
"ws": "^7.4.0"
11+
"detritus-utils": "^0.4.0",
12+
"ws": "^7.4.2"
1313
},
1414
"devDependencies": {
15-
"@types/node": "^14.14.9",
15+
"@types/node": "^14.14.22",
1616
"typedoc": "^0.19.2"
1717
},
1818
"peerDependencies": {

src/constants.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export const Package = Object.freeze({
22
URL: 'https://github.com/detritusjs/client-socket',
3-
VERSION: '0.7.1',
3+
VERSION: '0.7.2',
44
});
55

66

@@ -99,6 +99,7 @@ export enum GatewayDispatchEvents {
9999
GUILD_ROLE_CREATE = 'GUILD_ROLE_CREATE',
100100
GUILD_ROLE_DELETE = 'GUILD_ROLE_DELETE',
101101
GUILD_ROLE_UPDATE = 'GUILD_ROLE_UPDATE',
102+
INTERACTION_CREATE = 'INTERACTION_CREATE',
102103
INVITE_CREATE = 'INVITE_CREATE',
103104
INVITE_DELETE = 'INVITE_DELETE',
104105
LIBRARY_APPLICATION_UPDATE = 'LIBRARY_APPLICATION_UPDATE',

0 commit comments

Comments
 (0)