@twilio/conversations 2.4.0-rc.0 → 2.4.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/README.md +17 -11
- package/builds/browser.js +19 -2
- package/builds/browser.js.map +1 -1
- package/builds/lib.d.ts +16 -3
- package/builds/lib.js +19 -2
- package/builds/lib.js.map +1 -1
- package/builds/twilio-conversations.js +19 -2
- package/builds/twilio-conversations.min.js +1 -1
- package/dist/channel-metadata-client.js +6 -0
- package/dist/channel-metadata-client.js.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/packages/conversations/package.json.js +1 -1
- package/dist/participant.js.map +1 -1
- package/docs/assets/js/search.js +1 -1
- package/docs/classes/ChannelMetadata.html +3050 -0
- package/docs/classes/Message.html +3 -3
- package/docs/classes/Participant.html +2 -2
- package/docs/index.html +14 -7
- package/docs/modules.html +14 -7
- package/package.json +2 -2
@@ -42014,7 +42014,7 @@ this.Twilio.Conversations = (function (exports) {
|
|
42014
42014
|
this.data = data.data || {};
|
42015
42015
|
});
|
42016
42016
|
|
42017
|
-
var version = "2.4.0-rc.
|
42017
|
+
var version = "2.4.0-rc.1";
|
42018
42018
|
|
42019
42019
|
function _isNativeFunction(fn) {
|
42020
42020
|
return Function.toString.call(fn).indexOf("[native code]") !== -1;
|
@@ -42848,7 +42848,23 @@ this.Twilio.Conversations = (function (exports) {
|
|
42848
42848
|
|
42849
42849
|
var quickLru = QuickLRU;
|
42850
42850
|
|
42851
|
-
|
42851
|
+
/**
|
42852
|
+
* Represents channel metadata.
|
42853
|
+
*/
|
42854
|
+
|
42855
|
+
var ChannelMetadata = /*#__PURE__*/_createClass$4(
|
42856
|
+
/**
|
42857
|
+
* Communication channel type.
|
42858
|
+
*/
|
42859
|
+
|
42860
|
+
/**
|
42861
|
+
* The actual metadata.
|
42862
|
+
*/
|
42863
|
+
|
42864
|
+
/**
|
42865
|
+
* @internal
|
42866
|
+
*/
|
42867
|
+
function ChannelMetadata(type, data) {
|
42852
42868
|
_classCallCheck$4(this, ChannelMetadata);
|
42853
42869
|
|
42854
42870
|
this.type = type;
|
@@ -44513,6 +44529,7 @@ this.Twilio.Conversations = (function (exports) {
|
|
44513
44529
|
|
44514
44530
|
exports.AggregatedDeliveryReceipt = AggregatedDeliveryReceipt;
|
44515
44531
|
exports.CancellablePromise = browser$1.CancellablePromise;
|
44532
|
+
exports.ChannelMetadata = ChannelMetadata;
|
44516
44533
|
exports.ContentTemplate = ContentTemplate;
|
44517
44534
|
exports.ContentTemplateVariable = ContentTemplateVariable;
|
44518
44535
|
exports.Conversation = Conversation;
|