@vendasta/conversation 0.38.0 → 0.40.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/esm2020/lib/_internal/conversation.api.service.mjs +16 -3
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/field-mask.interface.mjs +8 -0
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/widget.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +124 -1
- package/esm2020/lib/_internal/objects/field-mask.mjs +27 -0
- package/esm2020/lib/_internal/objects/index.mjs +3 -2
- package/esm2020/lib/_internal/objects/widget.mjs +7 -1
- package/fesm2015/vendasta-conversation.mjs +191 -23
- package/fesm2015/vendasta-conversation.mjs.map +1 -1
- package/fesm2020/vendasta-conversation.mjs +191 -23
- package/fesm2020/vendasta-conversation.mjs.map +1 -1
- package/lib/_internal/conversation.api.service.d.ts +5 -2
- package/lib/_internal/interfaces/api.interface.d.ts +22 -0
- package/lib/_internal/interfaces/field-mask.interface.d.ts +3 -0
- package/lib/_internal/interfaces/index.d.ts +2 -1
- package/lib/_internal/interfaces/widget.interface.d.ts +2 -0
- package/lib/_internal/objects/api.d.ts +34 -0
- package/lib/_internal/objects/field-mask.d.ts +8 -0
- package/lib/_internal/objects/index.d.ts +2 -1
- package/lib/_internal/objects/widget.d.ts +2 -0
- package/package.json +1 -1
|
@@ -151,7 +151,7 @@ var SetLastSeenRequestStatus;
|
|
|
151
151
|
// Enums Index.
|
|
152
152
|
// *********************************
|
|
153
153
|
|
|
154
|
-
function enumStringToValue$
|
|
154
|
+
function enumStringToValue$9(enumRef, value) {
|
|
155
155
|
if (typeof value === 'number') {
|
|
156
156
|
return value;
|
|
157
157
|
}
|
|
@@ -162,7 +162,7 @@ class Message {
|
|
|
162
162
|
let m = new Message();
|
|
163
163
|
m = Object.assign(m, proto);
|
|
164
164
|
if (proto.type) {
|
|
165
|
-
m.type = enumStringToValue$
|
|
165
|
+
m.type = enumStringToValue$9(MessageType, proto.type);
|
|
166
166
|
}
|
|
167
167
|
if (proto.created) {
|
|
168
168
|
m.created = new Date(proto.created);
|
|
@@ -230,7 +230,7 @@ class ParticipantMessageStatus {
|
|
|
230
230
|
let m = new ParticipantMessageStatus();
|
|
231
231
|
m = Object.assign(m, proto);
|
|
232
232
|
if (proto.status) {
|
|
233
|
-
m.status = enumStringToValue$
|
|
233
|
+
m.status = enumStringToValue$9(MessageStatus, proto.status);
|
|
234
234
|
}
|
|
235
235
|
if (proto.updated) {
|
|
236
236
|
m.updated = new Date(proto.updated);
|
|
@@ -265,7 +265,7 @@ class SendStatus {
|
|
|
265
265
|
let m = new SendStatus();
|
|
266
266
|
m = Object.assign(m, proto);
|
|
267
267
|
if (proto.status) {
|
|
268
|
-
m.status = enumStringToValue$
|
|
268
|
+
m.status = enumStringToValue$9(MessageStatus, proto.status);
|
|
269
269
|
}
|
|
270
270
|
if (proto.created) {
|
|
271
271
|
m.created = new Date(proto.created);
|
|
@@ -293,7 +293,7 @@ class SendStatus {
|
|
|
293
293
|
}
|
|
294
294
|
}
|
|
295
295
|
|
|
296
|
-
function enumStringToValue$
|
|
296
|
+
function enumStringToValue$8(enumRef, value) {
|
|
297
297
|
if (typeof value === 'number') {
|
|
298
298
|
return value;
|
|
299
299
|
}
|
|
@@ -304,7 +304,7 @@ class SubjectParticipant {
|
|
|
304
304
|
let m = new SubjectParticipant();
|
|
305
305
|
m = Object.assign(m, proto);
|
|
306
306
|
if (proto.participantType) {
|
|
307
|
-
m.participantType = enumStringToValue$
|
|
307
|
+
m.participantType = enumStringToValue$8(GlobalParticipantType, proto.participantType);
|
|
308
308
|
}
|
|
309
309
|
return m;
|
|
310
310
|
}
|
|
@@ -326,7 +326,7 @@ class SubjectParticipant {
|
|
|
326
326
|
}
|
|
327
327
|
}
|
|
328
328
|
|
|
329
|
-
function enumStringToValue$
|
|
329
|
+
function enumStringToValue$7(enumRef, value) {
|
|
330
330
|
if (typeof value === 'number') {
|
|
331
331
|
return value;
|
|
332
332
|
}
|
|
@@ -337,7 +337,7 @@ class Conversation {
|
|
|
337
337
|
let m = new Conversation();
|
|
338
338
|
m = Object.assign(m, proto);
|
|
339
339
|
if (proto.channel) {
|
|
340
|
-
m.channel = enumStringToValue$
|
|
340
|
+
m.channel = enumStringToValue$7(ConversationChannel, proto.channel);
|
|
341
341
|
}
|
|
342
342
|
if (proto.created) {
|
|
343
343
|
m.created = new Date(proto.created);
|
|
@@ -352,7 +352,7 @@ class Conversation {
|
|
|
352
352
|
m.latestMsgSentTime = new Date(proto.latestMsgSentTime);
|
|
353
353
|
}
|
|
354
354
|
if (proto.originLocation) {
|
|
355
|
-
m.originLocation = enumStringToValue$
|
|
355
|
+
m.originLocation = enumStringToValue$7(PlatformLocation, proto.originLocation);
|
|
356
356
|
}
|
|
357
357
|
if (proto.lastSeenByParticipant) {
|
|
358
358
|
m.lastSeenByParticipant = proto.lastSeenByParticipant.map(LastSeenByParticipant.fromProto);
|
|
@@ -414,7 +414,7 @@ class ConversationKey {
|
|
|
414
414
|
m.subjectParticipants = proto.subjectParticipants.map(SubjectParticipant.fromProto);
|
|
415
415
|
}
|
|
416
416
|
if (proto.channel) {
|
|
417
|
-
m.channel = enumStringToValue$
|
|
417
|
+
m.channel = enumStringToValue$7(ConversationChannel, proto.channel);
|
|
418
418
|
}
|
|
419
419
|
return m;
|
|
420
420
|
}
|
|
@@ -465,7 +465,7 @@ class LastSeenByParticipant {
|
|
|
465
465
|
}
|
|
466
466
|
}
|
|
467
467
|
|
|
468
|
-
function enumStringToValue$
|
|
468
|
+
function enumStringToValue$6(enumRef, value) {
|
|
469
469
|
if (typeof value === 'number') {
|
|
470
470
|
return value;
|
|
471
471
|
}
|
|
@@ -511,10 +511,10 @@ class Participant {
|
|
|
511
511
|
let m = new Participant();
|
|
512
512
|
m = Object.assign(m, proto);
|
|
513
513
|
if (proto.location) {
|
|
514
|
-
m.location = enumStringToValue$
|
|
514
|
+
m.location = enumStringToValue$6(PlatformLocation, proto.location);
|
|
515
515
|
}
|
|
516
516
|
if (proto.channel) {
|
|
517
|
-
m.channel = enumStringToValue$
|
|
517
|
+
m.channel = enumStringToValue$6(ConversationChannel, proto.channel);
|
|
518
518
|
}
|
|
519
519
|
if (proto.created) {
|
|
520
520
|
m.created = new Date(proto.created);
|
|
@@ -526,7 +526,7 @@ class Participant {
|
|
|
526
526
|
m.deleted = new Date(proto.deleted);
|
|
527
527
|
}
|
|
528
528
|
if (proto.participantType) {
|
|
529
|
-
m.participantType = enumStringToValue$
|
|
529
|
+
m.participantType = enumStringToValue$6(ParticipantType, proto.participantType);
|
|
530
530
|
}
|
|
531
531
|
if (proto.address) {
|
|
532
532
|
m.address = Address.fromProto(proto.address);
|
|
@@ -603,13 +603,13 @@ class ParticipantKey {
|
|
|
603
603
|
let m = new ParticipantKey();
|
|
604
604
|
m = Object.assign(m, proto);
|
|
605
605
|
if (proto.location) {
|
|
606
|
-
m.location = enumStringToValue$
|
|
606
|
+
m.location = enumStringToValue$6(PlatformLocation, proto.location);
|
|
607
607
|
}
|
|
608
608
|
if (proto.channels) {
|
|
609
|
-
m.channels = proto.channels.map((v) => enumStringToValue$
|
|
609
|
+
m.channels = proto.channels.map((v) => enumStringToValue$6(ConversationChannel, v));
|
|
610
610
|
}
|
|
611
611
|
if (proto.participantType) {
|
|
612
|
-
m.participantType = enumStringToValue$
|
|
612
|
+
m.participantType = enumStringToValue$6(GlobalParticipantType, proto.participantType);
|
|
613
613
|
}
|
|
614
614
|
return m;
|
|
615
615
|
}
|
|
@@ -643,7 +643,7 @@ class ParticipantKey {
|
|
|
643
643
|
}
|
|
644
644
|
}
|
|
645
645
|
|
|
646
|
-
function enumStringToValue$
|
|
646
|
+
function enumStringToValue$5(enumRef, value) {
|
|
647
647
|
if (typeof value === 'number') {
|
|
648
648
|
return value;
|
|
649
649
|
}
|
|
@@ -673,7 +673,7 @@ class Access {
|
|
|
673
673
|
}
|
|
674
674
|
}
|
|
675
675
|
|
|
676
|
-
function enumStringToValue$
|
|
676
|
+
function enumStringToValue$4(enumRef, value) {
|
|
677
677
|
if (typeof value === 'number') {
|
|
678
678
|
return value;
|
|
679
679
|
}
|
|
@@ -727,7 +727,7 @@ class Configuration {
|
|
|
727
727
|
}
|
|
728
728
|
}
|
|
729
729
|
|
|
730
|
-
function enumStringToValue$
|
|
730
|
+
function enumStringToValue$3(enumRef, value) {
|
|
731
731
|
if (typeof value === 'number') {
|
|
732
732
|
return value;
|
|
733
733
|
}
|
|
@@ -760,7 +760,7 @@ class View {
|
|
|
760
760
|
}
|
|
761
761
|
}
|
|
762
762
|
|
|
763
|
-
function enumStringToValue$
|
|
763
|
+
function enumStringToValue$2(enumRef, value) {
|
|
764
764
|
if (typeof value === 'number') {
|
|
765
765
|
return value;
|
|
766
766
|
}
|
|
@@ -771,7 +771,7 @@ class Widget {
|
|
|
771
771
|
let m = new Widget();
|
|
772
772
|
m = Object.assign(m, proto);
|
|
773
773
|
if (proto.position) {
|
|
774
|
-
m.position = enumStringToValue$
|
|
774
|
+
m.position = enumStringToValue$2(WidgetPosition, proto.position);
|
|
775
775
|
}
|
|
776
776
|
if (proto.created) {
|
|
777
777
|
m.created = new Date(proto.created);
|
|
@@ -813,6 +813,39 @@ class Widget {
|
|
|
813
813
|
if (typeof this.updated !== 'undefined' && this.updated !== null) {
|
|
814
814
|
toReturn['updated'] = 'toApiJson' in this.updated ? this.updated.toApiJson() : this.updated;
|
|
815
815
|
}
|
|
816
|
+
if (typeof this.isEnabled !== 'undefined') {
|
|
817
|
+
toReturn['isEnabled'] = this.isEnabled;
|
|
818
|
+
}
|
|
819
|
+
if (typeof this.welcomeMessage !== 'undefined') {
|
|
820
|
+
toReturn['welcomeMessage'] = this.welcomeMessage;
|
|
821
|
+
}
|
|
822
|
+
return toReturn;
|
|
823
|
+
}
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
function enumStringToValue$1(enumRef, value) {
|
|
827
|
+
if (typeof value === 'number') {
|
|
828
|
+
return value;
|
|
829
|
+
}
|
|
830
|
+
return enumRef[value];
|
|
831
|
+
}
|
|
832
|
+
class FieldMask {
|
|
833
|
+
static fromProto(proto) {
|
|
834
|
+
let m = new FieldMask();
|
|
835
|
+
m = Object.assign(m, proto);
|
|
836
|
+
return m;
|
|
837
|
+
}
|
|
838
|
+
constructor(kwargs) {
|
|
839
|
+
if (!kwargs) {
|
|
840
|
+
return;
|
|
841
|
+
}
|
|
842
|
+
Object.assign(this, kwargs);
|
|
843
|
+
}
|
|
844
|
+
toApiJson() {
|
|
845
|
+
const toReturn = {};
|
|
846
|
+
if (typeof this.paths !== 'undefined') {
|
|
847
|
+
toReturn['paths'] = this.paths;
|
|
848
|
+
}
|
|
816
849
|
return toReturn;
|
|
817
850
|
}
|
|
818
851
|
}
|
|
@@ -1821,6 +1854,78 @@ class GetParticipantsByKeyResponse {
|
|
|
1821
1854
|
return toReturn;
|
|
1822
1855
|
}
|
|
1823
1856
|
}
|
|
1857
|
+
class GetWidgetConfigRequest {
|
|
1858
|
+
static fromProto(proto) {
|
|
1859
|
+
let m = new GetWidgetConfigRequest();
|
|
1860
|
+
m = Object.assign(m, proto);
|
|
1861
|
+
return m;
|
|
1862
|
+
}
|
|
1863
|
+
constructor(kwargs) {
|
|
1864
|
+
if (!kwargs) {
|
|
1865
|
+
return;
|
|
1866
|
+
}
|
|
1867
|
+
Object.assign(this, kwargs);
|
|
1868
|
+
}
|
|
1869
|
+
toApiJson() {
|
|
1870
|
+
const toReturn = {};
|
|
1871
|
+
if (typeof this.widgetId !== 'undefined') {
|
|
1872
|
+
toReturn['widgetId'] = this.widgetId;
|
|
1873
|
+
}
|
|
1874
|
+
return toReturn;
|
|
1875
|
+
}
|
|
1876
|
+
}
|
|
1877
|
+
class GetWidgetConfigResponse {
|
|
1878
|
+
static fromProto(proto) {
|
|
1879
|
+
let m = new GetWidgetConfigResponse();
|
|
1880
|
+
m = Object.assign(m, proto);
|
|
1881
|
+
return m;
|
|
1882
|
+
}
|
|
1883
|
+
constructor(kwargs) {
|
|
1884
|
+
if (!kwargs) {
|
|
1885
|
+
return;
|
|
1886
|
+
}
|
|
1887
|
+
Object.assign(this, kwargs);
|
|
1888
|
+
}
|
|
1889
|
+
toApiJson() {
|
|
1890
|
+
const toReturn = {};
|
|
1891
|
+
if (typeof this.name !== 'undefined') {
|
|
1892
|
+
toReturn['name'] = this.name;
|
|
1893
|
+
}
|
|
1894
|
+
if (typeof this.color !== 'undefined') {
|
|
1895
|
+
toReturn['color'] = this.color;
|
|
1896
|
+
}
|
|
1897
|
+
if (typeof this.isEnabled !== 'undefined') {
|
|
1898
|
+
toReturn['isEnabled'] = this.isEnabled;
|
|
1899
|
+
}
|
|
1900
|
+
if (typeof this.welcomeMessage !== 'undefined') {
|
|
1901
|
+
toReturn['welcomeMessage'] = this.welcomeMessage;
|
|
1902
|
+
}
|
|
1903
|
+
return toReturn;
|
|
1904
|
+
}
|
|
1905
|
+
}
|
|
1906
|
+
class GetWidgetConversationResponse {
|
|
1907
|
+
static fromProto(proto) {
|
|
1908
|
+
let m = new GetWidgetConversationResponse();
|
|
1909
|
+
m = Object.assign(m, proto);
|
|
1910
|
+
if (proto.conversation) {
|
|
1911
|
+
m.conversation = Conversation.fromProto(proto.conversation);
|
|
1912
|
+
}
|
|
1913
|
+
return m;
|
|
1914
|
+
}
|
|
1915
|
+
constructor(kwargs) {
|
|
1916
|
+
if (!kwargs) {
|
|
1917
|
+
return;
|
|
1918
|
+
}
|
|
1919
|
+
Object.assign(this, kwargs);
|
|
1920
|
+
}
|
|
1921
|
+
toApiJson() {
|
|
1922
|
+
const toReturn = {};
|
|
1923
|
+
if (typeof this.conversation !== 'undefined' && this.conversation !== null) {
|
|
1924
|
+
toReturn['conversation'] = 'toApiJson' in this.conversation ? this.conversation.toApiJson() : this.conversation;
|
|
1925
|
+
}
|
|
1926
|
+
return toReturn;
|
|
1927
|
+
}
|
|
1928
|
+
}
|
|
1824
1929
|
class GetWidgetRequest {
|
|
1825
1930
|
static fromProto(proto) {
|
|
1826
1931
|
let m = new GetWidgetRequest();
|
|
@@ -2475,6 +2580,44 @@ class SendMessageResponse {
|
|
|
2475
2580
|
return toReturn;
|
|
2476
2581
|
}
|
|
2477
2582
|
}
|
|
2583
|
+
class SendWidgetMessageRequest {
|
|
2584
|
+
static fromProto(proto) {
|
|
2585
|
+
let m = new SendWidgetMessageRequest();
|
|
2586
|
+
m = Object.assign(m, proto);
|
|
2587
|
+
if (proto.type) {
|
|
2588
|
+
m.type = enumStringToValue(MessageType, proto.type);
|
|
2589
|
+
}
|
|
2590
|
+
if (proto.metadata) {
|
|
2591
|
+
m.metadata = proto.metadata.map(Metadata.fromProto);
|
|
2592
|
+
}
|
|
2593
|
+
if (proto.location) {
|
|
2594
|
+
m.location = enumStringToValue(PlatformLocation, proto.location);
|
|
2595
|
+
}
|
|
2596
|
+
return m;
|
|
2597
|
+
}
|
|
2598
|
+
constructor(kwargs) {
|
|
2599
|
+
if (!kwargs) {
|
|
2600
|
+
return;
|
|
2601
|
+
}
|
|
2602
|
+
Object.assign(this, kwargs);
|
|
2603
|
+
}
|
|
2604
|
+
toApiJson() {
|
|
2605
|
+
const toReturn = {};
|
|
2606
|
+
if (typeof this.type !== 'undefined') {
|
|
2607
|
+
toReturn['type'] = this.type;
|
|
2608
|
+
}
|
|
2609
|
+
if (typeof this.body !== 'undefined') {
|
|
2610
|
+
toReturn['body'] = this.body;
|
|
2611
|
+
}
|
|
2612
|
+
if (typeof this.metadata !== 'undefined' && this.metadata !== null) {
|
|
2613
|
+
toReturn['metadata'] = 'toApiJson' in this.metadata ? this.metadata.toApiJson() : this.metadata;
|
|
2614
|
+
}
|
|
2615
|
+
if (typeof this.location !== 'undefined') {
|
|
2616
|
+
toReturn['location'] = this.location;
|
|
2617
|
+
}
|
|
2618
|
+
return toReturn;
|
|
2619
|
+
}
|
|
2620
|
+
}
|
|
2478
2621
|
class SetLastSeenRequest {
|
|
2479
2622
|
static fromProto(proto) {
|
|
2480
2623
|
let m = new SetLastSeenRequest();
|
|
@@ -2563,6 +2706,9 @@ class UpdateWidgetRequest {
|
|
|
2563
2706
|
static fromProto(proto) {
|
|
2564
2707
|
let m = new UpdateWidgetRequest();
|
|
2565
2708
|
m = Object.assign(m, proto);
|
|
2709
|
+
if (proto.fieldMask) {
|
|
2710
|
+
m.fieldMask = FieldMask.fromProto(proto.fieldMask);
|
|
2711
|
+
}
|
|
2566
2712
|
return m;
|
|
2567
2713
|
}
|
|
2568
2714
|
constructor(kwargs) {
|
|
@@ -2585,6 +2731,15 @@ class UpdateWidgetRequest {
|
|
|
2585
2731
|
if (typeof this.allowedUrls !== 'undefined') {
|
|
2586
2732
|
toReturn['allowedUrls'] = this.allowedUrls;
|
|
2587
2733
|
}
|
|
2734
|
+
if (typeof this.welcomeMessage !== 'undefined') {
|
|
2735
|
+
toReturn['welcomeMessage'] = this.welcomeMessage;
|
|
2736
|
+
}
|
|
2737
|
+
if (typeof this.isEnabled !== 'undefined') {
|
|
2738
|
+
toReturn['isEnabled'] = this.isEnabled;
|
|
2739
|
+
}
|
|
2740
|
+
if (typeof this.fieldMask !== 'undefined' && this.fieldMask !== null) {
|
|
2741
|
+
toReturn['fieldMask'] = 'toApiJson' in this.fieldMask ? this.fieldMask.toApiJson() : this.fieldMask;
|
|
2742
|
+
}
|
|
2588
2743
|
return toReturn;
|
|
2589
2744
|
}
|
|
2590
2745
|
}
|
|
@@ -2821,6 +2976,14 @@ class ConversationApiService {
|
|
|
2821
2976
|
return this.http.post(this._host + "/conversation.v1.ConversationService/GetMultiWidgetMessages", request.toApiJson(), this.apiOptions())
|
|
2822
2977
|
.pipe(map(resp => GetMultiWidgetMessagesResponse.fromProto(resp)));
|
|
2823
2978
|
}
|
|
2979
|
+
sendWidgetMessage(r) {
|
|
2980
|
+
const request = (r.toApiJson) ? r : new SendWidgetMessageRequest(r);
|
|
2981
|
+
return this.http.post(this._host + "/conversation.v1.ConversationService/SendWidgetMessage", request.toApiJson(), { ...this.apiOptions(), observe: 'response' });
|
|
2982
|
+
}
|
|
2983
|
+
getWidgetConversation() {
|
|
2984
|
+
return this.http.post(this._host + "/conversation.v1.ConversationService/GetWidgetConversation", {}, this.apiOptions())
|
|
2985
|
+
.pipe(map(resp => GetWidgetConversationResponse.fromProto(resp)));
|
|
2986
|
+
}
|
|
2824
2987
|
createWidget(r) {
|
|
2825
2988
|
const request = (r.toApiJson) ? r : new CreateWidgetRequest(r);
|
|
2826
2989
|
return this.http.post(this._host + "/conversation.v1.ConversationService/CreateWidget", request.toApiJson(), this.apiOptions())
|
|
@@ -2845,6 +3008,11 @@ class ConversationApiService {
|
|
|
2845
3008
|
return this.http.post(this._host + "/conversation.v1.ConversationService/ListWidgets", request.toApiJson(), this.apiOptions())
|
|
2846
3009
|
.pipe(map(resp => ListWidgetsResponse.fromProto(resp)));
|
|
2847
3010
|
}
|
|
3011
|
+
getWidgetConfig(r) {
|
|
3012
|
+
const request = (r.toApiJson) ? r : new GetWidgetConfigRequest(r);
|
|
3013
|
+
return this.http.post(this._host + "/conversation.v1.ConversationService/GetWidgetConfig", request.toApiJson(), this.apiOptions())
|
|
3014
|
+
.pipe(map(resp => GetWidgetConfigResponse.fromProto(resp)));
|
|
3015
|
+
}
|
|
2848
3016
|
}
|
|
2849
3017
|
ConversationApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ConversationApiService, deps: [{ token: i1.HttpClient }, { token: HostService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2850
3018
|
ConversationApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ConversationApiService, providedIn: 'root' });
|
|
@@ -2907,5 +3075,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
|
2907
3075
|
* Generated bundle index. Do not edit.
|
|
2908
3076
|
*/
|
|
2909
3077
|
|
|
2910
|
-
export { Access, AddConversationToConversationViewRequest, AddMultiParticipantsRequest, AddMultiParticipantsResponse, Address, Configuration, Conversation, ConversationApiService, ConversationChannel, ConversationKey, ConversationMessageCount, CreateConversationRequest, CreateConversationResponse, CreateMultiMessagesRequest, CreateWidgetConversationRequest, CreateWidgetConversationResponse, CreateWidgetRequest, CreateWidgetResponse, DeleteConversationRequest, DeleteMessageRequest, DeleteWidgetRequest, GetConfigurationRequest, GetConfigurationResponse, GetConversationByKeyRequest, GetConversationByKeyResponse, GetConversationViewsRequest, GetConversationViewsResponse, GetMessageRequest, GetMultiConfigurationRequest, GetMultiConfigurationResponse, GetMultiConversationDetailsRequest, GetMultiConversationDetailsResponse, GetMultiConversationDetailsResponseDetailedConversation, GetMultiConversationMessageCountRequest, GetMultiConversationMessageCountResponse, GetMultiConversationMessageCountResponseCountsEntry, GetMultiMessagesRequest, GetMultiMessagesResponse, GetMultiParticipantsRequest, GetMultiParticipantsResponse, GetMultiWidgetMessagesRequest, GetMultiWidgetMessagesResponse, GetParticipantsByKeyRequest, GetParticipantsByKeyResponse, GetWidgetRequest, GetWidgetResponse, GlobalParticipantType, InboxApiService, LastSeenByParticipant, ListMessagesRequest, ListMessagesRequestListMessagesFilters, ListMessagesResponse, ListWidgetsRequest, ListWidgetsResponse, LookupConversationsRequest, LookupConversationsRequestLookupConversationsFilters, LookupConversationsResponse, LookupConversationsResponseConversations, Media, Message, MessageStatus, MessageType, Metadata, MetadataDataEntry, MetadataIdentifier, PagedRequestOptions, PagedResponseMetadata, Participant, ParticipantKey, ParticipantMessageStatus, ParticipantType, PlatformLocation, ReceiveMessageRequest, ReceiveMessageRequestMetadataEntry, RemoveConversationFromConversationViewRequest, SearchConversationsRequest, SearchConversationsResponse, SearchConversationsResponseDetailedConversation, SendMessageRequest, SendMessageResponse, SendStatus, SetLastSeenRequest, SetLastSeenRequestStatus, SetLastSeenResponse, SortDirection, SubjectParticipant, UpdateMessageStatusRequest, UpdateWidgetRequest, UpdateWidgetResponse, UpsertConfigurationRequest, UpsertConfigurationResponse, View, ViewType, Widget, WidgetPosition };
|
|
3078
|
+
export { Access, AddConversationToConversationViewRequest, AddMultiParticipantsRequest, AddMultiParticipantsResponse, Address, Configuration, Conversation, ConversationApiService, ConversationChannel, ConversationKey, ConversationMessageCount, CreateConversationRequest, CreateConversationResponse, CreateMultiMessagesRequest, CreateWidgetConversationRequest, CreateWidgetConversationResponse, CreateWidgetRequest, CreateWidgetResponse, DeleteConversationRequest, DeleteMessageRequest, DeleteWidgetRequest, FieldMask, GetConfigurationRequest, GetConfigurationResponse, GetConversationByKeyRequest, GetConversationByKeyResponse, GetConversationViewsRequest, GetConversationViewsResponse, GetMessageRequest, GetMultiConfigurationRequest, GetMultiConfigurationResponse, GetMultiConversationDetailsRequest, GetMultiConversationDetailsResponse, GetMultiConversationDetailsResponseDetailedConversation, GetMultiConversationMessageCountRequest, GetMultiConversationMessageCountResponse, GetMultiConversationMessageCountResponseCountsEntry, GetMultiMessagesRequest, GetMultiMessagesResponse, GetMultiParticipantsRequest, GetMultiParticipantsResponse, GetMultiWidgetMessagesRequest, GetMultiWidgetMessagesResponse, GetParticipantsByKeyRequest, GetParticipantsByKeyResponse, GetWidgetConfigRequest, GetWidgetConfigResponse, GetWidgetConversationResponse, GetWidgetRequest, GetWidgetResponse, GlobalParticipantType, InboxApiService, LastSeenByParticipant, ListMessagesRequest, ListMessagesRequestListMessagesFilters, ListMessagesResponse, ListWidgetsRequest, ListWidgetsResponse, LookupConversationsRequest, LookupConversationsRequestLookupConversationsFilters, LookupConversationsResponse, LookupConversationsResponseConversations, Media, Message, MessageStatus, MessageType, Metadata, MetadataDataEntry, MetadataIdentifier, PagedRequestOptions, PagedResponseMetadata, Participant, ParticipantKey, ParticipantMessageStatus, ParticipantType, PlatformLocation, ReceiveMessageRequest, ReceiveMessageRequestMetadataEntry, RemoveConversationFromConversationViewRequest, SearchConversationsRequest, SearchConversationsResponse, SearchConversationsResponseDetailedConversation, SendMessageRequest, SendMessageResponse, SendStatus, SendWidgetMessageRequest, SetLastSeenRequest, SetLastSeenRequestStatus, SetLastSeenResponse, SortDirection, SubjectParticipant, UpdateMessageStatusRequest, UpdateWidgetRequest, UpdateWidgetResponse, UpsertConfigurationRequest, UpsertConfigurationResponse, View, ViewType, Widget, WidgetPosition };
|
|
2911
3079
|
//# sourceMappingURL=vendasta-conversation.mjs.map
|