@ember-home/unbound-ts-client 0.0.107 → 0.0.108
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 +24 -19
- package/dist/index.d.ts +24 -19
- package/dist/index.js +4 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1031,10 +1031,10 @@ interface APIConversation {
|
|
|
1031
1031
|
interface APIConversationCreate {
|
|
1032
1032
|
/**
|
|
1033
1033
|
*
|
|
1034
|
-
* @type {
|
|
1034
|
+
* @type {CreateApi}
|
|
1035
1035
|
* @memberof APIConversationCreate
|
|
1036
1036
|
*/
|
|
1037
|
-
'conversationTypeData':
|
|
1037
|
+
'conversationTypeData': CreateApi;
|
|
1038
1038
|
}
|
|
1039
1039
|
/**
|
|
1040
1040
|
*
|
|
@@ -2348,11 +2348,6 @@ interface ContactTypeDataApi {
|
|
|
2348
2348
|
*/
|
|
2349
2349
|
'lead'?: LeadDataApi | null;
|
|
2350
2350
|
}
|
|
2351
|
-
/**
|
|
2352
|
-
* @type Contactid
|
|
2353
|
-
* @export
|
|
2354
|
-
*/
|
|
2355
|
-
type Contactid = string;
|
|
2356
2351
|
/**
|
|
2357
2352
|
*
|
|
2358
2353
|
* @export
|
|
@@ -2493,18 +2488,30 @@ interface CreateApi {
|
|
|
2493
2488
|
* @type {string}
|
|
2494
2489
|
* @memberof CreateApi
|
|
2495
2490
|
*/
|
|
2496
|
-
'
|
|
2491
|
+
'conversationType': CreateApiConversationTypeEnum;
|
|
2497
2492
|
/**
|
|
2498
2493
|
*
|
|
2499
|
-
* @type {Array<
|
|
2494
|
+
* @type {Array<ToPhoneApi>}
|
|
2500
2495
|
* @memberof CreateApi
|
|
2501
2496
|
*/
|
|
2502
|
-
'
|
|
2497
|
+
'toPhones': Array<ToPhoneApi>;
|
|
2498
|
+
/**
|
|
2499
|
+
*
|
|
2500
|
+
* @type {string}
|
|
2501
|
+
* @memberof CreateApi
|
|
2502
|
+
*/
|
|
2503
|
+
'managedPhoneId'?: string | null;
|
|
2504
|
+
/**
|
|
2505
|
+
*
|
|
2506
|
+
* @type {string}
|
|
2507
|
+
* @memberof CreateApi
|
|
2508
|
+
*/
|
|
2509
|
+
'providerGroupId'?: string | null;
|
|
2503
2510
|
}
|
|
2504
|
-
declare const
|
|
2511
|
+
declare const CreateApiConversationTypeEnum: {
|
|
2505
2512
|
readonly Text: "TEXT";
|
|
2506
2513
|
};
|
|
2507
|
-
type
|
|
2514
|
+
type CreateApiConversationTypeEnum = typeof CreateApiConversationTypeEnum[keyof typeof CreateApiConversationTypeEnum];
|
|
2508
2515
|
/**
|
|
2509
2516
|
*
|
|
2510
2517
|
* @export
|
|
@@ -3317,7 +3324,7 @@ type Messagetypedata = EmailProviderMessageApi | RentalProviderMessageApi | SMSM
|
|
|
3317
3324
|
* @type Messagetypedata1
|
|
3318
3325
|
* @export
|
|
3319
3326
|
*/
|
|
3320
|
-
type Messagetypedata1 = APICreate
|
|
3327
|
+
type Messagetypedata1 = APICreate;
|
|
3321
3328
|
/**
|
|
3322
3329
|
*
|
|
3323
3330
|
* @export
|
|
@@ -3806,7 +3813,6 @@ declare const ProviderCommunicationType: {
|
|
|
3806
3813
|
readonly Email: "EMAIL";
|
|
3807
3814
|
readonly Channel: "CHANNEL";
|
|
3808
3815
|
readonly Whatsapp: "WHATSAPP";
|
|
3809
|
-
readonly Note: "NOTE";
|
|
3810
3816
|
};
|
|
3811
3817
|
type ProviderCommunicationType = typeof ProviderCommunicationType[keyof typeof ProviderCommunicationType];
|
|
3812
3818
|
/**
|
|
@@ -4215,7 +4221,7 @@ type Sendertypedata = SMSInboundSenderTypeDataApi | SMSOutboundSenderTypeDataApi
|
|
|
4215
4221
|
* @enum {string}
|
|
4216
4222
|
*/
|
|
4217
4223
|
declare const SortBy: {
|
|
4218
|
-
readonly
|
|
4224
|
+
readonly ArrivalAtPropertyTz: "arrival_at_property_tz";
|
|
4219
4225
|
};
|
|
4220
4226
|
type SortBy = typeof SortBy[keyof typeof SortBy];
|
|
4221
4227
|
/**
|
|
@@ -4464,7 +4470,6 @@ interface ToItemApi {
|
|
|
4464
4470
|
* @interface ToPhoneApi
|
|
4465
4471
|
*/
|
|
4466
4472
|
interface ToPhoneApi {
|
|
4467
|
-
[key: string]: any;
|
|
4468
4473
|
/**
|
|
4469
4474
|
*
|
|
4470
4475
|
* @type {string}
|
|
@@ -4473,10 +4478,10 @@ interface ToPhoneApi {
|
|
|
4473
4478
|
'phone': string;
|
|
4474
4479
|
/**
|
|
4475
4480
|
*
|
|
4476
|
-
* @type {
|
|
4481
|
+
* @type {string}
|
|
4477
4482
|
* @memberof ToPhoneApi
|
|
4478
4483
|
*/
|
|
4479
|
-
'contactId'?:
|
|
4484
|
+
'contactId'?: string | null;
|
|
4480
4485
|
}
|
|
4481
4486
|
/**
|
|
4482
4487
|
* External URL content type.
|
|
@@ -10973,4 +10978,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
10973
10978
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
10974
10979
|
}
|
|
10975
10980
|
|
|
10976
|
-
export { type APIAccessToken, type APIAccessTokenCreate, type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIAiResponse, type APIAiResponseCreate, type APIContact, type APIContactCreate, type APIContactUpdate, type APIContactsListings, type APIContentItem, type APIContentItemUpdate, type APIConversation, type APIConversationCreate, type APIConversationUpdate, type APICreate, APICreateMessageTypeEnum, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPermission, type APIPermissionCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIRole, type APIRoleCreate, type APITag, type APITagCreate, type APITagUpdate, type APIUserDevice, type APIUserDeviceCreate, type APIValidationError, type APIValidationErrorLocInner, AccessTokensApi, AccessTokensApiAxiosParamCreator, AccessTokensApiFactory, AccessTokensApiFp, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressApi, AiResponsesApi, AiResponsesApiAxiosParamCreator, AiResponsesApiFactory, AiResponsesApiFp, type AttributeSourceApi, type AttributionApi, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, AuthProviderTypes, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, type ContactTypeDataApi,
|
|
10981
|
+
export { type APIAccessToken, type APIAccessTokenCreate, type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIAiResponse, type APIAiResponseCreate, type APIContact, type APIContactCreate, type APIContactUpdate, type APIContactsListings, type APIContentItem, type APIContentItemUpdate, type APIConversation, type APIConversationCreate, type APIConversationUpdate, type APICreate, APICreateMessageTypeEnum, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPermission, type APIPermissionCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIRole, type APIRoleCreate, type APITag, type APITagCreate, type APITagUpdate, type APIUserDevice, type APIUserDeviceCreate, type APIValidationError, type APIValidationErrorLocInner, AccessTokensApi, AccessTokensApiAxiosParamCreator, AccessTokensApiFactory, AccessTokensApiFp, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressApi, AiResponsesApi, AiResponsesApiAxiosParamCreator, AiResponsesApiFactory, AiResponsesApiFp, type AttributeSourceApi, type AttributionApi, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, AuthProviderTypes, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, type ContactTypeDataApi, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ContentApi, ContentApiAxiosParamCreator, ContentApiFactory, ContentApiFp, type ContentItem, ContentItemsApi, ContentItemsApiAxiosParamCreator, ContentItemsApiFactory, ContentItemsApiFp, type Contenttypedata, type Contenttypedata1, type Contenttypedata2, ConversationStatus, type ConversationSuggestionApi, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type Create, type CreateApi, CreateApiConversationTypeEnum, type CreateContactListing, type CreateContactListingRelationTypeData, type DeleteContactListing, type DeleteContactListingRelationTypeData, type DownloadURLRequest, type DownloadURLResponse, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type FileContent, type FileContentApi, FileContentApiContentTypeEnum, FileContentContentTypeEnum, FilesApi, FilesApiAxiosParamCreator, FilesApiFactory, FilesApiFp, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InquiryTypeCreate, InquiryTypeCreateRelationTypeEnum, type InquiryTypeDelete, InquiryTypeDeleteRelationTypeEnum, type InquiryTypeUpdate, InquiryTypeUpdateRelationTypeEnum, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIContentItem, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIPermission, type ListResponseAPIProvider, type ListResponseAPIRole, type ListResponseAPITag, type ListResponsePermission, type ListResponseTag, type Listing, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type MessageAttachmentApi, MessageDirection, MessageStatus, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type OwnerTypeCreate, OwnerTypeCreateRelationTypeEnum, type OwnerTypeDelete, OwnerTypeDeleteRelationTypeEnum, type OwnerTypeUpdate, OwnerTypeUpdateRelationTypeEnum, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, type PaginatedResponseListing, PaginationDirection, type Participantname, type Participanttypedata, type Permission, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PlainTextContent, type PlainTextContentApi, PlainTextContentApiContentTypeEnum, PlainTextContentContentTypeEnum, PropertyTypes, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, ProviderCommunicationTypeInput, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, RentalProviderTypes, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, RolesApi, RolesApiAxiosParamCreator, RolesApiFactory, RolesApiFp, type SMSConversationDataApi, SMSConversationDataApiConversationTypeEnum, type SMSInboundSenderTypeDataApi, SMSInboundSenderTypeDataApiDirectionEnum, type SMSLegApi, type SMSMessageApi, SMSMessageApiMessageTypeEnum, SMSMessageStatus, type SMSOutboundSenderTypeDataApi, SMSOutboundSenderTypeDataApiDirectionEnum, type Sendertypedata, SortBy, SortOrder, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type SuggestionApi, SuggestionRejectionReasonType, SuggestionStatus, type Tag, TagsApi, TagsApiAxiosParamCreator, TagsApiFactory, TagsApiFp, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItemApi, type ToPhoneApi, type URLContent, type URLContentApi, URLContentApiContentTypeEnum, URLContentContentTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UpdateContactListingRelationTypeData, type UploadURLRequest, type UploadURLResponse, type UserApi, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp, type WithSuggestionApi };
|
package/dist/index.d.ts
CHANGED
|
@@ -1031,10 +1031,10 @@ interface APIConversation {
|
|
|
1031
1031
|
interface APIConversationCreate {
|
|
1032
1032
|
/**
|
|
1033
1033
|
*
|
|
1034
|
-
* @type {
|
|
1034
|
+
* @type {CreateApi}
|
|
1035
1035
|
* @memberof APIConversationCreate
|
|
1036
1036
|
*/
|
|
1037
|
-
'conversationTypeData':
|
|
1037
|
+
'conversationTypeData': CreateApi;
|
|
1038
1038
|
}
|
|
1039
1039
|
/**
|
|
1040
1040
|
*
|
|
@@ -2348,11 +2348,6 @@ interface ContactTypeDataApi {
|
|
|
2348
2348
|
*/
|
|
2349
2349
|
'lead'?: LeadDataApi | null;
|
|
2350
2350
|
}
|
|
2351
|
-
/**
|
|
2352
|
-
* @type Contactid
|
|
2353
|
-
* @export
|
|
2354
|
-
*/
|
|
2355
|
-
type Contactid = string;
|
|
2356
2351
|
/**
|
|
2357
2352
|
*
|
|
2358
2353
|
* @export
|
|
@@ -2493,18 +2488,30 @@ interface CreateApi {
|
|
|
2493
2488
|
* @type {string}
|
|
2494
2489
|
* @memberof CreateApi
|
|
2495
2490
|
*/
|
|
2496
|
-
'
|
|
2491
|
+
'conversationType': CreateApiConversationTypeEnum;
|
|
2497
2492
|
/**
|
|
2498
2493
|
*
|
|
2499
|
-
* @type {Array<
|
|
2494
|
+
* @type {Array<ToPhoneApi>}
|
|
2500
2495
|
* @memberof CreateApi
|
|
2501
2496
|
*/
|
|
2502
|
-
'
|
|
2497
|
+
'toPhones': Array<ToPhoneApi>;
|
|
2498
|
+
/**
|
|
2499
|
+
*
|
|
2500
|
+
* @type {string}
|
|
2501
|
+
* @memberof CreateApi
|
|
2502
|
+
*/
|
|
2503
|
+
'managedPhoneId'?: string | null;
|
|
2504
|
+
/**
|
|
2505
|
+
*
|
|
2506
|
+
* @type {string}
|
|
2507
|
+
* @memberof CreateApi
|
|
2508
|
+
*/
|
|
2509
|
+
'providerGroupId'?: string | null;
|
|
2503
2510
|
}
|
|
2504
|
-
declare const
|
|
2511
|
+
declare const CreateApiConversationTypeEnum: {
|
|
2505
2512
|
readonly Text: "TEXT";
|
|
2506
2513
|
};
|
|
2507
|
-
type
|
|
2514
|
+
type CreateApiConversationTypeEnum = typeof CreateApiConversationTypeEnum[keyof typeof CreateApiConversationTypeEnum];
|
|
2508
2515
|
/**
|
|
2509
2516
|
*
|
|
2510
2517
|
* @export
|
|
@@ -3317,7 +3324,7 @@ type Messagetypedata = EmailProviderMessageApi | RentalProviderMessageApi | SMSM
|
|
|
3317
3324
|
* @type Messagetypedata1
|
|
3318
3325
|
* @export
|
|
3319
3326
|
*/
|
|
3320
|
-
type Messagetypedata1 = APICreate
|
|
3327
|
+
type Messagetypedata1 = APICreate;
|
|
3321
3328
|
/**
|
|
3322
3329
|
*
|
|
3323
3330
|
* @export
|
|
@@ -3806,7 +3813,6 @@ declare const ProviderCommunicationType: {
|
|
|
3806
3813
|
readonly Email: "EMAIL";
|
|
3807
3814
|
readonly Channel: "CHANNEL";
|
|
3808
3815
|
readonly Whatsapp: "WHATSAPP";
|
|
3809
|
-
readonly Note: "NOTE";
|
|
3810
3816
|
};
|
|
3811
3817
|
type ProviderCommunicationType = typeof ProviderCommunicationType[keyof typeof ProviderCommunicationType];
|
|
3812
3818
|
/**
|
|
@@ -4215,7 +4221,7 @@ type Sendertypedata = SMSInboundSenderTypeDataApi | SMSOutboundSenderTypeDataApi
|
|
|
4215
4221
|
* @enum {string}
|
|
4216
4222
|
*/
|
|
4217
4223
|
declare const SortBy: {
|
|
4218
|
-
readonly
|
|
4224
|
+
readonly ArrivalAtPropertyTz: "arrival_at_property_tz";
|
|
4219
4225
|
};
|
|
4220
4226
|
type SortBy = typeof SortBy[keyof typeof SortBy];
|
|
4221
4227
|
/**
|
|
@@ -4464,7 +4470,6 @@ interface ToItemApi {
|
|
|
4464
4470
|
* @interface ToPhoneApi
|
|
4465
4471
|
*/
|
|
4466
4472
|
interface ToPhoneApi {
|
|
4467
|
-
[key: string]: any;
|
|
4468
4473
|
/**
|
|
4469
4474
|
*
|
|
4470
4475
|
* @type {string}
|
|
@@ -4473,10 +4478,10 @@ interface ToPhoneApi {
|
|
|
4473
4478
|
'phone': string;
|
|
4474
4479
|
/**
|
|
4475
4480
|
*
|
|
4476
|
-
* @type {
|
|
4481
|
+
* @type {string}
|
|
4477
4482
|
* @memberof ToPhoneApi
|
|
4478
4483
|
*/
|
|
4479
|
-
'contactId'?:
|
|
4484
|
+
'contactId'?: string | null;
|
|
4480
4485
|
}
|
|
4481
4486
|
/**
|
|
4482
4487
|
* External URL content type.
|
|
@@ -10973,4 +10978,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
10973
10978
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
10974
10979
|
}
|
|
10975
10980
|
|
|
10976
|
-
export { type APIAccessToken, type APIAccessTokenCreate, type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIAiResponse, type APIAiResponseCreate, type APIContact, type APIContactCreate, type APIContactUpdate, type APIContactsListings, type APIContentItem, type APIContentItemUpdate, type APIConversation, type APIConversationCreate, type APIConversationUpdate, type APICreate, APICreateMessageTypeEnum, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPermission, type APIPermissionCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIRole, type APIRoleCreate, type APITag, type APITagCreate, type APITagUpdate, type APIUserDevice, type APIUserDeviceCreate, type APIValidationError, type APIValidationErrorLocInner, AccessTokensApi, AccessTokensApiAxiosParamCreator, AccessTokensApiFactory, AccessTokensApiFp, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressApi, AiResponsesApi, AiResponsesApiAxiosParamCreator, AiResponsesApiFactory, AiResponsesApiFp, type AttributeSourceApi, type AttributionApi, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, AuthProviderTypes, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, type ContactTypeDataApi,
|
|
10981
|
+
export { type APIAccessToken, type APIAccessTokenCreate, type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIAiResponse, type APIAiResponseCreate, type APIContact, type APIContactCreate, type APIContactUpdate, type APIContactsListings, type APIContentItem, type APIContentItemUpdate, type APIConversation, type APIConversationCreate, type APIConversationUpdate, type APICreate, APICreateMessageTypeEnum, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPermission, type APIPermissionCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIRole, type APIRoleCreate, type APITag, type APITagCreate, type APITagUpdate, type APIUserDevice, type APIUserDeviceCreate, type APIValidationError, type APIValidationErrorLocInner, AccessTokensApi, AccessTokensApiAxiosParamCreator, AccessTokensApiFactory, AccessTokensApiFp, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressApi, AiResponsesApi, AiResponsesApiAxiosParamCreator, AiResponsesApiFactory, AiResponsesApiFp, type AttributeSourceApi, type AttributionApi, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, AuthProviderTypes, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, type ContactTypeDataApi, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ContentApi, ContentApiAxiosParamCreator, ContentApiFactory, ContentApiFp, type ContentItem, ContentItemsApi, ContentItemsApiAxiosParamCreator, ContentItemsApiFactory, ContentItemsApiFp, type Contenttypedata, type Contenttypedata1, type Contenttypedata2, ConversationStatus, type ConversationSuggestionApi, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type Create, type CreateApi, CreateApiConversationTypeEnum, type CreateContactListing, type CreateContactListingRelationTypeData, type DeleteContactListing, type DeleteContactListingRelationTypeData, type DownloadURLRequest, type DownloadURLResponse, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type FileContent, type FileContentApi, FileContentApiContentTypeEnum, FileContentContentTypeEnum, FilesApi, FilesApiAxiosParamCreator, FilesApiFactory, FilesApiFp, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InquiryTypeCreate, InquiryTypeCreateRelationTypeEnum, type InquiryTypeDelete, InquiryTypeDeleteRelationTypeEnum, type InquiryTypeUpdate, InquiryTypeUpdateRelationTypeEnum, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIContentItem, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIPermission, type ListResponseAPIProvider, type ListResponseAPIRole, type ListResponseAPITag, type ListResponsePermission, type ListResponseTag, type Listing, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type MessageAttachmentApi, MessageDirection, MessageStatus, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type OwnerTypeCreate, OwnerTypeCreateRelationTypeEnum, type OwnerTypeDelete, OwnerTypeDeleteRelationTypeEnum, type OwnerTypeUpdate, OwnerTypeUpdateRelationTypeEnum, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, type PaginatedResponseListing, PaginationDirection, type Participantname, type Participanttypedata, type Permission, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PlainTextContent, type PlainTextContentApi, PlainTextContentApiContentTypeEnum, PlainTextContentContentTypeEnum, PropertyTypes, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, ProviderCommunicationTypeInput, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, RentalProviderTypes, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, RolesApi, RolesApiAxiosParamCreator, RolesApiFactory, RolesApiFp, type SMSConversationDataApi, SMSConversationDataApiConversationTypeEnum, type SMSInboundSenderTypeDataApi, SMSInboundSenderTypeDataApiDirectionEnum, type SMSLegApi, type SMSMessageApi, SMSMessageApiMessageTypeEnum, SMSMessageStatus, type SMSOutboundSenderTypeDataApi, SMSOutboundSenderTypeDataApiDirectionEnum, type Sendertypedata, SortBy, SortOrder, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type SuggestionApi, SuggestionRejectionReasonType, SuggestionStatus, type Tag, TagsApi, TagsApiAxiosParamCreator, TagsApiFactory, TagsApiFp, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItemApi, type ToPhoneApi, type URLContent, type URLContentApi, URLContentApiContentTypeEnum, URLContentContentTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UpdateContactListingRelationTypeData, type UploadURLRequest, type UploadURLResponse, type UserApi, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp, type WithSuggestionApi };
|
package/dist/index.js
CHANGED
|
@@ -89,7 +89,7 @@ var ConversationStatus = {
|
|
|
89
89
|
Open: "OPEN",
|
|
90
90
|
Closed: "CLOSED"
|
|
91
91
|
};
|
|
92
|
-
var
|
|
92
|
+
var CreateApiConversationTypeEnum = {
|
|
93
93
|
Text: "TEXT"
|
|
94
94
|
};
|
|
95
95
|
var EmailConversationDataApiConversationTypeEnum = {
|
|
@@ -185,8 +185,7 @@ var ProviderCommunicationType = {
|
|
|
185
185
|
Sms: "SMS",
|
|
186
186
|
Email: "EMAIL",
|
|
187
187
|
Channel: "CHANNEL",
|
|
188
|
-
Whatsapp: "WHATSAPP"
|
|
189
|
-
Note: "NOTE"
|
|
188
|
+
Whatsapp: "WHATSAPP"
|
|
190
189
|
};
|
|
191
190
|
var ProviderCommunicationTypeInput = {
|
|
192
191
|
Sms: "SMS",
|
|
@@ -259,7 +258,7 @@ var SMSOutboundSenderTypeDataApiDirectionEnum = {
|
|
|
259
258
|
Outbound: "OUTBOUND"
|
|
260
259
|
};
|
|
261
260
|
var SortBy = {
|
|
262
|
-
|
|
261
|
+
ArrivalAtPropertyTz: "arrival_at_property_tz"
|
|
263
262
|
};
|
|
264
263
|
var SortOrder = {
|
|
265
264
|
Asc: "asc",
|
|
@@ -11265,5 +11264,5 @@ var Configuration = class {
|
|
|
11265
11264
|
|
|
11266
11265
|
|
|
11267
11266
|
|
|
11268
|
-
exports.APICreateMessageTypeEnum = APICreateMessageTypeEnum; exports.AccessTokensApi = AccessTokensApi; exports.AccessTokensApiAxiosParamCreator = AccessTokensApiAxiosParamCreator; exports.AccessTokensApiFactory = AccessTokensApiFactory; exports.AccessTokensApiFp = AccessTokensApiFp; exports.AccountsApi = AccountsApi; exports.AccountsApiAxiosParamCreator = AccountsApiAxiosParamCreator; exports.AccountsApiFactory = AccountsApiFactory; exports.AccountsApiFp = AccountsApiFp; exports.AiResponsesApi = AiResponsesApi; exports.AiResponsesApiAxiosParamCreator = AiResponsesApiAxiosParamCreator; exports.AiResponsesApiFactory = AiResponsesApiFactory; exports.AiResponsesApiFp = AiResponsesApiFp; exports.AuthApi = AuthApi; exports.AuthApiAxiosParamCreator = AuthApiAxiosParamCreator; exports.AuthApiFactory = AuthApiFactory; exports.AuthApiFp = AuthApiFp; exports.AuthProviderTypes = AuthProviderTypes; exports.BotApiParticipantTypeEnum = BotApiParticipantTypeEnum; exports.Configuration = Configuration; exports.ContactsApi = ContactsApi; exports.ContactsApiAxiosParamCreator = ContactsApiAxiosParamCreator; exports.ContactsApiFactory = ContactsApiFactory; exports.ContactsApiFp = ContactsApiFp; exports.ContentApi = ContentApi; exports.ContentApiAxiosParamCreator = ContentApiAxiosParamCreator; exports.ContentApiFactory = ContentApiFactory; exports.ContentApiFp = ContentApiFp; exports.ContentItemsApi = ContentItemsApi; exports.ContentItemsApiAxiosParamCreator = ContentItemsApiAxiosParamCreator; exports.ContentItemsApiFactory = ContentItemsApiFactory; exports.ContentItemsApiFp = ContentItemsApiFp; exports.ConversationStatus = ConversationStatus; exports.ConversationsApi = ConversationsApi; exports.ConversationsApiAxiosParamCreator = ConversationsApiAxiosParamCreator; exports.ConversationsApiFactory = ConversationsApiFactory; exports.ConversationsApiFp = ConversationsApiFp; exports.
|
|
11267
|
+
exports.APICreateMessageTypeEnum = APICreateMessageTypeEnum; exports.AccessTokensApi = AccessTokensApi; exports.AccessTokensApiAxiosParamCreator = AccessTokensApiAxiosParamCreator; exports.AccessTokensApiFactory = AccessTokensApiFactory; exports.AccessTokensApiFp = AccessTokensApiFp; exports.AccountsApi = AccountsApi; exports.AccountsApiAxiosParamCreator = AccountsApiAxiosParamCreator; exports.AccountsApiFactory = AccountsApiFactory; exports.AccountsApiFp = AccountsApiFp; exports.AiResponsesApi = AiResponsesApi; exports.AiResponsesApiAxiosParamCreator = AiResponsesApiAxiosParamCreator; exports.AiResponsesApiFactory = AiResponsesApiFactory; exports.AiResponsesApiFp = AiResponsesApiFp; exports.AuthApi = AuthApi; exports.AuthApiAxiosParamCreator = AuthApiAxiosParamCreator; exports.AuthApiFactory = AuthApiFactory; exports.AuthApiFp = AuthApiFp; exports.AuthProviderTypes = AuthProviderTypes; exports.BotApiParticipantTypeEnum = BotApiParticipantTypeEnum; exports.Configuration = Configuration; exports.ContactsApi = ContactsApi; exports.ContactsApiAxiosParamCreator = ContactsApiAxiosParamCreator; exports.ContactsApiFactory = ContactsApiFactory; exports.ContactsApiFp = ContactsApiFp; exports.ContentApi = ContentApi; exports.ContentApiAxiosParamCreator = ContentApiAxiosParamCreator; exports.ContentApiFactory = ContentApiFactory; exports.ContentApiFp = ContentApiFp; exports.ContentItemsApi = ContentItemsApi; exports.ContentItemsApiAxiosParamCreator = ContentItemsApiAxiosParamCreator; exports.ContentItemsApiFactory = ContentItemsApiFactory; exports.ContentItemsApiFp = ContentItemsApiFp; exports.ConversationStatus = ConversationStatus; exports.ConversationsApi = ConversationsApi; exports.ConversationsApiAxiosParamCreator = ConversationsApiAxiosParamCreator; exports.ConversationsApiFactory = ConversationsApiFactory; exports.ConversationsApiFp = ConversationsApiFp; exports.CreateApiConversationTypeEnum = CreateApiConversationTypeEnum; exports.EmailConversationDataApiConversationTypeEnum = EmailConversationDataApiConversationTypeEnum; exports.EmailInboxApiInboxTypeEnum = EmailInboxApiInboxTypeEnum; exports.EmailProviderMessageApiMessageTypeEnum = EmailProviderMessageApiMessageTypeEnum; exports.ExternalStaffApiStaffTypeEnum = ExternalStaffApiStaffTypeEnum; exports.FileContentApiContentTypeEnum = FileContentApiContentTypeEnum; exports.FileContentContentTypeEnum = FileContentContentTypeEnum; exports.FilesApi = FilesApi; exports.FilesApiAxiosParamCreator = FilesApiAxiosParamCreator; exports.FilesApiFactory = FilesApiFactory; exports.FilesApiFp = FilesApiFp; 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.InquiryTypeCreateRelationTypeEnum = InquiryTypeCreateRelationTypeEnum; exports.InquiryTypeDeleteRelationTypeEnum = InquiryTypeDeleteRelationTypeEnum; exports.InquiryTypeUpdateRelationTypeEnum = InquiryTypeUpdateRelationTypeEnum; exports.InternalStaffApiStaffTypeEnum = InternalStaffApiStaffTypeEnum; exports.ManagedPhoneNumbersApi = ManagedPhoneNumbersApi; exports.ManagedPhoneNumbersApiAxiosParamCreator = ManagedPhoneNumbersApiAxiosParamCreator; exports.ManagedPhoneNumbersApiFactory = ManagedPhoneNumbersApiFactory; exports.ManagedPhoneNumbersApiFp = ManagedPhoneNumbersApiFp; exports.MessageDirection = MessageDirection; exports.MessageStatus = MessageStatus; exports.OwnerTypeCreateRelationTypeEnum = OwnerTypeCreateRelationTypeEnum; exports.OwnerTypeDeleteRelationTypeEnum = OwnerTypeDeleteRelationTypeEnum; exports.OwnerTypeUpdateRelationTypeEnum = OwnerTypeUpdateRelationTypeEnum; exports.PaginationDirection = PaginationDirection; exports.PermissionsApi = PermissionsApi; exports.PermissionsApiAxiosParamCreator = PermissionsApiAxiosParamCreator; exports.PermissionsApiFactory = PermissionsApiFactory; exports.PermissionsApiFp = PermissionsApiFp; exports.PhoneInboxApiInboxTypeEnum = PhoneInboxApiInboxTypeEnum; exports.PlainTextContentApiContentTypeEnum = PlainTextContentApiContentTypeEnum; exports.PlainTextContentContentTypeEnum = PlainTextContentContentTypeEnum; exports.PropertyTypes = PropertyTypes; exports.ProviderAccountInboxApiInboxTypeEnum = ProviderAccountInboxApiInboxTypeEnum; exports.ProviderCommunicationType = ProviderCommunicationType; exports.ProviderCommunicationTypeInput = ProviderCommunicationTypeInput; exports.ProviderConversationDataApiConversationTypeEnum = ProviderConversationDataApiConversationTypeEnum; exports.ProviderStaffApiStaffTypeEnum = ProviderStaffApiStaffTypeEnum; exports.ProvidersApi = ProvidersApi; exports.ProvidersApiAxiosParamCreator = ProvidersApiAxiosParamCreator; exports.ProvidersApiFactory = ProvidersApiFactory; exports.ProvidersApiFp = ProvidersApiFp; 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.RolesApi = RolesApi; exports.RolesApiAxiosParamCreator = RolesApiAxiosParamCreator; exports.RolesApiFactory = RolesApiFactory; exports.RolesApiFp = RolesApiFp; exports.SMSConversationDataApiConversationTypeEnum = SMSConversationDataApiConversationTypeEnum; exports.SMSInboundSenderTypeDataApiDirectionEnum = SMSInboundSenderTypeDataApiDirectionEnum; exports.SMSMessageApiMessageTypeEnum = SMSMessageApiMessageTypeEnum; exports.SMSMessageStatus = SMSMessageStatus; exports.SMSOutboundSenderTypeDataApiDirectionEnum = SMSOutboundSenderTypeDataApiDirectionEnum; exports.SortBy = SortBy; exports.SortOrder = SortOrder; exports.StaffApiParticipantTypeEnum = StaffApiParticipantTypeEnum; exports.SuggestionRejectionReasonType = SuggestionRejectionReasonType; exports.SuggestionStatus = SuggestionStatus; exports.TagsApi = TagsApi; exports.TagsApiAxiosParamCreator = TagsApiAxiosParamCreator; exports.TagsApiFactory = TagsApiFactory; exports.TagsApiFp = TagsApiFp; exports.TelnyxApi = TelnyxApi; exports.TelnyxApiAxiosParamCreator = TelnyxApiAxiosParamCreator; exports.TelnyxApiFactory = TelnyxApiFactory; exports.TelnyxApiFp = TelnyxApiFp; exports.URLContentApiContentTypeEnum = URLContentApiContentTypeEnum; exports.URLContentContentTypeEnum = URLContentContentTypeEnum; 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;
|
|
11269
11268
|
//# sourceMappingURL=index.js.map
|