27 lines
661 B
TypeScript
27 lines
661 B
TypeScript
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import { z } from 'zod';
|
|
|
|
import { aciSchema } from './ServiceId';
|
|
|
|
export const receiptSchema = z.object({
|
|
messageId: z.string(),
|
|
conversationId: z.string(),
|
|
senderE164: z.string().optional(),
|
|
senderAci: aciSchema.optional(),
|
|
timestamp: z.number(),
|
|
isDirectConversation: z.boolean().optional(),
|
|
});
|
|
|
|
export enum ReceiptType {
|
|
Delivery = 'deliveryReceipt',
|
|
Read = 'readReceipt',
|
|
Viewed = 'viewedReceipt',
|
|
}
|
|
|
|
export type Receipt = z.infer<typeof receiptSchema>;
|
|
|
|
export const RECEIPT_BATCHER_WAIT_MS = 250;
|
|
export const DELETE_SENT_PROTO_BATCHER_WAIT_MS = 250;
|