import { getChatChannelMeta } from "../../channels/chat-meta.js"; import { getChannelPlugin } from "../../channels/plugins/index.js"; import type { ChannelId } from "../../channels/plugins/types.public.js"; import { normalizeChatChannelId } from "../../channels/registry.js"; import type { OutboundDeliveryResult } from "./deliver.js";
if (result && "chatId" in result && result.chatId !== undefined) {
payload.chatId = result.chatId;
} if (result && "channelId" in result && result.channelId !== undefined) {
payload.channelId = result.channelId;
} if (result && "roomId" in result && result.roomId !== undefined) {
payload.roomId = result.roomId;
} if (result && "conversationId" in result && result.conversationId !== undefined) {
payload.conversationId = result.conversationId;
} if (result && "timestamp" in result && result.timestamp !== undefined) {
payload.timestamp = result.timestamp;
} if (result && "toJid" in result && result.toJid !== undefined) {
payload.toJid = result.toJid;
} if (result && "meta" in result && result.meta !== undefined) {
payload.meta = result.meta;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.