@ember-home/unbound-ts-client 0.0.88 → 0.0.89
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 +38 -7
- package/dist/index.d.ts +38 -7
- package/dist/index.js +17 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +17 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2687,14 +2687,14 @@ interface ProviderAttributionApi {
|
|
|
2687
2687
|
* @export
|
|
2688
2688
|
* @enum {string}
|
|
2689
2689
|
*/
|
|
2690
|
-
declare const
|
|
2690
|
+
declare const ProviderCommunicationTypeInput: {
|
|
2691
2691
|
readonly Sms: "SMS";
|
|
2692
2692
|
readonly Email: "EMAIL";
|
|
2693
2693
|
readonly Channel: "CHANNEL";
|
|
2694
2694
|
readonly Whatsapp: "WHATSAPP";
|
|
2695
2695
|
readonly Note: "NOTE";
|
|
2696
2696
|
};
|
|
2697
|
-
type
|
|
2697
|
+
type ProviderCommunicationTypeInput = typeof ProviderCommunicationTypeInput[keyof typeof ProviderCommunicationTypeInput];
|
|
2698
2698
|
/**
|
|
2699
2699
|
*
|
|
2700
2700
|
* @export
|
|
@@ -2749,6 +2749,12 @@ interface ProviderConversationDataApi {
|
|
|
2749
2749
|
* @memberof ProviderConversationDataApi
|
|
2750
2750
|
*/
|
|
2751
2751
|
'contactId'?: string | null;
|
|
2752
|
+
/**
|
|
2753
|
+
*
|
|
2754
|
+
* @type {Array<SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType>}
|
|
2755
|
+
* @memberof ProviderConversationDataApi
|
|
2756
|
+
*/
|
|
2757
|
+
'availableCommunicationTypes'?: Array<SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType>;
|
|
2752
2758
|
}
|
|
2753
2759
|
declare const ProviderConversationDataApiConversationTypeEnum: {
|
|
2754
2760
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
@@ -2897,10 +2903,10 @@ interface RentalProviderMessageApi {
|
|
|
2897
2903
|
'messageType': RentalProviderMessageApiMessageTypeEnum;
|
|
2898
2904
|
/**
|
|
2899
2905
|
*
|
|
2900
|
-
* @type {
|
|
2906
|
+
* @type {SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType}
|
|
2901
2907
|
* @memberof RentalProviderMessageApi
|
|
2902
2908
|
*/
|
|
2903
|
-
'communicationType':
|
|
2909
|
+
'communicationType': SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType;
|
|
2904
2910
|
}
|
|
2905
2911
|
declare const RentalProviderMessageApiMessageTypeEnum: {
|
|
2906
2912
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
@@ -2982,6 +2988,18 @@ declare const SrcResourceModelsContactsModelContactsModelContactSortBy: {
|
|
|
2982
2988
|
readonly CompanyLastFirst: "company_last_first";
|
|
2983
2989
|
};
|
|
2984
2990
|
type SrcResourceModelsContactsModelContactsModelContactSortBy = typeof SrcResourceModelsContactsModelContactsModelContactSortBy[keyof typeof SrcResourceModelsContactsModelContactsModelContactSortBy];
|
|
2991
|
+
/**
|
|
2992
|
+
*
|
|
2993
|
+
* @export
|
|
2994
|
+
* @enum {string}
|
|
2995
|
+
*/
|
|
2996
|
+
declare const SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType: {
|
|
2997
|
+
readonly Sms: "SMS";
|
|
2998
|
+
readonly Email: "EMAIL";
|
|
2999
|
+
readonly Channel: "CHANNEL";
|
|
3000
|
+
readonly Whatsapp: "WHATSAPP";
|
|
3001
|
+
};
|
|
3002
|
+
type SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType = typeof SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType[keyof typeof SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType];
|
|
2985
3003
|
/**
|
|
2986
3004
|
*
|
|
2987
3005
|
* @export
|
|
@@ -2996,10 +3014,10 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi1 {
|
|
|
2996
3014
|
'messageType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum;
|
|
2997
3015
|
/**
|
|
2998
3016
|
*
|
|
2999
|
-
* @type {
|
|
3017
|
+
* @type {ProviderCommunicationTypeInput}
|
|
3000
3018
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
3001
3019
|
*/
|
|
3002
|
-
'communicationType':
|
|
3020
|
+
'communicationType': ProviderCommunicationTypeInput;
|
|
3003
3021
|
}
|
|
3004
3022
|
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum: {
|
|
3005
3023
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
@@ -3072,6 +3090,19 @@ declare const SrcResourceModelsListingsModelListingBaseSortBy: {
|
|
|
3072
3090
|
readonly Title: "title";
|
|
3073
3091
|
};
|
|
3074
3092
|
type SrcResourceModelsListingsModelListingBaseSortBy = typeof SrcResourceModelsListingsModelListingBaseSortBy[keyof typeof SrcResourceModelsListingsModelListingBaseSortBy];
|
|
3093
|
+
/**
|
|
3094
|
+
*
|
|
3095
|
+
* @export
|
|
3096
|
+
* @enum {string}
|
|
3097
|
+
*/
|
|
3098
|
+
declare const SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType: {
|
|
3099
|
+
readonly Sms: "SMS";
|
|
3100
|
+
readonly Email: "EMAIL";
|
|
3101
|
+
readonly Channel: "CHANNEL";
|
|
3102
|
+
readonly Whatsapp: "WHATSAPP";
|
|
3103
|
+
readonly Note: "NOTE";
|
|
3104
|
+
};
|
|
3105
|
+
type SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType = typeof SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType[keyof typeof SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType];
|
|
3075
3106
|
/**
|
|
3076
3107
|
*
|
|
3077
3108
|
* @export
|
|
@@ -6962,4 +6993,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
6962
6993
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
6963
6994
|
}
|
|
6964
6995
|
|
|
6965
|
-
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate1, type APIMessageCreate2, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIUserDevice, type APIUserDeviceCreate, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, type ConversationSuggestionApi, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type MessageAttachmentApi, MessageDirection, MessageStatus, type Messagecreate, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PhonesApi, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi,
|
|
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -2687,14 +2687,14 @@ interface ProviderAttributionApi {
|
|
|
2687
2687
|
* @export
|
|
2688
2688
|
* @enum {string}
|
|
2689
2689
|
*/
|
|
2690
|
-
declare const
|
|
2690
|
+
declare const ProviderCommunicationTypeInput: {
|
|
2691
2691
|
readonly Sms: "SMS";
|
|
2692
2692
|
readonly Email: "EMAIL";
|
|
2693
2693
|
readonly Channel: "CHANNEL";
|
|
2694
2694
|
readonly Whatsapp: "WHATSAPP";
|
|
2695
2695
|
readonly Note: "NOTE";
|
|
2696
2696
|
};
|
|
2697
|
-
type
|
|
2697
|
+
type ProviderCommunicationTypeInput = typeof ProviderCommunicationTypeInput[keyof typeof ProviderCommunicationTypeInput];
|
|
2698
2698
|
/**
|
|
2699
2699
|
*
|
|
2700
2700
|
* @export
|
|
@@ -2749,6 +2749,12 @@ interface ProviderConversationDataApi {
|
|
|
2749
2749
|
* @memberof ProviderConversationDataApi
|
|
2750
2750
|
*/
|
|
2751
2751
|
'contactId'?: string | null;
|
|
2752
|
+
/**
|
|
2753
|
+
*
|
|
2754
|
+
* @type {Array<SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType>}
|
|
2755
|
+
* @memberof ProviderConversationDataApi
|
|
2756
|
+
*/
|
|
2757
|
+
'availableCommunicationTypes'?: Array<SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType>;
|
|
2752
2758
|
}
|
|
2753
2759
|
declare const ProviderConversationDataApiConversationTypeEnum: {
|
|
2754
2760
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
@@ -2897,10 +2903,10 @@ interface RentalProviderMessageApi {
|
|
|
2897
2903
|
'messageType': RentalProviderMessageApiMessageTypeEnum;
|
|
2898
2904
|
/**
|
|
2899
2905
|
*
|
|
2900
|
-
* @type {
|
|
2906
|
+
* @type {SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType}
|
|
2901
2907
|
* @memberof RentalProviderMessageApi
|
|
2902
2908
|
*/
|
|
2903
|
-
'communicationType':
|
|
2909
|
+
'communicationType': SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType;
|
|
2904
2910
|
}
|
|
2905
2911
|
declare const RentalProviderMessageApiMessageTypeEnum: {
|
|
2906
2912
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
@@ -2982,6 +2988,18 @@ declare const SrcResourceModelsContactsModelContactsModelContactSortBy: {
|
|
|
2982
2988
|
readonly CompanyLastFirst: "company_last_first";
|
|
2983
2989
|
};
|
|
2984
2990
|
type SrcResourceModelsContactsModelContactsModelContactSortBy = typeof SrcResourceModelsContactsModelContactsModelContactSortBy[keyof typeof SrcResourceModelsContactsModelContactsModelContactSortBy];
|
|
2991
|
+
/**
|
|
2992
|
+
*
|
|
2993
|
+
* @export
|
|
2994
|
+
* @enum {string}
|
|
2995
|
+
*/
|
|
2996
|
+
declare const SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType: {
|
|
2997
|
+
readonly Sms: "SMS";
|
|
2998
|
+
readonly Email: "EMAIL";
|
|
2999
|
+
readonly Channel: "CHANNEL";
|
|
3000
|
+
readonly Whatsapp: "WHATSAPP";
|
|
3001
|
+
};
|
|
3002
|
+
type SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType = typeof SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType[keyof typeof SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType];
|
|
2985
3003
|
/**
|
|
2986
3004
|
*
|
|
2987
3005
|
* @export
|
|
@@ -2996,10 +3014,10 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi1 {
|
|
|
2996
3014
|
'messageType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum;
|
|
2997
3015
|
/**
|
|
2998
3016
|
*
|
|
2999
|
-
* @type {
|
|
3017
|
+
* @type {ProviderCommunicationTypeInput}
|
|
3000
3018
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
3001
3019
|
*/
|
|
3002
|
-
'communicationType':
|
|
3020
|
+
'communicationType': ProviderCommunicationTypeInput;
|
|
3003
3021
|
}
|
|
3004
3022
|
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum: {
|
|
3005
3023
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
@@ -3072,6 +3090,19 @@ declare const SrcResourceModelsListingsModelListingBaseSortBy: {
|
|
|
3072
3090
|
readonly Title: "title";
|
|
3073
3091
|
};
|
|
3074
3092
|
type SrcResourceModelsListingsModelListingBaseSortBy = typeof SrcResourceModelsListingsModelListingBaseSortBy[keyof typeof SrcResourceModelsListingsModelListingBaseSortBy];
|
|
3093
|
+
/**
|
|
3094
|
+
*
|
|
3095
|
+
* @export
|
|
3096
|
+
* @enum {string}
|
|
3097
|
+
*/
|
|
3098
|
+
declare const SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType: {
|
|
3099
|
+
readonly Sms: "SMS";
|
|
3100
|
+
readonly Email: "EMAIL";
|
|
3101
|
+
readonly Channel: "CHANNEL";
|
|
3102
|
+
readonly Whatsapp: "WHATSAPP";
|
|
3103
|
+
readonly Note: "NOTE";
|
|
3104
|
+
};
|
|
3105
|
+
type SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType = typeof SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType[keyof typeof SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType];
|
|
3075
3106
|
/**
|
|
3076
3107
|
*
|
|
3077
3108
|
* @export
|
|
@@ -6962,4 +6993,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
6962
6993
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
6963
6994
|
}
|
|
6964
6995
|
|
|
6965
|
-
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate1, type APIMessageCreate2, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIUserDevice, type APIUserDeviceCreate, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, type ConversationSuggestionApi, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type MessageAttachmentApi, MessageDirection, MessageStatus, type Messagecreate, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PhonesApi, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi,
|
|
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 };
|
package/dist/index.js
CHANGED
|
@@ -127,7 +127,7 @@ var PhoneInboxApiInboxTypeEnum = {
|
|
|
127
127
|
var ProviderAccountInboxApiInboxTypeEnum = {
|
|
128
128
|
RentalProvider: "RENTAL_PROVIDER"
|
|
129
129
|
};
|
|
130
|
-
var
|
|
130
|
+
var ProviderCommunicationTypeInput = {
|
|
131
131
|
Sms: "SMS",
|
|
132
132
|
Email: "EMAIL",
|
|
133
133
|
Channel: "CHANNEL",
|
|
@@ -190,6 +190,12 @@ var SrcResourceModelsContactsModelContactsModelContactSortBy = {
|
|
|
190
190
|
FirstLastCompany: "first_last_company",
|
|
191
191
|
CompanyLastFirst: "company_last_first"
|
|
192
192
|
};
|
|
193
|
+
var SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType = {
|
|
194
|
+
Sms: "SMS",
|
|
195
|
+
Email: "EMAIL",
|
|
196
|
+
Channel: "CHANNEL",
|
|
197
|
+
Whatsapp: "WHATSAPP"
|
|
198
|
+
};
|
|
193
199
|
var SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum = {
|
|
194
200
|
RentalProvider: "RENTAL_PROVIDER"
|
|
195
201
|
};
|
|
@@ -202,6 +208,13 @@ var SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum = {
|
|
|
202
208
|
var SrcResourceModelsListingsModelListingBaseSortBy = {
|
|
203
209
|
Title: "title"
|
|
204
210
|
};
|
|
211
|
+
var SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType = {
|
|
212
|
+
Sms: "SMS",
|
|
213
|
+
Email: "EMAIL",
|
|
214
|
+
Channel: "CHANNEL",
|
|
215
|
+
Whatsapp: "WHATSAPP",
|
|
216
|
+
Note: "NOTE"
|
|
217
|
+
};
|
|
205
218
|
var SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy = {
|
|
206
219
|
SentAt: "sent_at"
|
|
207
220
|
};
|
|
@@ -6343,5 +6356,7 @@ var Configuration = class {
|
|
|
6343
6356
|
|
|
6344
6357
|
|
|
6345
6358
|
|
|
6346
|
-
|
|
6359
|
+
|
|
6360
|
+
|
|
6361
|
+
exports.AccountsApi = AccountsApi; exports.AccountsApiAxiosParamCreator = AccountsApiAxiosParamCreator; exports.AccountsApiFactory = AccountsApiFactory; exports.AccountsApiFp = AccountsApiFp; exports.AuthApi = AuthApi; exports.AuthApiAxiosParamCreator = AuthApiAxiosParamCreator; exports.AuthApiFactory = AuthApiFactory; exports.AuthApiFp = AuthApiFp; 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.ProviderCommunicationTypeInput = ProviderCommunicationTypeInput; exports.ProviderConversationDataApiConversationTypeEnum = ProviderConversationDataApiConversationTypeEnum; exports.ProviderStaffApiStaffTypeEnum = ProviderStaffApiStaffTypeEnum; exports.ProvidersApi = ProvidersApi; exports.ProvidersApiAxiosParamCreator = ProvidersApiAxiosParamCreator; exports.ProvidersApiFactory = ProvidersApiFactory; exports.ProvidersApiFp = ProvidersApiFp; exports.ReasonType = ReasonType; 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.SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType = SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum; exports.SrcResourceModelsListingsModelListingBaseSortBy = SrcResourceModelsListingsModelListingBaseSortBy; exports.SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType = SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType; exports.SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy = SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy; exports.SrcResourceModelsReservationsModelReservationBaseModelSortBy = SrcResourceModelsReservationsModelReservationBaseModelSortBy; exports.StaffApiParticipantTypeEnum = StaffApiParticipantTypeEnum; exports.SuggestionStatus = SuggestionStatus; exports.TwilioConversationDataApiConversationTypeEnum = TwilioConversationDataApiConversationTypeEnum; exports.TwilioInboundSenderTypeDataApiDirectionEnum = TwilioInboundSenderTypeDataApiDirectionEnum; exports.TwilioOutboundSenderTypeDataApiDirectionEnum = TwilioOutboundSenderTypeDataApiDirectionEnum; exports.TwilioProviderMessageApiMessageTypeEnum = TwilioProviderMessageApiMessageTypeEnum; exports.UnboundApi = UnboundApi; exports.UnboundApiAxiosParamCreator = UnboundApiAxiosParamCreator; exports.UnboundApiFactory = UnboundApiFactory; exports.UnboundApiFp = UnboundApiFp; exports.UserDeviceOs = UserDeviceOs; exports.UserDevicesApi = UserDevicesApi; exports.UserDevicesApiAxiosParamCreator = UserDevicesApiAxiosParamCreator; exports.UserDevicesApiFactory = UserDevicesApiFactory; exports.UserDevicesApiFp = UserDevicesApiFp;
|
|
6347
6362
|
//# sourceMappingURL=index.js.map
|