@ember-home/unbound-ts-client 0.0.83 → 0.0.84
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 +2 -129
- package/dist/index.d.ts +2 -129
- package/dist/index.js +114 -240
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +0 -126
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -775,7 +775,7 @@ interface APIConversation {
|
|
|
775
775
|
* @type {ConversationSuggestionApi}
|
|
776
776
|
* @memberof APIConversation
|
|
777
777
|
*/
|
|
778
|
-
'latestSuggestion'
|
|
778
|
+
'latestSuggestion': ConversationSuggestionApi;
|
|
779
779
|
}
|
|
780
780
|
/**
|
|
781
781
|
*
|
|
@@ -3039,43 +3039,6 @@ interface SubjectApi {
|
|
|
3039
3039
|
*/
|
|
3040
3040
|
'listingName': string;
|
|
3041
3041
|
}
|
|
3042
|
-
/**
|
|
3043
|
-
*
|
|
3044
|
-
* @export
|
|
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
3042
|
/**
|
|
3080
3043
|
*
|
|
3081
3044
|
* @export
|
|
@@ -3113,19 +3076,6 @@ interface SuggestionApi {
|
|
|
3113
3076
|
*/
|
|
3114
3077
|
'suggestionId': string;
|
|
3115
3078
|
}
|
|
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
3079
|
/**
|
|
3130
3080
|
*
|
|
3131
3081
|
* @export
|
|
@@ -3140,17 +3090,6 @@ declare const SuggestionStatus: {
|
|
|
3140
3090
|
readonly ReplyGenerated: "REPLY_GENERATED";
|
|
3141
3091
|
};
|
|
3142
3092
|
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];
|
|
3154
3093
|
/**
|
|
3155
3094
|
*
|
|
3156
3095
|
* @export
|
|
@@ -4316,14 +4255,6 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
4316
4255
|
* @throws {RequiredError}
|
|
4317
4256
|
*/
|
|
4318
4257
|
conversationsList: (searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4319
|
-
/**
|
|
4320
|
-
*
|
|
4321
|
-
* @summary Conversations List Suggestions
|
|
4322
|
-
* @param {string} conversationId
|
|
4323
|
-
* @param {*} [options] Override http request option.
|
|
4324
|
-
* @throws {RequiredError}
|
|
4325
|
-
*/
|
|
4326
|
-
conversationsListSuggestions: (conversationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4327
4258
|
/**
|
|
4328
4259
|
* Conversations Update
|
|
4329
4260
|
* @summary Conversations Update
|
|
@@ -4397,14 +4328,6 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
4397
4328
|
* @throws {RequiredError}
|
|
4398
4329
|
*/
|
|
4399
4330
|
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIConversation>>;
|
|
4400
|
-
/**
|
|
4401
|
-
*
|
|
4402
|
-
* @summary Conversations List Suggestions
|
|
4403
|
-
* @param {string} conversationId
|
|
4404
|
-
* @param {*} [options] Override http request option.
|
|
4405
|
-
* @throws {RequiredError}
|
|
4406
|
-
*/
|
|
4407
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuggestionResponse>>;
|
|
4408
4331
|
/**
|
|
4409
4332
|
* Conversations Update
|
|
4410
4333
|
* @summary Conversations Update
|
|
@@ -4478,14 +4401,6 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
4478
4401
|
* @throws {RequiredError}
|
|
4479
4402
|
*/
|
|
4480
4403
|
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIConversation>;
|
|
4481
|
-
/**
|
|
4482
|
-
*
|
|
4483
|
-
* @summary Conversations List Suggestions
|
|
4484
|
-
* @param {string} conversationId
|
|
4485
|
-
* @param {*} [options] Override http request option.
|
|
4486
|
-
* @throws {RequiredError}
|
|
4487
|
-
*/
|
|
4488
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<SuggestionResponse>;
|
|
4489
4404
|
/**
|
|
4490
4405
|
* Conversations Update
|
|
4491
4406
|
* @summary Conversations Update
|
|
@@ -4563,15 +4478,6 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
4563
4478
|
* @memberof ConversationsApi
|
|
4564
4479
|
*/
|
|
4565
4480
|
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIConversation, any>>;
|
|
4566
|
-
/**
|
|
4567
|
-
*
|
|
4568
|
-
* @summary Conversations List Suggestions
|
|
4569
|
-
* @param {string} conversationId
|
|
4570
|
-
* @param {*} [options] Override http request option.
|
|
4571
|
-
* @throws {RequiredError}
|
|
4572
|
-
* @memberof ConversationsApi
|
|
4573
|
-
*/
|
|
4574
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SuggestionResponse, any>>;
|
|
4575
4481
|
/**
|
|
4576
4482
|
* Conversations Update
|
|
4577
4483
|
* @summary Conversations Update
|
|
@@ -5384,14 +5290,6 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5384
5290
|
* @throws {RequiredError}
|
|
5385
5291
|
*/
|
|
5386
5292
|
conversationsList: (searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5387
|
-
/**
|
|
5388
|
-
*
|
|
5389
|
-
* @summary Conversations List Suggestions
|
|
5390
|
-
* @param {string} conversationId
|
|
5391
|
-
* @param {*} [options] Override http request option.
|
|
5392
|
-
* @throws {RequiredError}
|
|
5393
|
-
*/
|
|
5394
|
-
conversationsListSuggestions: (conversationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5395
5293
|
/**
|
|
5396
5294
|
* Conversations Update
|
|
5397
5295
|
* @summary Conversations Update
|
|
@@ -5763,14 +5661,6 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5763
5661
|
* @throws {RequiredError}
|
|
5764
5662
|
*/
|
|
5765
5663
|
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIConversation>>;
|
|
5766
|
-
/**
|
|
5767
|
-
*
|
|
5768
|
-
* @summary Conversations List Suggestions
|
|
5769
|
-
* @param {string} conversationId
|
|
5770
|
-
* @param {*} [options] Override http request option.
|
|
5771
|
-
* @throws {RequiredError}
|
|
5772
|
-
*/
|
|
5773
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuggestionResponse>>;
|
|
5774
5664
|
/**
|
|
5775
5665
|
* Conversations Update
|
|
5776
5666
|
* @summary Conversations Update
|
|
@@ -6142,14 +6032,6 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6142
6032
|
* @throws {RequiredError}
|
|
6143
6033
|
*/
|
|
6144
6034
|
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIConversation>;
|
|
6145
|
-
/**
|
|
6146
|
-
*
|
|
6147
|
-
* @summary Conversations List Suggestions
|
|
6148
|
-
* @param {string} conversationId
|
|
6149
|
-
* @param {*} [options] Override http request option.
|
|
6150
|
-
* @throws {RequiredError}
|
|
6151
|
-
*/
|
|
6152
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<SuggestionResponse>;
|
|
6153
6035
|
/**
|
|
6154
6036
|
* Conversations Update
|
|
6155
6037
|
* @summary Conversations Update
|
|
@@ -6538,15 +6420,6 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6538
6420
|
* @memberof UnboundApi
|
|
6539
6421
|
*/
|
|
6540
6422
|
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIConversation, any>>;
|
|
6541
|
-
/**
|
|
6542
|
-
*
|
|
6543
|
-
* @summary Conversations List Suggestions
|
|
6544
|
-
* @param {string} conversationId
|
|
6545
|
-
* @param {*} [options] Override http request option.
|
|
6546
|
-
* @throws {RequiredError}
|
|
6547
|
-
* @memberof UnboundApi
|
|
6548
|
-
*/
|
|
6549
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SuggestionResponse, any>>;
|
|
6550
6423
|
/**
|
|
6551
6424
|
* Conversations Update
|
|
6552
6425
|
* @summary Conversations Update
|
|
@@ -6799,4 +6672,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6799
6672
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6800
6673
|
}
|
|
6801
6674
|
|
|
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
|
|
6675
|
+
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 SuggestionApi, SuggestionStatus, 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
|
@@ -775,7 +775,7 @@ interface APIConversation {
|
|
|
775
775
|
* @type {ConversationSuggestionApi}
|
|
776
776
|
* @memberof APIConversation
|
|
777
777
|
*/
|
|
778
|
-
'latestSuggestion'
|
|
778
|
+
'latestSuggestion': ConversationSuggestionApi;
|
|
779
779
|
}
|
|
780
780
|
/**
|
|
781
781
|
*
|
|
@@ -3039,43 +3039,6 @@ interface SubjectApi {
|
|
|
3039
3039
|
*/
|
|
3040
3040
|
'listingName': string;
|
|
3041
3041
|
}
|
|
3042
|
-
/**
|
|
3043
|
-
*
|
|
3044
|
-
* @export
|
|
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
3042
|
/**
|
|
3080
3043
|
*
|
|
3081
3044
|
* @export
|
|
@@ -3113,19 +3076,6 @@ interface SuggestionApi {
|
|
|
3113
3076
|
*/
|
|
3114
3077
|
'suggestionId': string;
|
|
3115
3078
|
}
|
|
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
3079
|
/**
|
|
3130
3080
|
*
|
|
3131
3081
|
* @export
|
|
@@ -3140,17 +3090,6 @@ declare const SuggestionStatus: {
|
|
|
3140
3090
|
readonly ReplyGenerated: "REPLY_GENERATED";
|
|
3141
3091
|
};
|
|
3142
3092
|
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];
|
|
3154
3093
|
/**
|
|
3155
3094
|
*
|
|
3156
3095
|
* @export
|
|
@@ -4316,14 +4255,6 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
4316
4255
|
* @throws {RequiredError}
|
|
4317
4256
|
*/
|
|
4318
4257
|
conversationsList: (searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4319
|
-
/**
|
|
4320
|
-
*
|
|
4321
|
-
* @summary Conversations List Suggestions
|
|
4322
|
-
* @param {string} conversationId
|
|
4323
|
-
* @param {*} [options] Override http request option.
|
|
4324
|
-
* @throws {RequiredError}
|
|
4325
|
-
*/
|
|
4326
|
-
conversationsListSuggestions: (conversationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4327
4258
|
/**
|
|
4328
4259
|
* Conversations Update
|
|
4329
4260
|
* @summary Conversations Update
|
|
@@ -4397,14 +4328,6 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
4397
4328
|
* @throws {RequiredError}
|
|
4398
4329
|
*/
|
|
4399
4330
|
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIConversation>>;
|
|
4400
|
-
/**
|
|
4401
|
-
*
|
|
4402
|
-
* @summary Conversations List Suggestions
|
|
4403
|
-
* @param {string} conversationId
|
|
4404
|
-
* @param {*} [options] Override http request option.
|
|
4405
|
-
* @throws {RequiredError}
|
|
4406
|
-
*/
|
|
4407
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuggestionResponse>>;
|
|
4408
4331
|
/**
|
|
4409
4332
|
* Conversations Update
|
|
4410
4333
|
* @summary Conversations Update
|
|
@@ -4478,14 +4401,6 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
4478
4401
|
* @throws {RequiredError}
|
|
4479
4402
|
*/
|
|
4480
4403
|
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIConversation>;
|
|
4481
|
-
/**
|
|
4482
|
-
*
|
|
4483
|
-
* @summary Conversations List Suggestions
|
|
4484
|
-
* @param {string} conversationId
|
|
4485
|
-
* @param {*} [options] Override http request option.
|
|
4486
|
-
* @throws {RequiredError}
|
|
4487
|
-
*/
|
|
4488
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<SuggestionResponse>;
|
|
4489
4404
|
/**
|
|
4490
4405
|
* Conversations Update
|
|
4491
4406
|
* @summary Conversations Update
|
|
@@ -4563,15 +4478,6 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
4563
4478
|
* @memberof ConversationsApi
|
|
4564
4479
|
*/
|
|
4565
4480
|
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIConversation, any>>;
|
|
4566
|
-
/**
|
|
4567
|
-
*
|
|
4568
|
-
* @summary Conversations List Suggestions
|
|
4569
|
-
* @param {string} conversationId
|
|
4570
|
-
* @param {*} [options] Override http request option.
|
|
4571
|
-
* @throws {RequiredError}
|
|
4572
|
-
* @memberof ConversationsApi
|
|
4573
|
-
*/
|
|
4574
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SuggestionResponse, any>>;
|
|
4575
4481
|
/**
|
|
4576
4482
|
* Conversations Update
|
|
4577
4483
|
* @summary Conversations Update
|
|
@@ -5384,14 +5290,6 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5384
5290
|
* @throws {RequiredError}
|
|
5385
5291
|
*/
|
|
5386
5292
|
conversationsList: (searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5387
|
-
/**
|
|
5388
|
-
*
|
|
5389
|
-
* @summary Conversations List Suggestions
|
|
5390
|
-
* @param {string} conversationId
|
|
5391
|
-
* @param {*} [options] Override http request option.
|
|
5392
|
-
* @throws {RequiredError}
|
|
5393
|
-
*/
|
|
5394
|
-
conversationsListSuggestions: (conversationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5395
5293
|
/**
|
|
5396
5294
|
* Conversations Update
|
|
5397
5295
|
* @summary Conversations Update
|
|
@@ -5763,14 +5661,6 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5763
5661
|
* @throws {RequiredError}
|
|
5764
5662
|
*/
|
|
5765
5663
|
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIConversation>>;
|
|
5766
|
-
/**
|
|
5767
|
-
*
|
|
5768
|
-
* @summary Conversations List Suggestions
|
|
5769
|
-
* @param {string} conversationId
|
|
5770
|
-
* @param {*} [options] Override http request option.
|
|
5771
|
-
* @throws {RequiredError}
|
|
5772
|
-
*/
|
|
5773
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuggestionResponse>>;
|
|
5774
5664
|
/**
|
|
5775
5665
|
* Conversations Update
|
|
5776
5666
|
* @summary Conversations Update
|
|
@@ -6142,14 +6032,6 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6142
6032
|
* @throws {RequiredError}
|
|
6143
6033
|
*/
|
|
6144
6034
|
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIConversation>;
|
|
6145
|
-
/**
|
|
6146
|
-
*
|
|
6147
|
-
* @summary Conversations List Suggestions
|
|
6148
|
-
* @param {string} conversationId
|
|
6149
|
-
* @param {*} [options] Override http request option.
|
|
6150
|
-
* @throws {RequiredError}
|
|
6151
|
-
*/
|
|
6152
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): AxiosPromise<SuggestionResponse>;
|
|
6153
6035
|
/**
|
|
6154
6036
|
* Conversations Update
|
|
6155
6037
|
* @summary Conversations Update
|
|
@@ -6538,15 +6420,6 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6538
6420
|
* @memberof UnboundApi
|
|
6539
6421
|
*/
|
|
6540
6422
|
conversationsList(searchString?: string | null, contactId?: string | null, status?: Array<ConversationStatus> | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortOrder?: SortOrder, inboxId?: string | null, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIConversation, any>>;
|
|
6541
|
-
/**
|
|
6542
|
-
*
|
|
6543
|
-
* @summary Conversations List Suggestions
|
|
6544
|
-
* @param {string} conversationId
|
|
6545
|
-
* @param {*} [options] Override http request option.
|
|
6546
|
-
* @throws {RequiredError}
|
|
6547
|
-
* @memberof UnboundApi
|
|
6548
|
-
*/
|
|
6549
|
-
conversationsListSuggestions(conversationId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SuggestionResponse, any>>;
|
|
6550
6423
|
/**
|
|
6551
6424
|
* Conversations Update
|
|
6552
6425
|
* @summary Conversations Update
|
|
@@ -6799,4 +6672,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6799
6672
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6800
6673
|
}
|
|
6801
6674
|
|
|
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
|
|
6675
|
+
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 SuggestionApi, SuggestionStatus, type ToItemApi, type TwilioConversationDataApi, TwilioConversationDataApiConversationTypeEnum, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, type TwilioProviderMessageApi, TwilioProviderMessageApiMessageTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UserApi };
|