blob: f680e163ada0e885cf25636e9b33ee249d58c8d7 [file] [log] [blame]
simon26e79f72022-10-05 22:16:08 -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 */
Misha Krieger-Raynauldcfa44302022-11-30 18:36:36 -050018import { Message } from './conversation.js';
simon35378692022-10-02 23:25:57 -040019
Misha Krieger-Raynauld20cf1c82022-11-23 20:26:50 -050020export interface ContactMessage {
21 contactId: string;
22}
23
Issam E. Maghni0432cb72022-11-12 06:09:26 +000024export interface ConversationMessage {
25 conversationId: string;
26 message: Message;
27}
Misha Krieger-Raynauld533e7302022-11-20 16:54:07 -050028
29export interface ConversationView {
Misha Krieger-Raynauld533e7302022-11-20 16:54:07 -050030 conversationId: string;
31}
32
idillon3e378fd2022-12-23 11:48:12 -050033export interface ComposingStatus {
34 contactId?: string; // optional (ignored) when is about the user sending it
35 conversationId: string;
36 isWriting: boolean;
37}
38
Misha Krieger-Raynauld20cf1c82022-11-23 20:26:50 -050039export interface CallAction extends ContactMessage {
40 conversationId: string;
41}
42
MichelleSS55164202022-11-25 18:36:14 -050043export interface CallBegin extends CallAction {
44 withVideoOn: boolean;
45}
46
Charliec18d6402022-11-27 13:01:04 -050047export interface WebRtcSdp extends CallAction {
Misha Krieger-Raynauld533e7302022-11-20 16:54:07 -050048 sdp: RTCSessionDescriptionInit;
49}
50
Charliec18d6402022-11-27 13:01:04 -050051export interface WebRtcIceCandidate extends CallAction {
Misha Krieger-Raynauld533e7302022-11-20 16:54:07 -050052 candidate: RTCIceCandidate;
53}