Made StoryDataType sourceDevice required
This commit is contained in:
parent
e3299b0445
commit
4294429bc2
5 changed files with 28 additions and 2 deletions
|
@ -2138,6 +2138,7 @@ export default class MessageReceiver
|
|||
destinationUuid: envelope.destinationUuid.toString(),
|
||||
timestamp: envelope.timestamp,
|
||||
serverTimestamp: envelope.serverTimestamp,
|
||||
device: envelope.sourceDevice,
|
||||
unidentifiedStatus: Array.from(sentToUuids).map(
|
||||
destinationUuid => ({
|
||||
destinationUuid,
|
||||
|
|
|
@ -184,7 +184,7 @@ export type SentEventData = Readonly<{
|
|||
destinationUuid?: string;
|
||||
timestamp?: number;
|
||||
serverTimestamp?: number;
|
||||
device?: number;
|
||||
device: number | undefined;
|
||||
unidentifiedStatus: ProcessedSent['unidentifiedStatus'];
|
||||
message: ProcessedDataMessage;
|
||||
isRecipientUpdate: boolean;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue