@ember-home/unbound-ts-client 0.0.61 → 0.0.62
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 +28 -277
- package/dist/index.d.ts +28 -277
- package/dist/index.js +5 -29
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -28
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -724,34 +724,28 @@ interface APIConversation {
|
|
|
724
724
|
'status': ConversationStatus;
|
|
725
725
|
/**
|
|
726
726
|
*
|
|
727
|
-
* @type {
|
|
727
|
+
* @type {boolean}
|
|
728
728
|
* @memberof APIConversation
|
|
729
729
|
*/
|
|
730
|
-
'
|
|
730
|
+
'isUnread': boolean;
|
|
731
731
|
/**
|
|
732
732
|
*
|
|
733
733
|
* @type {string}
|
|
734
734
|
* @memberof APIConversation
|
|
735
735
|
*/
|
|
736
|
-
'
|
|
736
|
+
'lastMessageId'?: string | null;
|
|
737
737
|
/**
|
|
738
738
|
*
|
|
739
739
|
* @type {string}
|
|
740
740
|
* @memberof APIConversation
|
|
741
741
|
*/
|
|
742
|
-
'
|
|
742
|
+
'lastMessageAt': string;
|
|
743
743
|
/**
|
|
744
744
|
*
|
|
745
745
|
* @type {string}
|
|
746
746
|
* @memberof APIConversation
|
|
747
747
|
*/
|
|
748
|
-
'
|
|
749
|
-
/**
|
|
750
|
-
*
|
|
751
|
-
* @type {number}
|
|
752
|
-
* @memberof APIConversation
|
|
753
|
-
*/
|
|
754
|
-
'unreadCount': number;
|
|
748
|
+
'lastMessagePreview'?: string | null;
|
|
755
749
|
/**
|
|
756
750
|
*
|
|
757
751
|
* @type {Conversationtypedata}
|
|
@@ -779,10 +773,10 @@ interface APIConversationUpdate {
|
|
|
779
773
|
'status'?: ConversationStatus | null;
|
|
780
774
|
/**
|
|
781
775
|
*
|
|
782
|
-
* @type {
|
|
776
|
+
* @type {boolean}
|
|
783
777
|
* @memberof APIConversationUpdate
|
|
784
778
|
*/
|
|
785
|
-
'
|
|
779
|
+
'isUnread'?: boolean | null;
|
|
786
780
|
}
|
|
787
781
|
/**
|
|
788
782
|
*
|
|
@@ -1085,12 +1079,6 @@ interface APIMessage {
|
|
|
1085
1079
|
* @memberof APIMessage
|
|
1086
1080
|
*/
|
|
1087
1081
|
'guestReadAt'?: string | null;
|
|
1088
|
-
/**
|
|
1089
|
-
*
|
|
1090
|
-
* @type {Participanttypedata}
|
|
1091
|
-
* @memberof APIMessage
|
|
1092
|
-
*/
|
|
1093
|
-
'participantTypeData': Participanttypedata;
|
|
1094
1082
|
/**
|
|
1095
1083
|
*
|
|
1096
1084
|
* @type {string}
|
|
@@ -1146,66 +1134,6 @@ interface APIMessage {
|
|
|
1146
1134
|
* @interface APIMessageCreate
|
|
1147
1135
|
*/
|
|
1148
1136
|
interface APIMessageCreate {
|
|
1149
|
-
/**
|
|
1150
|
-
*
|
|
1151
|
-
* @type {string}
|
|
1152
|
-
* @memberof APIMessageCreate
|
|
1153
|
-
*/
|
|
1154
|
-
'sentAt'?: string | null;
|
|
1155
|
-
/**
|
|
1156
|
-
*
|
|
1157
|
-
* @type {string}
|
|
1158
|
-
* @memberof APIMessageCreate
|
|
1159
|
-
*/
|
|
1160
|
-
'deliveredAt'?: string | null;
|
|
1161
|
-
/**
|
|
1162
|
-
*
|
|
1163
|
-
* @type {string}
|
|
1164
|
-
* @memberof APIMessageCreate
|
|
1165
|
-
*/
|
|
1166
|
-
'failedAt'?: string | null;
|
|
1167
|
-
/**
|
|
1168
|
-
*
|
|
1169
|
-
* @type {string}
|
|
1170
|
-
* @memberof APIMessageCreate
|
|
1171
|
-
*/
|
|
1172
|
-
'scheduledAt'?: string | null;
|
|
1173
|
-
/**
|
|
1174
|
-
*
|
|
1175
|
-
* @type {string}
|
|
1176
|
-
* @memberof APIMessageCreate
|
|
1177
|
-
*/
|
|
1178
|
-
'pausedAt'?: string | null;
|
|
1179
|
-
/**
|
|
1180
|
-
*
|
|
1181
|
-
* @type {string}
|
|
1182
|
-
* @memberof APIMessageCreate
|
|
1183
|
-
*/
|
|
1184
|
-
'cancelledAt'?: string | null;
|
|
1185
|
-
/**
|
|
1186
|
-
*
|
|
1187
|
-
* @type {string}
|
|
1188
|
-
* @memberof APIMessageCreate
|
|
1189
|
-
*/
|
|
1190
|
-
'cancelledBy'?: string | null;
|
|
1191
|
-
/**
|
|
1192
|
-
*
|
|
1193
|
-
* @type {string}
|
|
1194
|
-
* @memberof APIMessageCreate
|
|
1195
|
-
*/
|
|
1196
|
-
'staffReadAt'?: string | null;
|
|
1197
|
-
/**
|
|
1198
|
-
*
|
|
1199
|
-
* @type {string}
|
|
1200
|
-
* @memberof APIMessageCreate
|
|
1201
|
-
*/
|
|
1202
|
-
'guestReadAt'?: string | null;
|
|
1203
|
-
/**
|
|
1204
|
-
*
|
|
1205
|
-
* @type {Participanttypedata}
|
|
1206
|
-
* @memberof APIMessageCreate
|
|
1207
|
-
*/
|
|
1208
|
-
'participantTypeData': Participanttypedata;
|
|
1209
1137
|
/**
|
|
1210
1138
|
*
|
|
1211
1139
|
* @type {Messagetypedata1}
|
|
@@ -1704,29 +1632,6 @@ interface BaseAddressApi {
|
|
|
1704
1632
|
*/
|
|
1705
1633
|
'region'?: string | null;
|
|
1706
1634
|
}
|
|
1707
|
-
/**
|
|
1708
|
-
*
|
|
1709
|
-
* @export
|
|
1710
|
-
* @interface BotApi
|
|
1711
|
-
*/
|
|
1712
|
-
interface BotApi {
|
|
1713
|
-
/**
|
|
1714
|
-
*
|
|
1715
|
-
* @type {string}
|
|
1716
|
-
* @memberof BotApi
|
|
1717
|
-
*/
|
|
1718
|
-
'participantType': BotApiParticipantTypeEnum;
|
|
1719
|
-
/**
|
|
1720
|
-
*
|
|
1721
|
-
* @type {Participantname}
|
|
1722
|
-
* @memberof BotApi
|
|
1723
|
-
*/
|
|
1724
|
-
'participantName': Participantname;
|
|
1725
|
-
}
|
|
1726
|
-
declare const BotApiParticipantTypeEnum: {
|
|
1727
|
-
readonly Bot: "BOT";
|
|
1728
|
-
};
|
|
1729
|
-
type BotApiParticipantTypeEnum = typeof BotApiParticipantTypeEnum[keyof typeof BotApiParticipantTypeEnum];
|
|
1730
1635
|
/**
|
|
1731
1636
|
*
|
|
1732
1637
|
* @export
|
|
@@ -1932,64 +1837,6 @@ declare const EmailProviderMessageApiMessageTypeEnum: {
|
|
|
1932
1837
|
readonly Email: "EMAIL";
|
|
1933
1838
|
};
|
|
1934
1839
|
type EmailProviderMessageApiMessageTypeEnum = typeof EmailProviderMessageApiMessageTypeEnum[keyof typeof EmailProviderMessageApiMessageTypeEnum];
|
|
1935
|
-
/**
|
|
1936
|
-
*
|
|
1937
|
-
* @export
|
|
1938
|
-
* @interface ExternalStaffApi
|
|
1939
|
-
*/
|
|
1940
|
-
interface ExternalStaffApi {
|
|
1941
|
-
/**
|
|
1942
|
-
*
|
|
1943
|
-
* @type {string}
|
|
1944
|
-
* @memberof ExternalStaffApi
|
|
1945
|
-
*/
|
|
1946
|
-
'staffType': ExternalStaffApiStaffTypeEnum;
|
|
1947
|
-
/**
|
|
1948
|
-
*
|
|
1949
|
-
* @type {string}
|
|
1950
|
-
* @memberof ExternalStaffApi
|
|
1951
|
-
*/
|
|
1952
|
-
'contactId': string;
|
|
1953
|
-
}
|
|
1954
|
-
declare const ExternalStaffApiStaffTypeEnum: {
|
|
1955
|
-
readonly ExternalStaff: "EXTERNAL_STAFF";
|
|
1956
|
-
};
|
|
1957
|
-
type ExternalStaffApiStaffTypeEnum = typeof ExternalStaffApiStaffTypeEnum[keyof typeof ExternalStaffApiStaffTypeEnum];
|
|
1958
|
-
/**
|
|
1959
|
-
*
|
|
1960
|
-
* @export
|
|
1961
|
-
* @interface GuestApi
|
|
1962
|
-
*/
|
|
1963
|
-
interface GuestApi {
|
|
1964
|
-
/**
|
|
1965
|
-
*
|
|
1966
|
-
* @type {string}
|
|
1967
|
-
* @memberof GuestApi
|
|
1968
|
-
*/
|
|
1969
|
-
'participantType': GuestApiParticipantTypeEnum;
|
|
1970
|
-
/**
|
|
1971
|
-
*
|
|
1972
|
-
* @type {Participantname}
|
|
1973
|
-
* @memberof GuestApi
|
|
1974
|
-
*/
|
|
1975
|
-
'participantName': Participantname;
|
|
1976
|
-
/**
|
|
1977
|
-
*
|
|
1978
|
-
* @type {string}
|
|
1979
|
-
* @memberof GuestApi
|
|
1980
|
-
*/
|
|
1981
|
-
'contactId'?: string | null;
|
|
1982
|
-
/**
|
|
1983
|
-
*
|
|
1984
|
-
* @type {string}
|
|
1985
|
-
* @memberof GuestApi
|
|
1986
|
-
*/
|
|
1987
|
-
'intentsExtractedAt'?: string | null;
|
|
1988
|
-
}
|
|
1989
|
-
declare const GuestApiParticipantTypeEnum: {
|
|
1990
|
-
readonly Guest: "GUEST";
|
|
1991
|
-
};
|
|
1992
|
-
type GuestApiParticipantTypeEnum = typeof GuestApiParticipantTypeEnum[keyof typeof GuestApiParticipantTypeEnum];
|
|
1993
1840
|
/**
|
|
1994
1841
|
*
|
|
1995
1842
|
* @export
|
|
@@ -2076,29 +1923,6 @@ interface HostawayWebhook {
|
|
|
2076
1923
|
* @export
|
|
2077
1924
|
*/
|
|
2078
1925
|
type Inboxtypedata = EmailInboxApi | PhoneInboxApi | ProviderAccountInboxApi;
|
|
2079
|
-
/**
|
|
2080
|
-
*
|
|
2081
|
-
* @export
|
|
2082
|
-
* @interface InternalStaffApi
|
|
2083
|
-
*/
|
|
2084
|
-
interface InternalStaffApi {
|
|
2085
|
-
/**
|
|
2086
|
-
*
|
|
2087
|
-
* @type {string}
|
|
2088
|
-
* @memberof InternalStaffApi
|
|
2089
|
-
*/
|
|
2090
|
-
'staffType': InternalStaffApiStaffTypeEnum;
|
|
2091
|
-
/**
|
|
2092
|
-
*
|
|
2093
|
-
* @type {string}
|
|
2094
|
-
* @memberof InternalStaffApi
|
|
2095
|
-
*/
|
|
2096
|
-
'userId': string;
|
|
2097
|
-
}
|
|
2098
|
-
declare const InternalStaffApiStaffTypeEnum: {
|
|
2099
|
-
readonly InternalStaff: "INTERNAL_STAFF";
|
|
2100
|
-
};
|
|
2101
|
-
type InternalStaffApiStaffTypeEnum = typeof InternalStaffApiStaffTypeEnum[keyof typeof InternalStaffApiStaffTypeEnum];
|
|
2102
1926
|
/**
|
|
2103
1927
|
*
|
|
2104
1928
|
* @export
|
|
@@ -2421,16 +2245,6 @@ declare const PaginationDirection: {
|
|
|
2421
2245
|
readonly Backward: "backward";
|
|
2422
2246
|
};
|
|
2423
2247
|
type PaginationDirection = typeof PaginationDirection[keyof typeof PaginationDirection];
|
|
2424
|
-
/**
|
|
2425
|
-
* @type Participantname
|
|
2426
|
-
* @export
|
|
2427
|
-
*/
|
|
2428
|
-
type Participantname = string;
|
|
2429
|
-
/**
|
|
2430
|
-
* @type Participanttypedata
|
|
2431
|
-
* @export
|
|
2432
|
-
*/
|
|
2433
|
-
type Participanttypedata = BotApi | GuestApi | StaffApi;
|
|
2434
2248
|
/**
|
|
2435
2249
|
*
|
|
2436
2250
|
* @export
|
|
@@ -2476,7 +2290,7 @@ interface PhoneInboxApi {
|
|
|
2476
2290
|
'phone': string;
|
|
2477
2291
|
}
|
|
2478
2292
|
declare const PhoneInboxApiInboxTypeEnum: {
|
|
2479
|
-
readonly
|
|
2293
|
+
readonly Text: "TEXT";
|
|
2480
2294
|
};
|
|
2481
2295
|
type PhoneInboxApiInboxTypeEnum = typeof PhoneInboxApiInboxTypeEnum[keyof typeof PhoneInboxApiInboxTypeEnum];
|
|
2482
2296
|
/**
|
|
@@ -2712,35 +2526,6 @@ interface ProviderPhonesApi {
|
|
|
2712
2526
|
*/
|
|
2713
2527
|
'providers': Array<ProviderAttributionApi>;
|
|
2714
2528
|
}
|
|
2715
|
-
/**
|
|
2716
|
-
*
|
|
2717
|
-
* @export
|
|
2718
|
-
* @interface ProviderStaffApi
|
|
2719
|
-
*/
|
|
2720
|
-
interface ProviderStaffApi {
|
|
2721
|
-
/**
|
|
2722
|
-
*
|
|
2723
|
-
* @type {string}
|
|
2724
|
-
* @memberof ProviderStaffApi
|
|
2725
|
-
*/
|
|
2726
|
-
'staffType': ProviderStaffApiStaffTypeEnum;
|
|
2727
|
-
/**
|
|
2728
|
-
*
|
|
2729
|
-
* @type {string}
|
|
2730
|
-
* @memberof ProviderStaffApi
|
|
2731
|
-
*/
|
|
2732
|
-
'providerUserId': string;
|
|
2733
|
-
/**
|
|
2734
|
-
*
|
|
2735
|
-
* @type {string}
|
|
2736
|
-
* @memberof ProviderStaffApi
|
|
2737
|
-
*/
|
|
2738
|
-
'providerReadAt'?: string | null;
|
|
2739
|
-
}
|
|
2740
|
-
declare const ProviderStaffApiStaffTypeEnum: {
|
|
2741
|
-
readonly ProviderStaff: "PROVIDER_STAFF";
|
|
2742
|
-
};
|
|
2743
|
-
type ProviderStaffApiStaffTypeEnum = typeof ProviderStaffApiStaffTypeEnum[keyof typeof ProviderStaffApiStaffTypeEnum];
|
|
2744
2529
|
/**
|
|
2745
2530
|
*
|
|
2746
2531
|
* @export
|
|
@@ -2772,24 +2557,36 @@ interface RentalProviderMessageApi {
|
|
|
2772
2557
|
* @memberof RentalProviderMessageApi
|
|
2773
2558
|
*/
|
|
2774
2559
|
'messageType': RentalProviderMessageApiMessageTypeEnum;
|
|
2560
|
+
/**
|
|
2561
|
+
*
|
|
2562
|
+
* @type {string}
|
|
2563
|
+
* @memberof RentalProviderMessageApi
|
|
2564
|
+
*/
|
|
2565
|
+
'providerCreatedAt'?: string | null;
|
|
2775
2566
|
/**
|
|
2776
2567
|
*
|
|
2777
2568
|
* @type {ReservationChannelTypes}
|
|
2778
2569
|
* @memberof RentalProviderMessageApi
|
|
2779
2570
|
*/
|
|
2780
|
-
'providerChannelName'
|
|
2571
|
+
'providerChannelName'?: ReservationChannelTypes | null;
|
|
2781
2572
|
/**
|
|
2782
2573
|
*
|
|
2783
2574
|
* @type {ProviderCommunicationType}
|
|
2784
2575
|
* @memberof RentalProviderMessageApi
|
|
2785
2576
|
*/
|
|
2786
|
-
'providerCommunicationType'
|
|
2577
|
+
'providerCommunicationType'?: ProviderCommunicationType | null;
|
|
2787
2578
|
/**
|
|
2788
2579
|
*
|
|
2789
2580
|
* @type {string}
|
|
2790
2581
|
* @memberof RentalProviderMessageApi
|
|
2791
2582
|
*/
|
|
2792
|
-
'providerId'
|
|
2583
|
+
'providerId'?: string | null;
|
|
2584
|
+
/**
|
|
2585
|
+
*
|
|
2586
|
+
* @type {string}
|
|
2587
|
+
* @memberof RentalProviderMessageApi
|
|
2588
|
+
*/
|
|
2589
|
+
'providerUpdatedAt'?: string | null;
|
|
2793
2590
|
}
|
|
2794
2591
|
declare const RentalProviderMessageApiMessageTypeEnum: {
|
|
2795
2592
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
@@ -2883,18 +2680,12 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi1 {
|
|
|
2883
2680
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
2884
2681
|
*/
|
|
2885
2682
|
'messageType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum;
|
|
2886
|
-
/**
|
|
2887
|
-
*
|
|
2888
|
-
* @type {ReservationChannelTypes}
|
|
2889
|
-
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
2890
|
-
*/
|
|
2891
|
-
'providerChannelName': ReservationChannelTypes;
|
|
2892
2683
|
/**
|
|
2893
2684
|
*
|
|
2894
2685
|
* @type {ProviderCommunicationType}
|
|
2895
2686
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
2896
2687
|
*/
|
|
2897
|
-
'
|
|
2688
|
+
'communicationType': ProviderCommunicationType;
|
|
2898
2689
|
}
|
|
2899
2690
|
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum: {
|
|
2900
2691
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
@@ -2912,15 +2703,9 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi2 {
|
|
|
2912
2703
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2
|
|
2913
2704
|
*/
|
|
2914
2705
|
'messageType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum;
|
|
2915
|
-
/**
|
|
2916
|
-
*
|
|
2917
|
-
* @type {string}
|
|
2918
|
-
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2
|
|
2919
|
-
*/
|
|
2920
|
-
'body': string;
|
|
2921
2706
|
}
|
|
2922
2707
|
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum: {
|
|
2923
|
-
readonly
|
|
2708
|
+
readonly Text: "TEXT";
|
|
2924
2709
|
};
|
|
2925
2710
|
type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum = typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum[keyof typeof SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum];
|
|
2926
2711
|
/**
|
|
@@ -2991,40 +2776,6 @@ declare const SrcResourceModelsReservationsModelReservationBaseModelSortBy: {
|
|
|
2991
2776
|
readonly ArrivalAtPropertyTz: "arrival_at_property_tz";
|
|
2992
2777
|
};
|
|
2993
2778
|
type SrcResourceModelsReservationsModelReservationBaseModelSortBy = typeof SrcResourceModelsReservationsModelReservationBaseModelSortBy[keyof typeof SrcResourceModelsReservationsModelReservationBaseModelSortBy];
|
|
2994
|
-
/**
|
|
2995
|
-
*
|
|
2996
|
-
* @export
|
|
2997
|
-
* @interface StaffApi
|
|
2998
|
-
*/
|
|
2999
|
-
interface StaffApi {
|
|
3000
|
-
/**
|
|
3001
|
-
*
|
|
3002
|
-
* @type {string}
|
|
3003
|
-
* @memberof StaffApi
|
|
3004
|
-
*/
|
|
3005
|
-
'participantType': StaffApiParticipantTypeEnum;
|
|
3006
|
-
/**
|
|
3007
|
-
*
|
|
3008
|
-
* @type {Participantname}
|
|
3009
|
-
* @memberof StaffApi
|
|
3010
|
-
*/
|
|
3011
|
-
'participantName': Participantname;
|
|
3012
|
-
/**
|
|
3013
|
-
*
|
|
3014
|
-
* @type {Stafftypedata}
|
|
3015
|
-
* @memberof StaffApi
|
|
3016
|
-
*/
|
|
3017
|
-
'staffTypeData': Stafftypedata;
|
|
3018
|
-
}
|
|
3019
|
-
declare const StaffApiParticipantTypeEnum: {
|
|
3020
|
-
readonly Staff: "STAFF";
|
|
3021
|
-
};
|
|
3022
|
-
type StaffApiParticipantTypeEnum = typeof StaffApiParticipantTypeEnum[keyof typeof StaffApiParticipantTypeEnum];
|
|
3023
|
-
/**
|
|
3024
|
-
* @type Stafftypedata
|
|
3025
|
-
* @export
|
|
3026
|
-
*/
|
|
3027
|
-
type Stafftypedata = ExternalStaffApi | InternalStaffApi | ProviderStaffApi;
|
|
3028
2779
|
/**
|
|
3029
2780
|
*
|
|
3030
2781
|
* @export
|
|
@@ -3149,7 +2900,7 @@ interface TwilioConversationDataApi {
|
|
|
3149
2900
|
'twilioGroupId'?: string | null;
|
|
3150
2901
|
}
|
|
3151
2902
|
declare const TwilioConversationDataApiConversationTypeEnum: {
|
|
3152
|
-
readonly
|
|
2903
|
+
readonly Text: "TEXT";
|
|
3153
2904
|
};
|
|
3154
2905
|
type TwilioConversationDataApiConversationTypeEnum = typeof TwilioConversationDataApiConversationTypeEnum[keyof typeof TwilioConversationDataApiConversationTypeEnum];
|
|
3155
2906
|
/**
|
|
@@ -3224,7 +2975,7 @@ interface TwilioProviderMessageApi {
|
|
|
3224
2975
|
'senderTypeData': Sendertypedata;
|
|
3225
2976
|
}
|
|
3226
2977
|
declare const TwilioProviderMessageApiMessageTypeEnum: {
|
|
3227
|
-
readonly
|
|
2978
|
+
readonly Text: "TEXT";
|
|
3228
2979
|
};
|
|
3229
2980
|
type TwilioProviderMessageApiMessageTypeEnum = typeof TwilioProviderMessageApiMessageTypeEnum[keyof typeof TwilioProviderMessageApiMessageTypeEnum];
|
|
3230
2981
|
/**
|
|
@@ -6639,4 +6390,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6639
6390
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6640
6391
|
}
|
|
6641
6392
|
|
|
6642
|
-
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, 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
|
|
6393
|
+
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, 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 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 EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInbox, 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 PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PhonesApi, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, RentalProviderTypes, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type SubjectApi, SuggestedRepliesApi, SuggestedRepliesApiAxiosParamCreator, SuggestedRepliesApiFactory, SuggestedRepliesApiFp, type ToItemApi, type TwilioConversationDataApi, TwilioConversationDataApiConversationTypeEnum, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, type TwilioProviderMessageApi, TwilioProviderMessageApiMessageTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing };
|