@ember-home/unbound-ts-client 0.0.88 → 0.0.90

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 CHANGED
@@ -1000,6 +1000,12 @@ interface APIManagedPhoneNumber {
1000
1000
  * @memberof APIManagedPhoneNumber
1001
1001
  */
1002
1002
  'managedPhoneNumberId': string;
1003
+ /**
1004
+ *
1005
+ * @type {string}
1006
+ * @memberof APIManagedPhoneNumber
1007
+ */
1008
+ 'providerPhoneNumberId': string;
1003
1009
  /**
1004
1010
  *
1005
1011
  * @type {string}
@@ -1923,7 +1929,7 @@ interface ConversationSuggestionApi {
1923
1929
  * @type Conversationtypedata
1924
1930
  * @export
1925
1931
  */
1926
- type Conversationtypedata = EmailConversationDataApi | ProviderConversationDataApi | TwilioConversationDataApi;
1932
+ type Conversationtypedata = EmailConversationDataApi | ProviderConversationDataApi | SMSConversationDataApi;
1927
1933
  /**
1928
1934
  *
1929
1935
  * @export
@@ -2330,7 +2336,7 @@ type Messagecreate = APIMessageCreate1 | APIMessageCreate2;
2330
2336
  * @type Messagetypedata
2331
2337
  * @export
2332
2338
  */
2333
- type Messagetypedata = EmailProviderMessageApi | RentalProviderMessageApi | TwilioProviderMessageApi;
2339
+ type Messagetypedata = EmailProviderMessageApi | RentalProviderMessageApi | SMSMessageApi;
2334
2340
  /**
2335
2341
  * @type Messagetypedata1
2336
2342
  * @export
@@ -2687,14 +2693,14 @@ interface ProviderAttributionApi {
2687
2693
  * @export
2688
2694
  * @enum {string}
2689
2695
  */
2690
- declare const ProviderCommunicationType: {
2696
+ declare const ProviderCommunicationTypeInput: {
2691
2697
  readonly Sms: "SMS";
2692
2698
  readonly Email: "EMAIL";
2693
2699
  readonly Channel: "CHANNEL";
2694
2700
  readonly Whatsapp: "WHATSAPP";
2695
2701
  readonly Note: "NOTE";
2696
2702
  };
2697
- type ProviderCommunicationType = typeof ProviderCommunicationType[keyof typeof ProviderCommunicationType];
2703
+ type ProviderCommunicationTypeInput = typeof ProviderCommunicationTypeInput[keyof typeof ProviderCommunicationTypeInput];
2698
2704
  /**
2699
2705
  *
2700
2706
  * @export
@@ -2749,6 +2755,12 @@ interface ProviderConversationDataApi {
2749
2755
  * @memberof ProviderConversationDataApi
2750
2756
  */
2751
2757
  'contactId'?: string | null;
2758
+ /**
2759
+ *
2760
+ * @type {Array<SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType>}
2761
+ * @memberof ProviderConversationDataApi
2762
+ */
2763
+ 'availableCommunicationTypes'?: Array<SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType>;
2752
2764
  }
2753
2765
  declare const ProviderConversationDataApiConversationTypeEnum: {
2754
2766
  readonly RentalProvider: "RENTAL_PROVIDER";
@@ -2897,10 +2909,10 @@ interface RentalProviderMessageApi {
2897
2909
  'messageType': RentalProviderMessageApiMessageTypeEnum;
2898
2910
  /**
2899
2911
  *
2900
- * @type {ProviderCommunicationType}
2912
+ * @type {SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType}
2901
2913
  * @memberof RentalProviderMessageApi
2902
2914
  */
2903
- 'communicationType': ProviderCommunicationType;
2915
+ 'communicationType': SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType;
2904
2916
  }
2905
2917
  declare const RentalProviderMessageApiMessageTypeEnum: {
2906
2918
  readonly RentalProvider: "RENTAL_PROVIDER";
@@ -2956,11 +2968,121 @@ declare const ReservationStatus: {
2956
2968
  readonly Confirmed: "CONFIRMED";
2957
2969
  };
2958
2970
  type ReservationStatus = typeof ReservationStatus[keyof typeof ReservationStatus];
2971
+ /**
2972
+ *
2973
+ * @export
2974
+ * @interface SMSConversationDataApi
2975
+ */
2976
+ interface SMSConversationDataApi {
2977
+ /**
2978
+ *
2979
+ * @type {string}
2980
+ * @memberof SMSConversationDataApi
2981
+ */
2982
+ 'conversationType': SMSConversationDataApiConversationTypeEnum;
2983
+ /**
2984
+ *
2985
+ * @type {string}
2986
+ * @memberof SMSConversationDataApi
2987
+ */
2988
+ 'fromManagedPhoneId': string;
2989
+ /**
2990
+ *
2991
+ * @type {Array<PhonesApi>}
2992
+ * @memberof SMSConversationDataApi
2993
+ */
2994
+ 'toPhones': Array<PhonesApi>;
2995
+ /**
2996
+ *
2997
+ * @type {string}
2998
+ * @memberof SMSConversationDataApi
2999
+ */
3000
+ 'providerGroupId'?: string | null;
3001
+ }
3002
+ declare const SMSConversationDataApiConversationTypeEnum: {
3003
+ readonly Text: "TEXT";
3004
+ };
3005
+ type SMSConversationDataApiConversationTypeEnum = typeof SMSConversationDataApiConversationTypeEnum[keyof typeof SMSConversationDataApiConversationTypeEnum];
3006
+ /**
3007
+ *
3008
+ * @export
3009
+ * @interface SMSInboundSenderTypeDataApi
3010
+ */
3011
+ interface SMSInboundSenderTypeDataApi {
3012
+ /**
3013
+ *
3014
+ * @type {string}
3015
+ * @memberof SMSInboundSenderTypeDataApi
3016
+ */
3017
+ 'direction': SMSInboundSenderTypeDataApiDirectionEnum;
3018
+ /**
3019
+ *
3020
+ * @type {string}
3021
+ * @memberof SMSInboundSenderTypeDataApi
3022
+ */
3023
+ 'fromPhoneId'?: string | null;
3024
+ }
3025
+ declare const SMSInboundSenderTypeDataApiDirectionEnum: {
3026
+ readonly Inbound: "INBOUND";
3027
+ };
3028
+ type SMSInboundSenderTypeDataApiDirectionEnum = typeof SMSInboundSenderTypeDataApiDirectionEnum[keyof typeof SMSInboundSenderTypeDataApiDirectionEnum];
3029
+ /**
3030
+ *
3031
+ * @export
3032
+ * @interface SMSMessageApi
3033
+ */
3034
+ interface SMSMessageApi {
3035
+ /**
3036
+ *
3037
+ * @type {string}
3038
+ * @memberof SMSMessageApi
3039
+ */
3040
+ 'messageType': SMSMessageApiMessageTypeEnum;
3041
+ /**
3042
+ *
3043
+ * @type {Array<string>}
3044
+ * @memberof SMSMessageApi
3045
+ */
3046
+ 'mediaUrl'?: Array<string> | null;
3047
+ /**
3048
+ *
3049
+ * @type {Sendertypedata}
3050
+ * @memberof SMSMessageApi
3051
+ */
3052
+ 'senderTypeData': Sendertypedata;
3053
+ }
3054
+ declare const SMSMessageApiMessageTypeEnum: {
3055
+ readonly Text: "TEXT";
3056
+ };
3057
+ type SMSMessageApiMessageTypeEnum = typeof SMSMessageApiMessageTypeEnum[keyof typeof SMSMessageApiMessageTypeEnum];
3058
+ /**
3059
+ *
3060
+ * @export
3061
+ * @interface SMSOutboundSenderTypeDataApi
3062
+ */
3063
+ interface SMSOutboundSenderTypeDataApi {
3064
+ /**
3065
+ *
3066
+ * @type {string}
3067
+ * @memberof SMSOutboundSenderTypeDataApi
3068
+ */
3069
+ 'direction': SMSOutboundSenderTypeDataApiDirectionEnum;
3070
+ /**
3071
+ *
3072
+ * @type {string}
3073
+ * @memberof SMSOutboundSenderTypeDataApi
3074
+ */
3075
+ 'fromManagedPhoneId': string;
3076
+ }
3077
+ declare const SMSOutboundSenderTypeDataApiDirectionEnum: {
3078
+ readonly Outbound: "OUTBOUND";
3079
+ };
3080
+ type SMSOutboundSenderTypeDataApiDirectionEnum = typeof SMSOutboundSenderTypeDataApiDirectionEnum[keyof typeof SMSOutboundSenderTypeDataApiDirectionEnum];
2959
3081
  /**
2960
3082
  * @type Sendertypedata
2961
3083
  * @export
2962
3084
  */
2963
- type Sendertypedata = TwilioInboundSenderTypeDataApi | TwilioOutboundSenderTypeDataApi;
3085
+ type Sendertypedata = SMSInboundSenderTypeDataApi | SMSOutboundSenderTypeDataApi;
2964
3086
  /**
2965
3087
  *
2966
3088
  * @export
@@ -2982,6 +3104,18 @@ declare const SrcResourceModelsContactsModelContactsModelContactSortBy: {
2982
3104
  readonly CompanyLastFirst: "company_last_first";
2983
3105
  };
2984
3106
  type SrcResourceModelsContactsModelContactsModelContactSortBy = typeof SrcResourceModelsContactsModelContactsModelContactSortBy[keyof typeof SrcResourceModelsContactsModelContactsModelContactSortBy];
3107
+ /**
3108
+ *
3109
+ * @export
3110
+ * @enum {string}
3111
+ */
3112
+ declare const SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType: {
3113
+ readonly Sms: "SMS";
3114
+ readonly Email: "EMAIL";
3115
+ readonly Channel: "CHANNEL";
3116
+ readonly Whatsapp: "WHATSAPP";
3117
+ };
3118
+ type SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType = typeof SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType[keyof typeof SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType];
2985
3119
  /**
2986
3120
  *
2987
3121
  * @export
@@ -2996,10 +3130,10 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi1 {
2996
3130
  'messageType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum;
2997
3131
  /**
2998
3132
  *
2999
- * @type {ProviderCommunicationType}
3133
+ * @type {ProviderCommunicationTypeInput}
3000
3134
  * @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
3001
3135
  */
3002
- 'communicationType': ProviderCommunicationType;
3136
+ 'communicationType': ProviderCommunicationTypeInput;
3003
3137
  }
3004
3138
  declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum: {
3005
3139
  readonly RentalProvider: "RENTAL_PROVIDER";
@@ -3072,6 +3206,19 @@ declare const SrcResourceModelsListingsModelListingBaseSortBy: {
3072
3206
  readonly Title: "title";
3073
3207
  };
3074
3208
  type SrcResourceModelsListingsModelListingBaseSortBy = typeof SrcResourceModelsListingsModelListingBaseSortBy[keyof typeof SrcResourceModelsListingsModelListingBaseSortBy];
3209
+ /**
3210
+ *
3211
+ * @export
3212
+ * @enum {string}
3213
+ */
3214
+ declare const SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType: {
3215
+ readonly Sms: "SMS";
3216
+ readonly Email: "EMAIL";
3217
+ readonly Channel: "CHANNEL";
3218
+ readonly Whatsapp: "WHATSAPP";
3219
+ readonly Note: "NOTE";
3220
+ };
3221
+ type SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType = typeof SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType[keyof typeof SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType];
3075
3222
  /**
3076
3223
  *
3077
3224
  * @export
@@ -3266,116 +3413,6 @@ interface ToItemApi {
3266
3413
  */
3267
3414
  'relatedListings'?: Array<RelatedListingApi>;
3268
3415
  }
3269
- /**
3270
- *
3271
- * @export
3272
- * @interface TwilioConversationDataApi
3273
- */
3274
- interface TwilioConversationDataApi {
3275
- /**
3276
- *
3277
- * @type {string}
3278
- * @memberof TwilioConversationDataApi
3279
- */
3280
- 'conversationType': TwilioConversationDataApiConversationTypeEnum;
3281
- /**
3282
- *
3283
- * @type {string}
3284
- * @memberof TwilioConversationDataApi
3285
- */
3286
- 'fromManagedPhoneId': string;
3287
- /**
3288
- *
3289
- * @type {Array<PhonesApi>}
3290
- * @memberof TwilioConversationDataApi
3291
- */
3292
- 'toPhones': Array<PhonesApi>;
3293
- /**
3294
- *
3295
- * @type {string}
3296
- * @memberof TwilioConversationDataApi
3297
- */
3298
- 'twilioGroupId'?: string | null;
3299
- }
3300
- declare const TwilioConversationDataApiConversationTypeEnum: {
3301
- readonly Text: "TEXT";
3302
- };
3303
- type TwilioConversationDataApiConversationTypeEnum = typeof TwilioConversationDataApiConversationTypeEnum[keyof typeof TwilioConversationDataApiConversationTypeEnum];
3304
- /**
3305
- *
3306
- * @export
3307
- * @interface TwilioInboundSenderTypeDataApi
3308
- */
3309
- interface TwilioInboundSenderTypeDataApi {
3310
- /**
3311
- *
3312
- * @type {string}
3313
- * @memberof TwilioInboundSenderTypeDataApi
3314
- */
3315
- 'direction': TwilioInboundSenderTypeDataApiDirectionEnum;
3316
- /**
3317
- *
3318
- * @type {string}
3319
- * @memberof TwilioInboundSenderTypeDataApi
3320
- */
3321
- 'fromPhoneId'?: string | null;
3322
- }
3323
- declare const TwilioInboundSenderTypeDataApiDirectionEnum: {
3324
- readonly Inbound: "INBOUND";
3325
- };
3326
- type TwilioInboundSenderTypeDataApiDirectionEnum = typeof TwilioInboundSenderTypeDataApiDirectionEnum[keyof typeof TwilioInboundSenderTypeDataApiDirectionEnum];
3327
- /**
3328
- *
3329
- * @export
3330
- * @interface TwilioOutboundSenderTypeDataApi
3331
- */
3332
- interface TwilioOutboundSenderTypeDataApi {
3333
- /**
3334
- *
3335
- * @type {string}
3336
- * @memberof TwilioOutboundSenderTypeDataApi
3337
- */
3338
- 'direction': TwilioOutboundSenderTypeDataApiDirectionEnum;
3339
- /**
3340
- *
3341
- * @type {string}
3342
- * @memberof TwilioOutboundSenderTypeDataApi
3343
- */
3344
- 'fromManagedPhoneId': string;
3345
- }
3346
- declare const TwilioOutboundSenderTypeDataApiDirectionEnum: {
3347
- readonly Outbound: "OUTBOUND";
3348
- };
3349
- type TwilioOutboundSenderTypeDataApiDirectionEnum = typeof TwilioOutboundSenderTypeDataApiDirectionEnum[keyof typeof TwilioOutboundSenderTypeDataApiDirectionEnum];
3350
- /**
3351
- *
3352
- * @export
3353
- * @interface TwilioProviderMessageApi
3354
- */
3355
- interface TwilioProviderMessageApi {
3356
- /**
3357
- *
3358
- * @type {string}
3359
- * @memberof TwilioProviderMessageApi
3360
- */
3361
- 'messageType': TwilioProviderMessageApiMessageTypeEnum;
3362
- /**
3363
- *
3364
- * @type {Array<string>}
3365
- * @memberof TwilioProviderMessageApi
3366
- */
3367
- 'mediaUrl'?: Array<string> | null;
3368
- /**
3369
- *
3370
- * @type {Sendertypedata}
3371
- * @memberof TwilioProviderMessageApi
3372
- */
3373
- 'senderTypeData': Sendertypedata;
3374
- }
3375
- declare const TwilioProviderMessageApiMessageTypeEnum: {
3376
- readonly Text: "TEXT";
3377
- };
3378
- type TwilioProviderMessageApiMessageTypeEnum = typeof TwilioProviderMessageApiMessageTypeEnum[keyof typeof TwilioProviderMessageApiMessageTypeEnum];
3379
3416
  /**
3380
3417
  *
3381
3418
  * @export
@@ -6962,4 +6999,4 @@ declare class UserDevicesApi extends BaseAPI {
6962
6999
  userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
6963
7000
  }
6964
7001
 
6965
- 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 APIMessageCreate1, type APIMessageCreate2, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIUserDevice, type APIUserDeviceCreate, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, type ConversationSuggestionApi, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type MessageAttachmentApi, MessageDirection, MessageStatus, type Messagecreate, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PhonesApi, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, ReasonType, 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 StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type SuggestionApi, SuggestionStatus, type ToItemApi, type TwilioConversationDataApi, TwilioConversationDataApiConversationTypeEnum, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, type TwilioProviderMessageApi, TwilioProviderMessageApiMessageTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UserApi, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp };
7002
+ 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 APIMessageCreate1, type APIMessageCreate2, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIUserDevice, type APIUserDeviceCreate, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, type ConversationSuggestionApi, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type MessageAttachmentApi, MessageDirection, MessageStatus, type Messagecreate, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PhonesApi, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationTypeInput, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, ReasonType, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, RentalProviderTypes, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type SMSConversationDataApi, SMSConversationDataApiConversationTypeEnum, type SMSInboundSenderTypeDataApi, SMSInboundSenderTypeDataApiDirectionEnum, type SMSMessageApi, SMSMessageApiMessageTypeEnum, type SMSOutboundSenderTypeDataApi, SMSOutboundSenderTypeDataApiDirectionEnum, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type SuggestionApi, SuggestionStatus, type ToItemApi, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UserApi, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp };