@twilio/conversations 2.0.1-rc.9 → 2.1.0-rc.0

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.
Files changed (55) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/builds/browser.js +248 -64
  3. package/builds/browser.js.map +1 -1
  4. package/builds/lib.d.ts +86 -9
  5. package/builds/lib.js +248 -64
  6. package/builds/lib.js.map +1 -1
  7. package/builds/twilio-conversations.js +246 -63
  8. package/builds/twilio-conversations.min.js +3 -3
  9. package/dist/conversation.js +24 -10
  10. package/dist/conversation.js.map +1 -1
  11. package/dist/data/messages.js +1 -1
  12. package/dist/data/messages.js.map +1 -1
  13. package/dist/data/participants.js +7 -3
  14. package/dist/data/participants.js.map +1 -1
  15. package/dist/index.js +1 -0
  16. package/dist/index.js.map +1 -1
  17. package/dist/interfaces/attributes.js +147 -0
  18. package/dist/interfaces/attributes.js.map +1 -0
  19. package/dist/message-builder.js +52 -0
  20. package/dist/message-builder.js.map +1 -1
  21. package/dist/message.js +35 -4
  22. package/dist/message.js.map +1 -1
  23. package/dist/packages/conversations/package.json.js +1 -1
  24. package/dist/participant.js +20 -3
  25. package/dist/participant.js.map +1 -1
  26. package/dist/user.js +2 -1
  27. package/dist/user.js.map +1 -1
  28. package/docs/assets/js/search.js +1 -1
  29. package/docs/classes/AggregatedDeliveryReceipt.html +15 -0
  30. package/docs/classes/Client.html +15 -0
  31. package/docs/classes/Conversation.html +24 -2
  32. package/docs/classes/DetailedDeliveryReceipt.html +15 -0
  33. package/docs/classes/Media.html +15 -0
  34. package/docs/classes/Message.html +83 -2
  35. package/docs/classes/MessageBuilder.html +91 -0
  36. package/docs/classes/Participant.html +45 -1
  37. package/docs/classes/PushNotification.html +15 -0
  38. package/docs/classes/RestPaginator.html +15 -0
  39. package/docs/classes/UnsentMessage.html +15 -0
  40. package/docs/classes/User.html +15 -0
  41. package/docs/index.html +37 -3
  42. package/docs/interfaces/ClientOptions.html +15 -0
  43. package/docs/interfaces/ConversationBindings.html +3118 -0
  44. package/docs/interfaces/ConversationEmailBinding.html +3118 -0
  45. package/docs/interfaces/ConversationState.html +15 -0
  46. package/docs/interfaces/CreateConversationOptions.html +15 -0
  47. package/docs/interfaces/LastMessage.html +15 -0
  48. package/docs/interfaces/Paginator.html +15 -0
  49. package/docs/interfaces/ParticipantBindings.html +3118 -0
  50. package/docs/interfaces/ParticipantEmailBinding.html +3118 -0
  51. package/docs/interfaces/PushNotificationData.html +15 -0
  52. package/docs/interfaces/SendEmailOptions.html +15 -0
  53. package/docs/interfaces/SendMediaOptions.html +15 -0
  54. package/docs/modules.html +37 -3
  55. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -3,6 +3,37 @@
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.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
+
8
+
9
+ ### Features
10
+
11
+ * Add bindings to Participant & Conversation ([56afcc3](https://github.com/twilio/rtd-sdk-monorepo-js/commit/56afcc38020f024e0ec952117cb5dcc6e4f61e92))
12
+ * Add email body and history accessors ([be2de67](https://github.com/twilio/rtd-sdk-monorepo-js/commit/be2de674c5215a3054665756c85a22e35d145f58))
13
+ * Update MessageBuilder to support email payload ([ee0d00a](https://github.com/twilio/rtd-sdk-monorepo-js/commit/ee0d00a8c7e1dea478000731018c89fd2b8eb6c2))
14
+ * Use shared attributesValidator ([6d2a13f](https://github.com/twilio/rtd-sdk-monorepo-js/commit/6d2a13f87e9ad445399e5615a2eb6e4fe8b9518e))
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * Fix bindings update always coming in participantUpdated reasons ([70f554d](https://github.com/twilio/rtd-sdk-monorepo-js/commit/70f554d3b81e3f662abc4e9a573aec6028c24c9d))
20
+ * Fix docs and signatures for single media. ([99d3512](https://github.com/twilio/rtd-sdk-monorepo-js/commit/99d3512ef5c382fe19346f0ebefe8902e332abad))
21
+ * Improve validator for attachTemporaryUrlsFor ([3e9f199](https://github.com/twilio/rtd-sdk-monorepo-js/commit/3e9f199464b4891b2d114ebdc71bcbe8c2fefd76))
22
+ * Invalid access when no email media attached ([6b1a40d](https://github.com/twilio/rtd-sdk-monorepo-js/commit/6b1a40de5a477b8047362074673788ee5ee45732))
23
+ * Prevent use of FormData in non-browser environment ([eaa2ba4](https://github.com/twilio/rtd-sdk-monorepo-js/commit/eaa2ba495506508ac531a257d78696d297581a64))
24
+ * Remove old conflicts ([2c505e7](https://github.com/twilio/rtd-sdk-monorepo-js/commit/2c505e76e054274ac3dd4352b2c951189311d67b))
25
+
26
+
27
+
28
+ ### [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)
29
+
30
+
31
+ ### Bug Fixes
32
+
33
+ * Fix import isomorphic form data to conversations ([22d0712](https://github.com/twilio/rtd-sdk-monorepo-js/commit/22d0712e50b74690788642382a5f9d091d9c349d))
34
+
35
+
36
+
6
37
  ### [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)
7
38
 
8
39
  **Note:** Version bump only for package @twilio/conversations