@twilio/conversations 2.0.0-rc.1 → 2.0.1-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 +67 -0
- package/README.md +22 -17
- package/dist/browser.js +2348 -2683
- package/dist/browser.js.map +1 -1
- package/dist/docs/assets/js/search.js +1 -1
- package/dist/docs/classes/AggregatedDeliveryReceipt.html +22 -6
- package/dist/docs/classes/Client.html +78 -33
- package/dist/docs/classes/Conversation.html +33 -17
- package/dist/docs/classes/DetailedDeliveryReceipt.html +22 -6
- package/dist/docs/classes/Media.html +23 -7
- package/dist/docs/classes/Message.html +23 -7
- package/dist/docs/classes/MessageBuilder.html +3280 -0
- package/dist/docs/classes/Participant.html +23 -7
- package/dist/docs/classes/PushNotification.html +24 -8
- package/dist/docs/classes/RestPaginator.html +28 -9
- package/dist/docs/classes/UnsentMessage.html +3144 -0
- package/dist/docs/classes/User.html +25 -9
- package/dist/docs/index.html +86 -38
- package/dist/docs/interfaces/ClientOptions.html +22 -6
- package/dist/docs/interfaces/ConversationState.html +22 -6
- package/dist/docs/interfaces/CreateConversationOptions.html +22 -6
- package/dist/docs/interfaces/LastMessage.html +22 -6
- package/dist/docs/interfaces/Paginator.html +3243 -0
- package/dist/docs/interfaces/PushNotificationData.html +3168 -0
- package/dist/docs/interfaces/SendEmailOptions.html +22 -6
- package/dist/docs/interfaces/SendMediaOptions.html +24 -7
- package/dist/docs/modules.html +85 -37
- package/dist/lib.d.ts +250 -59
- package/dist/lib.js +2278 -2142
- package/dist/lib.js.map +1 -1
- package/dist/react-native.js +502 -879
- package/dist/react-native.js.map +1 -1
- package/dist/twilio-conversations.js +25174 -23917
- package/dist/twilio-conversations.min.js +14 -2
- package/package.json +11 -9
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@twilio/conversations",
|
3
|
-
"version": "2.0.
|
3
|
+
"version": "2.0.1-rc.1",
|
4
4
|
"description": "Twilio Conversations client library",
|
5
5
|
"main": "./dist/lib.js",
|
6
6
|
"browser": "./dist/browser.js",
|
@@ -34,18 +34,19 @@
|
|
34
34
|
},
|
35
35
|
"dependencies": {
|
36
36
|
"@babel/runtime": "^7.14.5",
|
37
|
-
"@twilio/declarative-type-validator": "^0.1.9
|
38
|
-
"@twilio/mcs-client": "^0.5.1
|
39
|
-
"@twilio/notifications": "^1.0.3
|
40
|
-
"@twilio/operation-retrier": "^4.0.5
|
37
|
+
"@twilio/declarative-type-validator": "^0.1.9",
|
38
|
+
"@twilio/mcs-client": "^0.5.1",
|
39
|
+
"@twilio/notifications": "^1.0.3",
|
40
|
+
"@twilio/operation-retrier": "^4.0.5",
|
41
|
+
"@twilio/replay-event-emitter": "^0.2.2",
|
41
42
|
"core-js": "^3.17.3",
|
42
43
|
"glob": "^7.1.7",
|
43
44
|
"iso8601-duration": "=1.2.0",
|
45
|
+
"lodash.isequal": "^4.5.0",
|
44
46
|
"loglevel": "^1.6.6",
|
45
47
|
"platform": "^1.3.6",
|
46
|
-
"
|
47
|
-
"
|
48
|
-
"twilsock": "^0.12.0-rc.1",
|
48
|
+
"twilio-sync": "^3.0.5",
|
49
|
+
"twilsock": "^0.12.0",
|
49
50
|
"uuid": "^3.4.0"
|
50
51
|
},
|
51
52
|
"devDependencies": {
|
@@ -58,6 +59,7 @@
|
|
58
59
|
"@types/chai": "^4.2.5",
|
59
60
|
"@types/chai-as-promised": "^7.1.2",
|
60
61
|
"@types/chai-string": "^1.4.1",
|
62
|
+
"@types/lodash.isequal": "^4.5.5",
|
61
63
|
"@types/mocha": "^5.2.7",
|
62
64
|
"@types/node": "^12.12.12",
|
63
65
|
"@types/sinon": "^10.0.0",
|
@@ -65,7 +67,7 @@
|
|
65
67
|
"async": "^3.0.1",
|
66
68
|
"async-test-tools": "^1.0.7",
|
67
69
|
"backoff": "^2.5.0",
|
68
|
-
"browserslist": "^4.
|
70
|
+
"browserslist": "^4.17.3",
|
69
71
|
"chai": "^4.2.0",
|
70
72
|
"chai-as-promised": "^7.1.1",
|
71
73
|
"chai-string": "^1.5.0",
|