@ember-home/unbound-ts-client 0.0.80 → 0.0.82
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 +84 -51
- package/dist/index.d.ts +84 -51
- package/dist/index.js +15 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15 -6
- 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}
|
|
@@ -728,6 +734,12 @@ interface APIConversation {
|
|
|
728
734
|
* @memberof APIConversation
|
|
729
735
|
*/
|
|
730
736
|
'isUnread': boolean;
|
|
737
|
+
/**
|
|
738
|
+
*
|
|
739
|
+
* @type {string}
|
|
740
|
+
* @memberof APIConversation
|
|
741
|
+
*/
|
|
742
|
+
'updatedAt': string;
|
|
731
743
|
/**
|
|
732
744
|
*
|
|
733
745
|
* @type {string}
|
|
@@ -758,6 +770,12 @@ interface APIConversation {
|
|
|
758
770
|
* @memberof APIConversation
|
|
759
771
|
*/
|
|
760
772
|
'lastMessageSentAt'?: string | null;
|
|
773
|
+
/**
|
|
774
|
+
*
|
|
775
|
+
* @type {SuggestionStatus}
|
|
776
|
+
* @memberof APIConversation
|
|
777
|
+
*/
|
|
778
|
+
'suggestionStatus': SuggestionStatus;
|
|
761
779
|
}
|
|
762
780
|
/**
|
|
763
781
|
*
|
|
@@ -765,24 +783,6 @@ interface APIConversation {
|
|
|
765
783
|
* @interface APIConversationUpdate
|
|
766
784
|
*/
|
|
767
785
|
interface APIConversationUpdate {
|
|
768
|
-
/**
|
|
769
|
-
*
|
|
770
|
-
* @type {string}
|
|
771
|
-
* @memberof APIConversationUpdate
|
|
772
|
-
*/
|
|
773
|
-
'mostRecentNonBotMessageId'?: string | null;
|
|
774
|
-
/**
|
|
775
|
-
*
|
|
776
|
-
* @type {string}
|
|
777
|
-
* @memberof APIConversationUpdate
|
|
778
|
-
*/
|
|
779
|
-
'mostRecentNonBotMessageSentAt'?: string | null;
|
|
780
|
-
/**
|
|
781
|
-
*
|
|
782
|
-
* @type {ParticipantType}
|
|
783
|
-
* @memberof APIConversationUpdate
|
|
784
|
-
*/
|
|
785
|
-
'mostRecentNonBotMessageParticipantType'?: ParticipantType | null;
|
|
786
786
|
/**
|
|
787
787
|
*
|
|
788
788
|
* @type {ConversationStatus}
|
|
@@ -1133,6 +1133,12 @@ interface APIMessage {
|
|
|
1133
1133
|
* @memberof APIMessage
|
|
1134
1134
|
*/
|
|
1135
1135
|
'status': MessageStatus;
|
|
1136
|
+
/**
|
|
1137
|
+
*
|
|
1138
|
+
* @type {string}
|
|
1139
|
+
* @memberof APIMessage
|
|
1140
|
+
*/
|
|
1141
|
+
'updatedAt': string;
|
|
1136
1142
|
/**
|
|
1137
1143
|
*
|
|
1138
1144
|
* @type {Messagetypedata}
|
|
@@ -2385,17 +2391,6 @@ declare const PaginationDirection: {
|
|
|
2385
2391
|
readonly Backward: "backward";
|
|
2386
2392
|
};
|
|
2387
2393
|
type PaginationDirection = typeof PaginationDirection[keyof typeof PaginationDirection];
|
|
2388
|
-
/**
|
|
2389
|
-
*
|
|
2390
|
-
* @export
|
|
2391
|
-
* @enum {string}
|
|
2392
|
-
*/
|
|
2393
|
-
declare const ParticipantType: {
|
|
2394
|
-
readonly Guest: "GUEST";
|
|
2395
|
-
readonly Staff: "STAFF";
|
|
2396
|
-
readonly Bot: "BOT";
|
|
2397
|
-
};
|
|
2398
|
-
type ParticipantType = typeof ParticipantType[keyof typeof ParticipantType];
|
|
2399
2394
|
/**
|
|
2400
2395
|
* @type Participantname
|
|
2401
2396
|
* @export
|
|
@@ -2582,25 +2577,19 @@ interface ProviderConversationDataApi {
|
|
|
2582
2577
|
* @type {string}
|
|
2583
2578
|
* @memberof ProviderConversationDataApi
|
|
2584
2579
|
*/
|
|
2585
|
-
'
|
|
2580
|
+
'rentalProviderReservationId': string;
|
|
2586
2581
|
/**
|
|
2587
2582
|
*
|
|
2588
2583
|
* @type {string}
|
|
2589
2584
|
* @memberof ProviderConversationDataApi
|
|
2590
2585
|
*/
|
|
2591
|
-
'
|
|
2592
|
-
/**
|
|
2593
|
-
*
|
|
2594
|
-
* @type {string}
|
|
2595
|
-
* @memberof ProviderConversationDataApi
|
|
2596
|
-
*/
|
|
2597
|
-
'providerCreatedAt': string;
|
|
2586
|
+
'rentalProviderListingId': string;
|
|
2598
2587
|
/**
|
|
2599
2588
|
*
|
|
2600
2589
|
* @type {ReservationChannelTypes}
|
|
2601
2590
|
* @memberof ProviderConversationDataApi
|
|
2602
2591
|
*/
|
|
2603
|
-
'
|
|
2592
|
+
'rentalProviderChannelName': ReservationChannelTypes;
|
|
2604
2593
|
/**
|
|
2605
2594
|
*
|
|
2606
2595
|
* @type {SubjectApi}
|
|
@@ -3034,34 +3023,78 @@ interface SubjectApi {
|
|
|
3034
3023
|
/**
|
|
3035
3024
|
*
|
|
3036
3025
|
* @export
|
|
3037
|
-
* @interface
|
|
3026
|
+
* @interface Suggestion
|
|
3038
3027
|
*/
|
|
3039
|
-
interface
|
|
3028
|
+
interface Suggestion {
|
|
3040
3029
|
/**
|
|
3041
3030
|
*
|
|
3042
3031
|
* @type {string}
|
|
3043
|
-
* @memberof
|
|
3032
|
+
* @memberof Suggestion
|
|
3044
3033
|
*/
|
|
3045
3034
|
'textSuggestedReply': string;
|
|
3046
3035
|
/**
|
|
3047
3036
|
*
|
|
3048
3037
|
* @type {string}
|
|
3049
|
-
* @memberof
|
|
3038
|
+
* @memberof Suggestion
|
|
3050
3039
|
*/
|
|
3051
3040
|
'chatSuggestedReply': string;
|
|
3052
3041
|
/**
|
|
3053
3042
|
*
|
|
3054
3043
|
* @type {string}
|
|
3055
|
-
* @memberof
|
|
3044
|
+
* @memberof Suggestion
|
|
3056
3045
|
*/
|
|
3057
3046
|
'emailSuggestedReply': string;
|
|
3058
3047
|
/**
|
|
3059
3048
|
*
|
|
3060
3049
|
* @type {string}
|
|
3061
|
-
* @memberof
|
|
3050
|
+
* @memberof Suggestion
|
|
3062
3051
|
*/
|
|
3063
3052
|
'suggestionId': string;
|
|
3064
3053
|
}
|
|
3054
|
+
/**
|
|
3055
|
+
*
|
|
3056
|
+
* @export
|
|
3057
|
+
* @interface SuggestionResponse
|
|
3058
|
+
*/
|
|
3059
|
+
interface SuggestionResponse {
|
|
3060
|
+
/**
|
|
3061
|
+
*
|
|
3062
|
+
* @type {SuggestionStatus}
|
|
3063
|
+
* @memberof SuggestionResponse
|
|
3064
|
+
*/
|
|
3065
|
+
'suggestionStatus': SuggestionStatus;
|
|
3066
|
+
/**
|
|
3067
|
+
*
|
|
3068
|
+
* @type {Array<Suggestion>}
|
|
3069
|
+
* @memberof SuggestionResponse
|
|
3070
|
+
*/
|
|
3071
|
+
'data': Array<Suggestion> | null;
|
|
3072
|
+
}
|
|
3073
|
+
/**
|
|
3074
|
+
*
|
|
3075
|
+
* @export
|
|
3076
|
+
* @enum {string}
|
|
3077
|
+
*/
|
|
3078
|
+
declare const SuggestionStatus: {
|
|
3079
|
+
readonly Generating: "GENERATING";
|
|
3080
|
+
readonly DeterminingEligibility: "DETERMINING_ELIGIBILITY";
|
|
3081
|
+
readonly SkippedOutdated: "SKIPPED_OUTDATED";
|
|
3082
|
+
readonly SkippedNoEligibleMessages: "SKIPPED_NO_ELIGIBLE_MESSAGES";
|
|
3083
|
+
readonly AnsweredByStaff: "ANSWERED_BY_STAFF";
|
|
3084
|
+
readonly ReplyGenerated: "REPLY_GENERATED";
|
|
3085
|
+
};
|
|
3086
|
+
type SuggestionStatus = typeof SuggestionStatus[keyof typeof SuggestionStatus];
|
|
3087
|
+
/**
|
|
3088
|
+
*
|
|
3089
|
+
* @export
|
|
3090
|
+
* @enum {string}
|
|
3091
|
+
*/
|
|
3092
|
+
declare const SuggestionUsedType: {
|
|
3093
|
+
readonly Accepted: "ACCEPTED";
|
|
3094
|
+
readonly Modified: "MODIFIED";
|
|
3095
|
+
readonly Rejected: "REJECTED";
|
|
3096
|
+
};
|
|
3097
|
+
type SuggestionUsedType = typeof SuggestionUsedType[keyof typeof SuggestionUsedType];
|
|
3065
3098
|
/**
|
|
3066
3099
|
*
|
|
3067
3100
|
* @export
|
|
@@ -4315,7 +4348,7 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
4315
4348
|
* @param {*} [options] Override http request option.
|
|
4316
4349
|
* @throws {RequiredError}
|
|
4317
4350
|
*/
|
|
4318
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4351
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuggestionResponse>>;
|
|
4319
4352
|
/**
|
|
4320
4353
|
* Conversations Update
|
|
4321
4354
|
* @summary Conversations Update
|
|
@@ -4396,7 +4429,7 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
4396
4429
|
* @param {*} [options] Override http request option.
|
|
4397
4430
|
* @throws {RequiredError}
|
|
4398
4431
|
*/
|
|
4399
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
4432
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<SuggestionResponse>;
|
|
4400
4433
|
/**
|
|
4401
4434
|
* Conversations Update
|
|
4402
4435
|
* @summary Conversations Update
|
|
@@ -4482,7 +4515,7 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
4482
4515
|
* @throws {RequiredError}
|
|
4483
4516
|
* @memberof ConversationsApi
|
|
4484
4517
|
*/
|
|
4485
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
4518
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SuggestionResponse, any>>;
|
|
4486
4519
|
/**
|
|
4487
4520
|
* Conversations Update
|
|
4488
4521
|
* @summary Conversations Update
|
|
@@ -5681,7 +5714,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5681
5714
|
* @param {*} [options] Override http request option.
|
|
5682
5715
|
* @throws {RequiredError}
|
|
5683
5716
|
*/
|
|
5684
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5717
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuggestionResponse>>;
|
|
5685
5718
|
/**
|
|
5686
5719
|
* Conversations Update
|
|
5687
5720
|
* @summary Conversations Update
|
|
@@ -6060,7 +6093,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6060
6093
|
* @param {*} [options] Override http request option.
|
|
6061
6094
|
* @throws {RequiredError}
|
|
6062
6095
|
*/
|
|
6063
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
6096
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<SuggestionResponse>;
|
|
6064
6097
|
/**
|
|
6065
6098
|
* Conversations Update
|
|
6066
6099
|
* @summary Conversations Update
|
|
@@ -6457,7 +6490,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6457
6490
|
* @throws {RequiredError}
|
|
6458
6491
|
* @memberof UnboundApi
|
|
6459
6492
|
*/
|
|
6460
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
6493
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SuggestionResponse, any>>;
|
|
6461
6494
|
/**
|
|
6462
6495
|
* Conversations Update
|
|
6463
6496
|
* @summary Conversations Update
|
|
@@ -6710,4 +6743,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6710
6743
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6711
6744
|
}
|
|
6712
6745
|
|
|
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,
|
|
6746
|
+
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 Suggestion, 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}
|
|
@@ -728,6 +734,12 @@ interface APIConversation {
|
|
|
728
734
|
* @memberof APIConversation
|
|
729
735
|
*/
|
|
730
736
|
'isUnread': boolean;
|
|
737
|
+
/**
|
|
738
|
+
*
|
|
739
|
+
* @type {string}
|
|
740
|
+
* @memberof APIConversation
|
|
741
|
+
*/
|
|
742
|
+
'updatedAt': string;
|
|
731
743
|
/**
|
|
732
744
|
*
|
|
733
745
|
* @type {string}
|
|
@@ -758,6 +770,12 @@ interface APIConversation {
|
|
|
758
770
|
* @memberof APIConversation
|
|
759
771
|
*/
|
|
760
772
|
'lastMessageSentAt'?: string | null;
|
|
773
|
+
/**
|
|
774
|
+
*
|
|
775
|
+
* @type {SuggestionStatus}
|
|
776
|
+
* @memberof APIConversation
|
|
777
|
+
*/
|
|
778
|
+
'suggestionStatus': SuggestionStatus;
|
|
761
779
|
}
|
|
762
780
|
/**
|
|
763
781
|
*
|
|
@@ -765,24 +783,6 @@ interface APIConversation {
|
|
|
765
783
|
* @interface APIConversationUpdate
|
|
766
784
|
*/
|
|
767
785
|
interface APIConversationUpdate {
|
|
768
|
-
/**
|
|
769
|
-
*
|
|
770
|
-
* @type {string}
|
|
771
|
-
* @memberof APIConversationUpdate
|
|
772
|
-
*/
|
|
773
|
-
'mostRecentNonBotMessageId'?: string | null;
|
|
774
|
-
/**
|
|
775
|
-
*
|
|
776
|
-
* @type {string}
|
|
777
|
-
* @memberof APIConversationUpdate
|
|
778
|
-
*/
|
|
779
|
-
'mostRecentNonBotMessageSentAt'?: string | null;
|
|
780
|
-
/**
|
|
781
|
-
*
|
|
782
|
-
* @type {ParticipantType}
|
|
783
|
-
* @memberof APIConversationUpdate
|
|
784
|
-
*/
|
|
785
|
-
'mostRecentNonBotMessageParticipantType'?: ParticipantType | null;
|
|
786
786
|
/**
|
|
787
787
|
*
|
|
788
788
|
* @type {ConversationStatus}
|
|
@@ -1133,6 +1133,12 @@ interface APIMessage {
|
|
|
1133
1133
|
* @memberof APIMessage
|
|
1134
1134
|
*/
|
|
1135
1135
|
'status': MessageStatus;
|
|
1136
|
+
/**
|
|
1137
|
+
*
|
|
1138
|
+
* @type {string}
|
|
1139
|
+
* @memberof APIMessage
|
|
1140
|
+
*/
|
|
1141
|
+
'updatedAt': string;
|
|
1136
1142
|
/**
|
|
1137
1143
|
*
|
|
1138
1144
|
* @type {Messagetypedata}
|
|
@@ -2385,17 +2391,6 @@ declare const PaginationDirection: {
|
|
|
2385
2391
|
readonly Backward: "backward";
|
|
2386
2392
|
};
|
|
2387
2393
|
type PaginationDirection = typeof PaginationDirection[keyof typeof PaginationDirection];
|
|
2388
|
-
/**
|
|
2389
|
-
*
|
|
2390
|
-
* @export
|
|
2391
|
-
* @enum {string}
|
|
2392
|
-
*/
|
|
2393
|
-
declare const ParticipantType: {
|
|
2394
|
-
readonly Guest: "GUEST";
|
|
2395
|
-
readonly Staff: "STAFF";
|
|
2396
|
-
readonly Bot: "BOT";
|
|
2397
|
-
};
|
|
2398
|
-
type ParticipantType = typeof ParticipantType[keyof typeof ParticipantType];
|
|
2399
2394
|
/**
|
|
2400
2395
|
* @type Participantname
|
|
2401
2396
|
* @export
|
|
@@ -2582,25 +2577,19 @@ interface ProviderConversationDataApi {
|
|
|
2582
2577
|
* @type {string}
|
|
2583
2578
|
* @memberof ProviderConversationDataApi
|
|
2584
2579
|
*/
|
|
2585
|
-
'
|
|
2580
|
+
'rentalProviderReservationId': string;
|
|
2586
2581
|
/**
|
|
2587
2582
|
*
|
|
2588
2583
|
* @type {string}
|
|
2589
2584
|
* @memberof ProviderConversationDataApi
|
|
2590
2585
|
*/
|
|
2591
|
-
'
|
|
2592
|
-
/**
|
|
2593
|
-
*
|
|
2594
|
-
* @type {string}
|
|
2595
|
-
* @memberof ProviderConversationDataApi
|
|
2596
|
-
*/
|
|
2597
|
-
'providerCreatedAt': string;
|
|
2586
|
+
'rentalProviderListingId': string;
|
|
2598
2587
|
/**
|
|
2599
2588
|
*
|
|
2600
2589
|
* @type {ReservationChannelTypes}
|
|
2601
2590
|
* @memberof ProviderConversationDataApi
|
|
2602
2591
|
*/
|
|
2603
|
-
'
|
|
2592
|
+
'rentalProviderChannelName': ReservationChannelTypes;
|
|
2604
2593
|
/**
|
|
2605
2594
|
*
|
|
2606
2595
|
* @type {SubjectApi}
|
|
@@ -3034,34 +3023,78 @@ interface SubjectApi {
|
|
|
3034
3023
|
/**
|
|
3035
3024
|
*
|
|
3036
3025
|
* @export
|
|
3037
|
-
* @interface
|
|
3026
|
+
* @interface Suggestion
|
|
3038
3027
|
*/
|
|
3039
|
-
interface
|
|
3028
|
+
interface Suggestion {
|
|
3040
3029
|
/**
|
|
3041
3030
|
*
|
|
3042
3031
|
* @type {string}
|
|
3043
|
-
* @memberof
|
|
3032
|
+
* @memberof Suggestion
|
|
3044
3033
|
*/
|
|
3045
3034
|
'textSuggestedReply': string;
|
|
3046
3035
|
/**
|
|
3047
3036
|
*
|
|
3048
3037
|
* @type {string}
|
|
3049
|
-
* @memberof
|
|
3038
|
+
* @memberof Suggestion
|
|
3050
3039
|
*/
|
|
3051
3040
|
'chatSuggestedReply': string;
|
|
3052
3041
|
/**
|
|
3053
3042
|
*
|
|
3054
3043
|
* @type {string}
|
|
3055
|
-
* @memberof
|
|
3044
|
+
* @memberof Suggestion
|
|
3056
3045
|
*/
|
|
3057
3046
|
'emailSuggestedReply': string;
|
|
3058
3047
|
/**
|
|
3059
3048
|
*
|
|
3060
3049
|
* @type {string}
|
|
3061
|
-
* @memberof
|
|
3050
|
+
* @memberof Suggestion
|
|
3062
3051
|
*/
|
|
3063
3052
|
'suggestionId': string;
|
|
3064
3053
|
}
|
|
3054
|
+
/**
|
|
3055
|
+
*
|
|
3056
|
+
* @export
|
|
3057
|
+
* @interface SuggestionResponse
|
|
3058
|
+
*/
|
|
3059
|
+
interface SuggestionResponse {
|
|
3060
|
+
/**
|
|
3061
|
+
*
|
|
3062
|
+
* @type {SuggestionStatus}
|
|
3063
|
+
* @memberof SuggestionResponse
|
|
3064
|
+
*/
|
|
3065
|
+
'suggestionStatus': SuggestionStatus;
|
|
3066
|
+
/**
|
|
3067
|
+
*
|
|
3068
|
+
* @type {Array<Suggestion>}
|
|
3069
|
+
* @memberof SuggestionResponse
|
|
3070
|
+
*/
|
|
3071
|
+
'data': Array<Suggestion> | null;
|
|
3072
|
+
}
|
|
3073
|
+
/**
|
|
3074
|
+
*
|
|
3075
|
+
* @export
|
|
3076
|
+
* @enum {string}
|
|
3077
|
+
*/
|
|
3078
|
+
declare const SuggestionStatus: {
|
|
3079
|
+
readonly Generating: "GENERATING";
|
|
3080
|
+
readonly DeterminingEligibility: "DETERMINING_ELIGIBILITY";
|
|
3081
|
+
readonly SkippedOutdated: "SKIPPED_OUTDATED";
|
|
3082
|
+
readonly SkippedNoEligibleMessages: "SKIPPED_NO_ELIGIBLE_MESSAGES";
|
|
3083
|
+
readonly AnsweredByStaff: "ANSWERED_BY_STAFF";
|
|
3084
|
+
readonly ReplyGenerated: "REPLY_GENERATED";
|
|
3085
|
+
};
|
|
3086
|
+
type SuggestionStatus = typeof SuggestionStatus[keyof typeof SuggestionStatus];
|
|
3087
|
+
/**
|
|
3088
|
+
*
|
|
3089
|
+
* @export
|
|
3090
|
+
* @enum {string}
|
|
3091
|
+
*/
|
|
3092
|
+
declare const SuggestionUsedType: {
|
|
3093
|
+
readonly Accepted: "ACCEPTED";
|
|
3094
|
+
readonly Modified: "MODIFIED";
|
|
3095
|
+
readonly Rejected: "REJECTED";
|
|
3096
|
+
};
|
|
3097
|
+
type SuggestionUsedType = typeof SuggestionUsedType[keyof typeof SuggestionUsedType];
|
|
3065
3098
|
/**
|
|
3066
3099
|
*
|
|
3067
3100
|
* @export
|
|
@@ -4315,7 +4348,7 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
4315
4348
|
* @param {*} [options] Override http request option.
|
|
4316
4349
|
* @throws {RequiredError}
|
|
4317
4350
|
*/
|
|
4318
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
4351
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuggestionResponse>>;
|
|
4319
4352
|
/**
|
|
4320
4353
|
* Conversations Update
|
|
4321
4354
|
* @summary Conversations Update
|
|
@@ -4396,7 +4429,7 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
4396
4429
|
* @param {*} [options] Override http request option.
|
|
4397
4430
|
* @throws {RequiredError}
|
|
4398
4431
|
*/
|
|
4399
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
4432
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<SuggestionResponse>;
|
|
4400
4433
|
/**
|
|
4401
4434
|
* Conversations Update
|
|
4402
4435
|
* @summary Conversations Update
|
|
@@ -4482,7 +4515,7 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
4482
4515
|
* @throws {RequiredError}
|
|
4483
4516
|
* @memberof ConversationsApi
|
|
4484
4517
|
*/
|
|
4485
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
4518
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SuggestionResponse, any>>;
|
|
4486
4519
|
/**
|
|
4487
4520
|
* Conversations Update
|
|
4488
4521
|
* @summary Conversations Update
|
|
@@ -5681,7 +5714,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5681
5714
|
* @param {*} [options] Override http request option.
|
|
5682
5715
|
* @throws {RequiredError}
|
|
5683
5716
|
*/
|
|
5684
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5717
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuggestionResponse>>;
|
|
5685
5718
|
/**
|
|
5686
5719
|
* Conversations Update
|
|
5687
5720
|
* @summary Conversations Update
|
|
@@ -6060,7 +6093,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6060
6093
|
* @param {*} [options] Override http request option.
|
|
6061
6094
|
* @throws {RequiredError}
|
|
6062
6095
|
*/
|
|
6063
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
6096
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<SuggestionResponse>;
|
|
6064
6097
|
/**
|
|
6065
6098
|
* Conversations Update
|
|
6066
6099
|
* @summary Conversations Update
|
|
@@ -6457,7 +6490,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6457
6490
|
* @throws {RequiredError}
|
|
6458
6491
|
* @memberof UnboundApi
|
|
6459
6492
|
*/
|
|
6460
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
6493
|
+
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SuggestionResponse, any>>;
|
|
6461
6494
|
/**
|
|
6462
6495
|
* Conversations Update
|
|
6463
6496
|
* @summary Conversations Update
|
|
@@ -6710,4 +6743,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6710
6743
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6711
6744
|
}
|
|
6712
6745
|
|
|
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,
|
|
6746
|
+
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 Suggestion, 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
|
@@ -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
|
};
|
|
@@ -216,6 +211,19 @@ var SrcResourceModelsReservationsModelReservationBaseModelSortBy = {
|
|
|
216
211
|
var StaffApiParticipantTypeEnum = {
|
|
217
212
|
Staff: "STAFF"
|
|
218
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
|
+
};
|
|
219
227
|
var TwilioConversationDataApiConversationTypeEnum = {
|
|
220
228
|
Text: "TEXT"
|
|
221
229
|
};
|
|
@@ -6191,5 +6199,6 @@ var Configuration = class {
|
|
|
6191
6199
|
|
|
6192
6200
|
|
|
6193
6201
|
|
|
6194
|
-
|
|
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;
|
|
6195
6204
|
//# sourceMappingURL=index.js.map
|