@twilio/conversations 2.0.1-rc.6 → 2.0.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 +33 -0
- package/builds/browser.js +2 -1
- package/builds/browser.js.map +1 -1
- package/builds/lib.d.ts +1 -0
- package/builds/lib.js +2 -1
- package/builds/lib.js.map +1 -1
- package/builds/twilio-conversations.js +8 -188
- package/builds/twilio-conversations.min.js +2 -2
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/packages/conversations/package.json.js +1 -1
- package/package.json +10 -12
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,39 @@
|
|
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.0.1-rc.10](https://github.com/twilio/rtd-sdk-monorepo-js/compare/@twilio/conversations@2.0.1-rc.9...@twilio/conversations@2.0.1-rc.10) (2021-11-16)
|
7
|
+
|
8
|
+
|
9
|
+
### Bug Fixes
|
10
|
+
|
11
|
+
* Fix import isomorphic form data to conversations ([22d0712](https://github.com/twilio/rtd-sdk-monorepo-js/commit/22d0712e50b74690788642382a5f9d091d9c349d))
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
### [2.0.1-rc.9](https://github.com/twilio/rtd-sdk-monorepo-js/compare/@twilio/conversations@2.0.1-rc.8...@twilio/conversations@2.0.1-rc.9) (2021-11-12)
|
16
|
+
|
17
|
+
**Note:** Version bump only for package @twilio/conversations
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
### [2.0.1-rc.8](https://github.com/twilio/rtd-sdk-monorepo-js/compare/@twilio/conversations@2.0.1-rc.7...@twilio/conversations@2.0.1-rc.8) (2021-11-12)
|
24
|
+
|
25
|
+
**Note:** Version bump only for package @twilio/conversations
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
### [2.0.1-rc.7](https://github.com/twilio/rtd-sdk-monorepo-js/compare/@twilio/conversations@2.0.1-rc.6...@twilio/conversations@2.0.1-rc.7) (2021-11-12)
|
32
|
+
|
33
|
+
**Note:** Version bump only for package @twilio/conversations
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
|
6
39
|
### [2.0.1-rc.6](https://github.com/twilio/rtd-sdk-monorepo-js/compare/@twilio/conversations@2.0.1-rc.5...@twilio/conversations@2.0.1-rc.6) (2021-11-11)
|
7
40
|
|
8
41
|
|
package/builds/browser.js
CHANGED
@@ -130,6 +130,7 @@ This software includes platform.js under the following license.
|
|
130
130
|
|
131
131
|
Object.defineProperty(exports, '__esModule', { value: true });
|
132
132
|
|
133
|
+
require('isomorphic-form-data');
|
133
134
|
require('core-js/modules/es.reflect.construct.js');
|
134
135
|
require('core-js/modules/es.object.keys.js');
|
135
136
|
require('core-js/modules/es.symbol.js');
|
@@ -6599,7 +6600,7 @@ function PushNotification(data) {
|
|
6599
6600
|
this.data = data.data || {};
|
6600
6601
|
};
|
6601
6602
|
|
6602
|
-
var version = "2.0.1
|
6603
|
+
var version = "2.0.1";
|
6603
6604
|
|
6604
6605
|
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; }
|
6605
6606
|
|