@ember-home/unbound-ts-client 0.0.75 → 0.0.77
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 +18 -53
- package/dist/index.d.ts +18 -53
- package/dist/index.js +1 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +0 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -709,43 +709,43 @@ interface APIConversation {
|
|
|
709
709
|
* @type {string}
|
|
710
710
|
* @memberof APIConversation
|
|
711
711
|
*/
|
|
712
|
-
'
|
|
712
|
+
'lastMessageSentId'?: string | null;
|
|
713
713
|
/**
|
|
714
714
|
*
|
|
715
715
|
* @type {string}
|
|
716
716
|
* @memberof APIConversation
|
|
717
717
|
*/
|
|
718
|
-
'
|
|
718
|
+
'lastMessageSentAt'?: string | null;
|
|
719
719
|
/**
|
|
720
720
|
*
|
|
721
|
-
* @type {
|
|
721
|
+
* @type {string}
|
|
722
722
|
* @memberof APIConversation
|
|
723
723
|
*/
|
|
724
|
-
'
|
|
724
|
+
'conversationId': string;
|
|
725
725
|
/**
|
|
726
726
|
*
|
|
727
|
-
* @type {
|
|
727
|
+
* @type {string}
|
|
728
728
|
* @memberof APIConversation
|
|
729
729
|
*/
|
|
730
|
-
'
|
|
730
|
+
'inboxId': string;
|
|
731
731
|
/**
|
|
732
732
|
*
|
|
733
|
-
* @type {
|
|
733
|
+
* @type {ConversationStatus}
|
|
734
734
|
* @memberof APIConversation
|
|
735
735
|
*/
|
|
736
|
-
'
|
|
736
|
+
'status': ConversationStatus;
|
|
737
737
|
/**
|
|
738
738
|
*
|
|
739
|
-
* @type {
|
|
739
|
+
* @type {boolean}
|
|
740
740
|
* @memberof APIConversation
|
|
741
741
|
*/
|
|
742
|
-
'
|
|
742
|
+
'isUnread': boolean;
|
|
743
743
|
/**
|
|
744
744
|
*
|
|
745
745
|
* @type {string}
|
|
746
746
|
* @memberof APIConversation
|
|
747
747
|
*/
|
|
748
|
-
'
|
|
748
|
+
'lastMessageSentPreview'?: string | null;
|
|
749
749
|
/**
|
|
750
750
|
*
|
|
751
751
|
* @type {Conversationtypedata}
|
|
@@ -765,42 +765,30 @@ interface APIConversation {
|
|
|
765
765
|
* @interface APIConversationUpdate
|
|
766
766
|
*/
|
|
767
767
|
interface APIConversationUpdate {
|
|
768
|
-
/**
|
|
769
|
-
*
|
|
770
|
-
* @type {ConversationStatus}
|
|
771
|
-
* @memberof APIConversationUpdate
|
|
772
|
-
*/
|
|
773
|
-
'status'?: ConversationStatus | null;
|
|
774
|
-
/**
|
|
775
|
-
*
|
|
776
|
-
* @type {boolean}
|
|
777
|
-
* @memberof APIConversationUpdate
|
|
778
|
-
*/
|
|
779
|
-
'isUnread'?: boolean | null;
|
|
780
768
|
/**
|
|
781
769
|
*
|
|
782
770
|
* @type {string}
|
|
783
771
|
* @memberof APIConversationUpdate
|
|
784
772
|
*/
|
|
785
|
-
'
|
|
773
|
+
'lastMessageSentId'?: string | null;
|
|
786
774
|
/**
|
|
787
775
|
*
|
|
788
776
|
* @type {string}
|
|
789
777
|
* @memberof APIConversationUpdate
|
|
790
778
|
*/
|
|
791
|
-
'
|
|
779
|
+
'lastMessageSentAt'?: string | null;
|
|
792
780
|
/**
|
|
793
781
|
*
|
|
794
|
-
* @type {
|
|
782
|
+
* @type {ConversationStatus}
|
|
795
783
|
* @memberof APIConversationUpdate
|
|
796
784
|
*/
|
|
797
|
-
'
|
|
785
|
+
'status'?: ConversationStatus | null;
|
|
798
786
|
/**
|
|
799
787
|
*
|
|
800
|
-
* @type {
|
|
788
|
+
* @type {boolean}
|
|
801
789
|
* @memberof APIConversationUpdate
|
|
802
790
|
*/
|
|
803
|
-
'
|
|
791
|
+
'isUnread'?: boolean | null;
|
|
804
792
|
}
|
|
805
793
|
/**
|
|
806
794
|
*
|
|
@@ -1127,18 +1115,6 @@ interface APIMessage {
|
|
|
1127
1115
|
* @memberof APIMessage
|
|
1128
1116
|
*/
|
|
1129
1117
|
'direction': MessageDirection;
|
|
1130
|
-
/**
|
|
1131
|
-
*
|
|
1132
|
-
* @type {string}
|
|
1133
|
-
* @memberof APIMessage
|
|
1134
|
-
*/
|
|
1135
|
-
'createdAt': string;
|
|
1136
|
-
/**
|
|
1137
|
-
*
|
|
1138
|
-
* @type {string}
|
|
1139
|
-
* @memberof APIMessage
|
|
1140
|
-
*/
|
|
1141
|
-
'updatedAt': string;
|
|
1142
1118
|
/**
|
|
1143
1119
|
*
|
|
1144
1120
|
* @type {MessageStatus}
|
|
@@ -2397,17 +2373,6 @@ declare const PaginationDirection: {
|
|
|
2397
2373
|
readonly Backward: "backward";
|
|
2398
2374
|
};
|
|
2399
2375
|
type PaginationDirection = typeof PaginationDirection[keyof typeof PaginationDirection];
|
|
2400
|
-
/**
|
|
2401
|
-
*
|
|
2402
|
-
* @export
|
|
2403
|
-
* @enum {string}
|
|
2404
|
-
*/
|
|
2405
|
-
declare const ParticipantType: {
|
|
2406
|
-
readonly Guest: "GUEST";
|
|
2407
|
-
readonly Staff: "STAFF";
|
|
2408
|
-
readonly Bot: "BOT";
|
|
2409
|
-
};
|
|
2410
|
-
type ParticipantType = typeof ParticipantType[keyof typeof ParticipantType];
|
|
2411
2376
|
/**
|
|
2412
2377
|
* @type Participantname
|
|
2413
2378
|
* @export
|
|
@@ -6710,4 +6675,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6710
6675
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6711
6676
|
}
|
|
6712
6677
|
|
|
6713
|
-
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 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, 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, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagecreate, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection,
|
|
6678
|
+
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 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, 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, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagecreate, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PhonesApi, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, ReasonType, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, RentalProviderTypes, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type Suggestions, type ToItemApi, type TwilioConversationDataApi, TwilioConversationDataApiConversationTypeEnum, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, type TwilioProviderMessageApi, TwilioProviderMessageApiMessageTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UserApi };
|
package/dist/index.d.ts
CHANGED
|
@@ -709,43 +709,43 @@ interface APIConversation {
|
|
|
709
709
|
* @type {string}
|
|
710
710
|
* @memberof APIConversation
|
|
711
711
|
*/
|
|
712
|
-
'
|
|
712
|
+
'lastMessageSentId'?: string | null;
|
|
713
713
|
/**
|
|
714
714
|
*
|
|
715
715
|
* @type {string}
|
|
716
716
|
* @memberof APIConversation
|
|
717
717
|
*/
|
|
718
|
-
'
|
|
718
|
+
'lastMessageSentAt'?: string | null;
|
|
719
719
|
/**
|
|
720
720
|
*
|
|
721
|
-
* @type {
|
|
721
|
+
* @type {string}
|
|
722
722
|
* @memberof APIConversation
|
|
723
723
|
*/
|
|
724
|
-
'
|
|
724
|
+
'conversationId': string;
|
|
725
725
|
/**
|
|
726
726
|
*
|
|
727
|
-
* @type {
|
|
727
|
+
* @type {string}
|
|
728
728
|
* @memberof APIConversation
|
|
729
729
|
*/
|
|
730
|
-
'
|
|
730
|
+
'inboxId': string;
|
|
731
731
|
/**
|
|
732
732
|
*
|
|
733
|
-
* @type {
|
|
733
|
+
* @type {ConversationStatus}
|
|
734
734
|
* @memberof APIConversation
|
|
735
735
|
*/
|
|
736
|
-
'
|
|
736
|
+
'status': ConversationStatus;
|
|
737
737
|
/**
|
|
738
738
|
*
|
|
739
|
-
* @type {
|
|
739
|
+
* @type {boolean}
|
|
740
740
|
* @memberof APIConversation
|
|
741
741
|
*/
|
|
742
|
-
'
|
|
742
|
+
'isUnread': boolean;
|
|
743
743
|
/**
|
|
744
744
|
*
|
|
745
745
|
* @type {string}
|
|
746
746
|
* @memberof APIConversation
|
|
747
747
|
*/
|
|
748
|
-
'
|
|
748
|
+
'lastMessageSentPreview'?: string | null;
|
|
749
749
|
/**
|
|
750
750
|
*
|
|
751
751
|
* @type {Conversationtypedata}
|
|
@@ -765,42 +765,30 @@ interface APIConversation {
|
|
|
765
765
|
* @interface APIConversationUpdate
|
|
766
766
|
*/
|
|
767
767
|
interface APIConversationUpdate {
|
|
768
|
-
/**
|
|
769
|
-
*
|
|
770
|
-
* @type {ConversationStatus}
|
|
771
|
-
* @memberof APIConversationUpdate
|
|
772
|
-
*/
|
|
773
|
-
'status'?: ConversationStatus | null;
|
|
774
|
-
/**
|
|
775
|
-
*
|
|
776
|
-
* @type {boolean}
|
|
777
|
-
* @memberof APIConversationUpdate
|
|
778
|
-
*/
|
|
779
|
-
'isUnread'?: boolean | null;
|
|
780
768
|
/**
|
|
781
769
|
*
|
|
782
770
|
* @type {string}
|
|
783
771
|
* @memberof APIConversationUpdate
|
|
784
772
|
*/
|
|
785
|
-
'
|
|
773
|
+
'lastMessageSentId'?: string | null;
|
|
786
774
|
/**
|
|
787
775
|
*
|
|
788
776
|
* @type {string}
|
|
789
777
|
* @memberof APIConversationUpdate
|
|
790
778
|
*/
|
|
791
|
-
'
|
|
779
|
+
'lastMessageSentAt'?: string | null;
|
|
792
780
|
/**
|
|
793
781
|
*
|
|
794
|
-
* @type {
|
|
782
|
+
* @type {ConversationStatus}
|
|
795
783
|
* @memberof APIConversationUpdate
|
|
796
784
|
*/
|
|
797
|
-
'
|
|
785
|
+
'status'?: ConversationStatus | null;
|
|
798
786
|
/**
|
|
799
787
|
*
|
|
800
|
-
* @type {
|
|
788
|
+
* @type {boolean}
|
|
801
789
|
* @memberof APIConversationUpdate
|
|
802
790
|
*/
|
|
803
|
-
'
|
|
791
|
+
'isUnread'?: boolean | null;
|
|
804
792
|
}
|
|
805
793
|
/**
|
|
806
794
|
*
|
|
@@ -1127,18 +1115,6 @@ interface APIMessage {
|
|
|
1127
1115
|
* @memberof APIMessage
|
|
1128
1116
|
*/
|
|
1129
1117
|
'direction': MessageDirection;
|
|
1130
|
-
/**
|
|
1131
|
-
*
|
|
1132
|
-
* @type {string}
|
|
1133
|
-
* @memberof APIMessage
|
|
1134
|
-
*/
|
|
1135
|
-
'createdAt': string;
|
|
1136
|
-
/**
|
|
1137
|
-
*
|
|
1138
|
-
* @type {string}
|
|
1139
|
-
* @memberof APIMessage
|
|
1140
|
-
*/
|
|
1141
|
-
'updatedAt': string;
|
|
1142
1118
|
/**
|
|
1143
1119
|
*
|
|
1144
1120
|
* @type {MessageStatus}
|
|
@@ -2397,17 +2373,6 @@ declare const PaginationDirection: {
|
|
|
2397
2373
|
readonly Backward: "backward";
|
|
2398
2374
|
};
|
|
2399
2375
|
type PaginationDirection = typeof PaginationDirection[keyof typeof PaginationDirection];
|
|
2400
|
-
/**
|
|
2401
|
-
*
|
|
2402
|
-
* @export
|
|
2403
|
-
* @enum {string}
|
|
2404
|
-
*/
|
|
2405
|
-
declare const ParticipantType: {
|
|
2406
|
-
readonly Guest: "GUEST";
|
|
2407
|
-
readonly Staff: "STAFF";
|
|
2408
|
-
readonly Bot: "BOT";
|
|
2409
|
-
};
|
|
2410
|
-
type ParticipantType = typeof ParticipantType[keyof typeof ParticipantType];
|
|
2411
2376
|
/**
|
|
2412
2377
|
* @type Participantname
|
|
2413
2378
|
* @export
|
|
@@ -6710,4 +6675,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6710
6675
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6711
6676
|
}
|
|
6712
6677
|
|
|
6713
|
-
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 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, 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, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagecreate, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection,
|
|
6678
|
+
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 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, 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, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagecreate, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PhonesApi, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, ReasonType, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, RentalProviderTypes, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type Suggestions, type ToItemApi, type TwilioConversationDataApi, TwilioConversationDataApiConversationTypeEnum, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, type TwilioProviderMessageApi, TwilioProviderMessageApiMessageTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UserApi };
|
package/dist/index.js
CHANGED
|
@@ -121,11 +121,6 @@ var PaginationDirection = {
|
|
|
121
121
|
Forward: "forward",
|
|
122
122
|
Backward: "backward"
|
|
123
123
|
};
|
|
124
|
-
var ParticipantType = {
|
|
125
|
-
Guest: "GUEST",
|
|
126
|
-
Staff: "STAFF",
|
|
127
|
-
Bot: "BOT"
|
|
128
|
-
};
|
|
129
124
|
var PhoneInboxApiInboxTypeEnum = {
|
|
130
125
|
Text: "TEXT"
|
|
131
126
|
};
|
|
@@ -6190,6 +6185,5 @@ var Configuration = class {
|
|
|
6190
6185
|
|
|
6191
6186
|
|
|
6192
6187
|
|
|
6193
|
-
|
|
6194
|
-
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.ParticipantType = ParticipantType; 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.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.SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum; exports.SrcResourceModelsListingsModelListingBaseSortBy = SrcResourceModelsListingsModelListingBaseSortBy; exports.SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy = SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy; exports.SrcResourceModelsReservationsModelReservationBaseModelSortBy = SrcResourceModelsReservationsModelReservationBaseModelSortBy; exports.StaffApiParticipantTypeEnum = StaffApiParticipantTypeEnum; exports.TwilioConversationDataApiConversationTypeEnum = TwilioConversationDataApiConversationTypeEnum; exports.TwilioInboundSenderTypeDataApiDirectionEnum = TwilioInboundSenderTypeDataApiDirectionEnum; exports.TwilioOutboundSenderTypeDataApiDirectionEnum = TwilioOutboundSenderTypeDataApiDirectionEnum; exports.TwilioProviderMessageApiMessageTypeEnum = TwilioProviderMessageApiMessageTypeEnum; exports.UnboundApi = UnboundApi; exports.UnboundApiAxiosParamCreator = UnboundApiAxiosParamCreator; exports.UnboundApiFactory = UnboundApiFactory; exports.UnboundApiFp = UnboundApiFp;
|
|
6188
|
+
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.ProviderCommunicationType = ProviderCommunicationType; 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.SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum; exports.SrcResourceModelsListingsModelListingBaseSortBy = SrcResourceModelsListingsModelListingBaseSortBy; exports.SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy = SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy; exports.SrcResourceModelsReservationsModelReservationBaseModelSortBy = SrcResourceModelsReservationsModelReservationBaseModelSortBy; exports.StaffApiParticipantTypeEnum = StaffApiParticipantTypeEnum; exports.TwilioConversationDataApiConversationTypeEnum = TwilioConversationDataApiConversationTypeEnum; exports.TwilioInboundSenderTypeDataApiDirectionEnum = TwilioInboundSenderTypeDataApiDirectionEnum; exports.TwilioOutboundSenderTypeDataApiDirectionEnum = TwilioOutboundSenderTypeDataApiDirectionEnum; exports.TwilioProviderMessageApiMessageTypeEnum = TwilioProviderMessageApiMessageTypeEnum; exports.UnboundApi = UnboundApi; exports.UnboundApiAxiosParamCreator = UnboundApiAxiosParamCreator; exports.UnboundApiFactory = UnboundApiFactory; exports.UnboundApiFp = UnboundApiFp;
|
|
6195
6189
|
//# sourceMappingURL=index.js.map
|