mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 12:19:41 +00:00
Use streams to download attachments directly to disk
Co-authored-by: trevor-signal <131492920+trevor-signal@users.noreply.github.com>
This commit is contained in:
13
ts/model-types.d.ts
vendored
13
ts/model-types.d.ts
vendored
@@ -17,7 +17,7 @@ import type { GroupNameCollisionsWithIdsByTitle } from './util/groupMemberNameCo
|
||||
import type { AttachmentDraftType, AttachmentType } from './types/Attachment';
|
||||
import type { EmbeddedContactType } from './types/EmbeddedContact';
|
||||
import { SignalService as Proto } from './protobuf';
|
||||
import type { AvatarDataType } from './types/Avatar';
|
||||
import type { AvatarDataType, ContactAvatarType } from './types/Avatar';
|
||||
import type { AciString, PniString, ServiceIdString } from './types/ServiceId';
|
||||
import type { StoryDistributionIdString } from './types/StoryDistributionId';
|
||||
import type { SeenStatus } from './MessageSeenStatus';
|
||||
@@ -331,10 +331,7 @@ export type ConversationAttributesType = {
|
||||
messageRequestResponseType?: number;
|
||||
muteExpiresAt?: number;
|
||||
dontNotifyForMentionsIfMuted?: boolean;
|
||||
profileAvatar?: null | {
|
||||
hash: string;
|
||||
path: string;
|
||||
};
|
||||
profileAvatar?: ContactAvatarType | null;
|
||||
profileKeyCredential?: string | null;
|
||||
profileKeyCredentialExpiration?: number | null;
|
||||
lastProfile?: ConversationLastProfileType;
|
||||
@@ -415,11 +412,7 @@ export type ConversationAttributesType = {
|
||||
addFromInviteLink: AccessRequiredEnum;
|
||||
};
|
||||
announcementsOnly?: boolean;
|
||||
avatar?: {
|
||||
url: string;
|
||||
path: string;
|
||||
hash?: string;
|
||||
} | null;
|
||||
avatar?: ContactAvatarType | null;
|
||||
avatars?: Array<AvatarDataType>;
|
||||
description?: string;
|
||||
expireTimer?: DurationInSeconds;
|
||||
|
||||
Reference in New Issue
Block a user