@ember-home/unbound-ts-client 0.0.89 → 0.0.91

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
@@ -2962,11 +2968,121 @@ declare const ReservationStatus: {
2962
2968
  readonly Confirmed: "CONFIRMED";
2963
2969
  };
2964
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];
2965
3081
  /**
2966
3082
  * @type Sendertypedata
2967
3083
  * @export
2968
3084
  */
2969
- type Sendertypedata = TwilioInboundSenderTypeDataApi | TwilioOutboundSenderTypeDataApi;
3085
+ type Sendertypedata = SMSInboundSenderTypeDataApi | SMSOutboundSenderTypeDataApi;
2970
3086
  /**
2971
3087
  *
2972
3088
  * @export
@@ -3297,116 +3413,6 @@ interface ToItemApi {
3297
3413
  */
3298
3414
  'relatedListings'?: Array<RelatedListingApi>;
3299
3415
  }
3300
- /**
3301
- *
3302
- * @export
3303
- * @interface TwilioConversationDataApi
3304
- */
3305
- interface TwilioConversationDataApi {
3306
- /**
3307
- *
3308
- * @type {string}
3309
- * @memberof TwilioConversationDataApi
3310
- */
3311
- 'conversationType': TwilioConversationDataApiConversationTypeEnum;
3312
- /**
3313
- *
3314
- * @type {string}
3315
- * @memberof TwilioConversationDataApi
3316
- */
3317
- 'fromManagedPhoneId': string;
3318
- /**
3319
- *
3320
- * @type {Array<PhonesApi>}
3321
- * @memberof TwilioConversationDataApi
3322
- */
3323
- 'toPhones': Array<PhonesApi>;
3324
- /**
3325
- *
3326
- * @type {string}
3327
- * @memberof TwilioConversationDataApi
3328
- */
3329
- 'twilioGroupId'?: string | null;
3330
- }
3331
- declare const TwilioConversationDataApiConversationTypeEnum: {
3332
- readonly Text: "TEXT";
3333
- };
3334
- type TwilioConversationDataApiConversationTypeEnum = typeof TwilioConversationDataApiConversationTypeEnum[keyof typeof TwilioConversationDataApiConversationTypeEnum];
3335
- /**
3336
- *
3337
- * @export
3338
- * @interface TwilioInboundSenderTypeDataApi
3339
- */
3340
- interface TwilioInboundSenderTypeDataApi {
3341
- /**
3342
- *
3343
- * @type {string}
3344
- * @memberof TwilioInboundSenderTypeDataApi
3345
- */
3346
- 'direction': TwilioInboundSenderTypeDataApiDirectionEnum;
3347
- /**
3348
- *
3349
- * @type {string}
3350
- * @memberof TwilioInboundSenderTypeDataApi
3351
- */
3352
- 'fromPhoneId'?: string | null;
3353
- }
3354
- declare const TwilioInboundSenderTypeDataApiDirectionEnum: {
3355
- readonly Inbound: "INBOUND";
3356
- };
3357
- type TwilioInboundSenderTypeDataApiDirectionEnum = typeof TwilioInboundSenderTypeDataApiDirectionEnum[keyof typeof TwilioInboundSenderTypeDataApiDirectionEnum];
3358
- /**
3359
- *
3360
- * @export
3361
- * @interface TwilioOutboundSenderTypeDataApi
3362
- */
3363
- interface TwilioOutboundSenderTypeDataApi {
3364
- /**
3365
- *
3366
- * @type {string}
3367
- * @memberof TwilioOutboundSenderTypeDataApi
3368
- */
3369
- 'direction': TwilioOutboundSenderTypeDataApiDirectionEnum;
3370
- /**
3371
- *
3372
- * @type {string}
3373
- * @memberof TwilioOutboundSenderTypeDataApi
3374
- */
3375
- 'fromManagedPhoneId': string;
3376
- }
3377
- declare const TwilioOutboundSenderTypeDataApiDirectionEnum: {
3378
- readonly Outbound: "OUTBOUND";
3379
- };
3380
- type TwilioOutboundSenderTypeDataApiDirectionEnum = typeof TwilioOutboundSenderTypeDataApiDirectionEnum[keyof typeof TwilioOutboundSenderTypeDataApiDirectionEnum];
3381
- /**
3382
- *
3383
- * @export
3384
- * @interface TwilioProviderMessageApi
3385
- */
3386
- interface TwilioProviderMessageApi {
3387
- /**
3388
- *
3389
- * @type {string}
3390
- * @memberof TwilioProviderMessageApi
3391
- */
3392
- 'messageType': TwilioProviderMessageApiMessageTypeEnum;
3393
- /**
3394
- *
3395
- * @type {Array<string>}
3396
- * @memberof TwilioProviderMessageApi
3397
- */
3398
- 'mediaUrl'?: Array<string> | null;
3399
- /**
3400
- *
3401
- * @type {Sendertypedata}
3402
- * @memberof TwilioProviderMessageApi
3403
- */
3404
- 'senderTypeData': Sendertypedata;
3405
- }
3406
- declare const TwilioProviderMessageApiMessageTypeEnum: {
3407
- readonly Text: "TEXT";
3408
- };
3409
- type TwilioProviderMessageApiMessageTypeEnum = typeof TwilioProviderMessageApiMessageTypeEnum[keyof typeof TwilioProviderMessageApiMessageTypeEnum];
3410
3416
  /**
3411
3417
  *
3412
3418
  * @export
@@ -3588,7 +3594,7 @@ declare const AuthApiAxiosParamCreator: (configuration?: Configuration) => {
3588
3594
  * @param {*} [options] Override http request option.
3589
3595
  * @throws {RequiredError}
3590
3596
  */
3591
- getMeMeGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3597
+ getMev1MeGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3592
3598
  };
3593
3599
  /**
3594
3600
  * AuthApi - functional programming interface
@@ -3601,7 +3607,7 @@ declare const AuthApiFp: (configuration?: Configuration) => {
3601
3607
  * @param {*} [options] Override http request option.
3602
3608
  * @throws {RequiredError}
3603
3609
  */
3604
- getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserApi>>;
3610
+ getMev1MeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserApi>>;
3605
3611
  };
3606
3612
  /**
3607
3613
  * AuthApi - factory interface
@@ -3614,7 +3620,7 @@ declare const AuthApiFactory: (configuration?: Configuration, basePath?: string,
3614
3620
  * @param {*} [options] Override http request option.
3615
3621
  * @throws {RequiredError}
3616
3622
  */
3617
- getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<UserApi>;
3623
+ getMev1MeGet(options?: RawAxiosRequestConfig): AxiosPromise<UserApi>;
3618
3624
  };
3619
3625
  /**
3620
3626
  * AuthApi - object-oriented interface
@@ -3630,7 +3636,7 @@ declare class AuthApi extends BaseAPI {
3630
3636
  * @throws {RequiredError}
3631
3637
  * @memberof AuthApi
3632
3638
  */
3633
- getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UserApi, any>>;
3639
+ getMev1MeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UserApi, any>>;
3634
3640
  }
3635
3641
  /**
3636
3642
  * ContactsApi - axios parameter creator
@@ -5502,7 +5508,7 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
5502
5508
  * @param {*} [options] Override http request option.
5503
5509
  * @throws {RequiredError}
5504
5510
  */
5505
- getMeMeGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5511
+ getMev1MeGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5506
5512
  /**
5507
5513
  * Inboxes List
5508
5514
  * @summary Inboxes List
@@ -5889,7 +5895,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
5889
5895
  * @param {*} [options] Override http request option.
5890
5896
  * @throws {RequiredError}
5891
5897
  */
5892
- getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserApi>>;
5898
+ getMev1MeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserApi>>;
5893
5899
  /**
5894
5900
  * Inboxes List
5895
5901
  * @summary Inboxes List
@@ -6276,7 +6282,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
6276
6282
  * @param {*} [options] Override http request option.
6277
6283
  * @throws {RequiredError}
6278
6284
  */
6279
- getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<UserApi>;
6285
+ getMev1MeGet(options?: RawAxiosRequestConfig): AxiosPromise<UserApi>;
6280
6286
  /**
6281
6287
  * Inboxes List
6282
6288
  * @summary Inboxes List
@@ -6686,7 +6692,7 @@ declare class UnboundApi extends BaseAPI {
6686
6692
  * @throws {RequiredError}
6687
6693
  * @memberof UnboundApi
6688
6694
  */
6689
- getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UserApi, any>>;
6695
+ getMev1MeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UserApi, any>>;
6690
6696
  /**
6691
6697
  * Inboxes List
6692
6698
  * @summary Inboxes List
@@ -6993,4 +6999,4 @@ declare class UserDevicesApi extends BaseAPI {
6993
6999
  userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
6994
7000
  }
6995
7001
 
6996
- 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 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, 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 };