mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-05-04 15:15:19 +01:00
Migrate unprocessed table to BLOBs
This commit is contained in:
Vendored
+10
-10
@@ -24,7 +24,6 @@ export {
|
||||
SignedPreKeyIdType,
|
||||
SignedPreKeyType,
|
||||
UnprocessedType,
|
||||
UnprocessedUpdateType,
|
||||
} from '../sql/Interface';
|
||||
|
||||
export type StorageServiceCallOptionsType = {
|
||||
@@ -87,19 +86,20 @@ export type ProcessedEnvelope = Readonly<{
|
||||
|
||||
// Mostly from Proto.Envelope except for null/undefined
|
||||
type: Proto.Envelope.Type;
|
||||
source?: string;
|
||||
sourceServiceId?: ServiceIdString;
|
||||
sourceDevice?: number;
|
||||
source: string | undefined;
|
||||
sourceServiceId: ServiceIdString | undefined;
|
||||
sourceDevice: number | Undefined;
|
||||
destinationServiceId: ServiceIdString;
|
||||
updatedPni?: PniString;
|
||||
updatedPni: PniString | undefined;
|
||||
timestamp: number;
|
||||
content?: Uint8Array;
|
||||
content: Uint8Array | undefined;
|
||||
serverGuid: string;
|
||||
serverTimestamp: number;
|
||||
groupId?: string;
|
||||
urgent?: boolean;
|
||||
story?: boolean;
|
||||
reportingToken?: Uint8Array;
|
||||
groupId: string | undefined;
|
||||
urgent: boolean;
|
||||
story: boolean;
|
||||
reportingToken: Uint8Array | undefined;
|
||||
groupId: string | undefined;
|
||||
}>;
|
||||
|
||||
export type ProcessedAttachment = {
|
||||
|
||||
Reference in New Issue
Block a user