@ember-home/unbound-ts-client 0.0.69 → 0.0.70
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 +42 -7
- package/dist/index.d.ts +42 -7
- package/dist/index.js +12 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2698,6 +2698,22 @@ declare const ProviderStaffApiStaffTypeEnum: {
|
|
|
2698
2698
|
readonly ProviderStaff: "PROVIDER_STAFF";
|
|
2699
2699
|
};
|
|
2700
2700
|
type ProviderStaffApiStaffTypeEnum = typeof ProviderStaffApiStaffTypeEnum[keyof typeof ProviderStaffApiStaffTypeEnum];
|
|
2701
|
+
/**
|
|
2702
|
+
*
|
|
2703
|
+
* @export
|
|
2704
|
+
* @enum {string}
|
|
2705
|
+
*/
|
|
2706
|
+
declare const ReasonType: {
|
|
2707
|
+
readonly Correct: "CORRECT";
|
|
2708
|
+
readonly FactualError: "FACTUAL_ERROR";
|
|
2709
|
+
readonly MisunderstoodIntent: "MISUNDERSTOOD_INTENT";
|
|
2710
|
+
readonly ChangeTone: "CHANGE_TONE";
|
|
2711
|
+
readonly TooVerbose: "TOO_VERBOSE";
|
|
2712
|
+
readonly TooBrief: "TOO_BRIEF";
|
|
2713
|
+
readonly GrammerSpelling: "GRAMMER_SPELLING";
|
|
2714
|
+
readonly Other: "OTHER";
|
|
2715
|
+
};
|
|
2716
|
+
type ReasonType = typeof ReasonType[keyof typeof ReasonType];
|
|
2701
2717
|
/**
|
|
2702
2718
|
*
|
|
2703
2719
|
* @export
|
|
@@ -2995,6 +3011,25 @@ interface SubjectApi {
|
|
|
2995
3011
|
*/
|
|
2996
3012
|
'listingName': string;
|
|
2997
3013
|
}
|
|
3014
|
+
/**
|
|
3015
|
+
*
|
|
3016
|
+
* @export
|
|
3017
|
+
* @interface SuggestedReply
|
|
3018
|
+
*/
|
|
3019
|
+
interface SuggestedReply {
|
|
3020
|
+
/**
|
|
3021
|
+
*
|
|
3022
|
+
* @type {string}
|
|
3023
|
+
* @memberof SuggestedReply
|
|
3024
|
+
*/
|
|
3025
|
+
'suggestedReplyId': string;
|
|
3026
|
+
/**
|
|
3027
|
+
*
|
|
3028
|
+
* @type {string}
|
|
3029
|
+
* @memberof SuggestedReply
|
|
3030
|
+
*/
|
|
3031
|
+
'suggestedReply': string;
|
|
3032
|
+
}
|
|
2998
3033
|
/**
|
|
2999
3034
|
*
|
|
3000
3035
|
* @export
|
|
@@ -4258,7 +4293,7 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
4258
4293
|
* @param {*} [options] Override http request option.
|
|
4259
4294
|
* @throws {RequiredError}
|
|
4260
4295
|
*/
|
|
4261
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
4296
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SuggestedReply>>>;
|
|
4262
4297
|
/**
|
|
4263
4298
|
* Conversations Update
|
|
4264
4299
|
* @summary Conversations Update
|
|
@@ -4339,7 +4374,7 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
4339
4374
|
* @param {*} [options] Override http request option.
|
|
4340
4375
|
* @throws {RequiredError}
|
|
4341
4376
|
*/
|
|
4342
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
4377
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<SuggestedReply>>;
|
|
4343
4378
|
/**
|
|
4344
4379
|
* Conversations Update
|
|
4345
4380
|
* @summary Conversations Update
|
|
@@ -4425,7 +4460,7 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
4425
4460
|
* @throws {RequiredError}
|
|
4426
4461
|
* @memberof ConversationsApi
|
|
4427
4462
|
*/
|
|
4428
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
4463
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SuggestedReply[], any>>;
|
|
4429
4464
|
/**
|
|
4430
4465
|
* Conversations Update
|
|
4431
4466
|
* @summary Conversations Update
|
|
@@ -5624,7 +5659,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5624
5659
|
* @param {*} [options] Override http request option.
|
|
5625
5660
|
* @throws {RequiredError}
|
|
5626
5661
|
*/
|
|
5627
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
5662
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SuggestedReply>>>;
|
|
5628
5663
|
/**
|
|
5629
5664
|
* Conversations Update
|
|
5630
5665
|
* @summary Conversations Update
|
|
@@ -6003,7 +6038,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6003
6038
|
* @param {*} [options] Override http request option.
|
|
6004
6039
|
* @throws {RequiredError}
|
|
6005
6040
|
*/
|
|
6006
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
6041
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<SuggestedReply>>;
|
|
6007
6042
|
/**
|
|
6008
6043
|
* Conversations Update
|
|
6009
6044
|
* @summary Conversations Update
|
|
@@ -6400,7 +6435,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6400
6435
|
* @throws {RequiredError}
|
|
6401
6436
|
* @memberof UnboundApi
|
|
6402
6437
|
*/
|
|
6403
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
6438
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SuggestedReply[], any>>;
|
|
6404
6439
|
/**
|
|
6405
6440
|
* Conversations Update
|
|
6406
6441
|
* @summary Conversations Update
|
|
@@ -6653,4 +6688,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6653
6688
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6654
6689
|
}
|
|
6655
6690
|
|
|
6656
|
-
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, 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, SuggestionReason, type ToItemApi, type TwilioConversationDataApi, TwilioConversationDataApiConversationTypeEnum, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, type TwilioProviderMessageApi, TwilioProviderMessageApiMessageTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UserApi };
|
|
6691
|
+
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 SuggestedReply, SuggestionReason, 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
|
@@ -2698,6 +2698,22 @@ declare const ProviderStaffApiStaffTypeEnum: {
|
|
|
2698
2698
|
readonly ProviderStaff: "PROVIDER_STAFF";
|
|
2699
2699
|
};
|
|
2700
2700
|
type ProviderStaffApiStaffTypeEnum = typeof ProviderStaffApiStaffTypeEnum[keyof typeof ProviderStaffApiStaffTypeEnum];
|
|
2701
|
+
/**
|
|
2702
|
+
*
|
|
2703
|
+
* @export
|
|
2704
|
+
* @enum {string}
|
|
2705
|
+
*/
|
|
2706
|
+
declare const ReasonType: {
|
|
2707
|
+
readonly Correct: "CORRECT";
|
|
2708
|
+
readonly FactualError: "FACTUAL_ERROR";
|
|
2709
|
+
readonly MisunderstoodIntent: "MISUNDERSTOOD_INTENT";
|
|
2710
|
+
readonly ChangeTone: "CHANGE_TONE";
|
|
2711
|
+
readonly TooVerbose: "TOO_VERBOSE";
|
|
2712
|
+
readonly TooBrief: "TOO_BRIEF";
|
|
2713
|
+
readonly GrammerSpelling: "GRAMMER_SPELLING";
|
|
2714
|
+
readonly Other: "OTHER";
|
|
2715
|
+
};
|
|
2716
|
+
type ReasonType = typeof ReasonType[keyof typeof ReasonType];
|
|
2701
2717
|
/**
|
|
2702
2718
|
*
|
|
2703
2719
|
* @export
|
|
@@ -2995,6 +3011,25 @@ interface SubjectApi {
|
|
|
2995
3011
|
*/
|
|
2996
3012
|
'listingName': string;
|
|
2997
3013
|
}
|
|
3014
|
+
/**
|
|
3015
|
+
*
|
|
3016
|
+
* @export
|
|
3017
|
+
* @interface SuggestedReply
|
|
3018
|
+
*/
|
|
3019
|
+
interface SuggestedReply {
|
|
3020
|
+
/**
|
|
3021
|
+
*
|
|
3022
|
+
* @type {string}
|
|
3023
|
+
* @memberof SuggestedReply
|
|
3024
|
+
*/
|
|
3025
|
+
'suggestedReplyId': string;
|
|
3026
|
+
/**
|
|
3027
|
+
*
|
|
3028
|
+
* @type {string}
|
|
3029
|
+
* @memberof SuggestedReply
|
|
3030
|
+
*/
|
|
3031
|
+
'suggestedReply': string;
|
|
3032
|
+
}
|
|
2998
3033
|
/**
|
|
2999
3034
|
*
|
|
3000
3035
|
* @export
|
|
@@ -4258,7 +4293,7 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
4258
4293
|
* @param {*} [options] Override http request option.
|
|
4259
4294
|
* @throws {RequiredError}
|
|
4260
4295
|
*/
|
|
4261
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
4296
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SuggestedReply>>>;
|
|
4262
4297
|
/**
|
|
4263
4298
|
* Conversations Update
|
|
4264
4299
|
* @summary Conversations Update
|
|
@@ -4339,7 +4374,7 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
4339
4374
|
* @param {*} [options] Override http request option.
|
|
4340
4375
|
* @throws {RequiredError}
|
|
4341
4376
|
*/
|
|
4342
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
4377
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<SuggestedReply>>;
|
|
4343
4378
|
/**
|
|
4344
4379
|
* Conversations Update
|
|
4345
4380
|
* @summary Conversations Update
|
|
@@ -4425,7 +4460,7 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
4425
4460
|
* @throws {RequiredError}
|
|
4426
4461
|
* @memberof ConversationsApi
|
|
4427
4462
|
*/
|
|
4428
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
4463
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SuggestedReply[], any>>;
|
|
4429
4464
|
/**
|
|
4430
4465
|
* Conversations Update
|
|
4431
4466
|
* @summary Conversations Update
|
|
@@ -5624,7 +5659,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5624
5659
|
* @param {*} [options] Override http request option.
|
|
5625
5660
|
* @throws {RequiredError}
|
|
5626
5661
|
*/
|
|
5627
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
5662
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SuggestedReply>>>;
|
|
5628
5663
|
/**
|
|
5629
5664
|
* Conversations Update
|
|
5630
5665
|
* @summary Conversations Update
|
|
@@ -6003,7 +6038,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6003
6038
|
* @param {*} [options] Override http request option.
|
|
6004
6039
|
* @throws {RequiredError}
|
|
6005
6040
|
*/
|
|
6006
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
6041
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<SuggestedReply>>;
|
|
6007
6042
|
/**
|
|
6008
6043
|
* Conversations Update
|
|
6009
6044
|
* @summary Conversations Update
|
|
@@ -6400,7 +6435,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6400
6435
|
* @throws {RequiredError}
|
|
6401
6436
|
* @memberof UnboundApi
|
|
6402
6437
|
*/
|
|
6403
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
6438
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SuggestedReply[], any>>;
|
|
6404
6439
|
/**
|
|
6405
6440
|
* Conversations Update
|
|
6406
6441
|
* @summary Conversations Update
|
|
@@ -6653,4 +6688,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6653
6688
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6654
6689
|
}
|
|
6655
6690
|
|
|
6656
|
-
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, 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, SuggestionReason, type ToItemApi, type TwilioConversationDataApi, TwilioConversationDataApiConversationTypeEnum, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, type TwilioProviderMessageApi, TwilioProviderMessageApiMessageTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UserApi };
|
|
6691
|
+
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 SuggestedReply, SuggestionReason, 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
|
@@ -139,6 +139,16 @@ var ProviderConversationDataApiConversationTypeEnum = {
|
|
|
139
139
|
var ProviderStaffApiStaffTypeEnum = {
|
|
140
140
|
ProviderStaff: "PROVIDER_STAFF"
|
|
141
141
|
};
|
|
142
|
+
var ReasonType = {
|
|
143
|
+
Correct: "CORRECT",
|
|
144
|
+
FactualError: "FACTUAL_ERROR",
|
|
145
|
+
MisunderstoodIntent: "MISUNDERSTOOD_INTENT",
|
|
146
|
+
ChangeTone: "CHANGE_TONE",
|
|
147
|
+
TooVerbose: "TOO_VERBOSE",
|
|
148
|
+
TooBrief: "TOO_BRIEF",
|
|
149
|
+
GrammerSpelling: "GRAMMER_SPELLING",
|
|
150
|
+
Other: "OTHER"
|
|
151
|
+
};
|
|
142
152
|
var RentalProviderMessageApiMessageTypeEnum = {
|
|
143
153
|
RentalProvider: "RENTAL_PROVIDER"
|
|
144
154
|
};
|
|
@@ -6182,5 +6192,6 @@ var Configuration = class {
|
|
|
6182
6192
|
|
|
6183
6193
|
|
|
6184
6194
|
|
|
6185
|
-
|
|
6195
|
+
|
|
6196
|
+
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.SuggestionReason = SuggestionReason; exports.TwilioConversationDataApiConversationTypeEnum = TwilioConversationDataApiConversationTypeEnum; exports.TwilioInboundSenderTypeDataApiDirectionEnum = TwilioInboundSenderTypeDataApiDirectionEnum; exports.TwilioOutboundSenderTypeDataApiDirectionEnum = TwilioOutboundSenderTypeDataApiDirectionEnum; exports.TwilioProviderMessageApiMessageTypeEnum = TwilioProviderMessageApiMessageTypeEnum; exports.UnboundApi = UnboundApi; exports.UnboundApiAxiosParamCreator = UnboundApiAxiosParamCreator; exports.UnboundApiFactory = UnboundApiFactory; exports.UnboundApiFp = UnboundApiFp;
|
|
6186
6197
|
//# sourceMappingURL=index.js.map
|