@twilio/conversations 2.1.0-rc.8 → 2.1.0-rc.9
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 +8 -0
- package/builds/browser.js +5 -1
- package/builds/browser.js.map +1 -1
- package/builds/lib.d.ts +3 -0
- package/builds/lib.js +5 -1
- package/builds/lib.js.map +1 -1
- package/builds/twilio-conversations.js +77 -58
- package/builds/twilio-conversations.min.js +2 -2
- package/dist/conversation.js +3 -0
- package/dist/conversation.js.map +1 -1
- package/dist/packages/conversations/package.json.js +1 -1
- package/docs/assets/js/search.js +1 -1
- package/docs/classes/Conversation.html +23 -0
- package/package.json +2 -2
package/builds/lib.d.ts
CHANGED
@@ -1495,6 +1495,9 @@ declare class Conversation extends ReplayEventEmitter<ConversationEvents> {
|
|
1495
1495
|
*/
|
1496
1496
|
get notificationLevel(): NotificationLevel;
|
1497
1497
|
get bindings(): ConversationBindings;
|
1498
|
+
/**
|
1499
|
+
* Current conversation limits.
|
1500
|
+
*/
|
1498
1501
|
get limits(): ConversationLimits;
|
1499
1502
|
/**
|
1500
1503
|
* State of the conversation.
|
package/builds/lib.js
CHANGED
@@ -4170,6 +4170,10 @@ var Conversation = /*#__PURE__*/function (_ReplayEventEmitter) {
|
|
4170
4170
|
get: function get() {
|
4171
4171
|
return this.channelState.bindings;
|
4172
4172
|
}
|
4173
|
+
/**
|
4174
|
+
* Current conversation limits.
|
4175
|
+
*/
|
4176
|
+
|
4173
4177
|
}, {
|
4174
4178
|
key: "limits",
|
4175
4179
|
get: function get() {
|
@@ -6856,7 +6860,7 @@ function PushNotification(data) {
|
|
6856
6860
|
this.data = data.data || {};
|
6857
6861
|
};
|
6858
6862
|
|
6859
|
-
var version = "2.1.0-rc.
|
6863
|
+
var version = "2.1.0-rc.9";
|
6860
6864
|
|
6861
6865
|
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; }
|
6862
6866
|
|