@vendasta/conversation 0.122.0 → 0.124.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/conversation.api.service.mjs +22 -2
- package/esm2022/lib/_internal/enums/api.enum.mjs +8 -1
- package/esm2022/lib/_internal/enums/index.mjs +3 -2
- package/esm2022/lib/_internal/enums/message.enum.mjs +4 -1
- package/esm2022/lib/_internal/enums/ui-components.enum.mjs +14 -0
- package/esm2022/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2022/lib/_internal/interfaces/configuration.interface.mjs +1 -1
- package/esm2022/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2022/lib/_internal/interfaces/message.interface.mjs +1 -1
- package/esm2022/lib/_internal/interfaces/ui-components.interface.mjs +1 -1
- package/esm2022/lib/_internal/objects/ai-thought.mjs +1 -1
- package/esm2022/lib/_internal/objects/aisystemmessage.mjs +1 -1
- package/esm2022/lib/_internal/objects/annotations.mjs +1 -1
- package/esm2022/lib/_internal/objects/api.mjs +459 -67
- package/esm2022/lib/_internal/objects/common.mjs +1 -1
- package/esm2022/lib/_internal/objects/configuration.mjs +9 -1
- package/esm2022/lib/_internal/objects/conversation-export.mjs +1 -1
- package/esm2022/lib/_internal/objects/conversation-view.mjs +1 -1
- package/esm2022/lib/_internal/objects/conversation.mjs +1 -1
- package/esm2022/lib/_internal/objects/evaluation.mjs +1 -1
- package/esm2022/lib/_internal/objects/event.mjs +1 -1
- package/esm2022/lib/_internal/objects/field-mask.mjs +1 -1
- package/esm2022/lib/_internal/objects/index.mjs +3 -3
- package/esm2022/lib/_internal/objects/message-template.mjs +1 -1
- package/esm2022/lib/_internal/objects/message.mjs +23 -2
- package/esm2022/lib/_internal/objects/participant.mjs +1 -1
- package/esm2022/lib/_internal/objects/ui-components.mjs +163 -1
- package/esm2022/lib/_internal/objects/widget.mjs +1 -1
- package/fesm2022/vendasta-conversation.mjs +694 -68
- package/fesm2022/vendasta-conversation.mjs.map +1 -1
- package/lib/_internal/conversation.api.service.d.ts +6 -2
- package/lib/_internal/enums/api.enum.d.ts +7 -1
- package/lib/_internal/enums/index.d.ts +2 -1
- package/lib/_internal/enums/message.enum.d.ts +4 -1
- package/lib/_internal/enums/ui-components.enum.d.ts +6 -0
- package/lib/_internal/interfaces/api.interface.d.ts +74 -12
- package/lib/_internal/interfaces/configuration.interface.d.ts +2 -0
- package/lib/_internal/interfaces/index.d.ts +2 -2
- package/lib/_internal/interfaces/message.interface.d.ts +4 -1
- package/lib/_internal/interfaces/ui-components.interface.d.ts +27 -0
- package/lib/_internal/objects/ai-thought.d.ts +1 -1
- package/lib/_internal/objects/aisystemmessage.d.ts +1 -1
- package/lib/_internal/objects/annotations.d.ts +1 -1
- package/lib/_internal/objects/api.d.ts +123 -25
- package/lib/_internal/objects/common.d.ts +1 -1
- package/lib/_internal/objects/configuration.d.ts +3 -1
- package/lib/_internal/objects/conversation-export.d.ts +1 -1
- package/lib/_internal/objects/conversation-view.d.ts +1 -1
- package/lib/_internal/objects/conversation.d.ts +1 -1
- package/lib/_internal/objects/evaluation.d.ts +1 -1
- package/lib/_internal/objects/event.d.ts +1 -1
- package/lib/_internal/objects/field-mask.d.ts +1 -1
- package/lib/_internal/objects/index.d.ts +2 -2
- package/lib/_internal/objects/message-template.d.ts +1 -1
- package/lib/_internal/objects/message.d.ts +5 -2
- package/lib/_internal/objects/participant.d.ts +1 -1
- package/lib/_internal/objects/ui-components.d.ts +43 -1
- package/lib/_internal/objects/widget.d.ts +1 -1
- package/package.json +3 -3
|
@@ -73,6 +73,20 @@ var PlatformLocation;
|
|
|
73
73
|
PlatformLocation[PlatformLocation["PLATFORM_LOCATION_WHATSAPP_BUSINESS_APP"] = 14] = "PLATFORM_LOCATION_WHATSAPP_BUSINESS_APP";
|
|
74
74
|
})(PlatformLocation || (PlatformLocation = {}));
|
|
75
75
|
|
|
76
|
+
// *********************************
|
|
77
|
+
// Code generated by sdkgen
|
|
78
|
+
// DO NOT EDIT!.
|
|
79
|
+
//
|
|
80
|
+
// Enums.
|
|
81
|
+
// *********************************
|
|
82
|
+
var UIQuestionFormQuestionQuestionType;
|
|
83
|
+
(function (UIQuestionFormQuestionQuestionType) {
|
|
84
|
+
UIQuestionFormQuestionQuestionType[UIQuestionFormQuestionQuestionType["UNDEFINED"] = 0] = "UNDEFINED";
|
|
85
|
+
UIQuestionFormQuestionQuestionType[UIQuestionFormQuestionQuestionType["TEXT"] = 1] = "TEXT";
|
|
86
|
+
UIQuestionFormQuestionQuestionType[UIQuestionFormQuestionQuestionType["CHOICE"] = 2] = "CHOICE";
|
|
87
|
+
UIQuestionFormQuestionQuestionType[UIQuestionFormQuestionQuestionType["CONFIRM"] = 3] = "CONFIRM";
|
|
88
|
+
})(UIQuestionFormQuestionQuestionType || (UIQuestionFormQuestionQuestionType = {}));
|
|
89
|
+
|
|
76
90
|
// *********************************
|
|
77
91
|
// Code generated by sdkgen
|
|
78
92
|
// DO NOT EDIT!.
|
|
@@ -111,6 +125,9 @@ var UIComponentType;
|
|
|
111
125
|
(function (UIComponentType) {
|
|
112
126
|
UIComponentType[UIComponentType["UI_COMPONENT_TYPE_UNDEFINED"] = 0] = "UI_COMPONENT_TYPE_UNDEFINED";
|
|
113
127
|
UIComponentType[UIComponentType["UI_COMPONENT_TYPE_BUTTON"] = 1] = "UI_COMPONENT_TYPE_BUTTON";
|
|
128
|
+
UIComponentType[UIComponentType["UI_COMPONENT_TYPE_CHECKBOX_GROUP"] = 2] = "UI_COMPONENT_TYPE_CHECKBOX_GROUP";
|
|
129
|
+
UIComponentType[UIComponentType["UI_COMPONENT_TYPE_MARKDOWN_PLAN"] = 3] = "UI_COMPONENT_TYPE_MARKDOWN_PLAN";
|
|
130
|
+
UIComponentType[UIComponentType["UI_COMPONENT_TYPE_QUESTION_FORM"] = 4] = "UI_COMPONENT_TYPE_QUESTION_FORM";
|
|
114
131
|
})(UIComponentType || (UIComponentType = {}));
|
|
115
132
|
|
|
116
133
|
// *********************************
|
|
@@ -219,7 +236,14 @@ var AIMode;
|
|
|
219
236
|
AIMode[AIMode["AI_MODE_FAST"] = 1] = "AI_MODE_FAST";
|
|
220
237
|
AIMode[AIMode["AI_MODE_THINKING"] = 2] = "AI_MODE_THINKING";
|
|
221
238
|
AIMode[AIMode["AI_MODE_DEEP_RESEARCH"] = 3] = "AI_MODE_DEEP_RESEARCH";
|
|
239
|
+
AIMode[AIMode["AI_MODE_GENERATION"] = 4] = "AI_MODE_GENERATION";
|
|
222
240
|
})(AIMode || (AIMode = {}));
|
|
241
|
+
var CommunicationChannelType;
|
|
242
|
+
(function (CommunicationChannelType) {
|
|
243
|
+
CommunicationChannelType[CommunicationChannelType["COMMUNICATION_CHANNEL_TYPE_UNDEFINED"] = 0] = "COMMUNICATION_CHANNEL_TYPE_UNDEFINED";
|
|
244
|
+
CommunicationChannelType[CommunicationChannelType["COMMUNICATION_CHANNEL_TYPE_SMS"] = 1] = "COMMUNICATION_CHANNEL_TYPE_SMS";
|
|
245
|
+
CommunicationChannelType[CommunicationChannelType["COMMUNICATION_CHANNEL_TYPE_VOICE"] = 2] = "COMMUNICATION_CHANNEL_TYPE_VOICE";
|
|
246
|
+
})(CommunicationChannelType || (CommunicationChannelType = {}));
|
|
223
247
|
var GetMessageTemplateRequestHydrationOptionsHydrationEntityEntityType;
|
|
224
248
|
(function (GetMessageTemplateRequestHydrationOptionsHydrationEntityEntityType) {
|
|
225
249
|
GetMessageTemplateRequestHydrationOptionsHydrationEntityEntityType[GetMessageTemplateRequestHydrationOptionsHydrationEntityEntityType["ENTITY_TYPE_UNDEFINED"] = 0] = "ENTITY_TYPE_UNDEFINED";
|
|
@@ -832,6 +856,38 @@ function enumStringToValue$d(enumRef, value) {
|
|
|
832
856
|
}
|
|
833
857
|
return enumRef[value];
|
|
834
858
|
}
|
|
859
|
+
class UIQuestionFormQuestion {
|
|
860
|
+
type;
|
|
861
|
+
text;
|
|
862
|
+
options;
|
|
863
|
+
static fromProto(proto) {
|
|
864
|
+
let m = new UIQuestionFormQuestion();
|
|
865
|
+
m = Object.assign(m, proto);
|
|
866
|
+
if (proto.type) {
|
|
867
|
+
m.type = enumStringToValue$d(UIQuestionFormQuestionQuestionType, proto.type);
|
|
868
|
+
}
|
|
869
|
+
return m;
|
|
870
|
+
}
|
|
871
|
+
constructor(kwargs) {
|
|
872
|
+
if (!kwargs) {
|
|
873
|
+
return;
|
|
874
|
+
}
|
|
875
|
+
Object.assign(this, kwargs);
|
|
876
|
+
}
|
|
877
|
+
toApiJson() {
|
|
878
|
+
const toReturn = {};
|
|
879
|
+
if (typeof this.type !== 'undefined') {
|
|
880
|
+
toReturn['type'] = this.type;
|
|
881
|
+
}
|
|
882
|
+
if (typeof this.text !== 'undefined') {
|
|
883
|
+
toReturn['text'] = this.text;
|
|
884
|
+
}
|
|
885
|
+
if (typeof this.options !== 'undefined') {
|
|
886
|
+
toReturn['options'] = this.options;
|
|
887
|
+
}
|
|
888
|
+
return toReturn;
|
|
889
|
+
}
|
|
890
|
+
}
|
|
835
891
|
class UIButton {
|
|
836
892
|
label;
|
|
837
893
|
id;
|
|
@@ -872,6 +928,135 @@ class UIButton {
|
|
|
872
928
|
return toReturn;
|
|
873
929
|
}
|
|
874
930
|
}
|
|
931
|
+
class UICheckbox {
|
|
932
|
+
id;
|
|
933
|
+
labelText;
|
|
934
|
+
description;
|
|
935
|
+
labelTranslationKey;
|
|
936
|
+
static fromProto(proto) {
|
|
937
|
+
let m = new UICheckbox();
|
|
938
|
+
m = Object.assign(m, proto);
|
|
939
|
+
return m;
|
|
940
|
+
}
|
|
941
|
+
constructor(kwargs) {
|
|
942
|
+
if (!kwargs) {
|
|
943
|
+
return;
|
|
944
|
+
}
|
|
945
|
+
Object.assign(this, kwargs);
|
|
946
|
+
}
|
|
947
|
+
toApiJson() {
|
|
948
|
+
const toReturn = {};
|
|
949
|
+
if (typeof this.id !== 'undefined') {
|
|
950
|
+
toReturn['id'] = this.id;
|
|
951
|
+
}
|
|
952
|
+
if (typeof this.labelText !== 'undefined') {
|
|
953
|
+
toReturn['labelText'] = this.labelText;
|
|
954
|
+
}
|
|
955
|
+
if (typeof this.description !== 'undefined') {
|
|
956
|
+
toReturn['description'] = this.description;
|
|
957
|
+
}
|
|
958
|
+
if (typeof this.labelTranslationKey !== 'undefined') {
|
|
959
|
+
toReturn['labelTranslationKey'] = this.labelTranslationKey;
|
|
960
|
+
}
|
|
961
|
+
return toReturn;
|
|
962
|
+
}
|
|
963
|
+
}
|
|
964
|
+
class UICheckboxGroup {
|
|
965
|
+
id;
|
|
966
|
+
title;
|
|
967
|
+
description;
|
|
968
|
+
checkboxes;
|
|
969
|
+
submitLabel;
|
|
970
|
+
submittedAt;
|
|
971
|
+
selectedCheckboxIds;
|
|
972
|
+
static fromProto(proto) {
|
|
973
|
+
let m = new UICheckboxGroup();
|
|
974
|
+
m = Object.assign(m, proto);
|
|
975
|
+
if (proto.checkboxes) {
|
|
976
|
+
m.checkboxes = proto.checkboxes.map(UICheckbox.fromProto);
|
|
977
|
+
}
|
|
978
|
+
if (proto.submittedAt) {
|
|
979
|
+
m.submittedAt = new Date(proto.submittedAt);
|
|
980
|
+
}
|
|
981
|
+
return m;
|
|
982
|
+
}
|
|
983
|
+
constructor(kwargs) {
|
|
984
|
+
if (!kwargs) {
|
|
985
|
+
return;
|
|
986
|
+
}
|
|
987
|
+
Object.assign(this, kwargs);
|
|
988
|
+
}
|
|
989
|
+
toApiJson() {
|
|
990
|
+
const toReturn = {};
|
|
991
|
+
if (typeof this.id !== 'undefined') {
|
|
992
|
+
toReturn['id'] = this.id;
|
|
993
|
+
}
|
|
994
|
+
if (typeof this.title !== 'undefined') {
|
|
995
|
+
toReturn['title'] = this.title;
|
|
996
|
+
}
|
|
997
|
+
if (typeof this.description !== 'undefined') {
|
|
998
|
+
toReturn['description'] = this.description;
|
|
999
|
+
}
|
|
1000
|
+
if (typeof this.checkboxes !== 'undefined' && this.checkboxes !== null) {
|
|
1001
|
+
toReturn['checkboxes'] = 'toApiJson' in this.checkboxes ? this.checkboxes.toApiJson() : this.checkboxes;
|
|
1002
|
+
}
|
|
1003
|
+
if (typeof this.submitLabel !== 'undefined') {
|
|
1004
|
+
toReturn['submitLabel'] = this.submitLabel;
|
|
1005
|
+
}
|
|
1006
|
+
if (typeof this.submittedAt !== 'undefined' && this.submittedAt !== null) {
|
|
1007
|
+
toReturn['submittedAt'] = 'toApiJson' in this.submittedAt ? this.submittedAt.toApiJson() : this.submittedAt;
|
|
1008
|
+
}
|
|
1009
|
+
if (typeof this.selectedCheckboxIds !== 'undefined') {
|
|
1010
|
+
toReturn['selectedCheckboxIds'] = this.selectedCheckboxIds;
|
|
1011
|
+
}
|
|
1012
|
+
return toReturn;
|
|
1013
|
+
}
|
|
1014
|
+
}
|
|
1015
|
+
class UIMarkdownPlan {
|
|
1016
|
+
plan;
|
|
1017
|
+
static fromProto(proto) {
|
|
1018
|
+
let m = new UIMarkdownPlan();
|
|
1019
|
+
m = Object.assign(m, proto);
|
|
1020
|
+
return m;
|
|
1021
|
+
}
|
|
1022
|
+
constructor(kwargs) {
|
|
1023
|
+
if (!kwargs) {
|
|
1024
|
+
return;
|
|
1025
|
+
}
|
|
1026
|
+
Object.assign(this, kwargs);
|
|
1027
|
+
}
|
|
1028
|
+
toApiJson() {
|
|
1029
|
+
const toReturn = {};
|
|
1030
|
+
if (typeof this.plan !== 'undefined') {
|
|
1031
|
+
toReturn['plan'] = this.plan;
|
|
1032
|
+
}
|
|
1033
|
+
return toReturn;
|
|
1034
|
+
}
|
|
1035
|
+
}
|
|
1036
|
+
class UIQuestionForm {
|
|
1037
|
+
questions;
|
|
1038
|
+
static fromProto(proto) {
|
|
1039
|
+
let m = new UIQuestionForm();
|
|
1040
|
+
m = Object.assign(m, proto);
|
|
1041
|
+
if (proto.questions) {
|
|
1042
|
+
m.questions = proto.questions.map(UIQuestionFormQuestion.fromProto);
|
|
1043
|
+
}
|
|
1044
|
+
return m;
|
|
1045
|
+
}
|
|
1046
|
+
constructor(kwargs) {
|
|
1047
|
+
if (!kwargs) {
|
|
1048
|
+
return;
|
|
1049
|
+
}
|
|
1050
|
+
Object.assign(this, kwargs);
|
|
1051
|
+
}
|
|
1052
|
+
toApiJson() {
|
|
1053
|
+
const toReturn = {};
|
|
1054
|
+
if (typeof this.questions !== 'undefined' && this.questions !== null) {
|
|
1055
|
+
toReturn['questions'] = 'toApiJson' in this.questions ? this.questions.toApiJson() : this.questions;
|
|
1056
|
+
}
|
|
1057
|
+
return toReturn;
|
|
1058
|
+
}
|
|
1059
|
+
}
|
|
875
1060
|
|
|
876
1061
|
function enumStringToValue$c(enumRef, value) {
|
|
877
1062
|
if (typeof value === 'number') {
|
|
@@ -1133,6 +1318,9 @@ class SendStatus {
|
|
|
1133
1318
|
class UIComponent {
|
|
1134
1319
|
type;
|
|
1135
1320
|
button;
|
|
1321
|
+
checkboxGroup;
|
|
1322
|
+
markdownPlan;
|
|
1323
|
+
questionForm;
|
|
1136
1324
|
static fromProto(proto) {
|
|
1137
1325
|
let m = new UIComponent();
|
|
1138
1326
|
m = Object.assign(m, proto);
|
|
@@ -1142,6 +1330,15 @@ class UIComponent {
|
|
|
1142
1330
|
if (proto.button) {
|
|
1143
1331
|
m.button = UIButton.fromProto(proto.button);
|
|
1144
1332
|
}
|
|
1333
|
+
if (proto.checkboxGroup) {
|
|
1334
|
+
m.checkboxGroup = UICheckboxGroup.fromProto(proto.checkboxGroup);
|
|
1335
|
+
}
|
|
1336
|
+
if (proto.markdownPlan) {
|
|
1337
|
+
m.markdownPlan = UIMarkdownPlan.fromProto(proto.markdownPlan);
|
|
1338
|
+
}
|
|
1339
|
+
if (proto.questionForm) {
|
|
1340
|
+
m.questionForm = UIQuestionForm.fromProto(proto.questionForm);
|
|
1341
|
+
}
|
|
1145
1342
|
return m;
|
|
1146
1343
|
}
|
|
1147
1344
|
constructor(kwargs) {
|
|
@@ -1158,6 +1355,15 @@ class UIComponent {
|
|
|
1158
1355
|
if (typeof this.button !== 'undefined' && this.button !== null) {
|
|
1159
1356
|
toReturn['button'] = 'toApiJson' in this.button ? this.button.toApiJson() : this.button;
|
|
1160
1357
|
}
|
|
1358
|
+
if (typeof this.checkboxGroup !== 'undefined' && this.checkboxGroup !== null) {
|
|
1359
|
+
toReturn['checkboxGroup'] = 'toApiJson' in this.checkboxGroup ? this.checkboxGroup.toApiJson() : this.checkboxGroup;
|
|
1360
|
+
}
|
|
1361
|
+
if (typeof this.markdownPlan !== 'undefined' && this.markdownPlan !== null) {
|
|
1362
|
+
toReturn['markdownPlan'] = 'toApiJson' in this.markdownPlan ? this.markdownPlan.toApiJson() : this.markdownPlan;
|
|
1363
|
+
}
|
|
1364
|
+
if (typeof this.questionForm !== 'undefined' && this.questionForm !== null) {
|
|
1365
|
+
toReturn['questionForm'] = 'toApiJson' in this.questionForm ? this.questionForm.toApiJson() : this.questionForm;
|
|
1366
|
+
}
|
|
1161
1367
|
return toReturn;
|
|
1162
1368
|
}
|
|
1163
1369
|
}
|
|
@@ -1482,6 +1688,7 @@ class Configuration {
|
|
|
1482
1688
|
aiVoiceEnabled;
|
|
1483
1689
|
aiEmailEnabled;
|
|
1484
1690
|
aiPlatformEnabled;
|
|
1691
|
+
emailEnabled;
|
|
1485
1692
|
static fromProto(proto) {
|
|
1486
1693
|
let m = new Configuration();
|
|
1487
1694
|
m = Object.assign(m, proto);
|
|
@@ -1558,6 +1765,9 @@ class Configuration {
|
|
|
1558
1765
|
if (typeof this.aiPlatformEnabled !== 'undefined') {
|
|
1559
1766
|
toReturn['aiPlatformEnabled'] = this.aiPlatformEnabled;
|
|
1560
1767
|
}
|
|
1768
|
+
if (typeof this.emailEnabled !== 'undefined') {
|
|
1769
|
+
toReturn['emailEnabled'] = this.emailEnabled;
|
|
1770
|
+
}
|
|
1561
1771
|
return toReturn;
|
|
1562
1772
|
}
|
|
1563
1773
|
}
|
|
@@ -1576,6 +1786,7 @@ class ProductFeature {
|
|
|
1576
1786
|
aiInstagramProductActive;
|
|
1577
1787
|
aiWhatsappProductActive;
|
|
1578
1788
|
aiPlatformEnabled;
|
|
1789
|
+
emailEnabled;
|
|
1579
1790
|
static fromProto(proto) {
|
|
1580
1791
|
let m = new ProductFeature();
|
|
1581
1792
|
m = Object.assign(m, proto);
|
|
@@ -1631,6 +1842,9 @@ class ProductFeature {
|
|
|
1631
1842
|
if (typeof this.aiPlatformEnabled !== 'undefined') {
|
|
1632
1843
|
toReturn['aiPlatformEnabled'] = this.aiPlatformEnabled;
|
|
1633
1844
|
}
|
|
1845
|
+
if (typeof this.emailEnabled !== 'undefined') {
|
|
1846
|
+
toReturn['emailEnabled'] = this.emailEnabled;
|
|
1847
|
+
}
|
|
1634
1848
|
return toReturn;
|
|
1635
1849
|
}
|
|
1636
1850
|
}
|
|
@@ -2249,6 +2463,52 @@ class AddMultiParticipantsResponse {
|
|
|
2249
2463
|
return toReturn;
|
|
2250
2464
|
}
|
|
2251
2465
|
}
|
|
2466
|
+
class AssignConversationRequest {
|
|
2467
|
+
conversationId;
|
|
2468
|
+
assigneeUserIds;
|
|
2469
|
+
linkToCrmOwner;
|
|
2470
|
+
static fromProto(proto) {
|
|
2471
|
+
let m = new AssignConversationRequest();
|
|
2472
|
+
m = Object.assign(m, proto);
|
|
2473
|
+
return m;
|
|
2474
|
+
}
|
|
2475
|
+
constructor(kwargs) {
|
|
2476
|
+
if (!kwargs) {
|
|
2477
|
+
return;
|
|
2478
|
+
}
|
|
2479
|
+
Object.assign(this, kwargs);
|
|
2480
|
+
}
|
|
2481
|
+
toApiJson() {
|
|
2482
|
+
const toReturn = {};
|
|
2483
|
+
if (typeof this.conversationId !== 'undefined') {
|
|
2484
|
+
toReturn['conversationId'] = this.conversationId;
|
|
2485
|
+
}
|
|
2486
|
+
if (typeof this.assigneeUserIds !== 'undefined') {
|
|
2487
|
+
toReturn['assigneeUserIds'] = this.assigneeUserIds;
|
|
2488
|
+
}
|
|
2489
|
+
if (typeof this.linkToCrmOwner !== 'undefined') {
|
|
2490
|
+
toReturn['linkToCrmOwner'] = this.linkToCrmOwner;
|
|
2491
|
+
}
|
|
2492
|
+
return toReturn;
|
|
2493
|
+
}
|
|
2494
|
+
}
|
|
2495
|
+
class AssignConversationResponse {
|
|
2496
|
+
static fromProto(proto) {
|
|
2497
|
+
let m = new AssignConversationResponse();
|
|
2498
|
+
m = Object.assign(m, proto);
|
|
2499
|
+
return m;
|
|
2500
|
+
}
|
|
2501
|
+
constructor(kwargs) {
|
|
2502
|
+
if (!kwargs) {
|
|
2503
|
+
return;
|
|
2504
|
+
}
|
|
2505
|
+
Object.assign(this, kwargs);
|
|
2506
|
+
}
|
|
2507
|
+
toApiJson() {
|
|
2508
|
+
const toReturn = {};
|
|
2509
|
+
return toReturn;
|
|
2510
|
+
}
|
|
2511
|
+
}
|
|
2252
2512
|
class CancelAIResponderRequest {
|
|
2253
2513
|
conversationId;
|
|
2254
2514
|
static fromProto(proto) {
|
|
@@ -2366,6 +2626,34 @@ class ChannelStatus {
|
|
|
2366
2626
|
return toReturn;
|
|
2367
2627
|
}
|
|
2368
2628
|
}
|
|
2629
|
+
class CommunicationInfo {
|
|
2630
|
+
channel;
|
|
2631
|
+
identifier;
|
|
2632
|
+
static fromProto(proto) {
|
|
2633
|
+
let m = new CommunicationInfo();
|
|
2634
|
+
m = Object.assign(m, proto);
|
|
2635
|
+
if (proto.channel) {
|
|
2636
|
+
m.channel = enumStringToValue(CommunicationChannelType, proto.channel);
|
|
2637
|
+
}
|
|
2638
|
+
return m;
|
|
2639
|
+
}
|
|
2640
|
+
constructor(kwargs) {
|
|
2641
|
+
if (!kwargs) {
|
|
2642
|
+
return;
|
|
2643
|
+
}
|
|
2644
|
+
Object.assign(this, kwargs);
|
|
2645
|
+
}
|
|
2646
|
+
toApiJson() {
|
|
2647
|
+
const toReturn = {};
|
|
2648
|
+
if (typeof this.channel !== 'undefined') {
|
|
2649
|
+
toReturn['channel'] = this.channel;
|
|
2650
|
+
}
|
|
2651
|
+
if (typeof this.identifier !== 'undefined') {
|
|
2652
|
+
toReturn['identifier'] = this.identifier;
|
|
2653
|
+
}
|
|
2654
|
+
return toReturn;
|
|
2655
|
+
}
|
|
2656
|
+
}
|
|
2369
2657
|
class ConversationMessageCount {
|
|
2370
2658
|
conversationId;
|
|
2371
2659
|
count;
|
|
@@ -2934,12 +3222,15 @@ class DeleteWidgetRequest {
|
|
|
2934
3222
|
return toReturn;
|
|
2935
3223
|
}
|
|
2936
3224
|
}
|
|
2937
|
-
class
|
|
3225
|
+
class GetMultiConversationDetailsResponseDetailedConversation {
|
|
2938
3226
|
conversation;
|
|
2939
3227
|
latestMessage;
|
|
2940
3228
|
participants;
|
|
3229
|
+
summary;
|
|
3230
|
+
event;
|
|
3231
|
+
message;
|
|
2941
3232
|
static fromProto(proto) {
|
|
2942
|
-
let m = new
|
|
3233
|
+
let m = new GetMultiConversationDetailsResponseDetailedConversation();
|
|
2943
3234
|
m = Object.assign(m, proto);
|
|
2944
3235
|
if (proto.conversation) {
|
|
2945
3236
|
m.conversation = Conversation.fromProto(proto.conversation);
|
|
@@ -2950,6 +3241,12 @@ class SearchConversationsResponseDetailedConversation {
|
|
|
2950
3241
|
if (proto.participants) {
|
|
2951
3242
|
m.participants = proto.participants.map(Participant.fromProto);
|
|
2952
3243
|
}
|
|
3244
|
+
if (proto.event) {
|
|
3245
|
+
m.event = Event.fromProto(proto.event);
|
|
3246
|
+
}
|
|
3247
|
+
if (proto.message) {
|
|
3248
|
+
m.message = Message.fromProto(proto.message);
|
|
3249
|
+
}
|
|
2953
3250
|
return m;
|
|
2954
3251
|
}
|
|
2955
3252
|
constructor(kwargs) {
|
|
@@ -2969,30 +3266,34 @@ class SearchConversationsResponseDetailedConversation {
|
|
|
2969
3266
|
if (typeof this.participants !== 'undefined' && this.participants !== null) {
|
|
2970
3267
|
toReturn['participants'] = 'toApiJson' in this.participants ? this.participants.toApiJson() : this.participants;
|
|
2971
3268
|
}
|
|
3269
|
+
if (typeof this.summary !== 'undefined') {
|
|
3270
|
+
toReturn['summary'] = this.summary;
|
|
3271
|
+
}
|
|
3272
|
+
if (typeof this.event !== 'undefined' && this.event !== null) {
|
|
3273
|
+
toReturn['event'] = 'toApiJson' in this.event ? this.event.toApiJson() : this.event;
|
|
3274
|
+
}
|
|
3275
|
+
if (typeof this.message !== 'undefined' && this.message !== null) {
|
|
3276
|
+
toReturn['message'] = 'toApiJson' in this.message ? this.message.toApiJson() : this.message;
|
|
3277
|
+
}
|
|
2972
3278
|
return toReturn;
|
|
2973
3279
|
}
|
|
2974
3280
|
}
|
|
2975
|
-
class
|
|
3281
|
+
class SearchConversationsResponseDetailedConversation {
|
|
2976
3282
|
conversation;
|
|
3283
|
+
latestMessage;
|
|
2977
3284
|
participants;
|
|
2978
|
-
summary;
|
|
2979
|
-
event;
|
|
2980
|
-
message;
|
|
2981
3285
|
static fromProto(proto) {
|
|
2982
|
-
let m = new
|
|
3286
|
+
let m = new SearchConversationsResponseDetailedConversation();
|
|
2983
3287
|
m = Object.assign(m, proto);
|
|
2984
3288
|
if (proto.conversation) {
|
|
2985
3289
|
m.conversation = Conversation.fromProto(proto.conversation);
|
|
2986
3290
|
}
|
|
3291
|
+
if (proto.latestMessage) {
|
|
3292
|
+
m.latestMessage = Message.fromProto(proto.latestMessage);
|
|
3293
|
+
}
|
|
2987
3294
|
if (proto.participants) {
|
|
2988
3295
|
m.participants = proto.participants.map(Participant.fromProto);
|
|
2989
3296
|
}
|
|
2990
|
-
if (proto.event) {
|
|
2991
|
-
m.event = Event.fromProto(proto.event);
|
|
2992
|
-
}
|
|
2993
|
-
if (proto.message) {
|
|
2994
|
-
m.message = Message.fromProto(proto.message);
|
|
2995
|
-
}
|
|
2996
3297
|
return m;
|
|
2997
3298
|
}
|
|
2998
3299
|
constructor(kwargs) {
|
|
@@ -3006,37 +3307,27 @@ class GetMultiConversationDetailsV2ResponseDetailedConversation {
|
|
|
3006
3307
|
if (typeof this.conversation !== 'undefined' && this.conversation !== null) {
|
|
3007
3308
|
toReturn['conversation'] = 'toApiJson' in this.conversation ? this.conversation.toApiJson() : this.conversation;
|
|
3008
3309
|
}
|
|
3310
|
+
if (typeof this.latestMessage !== 'undefined' && this.latestMessage !== null) {
|
|
3311
|
+
toReturn['latestMessage'] = 'toApiJson' in this.latestMessage ? this.latestMessage.toApiJson() : this.latestMessage;
|
|
3312
|
+
}
|
|
3009
3313
|
if (typeof this.participants !== 'undefined' && this.participants !== null) {
|
|
3010
3314
|
toReturn['participants'] = 'toApiJson' in this.participants ? this.participants.toApiJson() : this.participants;
|
|
3011
3315
|
}
|
|
3012
|
-
if (typeof this.summary !== 'undefined') {
|
|
3013
|
-
toReturn['summary'] = this.summary;
|
|
3014
|
-
}
|
|
3015
|
-
if (typeof this.event !== 'undefined' && this.event !== null) {
|
|
3016
|
-
toReturn['event'] = 'toApiJson' in this.event ? this.event.toApiJson() : this.event;
|
|
3017
|
-
}
|
|
3018
|
-
if (typeof this.message !== 'undefined' && this.message !== null) {
|
|
3019
|
-
toReturn['message'] = 'toApiJson' in this.message ? this.message.toApiJson() : this.message;
|
|
3020
|
-
}
|
|
3021
3316
|
return toReturn;
|
|
3022
3317
|
}
|
|
3023
3318
|
}
|
|
3024
|
-
class
|
|
3319
|
+
class GetMultiConversationDetailsV2ResponseDetailedConversation {
|
|
3025
3320
|
conversation;
|
|
3026
|
-
latestMessage;
|
|
3027
3321
|
participants;
|
|
3028
3322
|
summary;
|
|
3029
3323
|
event;
|
|
3030
3324
|
message;
|
|
3031
3325
|
static fromProto(proto) {
|
|
3032
|
-
let m = new
|
|
3326
|
+
let m = new GetMultiConversationDetailsV2ResponseDetailedConversation();
|
|
3033
3327
|
m = Object.assign(m, proto);
|
|
3034
3328
|
if (proto.conversation) {
|
|
3035
3329
|
m.conversation = Conversation.fromProto(proto.conversation);
|
|
3036
3330
|
}
|
|
3037
|
-
if (proto.latestMessage) {
|
|
3038
|
-
m.latestMessage = Message.fromProto(proto.latestMessage);
|
|
3039
|
-
}
|
|
3040
3331
|
if (proto.participants) {
|
|
3041
3332
|
m.participants = proto.participants.map(Participant.fromProto);
|
|
3042
3333
|
}
|
|
@@ -3059,9 +3350,6 @@ class GetMultiConversationDetailsResponseDetailedConversation {
|
|
|
3059
3350
|
if (typeof this.conversation !== 'undefined' && this.conversation !== null) {
|
|
3060
3351
|
toReturn['conversation'] = 'toApiJson' in this.conversation ? this.conversation.toApiJson() : this.conversation;
|
|
3061
3352
|
}
|
|
3062
|
-
if (typeof this.latestMessage !== 'undefined' && this.latestMessage !== null) {
|
|
3063
|
-
toReturn['latestMessage'] = 'toApiJson' in this.latestMessage ? this.latestMessage.toApiJson() : this.latestMessage;
|
|
3064
|
-
}
|
|
3065
3353
|
if (typeof this.participants !== 'undefined' && this.participants !== null) {
|
|
3066
3354
|
toReturn['participants'] = 'toApiJson' in this.participants ? this.participants.toApiJson() : this.participants;
|
|
3067
3355
|
}
|
|
@@ -3166,18 +3454,26 @@ class ExportConversationsResponse {
|
|
|
3166
3454
|
return toReturn;
|
|
3167
3455
|
}
|
|
3168
3456
|
}
|
|
3169
|
-
class
|
|
3170
|
-
platformLocation;
|
|
3457
|
+
class ExportConversationsRequestFilterOptions {
|
|
3171
3458
|
subjectParticipant;
|
|
3459
|
+
startTime;
|
|
3460
|
+
endTime;
|
|
3461
|
+
platformLocation;
|
|
3172
3462
|
static fromProto(proto) {
|
|
3173
|
-
let m = new
|
|
3463
|
+
let m = new ExportConversationsRequestFilterOptions();
|
|
3174
3464
|
m = Object.assign(m, proto);
|
|
3175
|
-
if (proto.platformLocation) {
|
|
3176
|
-
m.platformLocation = enumStringToValue(PlatformLocation, proto.platformLocation);
|
|
3177
|
-
}
|
|
3178
3465
|
if (proto.subjectParticipant) {
|
|
3179
3466
|
m.subjectParticipant = SubjectParticipant.fromProto(proto.subjectParticipant);
|
|
3180
3467
|
}
|
|
3468
|
+
if (proto.startTime) {
|
|
3469
|
+
m.startTime = new Date(proto.startTime);
|
|
3470
|
+
}
|
|
3471
|
+
if (proto.endTime) {
|
|
3472
|
+
m.endTime = new Date(proto.endTime);
|
|
3473
|
+
}
|
|
3474
|
+
if (proto.platformLocation) {
|
|
3475
|
+
m.platformLocation = enumStringToValue(PlatformLocation, proto.platformLocation);
|
|
3476
|
+
}
|
|
3181
3477
|
return m;
|
|
3182
3478
|
}
|
|
3183
3479
|
constructor(kwargs) {
|
|
@@ -3188,35 +3484,33 @@ class ListConversationExportsRequestFilterOptions {
|
|
|
3188
3484
|
}
|
|
3189
3485
|
toApiJson() {
|
|
3190
3486
|
const toReturn = {};
|
|
3191
|
-
if (typeof this.platformLocation !== 'undefined') {
|
|
3192
|
-
toReturn['platformLocation'] = this.platformLocation;
|
|
3193
|
-
}
|
|
3194
3487
|
if (typeof this.subjectParticipant !== 'undefined' && this.subjectParticipant !== null) {
|
|
3195
3488
|
toReturn['subjectParticipant'] = 'toApiJson' in this.subjectParticipant ? this.subjectParticipant.toApiJson() : this.subjectParticipant;
|
|
3196
3489
|
}
|
|
3490
|
+
if (typeof this.startTime !== 'undefined' && this.startTime !== null) {
|
|
3491
|
+
toReturn['startTime'] = 'toApiJson' in this.startTime ? this.startTime.toApiJson() : this.startTime;
|
|
3492
|
+
}
|
|
3493
|
+
if (typeof this.endTime !== 'undefined' && this.endTime !== null) {
|
|
3494
|
+
toReturn['endTime'] = 'toApiJson' in this.endTime ? this.endTime.toApiJson() : this.endTime;
|
|
3495
|
+
}
|
|
3496
|
+
if (typeof this.platformLocation !== 'undefined') {
|
|
3497
|
+
toReturn['platformLocation'] = this.platformLocation;
|
|
3498
|
+
}
|
|
3197
3499
|
return toReturn;
|
|
3198
3500
|
}
|
|
3199
3501
|
}
|
|
3200
|
-
class
|
|
3201
|
-
subjectParticipant;
|
|
3202
|
-
startTime;
|
|
3203
|
-
endTime;
|
|
3502
|
+
class ListConversationExportsRequestFilterOptions {
|
|
3204
3503
|
platformLocation;
|
|
3504
|
+
subjectParticipant;
|
|
3205
3505
|
static fromProto(proto) {
|
|
3206
|
-
let m = new
|
|
3506
|
+
let m = new ListConversationExportsRequestFilterOptions();
|
|
3207
3507
|
m = Object.assign(m, proto);
|
|
3208
|
-
if (proto.subjectParticipant) {
|
|
3209
|
-
m.subjectParticipant = SubjectParticipant.fromProto(proto.subjectParticipant);
|
|
3210
|
-
}
|
|
3211
|
-
if (proto.startTime) {
|
|
3212
|
-
m.startTime = new Date(proto.startTime);
|
|
3213
|
-
}
|
|
3214
|
-
if (proto.endTime) {
|
|
3215
|
-
m.endTime = new Date(proto.endTime);
|
|
3216
|
-
}
|
|
3217
3508
|
if (proto.platformLocation) {
|
|
3218
3509
|
m.platformLocation = enumStringToValue(PlatformLocation, proto.platformLocation);
|
|
3219
3510
|
}
|
|
3511
|
+
if (proto.subjectParticipant) {
|
|
3512
|
+
m.subjectParticipant = SubjectParticipant.fromProto(proto.subjectParticipant);
|
|
3513
|
+
}
|
|
3220
3514
|
return m;
|
|
3221
3515
|
}
|
|
3222
3516
|
constructor(kwargs) {
|
|
@@ -3227,18 +3521,12 @@ class ExportConversationsRequestFilterOptions {
|
|
|
3227
3521
|
}
|
|
3228
3522
|
toApiJson() {
|
|
3229
3523
|
const toReturn = {};
|
|
3230
|
-
if (typeof this.subjectParticipant !== 'undefined' && this.subjectParticipant !== null) {
|
|
3231
|
-
toReturn['subjectParticipant'] = 'toApiJson' in this.subjectParticipant ? this.subjectParticipant.toApiJson() : this.subjectParticipant;
|
|
3232
|
-
}
|
|
3233
|
-
if (typeof this.startTime !== 'undefined' && this.startTime !== null) {
|
|
3234
|
-
toReturn['startTime'] = 'toApiJson' in this.startTime ? this.startTime.toApiJson() : this.startTime;
|
|
3235
|
-
}
|
|
3236
|
-
if (typeof this.endTime !== 'undefined' && this.endTime !== null) {
|
|
3237
|
-
toReturn['endTime'] = 'toApiJson' in this.endTime ? this.endTime.toApiJson() : this.endTime;
|
|
3238
|
-
}
|
|
3239
3524
|
if (typeof this.platformLocation !== 'undefined') {
|
|
3240
3525
|
toReturn['platformLocation'] = this.platformLocation;
|
|
3241
3526
|
}
|
|
3527
|
+
if (typeof this.subjectParticipant !== 'undefined' && this.subjectParticipant !== null) {
|
|
3528
|
+
toReturn['subjectParticipant'] = 'toApiJson' in this.subjectParticipant ? this.subjectParticipant.toApiJson() : this.subjectParticipant;
|
|
3529
|
+
}
|
|
3242
3530
|
return toReturn;
|
|
3243
3531
|
}
|
|
3244
3532
|
}
|
|
@@ -4452,6 +4740,44 @@ class GetMessageTemplateRequestHydrationOptions {
|
|
|
4452
4740
|
return toReturn;
|
|
4453
4741
|
}
|
|
4454
4742
|
}
|
|
4743
|
+
class ListConversationsResponseInboxConversation {
|
|
4744
|
+
conversation;
|
|
4745
|
+
latestMessage;
|
|
4746
|
+
participants;
|
|
4747
|
+
static fromProto(proto) {
|
|
4748
|
+
let m = new ListConversationsResponseInboxConversation();
|
|
4749
|
+
m = Object.assign(m, proto);
|
|
4750
|
+
if (proto.conversation) {
|
|
4751
|
+
m.conversation = Conversation.fromProto(proto.conversation);
|
|
4752
|
+
}
|
|
4753
|
+
if (proto.latestMessage) {
|
|
4754
|
+
m.latestMessage = Message.fromProto(proto.latestMessage);
|
|
4755
|
+
}
|
|
4756
|
+
if (proto.participants) {
|
|
4757
|
+
m.participants = proto.participants.map(Participant.fromProto);
|
|
4758
|
+
}
|
|
4759
|
+
return m;
|
|
4760
|
+
}
|
|
4761
|
+
constructor(kwargs) {
|
|
4762
|
+
if (!kwargs) {
|
|
4763
|
+
return;
|
|
4764
|
+
}
|
|
4765
|
+
Object.assign(this, kwargs);
|
|
4766
|
+
}
|
|
4767
|
+
toApiJson() {
|
|
4768
|
+
const toReturn = {};
|
|
4769
|
+
if (typeof this.conversation !== 'undefined' && this.conversation !== null) {
|
|
4770
|
+
toReturn['conversation'] = 'toApiJson' in this.conversation ? this.conversation.toApiJson() : this.conversation;
|
|
4771
|
+
}
|
|
4772
|
+
if (typeof this.latestMessage !== 'undefined' && this.latestMessage !== null) {
|
|
4773
|
+
toReturn['latestMessage'] = 'toApiJson' in this.latestMessage ? this.latestMessage.toApiJson() : this.latestMessage;
|
|
4774
|
+
}
|
|
4775
|
+
if (typeof this.participants !== 'undefined' && this.participants !== null) {
|
|
4776
|
+
toReturn['participants'] = 'toApiJson' in this.participants ? this.participants.toApiJson() : this.participants;
|
|
4777
|
+
}
|
|
4778
|
+
return toReturn;
|
|
4779
|
+
}
|
|
4780
|
+
}
|
|
4455
4781
|
class InjectMessageRequest {
|
|
4456
4782
|
messageId;
|
|
4457
4783
|
body;
|
|
@@ -4530,6 +4856,51 @@ class InjectMessageRequest {
|
|
|
4530
4856
|
return toReturn;
|
|
4531
4857
|
}
|
|
4532
4858
|
}
|
|
4859
|
+
class ListCommunicationChannelsInfoRequest {
|
|
4860
|
+
accountGroupId;
|
|
4861
|
+
static fromProto(proto) {
|
|
4862
|
+
let m = new ListCommunicationChannelsInfoRequest();
|
|
4863
|
+
m = Object.assign(m, proto);
|
|
4864
|
+
return m;
|
|
4865
|
+
}
|
|
4866
|
+
constructor(kwargs) {
|
|
4867
|
+
if (!kwargs) {
|
|
4868
|
+
return;
|
|
4869
|
+
}
|
|
4870
|
+
Object.assign(this, kwargs);
|
|
4871
|
+
}
|
|
4872
|
+
toApiJson() {
|
|
4873
|
+
const toReturn = {};
|
|
4874
|
+
if (typeof this.accountGroupId !== 'undefined') {
|
|
4875
|
+
toReturn['accountGroupId'] = this.accountGroupId;
|
|
4876
|
+
}
|
|
4877
|
+
return toReturn;
|
|
4878
|
+
}
|
|
4879
|
+
}
|
|
4880
|
+
class ListCommunicationChannelsInfoResponse {
|
|
4881
|
+
communicationInfo;
|
|
4882
|
+
static fromProto(proto) {
|
|
4883
|
+
let m = new ListCommunicationChannelsInfoResponse();
|
|
4884
|
+
m = Object.assign(m, proto);
|
|
4885
|
+
if (proto.communicationInfo) {
|
|
4886
|
+
m.communicationInfo = proto.communicationInfo.map(CommunicationInfo.fromProto);
|
|
4887
|
+
}
|
|
4888
|
+
return m;
|
|
4889
|
+
}
|
|
4890
|
+
constructor(kwargs) {
|
|
4891
|
+
if (!kwargs) {
|
|
4892
|
+
return;
|
|
4893
|
+
}
|
|
4894
|
+
Object.assign(this, kwargs);
|
|
4895
|
+
}
|
|
4896
|
+
toApiJson() {
|
|
4897
|
+
const toReturn = {};
|
|
4898
|
+
if (typeof this.communicationInfo !== 'undefined' && this.communicationInfo !== null) {
|
|
4899
|
+
toReturn['communicationInfo'] = 'toApiJson' in this.communicationInfo ? this.communicationInfo.toApiJson() : this.communicationInfo;
|
|
4900
|
+
}
|
|
4901
|
+
return toReturn;
|
|
4902
|
+
}
|
|
4903
|
+
}
|
|
4533
4904
|
class ListConversationExportsRequest {
|
|
4534
4905
|
filterOptions;
|
|
4535
4906
|
pagingOptions;
|
|
@@ -4592,6 +4963,124 @@ class ListConversationExportsResponse {
|
|
|
4592
4963
|
return toReturn;
|
|
4593
4964
|
}
|
|
4594
4965
|
}
|
|
4966
|
+
class ListConversationsFilters {
|
|
4967
|
+
channels;
|
|
4968
|
+
isOpen;
|
|
4969
|
+
unreadOnly;
|
|
4970
|
+
awaitingResponseOnly;
|
|
4971
|
+
isAnonymous;
|
|
4972
|
+
assigneeUserId;
|
|
4973
|
+
static fromProto(proto) {
|
|
4974
|
+
let m = new ListConversationsFilters();
|
|
4975
|
+
m = Object.assign(m, proto);
|
|
4976
|
+
if (proto.channels) {
|
|
4977
|
+
m.channels = proto.channels.map((v) => enumStringToValue(ConversationChannel, v));
|
|
4978
|
+
}
|
|
4979
|
+
return m;
|
|
4980
|
+
}
|
|
4981
|
+
constructor(kwargs) {
|
|
4982
|
+
if (!kwargs) {
|
|
4983
|
+
return;
|
|
4984
|
+
}
|
|
4985
|
+
Object.assign(this, kwargs);
|
|
4986
|
+
}
|
|
4987
|
+
toApiJson() {
|
|
4988
|
+
const toReturn = {};
|
|
4989
|
+
if (typeof this.channels !== 'undefined') {
|
|
4990
|
+
toReturn['channels'] = this.channels;
|
|
4991
|
+
}
|
|
4992
|
+
if (typeof this.isOpen !== 'undefined') {
|
|
4993
|
+
toReturn['isOpen'] = this.isOpen;
|
|
4994
|
+
}
|
|
4995
|
+
if (typeof this.unreadOnly !== 'undefined') {
|
|
4996
|
+
toReturn['unreadOnly'] = this.unreadOnly;
|
|
4997
|
+
}
|
|
4998
|
+
if (typeof this.awaitingResponseOnly !== 'undefined') {
|
|
4999
|
+
toReturn['awaitingResponseOnly'] = this.awaitingResponseOnly;
|
|
5000
|
+
}
|
|
5001
|
+
if (typeof this.isAnonymous !== 'undefined') {
|
|
5002
|
+
toReturn['isAnonymous'] = this.isAnonymous;
|
|
5003
|
+
}
|
|
5004
|
+
if (typeof this.assigneeUserId !== 'undefined') {
|
|
5005
|
+
toReturn['assigneeUserId'] = this.assigneeUserId;
|
|
5006
|
+
}
|
|
5007
|
+
return toReturn;
|
|
5008
|
+
}
|
|
5009
|
+
}
|
|
5010
|
+
class ListConversationsRequest {
|
|
5011
|
+
accountGroupId;
|
|
5012
|
+
participantId;
|
|
5013
|
+
pagingOptions;
|
|
5014
|
+
filters;
|
|
5015
|
+
namespace;
|
|
5016
|
+
static fromProto(proto) {
|
|
5017
|
+
let m = new ListConversationsRequest();
|
|
5018
|
+
m = Object.assign(m, proto);
|
|
5019
|
+
if (proto.pagingOptions) {
|
|
5020
|
+
m.pagingOptions = PagedRequestOptions.fromProto(proto.pagingOptions);
|
|
5021
|
+
}
|
|
5022
|
+
if (proto.filters) {
|
|
5023
|
+
m.filters = ListConversationsFilters.fromProto(proto.filters);
|
|
5024
|
+
}
|
|
5025
|
+
return m;
|
|
5026
|
+
}
|
|
5027
|
+
constructor(kwargs) {
|
|
5028
|
+
if (!kwargs) {
|
|
5029
|
+
return;
|
|
5030
|
+
}
|
|
5031
|
+
Object.assign(this, kwargs);
|
|
5032
|
+
}
|
|
5033
|
+
toApiJson() {
|
|
5034
|
+
const toReturn = {};
|
|
5035
|
+
if (typeof this.accountGroupId !== 'undefined') {
|
|
5036
|
+
toReturn['accountGroupId'] = this.accountGroupId;
|
|
5037
|
+
}
|
|
5038
|
+
if (typeof this.participantId !== 'undefined') {
|
|
5039
|
+
toReturn['participantId'] = this.participantId;
|
|
5040
|
+
}
|
|
5041
|
+
if (typeof this.pagingOptions !== 'undefined' && this.pagingOptions !== null) {
|
|
5042
|
+
toReturn['pagingOptions'] = 'toApiJson' in this.pagingOptions ? this.pagingOptions.toApiJson() : this.pagingOptions;
|
|
5043
|
+
}
|
|
5044
|
+
if (typeof this.filters !== 'undefined' && this.filters !== null) {
|
|
5045
|
+
toReturn['filters'] = 'toApiJson' in this.filters ? this.filters.toApiJson() : this.filters;
|
|
5046
|
+
}
|
|
5047
|
+
if (typeof this.namespace !== 'undefined') {
|
|
5048
|
+
toReturn['namespace'] = this.namespace;
|
|
5049
|
+
}
|
|
5050
|
+
return toReturn;
|
|
5051
|
+
}
|
|
5052
|
+
}
|
|
5053
|
+
class ListConversationsResponse {
|
|
5054
|
+
conversations;
|
|
5055
|
+
pagingMetadata;
|
|
5056
|
+
static fromProto(proto) {
|
|
5057
|
+
let m = new ListConversationsResponse();
|
|
5058
|
+
m = Object.assign(m, proto);
|
|
5059
|
+
if (proto.conversations) {
|
|
5060
|
+
m.conversations = proto.conversations.map(ListConversationsResponseInboxConversation.fromProto);
|
|
5061
|
+
}
|
|
5062
|
+
if (proto.pagingMetadata) {
|
|
5063
|
+
m.pagingMetadata = PagedResponseMetadata.fromProto(proto.pagingMetadata);
|
|
5064
|
+
}
|
|
5065
|
+
return m;
|
|
5066
|
+
}
|
|
5067
|
+
constructor(kwargs) {
|
|
5068
|
+
if (!kwargs) {
|
|
5069
|
+
return;
|
|
5070
|
+
}
|
|
5071
|
+
Object.assign(this, kwargs);
|
|
5072
|
+
}
|
|
5073
|
+
toApiJson() {
|
|
5074
|
+
const toReturn = {};
|
|
5075
|
+
if (typeof this.conversations !== 'undefined' && this.conversations !== null) {
|
|
5076
|
+
toReturn['conversations'] = 'toApiJson' in this.conversations ? this.conversations.toApiJson() : this.conversations;
|
|
5077
|
+
}
|
|
5078
|
+
if (typeof this.pagingMetadata !== 'undefined' && this.pagingMetadata !== null) {
|
|
5079
|
+
toReturn['pagingMetadata'] = 'toApiJson' in this.pagingMetadata ? this.pagingMetadata.toApiJson() : this.pagingMetadata;
|
|
5080
|
+
}
|
|
5081
|
+
return toReturn;
|
|
5082
|
+
}
|
|
5083
|
+
}
|
|
4595
5084
|
class ListMessageTemplateRequest {
|
|
4596
5085
|
subjectParticipant;
|
|
4597
5086
|
pagingOptions;
|
|
@@ -5179,11 +5668,11 @@ class Metadata {
|
|
|
5179
5668
|
return toReturn;
|
|
5180
5669
|
}
|
|
5181
5670
|
}
|
|
5182
|
-
class
|
|
5671
|
+
class ReceiveMessageRequestMetadataEntry {
|
|
5183
5672
|
key;
|
|
5184
5673
|
value;
|
|
5185
5674
|
static fromProto(proto) {
|
|
5186
|
-
let m = new
|
|
5675
|
+
let m = new ReceiveMessageRequestMetadataEntry();
|
|
5187
5676
|
m = Object.assign(m, proto);
|
|
5188
5677
|
return m;
|
|
5189
5678
|
}
|
|
@@ -5204,11 +5693,11 @@ class InjectMessageRequestMetadataEntry {
|
|
|
5204
5693
|
return toReturn;
|
|
5205
5694
|
}
|
|
5206
5695
|
}
|
|
5207
|
-
class
|
|
5696
|
+
class InjectMessageRequestMetadataEntry {
|
|
5208
5697
|
key;
|
|
5209
5698
|
value;
|
|
5210
5699
|
static fromProto(proto) {
|
|
5211
|
-
let m = new
|
|
5700
|
+
let m = new InjectMessageRequestMetadataEntry();
|
|
5212
5701
|
m = Object.assign(m, proto);
|
|
5213
5702
|
return m;
|
|
5214
5703
|
}
|
|
@@ -6280,6 +6769,123 @@ class WidgetVisit {
|
|
|
6280
6769
|
return toReturn;
|
|
6281
6770
|
}
|
|
6282
6771
|
}
|
|
6772
|
+
class WidgetLocation {
|
|
6773
|
+
namespace;
|
|
6774
|
+
businessName;
|
|
6775
|
+
address;
|
|
6776
|
+
address2;
|
|
6777
|
+
city;
|
|
6778
|
+
state;
|
|
6779
|
+
zip;
|
|
6780
|
+
country;
|
|
6781
|
+
static fromProto(proto) {
|
|
6782
|
+
let m = new WidgetLocation();
|
|
6783
|
+
m = Object.assign(m, proto);
|
|
6784
|
+
return m;
|
|
6785
|
+
}
|
|
6786
|
+
constructor(kwargs) {
|
|
6787
|
+
if (!kwargs) {
|
|
6788
|
+
return;
|
|
6789
|
+
}
|
|
6790
|
+
Object.assign(this, kwargs);
|
|
6791
|
+
}
|
|
6792
|
+
toApiJson() {
|
|
6793
|
+
const toReturn = {};
|
|
6794
|
+
if (typeof this.namespace !== 'undefined') {
|
|
6795
|
+
toReturn['namespace'] = this.namespace;
|
|
6796
|
+
}
|
|
6797
|
+
if (typeof this.businessName !== 'undefined') {
|
|
6798
|
+
toReturn['businessName'] = this.businessName;
|
|
6799
|
+
}
|
|
6800
|
+
if (typeof this.address !== 'undefined') {
|
|
6801
|
+
toReturn['address'] = this.address;
|
|
6802
|
+
}
|
|
6803
|
+
if (typeof this.address2 !== 'undefined') {
|
|
6804
|
+
toReturn['address2'] = this.address2;
|
|
6805
|
+
}
|
|
6806
|
+
if (typeof this.city !== 'undefined') {
|
|
6807
|
+
toReturn['city'] = this.city;
|
|
6808
|
+
}
|
|
6809
|
+
if (typeof this.state !== 'undefined') {
|
|
6810
|
+
toReturn['state'] = this.state;
|
|
6811
|
+
}
|
|
6812
|
+
if (typeof this.zip !== 'undefined') {
|
|
6813
|
+
toReturn['zip'] = this.zip;
|
|
6814
|
+
}
|
|
6815
|
+
if (typeof this.country !== 'undefined') {
|
|
6816
|
+
toReturn['country'] = this.country;
|
|
6817
|
+
}
|
|
6818
|
+
return toReturn;
|
|
6819
|
+
}
|
|
6820
|
+
}
|
|
6821
|
+
class ListWidgetLocationsRequest {
|
|
6822
|
+
widgetId;
|
|
6823
|
+
cursor;
|
|
6824
|
+
pageSize;
|
|
6825
|
+
query;
|
|
6826
|
+
static fromProto(proto) {
|
|
6827
|
+
let m = new ListWidgetLocationsRequest();
|
|
6828
|
+
m = Object.assign(m, proto);
|
|
6829
|
+
if (proto.pageSize) {
|
|
6830
|
+
m.pageSize = parseInt(proto.pageSize, 10);
|
|
6831
|
+
}
|
|
6832
|
+
return m;
|
|
6833
|
+
}
|
|
6834
|
+
constructor(kwargs) {
|
|
6835
|
+
if (!kwargs) {
|
|
6836
|
+
return;
|
|
6837
|
+
}
|
|
6838
|
+
Object.assign(this, kwargs);
|
|
6839
|
+
}
|
|
6840
|
+
toApiJson() {
|
|
6841
|
+
const toReturn = {};
|
|
6842
|
+
if (typeof this.widgetId !== 'undefined') {
|
|
6843
|
+
toReturn['widgetId'] = this.widgetId;
|
|
6844
|
+
}
|
|
6845
|
+
if (typeof this.cursor !== 'undefined') {
|
|
6846
|
+
toReturn['cursor'] = this.cursor;
|
|
6847
|
+
}
|
|
6848
|
+
if (typeof this.pageSize !== 'undefined') {
|
|
6849
|
+
toReturn['pageSize'] = this.pageSize;
|
|
6850
|
+
}
|
|
6851
|
+
if (typeof this.query !== 'undefined') {
|
|
6852
|
+
toReturn['query'] = this.query;
|
|
6853
|
+
}
|
|
6854
|
+
return toReturn;
|
|
6855
|
+
}
|
|
6856
|
+
}
|
|
6857
|
+
class ListWidgetLocationsResponse {
|
|
6858
|
+
locations;
|
|
6859
|
+
nextCursor;
|
|
6860
|
+
hasMore;
|
|
6861
|
+
static fromProto(proto) {
|
|
6862
|
+
let m = new ListWidgetLocationsResponse();
|
|
6863
|
+
m = Object.assign(m, proto);
|
|
6864
|
+
if (proto.locations) {
|
|
6865
|
+
m.locations = proto.locations.map(WidgetLocation.fromProto);
|
|
6866
|
+
}
|
|
6867
|
+
return m;
|
|
6868
|
+
}
|
|
6869
|
+
constructor(kwargs) {
|
|
6870
|
+
if (!kwargs) {
|
|
6871
|
+
return;
|
|
6872
|
+
}
|
|
6873
|
+
Object.assign(this, kwargs);
|
|
6874
|
+
}
|
|
6875
|
+
toApiJson() {
|
|
6876
|
+
const toReturn = {};
|
|
6877
|
+
if (typeof this.locations !== 'undefined' && this.locations !== null) {
|
|
6878
|
+
toReturn['locations'] = this.locations.map((r) => 'toApiJson' in r ? r.toApiJson() : r);
|
|
6879
|
+
}
|
|
6880
|
+
if (typeof this.nextCursor !== 'undefined') {
|
|
6881
|
+
toReturn['nextCursor'] = this.nextCursor;
|
|
6882
|
+
}
|
|
6883
|
+
if (typeof this.hasMore !== 'undefined') {
|
|
6884
|
+
toReturn['hasMore'] = this.hasMore;
|
|
6885
|
+
}
|
|
6886
|
+
return toReturn;
|
|
6887
|
+
}
|
|
6888
|
+
}
|
|
6283
6889
|
|
|
6284
6890
|
// *********************************
|
|
6285
6891
|
// Code generated by sdkgen
|
|
@@ -6553,6 +7159,11 @@ class ConversationApiService {
|
|
|
6553
7159
|
return this.http.post(this._host + "/conversation.v1.ConversationService/GetWidgetConfig", request.toApiJson(), this.apiOptions())
|
|
6554
7160
|
.pipe(map(resp => GetWidgetConfigResponse.fromProto(resp)));
|
|
6555
7161
|
}
|
|
7162
|
+
listWidgetLocations(r) {
|
|
7163
|
+
const request = (r.toApiJson) ? r : new ListWidgetLocationsRequest(r);
|
|
7164
|
+
return this.http.post(this._host + "/web_chat_widget.v1.WebChatWidget/ListWidgetLocations", request.toApiJson(), this.apiOptions())
|
|
7165
|
+
.pipe(map(resp => ListWidgetLocationsResponse.fromProto(resp)));
|
|
7166
|
+
}
|
|
6556
7167
|
listMessageTemplate(r) {
|
|
6557
7168
|
const request = (r.toApiJson) ? r : new ListMessageTemplateRequest(r);
|
|
6558
7169
|
return this.http.post(this._host + "/conversation.v1.ConversationService/ListMessageTemplate", request.toApiJson(), this.apiOptions())
|
|
@@ -6611,6 +7222,21 @@ class ConversationApiService {
|
|
|
6611
7222
|
return this.http.post(this._host + "/conversation.v1.ConversationService/ListConversationExports", request.toApiJson(), this.apiOptions())
|
|
6612
7223
|
.pipe(map(resp => ListConversationExportsResponse.fromProto(resp)));
|
|
6613
7224
|
}
|
|
7225
|
+
listCommunicationChannelsInfo(r) {
|
|
7226
|
+
const request = (r.toApiJson) ? r : new ListCommunicationChannelsInfoRequest(r);
|
|
7227
|
+
return this.http.post(this._host + "/conversation.v1.ConversationService/ListCommunicationChannelsInfo", request.toApiJson(), this.apiOptions())
|
|
7228
|
+
.pipe(map(resp => ListCommunicationChannelsInfoResponse.fromProto(resp)));
|
|
7229
|
+
}
|
|
7230
|
+
listConversations(r) {
|
|
7231
|
+
const request = (r.toApiJson) ? r : new ListConversationsRequest(r);
|
|
7232
|
+
return this.http.post(this._host + "/conversation.v1.ConversationService/ListConversations", request.toApiJson(), this.apiOptions())
|
|
7233
|
+
.pipe(map(resp => ListConversationsResponse.fromProto(resp)));
|
|
7234
|
+
}
|
|
7235
|
+
assignConversation(r) {
|
|
7236
|
+
const request = (r.toApiJson) ? r : new AssignConversationRequest(r);
|
|
7237
|
+
return this.http.post(this._host + "/conversation.v1.ConversationService/AssignConversation", request.toApiJson(), this.apiOptions())
|
|
7238
|
+
.pipe(map(resp => AssignConversationResponse.fromProto(resp)));
|
|
7239
|
+
}
|
|
6614
7240
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ConversationApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6615
7241
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ConversationApiService, providedIn: 'root' });
|
|
6616
7242
|
}
|
|
@@ -6707,5 +7333,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
6707
7333
|
* Generated bundle index. Do not edit.
|
|
6708
7334
|
*/
|
|
6709
7335
|
|
|
6710
|
-
export { AIConfiguration, AIMode, AIStatus, AISystemMessage, AISystemMessageApiService, AIThought, Access, AddConversationToConversationViewRequest, AddMultiParticipantsRequest, AddMultiParticipantsResponse, Address, CancelAIResponderRequest, CapturedLead, ChannelAvailability, ChannelStatus, Configuration, ConfigurationAIConfiguration, Conversation, ConversationApiService, ConversationChannel, ConversationExportRecord, ConversationKey, ConversationMessageCount, CreateConversationRequest, CreateConversationResponse, CreateMessageTemplateRequest, CreateMessageTemplateResponse, CreateMultiMessagesRequest, CreateWidgetConversationRequest, CreateWidgetConversationResponse, CreateWidgetRequest, CreateWidgetResponse, DataSources, DeleteConversationRequest, DeleteMessageRequest, DeleteMessageTemplateRequest, DeleteWidgetRequest, EmailApiService, EvaluateResponseRequest, EvaluateResponseType, EvaluationSentiment, Event, EventType, ExportConversationsRequest, ExportConversationsRequestFilterOptions, ExportConversationsResponse, ExportStatus, FieldMask, Filters, GetAISystemMessageRequest, GetAISystemMessageResponse, GetAvailableChannelsForConversationRequest, GetAvailableChannelsForConversationResponse, GetConfigurationRequest, GetConfigurationResponse, GetConversationByKeyRequest, GetConversationByKeyResponse, GetConversationSummaryRequest, GetConversationSummaryResponse, GetConversationViewsRequest, GetConversationViewsResponse, GetMessageOptions, GetMessageRequest, GetMessageTemplateRequest, GetMessageTemplateRequestHydrationOptions, GetMessageTemplateRequestHydrationOptionsHydrationEntity, GetMessageTemplateRequestHydrationOptionsHydrationEntityEntityType, GetMessageTemplateResponse, GetMessageTemplateResponseHydrationInformation, GetMultiConfigurationRequest, GetMultiConfigurationResponse, GetMultiConversationDetailsOptions, GetMultiConversationDetailsRequest, GetMultiConversationDetailsResponse, GetMultiConversationDetailsResponseDetailedConversation, GetMultiConversationDetailsV2Request, GetMultiConversationDetailsV2Response, GetMultiConversationDetailsV2ResponseDetailedConversation, GetMultiConversationMessageCountRequest, GetMultiConversationMessageCountResponse, GetMultiConversationMessageCountResponseCountsEntry, GetMultiEventsRequest, GetMultiEventsResponse, GetMultiMessagesRequest, GetMultiMessagesResponse, GetMultiParticipantsRequest, GetMultiParticipantsResponse, GetMultiWidgetMessagesRequest, GetMultiWidgetMessagesResponse, GetMultiWidgetRequest, GetMultiWidgetResponse, GetOwnerEmailRequest, GetOwnerEmailResponse, GetParticipantsByKeyRequest, GetParticipantsByKeyResponse, GetWidgetConfigRequest, GetWidgetConfigResponse, GetWidgetConfigResponseGreetingMessageType, GetWidgetConversationResponse, GetWidgetRequest, GetWidgetResponse, GlobalParticipantType, InboxApiService, InjectMessageRequest, InjectMessageRequestMetadataEntry, KeyValuePair, LastSeenByParticipant, LatestMessageSentTimeBySubjectParticipant, ListAISystemMessagesRequest, ListAISystemMessagesResponse, ListConversationExportsRequest, ListConversationExportsRequestFilterOptions, ListConversationExportsResponse, ListMessageTemplateRequest, ListMessageTemplateResponse, ListMessagesRequest, ListMessagesRequestListMessagesFilters, ListMessagesResponse, ListResponseEvaluationsRequest, ListResponseEvaluationsResponse, ListResponseEvaluationsResponseSummary, ListResponseEvaluationsResponseSummaryTheme, ListWidgetsRequest, ListWidgetsRequestListWidgetsFilters, ListWidgetsResponse, LookupConversationsRequest, LookupConversationsRequestLookupConversationsFilters, LookupConversationsResponse, LookupConversationsResponseConversations, MCPOptions, MakeToolCallRequest, MakeToolCallRequestMessageOption, MakeToolCallResponse, Media, Message, MessageStatus, MessageTemplate, MessageType, Metadata, MetadataDataEntry, MetadataIdentifier, NamespaceDetail, NewInboxLeadCapturedRequest, NewInboxLeadCapturedResponse, PagedRequestOptions, PagedResponseMetadata, Participant, ParticipantKey, ParticipantMessageStatus, ParticipantType, PlatformLocation, ProductFeature, ReceiveMessageRequest, ReceiveMessageRequestMetadataEntry, RemoveConversationFromConversationViewRequest, ResponseEvaluation, SearchConversationsRequest, SearchConversationsResponse, SearchConversationsResponseDetailedConversation, SendMessageOptions, SendMessageRequest, SendMessageResponse, SendStatus, SendWidgetMessageRequest, SendWidgetMessageResponse, SetLastSeenRequest, SetLastSeenRequestStatus, SetLastSeenResponse, SortDirection, Status, SubjectParticipant, SubjectParticipantKey, UIButton, UIComponent, UIComponentType, UpdateConversationRequest, UpdateConversationResponse, UpdateMessageStatusRequest, UpdateMessageTemplateRequest, UpdateMessageTemplateResponse, UpdateWidgetRequest, UpdateWidgetResponse, UpsertAISystemMessageRequest, UpsertConfigurationRequest, UpsertConfigurationResponse, UpsertProductFeatureRequest, UpsertProductFeatureResponse, View, ViewType, Widget, WidgetPosition, WidgetVisit };
|
|
7336
|
+
export { AIConfiguration, AIMode, AIStatus, AISystemMessage, AISystemMessageApiService, AIThought, Access, AddConversationToConversationViewRequest, AddMultiParticipantsRequest, AddMultiParticipantsResponse, Address, AssignConversationRequest, AssignConversationResponse, CancelAIResponderRequest, CapturedLead, ChannelAvailability, ChannelStatus, CommunicationChannelType, CommunicationInfo, Configuration, ConfigurationAIConfiguration, Conversation, ConversationApiService, ConversationChannel, ConversationExportRecord, ConversationKey, ConversationMessageCount, CreateConversationRequest, CreateConversationResponse, CreateMessageTemplateRequest, CreateMessageTemplateResponse, CreateMultiMessagesRequest, CreateWidgetConversationRequest, CreateWidgetConversationResponse, CreateWidgetRequest, CreateWidgetResponse, DataSources, DeleteConversationRequest, DeleteMessageRequest, DeleteMessageTemplateRequest, DeleteWidgetRequest, EmailApiService, EvaluateResponseRequest, EvaluateResponseType, EvaluationSentiment, Event, EventType, ExportConversationsRequest, ExportConversationsRequestFilterOptions, ExportConversationsResponse, ExportStatus, FieldMask, Filters, GetAISystemMessageRequest, GetAISystemMessageResponse, GetAvailableChannelsForConversationRequest, GetAvailableChannelsForConversationResponse, GetConfigurationRequest, GetConfigurationResponse, GetConversationByKeyRequest, GetConversationByKeyResponse, GetConversationSummaryRequest, GetConversationSummaryResponse, GetConversationViewsRequest, GetConversationViewsResponse, GetMessageOptions, GetMessageRequest, GetMessageTemplateRequest, GetMessageTemplateRequestHydrationOptions, GetMessageTemplateRequestHydrationOptionsHydrationEntity, GetMessageTemplateRequestHydrationOptionsHydrationEntityEntityType, GetMessageTemplateResponse, GetMessageTemplateResponseHydrationInformation, GetMultiConfigurationRequest, GetMultiConfigurationResponse, GetMultiConversationDetailsOptions, GetMultiConversationDetailsRequest, GetMultiConversationDetailsResponse, GetMultiConversationDetailsResponseDetailedConversation, GetMultiConversationDetailsV2Request, GetMultiConversationDetailsV2Response, GetMultiConversationDetailsV2ResponseDetailedConversation, GetMultiConversationMessageCountRequest, GetMultiConversationMessageCountResponse, GetMultiConversationMessageCountResponseCountsEntry, GetMultiEventsRequest, GetMultiEventsResponse, GetMultiMessagesRequest, GetMultiMessagesResponse, GetMultiParticipantsRequest, GetMultiParticipantsResponse, GetMultiWidgetMessagesRequest, GetMultiWidgetMessagesResponse, GetMultiWidgetRequest, GetMultiWidgetResponse, GetOwnerEmailRequest, GetOwnerEmailResponse, GetParticipantsByKeyRequest, GetParticipantsByKeyResponse, GetWidgetConfigRequest, GetWidgetConfigResponse, GetWidgetConfigResponseGreetingMessageType, GetWidgetConversationResponse, GetWidgetRequest, GetWidgetResponse, GlobalParticipantType, InboxApiService, InjectMessageRequest, InjectMessageRequestMetadataEntry, KeyValuePair, LastSeenByParticipant, LatestMessageSentTimeBySubjectParticipant, ListAISystemMessagesRequest, ListAISystemMessagesResponse, ListCommunicationChannelsInfoRequest, ListCommunicationChannelsInfoResponse, ListConversationExportsRequest, ListConversationExportsRequestFilterOptions, ListConversationExportsResponse, ListConversationsFilters, ListConversationsRequest, ListConversationsResponse, ListConversationsResponseInboxConversation, ListMessageTemplateRequest, ListMessageTemplateResponse, ListMessagesRequest, ListMessagesRequestListMessagesFilters, ListMessagesResponse, ListResponseEvaluationsRequest, ListResponseEvaluationsResponse, ListResponseEvaluationsResponseSummary, ListResponseEvaluationsResponseSummaryTheme, ListWidgetLocationsRequest, ListWidgetLocationsResponse, ListWidgetsRequest, ListWidgetsRequestListWidgetsFilters, ListWidgetsResponse, LookupConversationsRequest, LookupConversationsRequestLookupConversationsFilters, LookupConversationsResponse, LookupConversationsResponseConversations, MCPOptions, MakeToolCallRequest, MakeToolCallRequestMessageOption, MakeToolCallResponse, Media, Message, MessageStatus, MessageTemplate, MessageType, Metadata, MetadataDataEntry, MetadataIdentifier, NamespaceDetail, NewInboxLeadCapturedRequest, NewInboxLeadCapturedResponse, PagedRequestOptions, PagedResponseMetadata, Participant, ParticipantKey, ParticipantMessageStatus, ParticipantType, PlatformLocation, ProductFeature, ReceiveMessageRequest, ReceiveMessageRequestMetadataEntry, RemoveConversationFromConversationViewRequest, ResponseEvaluation, SearchConversationsRequest, SearchConversationsResponse, SearchConversationsResponseDetailedConversation, SendMessageOptions, SendMessageRequest, SendMessageResponse, SendStatus, SendWidgetMessageRequest, SendWidgetMessageResponse, SetLastSeenRequest, SetLastSeenRequestStatus, SetLastSeenResponse, SortDirection, Status, SubjectParticipant, SubjectParticipantKey, UIButton, UICheckbox, UICheckboxGroup, UIComponent, UIComponentType, UIMarkdownPlan, UIQuestionForm, UIQuestionFormQuestion, UIQuestionFormQuestionQuestionType, UpdateConversationRequest, UpdateConversationResponse, UpdateMessageStatusRequest, UpdateMessageTemplateRequest, UpdateMessageTemplateResponse, UpdateWidgetRequest, UpdateWidgetResponse, UpsertAISystemMessageRequest, UpsertConfigurationRequest, UpsertConfigurationResponse, UpsertProductFeatureRequest, UpsertProductFeatureResponse, View, ViewType, Widget, WidgetLocation, WidgetPosition, WidgetVisit };
|
|
6711
7337
|
//# sourceMappingURL=vendasta-conversation.mjs.map
|