@ember-home/unbound-ts-client 0.0.48 → 0.0.50
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 +77 -10
- package/dist/index.d.ts +77 -10
- package/dist/index.js +75 -15
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +74 -14
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1728,6 +1728,41 @@ declare const EmailConversationDataApiConversationTypeEnum: {
|
|
|
1728
1728
|
readonly Email: "EMAIL";
|
|
1729
1729
|
};
|
|
1730
1730
|
type EmailConversationDataApiConversationTypeEnum = typeof EmailConversationDataApiConversationTypeEnum[keyof typeof EmailConversationDataApiConversationTypeEnum];
|
|
1731
|
+
/**
|
|
1732
|
+
*
|
|
1733
|
+
* @export
|
|
1734
|
+
* @interface EmailProviderMessageApi
|
|
1735
|
+
*/
|
|
1736
|
+
interface EmailProviderMessageApi {
|
|
1737
|
+
/**
|
|
1738
|
+
*
|
|
1739
|
+
* @type {string}
|
|
1740
|
+
* @memberof EmailProviderMessageApi
|
|
1741
|
+
*/
|
|
1742
|
+
'messageType': EmailProviderMessageApiMessageTypeEnum;
|
|
1743
|
+
/**
|
|
1744
|
+
*
|
|
1745
|
+
* @type {string}
|
|
1746
|
+
* @memberof EmailProviderMessageApi
|
|
1747
|
+
*/
|
|
1748
|
+
'subject': string;
|
|
1749
|
+
/**
|
|
1750
|
+
*
|
|
1751
|
+
* @type {string}
|
|
1752
|
+
* @memberof EmailProviderMessageApi
|
|
1753
|
+
*/
|
|
1754
|
+
'htmlBody': string | null;
|
|
1755
|
+
/**
|
|
1756
|
+
*
|
|
1757
|
+
* @type {string}
|
|
1758
|
+
* @memberof EmailProviderMessageApi
|
|
1759
|
+
*/
|
|
1760
|
+
'plainBody': string | null;
|
|
1761
|
+
}
|
|
1762
|
+
declare const EmailProviderMessageApiMessageTypeEnum: {
|
|
1763
|
+
readonly Email: "EMAIL";
|
|
1764
|
+
};
|
|
1765
|
+
type EmailProviderMessageApiMessageTypeEnum = typeof EmailProviderMessageApiMessageTypeEnum[keyof typeof EmailProviderMessageApiMessageTypeEnum];
|
|
1731
1766
|
/**
|
|
1732
1767
|
*
|
|
1733
1768
|
* @export
|
|
@@ -1991,7 +2026,7 @@ type MessageStatus = typeof MessageStatus[keyof typeof MessageStatus];
|
|
|
1991
2026
|
* @type Messagetypedata
|
|
1992
2027
|
* @export
|
|
1993
2028
|
*/
|
|
1994
|
-
type Messagetypedata =
|
|
2029
|
+
type Messagetypedata = EmailProviderMessageApi | RentalProviderMessageApi | TwilioProviderMessageApi;
|
|
1995
2030
|
/**
|
|
1996
2031
|
* @type Messagetypedata1
|
|
1997
2032
|
* @export
|
|
@@ -3804,6 +3839,10 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3804
3839
|
* @summary Messages List
|
|
3805
3840
|
* @param {string} [conversationId]
|
|
3806
3841
|
* @param {string | null} [searchString]
|
|
3842
|
+
* @param {string | null} [sentAtAfter]
|
|
3843
|
+
* @param {string | null} [sentAtBefore]
|
|
3844
|
+
* @param {string | null} [scheduledAtAfter]
|
|
3845
|
+
* @param {string | null} [scheduledAtBefore]
|
|
3807
3846
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3808
3847
|
* @param {number} [limit]
|
|
3809
3848
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3812,7 +3851,7 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3812
3851
|
* @param {*} [options] Override http request option.
|
|
3813
3852
|
* @throws {RequiredError}
|
|
3814
3853
|
*/
|
|
3815
|
-
messagesList: (conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3854
|
+
messagesList: (conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3816
3855
|
};
|
|
3817
3856
|
/**
|
|
3818
3857
|
* ConversationsApi - functional programming interface
|
|
@@ -3862,6 +3901,10 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
3862
3901
|
* @summary Messages List
|
|
3863
3902
|
* @param {string} [conversationId]
|
|
3864
3903
|
* @param {string | null} [searchString]
|
|
3904
|
+
* @param {string | null} [sentAtAfter]
|
|
3905
|
+
* @param {string | null} [sentAtBefore]
|
|
3906
|
+
* @param {string | null} [scheduledAtAfter]
|
|
3907
|
+
* @param {string | null} [scheduledAtBefore]
|
|
3865
3908
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3866
3909
|
* @param {number} [limit]
|
|
3867
3910
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3870,7 +3913,7 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
3870
3913
|
* @param {*} [options] Override http request option.
|
|
3871
3914
|
* @throws {RequiredError}
|
|
3872
3915
|
*/
|
|
3873
|
-
messagesList(conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIMessage>>;
|
|
3916
|
+
messagesList(conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIMessage>>;
|
|
3874
3917
|
};
|
|
3875
3918
|
/**
|
|
3876
3919
|
* ConversationsApi - factory interface
|
|
@@ -3920,6 +3963,10 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
3920
3963
|
* @summary Messages List
|
|
3921
3964
|
* @param {string} [conversationId]
|
|
3922
3965
|
* @param {string | null} [searchString]
|
|
3966
|
+
* @param {string | null} [sentAtAfter]
|
|
3967
|
+
* @param {string | null} [sentAtBefore]
|
|
3968
|
+
* @param {string | null} [scheduledAtAfter]
|
|
3969
|
+
* @param {string | null} [scheduledAtBefore]
|
|
3923
3970
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3924
3971
|
* @param {number} [limit]
|
|
3925
3972
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3928,7 +3975,7 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
3928
3975
|
* @param {*} [options] Override http request option.
|
|
3929
3976
|
* @throws {RequiredError}
|
|
3930
3977
|
*/
|
|
3931
|
-
messagesList(conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIMessage>;
|
|
3978
|
+
messagesList(conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIMessage>;
|
|
3932
3979
|
};
|
|
3933
3980
|
/**
|
|
3934
3981
|
* ConversationsApi - object-oriented interface
|
|
@@ -3984,6 +4031,10 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
3984
4031
|
* @summary Messages List
|
|
3985
4032
|
* @param {string} [conversationId]
|
|
3986
4033
|
* @param {string | null} [searchString]
|
|
4034
|
+
* @param {string | null} [sentAtAfter]
|
|
4035
|
+
* @param {string | null} [sentAtBefore]
|
|
4036
|
+
* @param {string | null} [scheduledAtAfter]
|
|
4037
|
+
* @param {string | null} [scheduledAtBefore]
|
|
3987
4038
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3988
4039
|
* @param {number} [limit]
|
|
3989
4040
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3993,7 +4044,7 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
3993
4044
|
* @throws {RequiredError}
|
|
3994
4045
|
* @memberof ConversationsApi
|
|
3995
4046
|
*/
|
|
3996
|
-
messagesList(conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIMessage, any>>;
|
|
4047
|
+
messagesList(conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIMessage, any>>;
|
|
3997
4048
|
}
|
|
3998
4049
|
/**
|
|
3999
4050
|
* HostawayApi - axios parameter creator
|
|
@@ -4886,6 +4937,10 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4886
4937
|
* @summary Messages List
|
|
4887
4938
|
* @param {string} [conversationId]
|
|
4888
4939
|
* @param {string | null} [searchString]
|
|
4940
|
+
* @param {string | null} [sentAtAfter]
|
|
4941
|
+
* @param {string | null} [sentAtBefore]
|
|
4942
|
+
* @param {string | null} [scheduledAtAfter]
|
|
4943
|
+
* @param {string | null} [scheduledAtBefore]
|
|
4889
4944
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4890
4945
|
* @param {number} [limit]
|
|
4891
4946
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -4894,7 +4949,7 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4894
4949
|
* @param {*} [options] Override http request option.
|
|
4895
4950
|
* @throws {RequiredError}
|
|
4896
4951
|
*/
|
|
4897
|
-
messagesList: (conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4952
|
+
messagesList: (conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4898
4953
|
/**
|
|
4899
4954
|
* Phones Create
|
|
4900
4955
|
* @summary Phones Create
|
|
@@ -5244,6 +5299,10 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5244
5299
|
* @summary Messages List
|
|
5245
5300
|
* @param {string} [conversationId]
|
|
5246
5301
|
* @param {string | null} [searchString]
|
|
5302
|
+
* @param {string | null} [sentAtAfter]
|
|
5303
|
+
* @param {string | null} [sentAtBefore]
|
|
5304
|
+
* @param {string | null} [scheduledAtAfter]
|
|
5305
|
+
* @param {string | null} [scheduledAtBefore]
|
|
5247
5306
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5248
5307
|
* @param {number} [limit]
|
|
5249
5308
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -5252,7 +5311,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5252
5311
|
* @param {*} [options] Override http request option.
|
|
5253
5312
|
* @throws {RequiredError}
|
|
5254
5313
|
*/
|
|
5255
|
-
messagesList(conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIMessage>>;
|
|
5314
|
+
messagesList(conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIMessage>>;
|
|
5256
5315
|
/**
|
|
5257
5316
|
* Phones Create
|
|
5258
5317
|
* @summary Phones Create
|
|
@@ -5602,6 +5661,10 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5602
5661
|
* @summary Messages List
|
|
5603
5662
|
* @param {string} [conversationId]
|
|
5604
5663
|
* @param {string | null} [searchString]
|
|
5664
|
+
* @param {string | null} [sentAtAfter]
|
|
5665
|
+
* @param {string | null} [sentAtBefore]
|
|
5666
|
+
* @param {string | null} [scheduledAtAfter]
|
|
5667
|
+
* @param {string | null} [scheduledAtBefore]
|
|
5605
5668
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5606
5669
|
* @param {number} [limit]
|
|
5607
5670
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -5610,7 +5673,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5610
5673
|
* @param {*} [options] Override http request option.
|
|
5611
5674
|
* @throws {RequiredError}
|
|
5612
5675
|
*/
|
|
5613
|
-
messagesList(conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIMessage>;
|
|
5676
|
+
messagesList(conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIMessage>;
|
|
5614
5677
|
/**
|
|
5615
5678
|
* Phones Create
|
|
5616
5679
|
* @summary Phones Create
|
|
@@ -5987,6 +6050,10 @@ declare class UnboundApi extends BaseAPI {
|
|
|
5987
6050
|
* @summary Messages List
|
|
5988
6051
|
* @param {string} [conversationId]
|
|
5989
6052
|
* @param {string | null} [searchString]
|
|
6053
|
+
* @param {string | null} [sentAtAfter]
|
|
6054
|
+
* @param {string | null} [sentAtBefore]
|
|
6055
|
+
* @param {string | null} [scheduledAtAfter]
|
|
6056
|
+
* @param {string | null} [scheduledAtBefore]
|
|
5990
6057
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5991
6058
|
* @param {number} [limit]
|
|
5992
6059
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -5996,7 +6063,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
5996
6063
|
* @throws {RequiredError}
|
|
5997
6064
|
* @memberof UnboundApi
|
|
5998
6065
|
*/
|
|
5999
|
-
messagesList(conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIMessage, any>>;
|
|
6066
|
+
messagesList(conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIMessage, any>>;
|
|
6000
6067
|
/**
|
|
6001
6068
|
* Phones Create
|
|
6002
6069
|
* @summary Phones Create
|
|
@@ -6124,4 +6191,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6124
6191
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6125
6192
|
}
|
|
6126
6193
|
|
|
6127
|
-
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, type ListResponseAPISuggestedReply, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhonesApi, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, SuggestedRepliesApi, SuggestedRepliesApiAxiosParamCreator, SuggestedRepliesApiFactory, SuggestedRepliesApiFp, type ToItemApi, type TwilioConversationDataApi, TwilioConversationDataApiConversationTypeEnum, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, type TwilioProviderMessageApi, TwilioProviderMessageApiMessageTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing };
|
|
6194
|
+
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, type ListResponseAPISuggestedReply, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhonesApi, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, SuggestedRepliesApi, SuggestedRepliesApiAxiosParamCreator, SuggestedRepliesApiFactory, SuggestedRepliesApiFp, type ToItemApi, type TwilioConversationDataApi, TwilioConversationDataApiConversationTypeEnum, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, type TwilioProviderMessageApi, TwilioProviderMessageApiMessageTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing };
|
package/dist/index.d.ts
CHANGED
|
@@ -1728,6 +1728,41 @@ declare const EmailConversationDataApiConversationTypeEnum: {
|
|
|
1728
1728
|
readonly Email: "EMAIL";
|
|
1729
1729
|
};
|
|
1730
1730
|
type EmailConversationDataApiConversationTypeEnum = typeof EmailConversationDataApiConversationTypeEnum[keyof typeof EmailConversationDataApiConversationTypeEnum];
|
|
1731
|
+
/**
|
|
1732
|
+
*
|
|
1733
|
+
* @export
|
|
1734
|
+
* @interface EmailProviderMessageApi
|
|
1735
|
+
*/
|
|
1736
|
+
interface EmailProviderMessageApi {
|
|
1737
|
+
/**
|
|
1738
|
+
*
|
|
1739
|
+
* @type {string}
|
|
1740
|
+
* @memberof EmailProviderMessageApi
|
|
1741
|
+
*/
|
|
1742
|
+
'messageType': EmailProviderMessageApiMessageTypeEnum;
|
|
1743
|
+
/**
|
|
1744
|
+
*
|
|
1745
|
+
* @type {string}
|
|
1746
|
+
* @memberof EmailProviderMessageApi
|
|
1747
|
+
*/
|
|
1748
|
+
'subject': string;
|
|
1749
|
+
/**
|
|
1750
|
+
*
|
|
1751
|
+
* @type {string}
|
|
1752
|
+
* @memberof EmailProviderMessageApi
|
|
1753
|
+
*/
|
|
1754
|
+
'htmlBody': string | null;
|
|
1755
|
+
/**
|
|
1756
|
+
*
|
|
1757
|
+
* @type {string}
|
|
1758
|
+
* @memberof EmailProviderMessageApi
|
|
1759
|
+
*/
|
|
1760
|
+
'plainBody': string | null;
|
|
1761
|
+
}
|
|
1762
|
+
declare const EmailProviderMessageApiMessageTypeEnum: {
|
|
1763
|
+
readonly Email: "EMAIL";
|
|
1764
|
+
};
|
|
1765
|
+
type EmailProviderMessageApiMessageTypeEnum = typeof EmailProviderMessageApiMessageTypeEnum[keyof typeof EmailProviderMessageApiMessageTypeEnum];
|
|
1731
1766
|
/**
|
|
1732
1767
|
*
|
|
1733
1768
|
* @export
|
|
@@ -1991,7 +2026,7 @@ type MessageStatus = typeof MessageStatus[keyof typeof MessageStatus];
|
|
|
1991
2026
|
* @type Messagetypedata
|
|
1992
2027
|
* @export
|
|
1993
2028
|
*/
|
|
1994
|
-
type Messagetypedata =
|
|
2029
|
+
type Messagetypedata = EmailProviderMessageApi | RentalProviderMessageApi | TwilioProviderMessageApi;
|
|
1995
2030
|
/**
|
|
1996
2031
|
* @type Messagetypedata1
|
|
1997
2032
|
* @export
|
|
@@ -3804,6 +3839,10 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3804
3839
|
* @summary Messages List
|
|
3805
3840
|
* @param {string} [conversationId]
|
|
3806
3841
|
* @param {string | null} [searchString]
|
|
3842
|
+
* @param {string | null} [sentAtAfter]
|
|
3843
|
+
* @param {string | null} [sentAtBefore]
|
|
3844
|
+
* @param {string | null} [scheduledAtAfter]
|
|
3845
|
+
* @param {string | null} [scheduledAtBefore]
|
|
3807
3846
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3808
3847
|
* @param {number} [limit]
|
|
3809
3848
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3812,7 +3851,7 @@ declare const ConversationsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3812
3851
|
* @param {*} [options] Override http request option.
|
|
3813
3852
|
* @throws {RequiredError}
|
|
3814
3853
|
*/
|
|
3815
|
-
messagesList: (conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3854
|
+
messagesList: (conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3816
3855
|
};
|
|
3817
3856
|
/**
|
|
3818
3857
|
* ConversationsApi - functional programming interface
|
|
@@ -3862,6 +3901,10 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
3862
3901
|
* @summary Messages List
|
|
3863
3902
|
* @param {string} [conversationId]
|
|
3864
3903
|
* @param {string | null} [searchString]
|
|
3904
|
+
* @param {string | null} [sentAtAfter]
|
|
3905
|
+
* @param {string | null} [sentAtBefore]
|
|
3906
|
+
* @param {string | null} [scheduledAtAfter]
|
|
3907
|
+
* @param {string | null} [scheduledAtBefore]
|
|
3865
3908
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3866
3909
|
* @param {number} [limit]
|
|
3867
3910
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3870,7 +3913,7 @@ declare const ConversationsApiFp: (configuration?: Configuration) => {
|
|
|
3870
3913
|
* @param {*} [options] Override http request option.
|
|
3871
3914
|
* @throws {RequiredError}
|
|
3872
3915
|
*/
|
|
3873
|
-
messagesList(conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIMessage>>;
|
|
3916
|
+
messagesList(conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIMessage>>;
|
|
3874
3917
|
};
|
|
3875
3918
|
/**
|
|
3876
3919
|
* ConversationsApi - factory interface
|
|
@@ -3920,6 +3963,10 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
3920
3963
|
* @summary Messages List
|
|
3921
3964
|
* @param {string} [conversationId]
|
|
3922
3965
|
* @param {string | null} [searchString]
|
|
3966
|
+
* @param {string | null} [sentAtAfter]
|
|
3967
|
+
* @param {string | null} [sentAtBefore]
|
|
3968
|
+
* @param {string | null} [scheduledAtAfter]
|
|
3969
|
+
* @param {string | null} [scheduledAtBefore]
|
|
3923
3970
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3924
3971
|
* @param {number} [limit]
|
|
3925
3972
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3928,7 +3975,7 @@ declare const ConversationsApiFactory: (configuration?: Configuration, basePath?
|
|
|
3928
3975
|
* @param {*} [options] Override http request option.
|
|
3929
3976
|
* @throws {RequiredError}
|
|
3930
3977
|
*/
|
|
3931
|
-
messagesList(conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIMessage>;
|
|
3978
|
+
messagesList(conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIMessage>;
|
|
3932
3979
|
};
|
|
3933
3980
|
/**
|
|
3934
3981
|
* ConversationsApi - object-oriented interface
|
|
@@ -3984,6 +4031,10 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
3984
4031
|
* @summary Messages List
|
|
3985
4032
|
* @param {string} [conversationId]
|
|
3986
4033
|
* @param {string | null} [searchString]
|
|
4034
|
+
* @param {string | null} [sentAtAfter]
|
|
4035
|
+
* @param {string | null} [sentAtBefore]
|
|
4036
|
+
* @param {string | null} [scheduledAtAfter]
|
|
4037
|
+
* @param {string | null} [scheduledAtBefore]
|
|
3987
4038
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3988
4039
|
* @param {number} [limit]
|
|
3989
4040
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3993,7 +4044,7 @@ declare class ConversationsApi extends BaseAPI {
|
|
|
3993
4044
|
* @throws {RequiredError}
|
|
3994
4045
|
* @memberof ConversationsApi
|
|
3995
4046
|
*/
|
|
3996
|
-
messagesList(conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIMessage, any>>;
|
|
4047
|
+
messagesList(conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIMessage, any>>;
|
|
3997
4048
|
}
|
|
3998
4049
|
/**
|
|
3999
4050
|
* HostawayApi - axios parameter creator
|
|
@@ -4886,6 +4937,10 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4886
4937
|
* @summary Messages List
|
|
4887
4938
|
* @param {string} [conversationId]
|
|
4888
4939
|
* @param {string | null} [searchString]
|
|
4940
|
+
* @param {string | null} [sentAtAfter]
|
|
4941
|
+
* @param {string | null} [sentAtBefore]
|
|
4942
|
+
* @param {string | null} [scheduledAtAfter]
|
|
4943
|
+
* @param {string | null} [scheduledAtBefore]
|
|
4889
4944
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4890
4945
|
* @param {number} [limit]
|
|
4891
4946
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -4894,7 +4949,7 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
4894
4949
|
* @param {*} [options] Override http request option.
|
|
4895
4950
|
* @throws {RequiredError}
|
|
4896
4951
|
*/
|
|
4897
|
-
messagesList: (conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4952
|
+
messagesList: (conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4898
4953
|
/**
|
|
4899
4954
|
* Phones Create
|
|
4900
4955
|
* @summary Phones Create
|
|
@@ -5244,6 +5299,10 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5244
5299
|
* @summary Messages List
|
|
5245
5300
|
* @param {string} [conversationId]
|
|
5246
5301
|
* @param {string | null} [searchString]
|
|
5302
|
+
* @param {string | null} [sentAtAfter]
|
|
5303
|
+
* @param {string | null} [sentAtBefore]
|
|
5304
|
+
* @param {string | null} [scheduledAtAfter]
|
|
5305
|
+
* @param {string | null} [scheduledAtBefore]
|
|
5247
5306
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5248
5307
|
* @param {number} [limit]
|
|
5249
5308
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -5252,7 +5311,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5252
5311
|
* @param {*} [options] Override http request option.
|
|
5253
5312
|
* @throws {RequiredError}
|
|
5254
5313
|
*/
|
|
5255
|
-
messagesList(conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIMessage>>;
|
|
5314
|
+
messagesList(conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseAPIMessage>>;
|
|
5256
5315
|
/**
|
|
5257
5316
|
* Phones Create
|
|
5258
5317
|
* @summary Phones Create
|
|
@@ -5602,6 +5661,10 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5602
5661
|
* @summary Messages List
|
|
5603
5662
|
* @param {string} [conversationId]
|
|
5604
5663
|
* @param {string | null} [searchString]
|
|
5664
|
+
* @param {string | null} [sentAtAfter]
|
|
5665
|
+
* @param {string | null} [sentAtBefore]
|
|
5666
|
+
* @param {string | null} [scheduledAtAfter]
|
|
5667
|
+
* @param {string | null} [scheduledAtBefore]
|
|
5605
5668
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5606
5669
|
* @param {number} [limit]
|
|
5607
5670
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -5610,7 +5673,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5610
5673
|
* @param {*} [options] Override http request option.
|
|
5611
5674
|
* @throws {RequiredError}
|
|
5612
5675
|
*/
|
|
5613
|
-
messagesList(conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIMessage>;
|
|
5676
|
+
messagesList(conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseAPIMessage>;
|
|
5614
5677
|
/**
|
|
5615
5678
|
* Phones Create
|
|
5616
5679
|
* @summary Phones Create
|
|
@@ -5987,6 +6050,10 @@ declare class UnboundApi extends BaseAPI {
|
|
|
5987
6050
|
* @summary Messages List
|
|
5988
6051
|
* @param {string} [conversationId]
|
|
5989
6052
|
* @param {string | null} [searchString]
|
|
6053
|
+
* @param {string | null} [sentAtAfter]
|
|
6054
|
+
* @param {string | null} [sentAtBefore]
|
|
6055
|
+
* @param {string | null} [scheduledAtAfter]
|
|
6056
|
+
* @param {string | null} [scheduledAtBefore]
|
|
5990
6057
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
5991
6058
|
* @param {number} [limit]
|
|
5992
6059
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -5996,7 +6063,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
5996
6063
|
* @throws {RequiredError}
|
|
5997
6064
|
* @memberof UnboundApi
|
|
5998
6065
|
*/
|
|
5999
|
-
messagesList(conversationId?: string, searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIMessage, any>>;
|
|
6066
|
+
messagesList(conversationId?: string, searchString?: string | null, sentAtAfter?: string | null, sentAtBefore?: string | null, scheduledAtAfter?: string | null, scheduledAtBefore?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseAPIMessage, any>>;
|
|
6000
6067
|
/**
|
|
6001
6068
|
* Phones Create
|
|
6002
6069
|
* @summary Phones Create
|
|
@@ -6124,4 +6191,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6124
6191
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6125
6192
|
}
|
|
6126
6193
|
|
|
6127
|
-
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, type ListResponseAPISuggestedReply, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhonesApi, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, SuggestedRepliesApi, SuggestedRepliesApiAxiosParamCreator, SuggestedRepliesApiFactory, SuggestedRepliesApiFp, type ToItemApi, type TwilioConversationDataApi, TwilioConversationDataApiConversationTypeEnum, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, type TwilioProviderMessageApi, TwilioProviderMessageApiMessageTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing };
|
|
6194
|
+
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type AddressApi, type AttributeSourceApi, type AttributionApi, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ConversationStatus, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type CreateContactListing, type DeleteContactListing, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, type ListResponseAPISuggestedReply, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, MessageDirection, MessageStatus, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhonesApi, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationType, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, SuggestedRepliesApi, SuggestedRepliesApiAxiosParamCreator, SuggestedRepliesApiFactory, SuggestedRepliesApiFp, type ToItemApi, type TwilioConversationDataApi, TwilioConversationDataApiConversationTypeEnum, type TwilioInboundSenderTypeDataApi, TwilioInboundSenderTypeDataApiDirectionEnum, type TwilioOutboundSenderTypeDataApi, TwilioOutboundSenderTypeDataApiDirectionEnum, type TwilioProviderMessageApi, TwilioProviderMessageApiMessageTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing };
|