@twilio/conversations 2.1.0-rc.0 → 2.1.0-rc.1

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/CHANGELOG.md CHANGED
@@ -3,6 +3,15 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.1.0-rc.1](https://github.com/twilio/rtd-sdk-monorepo-js/compare/@twilio/conversations@2.1.0-rc.0...@twilio/conversations@2.1.0-rc.1) (2021-11-25)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Fix last read message index not getting properly resolved in events ([97ea57f](https://github.com/twilio/rtd-sdk-monorepo-js/commit/97ea57f8a8dc76521601ced925237b64044d558a))
12
+
13
+
14
+
6
15
  ## [2.1.0-rc.0](https://github.com/twilio/rtd-sdk-monorepo-js/compare/@twilio/conversations@2.0.1-rc.10...@twilio/conversations@2.1.0-rc.0) (2021-11-19)
7
16
 
8
17
 
package/builds/browser.js CHANGED
@@ -6266,7 +6266,7 @@ var Conversations = /*#__PURE__*/function (_ReplayEventEmitter) {
6266
6266
  channel: conversationDescriptor.sync_objects.conversation,
6267
6267
  messages: conversationDescriptor.sync_objects.messages,
6268
6268
  roster: "".concat(conversationDescriptor.conversation_sid, ".roster"),
6269
- lastConsumedMessageIndex: conversationDescriptor.last_consumed_message_index,
6269
+ lastConsumedMessageIndex: conversationDescriptor.last_read_message_index,
6270
6270
  notificationLevel: conversationDescriptor.notification_level
6271
6271
  };
6272
6272
  });
@@ -6783,7 +6783,7 @@ function PushNotification(data) {
6783
6783
  this.data = data.data || {};
6784
6784
  };
6785
6785
 
6786
- var version = "2.1.0-rc.0";
6786
+ var version = "2.1.0-rc.1";
6787
6787
 
6788
6788
  function ownKeys$1(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
6789
6789