Ignore delivery receipts for outgoing reactions
This commit is contained in:
parent
c8099171e2
commit
e46b1f7958
8 changed files with 151 additions and 34 deletions
|
@ -7,7 +7,7 @@ import type {
|
|||
SenderKeyInfoType,
|
||||
} from '../model-types.d';
|
||||
import type { StoredJob } from '../jobs/types';
|
||||
import type { ReactionType } from '../types/Reactions';
|
||||
import type { ReactionType, ReactionReadStatus } from '../types/Reactions';
|
||||
import type { ConversationColorType, CustomColorType } from '../types/Colors';
|
||||
import type { StorageAccessType } from '../types/Storage.d';
|
||||
import type { AttachmentType } from '../types/Attachment';
|
||||
|
@ -586,7 +586,16 @@ export type DataInterface = {
|
|||
targetAuthorServiceId: ServiceIdString;
|
||||
targetTimestamp: number;
|
||||
}) => Promise<void>;
|
||||
addReaction: (reactionObj: ReactionType) => Promise<void>;
|
||||
getReactionByTimestamp: (
|
||||
fromId: string,
|
||||
timestamp: number
|
||||
) => Promise<ReactionType | undefined>;
|
||||
addReaction: (
|
||||
reactionObj: ReactionType,
|
||||
options: {
|
||||
readStatus: ReactionReadStatus;
|
||||
}
|
||||
) => Promise<void>;
|
||||
_getAllReactions: () => Promise<Array<ReactionType>>;
|
||||
_removeAllReactions: () => Promise<void>;
|
||||
getMessageBySender: (options: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue