@heylemon/lemonade 2026.2.19 → 2026.2.20

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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2026.2.19",
3
- "commit": "c777f36571f501d0553aacf38e22f45e00f135b2",
4
- "builtAt": "2026-02-19T10:34:34.300Z"
2
+ "version": "2026.2.20",
3
+ "commit": "e49805d8488591840c53c697252f44ddfa686424",
4
+ "builtAt": "2026-02-19T10:41:08.140Z"
5
5
  }
@@ -1 +1 @@
1
- 65a14b12e4ff701a566b2ab1dd533ba4b4789395611a1e7af703c28197f10d78
1
+ 097295da59112a03be00996fb0b774b800b315f4a291f6253930f4d42aa9a1ac
@@ -333,7 +333,9 @@ export async function monitorWebInbox(options) {
333
333
  const maxBytes = maxMb * 1024 * 1024;
334
334
  const saved = await saveMediaBuffer(inboundMedia.buffer, inboundMedia.mimetype, "inbound", maxBytes);
335
335
  mediaPath = saved.path;
336
- mediaType = inboundMedia.mimetype;
336
+ // Prefer detected mime from saved media (sniffed from bytes), then
337
+ // fall back to transport-provided mimetype.
338
+ mediaType = saved.contentType ?? inboundMedia.mimetype;
337
339
  // Extract text from document attachments (PDF, DOCX, etc.)
338
340
  if (mediaPath && isExtractableDocument(mediaType)) {
339
341
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heylemon/lemonade",
3
- "version": "2026.2.19",
3
+ "version": "2026.2.20",
4
4
  "description": "AI gateway CLI for Lemon - local AI assistant with integrations",
5
5
  "publishConfig": {
6
6
  "access": "restricted"