@ember-home/unbound-ts-client 0.0.87 → 0.0.89
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 +81 -8
- package/dist/index.d.ts +81 -8
- package/dist/index.js +17 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +17 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1103,6 +1103,24 @@ interface APIMessage {
|
|
|
1103
1103
|
* @memberof APIMessage
|
|
1104
1104
|
*/
|
|
1105
1105
|
'guestReadAt'?: string | null;
|
|
1106
|
+
/**
|
|
1107
|
+
*
|
|
1108
|
+
* @type {Array<MessageAttachmentApi>}
|
|
1109
|
+
* @memberof APIMessage
|
|
1110
|
+
*/
|
|
1111
|
+
'attachments'?: Array<MessageAttachmentApi> | null;
|
|
1112
|
+
/**
|
|
1113
|
+
*
|
|
1114
|
+
* @type {string}
|
|
1115
|
+
* @memberof APIMessage
|
|
1116
|
+
*/
|
|
1117
|
+
'suggestionId'?: string | null;
|
|
1118
|
+
/**
|
|
1119
|
+
*
|
|
1120
|
+
* @type {ReasonType}
|
|
1121
|
+
* @memberof APIMessage
|
|
1122
|
+
*/
|
|
1123
|
+
'suggestionReason'?: ReasonType | null;
|
|
1106
1124
|
/**
|
|
1107
1125
|
*
|
|
1108
1126
|
* @type {string}
|
|
@@ -2252,6 +2270,31 @@ interface ListResponseAPIProvider {
|
|
|
2252
2270
|
*/
|
|
2253
2271
|
'data': Array<APIProvider>;
|
|
2254
2272
|
}
|
|
2273
|
+
/**
|
|
2274
|
+
*
|
|
2275
|
+
* @export
|
|
2276
|
+
* @interface MessageAttachmentApi
|
|
2277
|
+
*/
|
|
2278
|
+
interface MessageAttachmentApi {
|
|
2279
|
+
/**
|
|
2280
|
+
*
|
|
2281
|
+
* @type {string}
|
|
2282
|
+
* @memberof MessageAttachmentApi
|
|
2283
|
+
*/
|
|
2284
|
+
'url': string;
|
|
2285
|
+
/**
|
|
2286
|
+
*
|
|
2287
|
+
* @type {string}
|
|
2288
|
+
* @memberof MessageAttachmentApi
|
|
2289
|
+
*/
|
|
2290
|
+
'mimeType'?: string | null;
|
|
2291
|
+
/**
|
|
2292
|
+
*
|
|
2293
|
+
* @type {string}
|
|
2294
|
+
* @memberof MessageAttachmentApi
|
|
2295
|
+
*/
|
|
2296
|
+
'extension'?: string | null;
|
|
2297
|
+
}
|
|
2255
2298
|
/**
|
|
2256
2299
|
*
|
|
2257
2300
|
* @export
|
|
@@ -2644,14 +2687,14 @@ interface ProviderAttributionApi {
|
|
|
2644
2687
|
* @export
|
|
2645
2688
|
* @enum {string}
|
|
2646
2689
|
*/
|
|
2647
|
-
declare const
|
|
2690
|
+
declare const ProviderCommunicationTypeInput: {
|
|
2648
2691
|
readonly Sms: "SMS";
|
|
2649
2692
|
readonly Email: "EMAIL";
|
|
2650
2693
|
readonly Channel: "CHANNEL";
|
|
2651
2694
|
readonly Whatsapp: "WHATSAPP";
|
|
2652
2695
|
readonly Note: "NOTE";
|
|
2653
2696
|
};
|
|
2654
|
-
type
|
|
2697
|
+
type ProviderCommunicationTypeInput = typeof ProviderCommunicationTypeInput[keyof typeof ProviderCommunicationTypeInput];
|
|
2655
2698
|
/**
|
|
2656
2699
|
*
|
|
2657
2700
|
* @export
|
|
@@ -2706,6 +2749,12 @@ interface ProviderConversationDataApi {
|
|
|
2706
2749
|
* @memberof ProviderConversationDataApi
|
|
2707
2750
|
*/
|
|
2708
2751
|
'contactId'?: string | null;
|
|
2752
|
+
/**
|
|
2753
|
+
*
|
|
2754
|
+
* @type {Array<SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType>}
|
|
2755
|
+
* @memberof ProviderConversationDataApi
|
|
2756
|
+
*/
|
|
2757
|
+
'availableCommunicationTypes'?: Array<SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType>;
|
|
2709
2758
|
}
|
|
2710
2759
|
declare const ProviderConversationDataApiConversationTypeEnum: {
|
|
2711
2760
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
@@ -2854,10 +2903,10 @@ interface RentalProviderMessageApi {
|
|
|
2854
2903
|
'messageType': RentalProviderMessageApiMessageTypeEnum;
|
|
2855
2904
|
/**
|
|
2856
2905
|
*
|
|
2857
|
-
* @type {
|
|
2906
|
+
* @type {SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType}
|
|
2858
2907
|
* @memberof RentalProviderMessageApi
|
|
2859
2908
|
*/
|
|
2860
|
-
'communicationType':
|
|
2909
|
+
'communicationType': SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType;
|
|
2861
2910
|
}
|
|
2862
2911
|
declare const RentalProviderMessageApiMessageTypeEnum: {
|
|
2863
2912
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
@@ -2939,6 +2988,18 @@ declare const SrcResourceModelsContactsModelContactsModelContactSortBy: {
|
|
|
2939
2988
|
readonly CompanyLastFirst: "company_last_first";
|
|
2940
2989
|
};
|
|
2941
2990
|
type SrcResourceModelsContactsModelContactsModelContactSortBy = typeof SrcResourceModelsContactsModelContactsModelContactSortBy[keyof typeof SrcResourceModelsContactsModelContactsModelContactSortBy];
|
|
2991
|
+
/**
|
|
2992
|
+
*
|
|
2993
|
+
* @export
|
|
2994
|
+
* @enum {string}
|
|
2995
|
+
*/
|
|
2996
|
+
declare const SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType: {
|
|
2997
|
+
readonly Sms: "SMS";
|
|
2998
|
+
readonly Email: "EMAIL";
|
|
2999
|
+
readonly Channel: "CHANNEL";
|
|
3000
|
+
readonly Whatsapp: "WHATSAPP";
|
|
3001
|
+
};
|
|
3002
|
+
type SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType = typeof SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType[keyof typeof SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType];
|
|
2942
3003
|
/**
|
|
2943
3004
|
*
|
|
2944
3005
|
* @export
|
|
@@ -2953,10 +3014,10 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi1 {
|
|
|
2953
3014
|
'messageType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum;
|
|
2954
3015
|
/**
|
|
2955
3016
|
*
|
|
2956
|
-
* @type {
|
|
3017
|
+
* @type {ProviderCommunicationTypeInput}
|
|
2957
3018
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
2958
3019
|
*/
|
|
2959
|
-
'communicationType':
|
|
3020
|
+
'communicationType': ProviderCommunicationTypeInput;
|
|
2960
3021
|
}
|
|
2961
3022
|
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum: {
|
|
2962
3023
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
@@ -3029,6 +3090,19 @@ declare const SrcResourceModelsListingsModelListingBaseSortBy: {
|
|
|
3029
3090
|
readonly Title: "title";
|
|
3030
3091
|
};
|
|
3031
3092
|
type SrcResourceModelsListingsModelListingBaseSortBy = typeof SrcResourceModelsListingsModelListingBaseSortBy[keyof typeof SrcResourceModelsListingsModelListingBaseSortBy];
|
|
3093
|
+
/**
|
|
3094
|
+
*
|
|
3095
|
+
* @export
|
|
3096
|
+
* @enum {string}
|
|
3097
|
+
*/
|
|
3098
|
+
declare const SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType: {
|
|
3099
|
+
readonly Sms: "SMS";
|
|
3100
|
+
readonly Email: "EMAIL";
|
|
3101
|
+
readonly Channel: "CHANNEL";
|
|
3102
|
+
readonly Whatsapp: "WHATSAPP";
|
|
3103
|
+
readonly Note: "NOTE";
|
|
3104
|
+
};
|
|
3105
|
+
type SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType = typeof SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType[keyof typeof SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType];
|
|
3032
3106
|
/**
|
|
3033
3107
|
*
|
|
3034
3108
|
* @export
|
|
@@ -3162,7 +3236,6 @@ interface SuggestionApi {
|
|
|
3162
3236
|
*/
|
|
3163
3237
|
declare const SuggestionStatus: {
|
|
3164
3238
|
readonly Generating: "GENERATING";
|
|
3165
|
-
readonly DeterminingEligibility: "DETERMINING_ELIGIBILITY";
|
|
3166
3239
|
readonly SkippedOutdated: "SKIPPED_OUTDATED";
|
|
3167
3240
|
readonly SkippedNoEligibleMessages: "SKIPPED_NO_ELIGIBLE_MESSAGES";
|
|
3168
3241
|
readonly AnsweredByStaff: "ANSWERED_BY_STAFF";
|
|
@@ -6920,4 +6993,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
6920
6993
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
6921
6994
|
}
|
|
6922
6995
|
|
|
6923
|
-
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 APIUserDevice, type APIUserDeviceCreate, 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, 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,
|
|
6996
|
+
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 APIUserDevice, type APIUserDeviceCreate, 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, 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, type MessageAttachmentApi, 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, ProviderCommunicationTypeInput, 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, SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType, 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, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp };
|
package/dist/index.d.ts
CHANGED
|
@@ -1103,6 +1103,24 @@ interface APIMessage {
|
|
|
1103
1103
|
* @memberof APIMessage
|
|
1104
1104
|
*/
|
|
1105
1105
|
'guestReadAt'?: string | null;
|
|
1106
|
+
/**
|
|
1107
|
+
*
|
|
1108
|
+
* @type {Array<MessageAttachmentApi>}
|
|
1109
|
+
* @memberof APIMessage
|
|
1110
|
+
*/
|
|
1111
|
+
'attachments'?: Array<MessageAttachmentApi> | null;
|
|
1112
|
+
/**
|
|
1113
|
+
*
|
|
1114
|
+
* @type {string}
|
|
1115
|
+
* @memberof APIMessage
|
|
1116
|
+
*/
|
|
1117
|
+
'suggestionId'?: string | null;
|
|
1118
|
+
/**
|
|
1119
|
+
*
|
|
1120
|
+
* @type {ReasonType}
|
|
1121
|
+
* @memberof APIMessage
|
|
1122
|
+
*/
|
|
1123
|
+
'suggestionReason'?: ReasonType | null;
|
|
1106
1124
|
/**
|
|
1107
1125
|
*
|
|
1108
1126
|
* @type {string}
|
|
@@ -2252,6 +2270,31 @@ interface ListResponseAPIProvider {
|
|
|
2252
2270
|
*/
|
|
2253
2271
|
'data': Array<APIProvider>;
|
|
2254
2272
|
}
|
|
2273
|
+
/**
|
|
2274
|
+
*
|
|
2275
|
+
* @export
|
|
2276
|
+
* @interface MessageAttachmentApi
|
|
2277
|
+
*/
|
|
2278
|
+
interface MessageAttachmentApi {
|
|
2279
|
+
/**
|
|
2280
|
+
*
|
|
2281
|
+
* @type {string}
|
|
2282
|
+
* @memberof MessageAttachmentApi
|
|
2283
|
+
*/
|
|
2284
|
+
'url': string;
|
|
2285
|
+
/**
|
|
2286
|
+
*
|
|
2287
|
+
* @type {string}
|
|
2288
|
+
* @memberof MessageAttachmentApi
|
|
2289
|
+
*/
|
|
2290
|
+
'mimeType'?: string | null;
|
|
2291
|
+
/**
|
|
2292
|
+
*
|
|
2293
|
+
* @type {string}
|
|
2294
|
+
* @memberof MessageAttachmentApi
|
|
2295
|
+
*/
|
|
2296
|
+
'extension'?: string | null;
|
|
2297
|
+
}
|
|
2255
2298
|
/**
|
|
2256
2299
|
*
|
|
2257
2300
|
* @export
|
|
@@ -2644,14 +2687,14 @@ interface ProviderAttributionApi {
|
|
|
2644
2687
|
* @export
|
|
2645
2688
|
* @enum {string}
|
|
2646
2689
|
*/
|
|
2647
|
-
declare const
|
|
2690
|
+
declare const ProviderCommunicationTypeInput: {
|
|
2648
2691
|
readonly Sms: "SMS";
|
|
2649
2692
|
readonly Email: "EMAIL";
|
|
2650
2693
|
readonly Channel: "CHANNEL";
|
|
2651
2694
|
readonly Whatsapp: "WHATSAPP";
|
|
2652
2695
|
readonly Note: "NOTE";
|
|
2653
2696
|
};
|
|
2654
|
-
type
|
|
2697
|
+
type ProviderCommunicationTypeInput = typeof ProviderCommunicationTypeInput[keyof typeof ProviderCommunicationTypeInput];
|
|
2655
2698
|
/**
|
|
2656
2699
|
*
|
|
2657
2700
|
* @export
|
|
@@ -2706,6 +2749,12 @@ interface ProviderConversationDataApi {
|
|
|
2706
2749
|
* @memberof ProviderConversationDataApi
|
|
2707
2750
|
*/
|
|
2708
2751
|
'contactId'?: string | null;
|
|
2752
|
+
/**
|
|
2753
|
+
*
|
|
2754
|
+
* @type {Array<SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType>}
|
|
2755
|
+
* @memberof ProviderConversationDataApi
|
|
2756
|
+
*/
|
|
2757
|
+
'availableCommunicationTypes'?: Array<SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType>;
|
|
2709
2758
|
}
|
|
2710
2759
|
declare const ProviderConversationDataApiConversationTypeEnum: {
|
|
2711
2760
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
@@ -2854,10 +2903,10 @@ interface RentalProviderMessageApi {
|
|
|
2854
2903
|
'messageType': RentalProviderMessageApiMessageTypeEnum;
|
|
2855
2904
|
/**
|
|
2856
2905
|
*
|
|
2857
|
-
* @type {
|
|
2906
|
+
* @type {SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType}
|
|
2858
2907
|
* @memberof RentalProviderMessageApi
|
|
2859
2908
|
*/
|
|
2860
|
-
'communicationType':
|
|
2909
|
+
'communicationType': SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType;
|
|
2861
2910
|
}
|
|
2862
2911
|
declare const RentalProviderMessageApiMessageTypeEnum: {
|
|
2863
2912
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
@@ -2939,6 +2988,18 @@ declare const SrcResourceModelsContactsModelContactsModelContactSortBy: {
|
|
|
2939
2988
|
readonly CompanyLastFirst: "company_last_first";
|
|
2940
2989
|
};
|
|
2941
2990
|
type SrcResourceModelsContactsModelContactsModelContactSortBy = typeof SrcResourceModelsContactsModelContactsModelContactSortBy[keyof typeof SrcResourceModelsContactsModelContactsModelContactSortBy];
|
|
2991
|
+
/**
|
|
2992
|
+
*
|
|
2993
|
+
* @export
|
|
2994
|
+
* @enum {string}
|
|
2995
|
+
*/
|
|
2996
|
+
declare const SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType: {
|
|
2997
|
+
readonly Sms: "SMS";
|
|
2998
|
+
readonly Email: "EMAIL";
|
|
2999
|
+
readonly Channel: "CHANNEL";
|
|
3000
|
+
readonly Whatsapp: "WHATSAPP";
|
|
3001
|
+
};
|
|
3002
|
+
type SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType = typeof SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType[keyof typeof SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType];
|
|
2942
3003
|
/**
|
|
2943
3004
|
*
|
|
2944
3005
|
* @export
|
|
@@ -2953,10 +3014,10 @@ interface SrcResourceModelsHelperModelsCustomBaseModelCreateApi1 {
|
|
|
2953
3014
|
'messageType': SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum;
|
|
2954
3015
|
/**
|
|
2955
3016
|
*
|
|
2956
|
-
* @type {
|
|
3017
|
+
* @type {ProviderCommunicationTypeInput}
|
|
2957
3018
|
* @memberof SrcResourceModelsHelperModelsCustomBaseModelCreateApi1
|
|
2958
3019
|
*/
|
|
2959
|
-
'communicationType':
|
|
3020
|
+
'communicationType': ProviderCommunicationTypeInput;
|
|
2960
3021
|
}
|
|
2961
3022
|
declare const SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum: {
|
|
2962
3023
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
@@ -3029,6 +3090,19 @@ declare const SrcResourceModelsListingsModelListingBaseSortBy: {
|
|
|
3029
3090
|
readonly Title: "title";
|
|
3030
3091
|
};
|
|
3031
3092
|
type SrcResourceModelsListingsModelListingBaseSortBy = typeof SrcResourceModelsListingsModelListingBaseSortBy[keyof typeof SrcResourceModelsListingsModelListingBaseSortBy];
|
|
3093
|
+
/**
|
|
3094
|
+
*
|
|
3095
|
+
* @export
|
|
3096
|
+
* @enum {string}
|
|
3097
|
+
*/
|
|
3098
|
+
declare const SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType: {
|
|
3099
|
+
readonly Sms: "SMS";
|
|
3100
|
+
readonly Email: "EMAIL";
|
|
3101
|
+
readonly Channel: "CHANNEL";
|
|
3102
|
+
readonly Whatsapp: "WHATSAPP";
|
|
3103
|
+
readonly Note: "NOTE";
|
|
3104
|
+
};
|
|
3105
|
+
type SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType = typeof SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType[keyof typeof SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType];
|
|
3032
3106
|
/**
|
|
3033
3107
|
*
|
|
3034
3108
|
* @export
|
|
@@ -3162,7 +3236,6 @@ interface SuggestionApi {
|
|
|
3162
3236
|
*/
|
|
3163
3237
|
declare const SuggestionStatus: {
|
|
3164
3238
|
readonly Generating: "GENERATING";
|
|
3165
|
-
readonly DeterminingEligibility: "DETERMINING_ELIGIBILITY";
|
|
3166
3239
|
readonly SkippedOutdated: "SKIPPED_OUTDATED";
|
|
3167
3240
|
readonly SkippedNoEligibleMessages: "SKIPPED_NO_ELIGIBLE_MESSAGES";
|
|
3168
3241
|
readonly AnsweredByStaff: "ANSWERED_BY_STAFF";
|
|
@@ -6920,4 +6993,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
6920
6993
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
6921
6994
|
}
|
|
6922
6995
|
|
|
6923
|
-
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 APIUserDevice, type APIUserDeviceCreate, 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, 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,
|
|
6996
|
+
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 APIUserDevice, type APIUserDeviceCreate, 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, 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, type MessageAttachmentApi, 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, ProviderCommunicationTypeInput, 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, SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType, 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, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp };
|
package/dist/index.js
CHANGED
|
@@ -127,7 +127,7 @@ var PhoneInboxApiInboxTypeEnum = {
|
|
|
127
127
|
var ProviderAccountInboxApiInboxTypeEnum = {
|
|
128
128
|
RentalProvider: "RENTAL_PROVIDER"
|
|
129
129
|
};
|
|
130
|
-
var
|
|
130
|
+
var ProviderCommunicationTypeInput = {
|
|
131
131
|
Sms: "SMS",
|
|
132
132
|
Email: "EMAIL",
|
|
133
133
|
Channel: "CHANNEL",
|
|
@@ -190,6 +190,12 @@ var SrcResourceModelsContactsModelContactsModelContactSortBy = {
|
|
|
190
190
|
FirstLastCompany: "first_last_company",
|
|
191
191
|
CompanyLastFirst: "company_last_first"
|
|
192
192
|
};
|
|
193
|
+
var SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType = {
|
|
194
|
+
Sms: "SMS",
|
|
195
|
+
Email: "EMAIL",
|
|
196
|
+
Channel: "CHANNEL",
|
|
197
|
+
Whatsapp: "WHATSAPP"
|
|
198
|
+
};
|
|
193
199
|
var SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum = {
|
|
194
200
|
RentalProvider: "RENTAL_PROVIDER"
|
|
195
201
|
};
|
|
@@ -202,6 +208,13 @@ var SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum = {
|
|
|
202
208
|
var SrcResourceModelsListingsModelListingBaseSortBy = {
|
|
203
209
|
Title: "title"
|
|
204
210
|
};
|
|
211
|
+
var SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType = {
|
|
212
|
+
Sms: "SMS",
|
|
213
|
+
Email: "EMAIL",
|
|
214
|
+
Channel: "CHANNEL",
|
|
215
|
+
Whatsapp: "WHATSAPP",
|
|
216
|
+
Note: "NOTE"
|
|
217
|
+
};
|
|
205
218
|
var SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy = {
|
|
206
219
|
SentAt: "sent_at"
|
|
207
220
|
};
|
|
@@ -213,7 +226,6 @@ var StaffApiParticipantTypeEnum = {
|
|
|
213
226
|
};
|
|
214
227
|
var SuggestionStatus = {
|
|
215
228
|
Generating: "GENERATING",
|
|
216
|
-
DeterminingEligibility: "DETERMINING_ELIGIBILITY",
|
|
217
229
|
SkippedOutdated: "SKIPPED_OUTDATED",
|
|
218
230
|
SkippedNoEligibleMessages: "SKIPPED_NO_ELIGIBLE_MESSAGES",
|
|
219
231
|
AnsweredByStaff: "ANSWERED_BY_STAFF",
|
|
@@ -6344,5 +6356,7 @@ var Configuration = class {
|
|
|
6344
6356
|
|
|
6345
6357
|
|
|
6346
6358
|
|
|
6347
|
-
|
|
6359
|
+
|
|
6360
|
+
|
|
6361
|
+
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.ProviderCommunicationTypeInput = ProviderCommunicationTypeInput; 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.SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType = SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum; exports.SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum = SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum; exports.SrcResourceModelsListingsModelListingBaseSortBy = SrcResourceModelsListingsModelListingBaseSortBy; exports.SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType = SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType; exports.SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy = SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy; exports.SrcResourceModelsReservationsModelReservationBaseModelSortBy = SrcResourceModelsReservationsModelReservationBaseModelSortBy; exports.StaffApiParticipantTypeEnum = StaffApiParticipantTypeEnum; exports.SuggestionStatus = SuggestionStatus; exports.TwilioConversationDataApiConversationTypeEnum = TwilioConversationDataApiConversationTypeEnum; exports.TwilioInboundSenderTypeDataApiDirectionEnum = TwilioInboundSenderTypeDataApiDirectionEnum; exports.TwilioOutboundSenderTypeDataApiDirectionEnum = TwilioOutboundSenderTypeDataApiDirectionEnum; exports.TwilioProviderMessageApiMessageTypeEnum = TwilioProviderMessageApiMessageTypeEnum; exports.UnboundApi = UnboundApi; exports.UnboundApiAxiosParamCreator = UnboundApiAxiosParamCreator; exports.UnboundApiFactory = UnboundApiFactory; exports.UnboundApiFp = UnboundApiFp; exports.UserDeviceOs = UserDeviceOs; exports.UserDevicesApi = UserDevicesApi; exports.UserDevicesApiAxiosParamCreator = UserDevicesApiAxiosParamCreator; exports.UserDevicesApiFactory = UserDevicesApiFactory; exports.UserDevicesApiFp = UserDevicesApiFp;
|
|
6348
6362
|
//# sourceMappingURL=index.js.map
|