@ember-home/unbound-ts-client 0.0.108 → 0.0.109
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 +18 -23
- package/dist/index.d.ts +18 -23
- package/dist/index.js +4 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -3
- 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 {APICreate}
|
|
1035
1035
|
* @memberof APIConversationCreate
|
|
1036
1036
|
*/
|
|
1037
|
-
'conversationTypeData':
|
|
1037
|
+
'conversationTypeData': APICreate;
|
|
1038
1038
|
}
|
|
1039
1039
|
/**
|
|
1040
1040
|
*
|
|
@@ -2348,6 +2348,11 @@ interface ContactTypeDataApi {
|
|
|
2348
2348
|
*/
|
|
2349
2349
|
'lead'?: LeadDataApi | null;
|
|
2350
2350
|
}
|
|
2351
|
+
/**
|
|
2352
|
+
* @type Contactid
|
|
2353
|
+
* @export
|
|
2354
|
+
*/
|
|
2355
|
+
type Contactid = string;
|
|
2351
2356
|
/**
|
|
2352
2357
|
*
|
|
2353
2358
|
* @export
|
|
@@ -2488,30 +2493,18 @@ interface CreateApi {
|
|
|
2488
2493
|
* @type {string}
|
|
2489
2494
|
* @memberof CreateApi
|
|
2490
2495
|
*/
|
|
2491
|
-
'
|
|
2492
|
-
/**
|
|
2493
|
-
*
|
|
2494
|
-
* @type {Array<ToPhoneApi>}
|
|
2495
|
-
* @memberof CreateApi
|
|
2496
|
-
*/
|
|
2497
|
-
'toPhones': Array<ToPhoneApi>;
|
|
2498
|
-
/**
|
|
2499
|
-
*
|
|
2500
|
-
* @type {string}
|
|
2501
|
-
* @memberof CreateApi
|
|
2502
|
-
*/
|
|
2503
|
-
'managedPhoneId'?: string | null;
|
|
2496
|
+
'messageType': CreateApiMessageTypeEnum;
|
|
2504
2497
|
/**
|
|
2505
2498
|
*
|
|
2506
|
-
* @type {string}
|
|
2499
|
+
* @type {Array<string>}
|
|
2507
2500
|
* @memberof CreateApi
|
|
2508
2501
|
*/
|
|
2509
|
-
'
|
|
2502
|
+
'mediaUrls'?: Array<string> | null;
|
|
2510
2503
|
}
|
|
2511
|
-
declare const
|
|
2504
|
+
declare const CreateApiMessageTypeEnum: {
|
|
2512
2505
|
readonly Text: "TEXT";
|
|
2513
2506
|
};
|
|
2514
|
-
type
|
|
2507
|
+
type CreateApiMessageTypeEnum = typeof CreateApiMessageTypeEnum[keyof typeof CreateApiMessageTypeEnum];
|
|
2515
2508
|
/**
|
|
2516
2509
|
*
|
|
2517
2510
|
* @export
|
|
@@ -3324,7 +3317,7 @@ type Messagetypedata = EmailProviderMessageApi | RentalProviderMessageApi | SMSM
|
|
|
3324
3317
|
* @type Messagetypedata1
|
|
3325
3318
|
* @export
|
|
3326
3319
|
*/
|
|
3327
|
-
type Messagetypedata1 = APICreate;
|
|
3320
|
+
type Messagetypedata1 = APICreate | CreateApi;
|
|
3328
3321
|
/**
|
|
3329
3322
|
*
|
|
3330
3323
|
* @export
|
|
@@ -3813,6 +3806,7 @@ declare const ProviderCommunicationType: {
|
|
|
3813
3806
|
readonly Email: "EMAIL";
|
|
3814
3807
|
readonly Channel: "CHANNEL";
|
|
3815
3808
|
readonly Whatsapp: "WHATSAPP";
|
|
3809
|
+
readonly Note: "NOTE";
|
|
3816
3810
|
};
|
|
3817
3811
|
type ProviderCommunicationType = typeof ProviderCommunicationType[keyof typeof ProviderCommunicationType];
|
|
3818
3812
|
/**
|
|
@@ -4470,6 +4464,7 @@ interface ToItemApi {
|
|
|
4470
4464
|
* @interface ToPhoneApi
|
|
4471
4465
|
*/
|
|
4472
4466
|
interface ToPhoneApi {
|
|
4467
|
+
[key: string]: any;
|
|
4473
4468
|
/**
|
|
4474
4469
|
*
|
|
4475
4470
|
* @type {string}
|
|
@@ -4478,10 +4473,10 @@ interface ToPhoneApi {
|
|
|
4478
4473
|
'phone': string;
|
|
4479
4474
|
/**
|
|
4480
4475
|
*
|
|
4481
|
-
* @type {
|
|
4476
|
+
* @type {Contactid}
|
|
4482
4477
|
* @memberof ToPhoneApi
|
|
4483
4478
|
*/
|
|
4484
|
-
'contactId'?:
|
|
4479
|
+
'contactId'?: Contactid | null;
|
|
4485
4480
|
}
|
|
4486
4481
|
/**
|
|
4487
4482
|
* External URL content type.
|
|
@@ -10978,4 +10973,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
10978
10973
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
10979
10974
|
}
|
|
10980
10975
|
|
|
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,
|
|
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, type Contactid, 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, CreateApiMessageTypeEnum, 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 {APICreate}
|
|
1035
1035
|
* @memberof APIConversationCreate
|
|
1036
1036
|
*/
|
|
1037
|
-
'conversationTypeData':
|
|
1037
|
+
'conversationTypeData': APICreate;
|
|
1038
1038
|
}
|
|
1039
1039
|
/**
|
|
1040
1040
|
*
|
|
@@ -2348,6 +2348,11 @@ interface ContactTypeDataApi {
|
|
|
2348
2348
|
*/
|
|
2349
2349
|
'lead'?: LeadDataApi | null;
|
|
2350
2350
|
}
|
|
2351
|
+
/**
|
|
2352
|
+
* @type Contactid
|
|
2353
|
+
* @export
|
|
2354
|
+
*/
|
|
2355
|
+
type Contactid = string;
|
|
2351
2356
|
/**
|
|
2352
2357
|
*
|
|
2353
2358
|
* @export
|
|
@@ -2488,30 +2493,18 @@ interface CreateApi {
|
|
|
2488
2493
|
* @type {string}
|
|
2489
2494
|
* @memberof CreateApi
|
|
2490
2495
|
*/
|
|
2491
|
-
'
|
|
2492
|
-
/**
|
|
2493
|
-
*
|
|
2494
|
-
* @type {Array<ToPhoneApi>}
|
|
2495
|
-
* @memberof CreateApi
|
|
2496
|
-
*/
|
|
2497
|
-
'toPhones': Array<ToPhoneApi>;
|
|
2498
|
-
/**
|
|
2499
|
-
*
|
|
2500
|
-
* @type {string}
|
|
2501
|
-
* @memberof CreateApi
|
|
2502
|
-
*/
|
|
2503
|
-
'managedPhoneId'?: string | null;
|
|
2496
|
+
'messageType': CreateApiMessageTypeEnum;
|
|
2504
2497
|
/**
|
|
2505
2498
|
*
|
|
2506
|
-
* @type {string}
|
|
2499
|
+
* @type {Array<string>}
|
|
2507
2500
|
* @memberof CreateApi
|
|
2508
2501
|
*/
|
|
2509
|
-
'
|
|
2502
|
+
'mediaUrls'?: Array<string> | null;
|
|
2510
2503
|
}
|
|
2511
|
-
declare const
|
|
2504
|
+
declare const CreateApiMessageTypeEnum: {
|
|
2512
2505
|
readonly Text: "TEXT";
|
|
2513
2506
|
};
|
|
2514
|
-
type
|
|
2507
|
+
type CreateApiMessageTypeEnum = typeof CreateApiMessageTypeEnum[keyof typeof CreateApiMessageTypeEnum];
|
|
2515
2508
|
/**
|
|
2516
2509
|
*
|
|
2517
2510
|
* @export
|
|
@@ -3324,7 +3317,7 @@ type Messagetypedata = EmailProviderMessageApi | RentalProviderMessageApi | SMSM
|
|
|
3324
3317
|
* @type Messagetypedata1
|
|
3325
3318
|
* @export
|
|
3326
3319
|
*/
|
|
3327
|
-
type Messagetypedata1 = APICreate;
|
|
3320
|
+
type Messagetypedata1 = APICreate | CreateApi;
|
|
3328
3321
|
/**
|
|
3329
3322
|
*
|
|
3330
3323
|
* @export
|
|
@@ -3813,6 +3806,7 @@ declare const ProviderCommunicationType: {
|
|
|
3813
3806
|
readonly Email: "EMAIL";
|
|
3814
3807
|
readonly Channel: "CHANNEL";
|
|
3815
3808
|
readonly Whatsapp: "WHATSAPP";
|
|
3809
|
+
readonly Note: "NOTE";
|
|
3816
3810
|
};
|
|
3817
3811
|
type ProviderCommunicationType = typeof ProviderCommunicationType[keyof typeof ProviderCommunicationType];
|
|
3818
3812
|
/**
|
|
@@ -4470,6 +4464,7 @@ interface ToItemApi {
|
|
|
4470
4464
|
* @interface ToPhoneApi
|
|
4471
4465
|
*/
|
|
4472
4466
|
interface ToPhoneApi {
|
|
4467
|
+
[key: string]: any;
|
|
4473
4468
|
/**
|
|
4474
4469
|
*
|
|
4475
4470
|
* @type {string}
|
|
@@ -4478,10 +4473,10 @@ interface ToPhoneApi {
|
|
|
4478
4473
|
'phone': string;
|
|
4479
4474
|
/**
|
|
4480
4475
|
*
|
|
4481
|
-
* @type {
|
|
4476
|
+
* @type {Contactid}
|
|
4482
4477
|
* @memberof ToPhoneApi
|
|
4483
4478
|
*/
|
|
4484
|
-
'contactId'?:
|
|
4479
|
+
'contactId'?: Contactid | null;
|
|
4485
4480
|
}
|
|
4486
4481
|
/**
|
|
4487
4482
|
* External URL content type.
|
|
@@ -10978,4 +10973,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
10978
10973
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
10979
10974
|
}
|
|
10980
10975
|
|
|
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,
|
|
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, type Contactid, 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, CreateApiMessageTypeEnum, 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 CreateApiMessageTypeEnum = {
|
|
93
93
|
Text: "TEXT"
|
|
94
94
|
};
|
|
95
95
|
var EmailConversationDataApiConversationTypeEnum = {
|
|
@@ -185,7 +185,8 @@ var ProviderCommunicationType = {
|
|
|
185
185
|
Sms: "SMS",
|
|
186
186
|
Email: "EMAIL",
|
|
187
187
|
Channel: "CHANNEL",
|
|
188
|
-
Whatsapp: "WHATSAPP"
|
|
188
|
+
Whatsapp: "WHATSAPP",
|
|
189
|
+
Note: "NOTE"
|
|
189
190
|
};
|
|
190
191
|
var ProviderCommunicationTypeInput = {
|
|
191
192
|
Sms: "SMS",
|
|
@@ -11264,5 +11265,5 @@ var Configuration = class {
|
|
|
11264
11265
|
|
|
11265
11266
|
|
|
11266
11267
|
|
|
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.
|
|
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.CreateApiMessageTypeEnum = CreateApiMessageTypeEnum; 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;
|
|
11268
11269
|
//# sourceMappingURL=index.js.map
|