@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/browser.js
CHANGED
@@ -856,6 +856,10 @@ var User = /*#__PURE__*/function (_ReplayEventEmitter) {
|
|
856
856
|
log$6.debug(_this3.state.entityName + " (" + _this3.state.identity + ") itemUpdated: " + args.item.key);
|
857
857
|
return _this3._update(args.item.key, args.item.data);
|
858
858
|
});
|
859
|
+
map.on("itemAdded", function (args) {
|
860
|
+
log$6.debug(_this3.state.entityName + " (" + _this3.state.identity + ") itemAdded: " + args.item.key);
|
861
|
+
return _this3._update(args.item.key, args.item.data);
|
862
|
+
});
|
859
863
|
return Promise.all([map.get("friendlyName").then(function (item) {
|
860
864
|
return _this3._update(item.key, item.data);
|
861
865
|
}), map.get("attributes").then(function (item) {
|
@@ -7774,7 +7778,7 @@ function PushNotification(data) {
|
|
7774
7778
|
this.data = data.data || {};
|
7775
7779
|
});
|
7776
7780
|
|
7777
|
-
var version = "2.3.0";
|
7781
|
+
var version = "2.3.1-rc.0";
|
7778
7782
|
|
7779
7783
|
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; }
|
7780
7784
|
|