@hivegpt/hiveai-angular 0.0.505 → 0.0.506
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/bundles/hivegpt-hiveai-angular.umd.js +12 -1
- package/bundles/hivegpt-hiveai-angular.umd.js.map +1 -1
- package/bundles/hivegpt-hiveai-angular.umd.min.js +1 -1
- package/bundles/hivegpt-hiveai-angular.umd.min.js.map +1 -1
- package/esm2015/lib/components/chat-drawer/chat-drawer.component.js +13 -2
- package/fesm2015/hivegpt-hiveai-angular.js +12 -1
- package/fesm2015/hivegpt-hiveai-angular.js.map +1 -1
- package/lib/components/chat-drawer/chat-drawer.component.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -2631,7 +2631,7 @@
|
|
|
2631
2631
|
if (!Array.isArray(attendees))
|
|
2632
2632
|
return [];
|
|
2633
2633
|
return attendees.map(function (a) {
|
|
2634
|
-
var _a, _b, _c, _d, _e;
|
|
2634
|
+
var _a, _b, _c, _d, _e, _f, _g;
|
|
2635
2635
|
return ({
|
|
2636
2636
|
name: String((_a = a.name) !== null && _a !== void 0 ? _a : '').trim(),
|
|
2637
2637
|
company: a.company != null && String(a.company).trim() !== '' ? String(a.company).trim() : null,
|
|
@@ -2639,6 +2639,17 @@
|
|
|
2639
2639
|
photo: a.photo != null && String(a.photo).trim() !== '' ? String(a.photo).trim() : null,
|
|
2640
2640
|
id: (_e = (_d = (_c = (_b = a.id) !== null && _b !== void 0 ? _b : a.userId) !== null && _c !== void 0 ? _c : a._id) !== null && _d !== void 0 ? _d : a.attendeeId) !== null && _e !== void 0 ? _e : undefined,
|
|
2641
2641
|
interests: a.interests != null && String(a.interests).trim() !== '' ? String(a.interests).trim() : null,
|
|
2642
|
+
description: a.description != null && String(a.description).trim() !== '' ? String(a.description).trim() : null,
|
|
2643
|
+
userVideosModel: a.userVideosModel
|
|
2644
|
+
? {
|
|
2645
|
+
url: ((_f = a.userVideosModel) === null || _f === void 0 ? void 0 : _f.url) != null && String(a.userVideosModel.url).trim() !== ''
|
|
2646
|
+
? String(a.userVideosModel.url).trim()
|
|
2647
|
+
: null,
|
|
2648
|
+
thumbnail: ((_g = a.userVideosModel) === null || _g === void 0 ? void 0 : _g.thumbnail) != null && String(a.userVideosModel.thumbnail).trim() !== ''
|
|
2649
|
+
? String(a.userVideosModel.thumbnail).trim()
|
|
2650
|
+
: null,
|
|
2651
|
+
}
|
|
2652
|
+
: null,
|
|
2642
2653
|
});
|
|
2643
2654
|
});
|
|
2644
2655
|
};
|