Function updateMessageMetadata
- updateMessageMetadata(message, namespace, data, db): Promise<{
content: any;
contentBytes?: Uint8Array;
contentFallback?: string;
contentType: string;
conversationTopic: string;
hasLoadError: boolean;
hasSendError: boolean;
id: string;
isSending: boolean;
metadata?: ContentTypeMetadata;
sendOptions?: SendOptions;
senderAddress: string;
sentAt: Date;
status: "unprocessed" | "processed";
uuid: string;
walletAddress: string;
}> Returns Promise<{
content: any;
contentBytes?: Uint8Array;
contentFallback?: string;
contentType: string;
conversationTopic: string;
hasLoadError: boolean;
hasSendError: boolean;
id: string;
isSending: boolean;
metadata?: ContentTypeMetadata;
sendOptions?: SendOptions;
senderAddress: string;
sentAt: Date;
status: "unprocessed" | "processed";
uuid: string;
walletAddress: string;
}>
Update metadata of a cached message using the specified namespace
This is not meant to be called directly