@vendasta/conversation 0.75.0 → 0.77.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.
- package/esm2022/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2022/lib/_internal/interfaces/conversation.interface.mjs +1 -1
- package/esm2022/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2022/lib/_internal/objects/api.mjs +70 -10
- package/esm2022/lib/_internal/objects/conversation.mjs +29 -1
- package/esm2022/lib/_internal/objects/index.mjs +3 -3
- package/fesm2022/vendasta-conversation.mjs +97 -9
- package/fesm2022/vendasta-conversation.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +13 -4
- package/lib/_internal/interfaces/conversation.interface.d.ts +4 -0
- package/lib/_internal/interfaces/index.d.ts +2 -2
- package/lib/_internal/objects/api.d.ts +20 -8
- package/lib/_internal/objects/conversation.d.ts +7 -0
- package/lib/_internal/objects/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@ import { FieldMaskInterface } from './field-mask.interface';
|
|
|
6
6
|
import { MessageInterface } from './message.interface';
|
|
7
7
|
import { MessageTemplateInterface } from './message-template.interface';
|
|
8
8
|
import { ParticipantInterface, ParticipantKeyInterface } from './participant.interface';
|
|
9
|
-
import { SubjectParticipantInterface } from './common.interface';
|
|
9
|
+
import { SubjectParticipantInterface, NamespaceDetailInterface } from './common.interface';
|
|
10
10
|
import { ViewInterface } from './conversation-view.interface';
|
|
11
11
|
import * as e from '../enums';
|
|
12
12
|
export interface AddConversationToConversationViewRequestInterface {
|
|
@@ -94,6 +94,7 @@ export interface CreateWidgetRequestInterface {
|
|
|
94
94
|
additionalPromptInstructions?: string;
|
|
95
95
|
assistantName?: string;
|
|
96
96
|
assistantAvatarUrl?: string;
|
|
97
|
+
position?: e.WidgetPosition;
|
|
97
98
|
}
|
|
98
99
|
export interface CreateWidgetResponseInterface {
|
|
99
100
|
widget?: WidgetInterface;
|
|
@@ -114,16 +115,16 @@ export interface DeleteMessageTemplateRequestInterface {
|
|
|
114
115
|
export interface DeleteWidgetRequestInterface {
|
|
115
116
|
widgetId?: string;
|
|
116
117
|
}
|
|
117
|
-
export interface
|
|
118
|
+
export interface SearchConversationsResponseDetailedConversationInterface {
|
|
118
119
|
conversation?: ConversationInterface;
|
|
119
120
|
latestMessage?: MessageInterface;
|
|
120
121
|
participants?: ParticipantInterface[];
|
|
121
|
-
summary?: string;
|
|
122
122
|
}
|
|
123
|
-
export interface
|
|
123
|
+
export interface GetMultiConversationDetailsResponseDetailedConversationInterface {
|
|
124
124
|
conversation?: ConversationInterface;
|
|
125
125
|
latestMessage?: MessageInterface;
|
|
126
126
|
participants?: ParticipantInterface[];
|
|
127
|
+
summary?: string;
|
|
127
128
|
}
|
|
128
129
|
export interface EvaluateResponseRequestInterface {
|
|
129
130
|
messageId?: string;
|
|
@@ -255,6 +256,7 @@ export interface GetWidgetConfigResponseInterface {
|
|
|
255
256
|
widgetTopSpace?: number;
|
|
256
257
|
assistantName?: string;
|
|
257
258
|
assistantAvatarUrl?: string;
|
|
259
|
+
position?: e.WidgetPosition;
|
|
258
260
|
}
|
|
259
261
|
export interface GetWidgetConversationResponseInterface {
|
|
260
262
|
conversation?: ConversationInterface;
|
|
@@ -294,9 +296,14 @@ export interface ListMessagesResponseInterface {
|
|
|
294
296
|
messages?: MessageInterface[];
|
|
295
297
|
pagingMetadata?: PagedResponseMetadataInterface;
|
|
296
298
|
}
|
|
299
|
+
export interface ListWidgetsRequestListWidgetsFiltersInterface {
|
|
300
|
+
namespaces?: string[];
|
|
301
|
+
widgetTypes?: string[];
|
|
302
|
+
}
|
|
297
303
|
export interface ListWidgetsRequestInterface {
|
|
298
304
|
namespace?: string;
|
|
299
305
|
pagingOptions?: PagedRequestOptionsInterface;
|
|
306
|
+
options?: ListWidgetsRequestListWidgetsFiltersInterface;
|
|
300
307
|
}
|
|
301
308
|
export interface ListWidgetsResponseInterface {
|
|
302
309
|
widgets?: WidgetInterface[];
|
|
@@ -372,6 +379,7 @@ export interface ReceiveMessageRequestInterface {
|
|
|
372
379
|
[key: string]: string;
|
|
373
380
|
};
|
|
374
381
|
media?: string[];
|
|
382
|
+
namespace?: NamespaceDetailInterface;
|
|
375
383
|
}
|
|
376
384
|
export interface RemoveConversationFromConversationViewRequestInterface {
|
|
377
385
|
viewId?: string;
|
|
@@ -454,6 +462,7 @@ export interface UpdateWidgetRequestInterface {
|
|
|
454
462
|
additionalPromptInstructions?: string;
|
|
455
463
|
assistantName?: string;
|
|
456
464
|
assistantAvatarUrl?: string;
|
|
465
|
+
position?: e.WidgetPosition;
|
|
457
466
|
fieldMask?: FieldMaskInterface;
|
|
458
467
|
}
|
|
459
468
|
export interface UpdateWidgetResponseInterface {
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { SubjectParticipantInterface } from './common.interface';
|
|
2
2
|
import * as e from '../enums';
|
|
3
|
+
export interface AIConfigurationInterface {
|
|
4
|
+
aiResponseEnabled?: boolean;
|
|
5
|
+
}
|
|
3
6
|
export interface ConversationInterface {
|
|
4
7
|
conversationId?: string;
|
|
5
8
|
channel?: e.ConversationChannel;
|
|
@@ -16,6 +19,7 @@ export interface ConversationInterface {
|
|
|
16
19
|
subjectParticipantsKey?: string;
|
|
17
20
|
subjectParticipants?: SubjectParticipantInterface[];
|
|
18
21
|
isOpen?: boolean;
|
|
22
|
+
aiConfiguration?: AIConfigurationInterface;
|
|
19
23
|
}
|
|
20
24
|
export interface ConversationKeyInterface {
|
|
21
25
|
subjectParticipants?: SubjectParticipantInterface[];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { NamespaceDetailInterface, SubjectParticipantInterface, } from './common.interface';
|
|
2
|
-
export { ConversationInterface, ConversationKeyInterface, LastSeenByParticipantInterface, } from './conversation.interface';
|
|
2
|
+
export { AIConfigurationInterface, ConversationInterface, ConversationKeyInterface, LastSeenByParticipantInterface, } from './conversation.interface';
|
|
3
3
|
export { KeyValuePairInterface, MessageInterface, ParticipantMessageStatusInterface, SendStatusInterface, } from './message.interface';
|
|
4
4
|
export { AddressInterface, ParticipantInterface, ParticipantKeyInterface, } from './participant.interface';
|
|
5
5
|
export { AccessInterface, } from './annotations.interface';
|
|
@@ -10,4 +10,4 @@ export { FieldMaskInterface, } from './field-mask.interface';
|
|
|
10
10
|
export { MessageTemplateInterface, } from './message-template.interface';
|
|
11
11
|
export { AISystemMessageInterface, GetAISystemMessageRequestInterface, GetAISystemMessageResponseInterface, ListAISystemMessagesRequestInterface, ListAISystemMessagesResponseInterface, UpsertAISystemMessageRequestInterface, } from './aisystemmessage.interface';
|
|
12
12
|
export { EventInterface, } from './event.interface';
|
|
13
|
-
export { AddConversationToConversationViewRequestInterface, AddMultiParticipantsRequestInterface, AddMultiParticipantsResponseInterface, CapturedLeadInterface, ChannelAvailabilityInterface, ChannelStatusInterface, ConversationMessageCountInterface, LookupConversationsResponseConversationsInterface, GetMultiConversationMessageCountResponseCountsEntryInterface, CreateConversationRequestInterface, CreateConversationResponseInterface, CreateMessageTemplateRequestInterface, CreateMessageTemplateResponseInterface, CreateMultiMessagesRequestInterface, CreateWidgetConversationRequestInterface, CreateWidgetConversationResponseInterface, CreateWidgetRequestInterface, CreateWidgetResponseInterface, MetadataDataEntryInterface, DeleteConversationRequestInterface, DeleteMessageRequestInterface, DeleteMessageTemplateRequestInterface, DeleteWidgetRequestInterface,
|
|
13
|
+
export { AddConversationToConversationViewRequestInterface, AddMultiParticipantsRequestInterface, AddMultiParticipantsResponseInterface, CapturedLeadInterface, ChannelAvailabilityInterface, ChannelStatusInterface, ConversationMessageCountInterface, LookupConversationsResponseConversationsInterface, GetMultiConversationMessageCountResponseCountsEntryInterface, CreateConversationRequestInterface, CreateConversationResponseInterface, CreateMessageTemplateRequestInterface, CreateMessageTemplateResponseInterface, CreateMultiMessagesRequestInterface, CreateWidgetConversationRequestInterface, CreateWidgetConversationResponseInterface, CreateWidgetRequestInterface, CreateWidgetResponseInterface, MetadataDataEntryInterface, DeleteConversationRequestInterface, DeleteMessageRequestInterface, DeleteMessageTemplateRequestInterface, DeleteWidgetRequestInterface, SearchConversationsResponseDetailedConversationInterface, GetMultiConversationDetailsResponseDetailedConversationInterface, EvaluateResponseRequestInterface, GetAvailableChannelsForConversationRequestInterface, GetAvailableChannelsForConversationResponseInterface, GetConfigurationRequestInterface, GetConfigurationResponseInterface, GetConversationByKeyRequestInterface, GetConversationByKeyResponseInterface, GetConversationSummaryRequestInterface, GetConversationSummaryResponseInterface, GetConversationViewsRequestInterface, GetConversationViewsResponseInterface, GetMessageOptionsInterface, GetMessageRequestInterface, GetMessageTemplateRequestInterface, GetMessageTemplateResponseInterface, GetMultiConfigurationRequestInterface, GetMultiConfigurationResponseInterface, GetMultiConversationDetailsRequestInterface, GetMultiConversationDetailsResponseInterface, GetMultiConversationMessageCountRequestInterface, GetMultiConversationMessageCountResponseInterface, GetMultiEventsRequestInterface, GetMultiEventsResponseInterface, GetMultiMessagesRequestInterface, GetMultiMessagesResponseInterface, GetMultiParticipantsRequestInterface, GetMultiParticipantsResponseInterface, GetMultiWidgetMessagesRequestInterface, GetMultiWidgetMessagesResponseInterface, GetOwnerEmailRequestInterface, GetOwnerEmailResponseInterface, GetParticipantsByKeyRequestInterface, GetParticipantsByKeyResponseInterface, GetWidgetConfigRequestInterface, GetWidgetConfigResponseInterface, GetWidgetConversationResponseInterface, GetWidgetRequestInterface, GetWidgetResponseInterface, GetMessageTemplateRequestHydrationOptionsHydrationEntityInterface, GetMessageTemplateResponseHydrationInformationInterface, GetMessageTemplateRequestHydrationOptionsInterface, ListMessageTemplateRequestInterface, ListMessageTemplateResponseInterface, ListMessagesRequestListMessagesFiltersInterface, ListMessagesRequestInterface, ListMessagesResponseInterface, ListWidgetsRequestListWidgetsFiltersInterface, ListWidgetsRequestInterface, ListWidgetsResponseInterface, LookupConversationsRequestLookupConversationsFiltersInterface, LookupConversationsRequestInterface, LookupConversationsResponseInterface, MediaInterface, MetadataInterface, ReceiveMessageRequestMetadataEntryInterface, NewInboxLeadCapturedRequestInterface, NewInboxLeadCapturedResponseInterface, PagedRequestOptionsInterface, PagedResponseMetadataInterface, ReceiveMessageRequestInterface, RemoveConversationFromConversationViewRequestInterface, SearchConversationsRequestInterface, SearchConversationsResponseInterface, SendMessageRequestInterface, SendMessageResponseInterface, SendWidgetMessageRequestInterface, SendWidgetMessageResponseInterface, SetLastSeenRequestInterface, SetLastSeenResponseInterface, UpdateConversationRequestInterface, UpdateConversationResponseInterface, UpdateMessageStatusRequestInterface, UpdateMessageTemplateRequestInterface, UpdateMessageTemplateResponseInterface, UpdateWidgetRequestInterface, UpdateWidgetResponseInterface, UpsertConfigurationRequestInterface, UpsertConfigurationResponseInterface, UpsertProductFeatureRequestInterface, UpsertProductFeatureResponseInterface, } from './api.interface';
|
|
@@ -7,7 +7,7 @@ import { FieldMask } from './field-mask';
|
|
|
7
7
|
import { Message } from './message';
|
|
8
8
|
import { MessageTemplate } from './message-template';
|
|
9
9
|
import { Participant, ParticipantKey } from './participant';
|
|
10
|
-
import { SubjectParticipant } from './common';
|
|
10
|
+
import { SubjectParticipant, NamespaceDetail } from './common';
|
|
11
11
|
import { View } from './conversation-view';
|
|
12
12
|
import * as e from '../enums';
|
|
13
13
|
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
|
@@ -144,6 +144,7 @@ export declare class CreateWidgetRequest implements i.CreateWidgetRequestInterfa
|
|
|
144
144
|
additionalPromptInstructions: string;
|
|
145
145
|
assistantName: string;
|
|
146
146
|
assistantAvatarUrl: string;
|
|
147
|
+
position: e.WidgetPosition;
|
|
147
148
|
static fromProto(proto: any): CreateWidgetRequest;
|
|
148
149
|
constructor(kwargs?: i.CreateWidgetRequestInterface);
|
|
149
150
|
toApiJson(): object;
|
|
@@ -185,21 +186,21 @@ export declare class DeleteWidgetRequest implements i.DeleteWidgetRequestInterfa
|
|
|
185
186
|
constructor(kwargs?: i.DeleteWidgetRequestInterface);
|
|
186
187
|
toApiJson(): object;
|
|
187
188
|
}
|
|
188
|
-
export declare class
|
|
189
|
+
export declare class SearchConversationsResponseDetailedConversation implements i.SearchConversationsResponseDetailedConversationInterface {
|
|
189
190
|
conversation: Conversation;
|
|
190
191
|
latestMessage: Message;
|
|
191
192
|
participants: Participant[];
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
constructor(kwargs?: i.GetMultiConversationDetailsResponseDetailedConversationInterface);
|
|
193
|
+
static fromProto(proto: any): SearchConversationsResponseDetailedConversation;
|
|
194
|
+
constructor(kwargs?: i.SearchConversationsResponseDetailedConversationInterface);
|
|
195
195
|
toApiJson(): object;
|
|
196
196
|
}
|
|
197
|
-
export declare class
|
|
197
|
+
export declare class GetMultiConversationDetailsResponseDetailedConversation implements i.GetMultiConversationDetailsResponseDetailedConversationInterface {
|
|
198
198
|
conversation: Conversation;
|
|
199
199
|
latestMessage: Message;
|
|
200
200
|
participants: Participant[];
|
|
201
|
-
|
|
202
|
-
|
|
201
|
+
summary: string;
|
|
202
|
+
static fromProto(proto: any): GetMultiConversationDetailsResponseDetailedConversation;
|
|
203
|
+
constructor(kwargs?: i.GetMultiConversationDetailsResponseDetailedConversationInterface);
|
|
203
204
|
toApiJson(): object;
|
|
204
205
|
}
|
|
205
206
|
export declare class EvaluateResponseRequest implements i.EvaluateResponseRequestInterface {
|
|
@@ -434,6 +435,7 @@ export declare class GetWidgetConfigResponse implements i.GetWidgetConfigRespons
|
|
|
434
435
|
widgetTopSpace: number;
|
|
435
436
|
assistantName: string;
|
|
436
437
|
assistantAvatarUrl: string;
|
|
438
|
+
position: e.WidgetPosition;
|
|
437
439
|
static fromProto(proto: any): GetWidgetConfigResponse;
|
|
438
440
|
constructor(kwargs?: i.GetWidgetConfigResponseInterface);
|
|
439
441
|
toApiJson(): object;
|
|
@@ -509,9 +511,17 @@ export declare class ListMessagesResponse implements i.ListMessagesResponseInter
|
|
|
509
511
|
constructor(kwargs?: i.ListMessagesResponseInterface);
|
|
510
512
|
toApiJson(): object;
|
|
511
513
|
}
|
|
514
|
+
export declare class ListWidgetsRequestListWidgetsFilters implements i.ListWidgetsRequestListWidgetsFiltersInterface {
|
|
515
|
+
namespaces: string[];
|
|
516
|
+
widgetTypes: string[];
|
|
517
|
+
static fromProto(proto: any): ListWidgetsRequestListWidgetsFilters;
|
|
518
|
+
constructor(kwargs?: i.ListWidgetsRequestListWidgetsFiltersInterface);
|
|
519
|
+
toApiJson(): object;
|
|
520
|
+
}
|
|
512
521
|
export declare class ListWidgetsRequest implements i.ListWidgetsRequestInterface {
|
|
513
522
|
namespace: string;
|
|
514
523
|
pagingOptions: PagedRequestOptions;
|
|
524
|
+
options: ListWidgetsRequestListWidgetsFilters;
|
|
515
525
|
static fromProto(proto: any): ListWidgetsRequest;
|
|
516
526
|
constructor(kwargs?: i.ListWidgetsRequestInterface);
|
|
517
527
|
toApiJson(): object;
|
|
@@ -623,6 +633,7 @@ export declare class ReceiveMessageRequest implements i.ReceiveMessageRequestInt
|
|
|
623
633
|
[key: string]: string;
|
|
624
634
|
};
|
|
625
635
|
media: string[];
|
|
636
|
+
namespace: NamespaceDetail;
|
|
626
637
|
static fromProto(proto: any): ReceiveMessageRequest;
|
|
627
638
|
constructor(kwargs?: i.ReceiveMessageRequestInterface);
|
|
628
639
|
toApiJson(): object;
|
|
@@ -750,6 +761,7 @@ export declare class UpdateWidgetRequest implements i.UpdateWidgetRequestInterfa
|
|
|
750
761
|
additionalPromptInstructions: string;
|
|
751
762
|
assistantName: string;
|
|
752
763
|
assistantAvatarUrl: string;
|
|
764
|
+
position: e.WidgetPosition;
|
|
753
765
|
fieldMask: FieldMask;
|
|
754
766
|
static fromProto(proto: any): UpdateWidgetRequest;
|
|
755
767
|
constructor(kwargs?: i.UpdateWidgetRequestInterface);
|
|
@@ -2,6 +2,12 @@ import * as i from '../interfaces';
|
|
|
2
2
|
import { SubjectParticipant } from './common';
|
|
3
3
|
import * as e from '../enums';
|
|
4
4
|
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
|
5
|
+
export declare class AIConfiguration implements i.AIConfigurationInterface {
|
|
6
|
+
aiResponseEnabled: boolean;
|
|
7
|
+
static fromProto(proto: any): AIConfiguration;
|
|
8
|
+
constructor(kwargs?: i.AIConfigurationInterface);
|
|
9
|
+
toApiJson(): object;
|
|
10
|
+
}
|
|
5
11
|
export declare class Conversation implements i.ConversationInterface {
|
|
6
12
|
conversationId: string;
|
|
7
13
|
channel: e.ConversationChannel;
|
|
@@ -18,6 +24,7 @@ export declare class Conversation implements i.ConversationInterface {
|
|
|
18
24
|
subjectParticipantsKey: string;
|
|
19
25
|
subjectParticipants: SubjectParticipant[];
|
|
20
26
|
isOpen: boolean;
|
|
27
|
+
aiConfiguration: AIConfiguration;
|
|
21
28
|
static fromProto(proto: any): Conversation;
|
|
22
29
|
constructor(kwargs?: i.ConversationInterface);
|
|
23
30
|
toApiJson(): object;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { NamespaceDetail, SubjectParticipant, } from './common';
|
|
2
|
-
export { Conversation, ConversationKey, LastSeenByParticipant, } from './conversation';
|
|
2
|
+
export { AIConfiguration, Conversation, ConversationKey, LastSeenByParticipant, } from './conversation';
|
|
3
3
|
export { KeyValuePair, Message, ParticipantMessageStatus, SendStatus, } from './message';
|
|
4
4
|
export { Address, Participant, ParticipantKey, } from './participant';
|
|
5
5
|
export { Access, } from './annotations';
|
|
@@ -10,4 +10,4 @@ export { FieldMask, } from './field-mask';
|
|
|
10
10
|
export { MessageTemplate, } from './message-template';
|
|
11
11
|
export { AISystemMessage, GetAISystemMessageRequest, GetAISystemMessageResponse, ListAISystemMessagesRequest, ListAISystemMessagesResponse, UpsertAISystemMessageRequest, } from './aisystemmessage';
|
|
12
12
|
export { Event, } from './event';
|
|
13
|
-
export { AddConversationToConversationViewRequest, AddMultiParticipantsRequest, AddMultiParticipantsResponse, CapturedLead, ChannelAvailability, ChannelStatus, ConversationMessageCount, LookupConversationsResponseConversations, GetMultiConversationMessageCountResponseCountsEntry, CreateConversationRequest, CreateConversationResponse, CreateMessageTemplateRequest, CreateMessageTemplateResponse, CreateMultiMessagesRequest, CreateWidgetConversationRequest, CreateWidgetConversationResponse, CreateWidgetRequest, CreateWidgetResponse, MetadataDataEntry, DeleteConversationRequest, DeleteMessageRequest, DeleteMessageTemplateRequest, DeleteWidgetRequest,
|
|
13
|
+
export { AddConversationToConversationViewRequest, AddMultiParticipantsRequest, AddMultiParticipantsResponse, CapturedLead, ChannelAvailability, ChannelStatus, ConversationMessageCount, LookupConversationsResponseConversations, GetMultiConversationMessageCountResponseCountsEntry, CreateConversationRequest, CreateConversationResponse, CreateMessageTemplateRequest, CreateMessageTemplateResponse, CreateMultiMessagesRequest, CreateWidgetConversationRequest, CreateWidgetConversationResponse, CreateWidgetRequest, CreateWidgetResponse, MetadataDataEntry, DeleteConversationRequest, DeleteMessageRequest, DeleteMessageTemplateRequest, DeleteWidgetRequest, SearchConversationsResponseDetailedConversation, GetMultiConversationDetailsResponseDetailedConversation, EvaluateResponseRequest, GetAvailableChannelsForConversationRequest, GetAvailableChannelsForConversationResponse, GetConfigurationRequest, GetConfigurationResponse, GetConversationByKeyRequest, GetConversationByKeyResponse, GetConversationSummaryRequest, GetConversationSummaryResponse, GetConversationViewsRequest, GetConversationViewsResponse, GetMessageOptions, GetMessageRequest, GetMessageTemplateRequest, GetMessageTemplateResponse, GetMultiConfigurationRequest, GetMultiConfigurationResponse, GetMultiConversationDetailsRequest, GetMultiConversationDetailsResponse, GetMultiConversationMessageCountRequest, GetMultiConversationMessageCountResponse, GetMultiEventsRequest, GetMultiEventsResponse, GetMultiMessagesRequest, GetMultiMessagesResponse, GetMultiParticipantsRequest, GetMultiParticipantsResponse, GetMultiWidgetMessagesRequest, GetMultiWidgetMessagesResponse, GetOwnerEmailRequest, GetOwnerEmailResponse, GetParticipantsByKeyRequest, GetParticipantsByKeyResponse, GetWidgetConfigRequest, GetWidgetConfigResponse, GetWidgetConversationResponse, GetWidgetRequest, GetWidgetResponse, GetMessageTemplateRequestHydrationOptionsHydrationEntity, GetMessageTemplateResponseHydrationInformation, GetMessageTemplateRequestHydrationOptions, ListMessageTemplateRequest, ListMessageTemplateResponse, ListMessagesRequestListMessagesFilters, ListMessagesRequest, ListMessagesResponse, ListWidgetsRequestListWidgetsFilters, ListWidgetsRequest, ListWidgetsResponse, LookupConversationsRequestLookupConversationsFilters, LookupConversationsRequest, LookupConversationsResponse, Media, Metadata, ReceiveMessageRequestMetadataEntry, NewInboxLeadCapturedRequest, NewInboxLeadCapturedResponse, PagedRequestOptions, PagedResponseMetadata, ReceiveMessageRequest, RemoveConversationFromConversationViewRequest, SearchConversationsRequest, SearchConversationsResponse, SendMessageRequest, SendMessageResponse, SendWidgetMessageRequest, SendWidgetMessageResponse, SetLastSeenRequest, SetLastSeenResponse, UpdateConversationRequest, UpdateConversationResponse, UpdateMessageStatusRequest, UpdateMessageTemplateRequest, UpdateMessageTemplateResponse, UpdateWidgetRequest, UpdateWidgetResponse, UpsertConfigurationRequest, UpsertConfigurationResponse, UpsertProductFeatureRequest, UpsertProductFeatureResponse, } from './api';
|