@ember-home/unbound-ts-client 0.0.42 → 0.0.44
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/dist/index.d.mts +261 -403
- package/dist/index.d.ts +261 -403
- package/dist/index.js +386 -402
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +314 -330
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -722,6 +722,12 @@ interface APIConversation {
|
|
|
722
722
|
* @memberof APIConversation
|
|
723
723
|
*/
|
|
724
724
|
'lastMessageAt'?: string | null;
|
|
725
|
+
/**
|
|
726
|
+
*
|
|
727
|
+
* @type {string}
|
|
728
|
+
* @memberof APIConversation
|
|
729
|
+
*/
|
|
730
|
+
'lastMessagePreview'?: string | null;
|
|
725
731
|
/**
|
|
726
732
|
*
|
|
727
733
|
* @type {string}
|
|
@@ -741,62 +747,6 @@ interface APIConversation {
|
|
|
741
747
|
*/
|
|
742
748
|
'conversationTypeData': Conversationtypedata;
|
|
743
749
|
}
|
|
744
|
-
/**
|
|
745
|
-
*
|
|
746
|
-
* @export
|
|
747
|
-
* @interface APIConversationCreate
|
|
748
|
-
*/
|
|
749
|
-
interface APIConversationCreate {
|
|
750
|
-
/**
|
|
751
|
-
*
|
|
752
|
-
* @type {ConversationStatus}
|
|
753
|
-
* @memberof APIConversationCreate
|
|
754
|
-
*/
|
|
755
|
-
'status': ConversationStatus;
|
|
756
|
-
/**
|
|
757
|
-
*
|
|
758
|
-
* @type {Conversationtypedata1}
|
|
759
|
-
* @memberof APIConversationCreate
|
|
760
|
-
*/
|
|
761
|
-
'conversationTypeData': Conversationtypedata1;
|
|
762
|
-
/**
|
|
763
|
-
*
|
|
764
|
-
* @type {string}
|
|
765
|
-
* @memberof APIConversationCreate
|
|
766
|
-
*/
|
|
767
|
-
'providerConversationId': string;
|
|
768
|
-
}
|
|
769
|
-
/**
|
|
770
|
-
*
|
|
771
|
-
* @export
|
|
772
|
-
* @interface APIConversationUpdate
|
|
773
|
-
*/
|
|
774
|
-
interface APIConversationUpdate {
|
|
775
|
-
/**
|
|
776
|
-
*
|
|
777
|
-
* @type {ConversationStatus}
|
|
778
|
-
* @memberof APIConversationUpdate
|
|
779
|
-
*/
|
|
780
|
-
'status': ConversationStatus;
|
|
781
|
-
/**
|
|
782
|
-
*
|
|
783
|
-
* @type {Conversationtypedata2}
|
|
784
|
-
* @memberof APIConversationUpdate
|
|
785
|
-
*/
|
|
786
|
-
'conversationTypeData': Conversationtypedata2;
|
|
787
|
-
/**
|
|
788
|
-
*
|
|
789
|
-
* @type {string}
|
|
790
|
-
* @memberof APIConversationUpdate
|
|
791
|
-
*/
|
|
792
|
-
'updatedBy': string;
|
|
793
|
-
/**
|
|
794
|
-
*
|
|
795
|
-
* @type {string}
|
|
796
|
-
* @memberof APIConversationUpdate
|
|
797
|
-
*/
|
|
798
|
-
'lastReadMessageId'?: string | null;
|
|
799
|
-
}
|
|
800
750
|
/**
|
|
801
751
|
*
|
|
802
752
|
* @export
|
|
@@ -1043,6 +993,24 @@ interface APIMessage {
|
|
|
1043
993
|
* @memberof APIMessage
|
|
1044
994
|
*/
|
|
1045
995
|
'scheduledAt'?: string | null;
|
|
996
|
+
/**
|
|
997
|
+
*
|
|
998
|
+
* @type {string}
|
|
999
|
+
* @memberof APIMessage
|
|
1000
|
+
*/
|
|
1001
|
+
'pausedAt'?: string | null;
|
|
1002
|
+
/**
|
|
1003
|
+
*
|
|
1004
|
+
* @type {string}
|
|
1005
|
+
* @memberof APIMessage
|
|
1006
|
+
*/
|
|
1007
|
+
'cancelledAt'?: string | null;
|
|
1008
|
+
/**
|
|
1009
|
+
*
|
|
1010
|
+
* @type {string}
|
|
1011
|
+
* @memberof APIMessage
|
|
1012
|
+
*/
|
|
1013
|
+
'cancelledBy'?: string | null;
|
|
1046
1014
|
/**
|
|
1047
1015
|
*
|
|
1048
1016
|
* @type {Participanttypedata}
|
|
@@ -1100,58 +1068,16 @@ interface APIMessage {
|
|
|
1100
1068
|
interface APIMessageCreate {
|
|
1101
1069
|
/**
|
|
1102
1070
|
*
|
|
1103
|
-
* @type {
|
|
1104
|
-
* @memberof APIMessageCreate
|
|
1105
|
-
*/
|
|
1106
|
-
'body': string;
|
|
1107
|
-
/**
|
|
1108
|
-
*
|
|
1109
|
-
* @type {string}
|
|
1110
|
-
* @memberof APIMessageCreate
|
|
1111
|
-
*/
|
|
1112
|
-
'sentAt'?: string | null;
|
|
1113
|
-
/**
|
|
1114
|
-
*
|
|
1115
|
-
* @type {string}
|
|
1116
|
-
* @memberof APIMessageCreate
|
|
1117
|
-
*/
|
|
1118
|
-
'deliveredAt'?: string | null;
|
|
1119
|
-
/**
|
|
1120
|
-
*
|
|
1121
|
-
* @type {string}
|
|
1122
|
-
* @memberof APIMessageCreate
|
|
1123
|
-
*/
|
|
1124
|
-
'readAt'?: string | null;
|
|
1125
|
-
/**
|
|
1126
|
-
*
|
|
1127
|
-
* @type {string}
|
|
1128
|
-
* @memberof APIMessageCreate
|
|
1129
|
-
*/
|
|
1130
|
-
'failedAt'?: string | null;
|
|
1131
|
-
/**
|
|
1132
|
-
*
|
|
1133
|
-
* @type {string}
|
|
1134
|
-
* @memberof APIMessageCreate
|
|
1135
|
-
*/
|
|
1136
|
-
'scheduledAt'?: string | null;
|
|
1137
|
-
/**
|
|
1138
|
-
*
|
|
1139
|
-
* @type {Participanttypedata}
|
|
1071
|
+
* @type {Messagetypedata1}
|
|
1140
1072
|
* @memberof APIMessageCreate
|
|
1141
1073
|
*/
|
|
1142
|
-
'
|
|
1074
|
+
'messageTypeData': Messagetypedata1;
|
|
1143
1075
|
/**
|
|
1144
1076
|
*
|
|
1145
1077
|
* @type {string}
|
|
1146
1078
|
* @memberof APIMessageCreate
|
|
1147
1079
|
*/
|
|
1148
|
-
'
|
|
1149
|
-
/**
|
|
1150
|
-
*
|
|
1151
|
-
* @type {Messagetypedata1}
|
|
1152
|
-
* @memberof APIMessageCreate
|
|
1153
|
-
*/
|
|
1154
|
-
'messageTypeData': Messagetypedata1;
|
|
1080
|
+
'body': string;
|
|
1155
1081
|
}
|
|
1156
1082
|
/**
|
|
1157
1083
|
*
|
|
@@ -1709,17 +1635,7 @@ type ConversationStatus = typeof ConversationStatus[keyof typeof ConversationSta
|
|
|
1709
1635
|
* @type Conversationtypedata
|
|
1710
1636
|
* @export
|
|
1711
1637
|
*/
|
|
1712
|
-
type Conversationtypedata =
|
|
1713
|
-
/**
|
|
1714
|
-
* @type Conversationtypedata1
|
|
1715
|
-
* @export
|
|
1716
|
-
*/
|
|
1717
|
-
type Conversationtypedata1 = SrcResourceModelsHelperModelsCustomBaseModelCreateApi1 | SrcResourceModelsHelperModelsCustomBaseModelCreateApi2;
|
|
1718
|
-
/**
|
|
1719
|
-
* @type Conversationtypedata2
|
|
1720
|
-
* @export
|
|
1721
|
-
*/
|
|
1722
|
-
type Conversationtypedata2 = SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1 | SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2;
|
|
1638
|
+
type Conversationtypedata = EmailConversationDataApi | ProviderConversationDataApi | TwilioConversationDataApi;
|
|
1723
1639
|
/**
|
|
1724
1640
|
*
|
|
1725
1641
|
* @export
|
|
@@ -1777,6 +1693,23 @@ interface EmailApi {
|
|
|
1777
1693
|
*/
|
|
1778
1694
|
'email': string;
|
|
1779
1695
|
}
|
|
1696
|
+
/**
|
|
1697
|
+
*
|
|
1698
|
+
* @export
|
|
1699
|
+
* @interface EmailConversationDataApi
|
|
1700
|
+
*/
|
|
1701
|
+
interface EmailConversationDataApi {
|
|
1702
|
+
/**
|
|
1703
|
+
*
|
|
1704
|
+
* @type {string}
|
|
1705
|
+
* @memberof EmailConversationDataApi
|
|
1706
|
+
*/
|
|
1707
|
+
'conversationType': EmailConversationDataApiConversationTypeEnum;
|
|
1708
|
+
}
|
|
1709
|
+
declare const EmailConversationDataApiConversationTypeEnum: {
|
|
1710
|
+
readonly Email: "EMAIL";
|
|
1711
|
+
};
|
|
1712
|
+
type EmailConversationDataApiConversationTypeEnum = typeof EmailConversationDataApiConversationTypeEnum[keyof typeof EmailConversationDataApiConversationTypeEnum];
|
|
1780
1713
|
/**
|
|
1781
1714
|
*
|
|
1782
1715
|
* @export
|
|
@@ -1998,6 +1931,19 @@ interface ListResponseAPIProvider {
|
|
|
1998
1931
|
*/
|
|
1999
1932
|
'data': Array<APIProvider>;
|
|
2000
1933
|
}
|
|
1934
|
+
/**
|
|
1935
|
+
*
|
|
1936
|
+
* @export
|
|
1937
|
+
* @interface ListResponseAPISuggestedReply
|
|
1938
|
+
*/
|
|
1939
|
+
interface ListResponseAPISuggestedReply {
|
|
1940
|
+
/**
|
|
1941
|
+
*
|
|
1942
|
+
* @type {Array<object>}
|
|
1943
|
+
* @memberof ListResponseAPISuggestedReply
|
|
1944
|
+
*/
|
|
1945
|
+
'data': Array<object>;
|
|
1946
|
+
}
|
|
2001
1947
|
/**
|
|
2002
1948
|
*
|
|
2003
1949
|
* @export
|
|
@@ -2032,7 +1978,7 @@ type Messagetypedata = RentalProviderMessageApi | TwilioProviderMessageApi | obj
|
|
|
2032
1978
|
* @type Messagetypedata1
|
|
2033
1979
|
* @export
|
|
2034
1980
|
*/
|
|
2035
|
-
type Messagetypedata1 =
|
|
1981
|
+
type Messagetypedata1 = SrcResourceModelsHelperModelsCustomBaseModelCreateApi1 | SrcResourceModelsHelperModelsCustomBaseModelCreateApi2 | SrcResourceModelsHelperModelsCustomBaseModelCreateApi3;
|
|
2036
1982
|
/**
|
|
2037
1983
|
*
|
|
2038
1984
|
* @export
|
|
@@ -2599,24 +2545,24 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi1 {
|
|
|
2599
2545
|
* @type {string}
|
|
2600
2546
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
2601
2547
|
*/
|
|
2602
|
-
'
|
|
2548
|
+
'messageType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum;
|
|
2603
2549
|
/**
|
|
2604
2550
|
*
|
|
2605
2551
|
* @type {string}
|
|
2606
2552
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
2607
2553
|
*/
|
|
2608
|
-
'
|
|
2554
|
+
'providerChannelName': string;
|
|
2609
2555
|
/**
|
|
2610
2556
|
*
|
|
2611
|
-
* @type {
|
|
2557
|
+
* @type {ProviderCommunicationType}
|
|
2612
2558
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
2613
2559
|
*/
|
|
2614
|
-
'
|
|
2560
|
+
'providerCommunicationType': ProviderCommunicationType;
|
|
2615
2561
|
}
|
|
2616
|
-
declare const
|
|
2617
|
-
readonly
|
|
2562
|
+
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum: {
|
|
2563
|
+
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
2618
2564
|
};
|
|
2619
|
-
type
|
|
2565
|
+
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum];
|
|
2620
2566
|
/**
|
|
2621
2567
|
*
|
|
2622
2568
|
* @export
|
|
@@ -2628,18 +2574,18 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi2 {
|
|
|
2628
2574
|
* @type {string}
|
|
2629
2575
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2
|
|
2630
2576
|
*/
|
|
2631
|
-
'
|
|
2577
|
+
'messageType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum;
|
|
2632
2578
|
/**
|
|
2633
2579
|
*
|
|
2634
|
-
* @type {
|
|
2580
|
+
* @type {string}
|
|
2635
2581
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2
|
|
2636
2582
|
*/
|
|
2637
|
-
'
|
|
2583
|
+
'body': string;
|
|
2638
2584
|
}
|
|
2639
|
-
declare const
|
|
2640
|
-
readonly
|
|
2585
|
+
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum: {
|
|
2586
|
+
readonly Twilio: "TWILIO";
|
|
2641
2587
|
};
|
|
2642
|
-
type
|
|
2588
|
+
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum];
|
|
2643
2589
|
/**
|
|
2644
2590
|
*
|
|
2645
2591
|
* @export
|
|
@@ -2657,128 +2603,30 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi3 {
|
|
|
2657
2603
|
* @type {string}
|
|
2658
2604
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3
|
|
2659
2605
|
*/
|
|
2660
|
-
'providerChannelName': string;
|
|
2661
|
-
/**
|
|
2662
|
-
*
|
|
2663
|
-
* @type {ProviderCommunicationType}
|
|
2664
|
-
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3
|
|
2665
|
-
*/
|
|
2666
|
-
'providerCommunicationType': ProviderCommunicationType;
|
|
2667
|
-
}
|
|
2668
|
-
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum: {
|
|
2669
|
-
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
2670
|
-
};
|
|
2671
|
-
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum];
|
|
2672
|
-
/**
|
|
2673
|
-
*
|
|
2674
|
-
* @export
|
|
2675
|
-
* @interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi4
|
|
2676
|
-
*/
|
|
2677
|
-
interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi4 {
|
|
2678
|
-
/**
|
|
2679
|
-
*
|
|
2680
|
-
* @type {string}
|
|
2681
|
-
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4
|
|
2682
|
-
*/
|
|
2683
|
-
'messageType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi4MessageTypeEnum;
|
|
2684
|
-
/**
|
|
2685
|
-
*
|
|
2686
|
-
* @type {string}
|
|
2687
|
-
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4
|
|
2688
|
-
*/
|
|
2689
|
-
'body': string;
|
|
2690
|
-
}
|
|
2691
|
-
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi4MessageTypeEnum: {
|
|
2692
|
-
readonly Twilio: "TWILIO";
|
|
2693
|
-
};
|
|
2694
|
-
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4MessageTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4MessageTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi4MessageTypeEnum];
|
|
2695
|
-
/**
|
|
2696
|
-
*
|
|
2697
|
-
* @export
|
|
2698
|
-
* @interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi5
|
|
2699
|
-
*/
|
|
2700
|
-
interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi5 {
|
|
2701
|
-
/**
|
|
2702
|
-
*
|
|
2703
|
-
* @type {string}
|
|
2704
|
-
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi5
|
|
2705
|
-
*/
|
|
2706
|
-
'messageType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi5MessageTypeEnum;
|
|
2707
|
-
/**
|
|
2708
|
-
*
|
|
2709
|
-
* @type {string}
|
|
2710
|
-
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi5
|
|
2711
|
-
*/
|
|
2712
2606
|
'outboundFromManagedEmailId'?: string | null;
|
|
2713
2607
|
/**
|
|
2714
2608
|
*
|
|
2715
2609
|
* @type {string}
|
|
2716
|
-
* @memberof
|
|
2610
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3
|
|
2717
2611
|
*/
|
|
2718
2612
|
'subject': string;
|
|
2719
2613
|
/**
|
|
2720
2614
|
*
|
|
2721
2615
|
* @type {string}
|
|
2722
|
-
* @memberof
|
|
2616
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3
|
|
2723
2617
|
*/
|
|
2724
2618
|
'htmlBody': string | null;
|
|
2725
2619
|
/**
|
|
2726
2620
|
*
|
|
2727
2621
|
* @type {string}
|
|
2728
|
-
* @memberof
|
|
2622
|
+
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3
|
|
2729
2623
|
*/
|
|
2730
2624
|
'plainBody': string | null;
|
|
2731
2625
|
}
|
|
2732
|
-
declare const
|
|
2733
|
-
readonly Email: "EMAIL";
|
|
2734
|
-
};
|
|
2735
|
-
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi5MessageTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi5MessageTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi5MessageTypeEnum];
|
|
2736
|
-
/**
|
|
2737
|
-
*
|
|
2738
|
-
* @export
|
|
2739
|
-
* @interface SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1
|
|
2740
|
-
*/
|
|
2741
|
-
interface SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1 {
|
|
2742
|
-
/**
|
|
2743
|
-
*
|
|
2744
|
-
* @type {string}
|
|
2745
|
-
* @memberof SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1
|
|
2746
|
-
*/
|
|
2747
|
-
'conversationType': SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum;
|
|
2748
|
-
/**
|
|
2749
|
-
*
|
|
2750
|
-
* @type {Array<string>}
|
|
2751
|
-
* @memberof SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1
|
|
2752
|
-
*/
|
|
2753
|
-
'toContactPhoneIds'?: Array<string> | null;
|
|
2754
|
-
}
|
|
2755
|
-
declare const SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum: {
|
|
2756
|
-
readonly Twilio: "TWILIO";
|
|
2757
|
-
};
|
|
2758
|
-
type SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelUpdateApi1ConversationTypeEnum];
|
|
2759
|
-
/**
|
|
2760
|
-
*
|
|
2761
|
-
* @export
|
|
2762
|
-
* @interface SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2
|
|
2763
|
-
*/
|
|
2764
|
-
interface SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2 {
|
|
2765
|
-
/**
|
|
2766
|
-
*
|
|
2767
|
-
* @type {string}
|
|
2768
|
-
* @memberof SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2
|
|
2769
|
-
*/
|
|
2770
|
-
'conversationType': SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum;
|
|
2771
|
-
/**
|
|
2772
|
-
*
|
|
2773
|
-
* @type {Array<string>}
|
|
2774
|
-
* @memberof SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2
|
|
2775
|
-
*/
|
|
2776
|
-
'emailIds'?: Array<string> | null;
|
|
2777
|
-
}
|
|
2778
|
-
declare const SrcResourceModelsHelperModelsCustomBaseModelUpdateApi2ConversationTypeEnum: {
|
|
2626
|
+
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum: {
|
|
2779
2627
|
readonly Email: "EMAIL";
|
|
2780
2628
|
};
|
|
2781
|
-
type
|
|
2629
|
+
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum];
|
|
2782
2630
|
/**
|
|
2783
2631
|
*
|
|
2784
2632
|
* @export
|
|
@@ -2794,7 +2642,7 @@ type SrcResourceModelsListingsModelListingBaseSortBy = typeof SrcResourceModelsL
|
|
|
2794
2642
|
* @enum {string}
|
|
2795
2643
|
*/
|
|
2796
2644
|
declare const SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy: {
|
|
2797
|
-
readonly
|
|
2645
|
+
readonly SentAt: "sent_at";
|
|
2798
2646
|
};
|
|
2799
2647
|
type SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy = typeof SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy[keyof typeof SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy];
|
|
2800
2648
|
/**
|
|
@@ -3830,14 +3678,6 @@ declare class ContactsApi extends BaseAPI {
|
|
|
3830
3678
|
* @export
|
|
3831
3679
|
*/
|
|
3832
3680
|
declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3833
|
-
/**
|
|
3834
|
-
* Conversations Create
|
|
3835
|
-
* @summary Conversations Create
|
|
3836
|
-
* @param {APIConversationCreate} aPIConversationCreate
|
|
3837
|
-
* @param {*} [options] Override http request option.
|
|
3838
|
-
* @throws {RequiredError}
|
|
3839
|
-
*/
|
|
3840
|
-
conversationsCreate: (aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3841
3681
|
/**
|
|
3842
3682
|
* Conversations Get
|
|
3843
3683
|
* @summary Conversations Get
|
|
@@ -3847,7 +3687,7 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3847
3687
|
*/
|
|
3848
3688
|
conversationsGet: (conversationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3849
3689
|
/**
|
|
3850
|
-
* List all conversations,
|
|
3690
|
+
* List all conversations, must filter by contact_id
|
|
3851
3691
|
* @summary Conversations List
|
|
3852
3692
|
* @param {string | null} [searchString]
|
|
3853
3693
|
* @param {string | null} [contactId]
|
|
@@ -3860,15 +3700,6 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3860
3700
|
* @throws {RequiredError}
|
|
3861
3701
|
*/
|
|
3862
3702
|
conversationsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsConversationsModelConversationsModelConversationSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3863
|
-
/**
|
|
3864
|
-
* Conversations Update
|
|
3865
|
-
* @summary Conversations Update
|
|
3866
|
-
* @param {string} conversationId
|
|
3867
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
3868
|
-
* @param {*} [options] Override http request option.
|
|
3869
|
-
* @throws {RequiredError}
|
|
3870
|
-
*/
|
|
3871
|
-
conversationsUpdate: (conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3872
3703
|
/**
|
|
3873
3704
|
* Messages Create
|
|
3874
3705
|
* @summary Messages Create
|
|
@@ -3889,9 +3720,8 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3889
3720
|
/**
|
|
3890
3721
|
* Messages List
|
|
3891
3722
|
* @summary Messages List
|
|
3723
|
+
* @param {string} [conversationId]
|
|
3892
3724
|
* @param {string | null} [searchString]
|
|
3893
|
-
* @param {string | null} [contactId]
|
|
3894
|
-
* @param {string | null} [conversationId]
|
|
3895
3725
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3896
3726
|
* @param {number} [limit]
|
|
3897
3727
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3900,21 +3730,13 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3900
3730
|
* @param {*} [options] Override http request option.
|
|
3901
3731
|
* @throws {RequiredError}
|
|
3902
3732
|
*/
|
|
3903
|
-
messagesList: (
|
|
3733
|
+
messagesList: (conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3904
3734
|
};
|
|
3905
3735
|
/**
|
|
3906
3736
|
* ConversationsApi - functional programming interface
|
|
3907
3737
|
* @export
|
|
3908
3738
|
*/
|
|
3909
3739
|
declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
3910
|
-
/**
|
|
3911
|
-
* Conversations Create
|
|
3912
|
-
* @summary Conversations Create
|
|
3913
|
-
* @param {APIConversationCreate} aPIConversationCreate
|
|
3914
|
-
* @param {*} [options] Override http request option.
|
|
3915
|
-
* @throws {RequiredError}
|
|
3916
|
-
*/
|
|
3917
|
-
conversationsCreate(aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
|
|
3918
3740
|
/**
|
|
3919
3741
|
* Conversations Get
|
|
3920
3742
|
* @summary Conversations Get
|
|
@@ -3924,7 +3746,7 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
3924
3746
|
*/
|
|
3925
3747
|
conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
|
|
3926
3748
|
/**
|
|
3927
|
-
* List all conversations,
|
|
3749
|
+
* List all conversations, must filter by contact_id
|
|
3928
3750
|
* @summary Conversations List
|
|
3929
3751
|
* @param {string | null} [searchString]
|
|
3930
3752
|
* @param {string | null} [contactId]
|
|
@@ -3937,15 +3759,6 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
3937
3759
|
* @throws {RequiredError}
|
|
3938
3760
|
*/
|
|
3939
3761
|
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsConversationsModelConversationsModelConversationSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIConversation>>;
|
|
3940
|
-
/**
|
|
3941
|
-
* Conversations Update
|
|
3942
|
-
* @summary Conversations Update
|
|
3943
|
-
* @param {string} conversationId
|
|
3944
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
3945
|
-
* @param {*} [options] Override http request option.
|
|
3946
|
-
* @throws {RequiredError}
|
|
3947
|
-
*/
|
|
3948
|
-
conversationsUpdate(conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
|
|
3949
3762
|
/**
|
|
3950
3763
|
* Messages Create
|
|
3951
3764
|
* @summary Messages Create
|
|
@@ -3966,9 +3779,8 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
3966
3779
|
/**
|
|
3967
3780
|
* Messages List
|
|
3968
3781
|
* @summary Messages List
|
|
3782
|
+
* @param {string} [conversationId]
|
|
3969
3783
|
* @param {string | null} [searchString]
|
|
3970
|
-
* @param {string | null} [contactId]
|
|
3971
|
-
* @param {string | null} [conversationId]
|
|
3972
3784
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3973
3785
|
* @param {number} [limit]
|
|
3974
3786
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3977,21 +3789,13 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
3977
3789
|
* @param {*} [options] Override http request option.
|
|
3978
3790
|
* @throws {RequiredError}
|
|
3979
3791
|
*/
|
|
3980
|
-
messagesList(
|
|
3792
|
+
messagesList(conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIMessage>>;
|
|
3981
3793
|
};
|
|
3982
3794
|
/**
|
|
3983
3795
|
* ConversationsApi - factory interface
|
|
3984
3796
|
* @export
|
|
3985
3797
|
*/
|
|
3986
3798
|
declare const ConversationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3987
|
-
/**
|
|
3988
|
-
* Conversations Create
|
|
3989
|
-
* @summary Conversations Create
|
|
3990
|
-
* @param {APIConversationCreate} aPIConversationCreate
|
|
3991
|
-
* @param {*} [options] Override http request option.
|
|
3992
|
-
* @throws {RequiredError}
|
|
3993
|
-
*/
|
|
3994
|
-
conversationsCreate(aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
|
|
3995
3799
|
/**
|
|
3996
3800
|
* Conversations Get
|
|
3997
3801
|
* @summary Conversations Get
|
|
@@ -4001,7 +3805,7 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
4001
3805
|
*/
|
|
4002
3806
|
conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
|
|
4003
3807
|
/**
|
|
4004
|
-
* List all conversations,
|
|
3808
|
+
* List all conversations, must filter by contact_id
|
|
4005
3809
|
* @summary Conversations List
|
|
4006
3810
|
* @param {string | null} [searchString]
|
|
4007
3811
|
* @param {string | null} [contactId]
|
|
@@ -4014,15 +3818,6 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
4014
3818
|
* @throws {RequiredError}
|
|
4015
3819
|
*/
|
|
4016
3820
|
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsConversationsModelConversationsModelConversationSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIConversation>;
|
|
4017
|
-
/**
|
|
4018
|
-
* Conversations Update
|
|
4019
|
-
* @summary Conversations Update
|
|
4020
|
-
* @param {string} conversationId
|
|
4021
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
4022
|
-
* @param {*} [options] Override http request option.
|
|
4023
|
-
* @throws {RequiredError}
|
|
4024
|
-
*/
|
|
4025
|
-
conversationsUpdate(conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
|
|
4026
3821
|
/**
|
|
4027
3822
|
* Messages Create
|
|
4028
3823
|
* @summary Messages Create
|
|
@@ -4043,9 +3838,8 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
4043
3838
|
/**
|
|
4044
3839
|
* Messages List
|
|
4045
3840
|
* @summary Messages List
|
|
3841
|
+
* @param {string} [conversationId]
|
|
4046
3842
|
* @param {string | null} [searchString]
|
|
4047
|
-
* @param {string | null} [contactId]
|
|
4048
|
-
* @param {string | null} [conversationId]
|
|
4049
3843
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4050
3844
|
* @param {number} [limit]
|
|
4051
3845
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -4054,7 +3848,7 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
4054
3848
|
* @param {*} [options] Override http request option.
|
|
4055
3849
|
* @throws {RequiredError}
|
|
4056
3850
|
*/
|
|
4057
|
-
messagesList(
|
|
3851
|
+
messagesList(conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIMessage>;
|
|
4058
3852
|
};
|
|
4059
3853
|
/**
|
|
4060
3854
|
* ConversationsApi - object-oriented interface
|
|
@@ -4063,15 +3857,6 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
4063
3857
|
* @extends {BaseAPI}
|
|
4064
3858
|
*/
|
|
4065
3859
|
declare class ConversationsApi extends BaseAPI {
|
|
4066
|
-
/**
|
|
4067
|
-
* Conversations Create
|
|
4068
|
-
* @summary Conversations Create
|
|
4069
|
-
* @param {APIConversationCreate} aPIConversationCreate
|
|
4070
|
-
* @param {*} [options] Override http request option.
|
|
4071
|
-
* @throws {RequiredError}
|
|
4072
|
-
* @memberof ConversationsApi
|
|
4073
|
-
*/
|
|
4074
|
-
conversationsCreate(aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
|
|
4075
3860
|
/**
|
|
4076
3861
|
* Conversations Get
|
|
4077
3862
|
* @summary Conversations Get
|
|
@@ -4082,7 +3867,7 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
4082
3867
|
*/
|
|
4083
3868
|
conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
|
|
4084
3869
|
/**
|
|
4085
|
-
* List all conversations,
|
|
3870
|
+
* List all conversations, must filter by contact_id
|
|
4086
3871
|
* @summary Conversations List
|
|
4087
3872
|
* @param {string | null} [searchString]
|
|
4088
3873
|
* @param {string | null} [contactId]
|
|
@@ -4096,16 +3881,6 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
4096
3881
|
* @memberof ConversationsApi
|
|
4097
3882
|
*/
|
|
4098
3883
|
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsConversationsModelConversationsModelConversationSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIConversation, any>>;
|
|
4099
|
-
/**
|
|
4100
|
-
* Conversations Update
|
|
4101
|
-
* @summary Conversations Update
|
|
4102
|
-
* @param {string} conversationId
|
|
4103
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
4104
|
-
* @param {*} [options] Override http request option.
|
|
4105
|
-
* @throws {RequiredError}
|
|
4106
|
-
* @memberof ConversationsApi
|
|
4107
|
-
*/
|
|
4108
|
-
conversationsUpdate(conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
|
|
4109
3884
|
/**
|
|
4110
3885
|
* Messages Create
|
|
4111
3886
|
* @summary Messages Create
|
|
@@ -4128,9 +3903,8 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
4128
3903
|
/**
|
|
4129
3904
|
* Messages List
|
|
4130
3905
|
* @summary Messages List
|
|
3906
|
+
* @param {string} [conversationId]
|
|
4131
3907
|
* @param {string | null} [searchString]
|
|
4132
|
-
* @param {string | null} [contactId]
|
|
4133
|
-
* @param {string | null} [conversationId]
|
|
4134
3908
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4135
3909
|
* @param {number} [limit]
|
|
4136
3910
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -4140,7 +3914,7 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
4140
3914
|
* @throws {RequiredError}
|
|
4141
3915
|
* @memberof ConversationsApi
|
|
4142
3916
|
*/
|
|
4143
|
-
messagesList(
|
|
3917
|
+
messagesList(conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIMessage, any>>;
|
|
4144
3918
|
}
|
|
4145
3919
|
/**
|
|
4146
3920
|
* HostawayApi - axios parameter creator
|
|
@@ -4705,6 +4479,98 @@ declare class ReservationsApi extends BaseAPI {
|
|
|
4705
4479
|
*/
|
|
4706
4480
|
reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIReservation, any>>;
|
|
4707
4481
|
}
|
|
4482
|
+
/**
|
|
4483
|
+
* SuggestedRepliesApi - axios parameter creator
|
|
4484
|
+
* @export
|
|
4485
|
+
*/
|
|
4486
|
+
declare const SuggestedRepliesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4487
|
+
/**
|
|
4488
|
+
* SuggestedReplies Create
|
|
4489
|
+
* @summary SuggestedReplies Create
|
|
4490
|
+
* @param {object} body
|
|
4491
|
+
* @param {*} [options] Override http request option.
|
|
4492
|
+
* @throws {RequiredError}
|
|
4493
|
+
*/
|
|
4494
|
+
suggestedRepliesCreate: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4495
|
+
/**
|
|
4496
|
+
* List all suggested replies, optionally filtered by conversation_id
|
|
4497
|
+
* @summary SuggestedReplies List
|
|
4498
|
+
* @param {string | null} [conversationId] Filter by conversation ID
|
|
4499
|
+
* @param {*} [options] Override http request option.
|
|
4500
|
+
* @throws {RequiredError}
|
|
4501
|
+
*/
|
|
4502
|
+
suggestedRepliesList: (conversationId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4503
|
+
};
|
|
4504
|
+
/**
|
|
4505
|
+
* SuggestedRepliesApi - functional programming interface
|
|
4506
|
+
* @export
|
|
4507
|
+
*/
|
|
4508
|
+
declare const SuggestedRepliesApiFp: (configuration?: Configuration) => {
|
|
4509
|
+
/**
|
|
4510
|
+
* SuggestedReplies Create
|
|
4511
|
+
* @summary SuggestedReplies Create
|
|
4512
|
+
* @param {object} body
|
|
4513
|
+
* @param {*} [options] Override http request option.
|
|
4514
|
+
* @throws {RequiredError}
|
|
4515
|
+
*/
|
|
4516
|
+
suggestedRepliesCreate(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
4517
|
+
/**
|
|
4518
|
+
* List all suggested replies, optionally filtered by conversation_id
|
|
4519
|
+
* @summary SuggestedReplies List
|
|
4520
|
+
* @param {string | null} [conversationId] Filter by conversation ID
|
|
4521
|
+
* @param {*} [options] Override http request option.
|
|
4522
|
+
* @throws {RequiredError}
|
|
4523
|
+
*/
|
|
4524
|
+
suggestedRepliesList(conversationId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPISuggestedReply>>;
|
|
4525
|
+
};
|
|
4526
|
+
/**
|
|
4527
|
+
* SuggestedRepliesApi - factory interface
|
|
4528
|
+
* @export
|
|
4529
|
+
*/
|
|
4530
|
+
declare const SuggestedRepliesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4531
|
+
/**
|
|
4532
|
+
* SuggestedReplies Create
|
|
4533
|
+
* @summary SuggestedReplies Create
|
|
4534
|
+
* @param {object} body
|
|
4535
|
+
* @param {*} [options] Override http request option.
|
|
4536
|
+
* @throws {RequiredError}
|
|
4537
|
+
*/
|
|
4538
|
+
suggestedRepliesCreate(body: object, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
4539
|
+
/**
|
|
4540
|
+
* List all suggested replies, optionally filtered by conversation_id
|
|
4541
|
+
* @summary SuggestedReplies List
|
|
4542
|
+
* @param {string | null} [conversationId] Filter by conversation ID
|
|
4543
|
+
* @param {*} [options] Override http request option.
|
|
4544
|
+
* @throws {RequiredError}
|
|
4545
|
+
*/
|
|
4546
|
+
suggestedRepliesList(conversationId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPISuggestedReply>;
|
|
4547
|
+
};
|
|
4548
|
+
/**
|
|
4549
|
+
* SuggestedRepliesApi - object-oriented interface
|
|
4550
|
+
* @export
|
|
4551
|
+
* @class SuggestedRepliesApi
|
|
4552
|
+
* @extends {BaseAPI}
|
|
4553
|
+
*/
|
|
4554
|
+
declare class SuggestedRepliesApi extends BaseAPI {
|
|
4555
|
+
/**
|
|
4556
|
+
* SuggestedReplies Create
|
|
4557
|
+
* @summary SuggestedReplies Create
|
|
4558
|
+
* @param {object} body
|
|
4559
|
+
* @param {*} [options] Override http request option.
|
|
4560
|
+
* @throws {RequiredError}
|
|
4561
|
+
* @memberof SuggestedRepliesApi
|
|
4562
|
+
*/
|
|
4563
|
+
suggestedRepliesCreate(body: object, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
|
|
4564
|
+
/**
|
|
4565
|
+
* List all suggested replies, optionally filtered by conversation_id
|
|
4566
|
+
* @summary SuggestedReplies List
|
|
4567
|
+
* @param {string | null} [conversationId] Filter by conversation ID
|
|
4568
|
+
* @param {*} [options] Override http request option.
|
|
4569
|
+
* @throws {RequiredError}
|
|
4570
|
+
* @memberof SuggestedRepliesApi
|
|
4571
|
+
*/
|
|
4572
|
+
suggestedRepliesList(conversationId?: string | null, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPISuggestedReply, any>>;
|
|
4573
|
+
}
|
|
4708
4574
|
/**
|
|
4709
4575
|
* UnboundApi - axios parameter creator
|
|
4710
4576
|
* @export
|
|
@@ -4827,14 +4693,6 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4827
4693
|
* @throws {RequiredError}
|
|
4828
4694
|
*/
|
|
4829
4695
|
contactsUpdateListing: (contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4830
|
-
/**
|
|
4831
|
-
* Conversations Create
|
|
4832
|
-
* @summary Conversations Create
|
|
4833
|
-
* @param {APIConversationCreate} aPIConversationCreate
|
|
4834
|
-
* @param {*} [options] Override http request option.
|
|
4835
|
-
* @throws {RequiredError}
|
|
4836
|
-
*/
|
|
4837
|
-
conversationsCreate: (aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4838
4696
|
/**
|
|
4839
4697
|
* Conversations Get
|
|
4840
4698
|
* @summary Conversations Get
|
|
@@ -4844,7 +4702,7 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4844
4702
|
*/
|
|
4845
4703
|
conversationsGet: (conversationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4846
4704
|
/**
|
|
4847
|
-
* List all conversations,
|
|
4705
|
+
* List all conversations, must filter by contact_id
|
|
4848
4706
|
* @summary Conversations List
|
|
4849
4707
|
* @param {string | null} [searchString]
|
|
4850
4708
|
* @param {string | null} [contactId]
|
|
@@ -4857,15 +4715,6 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4857
4715
|
* @throws {RequiredError}
|
|
4858
4716
|
*/
|
|
4859
4717
|
conversationsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsConversationsModelConversationsModelConversationSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4860
|
-
/**
|
|
4861
|
-
* Conversations Update
|
|
4862
|
-
* @summary Conversations Update
|
|
4863
|
-
* @param {string} conversationId
|
|
4864
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
4865
|
-
* @param {*} [options] Override http request option.
|
|
4866
|
-
* @throws {RequiredError}
|
|
4867
|
-
*/
|
|
4868
|
-
conversationsUpdate: (conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4869
4718
|
/**
|
|
4870
4719
|
* Emails Create
|
|
4871
4720
|
* @summary Emails Create
|
|
@@ -4957,9 +4806,8 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4957
4806
|
/**
|
|
4958
4807
|
* Messages List
|
|
4959
4808
|
* @summary Messages List
|
|
4809
|
+
* @param {string} [conversationId]
|
|
4960
4810
|
* @param {string | null} [searchString]
|
|
4961
|
-
* @param {string | null} [contactId]
|
|
4962
|
-
* @param {string | null} [conversationId]
|
|
4963
4811
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4964
4812
|
* @param {number} [limit]
|
|
4965
4813
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -4968,7 +4816,7 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4968
4816
|
* @param {*} [options] Override http request option.
|
|
4969
4817
|
* @throws {RequiredError}
|
|
4970
4818
|
*/
|
|
4971
|
-
messagesList: (
|
|
4819
|
+
messagesList: (conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4972
4820
|
/**
|
|
4973
4821
|
* Phones Create
|
|
4974
4822
|
* @summary Phones Create
|
|
@@ -5057,6 +4905,22 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5057
4905
|
* @throws {RequiredError}
|
|
5058
4906
|
*/
|
|
5059
4907
|
reservationsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4908
|
+
/**
|
|
4909
|
+
* SuggestedReplies Create
|
|
4910
|
+
* @summary SuggestedReplies Create
|
|
4911
|
+
* @param {object} body
|
|
4912
|
+
* @param {*} [options] Override http request option.
|
|
4913
|
+
* @throws {RequiredError}
|
|
4914
|
+
*/
|
|
4915
|
+
suggestedRepliesCreate: (body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4916
|
+
/**
|
|
4917
|
+
* List all suggested replies, optionally filtered by conversation_id
|
|
4918
|
+
* @summary SuggestedReplies List
|
|
4919
|
+
* @param {string | null} [conversationId] Filter by conversation ID
|
|
4920
|
+
* @param {*} [options] Override http request option.
|
|
4921
|
+
* @throws {RequiredError}
|
|
4922
|
+
*/
|
|
4923
|
+
suggestedRepliesList: (conversationId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5060
4924
|
/**
|
|
5061
4925
|
*
|
|
5062
4926
|
* @summary Unifiedwebhook
|
|
@@ -5188,14 +5052,6 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5188
5052
|
* @throws {RequiredError}
|
|
5189
5053
|
*/
|
|
5190
5054
|
contactsUpdateListing(contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5191
|
-
/**
|
|
5192
|
-
* Conversations Create
|
|
5193
|
-
* @summary Conversations Create
|
|
5194
|
-
* @param {APIConversationCreate} aPIConversationCreate
|
|
5195
|
-
* @param {*} [options] Override http request option.
|
|
5196
|
-
* @throws {RequiredError}
|
|
5197
|
-
*/
|
|
5198
|
-
conversationsCreate(aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
|
|
5199
5055
|
/**
|
|
5200
5056
|
* Conversations Get
|
|
5201
5057
|
* @summary Conversations Get
|
|
@@ -5205,7 +5061,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5205
5061
|
*/
|
|
5206
5062
|
conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
|
|
5207
5063
|
/**
|
|
5208
|
-
* List all conversations,
|
|
5064
|
+
* List all conversations, must filter by contact_id
|
|
5209
5065
|
* @summary Conversations List
|
|
5210
5066
|
* @param {string | null} [searchString]
|
|
5211
5067
|
* @param {string | null} [contactId]
|
|
@@ -5218,15 +5074,6 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5218
5074
|
* @throws {RequiredError}
|
|
5219
5075
|
*/
|
|
5220
5076
|
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsConversationsModelConversationsModelConversationSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIConversation>>;
|
|
5221
|
-
/**
|
|
5222
|
-
* Conversations Update
|
|
5223
|
-
* @summary Conversations Update
|
|
5224
|
-
* @param {string} conversationId
|
|
5225
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
5226
|
-
* @param {*} [options] Override http request option.
|
|
5227
|
-
* @throws {RequiredError}
|
|
5228
|
-
*/
|
|
5229
|
-
conversationsUpdate(conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIConversation>>;
|
|
5230
5077
|
/**
|
|
5231
5078
|
* Emails Create
|
|
5232
5079
|
* @summary Emails Create
|
|
@@ -5318,9 +5165,8 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5318
5165
|
/**
|
|
5319
5166
|
* Messages List
|
|
5320
5167
|
* @summary Messages List
|
|
5168
|
+
* @param {string} [conversationId]
|
|
5321
5169
|
* @param {string | null} [searchString]
|
|
5322
|
-
* @param {string | null} [contactId]
|
|
5323
|
-
* @param {string | null} [conversationId]
|
|
5324
5170
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5325
5171
|
* @param {number} [limit]
|
|
5326
5172
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -5329,7 +5175,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5329
5175
|
* @param {*} [options] Override http request option.
|
|
5330
5176
|
* @throws {RequiredError}
|
|
5331
5177
|
*/
|
|
5332
|
-
messagesList(
|
|
5178
|
+
messagesList(conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIMessage>>;
|
|
5333
5179
|
/**
|
|
5334
5180
|
* Phones Create
|
|
5335
5181
|
* @summary Phones Create
|
|
@@ -5418,6 +5264,22 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5418
5264
|
* @throws {RequiredError}
|
|
5419
5265
|
*/
|
|
5420
5266
|
reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIReservation>>;
|
|
5267
|
+
/**
|
|
5268
|
+
* SuggestedReplies Create
|
|
5269
|
+
* @summary SuggestedReplies Create
|
|
5270
|
+
* @param {object} body
|
|
5271
|
+
* @param {*} [options] Override http request option.
|
|
5272
|
+
* @throws {RequiredError}
|
|
5273
|
+
*/
|
|
5274
|
+
suggestedRepliesCreate(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
5275
|
+
/**
|
|
5276
|
+
* List all suggested replies, optionally filtered by conversation_id
|
|
5277
|
+
* @summary SuggestedReplies List
|
|
5278
|
+
* @param {string | null} [conversationId] Filter by conversation ID
|
|
5279
|
+
* @param {*} [options] Override http request option.
|
|
5280
|
+
* @throws {RequiredError}
|
|
5281
|
+
*/
|
|
5282
|
+
suggestedRepliesList(conversationId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseAPISuggestedReply>>;
|
|
5421
5283
|
/**
|
|
5422
5284
|
*
|
|
5423
5285
|
* @summary Unifiedwebhook
|
|
@@ -5549,14 +5411,6 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5549
5411
|
* @throws {RequiredError}
|
|
5550
5412
|
*/
|
|
5551
5413
|
contactsUpdateListing(contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
5552
|
-
/**
|
|
5553
|
-
* Conversations Create
|
|
5554
|
-
* @summary Conversations Create
|
|
5555
|
-
* @param {APIConversationCreate} aPIConversationCreate
|
|
5556
|
-
* @param {*} [options] Override http request option.
|
|
5557
|
-
* @throws {RequiredError}
|
|
5558
|
-
*/
|
|
5559
|
-
conversationsCreate(aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
|
|
5560
5414
|
/**
|
|
5561
5415
|
* Conversations Get
|
|
5562
5416
|
* @summary Conversations Get
|
|
@@ -5566,7 +5420,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5566
5420
|
*/
|
|
5567
5421
|
conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
|
|
5568
5422
|
/**
|
|
5569
|
-
* List all conversations,
|
|
5423
|
+
* List all conversations, must filter by contact_id
|
|
5570
5424
|
* @summary Conversations List
|
|
5571
5425
|
* @param {string | null} [searchString]
|
|
5572
5426
|
* @param {string | null} [contactId]
|
|
@@ -5579,15 +5433,6 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5579
5433
|
* @throws {RequiredError}
|
|
5580
5434
|
*/
|
|
5581
5435
|
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsConversationsModelConversationsModelConversationSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIConversation>;
|
|
5582
|
-
/**
|
|
5583
|
-
* Conversations Update
|
|
5584
|
-
* @summary Conversations Update
|
|
5585
|
-
* @param {string} conversationId
|
|
5586
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
5587
|
-
* @param {*} [options] Override http request option.
|
|
5588
|
-
* @throws {RequiredError}
|
|
5589
|
-
*/
|
|
5590
|
-
conversationsUpdate(conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIConversation>;
|
|
5591
5436
|
/**
|
|
5592
5437
|
* Emails Create
|
|
5593
5438
|
* @summary Emails Create
|
|
@@ -5679,9 +5524,8 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5679
5524
|
/**
|
|
5680
5525
|
* Messages List
|
|
5681
5526
|
* @summary Messages List
|
|
5527
|
+
* @param {string} [conversationId]
|
|
5682
5528
|
* @param {string | null} [searchString]
|
|
5683
|
-
* @param {string | null} [contactId]
|
|
5684
|
-
* @param {string | null} [conversationId]
|
|
5685
5529
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5686
5530
|
* @param {number} [limit]
|
|
5687
5531
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -5690,7 +5534,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5690
5534
|
* @param {*} [options] Override http request option.
|
|
5691
5535
|
* @throws {RequiredError}
|
|
5692
5536
|
*/
|
|
5693
|
-
messagesList(
|
|
5537
|
+
messagesList(conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIMessage>;
|
|
5694
5538
|
/**
|
|
5695
5539
|
* Phones Create
|
|
5696
5540
|
* @summary Phones Create
|
|
@@ -5779,6 +5623,22 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5779
5623
|
* @throws {RequiredError}
|
|
5780
5624
|
*/
|
|
5781
5625
|
reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIReservation>;
|
|
5626
|
+
/**
|
|
5627
|
+
* SuggestedReplies Create
|
|
5628
|
+
* @summary SuggestedReplies Create
|
|
5629
|
+
* @param {object} body
|
|
5630
|
+
* @param {*} [options] Override http request option.
|
|
5631
|
+
* @throws {RequiredError}
|
|
5632
|
+
*/
|
|
5633
|
+
suggestedRepliesCreate(body: object, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
5634
|
+
/**
|
|
5635
|
+
* List all suggested replies, optionally filtered by conversation_id
|
|
5636
|
+
* @summary SuggestedReplies List
|
|
5637
|
+
* @param {string | null} [conversationId] Filter by conversation ID
|
|
5638
|
+
* @param {*} [options] Override http request option.
|
|
5639
|
+
* @throws {RequiredError}
|
|
5640
|
+
*/
|
|
5641
|
+
suggestedRepliesList(conversationId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseAPISuggestedReply>;
|
|
5782
5642
|
/**
|
|
5783
5643
|
*
|
|
5784
5644
|
* @summary Unifiedwebhook
|
|
@@ -5925,15 +5785,6 @@ declare class UnboundApi extends BaseAPI {
|
|
|
5925
5785
|
* @memberof UnboundApi
|
|
5926
5786
|
*/
|
|
5927
5787
|
contactsUpdateListing(contactId: string, listingId: string, updateContactListing: UpdateContactListing, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
5928
|
-
/**
|
|
5929
|
-
* Conversations Create
|
|
5930
|
-
* @summary Conversations Create
|
|
5931
|
-
* @param {APIConversationCreate} aPIConversationCreate
|
|
5932
|
-
* @param {*} [options] Override http request option.
|
|
5933
|
-
* @throws {RequiredError}
|
|
5934
|
-
* @memberof UnboundApi
|
|
5935
|
-
*/
|
|
5936
|
-
conversationsCreate(aPIConversationCreate: APIConversationCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
|
|
5937
5788
|
/**
|
|
5938
5789
|
* Conversations Get
|
|
5939
5790
|
* @summary Conversations Get
|
|
@@ -5944,7 +5795,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
5944
5795
|
*/
|
|
5945
5796
|
conversationsGet(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
|
|
5946
5797
|
/**
|
|
5947
|
-
* List all conversations,
|
|
5798
|
+
* List all conversations, must filter by contact_id
|
|
5948
5799
|
* @summary Conversations List
|
|
5949
5800
|
* @param {string | null} [searchString]
|
|
5950
5801
|
* @param {string | null} [contactId]
|
|
@@ -5958,16 +5809,6 @@ declare class UnboundApi extends BaseAPI {
|
|
|
5958
5809
|
* @memberof UnboundApi
|
|
5959
5810
|
*/
|
|
5960
5811
|
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsConversationsModelConversationsModelConversationSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIConversation, any>>;
|
|
5961
|
-
/**
|
|
5962
|
-
* Conversations Update
|
|
5963
|
-
* @summary Conversations Update
|
|
5964
|
-
* @param {string} conversationId
|
|
5965
|
-
* @param {APIConversationUpdate} aPIConversationUpdate
|
|
5966
|
-
* @param {*} [options] Override http request option.
|
|
5967
|
-
* @throws {RequiredError}
|
|
5968
|
-
* @memberof UnboundApi
|
|
5969
|
-
*/
|
|
5970
|
-
conversationsUpdate(conversationId: string, aPIConversationUpdate: APIConversationUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIConversation, any>>;
|
|
5971
5812
|
/**
|
|
5972
5813
|
* Emails Create
|
|
5973
5814
|
* @summary Emails Create
|
|
@@ -6069,9 +5910,8 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6069
5910
|
/**
|
|
6070
5911
|
* Messages List
|
|
6071
5912
|
* @summary Messages List
|
|
5913
|
+
* @param {string} [conversationId]
|
|
6072
5914
|
* @param {string | null} [searchString]
|
|
6073
|
-
* @param {string | null} [contactId]
|
|
6074
|
-
* @param {string | null} [conversationId]
|
|
6075
5915
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6076
5916
|
* @param {number} [limit]
|
|
6077
5917
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -6081,7 +5921,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6081
5921
|
* @throws {RequiredError}
|
|
6082
5922
|
* @memberof UnboundApi
|
|
6083
5923
|
*/
|
|
6084
|
-
messagesList(
|
|
5924
|
+
messagesList(conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIMessage, any>>;
|
|
6085
5925
|
/**
|
|
6086
5926
|
* Phones Create
|
|
6087
5927
|
* @summary Phones Create
|
|
@@ -6180,6 +6020,24 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6180
6020
|
* @memberof UnboundApi
|
|
6181
6021
|
*/
|
|
6182
6022
|
reservationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsReservationsModelReservationBaseModelSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIReservation, any>>;
|
|
6023
|
+
/**
|
|
6024
|
+
* SuggestedReplies Create
|
|
6025
|
+
* @summary SuggestedReplies Create
|
|
6026
|
+
* @param {object} body
|
|
6027
|
+
* @param {*} [options] Override http request option.
|
|
6028
|
+
* @throws {RequiredError}
|
|
6029
|
+
* @memberof UnboundApi
|
|
6030
|
+
*/
|
|
6031
|
+
suggestedRepliesCreate(body: object, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
|
|
6032
|
+
/**
|
|
6033
|
+
* List all suggested replies, optionally filtered by conversation_id
|
|
6034
|
+
* @summary SuggestedReplies List
|
|
6035
|
+
* @param {string | null} [conversationId] Filter by conversation ID
|
|
6036
|
+
* @param {*} [options] Override http request option.
|
|
6037
|
+
* @throws {RequiredError}
|
|
6038
|
+
* @memberof UnboundApi
|
|
6039
|
+
*/
|
|
6040
|
+
suggestedRepliesList(conversationId?: string | null, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPISuggestedReply, any>>;
|
|
6183
6041
|
/**
|
|
6184
6042
|
*
|
|
6185
6043
|
* @summary Unifiedwebhook
|
|
@@ -6191,4 +6049,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6191
6049
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6192
6050
|
}
|
|
6193
6051
|
|
|
6194
|
-
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type
|
|
6052
|
+
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, type ListResponseAPISuggestedReply, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhonesApi, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, SrcResourceModelsConversationsModelConversationsModelConversationSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, SuggestedRepliesApi, SuggestedRepliesApiAxiosParamCreator, SuggestedRepliesApiFactory, SuggestedRepliesApiFp, type TwilioConversationDataApi, TwilioConversationDataApiConversationTypeEnum, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, type TwilioProviderMessageApi, TwilioProviderMessageApiMessageTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing };
|