blob: b2d729c19be470bfb40c1c8b563d8061d52c93d4 [file] [log] [blame]
Charlie6ddaefe2022-11-01 18:36:29 -04001/*
2 * Copyright (C) 2022 Savoir-faire Linux Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Affero General Public License as
6 * published by the Free Software Foundation; either version 3 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Affero General Public License for more details.
13 *
14 * You should have received a copy of the GNU Affero General Public
15 * License along with this program. If not, see
16 * <https://www.gnu.org/licenses/>.
17 */
18export enum WebSocketMessageType {
Issam E. Maghni0432cb72022-11-12 06:09:26 +000019 ConversationMessage = 'conversation-message',
idillon18283ac2023-01-07 12:06:42 -050020 ConversationRequest = 'conversation-request',
Issam E. Maghni0432cb72022-11-12 06:09:26 +000021 ConversationView = 'conversation-view',
idillonbad51972023-01-18 17:00:38 -050022 ComposingStatus = 'composing-status',
idillon255682e2023-02-06 13:25:26 -050023
24 // calls (in the order they should be sent)
25 sendCallInvite = 'sendCallInvite',
26 onCallInvite = 'onCallInvite',
27 sendCallExit = 'sendCallExit', // can be sent anytime after invite
28 onCallExit = 'onCallExit',
29 sendCallJoin = 'sendCallJoin',
30 onCallJoin = 'onCallJoin',
31 sendWebRtcOffer = 'sendWebRtcOffer',
32 onWebRtcOffer = 'onWebRtcOffer',
33 sendWebRtcAnswer = 'sendWebRtcAnswer',
34 onWebRtcAnswer = 'onWebRtcAnswer',
35 sendWebRtcIceCandidate = 'sendWebRtcIceCandidate',
36 onWebRtcIceCandidate = 'onWebRtcIceCandidate',
Charlie6ddaefe2022-11-01 18:36:29 -040037}