@ember-home/unbound-ts-client 0.0.108 → 0.0.110
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 +29 -35
- package/dist/index.d.ts +29 -35
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- 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
|
*
|
|
@@ -1069,31 +1069,13 @@ interface APICreate {
|
|
|
1069
1069
|
'messageType': APICreateMessageTypeEnum;
|
|
1070
1070
|
/**
|
|
1071
1071
|
*
|
|
1072
|
-
* @type {string}
|
|
1073
|
-
* @memberof APICreate
|
|
1074
|
-
*/
|
|
1075
|
-
'outboundFromManagedEmailId'?: string | null;
|
|
1076
|
-
/**
|
|
1077
|
-
*
|
|
1078
|
-
* @type {string}
|
|
1079
|
-
* @memberof APICreate
|
|
1080
|
-
*/
|
|
1081
|
-
'subject': string;
|
|
1082
|
-
/**
|
|
1083
|
-
*
|
|
1084
|
-
* @type {string}
|
|
1085
|
-
* @memberof APICreate
|
|
1086
|
-
*/
|
|
1087
|
-
'htmlBody': string | null;
|
|
1088
|
-
/**
|
|
1089
|
-
*
|
|
1090
|
-
* @type {string}
|
|
1072
|
+
* @type {Array<string>}
|
|
1091
1073
|
* @memberof APICreate
|
|
1092
1074
|
*/
|
|
1093
|
-
'
|
|
1075
|
+
'mediaUrls'?: Array<string> | null;
|
|
1094
1076
|
}
|
|
1095
1077
|
declare const APICreateMessageTypeEnum: {
|
|
1096
|
-
readonly
|
|
1078
|
+
readonly Text: "TEXT";
|
|
1097
1079
|
};
|
|
1098
1080
|
type APICreateMessageTypeEnum = typeof APICreateMessageTypeEnum[keyof typeof APICreateMessageTypeEnum];
|
|
1099
1081
|
/**
|
|
@@ -2348,6 +2330,11 @@ interface ContactTypeDataApi {
|
|
|
2348
2330
|
*/
|
|
2349
2331
|
'lead'?: LeadDataApi | null;
|
|
2350
2332
|
}
|
|
2333
|
+
/**
|
|
2334
|
+
* @type Contactid
|
|
2335
|
+
* @export
|
|
2336
|
+
*/
|
|
2337
|
+
type Contactid = string;
|
|
2351
2338
|
/**
|
|
2352
2339
|
*
|
|
2353
2340
|
* @export
|
|
@@ -2488,30 +2475,36 @@ interface CreateApi {
|
|
|
2488
2475
|
* @type {string}
|
|
2489
2476
|
* @memberof CreateApi
|
|
2490
2477
|
*/
|
|
2491
|
-
'
|
|
2478
|
+
'messageType': CreateApiMessageTypeEnum;
|
|
2479
|
+
/**
|
|
2480
|
+
*
|
|
2481
|
+
* @type {string}
|
|
2482
|
+
* @memberof CreateApi
|
|
2483
|
+
*/
|
|
2484
|
+
'outboundFromManagedEmailId'?: string | null;
|
|
2492
2485
|
/**
|
|
2493
2486
|
*
|
|
2494
|
-
* @type {
|
|
2487
|
+
* @type {string}
|
|
2495
2488
|
* @memberof CreateApi
|
|
2496
2489
|
*/
|
|
2497
|
-
'
|
|
2490
|
+
'subject': string;
|
|
2498
2491
|
/**
|
|
2499
2492
|
*
|
|
2500
2493
|
* @type {string}
|
|
2501
2494
|
* @memberof CreateApi
|
|
2502
2495
|
*/
|
|
2503
|
-
'
|
|
2496
|
+
'htmlBody': string | null;
|
|
2504
2497
|
/**
|
|
2505
2498
|
*
|
|
2506
2499
|
* @type {string}
|
|
2507
2500
|
* @memberof CreateApi
|
|
2508
2501
|
*/
|
|
2509
|
-
'
|
|
2502
|
+
'plainBody': string | null;
|
|
2510
2503
|
}
|
|
2511
|
-
declare const
|
|
2512
|
-
readonly
|
|
2504
|
+
declare const CreateApiMessageTypeEnum: {
|
|
2505
|
+
readonly Email: "EMAIL";
|
|
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
|
|
@@ -4470,6 +4463,7 @@ interface ToItemApi {
|
|
|
4470
4463
|
* @interface ToPhoneApi
|
|
4471
4464
|
*/
|
|
4472
4465
|
interface ToPhoneApi {
|
|
4466
|
+
[key: string]: any;
|
|
4473
4467
|
/**
|
|
4474
4468
|
*
|
|
4475
4469
|
* @type {string}
|
|
@@ -4478,10 +4472,10 @@ interface ToPhoneApi {
|
|
|
4478
4472
|
'phone': string;
|
|
4479
4473
|
/**
|
|
4480
4474
|
*
|
|
4481
|
-
* @type {
|
|
4475
|
+
* @type {Contactid}
|
|
4482
4476
|
* @memberof ToPhoneApi
|
|
4483
4477
|
*/
|
|
4484
|
-
'contactId'?:
|
|
4478
|
+
'contactId'?: Contactid | null;
|
|
4485
4479
|
}
|
|
4486
4480
|
/**
|
|
4487
4481
|
* External URL content type.
|
|
@@ -10978,4 +10972,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
10978
10972
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
10979
10973
|
}
|
|
10980
10974
|
|
|
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,
|
|
10975
|
+
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
|
*
|
|
@@ -1069,31 +1069,13 @@ interface APICreate {
|
|
|
1069
1069
|
'messageType': APICreateMessageTypeEnum;
|
|
1070
1070
|
/**
|
|
1071
1071
|
*
|
|
1072
|
-
* @type {string}
|
|
1073
|
-
* @memberof APICreate
|
|
1074
|
-
*/
|
|
1075
|
-
'outboundFromManagedEmailId'?: string | null;
|
|
1076
|
-
/**
|
|
1077
|
-
*
|
|
1078
|
-
* @type {string}
|
|
1079
|
-
* @memberof APICreate
|
|
1080
|
-
*/
|
|
1081
|
-
'subject': string;
|
|
1082
|
-
/**
|
|
1083
|
-
*
|
|
1084
|
-
* @type {string}
|
|
1085
|
-
* @memberof APICreate
|
|
1086
|
-
*/
|
|
1087
|
-
'htmlBody': string | null;
|
|
1088
|
-
/**
|
|
1089
|
-
*
|
|
1090
|
-
* @type {string}
|
|
1072
|
+
* @type {Array<string>}
|
|
1091
1073
|
* @memberof APICreate
|
|
1092
1074
|
*/
|
|
1093
|
-
'
|
|
1075
|
+
'mediaUrls'?: Array<string> | null;
|
|
1094
1076
|
}
|
|
1095
1077
|
declare const APICreateMessageTypeEnum: {
|
|
1096
|
-
readonly
|
|
1078
|
+
readonly Text: "TEXT";
|
|
1097
1079
|
};
|
|
1098
1080
|
type APICreateMessageTypeEnum = typeof APICreateMessageTypeEnum[keyof typeof APICreateMessageTypeEnum];
|
|
1099
1081
|
/**
|
|
@@ -2348,6 +2330,11 @@ interface ContactTypeDataApi {
|
|
|
2348
2330
|
*/
|
|
2349
2331
|
'lead'?: LeadDataApi | null;
|
|
2350
2332
|
}
|
|
2333
|
+
/**
|
|
2334
|
+
* @type Contactid
|
|
2335
|
+
* @export
|
|
2336
|
+
*/
|
|
2337
|
+
type Contactid = string;
|
|
2351
2338
|
/**
|
|
2352
2339
|
*
|
|
2353
2340
|
* @export
|
|
@@ -2488,30 +2475,36 @@ interface CreateApi {
|
|
|
2488
2475
|
* @type {string}
|
|
2489
2476
|
* @memberof CreateApi
|
|
2490
2477
|
*/
|
|
2491
|
-
'
|
|
2478
|
+
'messageType': CreateApiMessageTypeEnum;
|
|
2479
|
+
/**
|
|
2480
|
+
*
|
|
2481
|
+
* @type {string}
|
|
2482
|
+
* @memberof CreateApi
|
|
2483
|
+
*/
|
|
2484
|
+
'outboundFromManagedEmailId'?: string | null;
|
|
2492
2485
|
/**
|
|
2493
2486
|
*
|
|
2494
|
-
* @type {
|
|
2487
|
+
* @type {string}
|
|
2495
2488
|
* @memberof CreateApi
|
|
2496
2489
|
*/
|
|
2497
|
-
'
|
|
2490
|
+
'subject': string;
|
|
2498
2491
|
/**
|
|
2499
2492
|
*
|
|
2500
2493
|
* @type {string}
|
|
2501
2494
|
* @memberof CreateApi
|
|
2502
2495
|
*/
|
|
2503
|
-
'
|
|
2496
|
+
'htmlBody': string | null;
|
|
2504
2497
|
/**
|
|
2505
2498
|
*
|
|
2506
2499
|
* @type {string}
|
|
2507
2500
|
* @memberof CreateApi
|
|
2508
2501
|
*/
|
|
2509
|
-
'
|
|
2502
|
+
'plainBody': string | null;
|
|
2510
2503
|
}
|
|
2511
|
-
declare const
|
|
2512
|
-
readonly
|
|
2504
|
+
declare const CreateApiMessageTypeEnum: {
|
|
2505
|
+
readonly Email: "EMAIL";
|
|
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
|
|
@@ -4470,6 +4463,7 @@ interface ToItemApi {
|
|
|
4470
4463
|
* @interface ToPhoneApi
|
|
4471
4464
|
*/
|
|
4472
4465
|
interface ToPhoneApi {
|
|
4466
|
+
[key: string]: any;
|
|
4473
4467
|
/**
|
|
4474
4468
|
*
|
|
4475
4469
|
* @type {string}
|
|
@@ -4478,10 +4472,10 @@ interface ToPhoneApi {
|
|
|
4478
4472
|
'phone': string;
|
|
4479
4473
|
/**
|
|
4480
4474
|
*
|
|
4481
|
-
* @type {
|
|
4475
|
+
* @type {Contactid}
|
|
4482
4476
|
* @memberof ToPhoneApi
|
|
4483
4477
|
*/
|
|
4484
|
-
'contactId'?:
|
|
4478
|
+
'contactId'?: Contactid | null;
|
|
4485
4479
|
}
|
|
4486
4480
|
/**
|
|
4487
4481
|
* External URL content type.
|
|
@@ -10978,4 +10972,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
10978
10972
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
10979
10973
|
}
|
|
10980
10974
|
|
|
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,
|
|
10975
|
+
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
|
@@ -76,7 +76,7 @@ var createRequestFunction = function(axiosArgs, globalAxios3, BASE_PATH2, config
|
|
|
76
76
|
|
|
77
77
|
// src/api.ts
|
|
78
78
|
var APICreateMessageTypeEnum = {
|
|
79
|
-
|
|
79
|
+
Text: "TEXT"
|
|
80
80
|
};
|
|
81
81
|
var AuthProviderTypes = {
|
|
82
82
|
Firebase: "firebase",
|
|
@@ -89,8 +89,8 @@ var ConversationStatus = {
|
|
|
89
89
|
Open: "OPEN",
|
|
90
90
|
Closed: "CLOSED"
|
|
91
91
|
};
|
|
92
|
-
var
|
|
93
|
-
|
|
92
|
+
var CreateApiMessageTypeEnum = {
|
|
93
|
+
Email: "EMAIL"
|
|
94
94
|
};
|
|
95
95
|
var EmailConversationDataApiConversationTypeEnum = {
|
|
96
96
|
Email: "EMAIL"
|
|
@@ -11264,5 +11264,5 @@ var Configuration = class {
|
|
|
11264
11264
|
|
|
11265
11265
|
|
|
11266
11266
|
|
|
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.
|
|
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.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
11268
|
//# sourceMappingURL=index.js.map
|