@ember-home/unbound-ts-client 0.0.109 → 0.0.111
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 +178 -26
- package/dist/index.d.ts +178 -26
- package/dist/index.js +486 -236
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +254 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -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
|
/**
|
|
@@ -2496,13 +2478,31 @@ interface CreateApi {
|
|
|
2496
2478
|
'messageType': CreateApiMessageTypeEnum;
|
|
2497
2479
|
/**
|
|
2498
2480
|
*
|
|
2499
|
-
* @type {
|
|
2481
|
+
* @type {string}
|
|
2500
2482
|
* @memberof CreateApi
|
|
2501
2483
|
*/
|
|
2502
|
-
'
|
|
2484
|
+
'outboundFromManagedEmailId'?: string | null;
|
|
2485
|
+
/**
|
|
2486
|
+
*
|
|
2487
|
+
* @type {string}
|
|
2488
|
+
* @memberof CreateApi
|
|
2489
|
+
*/
|
|
2490
|
+
'subject': string;
|
|
2491
|
+
/**
|
|
2492
|
+
*
|
|
2493
|
+
* @type {string}
|
|
2494
|
+
* @memberof CreateApi
|
|
2495
|
+
*/
|
|
2496
|
+
'htmlBody': string | null;
|
|
2497
|
+
/**
|
|
2498
|
+
*
|
|
2499
|
+
* @type {string}
|
|
2500
|
+
* @memberof CreateApi
|
|
2501
|
+
*/
|
|
2502
|
+
'plainBody': string | null;
|
|
2503
2503
|
}
|
|
2504
2504
|
declare const CreateApiMessageTypeEnum: {
|
|
2505
|
-
readonly
|
|
2505
|
+
readonly Email: "EMAIL";
|
|
2506
2506
|
};
|
|
2507
2507
|
type CreateApiMessageTypeEnum = typeof CreateApiMessageTypeEnum[keyof typeof CreateApiMessageTypeEnum];
|
|
2508
2508
|
/**
|
|
@@ -3806,7 +3806,6 @@ declare const ProviderCommunicationType: {
|
|
|
3806
3806
|
readonly Email: "EMAIL";
|
|
3807
3807
|
readonly Channel: "CHANNEL";
|
|
3808
3808
|
readonly Whatsapp: "WHATSAPP";
|
|
3809
|
-
readonly Note: "NOTE";
|
|
3810
3809
|
};
|
|
3811
3810
|
type ProviderCommunicationType = typeof ProviderCommunicationType[keyof typeof ProviderCommunicationType];
|
|
3812
3811
|
/**
|
|
@@ -6667,6 +6666,159 @@ declare class InquiriesApi extends BaseAPI {
|
|
|
6667
6666
|
*/
|
|
6668
6667
|
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIInquiry, any>>;
|
|
6669
6668
|
}
|
|
6669
|
+
/**
|
|
6670
|
+
* ListingsApi - axios parameter creator
|
|
6671
|
+
* @export
|
|
6672
|
+
*/
|
|
6673
|
+
declare const ListingsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6674
|
+
/**
|
|
6675
|
+
*
|
|
6676
|
+
* @summary Create Listing Content
|
|
6677
|
+
* @param {string} listingId
|
|
6678
|
+
* @param {Create} create
|
|
6679
|
+
* @param {*} [options] Override http request option.
|
|
6680
|
+
* @throws {RequiredError}
|
|
6681
|
+
*/
|
|
6682
|
+
contentCreateOnListing: (listingId: string, create: Create, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6683
|
+
/**
|
|
6684
|
+
*
|
|
6685
|
+
* @summary Listings Get
|
|
6686
|
+
* @param {string} listingId
|
|
6687
|
+
* @param {*} [options] Override http request option.
|
|
6688
|
+
* @throws {RequiredError}
|
|
6689
|
+
*/
|
|
6690
|
+
listingsGet: (listingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6691
|
+
/**
|
|
6692
|
+
*
|
|
6693
|
+
* @summary Listings List
|
|
6694
|
+
* @param {string | null} [searchString]
|
|
6695
|
+
* @param {string | null} [contactId]
|
|
6696
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6697
|
+
* @param {number} [limit]
|
|
6698
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6699
|
+
* @param {SortBy} [sortBy] Sort key
|
|
6700
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
6701
|
+
* @param {*} [options] Override http request option.
|
|
6702
|
+
* @throws {RequiredError}
|
|
6703
|
+
*/
|
|
6704
|
+
listingsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6705
|
+
};
|
|
6706
|
+
/**
|
|
6707
|
+
* ListingsApi - functional programming interface
|
|
6708
|
+
* @export
|
|
6709
|
+
*/
|
|
6710
|
+
declare const ListingsApiFp: (configuration?: Configuration) => {
|
|
6711
|
+
/**
|
|
6712
|
+
*
|
|
6713
|
+
* @summary Create Listing Content
|
|
6714
|
+
* @param {string} listingId
|
|
6715
|
+
* @param {Create} create
|
|
6716
|
+
* @param {*} [options] Override http request option.
|
|
6717
|
+
* @throws {RequiredError}
|
|
6718
|
+
*/
|
|
6719
|
+
contentCreateOnListing(listingId: string, create: Create, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContentItem>>;
|
|
6720
|
+
/**
|
|
6721
|
+
*
|
|
6722
|
+
* @summary Listings Get
|
|
6723
|
+
* @param {string} listingId
|
|
6724
|
+
* @param {*} [options] Override http request option.
|
|
6725
|
+
* @throws {RequiredError}
|
|
6726
|
+
*/
|
|
6727
|
+
listingsGet(listingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Listing>>;
|
|
6728
|
+
/**
|
|
6729
|
+
*
|
|
6730
|
+
* @summary Listings List
|
|
6731
|
+
* @param {string | null} [searchString]
|
|
6732
|
+
* @param {string | null} [contactId]
|
|
6733
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6734
|
+
* @param {number} [limit]
|
|
6735
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6736
|
+
* @param {SortBy} [sortBy] Sort key
|
|
6737
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
6738
|
+
* @param {*} [options] Override http request option.
|
|
6739
|
+
* @throws {RequiredError}
|
|
6740
|
+
*/
|
|
6741
|
+
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseListing>>;
|
|
6742
|
+
};
|
|
6743
|
+
/**
|
|
6744
|
+
* ListingsApi - factory interface
|
|
6745
|
+
* @export
|
|
6746
|
+
*/
|
|
6747
|
+
declare const ListingsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6748
|
+
/**
|
|
6749
|
+
*
|
|
6750
|
+
* @summary Create Listing Content
|
|
6751
|
+
* @param {string} listingId
|
|
6752
|
+
* @param {Create} create
|
|
6753
|
+
* @param {*} [options] Override http request option.
|
|
6754
|
+
* @throws {RequiredError}
|
|
6755
|
+
*/
|
|
6756
|
+
contentCreateOnListing(listingId: string, create: Create, options?: RawAxiosRequestConfig): AxiosPromise<ContentItem>;
|
|
6757
|
+
/**
|
|
6758
|
+
*
|
|
6759
|
+
* @summary Listings Get
|
|
6760
|
+
* @param {string} listingId
|
|
6761
|
+
* @param {*} [options] Override http request option.
|
|
6762
|
+
* @throws {RequiredError}
|
|
6763
|
+
*/
|
|
6764
|
+
listingsGet(listingId: string, options?: RawAxiosRequestConfig): AxiosPromise<Listing>;
|
|
6765
|
+
/**
|
|
6766
|
+
*
|
|
6767
|
+
* @summary Listings List
|
|
6768
|
+
* @param {string | null} [searchString]
|
|
6769
|
+
* @param {string | null} [contactId]
|
|
6770
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6771
|
+
* @param {number} [limit]
|
|
6772
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6773
|
+
* @param {SortBy} [sortBy] Sort key
|
|
6774
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
6775
|
+
* @param {*} [options] Override http request option.
|
|
6776
|
+
* @throws {RequiredError}
|
|
6777
|
+
*/
|
|
6778
|
+
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseListing>;
|
|
6779
|
+
};
|
|
6780
|
+
/**
|
|
6781
|
+
* ListingsApi - object-oriented interface
|
|
6782
|
+
* @export
|
|
6783
|
+
* @class ListingsApi
|
|
6784
|
+
* @extends {BaseAPI}
|
|
6785
|
+
*/
|
|
6786
|
+
declare class ListingsApi extends BaseAPI {
|
|
6787
|
+
/**
|
|
6788
|
+
*
|
|
6789
|
+
* @summary Create Listing Content
|
|
6790
|
+
* @param {string} listingId
|
|
6791
|
+
* @param {Create} create
|
|
6792
|
+
* @param {*} [options] Override http request option.
|
|
6793
|
+
* @throws {RequiredError}
|
|
6794
|
+
* @memberof ListingsApi
|
|
6795
|
+
*/
|
|
6796
|
+
contentCreateOnListing(listingId: string, create: Create, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContentItem, any>>;
|
|
6797
|
+
/**
|
|
6798
|
+
*
|
|
6799
|
+
* @summary Listings Get
|
|
6800
|
+
* @param {string} listingId
|
|
6801
|
+
* @param {*} [options] Override http request option.
|
|
6802
|
+
* @throws {RequiredError}
|
|
6803
|
+
* @memberof ListingsApi
|
|
6804
|
+
*/
|
|
6805
|
+
listingsGet(listingId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Listing, any>>;
|
|
6806
|
+
/**
|
|
6807
|
+
*
|
|
6808
|
+
* @summary Listings List
|
|
6809
|
+
* @param {string | null} [searchString]
|
|
6810
|
+
* @param {string | null} [contactId]
|
|
6811
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6812
|
+
* @param {number} [limit]
|
|
6813
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6814
|
+
* @param {SortBy} [sortBy] Sort key
|
|
6815
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
6816
|
+
* @param {*} [options] Override http request option.
|
|
6817
|
+
* @throws {RequiredError}
|
|
6818
|
+
* @memberof ListingsApi
|
|
6819
|
+
*/
|
|
6820
|
+
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseListing, any>>;
|
|
6821
|
+
}
|
|
6670
6822
|
/**
|
|
6671
6823
|
* ManagedPhoneNumbersApi - axios parameter creator
|
|
6672
6824
|
* @export
|
|
@@ -10973,4 +11125,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
10973
11125
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
10974
11126
|
}
|
|
10975
11127
|
|
|
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 };
|
|
11128
|
+
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, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, 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
|
@@ -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
|
/**
|
|
@@ -2496,13 +2478,31 @@ interface CreateApi {
|
|
|
2496
2478
|
'messageType': CreateApiMessageTypeEnum;
|
|
2497
2479
|
/**
|
|
2498
2480
|
*
|
|
2499
|
-
* @type {
|
|
2481
|
+
* @type {string}
|
|
2500
2482
|
* @memberof CreateApi
|
|
2501
2483
|
*/
|
|
2502
|
-
'
|
|
2484
|
+
'outboundFromManagedEmailId'?: string | null;
|
|
2485
|
+
/**
|
|
2486
|
+
*
|
|
2487
|
+
* @type {string}
|
|
2488
|
+
* @memberof CreateApi
|
|
2489
|
+
*/
|
|
2490
|
+
'subject': string;
|
|
2491
|
+
/**
|
|
2492
|
+
*
|
|
2493
|
+
* @type {string}
|
|
2494
|
+
* @memberof CreateApi
|
|
2495
|
+
*/
|
|
2496
|
+
'htmlBody': string | null;
|
|
2497
|
+
/**
|
|
2498
|
+
*
|
|
2499
|
+
* @type {string}
|
|
2500
|
+
* @memberof CreateApi
|
|
2501
|
+
*/
|
|
2502
|
+
'plainBody': string | null;
|
|
2503
2503
|
}
|
|
2504
2504
|
declare const CreateApiMessageTypeEnum: {
|
|
2505
|
-
readonly
|
|
2505
|
+
readonly Email: "EMAIL";
|
|
2506
2506
|
};
|
|
2507
2507
|
type CreateApiMessageTypeEnum = typeof CreateApiMessageTypeEnum[keyof typeof CreateApiMessageTypeEnum];
|
|
2508
2508
|
/**
|
|
@@ -3806,7 +3806,6 @@ declare const ProviderCommunicationType: {
|
|
|
3806
3806
|
readonly Email: "EMAIL";
|
|
3807
3807
|
readonly Channel: "CHANNEL";
|
|
3808
3808
|
readonly Whatsapp: "WHATSAPP";
|
|
3809
|
-
readonly Note: "NOTE";
|
|
3810
3809
|
};
|
|
3811
3810
|
type ProviderCommunicationType = typeof ProviderCommunicationType[keyof typeof ProviderCommunicationType];
|
|
3812
3811
|
/**
|
|
@@ -6667,6 +6666,159 @@ declare class InquiriesApi extends BaseAPI {
|
|
|
6667
6666
|
*/
|
|
6668
6667
|
inquiriesList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseAPIInquiry, any>>;
|
|
6669
6668
|
}
|
|
6669
|
+
/**
|
|
6670
|
+
* ListingsApi - axios parameter creator
|
|
6671
|
+
* @export
|
|
6672
|
+
*/
|
|
6673
|
+
declare const ListingsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6674
|
+
/**
|
|
6675
|
+
*
|
|
6676
|
+
* @summary Create Listing Content
|
|
6677
|
+
* @param {string} listingId
|
|
6678
|
+
* @param {Create} create
|
|
6679
|
+
* @param {*} [options] Override http request option.
|
|
6680
|
+
* @throws {RequiredError}
|
|
6681
|
+
*/
|
|
6682
|
+
contentCreateOnListing: (listingId: string, create: Create, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6683
|
+
/**
|
|
6684
|
+
*
|
|
6685
|
+
* @summary Listings Get
|
|
6686
|
+
* @param {string} listingId
|
|
6687
|
+
* @param {*} [options] Override http request option.
|
|
6688
|
+
* @throws {RequiredError}
|
|
6689
|
+
*/
|
|
6690
|
+
listingsGet: (listingId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6691
|
+
/**
|
|
6692
|
+
*
|
|
6693
|
+
* @summary Listings List
|
|
6694
|
+
* @param {string | null} [searchString]
|
|
6695
|
+
* @param {string | null} [contactId]
|
|
6696
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6697
|
+
* @param {number} [limit]
|
|
6698
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6699
|
+
* @param {SortBy} [sortBy] Sort key
|
|
6700
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
6701
|
+
* @param {*} [options] Override http request option.
|
|
6702
|
+
* @throws {RequiredError}
|
|
6703
|
+
*/
|
|
6704
|
+
listingsList: (searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6705
|
+
};
|
|
6706
|
+
/**
|
|
6707
|
+
* ListingsApi - functional programming interface
|
|
6708
|
+
* @export
|
|
6709
|
+
*/
|
|
6710
|
+
declare const ListingsApiFp: (configuration?: Configuration) => {
|
|
6711
|
+
/**
|
|
6712
|
+
*
|
|
6713
|
+
* @summary Create Listing Content
|
|
6714
|
+
* @param {string} listingId
|
|
6715
|
+
* @param {Create} create
|
|
6716
|
+
* @param {*} [options] Override http request option.
|
|
6717
|
+
* @throws {RequiredError}
|
|
6718
|
+
*/
|
|
6719
|
+
contentCreateOnListing(listingId: string, create: Create, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContentItem>>;
|
|
6720
|
+
/**
|
|
6721
|
+
*
|
|
6722
|
+
* @summary Listings Get
|
|
6723
|
+
* @param {string} listingId
|
|
6724
|
+
* @param {*} [options] Override http request option.
|
|
6725
|
+
* @throws {RequiredError}
|
|
6726
|
+
*/
|
|
6727
|
+
listingsGet(listingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Listing>>;
|
|
6728
|
+
/**
|
|
6729
|
+
*
|
|
6730
|
+
* @summary Listings List
|
|
6731
|
+
* @param {string | null} [searchString]
|
|
6732
|
+
* @param {string | null} [contactId]
|
|
6733
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6734
|
+
* @param {number} [limit]
|
|
6735
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6736
|
+
* @param {SortBy} [sortBy] Sort key
|
|
6737
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
6738
|
+
* @param {*} [options] Override http request option.
|
|
6739
|
+
* @throws {RequiredError}
|
|
6740
|
+
*/
|
|
6741
|
+
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseListing>>;
|
|
6742
|
+
};
|
|
6743
|
+
/**
|
|
6744
|
+
* ListingsApi - factory interface
|
|
6745
|
+
* @export
|
|
6746
|
+
*/
|
|
6747
|
+
declare const ListingsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6748
|
+
/**
|
|
6749
|
+
*
|
|
6750
|
+
* @summary Create Listing Content
|
|
6751
|
+
* @param {string} listingId
|
|
6752
|
+
* @param {Create} create
|
|
6753
|
+
* @param {*} [options] Override http request option.
|
|
6754
|
+
* @throws {RequiredError}
|
|
6755
|
+
*/
|
|
6756
|
+
contentCreateOnListing(listingId: string, create: Create, options?: RawAxiosRequestConfig): AxiosPromise<ContentItem>;
|
|
6757
|
+
/**
|
|
6758
|
+
*
|
|
6759
|
+
* @summary Listings Get
|
|
6760
|
+
* @param {string} listingId
|
|
6761
|
+
* @param {*} [options] Override http request option.
|
|
6762
|
+
* @throws {RequiredError}
|
|
6763
|
+
*/
|
|
6764
|
+
listingsGet(listingId: string, options?: RawAxiosRequestConfig): AxiosPromise<Listing>;
|
|
6765
|
+
/**
|
|
6766
|
+
*
|
|
6767
|
+
* @summary Listings List
|
|
6768
|
+
* @param {string | null} [searchString]
|
|
6769
|
+
* @param {string | null} [contactId]
|
|
6770
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6771
|
+
* @param {number} [limit]
|
|
6772
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6773
|
+
* @param {SortBy} [sortBy] Sort key
|
|
6774
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
6775
|
+
* @param {*} [options] Override http request option.
|
|
6776
|
+
* @throws {RequiredError}
|
|
6777
|
+
*/
|
|
6778
|
+
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseListing>;
|
|
6779
|
+
};
|
|
6780
|
+
/**
|
|
6781
|
+
* ListingsApi - object-oriented interface
|
|
6782
|
+
* @export
|
|
6783
|
+
* @class ListingsApi
|
|
6784
|
+
* @extends {BaseAPI}
|
|
6785
|
+
*/
|
|
6786
|
+
declare class ListingsApi extends BaseAPI {
|
|
6787
|
+
/**
|
|
6788
|
+
*
|
|
6789
|
+
* @summary Create Listing Content
|
|
6790
|
+
* @param {string} listingId
|
|
6791
|
+
* @param {Create} create
|
|
6792
|
+
* @param {*} [options] Override http request option.
|
|
6793
|
+
* @throws {RequiredError}
|
|
6794
|
+
* @memberof ListingsApi
|
|
6795
|
+
*/
|
|
6796
|
+
contentCreateOnListing(listingId: string, create: Create, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContentItem, any>>;
|
|
6797
|
+
/**
|
|
6798
|
+
*
|
|
6799
|
+
* @summary Listings Get
|
|
6800
|
+
* @param {string} listingId
|
|
6801
|
+
* @param {*} [options] Override http request option.
|
|
6802
|
+
* @throws {RequiredError}
|
|
6803
|
+
* @memberof ListingsApi
|
|
6804
|
+
*/
|
|
6805
|
+
listingsGet(listingId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Listing, any>>;
|
|
6806
|
+
/**
|
|
6807
|
+
*
|
|
6808
|
+
* @summary Listings List
|
|
6809
|
+
* @param {string | null} [searchString]
|
|
6810
|
+
* @param {string | null} [contactId]
|
|
6811
|
+
* @param {string | null} [cursor] Cursor for keyset paging
|
|
6812
|
+
* @param {number} [limit]
|
|
6813
|
+
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
6814
|
+
* @param {SortBy} [sortBy] Sort key
|
|
6815
|
+
* @param {SortOrder} [sortOrder] Sort order asc/desc
|
|
6816
|
+
* @param {*} [options] Override http request option.
|
|
6817
|
+
* @throws {RequiredError}
|
|
6818
|
+
* @memberof ListingsApi
|
|
6819
|
+
*/
|
|
6820
|
+
listingsList(searchString?: string | null, contactId?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseListing, any>>;
|
|
6821
|
+
}
|
|
6670
6822
|
/**
|
|
6671
6823
|
* ManagedPhoneNumbersApi - axios parameter creator
|
|
6672
6824
|
* @export
|
|
@@ -10973,4 +11125,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
10973
11125
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
10974
11126
|
}
|
|
10975
11127
|
|
|
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 };
|
|
11128
|
+
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, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, 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 };
|