@ember-home/unbound-ts-client 0.0.62 → 0.0.63
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 +178 -1
- package/dist/index.d.ts +178 -1
- package/dist/index.js +25 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +24 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1127,6 +1127,12 @@ interface APIMessage {
|
|
|
1127
1127
|
* @memberof APIMessage
|
|
1128
1128
|
*/
|
|
1129
1129
|
'messageTypeData': Messagetypedata;
|
|
1130
|
+
/**
|
|
1131
|
+
*
|
|
1132
|
+
* @type {Participanttypedata}
|
|
1133
|
+
* @memberof APIMessage
|
|
1134
|
+
*/
|
|
1135
|
+
'participantTypeData': Participanttypedata;
|
|
1130
1136
|
}
|
|
1131
1137
|
/**
|
|
1132
1138
|
*
|
|
@@ -1632,6 +1638,29 @@ interface BaseAddressApi {
|
|
|
1632
1638
|
*/
|
|
1633
1639
|
'region'?: string | null;
|
|
1634
1640
|
}
|
|
1641
|
+
/**
|
|
1642
|
+
*
|
|
1643
|
+
* @export
|
|
1644
|
+
* @interface BotApi
|
|
1645
|
+
*/
|
|
1646
|
+
interface BotApi {
|
|
1647
|
+
/**
|
|
1648
|
+
*
|
|
1649
|
+
* @type {string}
|
|
1650
|
+
* @memberof BotApi
|
|
1651
|
+
*/
|
|
1652
|
+
'participantType': BotApiParticipantTypeEnum;
|
|
1653
|
+
/**
|
|
1654
|
+
*
|
|
1655
|
+
* @type {Participantname}
|
|
1656
|
+
* @memberof BotApi
|
|
1657
|
+
*/
|
|
1658
|
+
'participantName': Participantname;
|
|
1659
|
+
}
|
|
1660
|
+
declare const BotApiParticipantTypeEnum: {
|
|
1661
|
+
readonly Bot: "BOT";
|
|
1662
|
+
};
|
|
1663
|
+
type BotApiParticipantTypeEnum = typeof BotApiParticipantTypeEnum[keyof typeof BotApiParticipantTypeEnum];
|
|
1635
1664
|
/**
|
|
1636
1665
|
*
|
|
1637
1666
|
* @export
|
|
@@ -1837,6 +1866,58 @@ declare const EmailProviderMessageApiMessageTypeEnum: {
|
|
|
1837
1866
|
readonly Email: "EMAIL";
|
|
1838
1867
|
};
|
|
1839
1868
|
type EmailProviderMessageApiMessageTypeEnum = typeof EmailProviderMessageApiMessageTypeEnum[keyof typeof EmailProviderMessageApiMessageTypeEnum];
|
|
1869
|
+
/**
|
|
1870
|
+
*
|
|
1871
|
+
* @export
|
|
1872
|
+
* @interface ExternalStaffApi
|
|
1873
|
+
*/
|
|
1874
|
+
interface ExternalStaffApi {
|
|
1875
|
+
/**
|
|
1876
|
+
*
|
|
1877
|
+
* @type {string}
|
|
1878
|
+
* @memberof ExternalStaffApi
|
|
1879
|
+
*/
|
|
1880
|
+
'staffType': ExternalStaffApiStaffTypeEnum;
|
|
1881
|
+
/**
|
|
1882
|
+
*
|
|
1883
|
+
* @type {string}
|
|
1884
|
+
* @memberof ExternalStaffApi
|
|
1885
|
+
*/
|
|
1886
|
+
'contactId': string;
|
|
1887
|
+
}
|
|
1888
|
+
declare const ExternalStaffApiStaffTypeEnum: {
|
|
1889
|
+
readonly ExternalStaff: "EXTERNAL_STAFF";
|
|
1890
|
+
};
|
|
1891
|
+
type ExternalStaffApiStaffTypeEnum = typeof ExternalStaffApiStaffTypeEnum[keyof typeof ExternalStaffApiStaffTypeEnum];
|
|
1892
|
+
/**
|
|
1893
|
+
*
|
|
1894
|
+
* @export
|
|
1895
|
+
* @interface GuestApi
|
|
1896
|
+
*/
|
|
1897
|
+
interface GuestApi {
|
|
1898
|
+
/**
|
|
1899
|
+
*
|
|
1900
|
+
* @type {string}
|
|
1901
|
+
* @memberof GuestApi
|
|
1902
|
+
*/
|
|
1903
|
+
'participantType': GuestApiParticipantTypeEnum;
|
|
1904
|
+
/**
|
|
1905
|
+
*
|
|
1906
|
+
* @type {Participantname}
|
|
1907
|
+
* @memberof GuestApi
|
|
1908
|
+
*/
|
|
1909
|
+
'participantName': Participantname;
|
|
1910
|
+
/**
|
|
1911
|
+
*
|
|
1912
|
+
* @type {string}
|
|
1913
|
+
* @memberof GuestApi
|
|
1914
|
+
*/
|
|
1915
|
+
'contactId'?: string | null;
|
|
1916
|
+
}
|
|
1917
|
+
declare const GuestApiParticipantTypeEnum: {
|
|
1918
|
+
readonly Guest: "GUEST";
|
|
1919
|
+
};
|
|
1920
|
+
type GuestApiParticipantTypeEnum = typeof GuestApiParticipantTypeEnum[keyof typeof GuestApiParticipantTypeEnum];
|
|
1840
1921
|
/**
|
|
1841
1922
|
*
|
|
1842
1923
|
* @export
|
|
@@ -1923,6 +2004,29 @@ interface HostawayWebhook {
|
|
|
1923
2004
|
* @export
|
|
1924
2005
|
*/
|
|
1925
2006
|
type Inboxtypedata = EmailInboxApi | PhoneInboxApi | ProviderAccountInboxApi;
|
|
2007
|
+
/**
|
|
2008
|
+
*
|
|
2009
|
+
* @export
|
|
2010
|
+
* @interface InternalStaffApi
|
|
2011
|
+
*/
|
|
2012
|
+
interface InternalStaffApi {
|
|
2013
|
+
/**
|
|
2014
|
+
*
|
|
2015
|
+
* @type {string}
|
|
2016
|
+
* @memberof InternalStaffApi
|
|
2017
|
+
*/
|
|
2018
|
+
'staffType': InternalStaffApiStaffTypeEnum;
|
|
2019
|
+
/**
|
|
2020
|
+
*
|
|
2021
|
+
* @type {string}
|
|
2022
|
+
* @memberof InternalStaffApi
|
|
2023
|
+
*/
|
|
2024
|
+
'userId': string;
|
|
2025
|
+
}
|
|
2026
|
+
declare const InternalStaffApiStaffTypeEnum: {
|
|
2027
|
+
readonly InternalStaff: "INTERNAL_STAFF";
|
|
2028
|
+
};
|
|
2029
|
+
type InternalStaffApiStaffTypeEnum = typeof InternalStaffApiStaffTypeEnum[keyof typeof InternalStaffApiStaffTypeEnum];
|
|
1926
2030
|
/**
|
|
1927
2031
|
*
|
|
1928
2032
|
* @export
|
|
@@ -2245,6 +2349,16 @@ declare const PaginationDirection: {
|
|
|
2245
2349
|
readonly Backward: "backward";
|
|
2246
2350
|
};
|
|
2247
2351
|
type PaginationDirection = typeof PaginationDirection[keyof typeof PaginationDirection];
|
|
2352
|
+
/**
|
|
2353
|
+
* @type Participantname
|
|
2354
|
+
* @export
|
|
2355
|
+
*/
|
|
2356
|
+
type Participantname = string;
|
|
2357
|
+
/**
|
|
2358
|
+
* @type Participanttypedata
|
|
2359
|
+
* @export
|
|
2360
|
+
*/
|
|
2361
|
+
type Participanttypedata = BotApi | GuestApi | StaffApi;
|
|
2248
2362
|
/**
|
|
2249
2363
|
*
|
|
2250
2364
|
* @export
|
|
@@ -2526,6 +2640,35 @@ interface ProviderPhonesApi {
|
|
|
2526
2640
|
*/
|
|
2527
2641
|
'providers': Array<ProviderAttributionApi>;
|
|
2528
2642
|
}
|
|
2643
|
+
/**
|
|
2644
|
+
*
|
|
2645
|
+
* @export
|
|
2646
|
+
* @interface ProviderStaffApi
|
|
2647
|
+
*/
|
|
2648
|
+
interface ProviderStaffApi {
|
|
2649
|
+
/**
|
|
2650
|
+
*
|
|
2651
|
+
* @type {string}
|
|
2652
|
+
* @memberof ProviderStaffApi
|
|
2653
|
+
*/
|
|
2654
|
+
'staffType': ProviderStaffApiStaffTypeEnum;
|
|
2655
|
+
/**
|
|
2656
|
+
*
|
|
2657
|
+
* @type {string}
|
|
2658
|
+
* @memberof ProviderStaffApi
|
|
2659
|
+
*/
|
|
2660
|
+
'providerUserId': string;
|
|
2661
|
+
/**
|
|
2662
|
+
*
|
|
2663
|
+
* @type {string}
|
|
2664
|
+
* @memberof ProviderStaffApi
|
|
2665
|
+
*/
|
|
2666
|
+
'providerReadAt'?: string | null;
|
|
2667
|
+
}
|
|
2668
|
+
declare const ProviderStaffApiStaffTypeEnum: {
|
|
2669
|
+
readonly ProviderStaff: "PROVIDER_STAFF";
|
|
2670
|
+
};
|
|
2671
|
+
type ProviderStaffApiStaffTypeEnum = typeof ProviderStaffApiStaffTypeEnum[keyof typeof ProviderStaffApiStaffTypeEnum];
|
|
2529
2672
|
/**
|
|
2530
2673
|
*
|
|
2531
2674
|
* @export
|
|
@@ -2776,6 +2919,40 @@ declare const SrcResourceModelsReservationsModelReservationBaseModelSortBy: {
|
|
|
2776
2919
|
readonly ArrivalAtPropertyTz: "arrival_at_property_tz";
|
|
2777
2920
|
};
|
|
2778
2921
|
type SrcResourceModelsReservationsModelReservationBaseModelSortBy = typeof SrcResourceModelsReservationsModelReservationBaseModelSortBy[keyof typeof SrcResourceModelsReservationsModelReservationBaseModelSortBy];
|
|
2922
|
+
/**
|
|
2923
|
+
*
|
|
2924
|
+
* @export
|
|
2925
|
+
* @interface StaffApi
|
|
2926
|
+
*/
|
|
2927
|
+
interface StaffApi {
|
|
2928
|
+
/**
|
|
2929
|
+
*
|
|
2930
|
+
* @type {string}
|
|
2931
|
+
* @memberof StaffApi
|
|
2932
|
+
*/
|
|
2933
|
+
'participantType': StaffApiParticipantTypeEnum;
|
|
2934
|
+
/**
|
|
2935
|
+
*
|
|
2936
|
+
* @type {Participantname}
|
|
2937
|
+
* @memberof StaffApi
|
|
2938
|
+
*/
|
|
2939
|
+
'participantName': Participantname;
|
|
2940
|
+
/**
|
|
2941
|
+
*
|
|
2942
|
+
* @type {Stafftypedata}
|
|
2943
|
+
* @memberof StaffApi
|
|
2944
|
+
*/
|
|
2945
|
+
'staffTypeData': Stafftypedata;
|
|
2946
|
+
}
|
|
2947
|
+
declare const StaffApiParticipantTypeEnum: {
|
|
2948
|
+
readonly Staff: "STAFF";
|
|
2949
|
+
};
|
|
2950
|
+
type StaffApiParticipantTypeEnum = typeof StaffApiParticipantTypeEnum[keyof typeof StaffApiParticipantTypeEnum];
|
|
2951
|
+
/**
|
|
2952
|
+
* @type Stafftypedata
|
|
2953
|
+
* @export
|
|
2954
|
+
*/
|
|
2955
|
+
type Stafftypedata = ExternalStaffApi | InternalStaffApi | ProviderStaffApi;
|
|
2779
2956
|
/**
|
|
2780
2957
|
*
|
|
2781
2958
|
* @export
|
|
@@ -6390,4 +6567,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6390
6567
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6391
6568
|
}
|
|
6392
6569
|
|
|
6393
|
-
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, type BaseAddressApi, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, type ListResponseAPISuggestedReply, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PhonesApi, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, RentalProviderTypes, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type SubjectApi, SuggestedRepliesApi, SuggestedRepliesApiAxiosParamCreator, SuggestedRepliesApiFactory, SuggestedRepliesApiFp, type ToItemApi, type TwilioConversationDataApi, TwilioConversationDataApiConversationTypeEnum, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, type TwilioProviderMessageApi, TwilioProviderMessageApiMessageTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing };
|
|
6570
|
+
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, type BaseAddressApi, type 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 EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, 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, 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 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, 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, 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
|
@@ -1127,6 +1127,12 @@ interface APIMessage {
|
|
|
1127
1127
|
* @memberof APIMessage
|
|
1128
1128
|
*/
|
|
1129
1129
|
'messageTypeData': Messagetypedata;
|
|
1130
|
+
/**
|
|
1131
|
+
*
|
|
1132
|
+
* @type {Participanttypedata}
|
|
1133
|
+
* @memberof APIMessage
|
|
1134
|
+
*/
|
|
1135
|
+
'participantTypeData': Participanttypedata;
|
|
1130
1136
|
}
|
|
1131
1137
|
/**
|
|
1132
1138
|
*
|
|
@@ -1632,6 +1638,29 @@ interface BaseAddressApi {
|
|
|
1632
1638
|
*/
|
|
1633
1639
|
'region'?: string | null;
|
|
1634
1640
|
}
|
|
1641
|
+
/**
|
|
1642
|
+
*
|
|
1643
|
+
* @export
|
|
1644
|
+
* @interface BotApi
|
|
1645
|
+
*/
|
|
1646
|
+
interface BotApi {
|
|
1647
|
+
/**
|
|
1648
|
+
*
|
|
1649
|
+
* @type {string}
|
|
1650
|
+
* @memberof BotApi
|
|
1651
|
+
*/
|
|
1652
|
+
'participantType': BotApiParticipantTypeEnum;
|
|
1653
|
+
/**
|
|
1654
|
+
*
|
|
1655
|
+
* @type {Participantname}
|
|
1656
|
+
* @memberof BotApi
|
|
1657
|
+
*/
|
|
1658
|
+
'participantName': Participantname;
|
|
1659
|
+
}
|
|
1660
|
+
declare const BotApiParticipantTypeEnum: {
|
|
1661
|
+
readonly Bot: "BOT";
|
|
1662
|
+
};
|
|
1663
|
+
type BotApiParticipantTypeEnum = typeof BotApiParticipantTypeEnum[keyof typeof BotApiParticipantTypeEnum];
|
|
1635
1664
|
/**
|
|
1636
1665
|
*
|
|
1637
1666
|
* @export
|
|
@@ -1837,6 +1866,58 @@ declare const EmailProviderMessageApiMessageTypeEnum: {
|
|
|
1837
1866
|
readonly Email: "EMAIL";
|
|
1838
1867
|
};
|
|
1839
1868
|
type EmailProviderMessageApiMessageTypeEnum = typeof EmailProviderMessageApiMessageTypeEnum[keyof typeof EmailProviderMessageApiMessageTypeEnum];
|
|
1869
|
+
/**
|
|
1870
|
+
*
|
|
1871
|
+
* @export
|
|
1872
|
+
* @interface ExternalStaffApi
|
|
1873
|
+
*/
|
|
1874
|
+
interface ExternalStaffApi {
|
|
1875
|
+
/**
|
|
1876
|
+
*
|
|
1877
|
+
* @type {string}
|
|
1878
|
+
* @memberof ExternalStaffApi
|
|
1879
|
+
*/
|
|
1880
|
+
'staffType': ExternalStaffApiStaffTypeEnum;
|
|
1881
|
+
/**
|
|
1882
|
+
*
|
|
1883
|
+
* @type {string}
|
|
1884
|
+
* @memberof ExternalStaffApi
|
|
1885
|
+
*/
|
|
1886
|
+
'contactId': string;
|
|
1887
|
+
}
|
|
1888
|
+
declare const ExternalStaffApiStaffTypeEnum: {
|
|
1889
|
+
readonly ExternalStaff: "EXTERNAL_STAFF";
|
|
1890
|
+
};
|
|
1891
|
+
type ExternalStaffApiStaffTypeEnum = typeof ExternalStaffApiStaffTypeEnum[keyof typeof ExternalStaffApiStaffTypeEnum];
|
|
1892
|
+
/**
|
|
1893
|
+
*
|
|
1894
|
+
* @export
|
|
1895
|
+
* @interface GuestApi
|
|
1896
|
+
*/
|
|
1897
|
+
interface GuestApi {
|
|
1898
|
+
/**
|
|
1899
|
+
*
|
|
1900
|
+
* @type {string}
|
|
1901
|
+
* @memberof GuestApi
|
|
1902
|
+
*/
|
|
1903
|
+
'participantType': GuestApiParticipantTypeEnum;
|
|
1904
|
+
/**
|
|
1905
|
+
*
|
|
1906
|
+
* @type {Participantname}
|
|
1907
|
+
* @memberof GuestApi
|
|
1908
|
+
*/
|
|
1909
|
+
'participantName': Participantname;
|
|
1910
|
+
/**
|
|
1911
|
+
*
|
|
1912
|
+
* @type {string}
|
|
1913
|
+
* @memberof GuestApi
|
|
1914
|
+
*/
|
|
1915
|
+
'contactId'?: string | null;
|
|
1916
|
+
}
|
|
1917
|
+
declare const GuestApiParticipantTypeEnum: {
|
|
1918
|
+
readonly Guest: "GUEST";
|
|
1919
|
+
};
|
|
1920
|
+
type GuestApiParticipantTypeEnum = typeof GuestApiParticipantTypeEnum[keyof typeof GuestApiParticipantTypeEnum];
|
|
1840
1921
|
/**
|
|
1841
1922
|
*
|
|
1842
1923
|
* @export
|
|
@@ -1923,6 +2004,29 @@ interface HostawayWebhook {
|
|
|
1923
2004
|
* @export
|
|
1924
2005
|
*/
|
|
1925
2006
|
type Inboxtypedata = EmailInboxApi | PhoneInboxApi | ProviderAccountInboxApi;
|
|
2007
|
+
/**
|
|
2008
|
+
*
|
|
2009
|
+
* @export
|
|
2010
|
+
* @interface InternalStaffApi
|
|
2011
|
+
*/
|
|
2012
|
+
interface InternalStaffApi {
|
|
2013
|
+
/**
|
|
2014
|
+
*
|
|
2015
|
+
* @type {string}
|
|
2016
|
+
* @memberof InternalStaffApi
|
|
2017
|
+
*/
|
|
2018
|
+
'staffType': InternalStaffApiStaffTypeEnum;
|
|
2019
|
+
/**
|
|
2020
|
+
*
|
|
2021
|
+
* @type {string}
|
|
2022
|
+
* @memberof InternalStaffApi
|
|
2023
|
+
*/
|
|
2024
|
+
'userId': string;
|
|
2025
|
+
}
|
|
2026
|
+
declare const InternalStaffApiStaffTypeEnum: {
|
|
2027
|
+
readonly InternalStaff: "INTERNAL_STAFF";
|
|
2028
|
+
};
|
|
2029
|
+
type InternalStaffApiStaffTypeEnum = typeof InternalStaffApiStaffTypeEnum[keyof typeof InternalStaffApiStaffTypeEnum];
|
|
1926
2030
|
/**
|
|
1927
2031
|
*
|
|
1928
2032
|
* @export
|
|
@@ -2245,6 +2349,16 @@ declare const PaginationDirection: {
|
|
|
2245
2349
|
readonly Backward: "backward";
|
|
2246
2350
|
};
|
|
2247
2351
|
type PaginationDirection = typeof PaginationDirection[keyof typeof PaginationDirection];
|
|
2352
|
+
/**
|
|
2353
|
+
* @type Participantname
|
|
2354
|
+
* @export
|
|
2355
|
+
*/
|
|
2356
|
+
type Participantname = string;
|
|
2357
|
+
/**
|
|
2358
|
+
* @type Participanttypedata
|
|
2359
|
+
* @export
|
|
2360
|
+
*/
|
|
2361
|
+
type Participanttypedata = BotApi | GuestApi | StaffApi;
|
|
2248
2362
|
/**
|
|
2249
2363
|
*
|
|
2250
2364
|
* @export
|
|
@@ -2526,6 +2640,35 @@ interface ProviderPhonesApi {
|
|
|
2526
2640
|
*/
|
|
2527
2641
|
'providers': Array<ProviderAttributionApi>;
|
|
2528
2642
|
}
|
|
2643
|
+
/**
|
|
2644
|
+
*
|
|
2645
|
+
* @export
|
|
2646
|
+
* @interface ProviderStaffApi
|
|
2647
|
+
*/
|
|
2648
|
+
interface ProviderStaffApi {
|
|
2649
|
+
/**
|
|
2650
|
+
*
|
|
2651
|
+
* @type {string}
|
|
2652
|
+
* @memberof ProviderStaffApi
|
|
2653
|
+
*/
|
|
2654
|
+
'staffType': ProviderStaffApiStaffTypeEnum;
|
|
2655
|
+
/**
|
|
2656
|
+
*
|
|
2657
|
+
* @type {string}
|
|
2658
|
+
* @memberof ProviderStaffApi
|
|
2659
|
+
*/
|
|
2660
|
+
'providerUserId': string;
|
|
2661
|
+
/**
|
|
2662
|
+
*
|
|
2663
|
+
* @type {string}
|
|
2664
|
+
* @memberof ProviderStaffApi
|
|
2665
|
+
*/
|
|
2666
|
+
'providerReadAt'?: string | null;
|
|
2667
|
+
}
|
|
2668
|
+
declare const ProviderStaffApiStaffTypeEnum: {
|
|
2669
|
+
readonly ProviderStaff: "PROVIDER_STAFF";
|
|
2670
|
+
};
|
|
2671
|
+
type ProviderStaffApiStaffTypeEnum = typeof ProviderStaffApiStaffTypeEnum[keyof typeof ProviderStaffApiStaffTypeEnum];
|
|
2529
2672
|
/**
|
|
2530
2673
|
*
|
|
2531
2674
|
* @export
|
|
@@ -2776,6 +2919,40 @@ declare const SrcResourceModelsReservationsModelReservationBaseModelSortBy: {
|
|
|
2776
2919
|
readonly ArrivalAtPropertyTz: "arrival_at_property_tz";
|
|
2777
2920
|
};
|
|
2778
2921
|
type SrcResourceModelsReservationsModelReservationBaseModelSortBy = typeof SrcResourceModelsReservationsModelReservationBaseModelSortBy[keyof typeof SrcResourceModelsReservationsModelReservationBaseModelSortBy];
|
|
2922
|
+
/**
|
|
2923
|
+
*
|
|
2924
|
+
* @export
|
|
2925
|
+
* @interface StaffApi
|
|
2926
|
+
*/
|
|
2927
|
+
interface StaffApi {
|
|
2928
|
+
/**
|
|
2929
|
+
*
|
|
2930
|
+
* @type {string}
|
|
2931
|
+
* @memberof StaffApi
|
|
2932
|
+
*/
|
|
2933
|
+
'participantType': StaffApiParticipantTypeEnum;
|
|
2934
|
+
/**
|
|
2935
|
+
*
|
|
2936
|
+
* @type {Participantname}
|
|
2937
|
+
* @memberof StaffApi
|
|
2938
|
+
*/
|
|
2939
|
+
'participantName': Participantname;
|
|
2940
|
+
/**
|
|
2941
|
+
*
|
|
2942
|
+
* @type {Stafftypedata}
|
|
2943
|
+
* @memberof StaffApi
|
|
2944
|
+
*/
|
|
2945
|
+
'staffTypeData': Stafftypedata;
|
|
2946
|
+
}
|
|
2947
|
+
declare const StaffApiParticipantTypeEnum: {
|
|
2948
|
+
readonly Staff: "STAFF";
|
|
2949
|
+
};
|
|
2950
|
+
type StaffApiParticipantTypeEnum = typeof StaffApiParticipantTypeEnum[keyof typeof StaffApiParticipantTypeEnum];
|
|
2951
|
+
/**
|
|
2952
|
+
* @type Stafftypedata
|
|
2953
|
+
* @export
|
|
2954
|
+
*/
|
|
2955
|
+
type Stafftypedata = ExternalStaffApi | InternalStaffApi | ProviderStaffApi;
|
|
2779
2956
|
/**
|
|
2780
2957
|
*
|
|
2781
2958
|
* @export
|
|
@@ -6390,4 +6567,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6390
6567
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6391
6568
|
}
|
|
6392
6569
|
|
|
6393
|
-
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, type BaseAddressApi, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, type ListResponseAPISuggestedReply, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PhonesApi, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, RentalProviderTypes, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type SubjectApi, SuggestedRepliesApi, SuggestedRepliesApiAxiosParamCreator, SuggestedRepliesApiFactory, SuggestedRepliesApiFp, type ToItemApi, type TwilioConversationDataApi, TwilioConversationDataApiConversationTypeEnum, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, type TwilioProviderMessageApi, TwilioProviderMessageApiMessageTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing };
|
|
6570
|
+
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, type BaseAddressApi, type 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 EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, 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, 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 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, 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, 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.js
CHANGED
|
@@ -75,6 +75,9 @@ var createRequestFunction = function(axiosArgs, globalAxios3, BASE_PATH2, config
|
|
|
75
75
|
};
|
|
76
76
|
|
|
77
77
|
// src/api.ts
|
|
78
|
+
var BotApiParticipantTypeEnum = {
|
|
79
|
+
Bot: "BOT"
|
|
80
|
+
};
|
|
78
81
|
var ContactListingType = {
|
|
79
82
|
Owner: "OWNER"
|
|
80
83
|
};
|
|
@@ -91,6 +94,15 @@ var EmailInboxApiInboxTypeEnum = {
|
|
|
91
94
|
var EmailProviderMessageApiMessageTypeEnum = {
|
|
92
95
|
Email: "EMAIL"
|
|
93
96
|
};
|
|
97
|
+
var ExternalStaffApiStaffTypeEnum = {
|
|
98
|
+
ExternalStaff: "EXTERNAL_STAFF"
|
|
99
|
+
};
|
|
100
|
+
var GuestApiParticipantTypeEnum = {
|
|
101
|
+
Guest: "GUEST"
|
|
102
|
+
};
|
|
103
|
+
var InternalStaffApiStaffTypeEnum = {
|
|
104
|
+
InternalStaff: "INTERNAL_STAFF"
|
|
105
|
+
};
|
|
94
106
|
var MessageDirection = {
|
|
95
107
|
Inbound: "INBOUND",
|
|
96
108
|
Outbound: "OUTBOUND"
|
|
@@ -124,6 +136,9 @@ var ProviderCommunicationType = {
|
|
|
124
136
|
var ProviderConversationDataApiConversationTypeEnum = {
|
|
125
137
|
RentalProvider: "RENTAL_PROVIDER"
|
|
126
138
|
};
|
|
139
|
+
var ProviderStaffApiStaffTypeEnum = {
|
|
140
|
+
ProviderStaff: "PROVIDER_STAFF"
|
|
141
|
+
};
|
|
127
142
|
var RentalProviderMessageApiMessageTypeEnum = {
|
|
128
143
|
RentalProvider: "RENTAL_PROVIDER"
|
|
129
144
|
};
|
|
@@ -186,6 +201,9 @@ var SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy = {
|
|
|
186
201
|
var SrcResourceModelsReservationsModelReservationBaseModelSortBy = {
|
|
187
202
|
ArrivalAtPropertyTz: "arrival_at_property_tz"
|
|
188
203
|
};
|
|
204
|
+
var StaffApiParticipantTypeEnum = {
|
|
205
|
+
Staff: "STAFF"
|
|
206
|
+
};
|
|
189
207
|
var TwilioConversationDataApiConversationTypeEnum = {
|
|
190
208
|
Text: "TEXT"
|
|
191
209
|
};
|
|
@@ -6171,5 +6189,11 @@ var Configuration = class {
|
|
|
6171
6189
|
|
|
6172
6190
|
|
|
6173
6191
|
|
|
6174
|
-
|
|
6192
|
+
|
|
6193
|
+
|
|
6194
|
+
|
|
6195
|
+
|
|
6196
|
+
|
|
6197
|
+
|
|
6198
|
+
exports.AccountsApi = AccountsApi; exports.AccountsApiAxiosParamCreator = AccountsApiAxiosParamCreator; exports.AccountsApiFactory = AccountsApiFactory; exports.AccountsApiFp = AccountsApiFp; exports.BotApiParticipantTypeEnum = BotApiParticipantTypeEnum; exports.Configuration = Configuration; exports.ContactListingType = ContactListingType; exports.ContactsApi = ContactsApi; exports.ContactsApiAxiosParamCreator = ContactsApiAxiosParamCreator; exports.ContactsApiFactory = ContactsApiFactory; exports.ContactsApiFp = ContactsApiFp; exports.ConversationStatus = ConversationStatus; exports.ConversationsApi = ConversationsApi; exports.ConversationsApiAxiosParamCreator = ConversationsApiAxiosParamCreator; exports.ConversationsApiFactory = ConversationsApiFactory; exports.ConversationsApiFp = ConversationsApiFp; exports.EmailConversationDataApiConversationTypeEnum = EmailConversationDataApiConversationTypeEnum; exports.EmailInboxApiInboxTypeEnum = EmailInboxApiInboxTypeEnum; exports.EmailProviderMessageApiMessageTypeEnum = EmailProviderMessageApiMessageTypeEnum; exports.ExternalStaffApiStaffTypeEnum = ExternalStaffApiStaffTypeEnum; exports.GuestApiParticipantTypeEnum = GuestApiParticipantTypeEnum; exports.HostawayApi = HostawayApi; exports.HostawayApiAxiosParamCreator = HostawayApiAxiosParamCreator; exports.HostawayApiFactory = HostawayApiFactory; exports.HostawayApiFp = HostawayApiFp; exports.InboxesApi = InboxesApi; exports.InboxesApiAxiosParamCreator = InboxesApiAxiosParamCreator; exports.InboxesApiFactory = InboxesApiFactory; exports.InboxesApiFp = InboxesApiFp; exports.InquiriesApi = InquiriesApi; exports.InquiriesApiAxiosParamCreator = InquiriesApiAxiosParamCreator; exports.InquiriesApiFactory = InquiriesApiFactory; exports.InquiriesApiFp = InquiriesApiFp; exports.InternalStaffApiStaffTypeEnum = InternalStaffApiStaffTypeEnum; exports.ListingsApi = ListingsApi; exports.ListingsApiAxiosParamCreator = ListingsApiAxiosParamCreator; exports.ListingsApiFactory = ListingsApiFactory; exports.ListingsApiFp = ListingsApiFp; exports.ManagedPhoneNumbersApi = ManagedPhoneNumbersApi; exports.ManagedPhoneNumbersApiAxiosParamCreator = ManagedPhoneNumbersApiAxiosParamCreator; exports.ManagedPhoneNumbersApiFactory = ManagedPhoneNumbersApiFactory; exports.ManagedPhoneNumbersApiFp = ManagedPhoneNumbersApiFp; exports.MessageDirection = MessageDirection; exports.MessageStatus = MessageStatus; exports.PaginationDirection = PaginationDirection; exports.PhoneInboxApiInboxTypeEnum = PhoneInboxApiInboxTypeEnum; exports.ProviderAccountInboxApiInboxTypeEnum = ProviderAccountInboxApiInboxTypeEnum; exports.ProviderCommunicationType = ProviderCommunicationType; exports.ProviderConversationDataApiConversationTypeEnum = ProviderConversationDataApiConversationTypeEnum; exports.ProviderStaffApiStaffTypeEnum = ProviderStaffApiStaffTypeEnum; exports.ProvidersApi = ProvidersApi; exports.ProvidersApiAxiosParamCreator = ProvidersApiAxiosParamCreator; exports.ProvidersApiFactory = ProvidersApiFactory; exports.ProvidersApiFp = ProvidersApiFp; exports.RentalProviderMessageApiMessageTypeEnum = RentalProviderMessageApiMessageTypeEnum; exports.RentalProviderTypes = RentalProviderTypes; exports.ReservationChannelTypes = ReservationChannelTypes; exports.ReservationStatus = ReservationStatus; exports.ReservationsApi = ReservationsApi; exports.ReservationsApiAxiosParamCreator = ReservationsApiAxiosParamCreator; exports.ReservationsApiFactory = ReservationsApiFactory; exports.ReservationsApiFp = ReservationsApiFp; exports.SortOrder = SortOrder; exports.SrcResourceModelsContactsModelContactsModelContactSortBy = SrcResourceModelsContactsModelContactsModelContactSortBy; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum; exports.SrcResourceModelsListingsModelListingBaseSortBy = SrcResourceModelsListingsModelListingBaseSortBy; exports.SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy = SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy; exports.SrcResourceModelsReservationsModelReservationBaseModelSortBy = SrcResourceModelsReservationsModelReservationBaseModelSortBy; exports.StaffApiParticipantTypeEnum = StaffApiParticipantTypeEnum; exports.SuggestedRepliesApi = SuggestedRepliesApi; exports.SuggestedRepliesApiAxiosParamCreator = SuggestedRepliesApiAxiosParamCreator; exports.SuggestedRepliesApiFactory = SuggestedRepliesApiFactory; exports.SuggestedRepliesApiFp = SuggestedRepliesApiFp; exports.TwilioConversationDataApiConversationTypeEnum = TwilioConversationDataApiConversationTypeEnum; exports.TwilioInboundSenderTypeDataApiDirectionEnum = TwilioInboundSenderTypeDataApiDirectionEnum; exports.TwilioOutboundSenderTypeDataApiDirectionEnum = TwilioOutboundSenderTypeDataApiDirectionEnum; exports.TwilioProviderMessageApiMessageTypeEnum = TwilioProviderMessageApiMessageTypeEnum; exports.UnboundApi = UnboundApi; exports.UnboundApiAxiosParamCreator = UnboundApiAxiosParamCreator; exports.UnboundApiFactory = UnboundApiFactory; exports.UnboundApiFp = UnboundApiFp;
|
|
6175
6199
|
//# sourceMappingURL=index.js.map
|