@twilio/conversations 2.3.0 → 2.3.1-rc.0
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/builds/browser.js +5 -1
- package/builds/browser.js.map +1 -1
- package/builds/lib.js +5 -1
- package/builds/lib.js.map +1 -1
- package/builds/twilio-conversations.js +6 -2
- package/builds/twilio-conversations.min.js +1 -1
- package/dist/packages/conversations/package.json.js +1 -1
- package/dist/user.js +8 -0
- package/dist/user.js.map +1 -1
- package/package.json +7 -7
package/builds/lib.js
CHANGED
@@ -847,6 +847,10 @@ var User = /*#__PURE__*/function (_ReplayEventEmitter) {
|
|
847
847
|
log$6.debug(_this3.state.entityName + " (" + _this3.state.identity + ") itemUpdated: " + args.item.key);
|
848
848
|
return _this3._update(args.item.key, args.item.data);
|
849
849
|
});
|
850
|
+
map.on("itemAdded", function (args) {
|
851
|
+
log$6.debug(_this3.state.entityName + " (" + _this3.state.identity + ") itemAdded: " + args.item.key);
|
852
|
+
return _this3._update(args.item.key, args.item.data);
|
853
|
+
});
|
850
854
|
return Promise.all([map.get("friendlyName").then(function (item) {
|
851
855
|
return _this3._update(item.key, item.data);
|
852
856
|
}), map.get("attributes").then(function (item) {
|
@@ -7765,7 +7769,7 @@ function PushNotification(data) {
|
|
7765
7769
|
this.data = data.data || {};
|
7766
7770
|
});
|
7767
7771
|
|
7768
|
-
var version = "2.3.0";
|
7772
|
+
var version = "2.3.1-rc.0";
|
7769
7773
|
|
7770
7774
|
function ownKeys$1(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
7771
7775
|
|