@voicenter-team/events-sdk 0.0.117 → 0.0.118

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.
@@ -2658,10 +2658,11 @@ class te {
2658
2658
  return {
2659
2659
  ...t,
2660
2660
  history: t.history.map((e) => {
2661
+ var o;
2661
2662
  const r = this.mapVoicebotCall(t, e);
2662
2663
  return {
2663
2664
  ...r,
2664
- eventsData: r.eventsData.map((o) => this.mapVoicebotEventsData(t, o))
2665
+ eventsData: (o = r.eventsData) == null ? void 0 : o.map((c) => this.mapVoicebotEventsData(t, c))
2665
2666
  };
2666
2667
  })
2667
2668
  };