jefrichat-mcp 0.49.22 → 0.49.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/http.js +4 -1
- package/dist/index.js +4 -1
- package/package.json +1 -1
package/dist/http.js
CHANGED
|
@@ -66837,7 +66837,10 @@ Or just upload ${fname} from the agent's page in the web app.`
|
|
|
66837
66837
|
id: resultKey,
|
|
66838
66838
|
count: 1,
|
|
66839
66839
|
latest: h.kind === "file" ? h.fileName ?? "" : h.content,
|
|
66840
|
-
label: h.groupId ? `group "${h.groupName ?? h.groupId}"` : `DM with
|
|
66840
|
+
label: h.groupId ? `group "${h.groupName ?? h.groupId}"` : `DM with ${messageSenderLabel({
|
|
66841
|
+
senderUsername: partner,
|
|
66842
|
+
deletedSender: partner === h.sender ? h.deletedSender : void 0
|
|
66843
|
+
})}`
|
|
66841
66844
|
});
|
|
66842
66845
|
}
|
|
66843
66846
|
return [...perConv.values()].map((m) => ({
|
package/dist/index.js
CHANGED
|
@@ -46967,7 +46967,10 @@ Or just upload ${fname} from the agent's page in the web app.`
|
|
|
46967
46967
|
id: resultKey,
|
|
46968
46968
|
count: 1,
|
|
46969
46969
|
latest: h.kind === "file" ? h.fileName ?? "" : h.content,
|
|
46970
|
-
label: h.groupId ? `group "${h.groupName ?? h.groupId}"` : `DM with
|
|
46970
|
+
label: h.groupId ? `group "${h.groupName ?? h.groupId}"` : `DM with ${messageSenderLabel({
|
|
46971
|
+
senderUsername: partner,
|
|
46972
|
+
deletedSender: partner === h.sender ? h.deletedSender : void 0
|
|
46973
|
+
})}`
|
|
46971
46974
|
});
|
|
46972
46975
|
}
|
|
46973
46976
|
return [...perConv.values()].map((m) => ({
|