@ember-home/unbound-ts-client 0.0.44 → 0.0.46
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 +95 -26
- package/dist/index.d.ts +95 -26
- package/dist/index.js +15 -33
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -32
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -716,6 +716,18 @@ interface APIConversation {
|
|
|
716
716
|
* @memberof APIConversation
|
|
717
717
|
*/
|
|
718
718
|
'conversationId': string;
|
|
719
|
+
/**
|
|
720
|
+
*
|
|
721
|
+
* @type {Array<ToItemApi>}
|
|
722
|
+
* @memberof APIConversation
|
|
723
|
+
*/
|
|
724
|
+
'to': Array<ToItemApi>;
|
|
725
|
+
/**
|
|
726
|
+
*
|
|
727
|
+
* @type {string}
|
|
728
|
+
* @memberof APIConversation
|
|
729
|
+
*/
|
|
730
|
+
'reservationId'?: string | null;
|
|
719
731
|
/**
|
|
720
732
|
*
|
|
721
733
|
* @type {string}
|
|
@@ -2425,6 +2437,25 @@ declare const ProviderStaffApiStaffTypeEnum: {
|
|
|
2425
2437
|
readonly ProviderStaff: "PROVIDER_STAFF";
|
|
2426
2438
|
};
|
|
2427
2439
|
type ProviderStaffApiStaffTypeEnum = typeof ProviderStaffApiStaffTypeEnum[keyof typeof ProviderStaffApiStaffTypeEnum];
|
|
2440
|
+
/**
|
|
2441
|
+
*
|
|
2442
|
+
* @export
|
|
2443
|
+
* @interface RelatedListingApi
|
|
2444
|
+
*/
|
|
2445
|
+
interface RelatedListingApi {
|
|
2446
|
+
/**
|
|
2447
|
+
*
|
|
2448
|
+
* @type {string}
|
|
2449
|
+
* @memberof RelatedListingApi
|
|
2450
|
+
*/
|
|
2451
|
+
'listingId': string;
|
|
2452
|
+
/**
|
|
2453
|
+
*
|
|
2454
|
+
* @type {string}
|
|
2455
|
+
* @memberof RelatedListingApi
|
|
2456
|
+
*/
|
|
2457
|
+
'listingName': string;
|
|
2458
|
+
}
|
|
2428
2459
|
/**
|
|
2429
2460
|
*
|
|
2430
2461
|
* @export
|
|
@@ -2525,15 +2556,6 @@ declare const SrcResourceModelsContactsModelContactsModelContactSortBy: {
|
|
|
2525
2556
|
readonly CompanyLastFirst: "company_last_first";
|
|
2526
2557
|
};
|
|
2527
2558
|
type SrcResourceModelsContactsModelContactsModelContactSortBy = typeof SrcResourceModelsContactsModelContactsModelContactSortBy[keyof typeof SrcResourceModelsContactsModelContactsModelContactSortBy];
|
|
2528
|
-
/**
|
|
2529
|
-
*
|
|
2530
|
-
* @export
|
|
2531
|
-
* @enum {string}
|
|
2532
|
-
*/
|
|
2533
|
-
declare const SrcResourceModelsConversationsModelConversationsModelConversationSortBy: {
|
|
2534
|
-
readonly UpdatedAt: "updated_at";
|
|
2535
|
-
};
|
|
2536
|
-
type SrcResourceModelsConversationsModelConversationsModelConversationSortBy = typeof SrcResourceModelsConversationsModelConversationsModelConversationSortBy[keyof typeof SrcResourceModelsConversationsModelConversationsModelConversationSortBy];
|
|
2537
2559
|
/**
|
|
2538
2560
|
*
|
|
2539
2561
|
* @export
|
|
@@ -2725,6 +2747,61 @@ interface SubjectApi {
|
|
|
2725
2747
|
*/
|
|
2726
2748
|
'listingName': string;
|
|
2727
2749
|
}
|
|
2750
|
+
/**
|
|
2751
|
+
*
|
|
2752
|
+
* @export
|
|
2753
|
+
* @interface ToItemApi
|
|
2754
|
+
*/
|
|
2755
|
+
interface ToItemApi {
|
|
2756
|
+
/**
|
|
2757
|
+
*
|
|
2758
|
+
* @type {string}
|
|
2759
|
+
* @memberof ToItemApi
|
|
2760
|
+
*/
|
|
2761
|
+
'displayStr': string;
|
|
2762
|
+
/**
|
|
2763
|
+
*
|
|
2764
|
+
* @type {string}
|
|
2765
|
+
* @memberof ToItemApi
|
|
2766
|
+
*/
|
|
2767
|
+
'contactId'?: string | null;
|
|
2768
|
+
/**
|
|
2769
|
+
*
|
|
2770
|
+
* @type {string}
|
|
2771
|
+
* @memberof ToItemApi
|
|
2772
|
+
*/
|
|
2773
|
+
'contactCompanyName'?: string | null;
|
|
2774
|
+
/**
|
|
2775
|
+
*
|
|
2776
|
+
* @type {string}
|
|
2777
|
+
* @memberof ToItemApi
|
|
2778
|
+
*/
|
|
2779
|
+
'currentReservationId'?: string | null;
|
|
2780
|
+
/**
|
|
2781
|
+
*
|
|
2782
|
+
* @type {string}
|
|
2783
|
+
* @memberof ToItemApi
|
|
2784
|
+
*/
|
|
2785
|
+
'profilePicUrlRegular'?: string | null;
|
|
2786
|
+
/**
|
|
2787
|
+
*
|
|
2788
|
+
* @type {string}
|
|
2789
|
+
* @memberof ToItemApi
|
|
2790
|
+
*/
|
|
2791
|
+
'profilePicUrlLarge'?: string | null;
|
|
2792
|
+
/**
|
|
2793
|
+
*
|
|
2794
|
+
* @type {string}
|
|
2795
|
+
* @memberof ToItemApi
|
|
2796
|
+
*/
|
|
2797
|
+
'profilePicUrlThumbnail'?: string | null;
|
|
2798
|
+
/**
|
|
2799
|
+
*
|
|
2800
|
+
* @type {Array<RelatedListingApi>}
|
|
2801
|
+
* @memberof ToItemApi
|
|
2802
|
+
*/
|
|
2803
|
+
'relatedListings'?: Array<RelatedListingApi>;
|
|
2804
|
+
}
|
|
2728
2805
|
/**
|
|
2729
2806
|
*
|
|
2730
2807
|
* @export
|
|
@@ -3694,12 +3771,11 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3694
3771
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3695
3772
|
* @param {number} [limit]
|
|
3696
3773
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
3697
|
-
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
3698
3774
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3699
3775
|
* @param {*} [options] Override http request option.
|
|
3700
3776
|
* @throws {RequiredError}
|
|
3701
3777
|
*/
|
|
3702
|
-
conversationsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection,
|
|
3778
|
+
conversationsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3703
3779
|
/**
|
|
3704
3780
|
* Messages Create
|
|
3705
3781
|
* @summary Messages Create
|
|
@@ -3753,12 +3829,11 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
3753
3829
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3754
3830
|
* @param {number} [limit]
|
|
3755
3831
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
3756
|
-
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
3757
3832
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3758
3833
|
* @param {*} [options] Override http request option.
|
|
3759
3834
|
* @throws {RequiredError}
|
|
3760
3835
|
*/
|
|
3761
|
-
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection,
|
|
3836
|
+
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIConversation>>;
|
|
3762
3837
|
/**
|
|
3763
3838
|
* Messages Create
|
|
3764
3839
|
* @summary Messages Create
|
|
@@ -3812,12 +3887,11 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
3812
3887
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3813
3888
|
* @param {number} [limit]
|
|
3814
3889
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
3815
|
-
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
3816
3890
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3817
3891
|
* @param {*} [options] Override http request option.
|
|
3818
3892
|
* @throws {RequiredError}
|
|
3819
3893
|
*/
|
|
3820
|
-
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection,
|
|
3894
|
+
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIConversation>;
|
|
3821
3895
|
/**
|
|
3822
3896
|
* Messages Create
|
|
3823
3897
|
* @summary Messages Create
|
|
@@ -3874,13 +3948,12 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
3874
3948
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3875
3949
|
* @param {number} [limit]
|
|
3876
3950
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
3877
|
-
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
3878
3951
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3879
3952
|
* @param {*} [options] Override http request option.
|
|
3880
3953
|
* @throws {RequiredError}
|
|
3881
3954
|
* @memberof ConversationsApi
|
|
3882
3955
|
*/
|
|
3883
|
-
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection,
|
|
3956
|
+
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIConversation, any>>;
|
|
3884
3957
|
/**
|
|
3885
3958
|
* Messages Create
|
|
3886
3959
|
* @summary Messages Create
|
|
@@ -4709,12 +4782,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4709
4782
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4710
4783
|
* @param {number} [limit]
|
|
4711
4784
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4712
|
-
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
4713
4785
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4714
4786
|
* @param {*} [options] Override http request option.
|
|
4715
4787
|
* @throws {RequiredError}
|
|
4716
4788
|
*/
|
|
4717
|
-
conversationsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection,
|
|
4789
|
+
conversationsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4718
4790
|
/**
|
|
4719
4791
|
* Emails Create
|
|
4720
4792
|
* @summary Emails Create
|
|
@@ -5068,12 +5140,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5068
5140
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5069
5141
|
* @param {number} [limit]
|
|
5070
5142
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5071
|
-
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
5072
5143
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5073
5144
|
* @param {*} [options] Override http request option.
|
|
5074
5145
|
* @throws {RequiredError}
|
|
5075
5146
|
*/
|
|
5076
|
-
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection,
|
|
5147
|
+
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIConversation>>;
|
|
5077
5148
|
/**
|
|
5078
5149
|
* Emails Create
|
|
5079
5150
|
* @summary Emails Create
|
|
@@ -5427,12 +5498,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5427
5498
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5428
5499
|
* @param {number} [limit]
|
|
5429
5500
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5430
|
-
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
5431
5501
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5432
5502
|
* @param {*} [options] Override http request option.
|
|
5433
5503
|
* @throws {RequiredError}
|
|
5434
5504
|
*/
|
|
5435
|
-
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection,
|
|
5505
|
+
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIConversation>;
|
|
5436
5506
|
/**
|
|
5437
5507
|
* Emails Create
|
|
5438
5508
|
* @summary Emails Create
|
|
@@ -5802,13 +5872,12 @@ declare class UnboundApi extends BaseAPI {
|
|
|
5802
5872
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5803
5873
|
* @param {number} [limit]
|
|
5804
5874
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5805
|
-
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
5806
5875
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5807
5876
|
* @param {*} [options] Override http request option.
|
|
5808
5877
|
* @throws {RequiredError}
|
|
5809
5878
|
* @memberof UnboundApi
|
|
5810
5879
|
*/
|
|
5811
|
-
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection,
|
|
5880
|
+
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIConversation, any>>;
|
|
5812
5881
|
/**
|
|
5813
5882
|
* Emails Create
|
|
5814
5883
|
* @summary Emails Create
|
|
@@ -6049,4 +6118,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6049
6118
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6050
6119
|
}
|
|
6051
6120
|
|
|
6052
|
-
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, type ListResponseAPISuggestedReply, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhonesApi, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy,
|
|
6121
|
+
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, type ListResponseAPISuggestedReply, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhonesApi, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type 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
|
@@ -716,6 +716,18 @@ interface APIConversation {
|
|
|
716
716
|
* @memberof APIConversation
|
|
717
717
|
*/
|
|
718
718
|
'conversationId': string;
|
|
719
|
+
/**
|
|
720
|
+
*
|
|
721
|
+
* @type {Array<ToItemApi>}
|
|
722
|
+
* @memberof APIConversation
|
|
723
|
+
*/
|
|
724
|
+
'to': Array<ToItemApi>;
|
|
725
|
+
/**
|
|
726
|
+
*
|
|
727
|
+
* @type {string}
|
|
728
|
+
* @memberof APIConversation
|
|
729
|
+
*/
|
|
730
|
+
'reservationId'?: string | null;
|
|
719
731
|
/**
|
|
720
732
|
*
|
|
721
733
|
* @type {string}
|
|
@@ -2425,6 +2437,25 @@ declare const ProviderStaffApiStaffTypeEnum: {
|
|
|
2425
2437
|
readonly ProviderStaff: "PROVIDER_STAFF";
|
|
2426
2438
|
};
|
|
2427
2439
|
type ProviderStaffApiStaffTypeEnum = typeof ProviderStaffApiStaffTypeEnum[keyof typeof ProviderStaffApiStaffTypeEnum];
|
|
2440
|
+
/**
|
|
2441
|
+
*
|
|
2442
|
+
* @export
|
|
2443
|
+
* @interface RelatedListingApi
|
|
2444
|
+
*/
|
|
2445
|
+
interface RelatedListingApi {
|
|
2446
|
+
/**
|
|
2447
|
+
*
|
|
2448
|
+
* @type {string}
|
|
2449
|
+
* @memberof RelatedListingApi
|
|
2450
|
+
*/
|
|
2451
|
+
'listingId': string;
|
|
2452
|
+
/**
|
|
2453
|
+
*
|
|
2454
|
+
* @type {string}
|
|
2455
|
+
* @memberof RelatedListingApi
|
|
2456
|
+
*/
|
|
2457
|
+
'listingName': string;
|
|
2458
|
+
}
|
|
2428
2459
|
/**
|
|
2429
2460
|
*
|
|
2430
2461
|
* @export
|
|
@@ -2525,15 +2556,6 @@ declare const SrcResourceModelsContactsModelContactsModelContactSortBy: {
|
|
|
2525
2556
|
readonly CompanyLastFirst: "company_last_first";
|
|
2526
2557
|
};
|
|
2527
2558
|
type SrcResourceModelsContactsModelContactsModelContactSortBy = typeof SrcResourceModelsContactsModelContactsModelContactSortBy[keyof typeof SrcResourceModelsContactsModelContactsModelContactSortBy];
|
|
2528
|
-
/**
|
|
2529
|
-
*
|
|
2530
|
-
* @export
|
|
2531
|
-
* @enum {string}
|
|
2532
|
-
*/
|
|
2533
|
-
declare const SrcResourceModelsConversationsModelConversationsModelConversationSortBy: {
|
|
2534
|
-
readonly UpdatedAt: "updated_at";
|
|
2535
|
-
};
|
|
2536
|
-
type SrcResourceModelsConversationsModelConversationsModelConversationSortBy = typeof SrcResourceModelsConversationsModelConversationsModelConversationSortBy[keyof typeof SrcResourceModelsConversationsModelConversationsModelConversationSortBy];
|
|
2537
2559
|
/**
|
|
2538
2560
|
*
|
|
2539
2561
|
* @export
|
|
@@ -2725,6 +2747,61 @@ interface SubjectApi {
|
|
|
2725
2747
|
*/
|
|
2726
2748
|
'listingName': string;
|
|
2727
2749
|
}
|
|
2750
|
+
/**
|
|
2751
|
+
*
|
|
2752
|
+
* @export
|
|
2753
|
+
* @interface ToItemApi
|
|
2754
|
+
*/
|
|
2755
|
+
interface ToItemApi {
|
|
2756
|
+
/**
|
|
2757
|
+
*
|
|
2758
|
+
* @type {string}
|
|
2759
|
+
* @memberof ToItemApi
|
|
2760
|
+
*/
|
|
2761
|
+
'displayStr': string;
|
|
2762
|
+
/**
|
|
2763
|
+
*
|
|
2764
|
+
* @type {string}
|
|
2765
|
+
* @memberof ToItemApi
|
|
2766
|
+
*/
|
|
2767
|
+
'contactId'?: string | null;
|
|
2768
|
+
/**
|
|
2769
|
+
*
|
|
2770
|
+
* @type {string}
|
|
2771
|
+
* @memberof ToItemApi
|
|
2772
|
+
*/
|
|
2773
|
+
'contactCompanyName'?: string | null;
|
|
2774
|
+
/**
|
|
2775
|
+
*
|
|
2776
|
+
* @type {string}
|
|
2777
|
+
* @memberof ToItemApi
|
|
2778
|
+
*/
|
|
2779
|
+
'currentReservationId'?: string | null;
|
|
2780
|
+
/**
|
|
2781
|
+
*
|
|
2782
|
+
* @type {string}
|
|
2783
|
+
* @memberof ToItemApi
|
|
2784
|
+
*/
|
|
2785
|
+
'profilePicUrlRegular'?: string | null;
|
|
2786
|
+
/**
|
|
2787
|
+
*
|
|
2788
|
+
* @type {string}
|
|
2789
|
+
* @memberof ToItemApi
|
|
2790
|
+
*/
|
|
2791
|
+
'profilePicUrlLarge'?: string | null;
|
|
2792
|
+
/**
|
|
2793
|
+
*
|
|
2794
|
+
* @type {string}
|
|
2795
|
+
* @memberof ToItemApi
|
|
2796
|
+
*/
|
|
2797
|
+
'profilePicUrlThumbnail'?: string | null;
|
|
2798
|
+
/**
|
|
2799
|
+
*
|
|
2800
|
+
* @type {Array<RelatedListingApi>}
|
|
2801
|
+
* @memberof ToItemApi
|
|
2802
|
+
*/
|
|
2803
|
+
'relatedListings'?: Array<RelatedListingApi>;
|
|
2804
|
+
}
|
|
2728
2805
|
/**
|
|
2729
2806
|
*
|
|
2730
2807
|
* @export
|
|
@@ -3694,12 +3771,11 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3694
3771
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3695
3772
|
* @param {number} [limit]
|
|
3696
3773
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
3697
|
-
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
3698
3774
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3699
3775
|
* @param {*} [options] Override http request option.
|
|
3700
3776
|
* @throws {RequiredError}
|
|
3701
3777
|
*/
|
|
3702
|
-
conversationsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection,
|
|
3778
|
+
conversationsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3703
3779
|
/**
|
|
3704
3780
|
* Messages Create
|
|
3705
3781
|
* @summary Messages Create
|
|
@@ -3753,12 +3829,11 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
3753
3829
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3754
3830
|
* @param {number} [limit]
|
|
3755
3831
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
3756
|
-
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
3757
3832
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3758
3833
|
* @param {*} [options] Override http request option.
|
|
3759
3834
|
* @throws {RequiredError}
|
|
3760
3835
|
*/
|
|
3761
|
-
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection,
|
|
3836
|
+
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIConversation>>;
|
|
3762
3837
|
/**
|
|
3763
3838
|
* Messages Create
|
|
3764
3839
|
* @summary Messages Create
|
|
@@ -3812,12 +3887,11 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
3812
3887
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3813
3888
|
* @param {number} [limit]
|
|
3814
3889
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
3815
|
-
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
3816
3890
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3817
3891
|
* @param {*} [options] Override http request option.
|
|
3818
3892
|
* @throws {RequiredError}
|
|
3819
3893
|
*/
|
|
3820
|
-
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection,
|
|
3894
|
+
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIConversation>;
|
|
3821
3895
|
/**
|
|
3822
3896
|
* Messages Create
|
|
3823
3897
|
* @summary Messages Create
|
|
@@ -3874,13 +3948,12 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
3874
3948
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3875
3949
|
* @param {number} [limit]
|
|
3876
3950
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
3877
|
-
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
3878
3951
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
3879
3952
|
* @param {*} [options] Override http request option.
|
|
3880
3953
|
* @throws {RequiredError}
|
|
3881
3954
|
* @memberof ConversationsApi
|
|
3882
3955
|
*/
|
|
3883
|
-
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection,
|
|
3956
|
+
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIConversation, any>>;
|
|
3884
3957
|
/**
|
|
3885
3958
|
* Messages Create
|
|
3886
3959
|
* @summary Messages Create
|
|
@@ -4709,12 +4782,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4709
4782
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4710
4783
|
* @param {number} [limit]
|
|
4711
4784
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
4712
|
-
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
4713
4785
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
4714
4786
|
* @param {*} [options] Override http request option.
|
|
4715
4787
|
* @throws {RequiredError}
|
|
4716
4788
|
*/
|
|
4717
|
-
conversationsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection,
|
|
4789
|
+
conversationsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4718
4790
|
/**
|
|
4719
4791
|
* Emails Create
|
|
4720
4792
|
* @summary Emails Create
|
|
@@ -5068,12 +5140,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5068
5140
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5069
5141
|
* @param {number} [limit]
|
|
5070
5142
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5071
|
-
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
5072
5143
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5073
5144
|
* @param {*} [options] Override http request option.
|
|
5074
5145
|
* @throws {RequiredError}
|
|
5075
5146
|
*/
|
|
5076
|
-
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection,
|
|
5147
|
+
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIConversation>>;
|
|
5077
5148
|
/**
|
|
5078
5149
|
* Emails Create
|
|
5079
5150
|
* @summary Emails Create
|
|
@@ -5427,12 +5498,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5427
5498
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5428
5499
|
* @param {number} [limit]
|
|
5429
5500
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5430
|
-
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
5431
5501
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5432
5502
|
* @param {*} [options] Override http request option.
|
|
5433
5503
|
* @throws {RequiredError}
|
|
5434
5504
|
*/
|
|
5435
|
-
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection,
|
|
5505
|
+
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIConversation>;
|
|
5436
5506
|
/**
|
|
5437
5507
|
* Emails Create
|
|
5438
5508
|
* @summary Emails Create
|
|
@@ -5802,13 +5872,12 @@ declare class UnboundApi extends BaseAPI {
|
|
|
5802
5872
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5803
5873
|
* @param {number} [limit]
|
|
5804
5874
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
5805
|
-
* @param {SrcResourceModelsConversationsModelConversationsModelConversationSortBy} [sortBy] Sort key
|
|
5806
5875
|
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
5807
5876
|
* @param {*} [options] Override http request option.
|
|
5808
5877
|
* @throws {RequiredError}
|
|
5809
5878
|
* @memberof UnboundApi
|
|
5810
5879
|
*/
|
|
5811
|
-
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection,
|
|
5880
|
+
conversationsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIConversation, any>>;
|
|
5812
5881
|
/**
|
|
5813
5882
|
* Emails Create
|
|
5814
5883
|
* @summary Emails Create
|
|
@@ -6049,4 +6118,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6049
6118
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6050
6119
|
}
|
|
6051
6120
|
|
|
6052
|
-
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, type ListResponseAPISuggestedReply, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhonesApi, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy,
|
|
6121
|
+
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, type ListResponseAPISuggestedReply, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhonesApi, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type 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 };
|