@555platform/555parser.ts
Advanced tools
Comparing version 1.0.8 to 1.0.9
@@ -28,3 +28,4 @@ export declare enum ChatMessageTypes { | ||
StartTyping = "start_typing", | ||
RemoveUser = "remove_user" | ||
RemoveUser = "remove_user", | ||
ArchiveRoom = "archive_room" | ||
} | ||
@@ -31,0 +32,0 @@ export declare enum ChatServerEventTypes { |
@@ -33,2 +33,3 @@ "use strict"; | ||
RequestTypes["RemoveUser"] = "remove_user"; | ||
RequestTypes["ArchiveRoom"] = "archive_room"; | ||
})(RequestTypes = exports.RequestTypes || (exports.RequestTypes = {})); | ||
@@ -35,0 +36,0 @@ var ChatServerEventTypes; |
@@ -56,1 +56,4 @@ export declare type CreateRoomOptions = { | ||
}; | ||
export declare type ArchiveRoomOptions = { | ||
roomId: string; | ||
}; |
{ | ||
"name": "@555platform/555parser.ts", | ||
"version": "1.0.8", | ||
"version": "1.0.9", | ||
"description": "555 Platform Message Parser", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -29,3 +29,4 @@ export enum ChatMessageTypes { | ||
StartTyping = 'start_typing', | ||
RemoveUser = 'remove_user' | ||
RemoveUser = 'remove_user', | ||
ArchiveRoom = 'archive_room' | ||
} | ||
@@ -32,0 +33,0 @@ |
@@ -67,1 +67,6 @@ export type CreateRoomOptions = { | ||
}; | ||
export type ArchiveRoomOptions = { | ||
roomId: string; | ||
}; | ||
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
37311
930