stash commit
This commit is contained in:
parent
d5fa111b8e
commit
9e14050583
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@squeebot/core",
|
"name": "@squeebot/core",
|
||||||
"version": "3.3.0",
|
"version": "3.3.1",
|
||||||
"description": "Squeebot v3 core for the execution environment",
|
"description": "Squeebot v3 core for the execution environment",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"module": "lib/",
|
"module": "lib/",
|
||||||
|
@ -1,14 +1,15 @@
|
|||||||
import { Protocol } from './protocol';
|
import { Protocol } from './protocol';
|
||||||
|
|
||||||
export enum EMessageType {
|
export enum EMessageType {
|
||||||
message = 0,
|
message = 'message',
|
||||||
roomJoin = 1,
|
roomJoin = 'room_join',
|
||||||
roomLeave = 2,
|
roomLeave = 'room_leave',
|
||||||
roomKick = 3,
|
roomKick = 'room_kick',
|
||||||
nameChange = 4,
|
nameChange = 'name_change',
|
||||||
edit = 5,
|
edit = 'edit',
|
||||||
protocolStart = 6,
|
protocolStart = 'protocol_start',
|
||||||
protocolExit = 7,
|
protocolExit = 'protocol_exit',
|
||||||
|
custom = 'custom'
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user