Send remote mute requests in group calls and call links

Co-authored-by: ayumi-signal <143036029+ayumi-signal@users.noreply.github.com>
This commit is contained in:
automated-signal
2026-02-27 13:04:26 -06:00
committed by GitHub
parent dd34c10232
commit 943aca8306
25 changed files with 226 additions and 48 deletions

View File

@@ -1,8 +1,16 @@
// Copyright 2024 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { ReadonlyDeep } from 'type-fest';
export enum UsernameOnboardingState {
NeverShown = 'NeverShown',
Open = 'Open',
Closed = 'Closed',
}
export type ContactModalStateType = ReadonlyDeep<{
contactId: string;
conversationId?: string;
activeCallDemuxId?: number;
}>;