Feat: Mute unknown calls (privacy) (#872)

* Update Chat.ts

* Update chats.ts

* export

* fix sort
This commit is contained in:
Bob
2024-07-03 04:34:27 -03:00
committed by GitHub
parent baf8b3df00
commit d396a03e65
2 changed files with 9 additions and 2 deletions

View File

@@ -12,6 +12,8 @@ export type WAPrivacyOnlineValue = 'all' | 'match_last_seen'
export type WAReadReceiptsValue = 'all' | 'none'
export type WAPrivacyCallValue = 'all' | 'known'
/** set of statuses visible to other people; see updatePresence() in WhatsAppWeb.Send */
export type WAPresence = 'unavailable' | 'available' | 'composing' | 'recording' | 'paused'
@@ -103,4 +105,4 @@ export type InitialReceivedChatsState = {
export type InitialAppStateSyncOptions = {
accountSettings: AccountSettings
}
}