@ember-home/unbound-ts-client 0.0.81 → 0.0.83
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 +128 -22
- package/dist/index.d.ts +128 -22
- package/dist/index.js +16 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -704,6 +704,12 @@ interface APIContactUpdate {
|
|
|
704
704
|
* @interface APIConversation
|
|
705
705
|
*/
|
|
706
706
|
interface APIConversation {
|
|
707
|
+
/**
|
|
708
|
+
*
|
|
709
|
+
* @type {string}
|
|
710
|
+
* @memberof APIConversation
|
|
711
|
+
*/
|
|
712
|
+
'providerId': string;
|
|
707
713
|
/**
|
|
708
714
|
*
|
|
709
715
|
* @type {string}
|
|
@@ -764,6 +770,12 @@ interface APIConversation {
|
|
|
764
770
|
* @memberof APIConversation
|
|
765
771
|
*/
|
|
766
772
|
'lastMessageSentAt'?: string | null;
|
|
773
|
+
/**
|
|
774
|
+
*
|
|
775
|
+
* @type {ConversationSuggestionApi}
|
|
776
|
+
* @memberof APIConversation
|
|
777
|
+
*/
|
|
778
|
+
'latestSuggestion'?: ConversationSuggestionApi | null;
|
|
767
779
|
}
|
|
768
780
|
/**
|
|
769
781
|
*
|
|
@@ -1760,6 +1772,25 @@ declare const ConversationStatus: {
|
|
|
1760
1772
|
readonly Closed: "CLOSED";
|
|
1761
1773
|
};
|
|
1762
1774
|
type ConversationStatus = typeof ConversationStatus[keyof typeof ConversationStatus];
|
|
1775
|
+
/**
|
|
1776
|
+
*
|
|
1777
|
+
* @export
|
|
1778
|
+
* @interface ConversationSuggestionApi
|
|
1779
|
+
*/
|
|
1780
|
+
interface ConversationSuggestionApi {
|
|
1781
|
+
/**
|
|
1782
|
+
*
|
|
1783
|
+
* @type {SuggestionStatus}
|
|
1784
|
+
* @memberof ConversationSuggestionApi
|
|
1785
|
+
*/
|
|
1786
|
+
'suggestionStatus': SuggestionStatus;
|
|
1787
|
+
/**
|
|
1788
|
+
*
|
|
1789
|
+
* @type {SuggestionApi}
|
|
1790
|
+
* @memberof ConversationSuggestionApi
|
|
1791
|
+
*/
|
|
1792
|
+
'suggestion'?: SuggestionApi | null;
|
|
1793
|
+
}
|
|
1763
1794
|
/**
|
|
1764
1795
|
* @type Conversationtypedata
|
|
1765
1796
|
* @export
|
|
@@ -2565,25 +2596,19 @@ interface ProviderConversationDataApi {
|
|
|
2565
2596
|
* @type {string}
|
|
2566
2597
|
* @memberof ProviderConversationDataApi
|
|
2567
2598
|
*/
|
|
2568
|
-
'
|
|
2569
|
-
/**
|
|
2570
|
-
*
|
|
2571
|
-
* @type {string}
|
|
2572
|
-
* @memberof ProviderConversationDataApi
|
|
2573
|
-
*/
|
|
2574
|
-
'providerListingId': string;
|
|
2599
|
+
'rentalProviderReservationId': string;
|
|
2575
2600
|
/**
|
|
2576
2601
|
*
|
|
2577
2602
|
* @type {string}
|
|
2578
2603
|
* @memberof ProviderConversationDataApi
|
|
2579
2604
|
*/
|
|
2580
|
-
'
|
|
2605
|
+
'rentalProviderListingId': string;
|
|
2581
2606
|
/**
|
|
2582
2607
|
*
|
|
2583
2608
|
* @type {ReservationChannelTypes}
|
|
2584
2609
|
* @memberof ProviderConversationDataApi
|
|
2585
2610
|
*/
|
|
2586
|
-
'
|
|
2611
|
+
'rentalProviderChannelName': ReservationChannelTypes;
|
|
2587
2612
|
/**
|
|
2588
2613
|
*
|
|
2589
2614
|
* @type {SubjectApi}
|
|
@@ -3017,34 +3042,115 @@ interface SubjectApi {
|
|
|
3017
3042
|
/**
|
|
3018
3043
|
*
|
|
3019
3044
|
* @export
|
|
3020
|
-
* @interface
|
|
3045
|
+
* @interface Suggestion
|
|
3046
|
+
*/
|
|
3047
|
+
interface Suggestion {
|
|
3048
|
+
/**
|
|
3049
|
+
*
|
|
3050
|
+
* @type {string}
|
|
3051
|
+
* @memberof Suggestion
|
|
3052
|
+
*/
|
|
3053
|
+
'textSuggestedReply': string;
|
|
3054
|
+
/**
|
|
3055
|
+
*
|
|
3056
|
+
* @type {string}
|
|
3057
|
+
* @memberof Suggestion
|
|
3058
|
+
*/
|
|
3059
|
+
'chatSuggestedReply': string;
|
|
3060
|
+
/**
|
|
3061
|
+
*
|
|
3062
|
+
* @type {string}
|
|
3063
|
+
* @memberof Suggestion
|
|
3064
|
+
*/
|
|
3065
|
+
'emailSuggestedReply': string;
|
|
3066
|
+
/**
|
|
3067
|
+
*
|
|
3068
|
+
* @type {string}
|
|
3069
|
+
* @memberof Suggestion
|
|
3070
|
+
*/
|
|
3071
|
+
'tone': string;
|
|
3072
|
+
/**
|
|
3073
|
+
*
|
|
3074
|
+
* @type {string}
|
|
3075
|
+
* @memberof Suggestion
|
|
3076
|
+
*/
|
|
3077
|
+
'suggestionId': string;
|
|
3078
|
+
}
|
|
3079
|
+
/**
|
|
3080
|
+
*
|
|
3081
|
+
* @export
|
|
3082
|
+
* @interface SuggestionApi
|
|
3021
3083
|
*/
|
|
3022
|
-
interface
|
|
3084
|
+
interface SuggestionApi {
|
|
3023
3085
|
/**
|
|
3024
3086
|
*
|
|
3025
3087
|
* @type {string}
|
|
3026
|
-
* @memberof
|
|
3088
|
+
* @memberof SuggestionApi
|
|
3027
3089
|
*/
|
|
3028
3090
|
'textSuggestedReply': string;
|
|
3029
3091
|
/**
|
|
3030
3092
|
*
|
|
3031
3093
|
* @type {string}
|
|
3032
|
-
* @memberof
|
|
3094
|
+
* @memberof SuggestionApi
|
|
3033
3095
|
*/
|
|
3034
3096
|
'chatSuggestedReply': string;
|
|
3035
3097
|
/**
|
|
3036
3098
|
*
|
|
3037
3099
|
* @type {string}
|
|
3038
|
-
* @memberof
|
|
3100
|
+
* @memberof SuggestionApi
|
|
3039
3101
|
*/
|
|
3040
3102
|
'emailSuggestedReply': string;
|
|
3041
3103
|
/**
|
|
3042
3104
|
*
|
|
3043
3105
|
* @type {string}
|
|
3044
|
-
* @memberof
|
|
3106
|
+
* @memberof SuggestionApi
|
|
3107
|
+
*/
|
|
3108
|
+
'tone': string;
|
|
3109
|
+
/**
|
|
3110
|
+
*
|
|
3111
|
+
* @type {string}
|
|
3112
|
+
* @memberof SuggestionApi
|
|
3045
3113
|
*/
|
|
3046
3114
|
'suggestionId': string;
|
|
3047
3115
|
}
|
|
3116
|
+
/**
|
|
3117
|
+
*
|
|
3118
|
+
* @export
|
|
3119
|
+
* @interface SuggestionResponse
|
|
3120
|
+
*/
|
|
3121
|
+
interface SuggestionResponse {
|
|
3122
|
+
/**
|
|
3123
|
+
*
|
|
3124
|
+
* @type {Array<Suggestion>}
|
|
3125
|
+
* @memberof SuggestionResponse
|
|
3126
|
+
*/
|
|
3127
|
+
'data': Array<Suggestion> | null;
|
|
3128
|
+
}
|
|
3129
|
+
/**
|
|
3130
|
+
*
|
|
3131
|
+
* @export
|
|
3132
|
+
* @enum {string}
|
|
3133
|
+
*/
|
|
3134
|
+
declare const SuggestionStatus: {
|
|
3135
|
+
readonly Generating: "GENERATING";
|
|
3136
|
+
readonly DeterminingEligibility: "DETERMINING_ELIGIBILITY";
|
|
3137
|
+
readonly SkippedOutdated: "SKIPPED_OUTDATED";
|
|
3138
|
+
readonly SkippedNoEligibleMessages: "SKIPPED_NO_ELIGIBLE_MESSAGES";
|
|
3139
|
+
readonly AnsweredByStaff: "ANSWERED_BY_STAFF";
|
|
3140
|
+
readonly ReplyGenerated: "REPLY_GENERATED";
|
|
3141
|
+
};
|
|
3142
|
+
type SuggestionStatus = typeof SuggestionStatus[keyof typeof SuggestionStatus];
|
|
3143
|
+
/**
|
|
3144
|
+
*
|
|
3145
|
+
* @export
|
|
3146
|
+
* @enum {string}
|
|
3147
|
+
*/
|
|
3148
|
+
declare const SuggestionUsedType: {
|
|
3149
|
+
readonly Accepted: "ACCEPTED";
|
|
3150
|
+
readonly Modified: "MODIFIED";
|
|
3151
|
+
readonly Rejected: "REJECTED";
|
|
3152
|
+
};
|
|
3153
|
+
type SuggestionUsedType = typeof SuggestionUsedType[keyof typeof SuggestionUsedType];
|
|
3048
3154
|
/**
|
|
3049
3155
|
*
|
|
3050
3156
|
* @export
|
|
@@ -4298,7 +4404,7 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
4298
4404
|
* @param {*} [options] Override http request option.
|
|
4299
4405
|
* @throws {RequiredError}
|
|
4300
4406
|
*/
|
|
4301
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4407
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuggestionResponse>>;
|
|
4302
4408
|
/**
|
|
4303
4409
|
* Conversations Update
|
|
4304
4410
|
* @summary Conversations Update
|
|
@@ -4379,7 +4485,7 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
4379
4485
|
* @param {*} [options] Override http request option.
|
|
4380
4486
|
* @throws {RequiredError}
|
|
4381
4487
|
*/
|
|
4382
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
4488
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<SuggestionResponse>;
|
|
4383
4489
|
/**
|
|
4384
4490
|
* Conversations Update
|
|
4385
4491
|
* @summary Conversations Update
|
|
@@ -4465,7 +4571,7 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
4465
4571
|
* @throws {RequiredError}
|
|
4466
4572
|
* @memberof ConversationsApi
|
|
4467
4573
|
*/
|
|
4468
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
4574
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SuggestionResponse, any>>;
|
|
4469
4575
|
/**
|
|
4470
4576
|
* Conversations Update
|
|
4471
4577
|
* @summary Conversations Update
|
|
@@ -5664,7 +5770,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5664
5770
|
* @param {*} [options] Override http request option.
|
|
5665
5771
|
* @throws {RequiredError}
|
|
5666
5772
|
*/
|
|
5667
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5773
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuggestionResponse>>;
|
|
5668
5774
|
/**
|
|
5669
5775
|
* Conversations Update
|
|
5670
5776
|
* @summary Conversations Update
|
|
@@ -6043,7 +6149,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6043
6149
|
* @param {*} [options] Override http request option.
|
|
6044
6150
|
* @throws {RequiredError}
|
|
6045
6151
|
*/
|
|
6046
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
6152
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<SuggestionResponse>;
|
|
6047
6153
|
/**
|
|
6048
6154
|
* Conversations Update
|
|
6049
6155
|
* @summary Conversations Update
|
|
@@ -6440,7 +6546,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6440
6546
|
* @throws {RequiredError}
|
|
6441
6547
|
* @memberof UnboundApi
|
|
6442
6548
|
*/
|
|
6443
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
6549
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SuggestionResponse, any>>;
|
|
6444
6550
|
/**
|
|
6445
6551
|
* Conversations Update
|
|
6446
6552
|
* @summary Conversations Update
|
|
@@ -6693,4 +6799,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6693
6799
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6694
6800
|
}
|
|
6695
6801
|
|
|
6696
|
-
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
|
|
6802
|
+
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, 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, 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 Suggestion, type SuggestionApi, type SuggestionResponse, SuggestionStatus, SuggestionUsedType, 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
|
@@ -704,6 +704,12 @@ interface APIContactUpdate {
|
|
|
704
704
|
* @interface APIConversation
|
|
705
705
|
*/
|
|
706
706
|
interface APIConversation {
|
|
707
|
+
/**
|
|
708
|
+
*
|
|
709
|
+
* @type {string}
|
|
710
|
+
* @memberof APIConversation
|
|
711
|
+
*/
|
|
712
|
+
'providerId': string;
|
|
707
713
|
/**
|
|
708
714
|
*
|
|
709
715
|
* @type {string}
|
|
@@ -764,6 +770,12 @@ interface APIConversation {
|
|
|
764
770
|
* @memberof APIConversation
|
|
765
771
|
*/
|
|
766
772
|
'lastMessageSentAt'?: string | null;
|
|
773
|
+
/**
|
|
774
|
+
*
|
|
775
|
+
* @type {ConversationSuggestionApi}
|
|
776
|
+
* @memberof APIConversation
|
|
777
|
+
*/
|
|
778
|
+
'latestSuggestion'?: ConversationSuggestionApi | null;
|
|
767
779
|
}
|
|
768
780
|
/**
|
|
769
781
|
*
|
|
@@ -1760,6 +1772,25 @@ declare const ConversationStatus: {
|
|
|
1760
1772
|
readonly Closed: "CLOSED";
|
|
1761
1773
|
};
|
|
1762
1774
|
type ConversationStatus = typeof ConversationStatus[keyof typeof ConversationStatus];
|
|
1775
|
+
/**
|
|
1776
|
+
*
|
|
1777
|
+
* @export
|
|
1778
|
+
* @interface ConversationSuggestionApi
|
|
1779
|
+
*/
|
|
1780
|
+
interface ConversationSuggestionApi {
|
|
1781
|
+
/**
|
|
1782
|
+
*
|
|
1783
|
+
* @type {SuggestionStatus}
|
|
1784
|
+
* @memberof ConversationSuggestionApi
|
|
1785
|
+
*/
|
|
1786
|
+
'suggestionStatus': SuggestionStatus;
|
|
1787
|
+
/**
|
|
1788
|
+
*
|
|
1789
|
+
* @type {SuggestionApi}
|
|
1790
|
+
* @memberof ConversationSuggestionApi
|
|
1791
|
+
*/
|
|
1792
|
+
'suggestion'?: SuggestionApi | null;
|
|
1793
|
+
}
|
|
1763
1794
|
/**
|
|
1764
1795
|
* @type Conversationtypedata
|
|
1765
1796
|
* @export
|
|
@@ -2565,25 +2596,19 @@ interface ProviderConversationDataApi {
|
|
|
2565
2596
|
* @type {string}
|
|
2566
2597
|
* @memberof ProviderConversationDataApi
|
|
2567
2598
|
*/
|
|
2568
|
-
'
|
|
2569
|
-
/**
|
|
2570
|
-
*
|
|
2571
|
-
* @type {string}
|
|
2572
|
-
* @memberof ProviderConversationDataApi
|
|
2573
|
-
*/
|
|
2574
|
-
'providerListingId': string;
|
|
2599
|
+
'rentalProviderReservationId': string;
|
|
2575
2600
|
/**
|
|
2576
2601
|
*
|
|
2577
2602
|
* @type {string}
|
|
2578
2603
|
* @memberof ProviderConversationDataApi
|
|
2579
2604
|
*/
|
|
2580
|
-
'
|
|
2605
|
+
'rentalProviderListingId': string;
|
|
2581
2606
|
/**
|
|
2582
2607
|
*
|
|
2583
2608
|
* @type {ReservationChannelTypes}
|
|
2584
2609
|
* @memberof ProviderConversationDataApi
|
|
2585
2610
|
*/
|
|
2586
|
-
'
|
|
2611
|
+
'rentalProviderChannelName': ReservationChannelTypes;
|
|
2587
2612
|
/**
|
|
2588
2613
|
*
|
|
2589
2614
|
* @type {SubjectApi}
|
|
@@ -3017,34 +3042,115 @@ interface SubjectApi {
|
|
|
3017
3042
|
/**
|
|
3018
3043
|
*
|
|
3019
3044
|
* @export
|
|
3020
|
-
* @interface
|
|
3045
|
+
* @interface Suggestion
|
|
3046
|
+
*/
|
|
3047
|
+
interface Suggestion {
|
|
3048
|
+
/**
|
|
3049
|
+
*
|
|
3050
|
+
* @type {string}
|
|
3051
|
+
* @memberof Suggestion
|
|
3052
|
+
*/
|
|
3053
|
+
'textSuggestedReply': string;
|
|
3054
|
+
/**
|
|
3055
|
+
*
|
|
3056
|
+
* @type {string}
|
|
3057
|
+
* @memberof Suggestion
|
|
3058
|
+
*/
|
|
3059
|
+
'chatSuggestedReply': string;
|
|
3060
|
+
/**
|
|
3061
|
+
*
|
|
3062
|
+
* @type {string}
|
|
3063
|
+
* @memberof Suggestion
|
|
3064
|
+
*/
|
|
3065
|
+
'emailSuggestedReply': string;
|
|
3066
|
+
/**
|
|
3067
|
+
*
|
|
3068
|
+
* @type {string}
|
|
3069
|
+
* @memberof Suggestion
|
|
3070
|
+
*/
|
|
3071
|
+
'tone': string;
|
|
3072
|
+
/**
|
|
3073
|
+
*
|
|
3074
|
+
* @type {string}
|
|
3075
|
+
* @memberof Suggestion
|
|
3076
|
+
*/
|
|
3077
|
+
'suggestionId': string;
|
|
3078
|
+
}
|
|
3079
|
+
/**
|
|
3080
|
+
*
|
|
3081
|
+
* @export
|
|
3082
|
+
* @interface SuggestionApi
|
|
3021
3083
|
*/
|
|
3022
|
-
interface
|
|
3084
|
+
interface SuggestionApi {
|
|
3023
3085
|
/**
|
|
3024
3086
|
*
|
|
3025
3087
|
* @type {string}
|
|
3026
|
-
* @memberof
|
|
3088
|
+
* @memberof SuggestionApi
|
|
3027
3089
|
*/
|
|
3028
3090
|
'textSuggestedReply': string;
|
|
3029
3091
|
/**
|
|
3030
3092
|
*
|
|
3031
3093
|
* @type {string}
|
|
3032
|
-
* @memberof
|
|
3094
|
+
* @memberof SuggestionApi
|
|
3033
3095
|
*/
|
|
3034
3096
|
'chatSuggestedReply': string;
|
|
3035
3097
|
/**
|
|
3036
3098
|
*
|
|
3037
3099
|
* @type {string}
|
|
3038
|
-
* @memberof
|
|
3100
|
+
* @memberof SuggestionApi
|
|
3039
3101
|
*/
|
|
3040
3102
|
'emailSuggestedReply': string;
|
|
3041
3103
|
/**
|
|
3042
3104
|
*
|
|
3043
3105
|
* @type {string}
|
|
3044
|
-
* @memberof
|
|
3106
|
+
* @memberof SuggestionApi
|
|
3107
|
+
*/
|
|
3108
|
+
'tone': string;
|
|
3109
|
+
/**
|
|
3110
|
+
*
|
|
3111
|
+
* @type {string}
|
|
3112
|
+
* @memberof SuggestionApi
|
|
3045
3113
|
*/
|
|
3046
3114
|
'suggestionId': string;
|
|
3047
3115
|
}
|
|
3116
|
+
/**
|
|
3117
|
+
*
|
|
3118
|
+
* @export
|
|
3119
|
+
* @interface SuggestionResponse
|
|
3120
|
+
*/
|
|
3121
|
+
interface SuggestionResponse {
|
|
3122
|
+
/**
|
|
3123
|
+
*
|
|
3124
|
+
* @type {Array<Suggestion>}
|
|
3125
|
+
* @memberof SuggestionResponse
|
|
3126
|
+
*/
|
|
3127
|
+
'data': Array<Suggestion> | null;
|
|
3128
|
+
}
|
|
3129
|
+
/**
|
|
3130
|
+
*
|
|
3131
|
+
* @export
|
|
3132
|
+
* @enum {string}
|
|
3133
|
+
*/
|
|
3134
|
+
declare const SuggestionStatus: {
|
|
3135
|
+
readonly Generating: "GENERATING";
|
|
3136
|
+
readonly DeterminingEligibility: "DETERMINING_ELIGIBILITY";
|
|
3137
|
+
readonly SkippedOutdated: "SKIPPED_OUTDATED";
|
|
3138
|
+
readonly SkippedNoEligibleMessages: "SKIPPED_NO_ELIGIBLE_MESSAGES";
|
|
3139
|
+
readonly AnsweredByStaff: "ANSWERED_BY_STAFF";
|
|
3140
|
+
readonly ReplyGenerated: "REPLY_GENERATED";
|
|
3141
|
+
};
|
|
3142
|
+
type SuggestionStatus = typeof SuggestionStatus[keyof typeof SuggestionStatus];
|
|
3143
|
+
/**
|
|
3144
|
+
*
|
|
3145
|
+
* @export
|
|
3146
|
+
* @enum {string}
|
|
3147
|
+
*/
|
|
3148
|
+
declare const SuggestionUsedType: {
|
|
3149
|
+
readonly Accepted: "ACCEPTED";
|
|
3150
|
+
readonly Modified: "MODIFIED";
|
|
3151
|
+
readonly Rejected: "REJECTED";
|
|
3152
|
+
};
|
|
3153
|
+
type SuggestionUsedType = typeof SuggestionUsedType[keyof typeof SuggestionUsedType];
|
|
3048
3154
|
/**
|
|
3049
3155
|
*
|
|
3050
3156
|
* @export
|
|
@@ -4298,7 +4404,7 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
4298
4404
|
* @param {*} [options] Override http request option.
|
|
4299
4405
|
* @throws {RequiredError}
|
|
4300
4406
|
*/
|
|
4301
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4407
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuggestionResponse>>;
|
|
4302
4408
|
/**
|
|
4303
4409
|
* Conversations Update
|
|
4304
4410
|
* @summary Conversations Update
|
|
@@ -4379,7 +4485,7 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
4379
4485
|
* @param {*} [options] Override http request option.
|
|
4380
4486
|
* @throws {RequiredError}
|
|
4381
4487
|
*/
|
|
4382
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
4488
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<SuggestionResponse>;
|
|
4383
4489
|
/**
|
|
4384
4490
|
* Conversations Update
|
|
4385
4491
|
* @summary Conversations Update
|
|
@@ -4465,7 +4571,7 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
4465
4571
|
* @throws {RequiredError}
|
|
4466
4572
|
* @memberof ConversationsApi
|
|
4467
4573
|
*/
|
|
4468
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
4574
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SuggestionResponse, any>>;
|
|
4469
4575
|
/**
|
|
4470
4576
|
* Conversations Update
|
|
4471
4577
|
* @summary Conversations Update
|
|
@@ -5664,7 +5770,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5664
5770
|
* @param {*} [options] Override http request option.
|
|
5665
5771
|
* @throws {RequiredError}
|
|
5666
5772
|
*/
|
|
5667
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5773
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuggestionResponse>>;
|
|
5668
5774
|
/**
|
|
5669
5775
|
* Conversations Update
|
|
5670
5776
|
* @summary Conversations Update
|
|
@@ -6043,7 +6149,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6043
6149
|
* @param {*} [options] Override http request option.
|
|
6044
6150
|
* @throws {RequiredError}
|
|
6045
6151
|
*/
|
|
6046
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
6152
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<SuggestionResponse>;
|
|
6047
6153
|
/**
|
|
6048
6154
|
* Conversations Update
|
|
6049
6155
|
* @summary Conversations Update
|
|
@@ -6440,7 +6546,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6440
6546
|
* @throws {RequiredError}
|
|
6441
6547
|
* @memberof UnboundApi
|
|
6442
6548
|
*/
|
|
6443
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
6549
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SuggestionResponse, any>>;
|
|
6444
6550
|
/**
|
|
6445
6551
|
* Conversations Update
|
|
6446
6552
|
* @summary Conversations Update
|
|
@@ -6693,4 +6799,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6693
6799
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6694
6800
|
}
|
|
6695
6801
|
|
|
6696
|
-
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
|
|
6802
|
+
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, 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, 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 Suggestion, type SuggestionApi, type SuggestionResponse, SuggestionStatus, SuggestionUsedType, 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
|
@@ -211,6 +211,19 @@ var SrcResourceModelsReservationsModelReservationBaseModelSortBy = {
|
|
|
211
211
|
var StaffApiParticipantTypeEnum = {
|
|
212
212
|
Staff: "STAFF"
|
|
213
213
|
};
|
|
214
|
+
var SuggestionStatus = {
|
|
215
|
+
Generating: "GENERATING",
|
|
216
|
+
DeterminingEligibility: "DETERMINING_ELIGIBILITY",
|
|
217
|
+
SkippedOutdated: "SKIPPED_OUTDATED",
|
|
218
|
+
SkippedNoEligibleMessages: "SKIPPED_NO_ELIGIBLE_MESSAGES",
|
|
219
|
+
AnsweredByStaff: "ANSWERED_BY_STAFF",
|
|
220
|
+
ReplyGenerated: "REPLY_GENERATED"
|
|
221
|
+
};
|
|
222
|
+
var SuggestionUsedType = {
|
|
223
|
+
Accepted: "ACCEPTED",
|
|
224
|
+
Modified: "MODIFIED",
|
|
225
|
+
Rejected: "REJECTED"
|
|
226
|
+
};
|
|
214
227
|
var TwilioConversationDataApiConversationTypeEnum = {
|
|
215
228
|
Text: "TEXT"
|
|
216
229
|
};
|
|
@@ -6185,5 +6198,7 @@ var Configuration = class {
|
|
|
6185
6198
|
|
|
6186
6199
|
|
|
6187
6200
|
|
|
6188
|
-
|
|
6201
|
+
|
|
6202
|
+
|
|
6203
|
+
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.SuggestionStatus = SuggestionStatus; exports.SuggestionUsedType = SuggestionUsedType; exports.TwilioConversationDataApiConversationTypeEnum = TwilioConversationDataApiConversationTypeEnum; exports.TwilioInboundSenderTypeDataApiDirectionEnum = TwilioInboundSenderTypeDataApiDirectionEnum; exports.TwilioOutboundSenderTypeDataApiDirectionEnum = TwilioOutboundSenderTypeDataApiDirectionEnum; exports.TwilioProviderMessageApiMessageTypeEnum = TwilioProviderMessageApiMessageTypeEnum; exports.UnboundApi = UnboundApi; exports.UnboundApiAxiosParamCreator = UnboundApiAxiosParamCreator; exports.UnboundApiFactory = UnboundApiFactory; exports.UnboundApiFp = UnboundApiFp;
|
|
6189
6204
|
//# sourceMappingURL=index.js.map
|