26 lines
665 B
TypeScript
26 lines
665 B
TypeScript
enum WebSocketSendMessagesCmds {
|
|
SubscribeToTopic = 1,
|
|
}
|
|
|
|
enum WebSocketReceivedMessagesCmds {
|
|
SettingsUpdated = 1,
|
|
SettingsUpdatedLogo = 2,
|
|
SettingsUpdatedBanner = 3,
|
|
SettingsUpdatedSubdomain = 4,
|
|
TeamAddedMember = 5,
|
|
TeamUpdatedMemberRole = 6,
|
|
TeamDeletedMember = 7,
|
|
LessonCreated = 8,
|
|
LessonPreviewTitleUpdated = 9,
|
|
LessonPreviewThumbnailUpdated = 10,
|
|
LessonStateUpdated = 11,
|
|
LessonAddedContent = 12,
|
|
LessonDeletedContent = 13,
|
|
LessonContentUpdated = 14,
|
|
LessonContentUpdatedPosition = 15,
|
|
LessonContentFileUpdated = 16,
|
|
UserProfilePictureUpdated = 17,
|
|
}
|
|
|
|
export { WebSocketSendMessagesCmds, WebSocketReceivedMessagesCmds };
|