stash commit

This commit is contained in:
Evert Prants 2021-07-03 20:50:26 +03:00
parent d5fa111b8e
commit 9e14050583
Signed by: evert
GPG Key ID: 1688DA83D222D0B5
2 changed files with 10 additions and 9 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@squeebot/core",
"version": "3.3.0",
"version": "3.3.1",
"description": "Squeebot v3 core for the execution environment",
"main": "lib/index.js",
"module": "lib/",

View File

@ -1,14 +1,15 @@
import { Protocol } from './protocol';
export enum EMessageType {
message = 0,
roomJoin = 1,
roomLeave = 2,
roomKick = 3,
nameChange = 4,
edit = 5,
protocolStart = 6,
protocolExit = 7,
message = 'message',
roomJoin = 'room_join',
roomLeave = 'room_leave',
roomKick = 'room_kick',
nameChange = 'name_change',
edit = 'edit',
protocolStart = 'protocol_start',
protocolExit = 'protocol_exit',
custom = 'custom'
}
/**