@vendasta/conversation 0.79.0 → 0.80.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.
Files changed (33) hide show
  1. package/esm2022/lib/_internal/conversation.api.service.mjs +8 -5
  2. package/esm2022/lib/_internal/enums/event.enum.mjs +15 -0
  3. package/esm2022/lib/_internal/enums/index.mjs +2 -1
  4. package/esm2022/lib/_internal/interfaces/api.interface.mjs +1 -1
  5. package/esm2022/lib/_internal/interfaces/common.interface.mjs +1 -1
  6. package/esm2022/lib/_internal/interfaces/configuration.interface.mjs +1 -1
  7. package/esm2022/lib/_internal/interfaces/event.interface.mjs +1 -7
  8. package/esm2022/lib/_internal/interfaces/index.mjs +1 -1
  9. package/esm2022/lib/_internal/interfaces/message.interface.mjs +1 -7
  10. package/esm2022/lib/_internal/objects/api.mjs +109 -2
  11. package/esm2022/lib/_internal/objects/common.mjs +26 -1
  12. package/esm2022/lib/_internal/objects/configuration.mjs +33 -1
  13. package/esm2022/lib/_internal/objects/event.mjs +31 -1
  14. package/esm2022/lib/_internal/objects/index.mjs +5 -5
  15. package/esm2022/lib/_internal/objects/message.mjs +2 -26
  16. package/fesm2022/vendasta-conversation.mjs +212 -26
  17. package/fesm2022/vendasta-conversation.mjs.map +1 -1
  18. package/lib/_internal/conversation.api.service.d.ts +3 -2
  19. package/lib/_internal/enums/event.enum.d.ts +7 -0
  20. package/lib/_internal/enums/index.d.ts +1 -0
  21. package/lib/_internal/interfaces/api.interface.d.ts +20 -1
  22. package/lib/_internal/interfaces/common.interface.d.ts +4 -0
  23. package/lib/_internal/interfaces/configuration.interface.d.ts +5 -0
  24. package/lib/_internal/interfaces/event.interface.d.ts +6 -0
  25. package/lib/_internal/interfaces/index.d.ts +4 -4
  26. package/lib/_internal/interfaces/message.interface.d.ts +1 -4
  27. package/lib/_internal/objects/api.d.ts +26 -1
  28. package/lib/_internal/objects/common.d.ts +7 -0
  29. package/lib/_internal/objects/configuration.d.ts +8 -0
  30. package/lib/_internal/objects/event.d.ts +6 -0
  31. package/lib/_internal/objects/index.d.ts +4 -4
  32. package/lib/_internal/objects/message.d.ts +1 -7
  33. package/package.json +1 -1
@@ -144,6 +144,21 @@ var EvaluationSentiment;
144
144
  EvaluationSentiment[EvaluationSentiment["EVALUATION_SENTIMENT_NEGATIVE"] = 2] = "EVALUATION_SENTIMENT_NEGATIVE";
145
145
  })(EvaluationSentiment || (EvaluationSentiment = {}));
146
146
 
147
+ // *********************************
148
+ // Code generated by sdkgen
149
+ // DO NOT EDIT!.
150
+ //
151
+ // Enums.
152
+ // *********************************
153
+ var EventType;
154
+ (function (EventType) {
155
+ EventType[EventType["EVENT_TYPE_UNDEFINED"] = 0] = "EVENT_TYPE_UNDEFINED";
156
+ EventType[EventType["EVENT_TYPE_SMS_UNSUBSCRIBED"] = 1] = "EVENT_TYPE_SMS_UNSUBSCRIBED";
157
+ EventType[EventType["EVENT_TYPE_CAMPAIGN"] = 3] = "EVENT_TYPE_CAMPAIGN";
158
+ EventType[EventType["EVENT_TYPE_REVIEW_REQUEST"] = 4] = "EVENT_TYPE_REVIEW_REQUEST";
159
+ EventType[EventType["EVENT_TYPE_FORM_SUBMISSION"] = 5] = "EVENT_TYPE_FORM_SUBMISSION";
160
+ })(EventType || (EventType = {}));
161
+
147
162
  // *********************************
148
163
  // Code generated by sdkgen
149
164
  // DO NOT EDIT!.
@@ -189,6 +204,31 @@ function enumStringToValue$c(enumRef, value) {
189
204
  }
190
205
  return enumRef[value];
191
206
  }
207
+ class KeyValuePair {
208
+ key;
209
+ value;
210
+ static fromProto(proto) {
211
+ let m = new KeyValuePair();
212
+ m = Object.assign(m, proto);
213
+ return m;
214
+ }
215
+ constructor(kwargs) {
216
+ if (!kwargs) {
217
+ return;
218
+ }
219
+ Object.assign(this, kwargs);
220
+ }
221
+ toApiJson() {
222
+ const toReturn = {};
223
+ if (typeof this.key !== 'undefined') {
224
+ toReturn['key'] = this.key;
225
+ }
226
+ if (typeof this.value !== 'undefined') {
227
+ toReturn['value'] = this.value;
228
+ }
229
+ return toReturn;
230
+ }
231
+ }
192
232
  class NamespaceDetail {
193
233
  participantType;
194
234
  internalParticipantId;
@@ -524,31 +564,6 @@ function enumStringToValue$a(enumRef, value) {
524
564
  }
525
565
  return enumRef[value];
526
566
  }
527
- class KeyValuePair {
528
- key;
529
- value;
530
- static fromProto(proto) {
531
- let m = new KeyValuePair();
532
- m = Object.assign(m, proto);
533
- return m;
534
- }
535
- constructor(kwargs) {
536
- if (!kwargs) {
537
- return;
538
- }
539
- Object.assign(this, kwargs);
540
- }
541
- toApiJson() {
542
- const toReturn = {};
543
- if (typeof this.key !== 'undefined') {
544
- toReturn['key'] = this.key;
545
- }
546
- if (typeof this.value !== 'undefined') {
547
- toReturn['value'] = this.value;
548
- }
549
- return toReturn;
550
- }
551
- }
552
567
  class Message {
553
568
  messageId;
554
569
  externalMessageId;
@@ -982,6 +997,27 @@ function enumStringToValue$7(enumRef, value) {
982
997
  }
983
998
  return enumRef[value];
984
999
  }
1000
+ class ConfigurationAIConfiguration {
1001
+ smsResponderEnabled;
1002
+ static fromProto(proto) {
1003
+ let m = new ConfigurationAIConfiguration();
1004
+ m = Object.assign(m, proto);
1005
+ return m;
1006
+ }
1007
+ constructor(kwargs) {
1008
+ if (!kwargs) {
1009
+ return;
1010
+ }
1011
+ Object.assign(this, kwargs);
1012
+ }
1013
+ toApiJson() {
1014
+ const toReturn = {};
1015
+ if (typeof this.smsResponderEnabled !== 'undefined') {
1016
+ toReturn['smsResponderEnabled'] = this.smsResponderEnabled;
1017
+ }
1018
+ return toReturn;
1019
+ }
1020
+ }
985
1021
  class Configuration {
986
1022
  subjectParticipant;
987
1023
  createdAt;
@@ -995,6 +1031,7 @@ class Configuration {
995
1031
  facebookMessengerEnabled;
996
1032
  multiLocationEnabled;
997
1033
  instagramMessagingEnabled;
1034
+ aiConfiguration;
998
1035
  static fromProto(proto) {
999
1036
  let m = new Configuration();
1000
1037
  m = Object.assign(m, proto);
@@ -1007,6 +1044,9 @@ class Configuration {
1007
1044
  if (proto.updatedAt) {
1008
1045
  m.updatedAt = new Date(proto.updatedAt);
1009
1046
  }
1047
+ if (proto.aiConfiguration) {
1048
+ m.aiConfiguration = ConfigurationAIConfiguration.fromProto(proto.aiConfiguration);
1049
+ }
1010
1050
  return m;
1011
1051
  }
1012
1052
  constructor(kwargs) {
@@ -1053,6 +1093,9 @@ class Configuration {
1053
1093
  if (typeof this.instagramMessagingEnabled !== 'undefined') {
1054
1094
  toReturn['instagramMessagingEnabled'] = this.instagramMessagingEnabled;
1055
1095
  }
1096
+ if (typeof this.aiConfiguration !== 'undefined' && this.aiConfiguration !== null) {
1097
+ toReturn['aiConfiguration'] = 'toApiJson' in this.aiConfiguration ? this.aiConfiguration.toApiJson() : this.aiConfiguration;
1098
+ }
1056
1099
  return toReturn;
1057
1100
  }
1058
1101
  }
@@ -1063,6 +1106,7 @@ class ProductFeature {
1063
1106
  webChatEnabled;
1064
1107
  facebookMessengerEnabled;
1065
1108
  instagramMessagingEnabled;
1109
+ aiSmsResponderEnabled;
1066
1110
  static fromProto(proto) {
1067
1111
  let m = new ProductFeature();
1068
1112
  m = Object.assign(m, proto);
@@ -1094,6 +1138,9 @@ class ProductFeature {
1094
1138
  if (typeof this.instagramMessagingEnabled !== 'undefined') {
1095
1139
  toReturn['instagramMessagingEnabled'] = this.instagramMessagingEnabled;
1096
1140
  }
1141
+ if (typeof this.aiSmsResponderEnabled !== 'undefined') {
1142
+ toReturn['aiSmsResponderEnabled'] = this.aiSmsResponderEnabled;
1143
+ }
1097
1144
  return toReturn;
1098
1145
  }
1099
1146
  }
@@ -1518,6 +1565,10 @@ class Event {
1518
1565
  updated;
1519
1566
  deleted;
1520
1567
  message;
1568
+ channel;
1569
+ originatedAt;
1570
+ type;
1571
+ metadata;
1521
1572
  static fromProto(proto) {
1522
1573
  let m = new Event();
1523
1574
  m = Object.assign(m, proto);
@@ -1533,6 +1584,18 @@ class Event {
1533
1584
  if (proto.deleted) {
1534
1585
  m.deleted = new Date(proto.deleted);
1535
1586
  }
1587
+ if (proto.channel) {
1588
+ m.channel = enumStringToValue$1(ConversationChannel, proto.channel);
1589
+ }
1590
+ if (proto.originatedAt) {
1591
+ m.originatedAt = enumStringToValue$1(PlatformLocation, proto.originatedAt);
1592
+ }
1593
+ if (proto.type) {
1594
+ m.type = enumStringToValue$1(EventType, proto.type);
1595
+ }
1596
+ if (proto.metadata) {
1597
+ m.metadata = proto.metadata.map(KeyValuePair.fromProto);
1598
+ }
1536
1599
  return m;
1537
1600
  }
1538
1601
  constructor(kwargs) {
@@ -1570,6 +1633,18 @@ class Event {
1570
1633
  if (typeof this.message !== 'undefined') {
1571
1634
  toReturn['message'] = this.message;
1572
1635
  }
1636
+ if (typeof this.channel !== 'undefined') {
1637
+ toReturn['channel'] = this.channel;
1638
+ }
1639
+ if (typeof this.originatedAt !== 'undefined') {
1640
+ toReturn['originatedAt'] = this.originatedAt;
1641
+ }
1642
+ if (typeof this.type !== 'undefined') {
1643
+ toReturn['type'] = this.type;
1644
+ }
1645
+ if (typeof this.metadata !== 'undefined' && this.metadata !== null) {
1646
+ toReturn['metadata'] = 'toApiJson' in this.metadata ? this.metadata.toApiJson() : this.metadata;
1647
+ }
1573
1648
  return toReturn;
1574
1649
  }
1575
1650
  }
@@ -3430,6 +3505,84 @@ class GetMessageTemplateRequestHydrationOptions {
3430
3505
  return toReturn;
3431
3506
  }
3432
3507
  }
3508
+ class InjectMessageRequest {
3509
+ messageId;
3510
+ body;
3511
+ channel;
3512
+ type;
3513
+ location;
3514
+ metadata;
3515
+ media;
3516
+ namespace;
3517
+ sourceName;
3518
+ created;
3519
+ static fromProto(proto) {
3520
+ let m = new InjectMessageRequest();
3521
+ m = Object.assign(m, proto);
3522
+ if (proto.channel) {
3523
+ m.channel = enumStringToValue(ConversationChannel, proto.channel);
3524
+ }
3525
+ if (proto.type) {
3526
+ m.type = enumStringToValue(MessageType, proto.type);
3527
+ }
3528
+ if (proto.location) {
3529
+ m.location = enumStringToValue(PlatformLocation, proto.location);
3530
+ }
3531
+ if (proto.metadata) {
3532
+ m.metadata = Object.keys(proto.metadata).reduce((obj, k) => { obj[k] = proto.metadata[k]; return obj; }, {});
3533
+ }
3534
+ if (proto.media) {
3535
+ m.media = proto.media.map(Media.fromProto);
3536
+ }
3537
+ if (proto.namespace) {
3538
+ m.namespace = NamespaceDetail.fromProto(proto.namespace);
3539
+ }
3540
+ if (proto.created) {
3541
+ m.created = new Date(proto.created);
3542
+ }
3543
+ return m;
3544
+ }
3545
+ constructor(kwargs) {
3546
+ if (!kwargs) {
3547
+ return;
3548
+ }
3549
+ Object.assign(this, kwargs);
3550
+ }
3551
+ toApiJson() {
3552
+ const toReturn = {};
3553
+ if (typeof this.messageId !== 'undefined') {
3554
+ toReturn['messageId'] = this.messageId;
3555
+ }
3556
+ if (typeof this.body !== 'undefined') {
3557
+ toReturn['body'] = this.body;
3558
+ }
3559
+ if (typeof this.channel !== 'undefined') {
3560
+ toReturn['channel'] = this.channel;
3561
+ }
3562
+ if (typeof this.type !== 'undefined') {
3563
+ toReturn['type'] = this.type;
3564
+ }
3565
+ if (typeof this.location !== 'undefined') {
3566
+ toReturn['location'] = this.location;
3567
+ }
3568
+ if (typeof this.metadata !== 'undefined' && this.metadata !== null) {
3569
+ toReturn['metadata'] = 'toApiJson' in this.metadata ? this.metadata.toApiJson() : this.metadata;
3570
+ }
3571
+ if (typeof this.media !== 'undefined' && this.media !== null) {
3572
+ toReturn['media'] = 'toApiJson' in this.media ? this.media.toApiJson() : this.media;
3573
+ }
3574
+ if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
3575
+ toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
3576
+ }
3577
+ if (typeof this.sourceName !== 'undefined') {
3578
+ toReturn['sourceName'] = this.sourceName;
3579
+ }
3580
+ if (typeof this.created !== 'undefined' && this.created !== null) {
3581
+ toReturn['created'] = 'toApiJson' in this.created ? this.created.toApiJson() : this.created;
3582
+ }
3583
+ return toReturn;
3584
+ }
3585
+ }
3433
3586
  class ListMessageTemplateRequest {
3434
3587
  subjectParticipant;
3435
3588
  pagingOptions;
@@ -3787,6 +3940,7 @@ class Media {
3787
3940
  mediaLocationPath;
3788
3941
  mediaFileName;
3789
3942
  fileSize;
3943
+ mediaUrl;
3790
3944
  static fromProto(proto) {
3791
3945
  let m = new Media();
3792
3946
  m = Object.assign(m, proto);
@@ -3815,6 +3969,9 @@ class Media {
3815
3969
  if (typeof this.fileSize !== 'undefined') {
3816
3970
  toReturn['fileSize'] = this.fileSize;
3817
3971
  }
3972
+ if (typeof this.mediaUrl !== 'undefined') {
3973
+ toReturn['mediaUrl'] = this.mediaUrl;
3974
+ }
3818
3975
  return toReturn;
3819
3976
  }
3820
3977
  }
@@ -3849,6 +4006,31 @@ class Metadata {
3849
4006
  return toReturn;
3850
4007
  }
3851
4008
  }
4009
+ class InjectMessageRequestMetadataEntry {
4010
+ key;
4011
+ value;
4012
+ static fromProto(proto) {
4013
+ let m = new InjectMessageRequestMetadataEntry();
4014
+ m = Object.assign(m, proto);
4015
+ return m;
4016
+ }
4017
+ constructor(kwargs) {
4018
+ if (!kwargs) {
4019
+ return;
4020
+ }
4021
+ Object.assign(this, kwargs);
4022
+ }
4023
+ toApiJson() {
4024
+ const toReturn = {};
4025
+ if (typeof this.key !== 'undefined') {
4026
+ toReturn['key'] = this.key;
4027
+ }
4028
+ if (typeof this.value !== 'undefined') {
4029
+ toReturn['value'] = this.value;
4030
+ }
4031
+ return toReturn;
4032
+ }
4033
+ }
3852
4034
  class ReceiveMessageRequestMetadataEntry {
3853
4035
  key;
3854
4036
  value;
@@ -5074,6 +5256,10 @@ class ConversationApiService {
5074
5256
  return this.http.post(this._host + "/conversation.v1.ConversationService/GetMultiEvents", request.toApiJson(), this.apiOptions())
5075
5257
  .pipe(map(resp => GetMultiEventsResponse.fromProto(resp)));
5076
5258
  }
5259
+ injectMessage(r) {
5260
+ const request = (r.toApiJson) ? r : new InjectMessageRequest(r);
5261
+ return this.http.post(this._host + "/conversation.v1.ConversationService/InjectMessage", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
5262
+ }
5077
5263
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ConversationApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
5078
5264
  static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ConversationApiService, providedIn: 'root' });
5079
5265
  }
@@ -5170,5 +5356,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
5170
5356
  * Generated bundle index. Do not edit.
5171
5357
  */
5172
5358
 
5173
- export { AIConfiguration, AISystemMessage, AISystemMessageApiService, Access, AddConversationToConversationViewRequest, AddMultiParticipantsRequest, AddMultiParticipantsResponse, Address, CapturedLead, ChannelAvailability, ChannelStatus, Configuration, Conversation, ConversationApiService, ConversationChannel, ConversationKey, ConversationMessageCount, CreateConversationRequest, CreateConversationResponse, CreateMessageTemplateRequest, CreateMessageTemplateResponse, CreateMultiMessagesRequest, CreateWidgetConversationRequest, CreateWidgetConversationResponse, CreateWidgetRequest, CreateWidgetResponse, DataSources, DeleteConversationRequest, DeleteMessageRequest, DeleteMessageTemplateRequest, DeleteWidgetRequest, EmailApiService, EvaluateResponseRequest, EvaluationSentiment, Event, FieldMask, GetAISystemMessageRequest, GetAISystemMessageResponse, GetAvailableChannelsForConversationRequest, GetAvailableChannelsForConversationResponse, GetConfigurationRequest, GetConfigurationResponse, GetConversationByKeyRequest, GetConversationByKeyResponse, GetConversationSummaryRequest, GetConversationSummaryResponse, GetConversationViewsRequest, GetConversationViewsResponse, GetMessageOptions, GetMessageRequest, GetMessageTemplateRequest, GetMessageTemplateRequestHydrationOptions, GetMessageTemplateRequestHydrationOptionsHydrationEntity, GetMessageTemplateRequestHydrationOptionsHydrationEntityEntityType, GetMessageTemplateResponse, GetMessageTemplateResponseHydrationInformation, GetMultiConfigurationRequest, GetMultiConfigurationResponse, GetMultiConversationDetailsRequest, GetMultiConversationDetailsResponse, GetMultiConversationDetailsResponseDetailedConversation, GetMultiConversationMessageCountRequest, GetMultiConversationMessageCountResponse, GetMultiConversationMessageCountResponseCountsEntry, GetMultiEventsRequest, GetMultiEventsResponse, GetMultiMessagesRequest, GetMultiMessagesResponse, GetMultiParticipantsRequest, GetMultiParticipantsResponse, GetMultiWidgetMessagesRequest, GetMultiWidgetMessagesResponse, GetOwnerEmailRequest, GetOwnerEmailResponse, GetParticipantsByKeyRequest, GetParticipantsByKeyResponse, GetWidgetConfigRequest, GetWidgetConfigResponse, GetWidgetConversationResponse, GetWidgetRequest, GetWidgetResponse, GlobalParticipantType, InboxApiService, KeyValuePair, LastSeenByParticipant, LatestMessageSentTimeBySubjectParticipant, ListAISystemMessagesRequest, ListAISystemMessagesResponse, ListMessageTemplateRequest, ListMessageTemplateResponse, ListMessagesRequest, ListMessagesRequestListMessagesFilters, ListMessagesResponse, ListWidgetsRequest, ListWidgetsRequestListWidgetsFilters, ListWidgetsResponse, LookupConversationsRequest, LookupConversationsRequestLookupConversationsFilters, LookupConversationsResponse, LookupConversationsResponseConversations, Media, Message, MessageStatus, MessageTemplate, MessageType, Metadata, MetadataDataEntry, MetadataIdentifier, NamespaceDetail, NewInboxLeadCapturedRequest, NewInboxLeadCapturedResponse, PagedRequestOptions, PagedResponseMetadata, Participant, ParticipantKey, ParticipantMessageStatus, ParticipantType, PlatformLocation, ProductFeature, ReceiveMessageRequest, ReceiveMessageRequestMetadataEntry, RemoveConversationFromConversationViewRequest, SearchConversationsRequest, SearchConversationsResponse, SearchConversationsResponseDetailedConversation, SendMessageRequest, SendMessageResponse, SendStatus, SendWidgetMessageRequest, SendWidgetMessageResponse, SetLastSeenRequest, SetLastSeenRequestStatus, SetLastSeenResponse, SortDirection, Status, SubjectParticipant, SubjectParticipantKey, UpdateConversationRequest, UpdateConversationResponse, UpdateMessageStatusRequest, UpdateMessageTemplateRequest, UpdateMessageTemplateResponse, UpdateWidgetRequest, UpdateWidgetResponse, UpsertAISystemMessageRequest, UpsertConfigurationRequest, UpsertConfigurationResponse, UpsertProductFeatureRequest, UpsertProductFeatureResponse, View, ViewType, Widget, WidgetPosition };
5359
+ export { AIConfiguration, AISystemMessage, AISystemMessageApiService, Access, AddConversationToConversationViewRequest, AddMultiParticipantsRequest, AddMultiParticipantsResponse, Address, CapturedLead, ChannelAvailability, ChannelStatus, Configuration, ConfigurationAIConfiguration, Conversation, ConversationApiService, ConversationChannel, ConversationKey, ConversationMessageCount, CreateConversationRequest, CreateConversationResponse, CreateMessageTemplateRequest, CreateMessageTemplateResponse, CreateMultiMessagesRequest, CreateWidgetConversationRequest, CreateWidgetConversationResponse, CreateWidgetRequest, CreateWidgetResponse, DataSources, DeleteConversationRequest, DeleteMessageRequest, DeleteMessageTemplateRequest, DeleteWidgetRequest, EmailApiService, EvaluateResponseRequest, EvaluationSentiment, Event, EventType, FieldMask, GetAISystemMessageRequest, GetAISystemMessageResponse, GetAvailableChannelsForConversationRequest, GetAvailableChannelsForConversationResponse, GetConfigurationRequest, GetConfigurationResponse, GetConversationByKeyRequest, GetConversationByKeyResponse, GetConversationSummaryRequest, GetConversationSummaryResponse, GetConversationViewsRequest, GetConversationViewsResponse, GetMessageOptions, GetMessageRequest, GetMessageTemplateRequest, GetMessageTemplateRequestHydrationOptions, GetMessageTemplateRequestHydrationOptionsHydrationEntity, GetMessageTemplateRequestHydrationOptionsHydrationEntityEntityType, GetMessageTemplateResponse, GetMessageTemplateResponseHydrationInformation, GetMultiConfigurationRequest, GetMultiConfigurationResponse, GetMultiConversationDetailsRequest, GetMultiConversationDetailsResponse, GetMultiConversationDetailsResponseDetailedConversation, GetMultiConversationMessageCountRequest, GetMultiConversationMessageCountResponse, GetMultiConversationMessageCountResponseCountsEntry, GetMultiEventsRequest, GetMultiEventsResponse, GetMultiMessagesRequest, GetMultiMessagesResponse, GetMultiParticipantsRequest, GetMultiParticipantsResponse, GetMultiWidgetMessagesRequest, GetMultiWidgetMessagesResponse, GetOwnerEmailRequest, GetOwnerEmailResponse, GetParticipantsByKeyRequest, GetParticipantsByKeyResponse, GetWidgetConfigRequest, GetWidgetConfigResponse, GetWidgetConversationResponse, GetWidgetRequest, GetWidgetResponse, GlobalParticipantType, InboxApiService, InjectMessageRequest, InjectMessageRequestMetadataEntry, KeyValuePair, LastSeenByParticipant, LatestMessageSentTimeBySubjectParticipant, ListAISystemMessagesRequest, ListAISystemMessagesResponse, ListMessageTemplateRequest, ListMessageTemplateResponse, ListMessagesRequest, ListMessagesRequestListMessagesFilters, ListMessagesResponse, ListWidgetsRequest, ListWidgetsRequestListWidgetsFilters, ListWidgetsResponse, LookupConversationsRequest, LookupConversationsRequestLookupConversationsFilters, LookupConversationsResponse, LookupConversationsResponseConversations, Media, Message, MessageStatus, MessageTemplate, MessageType, Metadata, MetadataDataEntry, MetadataIdentifier, NamespaceDetail, NewInboxLeadCapturedRequest, NewInboxLeadCapturedResponse, PagedRequestOptions, PagedResponseMetadata, Participant, ParticipantKey, ParticipantMessageStatus, ParticipantType, PlatformLocation, ProductFeature, ReceiveMessageRequest, ReceiveMessageRequestMetadataEntry, RemoveConversationFromConversationViewRequest, SearchConversationsRequest, SearchConversationsResponse, SearchConversationsResponseDetailedConversation, SendMessageRequest, SendMessageResponse, SendStatus, SendWidgetMessageRequest, SendWidgetMessageResponse, SetLastSeenRequest, SetLastSeenRequestStatus, SetLastSeenResponse, SortDirection, Status, SubjectParticipant, SubjectParticipantKey, UpdateConversationRequest, UpdateConversationResponse, UpdateMessageStatusRequest, UpdateMessageTemplateRequest, UpdateMessageTemplateResponse, UpdateWidgetRequest, UpdateWidgetResponse, UpsertAISystemMessageRequest, UpsertConfigurationRequest, UpsertConfigurationResponse, UpsertProductFeatureRequest, UpsertProductFeatureResponse, View, ViewType, Widget, WidgetPosition };
5174
5360
  //# sourceMappingURL=vendasta-conversation.mjs.map