wingbot 3.67.3 → 3.67.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wingbot",
3
- "version": "3.67.3",
3
+ "version": "3.67.4",
4
4
  "description": "Enterprise Messaging Bot Conversation Engine",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -416,7 +416,10 @@ class CustomEntityDetectionModel {
416
416
  list = [];
417
417
  byEntity.set(entity.entity, list);
418
418
  }
419
- list.push(entity);
419
+ list.push({
420
+ text: s,
421
+ ...entity
422
+ });
420
423
  }
421
424
 
422
425
  const normalized = Array.from(byEntity.entries())