signal-desktop/ts/util/isConversationSMSOnly.ts
2025-01-06 06:19:43 +10:00

31 lines
673 B
TypeScript

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { ServiceIdString } from '../types/ServiceId';
export type MinimalConversationType = Readonly<{
type?: string;
e164?: string;
serviceId?: ServiceIdString;
discoveredUnregisteredAt?: number;
}>;
export function isConversationSMSOnly(
conversation: MinimalConversationType
): boolean {
const { e164, serviceId, type } = conversation;
// `direct` for redux, `private` for models and the database
if (type !== 'direct' && type !== 'private') {
return false;
}
if (serviceId) {
return false;
}
if (!e164) {
return false;
}
return true;
}