- Preparing search index...
- The search index is not available
baileys
Type alias BufferedEventData
Type declaration
-
chatDeletes: Set<string>
-
chatUpdates: {
[jid: string]: ChatUpdate;
}
-
chatUpserts: {
[jid: string]: Chat;
}
-
contactUpdates: {
[jid: string]: Partial<Contact>;
}
-
contactUpserts: {
[jid: string]: Contact;
}
-
groupUpdates: {
[jid: string]: Partial<GroupMetadata>;
}
-
historySets: {
chats: {
[jid: string]: Chat;
};
contacts: {
[jid: string]: Contact;
};
empty: boolean;
isLatest: boolean;
messages: {
[uqId: string]: WAMessage;
};
peerDataRequestSessionId?: string;
progress?: number | null;
syncType?: proto.HistorySync.HistorySyncType;
}
-
chats: {
[jid: string]: Chat;
}
-
contacts: {
[jid: string]: Contact;
}
-
empty: boolean
-
isLatest: boolean
-
messages: {
[uqId: string]: WAMessage;
}
-
Optional
peerDataRequestSessionId?: string
-
Optional
progress?: number | null
-
-
messageDeletes: {
[key: string]: WAMessageKey;
}
-
messageReactions: {
[key: string]: {
key: WAMessageKey;
reactions: IReaction[];
};
}
-
messageReceipts: {
[key: string]: {
key: WAMessageKey;
userReceipt: IUserReceipt[];
};
}
-
messageUpdates: {
[key: string]: WAMessageUpdate;
}
-
messageUpserts: {
[key: string]: {
message: WAMessage;
type: MessageUpsertType;
};
}