@twilio/conversations 3.0.0-canary.5 → 3.0.0-canary.9
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/builds/browser.js +362 -360
- package/builds/browser.js.map +1 -1
- package/builds/lib.d.ts +5 -2
- package/builds/lib.js +362 -360
- package/builds/lib.js.map +1 -1
- package/builds/twilio-conversations.js +1918 -1782
- package/builds/twilio-conversations.min.js +1 -16
- package/dist/aggregated-delivery-receipt.js.map +1 -1
- package/dist/client.js +16 -3
- package/dist/client.js.map +1 -1
- package/dist/command-executor.js.map +1 -1
- package/dist/configuration.js.map +1 -1
- package/dist/conversation.js +5 -4
- package/dist/conversation.js.map +1 -1
- package/dist/data/conversations.js +1 -1
- package/dist/data/conversations.js.map +1 -1
- package/dist/data/messages.js.map +1 -1
- package/dist/data/participants.js.map +1 -1
- package/dist/data/users.js.map +1 -1
- package/dist/detailed-delivery-receipt.js.map +1 -1
- package/dist/index.js +1 -4
- package/dist/index.js.map +1 -1
- package/dist/interfaces/attributes.js.map +1 -1
- package/dist/interfaces/notification-types.js.map +1 -1
- package/dist/logger.js +2 -4
- package/dist/logger.js.map +1 -1
- package/dist/media.js.map +1 -1
- package/dist/message-builder.js.map +1 -1
- package/dist/message.js +9 -9
- package/dist/message.js.map +1 -1
- package/dist/node_modules/tslib/tslib.es6.js +1 -1
- package/dist/node_modules/tslib/tslib.es6.js.map +1 -1
- package/dist/participant.js +2 -2
- package/dist/participant.js.map +1 -1
- package/dist/push-notification.js.map +1 -1
- package/dist/rest-paginator.js.map +1 -1
- package/dist/services/network.js.map +1 -1
- package/dist/services/typing-indicator.js.map +1 -1
- package/dist/unsent-message.js.map +1 -1
- package/dist/user.js +1 -1
- package/dist/user.js.map +1 -1
- package/dist/util/deferred.js.map +1 -1
- package/dist/util/index.js.map +1 -1
- package/package.json +19 -17
package/builds/lib.d.ts
CHANGED
@@ -872,7 +872,7 @@ declare class Message extends ReplayEventEmitter<MessageEvents> {
|
|
872
872
|
* Get content URLs for all media attachments in the given set using a single operation.
|
873
873
|
* @param contentSet Set of media attachments to query content URLs.
|
874
874
|
*/
|
875
|
-
getTemporaryContentUrlsForMedia(contentSet: Media[]
|
875
|
+
getTemporaryContentUrlsForMedia(contentSet: Media[]): CancellablePromise<Map<string, string>>;
|
876
876
|
/**
|
877
877
|
* Get content URLs for all media attachments in the given set of media sids using a single operation.
|
878
878
|
* @param mediaSids Set of media sids to query for the content URL.
|
@@ -1110,7 +1110,10 @@ declare class UnsentMessage {
|
|
1110
1110
|
private messagesEntity;
|
1111
1111
|
text?: string;
|
1112
1112
|
attributes: JSONValue;
|
1113
|
-
mediaContent: [
|
1113
|
+
mediaContent: [
|
1114
|
+
MediaCategory,
|
1115
|
+
FormData | SendMediaOptions
|
1116
|
+
][];
|
1114
1117
|
emailOptions: SendEmailOptions;
|
1115
1118
|
/**
|
1116
1119
|
* @internal
|