@remit/search-index-worker 0.0.11 → 0.0.12

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/handler.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/search-index-worker",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
package/src/handler.ts CHANGED
@@ -280,6 +280,7 @@ const prepareUpsert = async (
280
280
  fromName: threadMessage.fromName ?? null,
281
281
  subject: threadMessage.subject ?? "",
282
282
  category: threadMessage.category,
283
+ ...(threadMessage.listId ? { listId: threadMessage.listId } : {}),
283
284
  },
284
285
  });
285
286
  };