@ember-home/unbound-ts-client 0.0.52 → 0.0.54
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 +71 -56
- package/dist/index.d.ts +71 -56
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -987,18 +987,6 @@ interface APIMessage {
|
|
|
987
987
|
* @memberof APIMessage
|
|
988
988
|
*/
|
|
989
989
|
'deliveredAt'?: string | null;
|
|
990
|
-
/**
|
|
991
|
-
*
|
|
992
|
-
* @type {string}
|
|
993
|
-
* @memberof APIMessage
|
|
994
|
-
*/
|
|
995
|
-
'staffReadAt'?: string | null;
|
|
996
|
-
/**
|
|
997
|
-
*
|
|
998
|
-
* @type {string}
|
|
999
|
-
* @memberof APIMessage
|
|
1000
|
-
*/
|
|
1001
|
-
'guestReadAt'?: string | null;
|
|
1002
990
|
/**
|
|
1003
991
|
*
|
|
1004
992
|
* @type {string}
|
|
@@ -1071,6 +1059,18 @@ interface APIMessage {
|
|
|
1071
1059
|
* @memberof APIMessage
|
|
1072
1060
|
*/
|
|
1073
1061
|
'status': MessageStatus;
|
|
1062
|
+
/**
|
|
1063
|
+
*
|
|
1064
|
+
* @type {string}
|
|
1065
|
+
* @memberof APIMessage
|
|
1066
|
+
*/
|
|
1067
|
+
'staffReadAt'?: string | null;
|
|
1068
|
+
/**
|
|
1069
|
+
*
|
|
1070
|
+
* @type {string}
|
|
1071
|
+
* @memberof APIMessage
|
|
1072
|
+
*/
|
|
1073
|
+
'guestReadAt'?: string | null;
|
|
1074
1074
|
/**
|
|
1075
1075
|
*
|
|
1076
1076
|
* @type {Messagetypedata}
|
|
@@ -1086,16 +1086,64 @@ interface APIMessage {
|
|
|
1086
1086
|
interface APIMessageCreate {
|
|
1087
1087
|
/**
|
|
1088
1088
|
*
|
|
1089
|
-
* @type {
|
|
1089
|
+
* @type {string}
|
|
1090
1090
|
* @memberof APIMessageCreate
|
|
1091
1091
|
*/
|
|
1092
|
-
'
|
|
1092
|
+
'body': string;
|
|
1093
1093
|
/**
|
|
1094
1094
|
*
|
|
1095
1095
|
* @type {string}
|
|
1096
1096
|
* @memberof APIMessageCreate
|
|
1097
1097
|
*/
|
|
1098
|
-
'
|
|
1098
|
+
'sentAt'?: string | null;
|
|
1099
|
+
/**
|
|
1100
|
+
*
|
|
1101
|
+
* @type {string}
|
|
1102
|
+
* @memberof APIMessageCreate
|
|
1103
|
+
*/
|
|
1104
|
+
'deliveredAt'?: string | null;
|
|
1105
|
+
/**
|
|
1106
|
+
*
|
|
1107
|
+
* @type {string}
|
|
1108
|
+
* @memberof APIMessageCreate
|
|
1109
|
+
*/
|
|
1110
|
+
'failedAt'?: string | null;
|
|
1111
|
+
/**
|
|
1112
|
+
*
|
|
1113
|
+
* @type {string}
|
|
1114
|
+
* @memberof APIMessageCreate
|
|
1115
|
+
*/
|
|
1116
|
+
'scheduledAt'?: string | null;
|
|
1117
|
+
/**
|
|
1118
|
+
*
|
|
1119
|
+
* @type {string}
|
|
1120
|
+
* @memberof APIMessageCreate
|
|
1121
|
+
*/
|
|
1122
|
+
'pausedAt'?: string | null;
|
|
1123
|
+
/**
|
|
1124
|
+
*
|
|
1125
|
+
* @type {string}
|
|
1126
|
+
* @memberof APIMessageCreate
|
|
1127
|
+
*/
|
|
1128
|
+
'cancelledAt'?: string | null;
|
|
1129
|
+
/**
|
|
1130
|
+
*
|
|
1131
|
+
* @type {string}
|
|
1132
|
+
* @memberof APIMessageCreate
|
|
1133
|
+
*/
|
|
1134
|
+
'cancelledBy'?: string | null;
|
|
1135
|
+
/**
|
|
1136
|
+
*
|
|
1137
|
+
* @type {Participanttypedata}
|
|
1138
|
+
* @memberof APIMessageCreate
|
|
1139
|
+
*/
|
|
1140
|
+
'participantTypeData': Participanttypedata;
|
|
1141
|
+
/**
|
|
1142
|
+
*
|
|
1143
|
+
* @type {Messagetypedata1}
|
|
1144
|
+
* @memberof APIMessageCreate
|
|
1145
|
+
*/
|
|
1146
|
+
'messageTypeData': Messagetypedata1;
|
|
1099
1147
|
}
|
|
1100
1148
|
/**
|
|
1101
1149
|
*
|
|
@@ -2228,50 +2276,11 @@ declare const PaginationDirection: {
|
|
|
2228
2276
|
readonly Backward: "backward";
|
|
2229
2277
|
};
|
|
2230
2278
|
type PaginationDirection = typeof PaginationDirection[keyof typeof PaginationDirection];
|
|
2231
|
-
/**
|
|
2232
|
-
*
|
|
2233
|
-
* @export
|
|
2234
|
-
* @interface ParticipantEmailType
|
|
2235
|
-
*/
|
|
2236
|
-
interface ParticipantEmailType {
|
|
2237
|
-
/**
|
|
2238
|
-
*
|
|
2239
|
-
* @type {string}
|
|
2240
|
-
* @memberof ParticipantEmailType
|
|
2241
|
-
*/
|
|
2242
|
-
'email': string;
|
|
2243
|
-
}
|
|
2244
|
-
/**
|
|
2245
|
-
*
|
|
2246
|
-
* @export
|
|
2247
|
-
* @interface ParticipantNameType
|
|
2248
|
-
*/
|
|
2249
|
-
interface ParticipantNameType {
|
|
2250
|
-
/**
|
|
2251
|
-
*
|
|
2252
|
-
* @type {string}
|
|
2253
|
-
* @memberof ParticipantNameType
|
|
2254
|
-
*/
|
|
2255
|
-
'participantName': string;
|
|
2256
|
-
}
|
|
2257
|
-
/**
|
|
2258
|
-
*
|
|
2259
|
-
* @export
|
|
2260
|
-
* @interface ParticipantPhoneNumberType
|
|
2261
|
-
*/
|
|
2262
|
-
interface ParticipantPhoneNumberType {
|
|
2263
|
-
/**
|
|
2264
|
-
*
|
|
2265
|
-
* @type {string}
|
|
2266
|
-
* @memberof ParticipantPhoneNumberType
|
|
2267
|
-
*/
|
|
2268
|
-
'phoneNumber': string;
|
|
2269
|
-
}
|
|
2270
2279
|
/**
|
|
2271
2280
|
* @type Participantname
|
|
2272
2281
|
* @export
|
|
2273
2282
|
*/
|
|
2274
|
-
type Participantname =
|
|
2283
|
+
type Participantname = string;
|
|
2275
2284
|
/**
|
|
2276
2285
|
* @type Participanttypedata
|
|
2277
2286
|
* @export
|
|
@@ -2512,6 +2521,12 @@ interface ProviderStaffApi {
|
|
|
2512
2521
|
* @memberof ProviderStaffApi
|
|
2513
2522
|
*/
|
|
2514
2523
|
'providerUserId': string;
|
|
2524
|
+
/**
|
|
2525
|
+
*
|
|
2526
|
+
* @type {string}
|
|
2527
|
+
* @memberof ProviderStaffApi
|
|
2528
|
+
*/
|
|
2529
|
+
'providerReadAt'?: string | null;
|
|
2515
2530
|
}
|
|
2516
2531
|
declare const ProviderStaffApiStaffTypeEnum: {
|
|
2517
2532
|
readonly ProviderStaff: "PROVIDER_STAFF";
|
|
@@ -6230,4 +6245,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6230
6245
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6231
6246
|
}
|
|
6232
6247
|
|
|
6233
|
-
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 EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, 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
|
|
6248
|
+
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 EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, 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 RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -987,18 +987,6 @@ interface APIMessage {
|
|
|
987
987
|
* @memberof APIMessage
|
|
988
988
|
*/
|
|
989
989
|
'deliveredAt'?: string | null;
|
|
990
|
-
/**
|
|
991
|
-
*
|
|
992
|
-
* @type {string}
|
|
993
|
-
* @memberof APIMessage
|
|
994
|
-
*/
|
|
995
|
-
'staffReadAt'?: string | null;
|
|
996
|
-
/**
|
|
997
|
-
*
|
|
998
|
-
* @type {string}
|
|
999
|
-
* @memberof APIMessage
|
|
1000
|
-
*/
|
|
1001
|
-
'guestReadAt'?: string | null;
|
|
1002
990
|
/**
|
|
1003
991
|
*
|
|
1004
992
|
* @type {string}
|
|
@@ -1071,6 +1059,18 @@ interface APIMessage {
|
|
|
1071
1059
|
* @memberof APIMessage
|
|
1072
1060
|
*/
|
|
1073
1061
|
'status': MessageStatus;
|
|
1062
|
+
/**
|
|
1063
|
+
*
|
|
1064
|
+
* @type {string}
|
|
1065
|
+
* @memberof APIMessage
|
|
1066
|
+
*/
|
|
1067
|
+
'staffReadAt'?: string | null;
|
|
1068
|
+
/**
|
|
1069
|
+
*
|
|
1070
|
+
* @type {string}
|
|
1071
|
+
* @memberof APIMessage
|
|
1072
|
+
*/
|
|
1073
|
+
'guestReadAt'?: string | null;
|
|
1074
1074
|
/**
|
|
1075
1075
|
*
|
|
1076
1076
|
* @type {Messagetypedata}
|
|
@@ -1086,16 +1086,64 @@ interface APIMessage {
|
|
|
1086
1086
|
interface APIMessageCreate {
|
|
1087
1087
|
/**
|
|
1088
1088
|
*
|
|
1089
|
-
* @type {
|
|
1089
|
+
* @type {string}
|
|
1090
1090
|
* @memberof APIMessageCreate
|
|
1091
1091
|
*/
|
|
1092
|
-
'
|
|
1092
|
+
'body': string;
|
|
1093
1093
|
/**
|
|
1094
1094
|
*
|
|
1095
1095
|
* @type {string}
|
|
1096
1096
|
* @memberof APIMessageCreate
|
|
1097
1097
|
*/
|
|
1098
|
-
'
|
|
1098
|
+
'sentAt'?: string | null;
|
|
1099
|
+
/**
|
|
1100
|
+
*
|
|
1101
|
+
* @type {string}
|
|
1102
|
+
* @memberof APIMessageCreate
|
|
1103
|
+
*/
|
|
1104
|
+
'deliveredAt'?: string | null;
|
|
1105
|
+
/**
|
|
1106
|
+
*
|
|
1107
|
+
* @type {string}
|
|
1108
|
+
* @memberof APIMessageCreate
|
|
1109
|
+
*/
|
|
1110
|
+
'failedAt'?: string | null;
|
|
1111
|
+
/**
|
|
1112
|
+
*
|
|
1113
|
+
* @type {string}
|
|
1114
|
+
* @memberof APIMessageCreate
|
|
1115
|
+
*/
|
|
1116
|
+
'scheduledAt'?: string | null;
|
|
1117
|
+
/**
|
|
1118
|
+
*
|
|
1119
|
+
* @type {string}
|
|
1120
|
+
* @memberof APIMessageCreate
|
|
1121
|
+
*/
|
|
1122
|
+
'pausedAt'?: string | null;
|
|
1123
|
+
/**
|
|
1124
|
+
*
|
|
1125
|
+
* @type {string}
|
|
1126
|
+
* @memberof APIMessageCreate
|
|
1127
|
+
*/
|
|
1128
|
+
'cancelledAt'?: string | null;
|
|
1129
|
+
/**
|
|
1130
|
+
*
|
|
1131
|
+
* @type {string}
|
|
1132
|
+
* @memberof APIMessageCreate
|
|
1133
|
+
*/
|
|
1134
|
+
'cancelledBy'?: string | null;
|
|
1135
|
+
/**
|
|
1136
|
+
*
|
|
1137
|
+
* @type {Participanttypedata}
|
|
1138
|
+
* @memberof APIMessageCreate
|
|
1139
|
+
*/
|
|
1140
|
+
'participantTypeData': Participanttypedata;
|
|
1141
|
+
/**
|
|
1142
|
+
*
|
|
1143
|
+
* @type {Messagetypedata1}
|
|
1144
|
+
* @memberof APIMessageCreate
|
|
1145
|
+
*/
|
|
1146
|
+
'messageTypeData': Messagetypedata1;
|
|
1099
1147
|
}
|
|
1100
1148
|
/**
|
|
1101
1149
|
*
|
|
@@ -2228,50 +2276,11 @@ declare const PaginationDirection: {
|
|
|
2228
2276
|
readonly Backward: "backward";
|
|
2229
2277
|
};
|
|
2230
2278
|
type PaginationDirection = typeof PaginationDirection[keyof typeof PaginationDirection];
|
|
2231
|
-
/**
|
|
2232
|
-
*
|
|
2233
|
-
* @export
|
|
2234
|
-
* @interface ParticipantEmailType
|
|
2235
|
-
*/
|
|
2236
|
-
interface ParticipantEmailType {
|
|
2237
|
-
/**
|
|
2238
|
-
*
|
|
2239
|
-
* @type {string}
|
|
2240
|
-
* @memberof ParticipantEmailType
|
|
2241
|
-
*/
|
|
2242
|
-
'email': string;
|
|
2243
|
-
}
|
|
2244
|
-
/**
|
|
2245
|
-
*
|
|
2246
|
-
* @export
|
|
2247
|
-
* @interface ParticipantNameType
|
|
2248
|
-
*/
|
|
2249
|
-
interface ParticipantNameType {
|
|
2250
|
-
/**
|
|
2251
|
-
*
|
|
2252
|
-
* @type {string}
|
|
2253
|
-
* @memberof ParticipantNameType
|
|
2254
|
-
*/
|
|
2255
|
-
'participantName': string;
|
|
2256
|
-
}
|
|
2257
|
-
/**
|
|
2258
|
-
*
|
|
2259
|
-
* @export
|
|
2260
|
-
* @interface ParticipantPhoneNumberType
|
|
2261
|
-
*/
|
|
2262
|
-
interface ParticipantPhoneNumberType {
|
|
2263
|
-
/**
|
|
2264
|
-
*
|
|
2265
|
-
* @type {string}
|
|
2266
|
-
* @memberof ParticipantPhoneNumberType
|
|
2267
|
-
*/
|
|
2268
|
-
'phoneNumber': string;
|
|
2269
|
-
}
|
|
2270
2279
|
/**
|
|
2271
2280
|
* @type Participantname
|
|
2272
2281
|
* @export
|
|
2273
2282
|
*/
|
|
2274
|
-
type Participantname =
|
|
2283
|
+
type Participantname = string;
|
|
2275
2284
|
/**
|
|
2276
2285
|
* @type Participanttypedata
|
|
2277
2286
|
* @export
|
|
@@ -2512,6 +2521,12 @@ interface ProviderStaffApi {
|
|
|
2512
2521
|
* @memberof ProviderStaffApi
|
|
2513
2522
|
*/
|
|
2514
2523
|
'providerUserId': string;
|
|
2524
|
+
/**
|
|
2525
|
+
*
|
|
2526
|
+
* @type {string}
|
|
2527
|
+
* @memberof ProviderStaffApi
|
|
2528
|
+
*/
|
|
2529
|
+
'providerReadAt'?: string | null;
|
|
2515
2530
|
}
|
|
2516
2531
|
declare const ProviderStaffApiStaffTypeEnum: {
|
|
2517
2532
|
readonly ProviderStaff: "PROVIDER_STAFF";
|
|
@@ -6230,4 +6245,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6230
6245
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6231
6246
|
}
|
|
6232
6247
|
|
|
6233
|
-
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 EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, 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
|
|
6248
|
+
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 EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, 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 RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, 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 };
|