@twilio/conversations 2.5.0 → 2.6.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 (80) hide show
  1. package/README.md +2 -2
  2. package/builds/browser.esm.js +10713 -0
  3. package/builds/browser.esm.js.map +1 -0
  4. package/builds/browser.js +158 -1
  5. package/builds/browser.js.map +1 -1
  6. package/builds/lib.esm.d.ts +3166 -0
  7. package/builds/lib.esm.js +10712 -0
  8. package/builds/lib.js +167 -1
  9. package/builds/lib.js.map +1 -1
  10. package/builds/twilio-conversations.js +309 -322
  11. package/builds/twilio-conversations.min.js +1 -1
  12. package/dist/aggregated-delivery-receipt.js +3 -5
  13. package/dist/aggregated-delivery-receipt.js.map +1 -1
  14. package/dist/channel-metadata-client.js +7 -9
  15. package/dist/channel-metadata-client.js.map +1 -1
  16. package/dist/client.js +189 -154
  17. package/dist/client.js.map +1 -1
  18. package/dist/command-executor.js +8 -8
  19. package/dist/command-executor.js.map +1 -1
  20. package/dist/configuration.js +12 -9
  21. package/dist/configuration.js.map +1 -1
  22. package/dist/content-client.js +11 -8
  23. package/dist/content-client.js.map +1 -1
  24. package/dist/content-template.js +3 -5
  25. package/dist/content-template.js.map +1 -1
  26. package/dist/conversation.js +113 -87
  27. package/dist/conversation.js.map +1 -1
  28. package/dist/data/conversations.js +34 -42
  29. package/dist/data/conversations.js.map +1 -1
  30. package/dist/data/messages.js +23 -21
  31. package/dist/data/messages.js.map +1 -1
  32. package/dist/data/participants.js +25 -23
  33. package/dist/data/participants.js.map +1 -1
  34. package/dist/data/users.js +15 -13
  35. package/dist/data/users.js.map +1 -1
  36. package/dist/detailed-delivery-receipt.js +3 -5
  37. package/dist/detailed-delivery-receipt.js.map +1 -1
  38. package/dist/index.js +17 -49
  39. package/dist/index.js.map +1 -1
  40. package/dist/interfaces/notification-types.js +1 -5
  41. package/dist/interfaces/notification-types.js.map +1 -1
  42. package/dist/interfaces/rules.js +13 -10
  43. package/dist/interfaces/rules.js.map +1 -1
  44. package/dist/logger.js +25 -26
  45. package/dist/logger.js.map +1 -1
  46. package/dist/media.js +11 -8
  47. package/dist/media.js.map +1 -1
  48. package/dist/message-builder.js +48 -40
  49. package/dist/message-builder.js.map +1 -1
  50. package/dist/message-recipients-client.js +10 -12
  51. package/dist/message-recipients-client.js.map +1 -1
  52. package/dist/message.js +88 -75
  53. package/dist/message.js.map +1 -1
  54. package/dist/node_modules/quick-lru/index.js +1 -5
  55. package/dist/node_modules/quick-lru/index.js.map +1 -1
  56. package/dist/node_modules/tslib/tslib.es6.js +1 -7
  57. package/dist/node_modules/tslib/tslib.es6.js.map +1 -1
  58. package/dist/packages/conversations/package.json.js +2 -6
  59. package/dist/packages/conversations/package.json.js.map +1 -1
  60. package/dist/participant.js +34 -29
  61. package/dist/participant.js.map +1 -1
  62. package/dist/push-notification.js +5 -4
  63. package/dist/push-notification.js.map +1 -1
  64. package/dist/rest-paginator.js +6 -4
  65. package/dist/rest-paginator.js.map +1 -1
  66. package/dist/services/network.js +3 -7
  67. package/dist/services/network.js.map +1 -1
  68. package/dist/services/typing-indicator.js +11 -8
  69. package/dist/services/typing-indicator.js.map +1 -1
  70. package/dist/unsent-message.js +9 -8
  71. package/dist/unsent-message.js.map +1 -1
  72. package/dist/user.js +27 -24
  73. package/dist/user.js.map +1 -1
  74. package/dist/util/deferred.js +6 -4
  75. package/dist/util/deferred.js.map +1 -1
  76. package/dist/util/index.js +1 -9
  77. package/dist/util/index.js.map +1 -1
  78. package/docs/index.html +3 -3
  79. package/docs/modules.html +2 -2
  80. package/package.json +7 -7
package/builds/lib.js CHANGED
@@ -128,6 +128,15 @@ This software includes platform.js under the following license.
128
128
  */
129
129
  'use strict';
130
130
 
131
+ var global =
132
+ typeof global !== "undefined"
133
+ ? global
134
+ : typeof self !== "undefined"
135
+ ? self
136
+ : typeof window !== "undefined"
137
+ ? window
138
+ : {};
139
+
131
140
  Object.defineProperty(exports, '__esModule', { value: true });
132
141
 
133
142
  require('core-js/modules/es.reflect.to-string-tag.js');
@@ -646,6 +655,22 @@ var User = /*#__PURE__*/function (_ReplayEventEmitter) {
646
655
  * @event
647
656
  */
648
657
 
658
+ /**
659
+ * Fired when the client has subscribed to the user.
660
+ *
661
+ * Parameters:
662
+ * 1. {@link User} `user` - the user in question
663
+ * @event
664
+ */
665
+
666
+ /**
667
+ * Fired when the client has unsubscribed from the user.
668
+ *
669
+ * Parameters:
670
+ * 1. {@link User} `user` - the user in question
671
+ * @event
672
+ */
673
+
649
674
 
650
675
  _createClass__default["default"](User, [{
651
676
  key: "identity",
@@ -1318,6 +1343,24 @@ var Participant = /*#__PURE__*/function (_ReplayEventEmitter) {
1318
1343
  * @event
1319
1344
  */
1320
1345
 
1346
+ /**
1347
+ * Fired when the participant has stopped typing.
1348
+ *
1349
+ * Parameters:
1350
+ * 1. {@link Participant} `participant` - the participant in question
1351
+ * @event
1352
+ */
1353
+
1354
+ /**
1355
+ * Fired when the fields of the participant have been updated.
1356
+ *
1357
+ * Parameters:
1358
+ * 1. object `data` - info object provided with the event. It has the following properties:
1359
+ * * {@link Participant} participant - the participant in question
1360
+ * * {@link ParticipantUpdateReason}[] updateReasons - array of reasons for the update
1361
+ * @event
1362
+ */
1363
+
1321
1364
 
1322
1365
  _createClass__default["default"](Participant, [{
1323
1366
  key: "sid",
@@ -2895,6 +2938,15 @@ var Message = /*#__PURE__*/function (_ReplayEventEmitter) {
2895
2938
 
2896
2939
  return _this;
2897
2940
  }
2941
+ /**
2942
+ * Fired when the properties or the body of the message has been updated.
2943
+ *
2944
+ * Parameters:
2945
+ * 1. object `data` - info object provided with the event. It has the following properties:
2946
+ * * {@link Message} message - the message in question
2947
+ * * {@link MessageUpdateReason}[] updateReasons - array of reasons for the update
2948
+ */
2949
+
2898
2950
 
2899
2951
  _createClass__default["default"](Message, [{
2900
2952
  key: "sid",
@@ -4891,6 +4943,64 @@ var Conversation = /*#__PURE__*/function (_ReplayEventEmitter) {
4891
4943
  * Logger instance.
4892
4944
  */
4893
4945
 
4946
+ /**
4947
+ * Unique system identifier of the conversation.
4948
+ */
4949
+
4950
+ /**
4951
+ * Conversation links for REST requests.
4952
+ * @internal
4953
+ */
4954
+
4955
+ /**
4956
+ * Configuration of the client that the conversation belongs to.
4957
+ */
4958
+
4959
+ /**
4960
+ * Conversation service objects.
4961
+ */
4962
+
4963
+ /**
4964
+ * Internal state of the conversation.
4965
+ */
4966
+
4967
+ /**
4968
+ * Name of the conversation entity document.
4969
+ */
4970
+
4971
+ /**
4972
+ * Messages entity.
4973
+ */
4974
+
4975
+ /**
4976
+ * Sync list containing messages.
4977
+ */
4978
+
4979
+ /**
4980
+ * Map of participants.
4981
+ * @internal
4982
+ */
4983
+
4984
+ /**
4985
+ * Participants entity.
4986
+ */
4987
+
4988
+ /**
4989
+ * Sync map containing participants.
4990
+ */
4991
+
4992
+ /**
4993
+ * Source of the most recent update.
4994
+ */
4995
+
4996
+ /**
4997
+ * Promise for the conversation entity document.
4998
+ */
4999
+
5000
+ /**
5001
+ * Conversation entity document.
5002
+ */
5003
+
4894
5004
  /**
4895
5005
  * @param descriptor Conversation descriptor.
4896
5006
  * @param sid Conversation SID.
@@ -7954,7 +8064,7 @@ function PushNotification(data) {
7954
8064
  this.data = data.data || {};
7955
8065
  });
7956
8066
 
7957
- var version = "2.5.0";
8067
+ var version = "2.6.0-rc.0";
7958
8068
 
7959
8069
  function ownKeys$1(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
7960
8070
 
@@ -8827,6 +8937,22 @@ var EmailRecipientDescriptor = /*#__PURE__*/_createClass__default["default"](
8827
8937
  * Type of recipient.
8828
8938
  */
8829
8939
 
8940
+ /**
8941
+ * Sid of the message that this recipient belongs to.
8942
+ */
8943
+
8944
+ /**
8945
+ * Email recipient level.
8946
+ */
8947
+
8948
+ /**
8949
+ * Name of the recipient.
8950
+ */
8951
+
8952
+ /**
8953
+ * Address of the recipient.
8954
+ */
8955
+
8830
8956
  /**
8831
8957
  * @internal
8832
8958
  */
@@ -9280,6 +9406,46 @@ exports.Client = Client_1 = (_class = /*#__PURE__*/function (_ReplayEventEmitter
9280
9406
  * Client connection state.
9281
9407
  */
9282
9408
 
9409
+ /**
9410
+ * Promise that resolves on successful initialization.
9411
+ */
9412
+
9413
+ /**
9414
+ * Options passed to the client.
9415
+ */
9416
+
9417
+ /**
9418
+ * Client service objects.
9419
+ */
9420
+
9421
+ /**
9422
+ * The user of the client.
9423
+ */
9424
+
9425
+ /**
9426
+ * Resolves the {@link Client._ensureReady} promise.
9427
+ */
9428
+
9429
+ /**
9430
+ * Rejects the {@link Client._ensureReady} promise.
9431
+ */
9432
+
9433
+ /**
9434
+ * The current token of the client.
9435
+ */
9436
+
9437
+ /**
9438
+ * The constructed configuration object.
9439
+ */
9440
+
9441
+ /**
9442
+ * The Conversations entity.
9443
+ */
9444
+
9445
+ /**
9446
+ * Promise that resolves when initial conversations are fetched.
9447
+ */
9448
+
9283
9449
  /**
9284
9450
  * Returned Conversations Client instance is not yet fully initialized. Calling any
9285
9451
  * operations will block until it is. Use connection events to monitor when