@ember-home/unbound-ts-client 0.0.67 → 0.0.68
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 +86 -7
- package/dist/index.d.ts +86 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3162,6 +3162,85 @@ interface UpdateContactListing {
|
|
|
3162
3162
|
*/
|
|
3163
3163
|
'endDate'?: string | null;
|
|
3164
3164
|
}
|
|
3165
|
+
/**
|
|
3166
|
+
*
|
|
3167
|
+
* @export
|
|
3168
|
+
* @interface User
|
|
3169
|
+
*/
|
|
3170
|
+
interface User {
|
|
3171
|
+
/**
|
|
3172
|
+
*
|
|
3173
|
+
* @type {string}
|
|
3174
|
+
* @memberof User
|
|
3175
|
+
*/
|
|
3176
|
+
'firstName'?: string | null;
|
|
3177
|
+
/**
|
|
3178
|
+
*
|
|
3179
|
+
* @type {string}
|
|
3180
|
+
* @memberof User
|
|
3181
|
+
*/
|
|
3182
|
+
'lastName'?: string | null;
|
|
3183
|
+
/**
|
|
3184
|
+
*
|
|
3185
|
+
* @type {string}
|
|
3186
|
+
* @memberof User
|
|
3187
|
+
*/
|
|
3188
|
+
'phone'?: string | null;
|
|
3189
|
+
/**
|
|
3190
|
+
*
|
|
3191
|
+
* @type {string}
|
|
3192
|
+
* @memberof User
|
|
3193
|
+
*/
|
|
3194
|
+
'streetAddress1'?: string | null;
|
|
3195
|
+
/**
|
|
3196
|
+
*
|
|
3197
|
+
* @type {string}
|
|
3198
|
+
* @memberof User
|
|
3199
|
+
*/
|
|
3200
|
+
'streetAddress2'?: string | null;
|
|
3201
|
+
/**
|
|
3202
|
+
*
|
|
3203
|
+
* @type {string}
|
|
3204
|
+
* @memberof User
|
|
3205
|
+
*/
|
|
3206
|
+
'city'?: string | null;
|
|
3207
|
+
/**
|
|
3208
|
+
*
|
|
3209
|
+
* @type {string}
|
|
3210
|
+
* @memberof User
|
|
3211
|
+
*/
|
|
3212
|
+
'province'?: string | null;
|
|
3213
|
+
/**
|
|
3214
|
+
*
|
|
3215
|
+
* @type {string}
|
|
3216
|
+
* @memberof User
|
|
3217
|
+
*/
|
|
3218
|
+
'postalCode'?: string | null;
|
|
3219
|
+
/**
|
|
3220
|
+
*
|
|
3221
|
+
* @type {string}
|
|
3222
|
+
* @memberof User
|
|
3223
|
+
*/
|
|
3224
|
+
'country'?: string | null;
|
|
3225
|
+
/**
|
|
3226
|
+
*
|
|
3227
|
+
* @type {string}
|
|
3228
|
+
* @memberof User
|
|
3229
|
+
*/
|
|
3230
|
+
'userId': string | null;
|
|
3231
|
+
/**
|
|
3232
|
+
*
|
|
3233
|
+
* @type {string}
|
|
3234
|
+
* @memberof User
|
|
3235
|
+
*/
|
|
3236
|
+
'userName': string;
|
|
3237
|
+
/**
|
|
3238
|
+
*
|
|
3239
|
+
* @type {string}
|
|
3240
|
+
* @memberof User
|
|
3241
|
+
*/
|
|
3242
|
+
'email': string;
|
|
3243
|
+
}
|
|
3165
3244
|
/**
|
|
3166
3245
|
* AccountsApi - axios parameter creator
|
|
3167
3246
|
* @export
|
|
@@ -5566,7 +5645,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5566
5645
|
* @param {*} [options] Override http request option.
|
|
5567
5646
|
* @throws {RequiredError}
|
|
5568
5647
|
*/
|
|
5569
|
-
getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5648
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
5570
5649
|
/**
|
|
5571
5650
|
* Inboxes List
|
|
5572
5651
|
* @summary Inboxes List
|
|
@@ -5953,7 +6032,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5953
6032
|
* @param {*} [options] Override http request option.
|
|
5954
6033
|
* @throws {RequiredError}
|
|
5955
6034
|
*/
|
|
5956
|
-
getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
6035
|
+
getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<User>;
|
|
5957
6036
|
/**
|
|
5958
6037
|
* Inboxes List
|
|
5959
6038
|
* @summary Inboxes List
|
|
@@ -6363,7 +6442,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6363
6442
|
* @throws {RequiredError}
|
|
6364
6443
|
* @memberof UnboundApi
|
|
6365
6444
|
*/
|
|
6366
|
-
getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
6445
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
6367
6446
|
/**
|
|
6368
6447
|
* Inboxes List
|
|
6369
6448
|
* @summary Inboxes List
|
|
@@ -6601,7 +6680,7 @@ declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
6601
6680
|
* @param {*} [options] Override http request option.
|
|
6602
6681
|
* @throws {RequiredError}
|
|
6603
6682
|
*/
|
|
6604
|
-
getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
6683
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
6605
6684
|
};
|
|
6606
6685
|
/**
|
|
6607
6686
|
* UsersApi - factory interface
|
|
@@ -6614,7 +6693,7 @@ declare const UsersApiFactory: (configuration?: Configuration, basePath?: string
|
|
|
6614
6693
|
* @param {*} [options] Override http request option.
|
|
6615
6694
|
* @throws {RequiredError}
|
|
6616
6695
|
*/
|
|
6617
|
-
getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
6696
|
+
getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<User>;
|
|
6618
6697
|
};
|
|
6619
6698
|
/**
|
|
6620
6699
|
* UsersApi - object-oriented interface
|
|
@@ -6630,7 +6709,7 @@ declare class UsersApi extends BaseAPI {
|
|
|
6630
6709
|
* @throws {RequiredError}
|
|
6631
6710
|
* @memberof UsersApi
|
|
6632
6711
|
*/
|
|
6633
|
-
getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
6712
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
6634
6713
|
}
|
|
6635
6714
|
|
|
6636
|
-
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, 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 EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInbox, 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 PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PhonesApi, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, 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, RentalProviderTypes, 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, UsersApi, UsersApiAxiosParamCreator, UsersApiFactory, UsersApiFp };
|
|
6715
|
+
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, 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 EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInbox, 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 PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PhonesApi, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, 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, RentalProviderTypes, 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, type User, UsersApi, UsersApiAxiosParamCreator, UsersApiFactory, UsersApiFp };
|
package/dist/index.d.ts
CHANGED
|
@@ -3162,6 +3162,85 @@ interface UpdateContactListing {
|
|
|
3162
3162
|
*/
|
|
3163
3163
|
'endDate'?: string | null;
|
|
3164
3164
|
}
|
|
3165
|
+
/**
|
|
3166
|
+
*
|
|
3167
|
+
* @export
|
|
3168
|
+
* @interface User
|
|
3169
|
+
*/
|
|
3170
|
+
interface User {
|
|
3171
|
+
/**
|
|
3172
|
+
*
|
|
3173
|
+
* @type {string}
|
|
3174
|
+
* @memberof User
|
|
3175
|
+
*/
|
|
3176
|
+
'firstName'?: string | null;
|
|
3177
|
+
/**
|
|
3178
|
+
*
|
|
3179
|
+
* @type {string}
|
|
3180
|
+
* @memberof User
|
|
3181
|
+
*/
|
|
3182
|
+
'lastName'?: string | null;
|
|
3183
|
+
/**
|
|
3184
|
+
*
|
|
3185
|
+
* @type {string}
|
|
3186
|
+
* @memberof User
|
|
3187
|
+
*/
|
|
3188
|
+
'phone'?: string | null;
|
|
3189
|
+
/**
|
|
3190
|
+
*
|
|
3191
|
+
* @type {string}
|
|
3192
|
+
* @memberof User
|
|
3193
|
+
*/
|
|
3194
|
+
'streetAddress1'?: string | null;
|
|
3195
|
+
/**
|
|
3196
|
+
*
|
|
3197
|
+
* @type {string}
|
|
3198
|
+
* @memberof User
|
|
3199
|
+
*/
|
|
3200
|
+
'streetAddress2'?: string | null;
|
|
3201
|
+
/**
|
|
3202
|
+
*
|
|
3203
|
+
* @type {string}
|
|
3204
|
+
* @memberof User
|
|
3205
|
+
*/
|
|
3206
|
+
'city'?: string | null;
|
|
3207
|
+
/**
|
|
3208
|
+
*
|
|
3209
|
+
* @type {string}
|
|
3210
|
+
* @memberof User
|
|
3211
|
+
*/
|
|
3212
|
+
'province'?: string | null;
|
|
3213
|
+
/**
|
|
3214
|
+
*
|
|
3215
|
+
* @type {string}
|
|
3216
|
+
* @memberof User
|
|
3217
|
+
*/
|
|
3218
|
+
'postalCode'?: string | null;
|
|
3219
|
+
/**
|
|
3220
|
+
*
|
|
3221
|
+
* @type {string}
|
|
3222
|
+
* @memberof User
|
|
3223
|
+
*/
|
|
3224
|
+
'country'?: string | null;
|
|
3225
|
+
/**
|
|
3226
|
+
*
|
|
3227
|
+
* @type {string}
|
|
3228
|
+
* @memberof User
|
|
3229
|
+
*/
|
|
3230
|
+
'userId': string | null;
|
|
3231
|
+
/**
|
|
3232
|
+
*
|
|
3233
|
+
* @type {string}
|
|
3234
|
+
* @memberof User
|
|
3235
|
+
*/
|
|
3236
|
+
'userName': string;
|
|
3237
|
+
/**
|
|
3238
|
+
*
|
|
3239
|
+
* @type {string}
|
|
3240
|
+
* @memberof User
|
|
3241
|
+
*/
|
|
3242
|
+
'email': string;
|
|
3243
|
+
}
|
|
3165
3244
|
/**
|
|
3166
3245
|
* AccountsApi - axios parameter creator
|
|
3167
3246
|
* @export
|
|
@@ -5566,7 +5645,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5566
5645
|
* @param {*} [options] Override http request option.
|
|
5567
5646
|
* @throws {RequiredError}
|
|
5568
5647
|
*/
|
|
5569
|
-
getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5648
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
5570
5649
|
/**
|
|
5571
5650
|
* Inboxes List
|
|
5572
5651
|
* @summary Inboxes List
|
|
@@ -5953,7 +6032,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5953
6032
|
* @param {*} [options] Override http request option.
|
|
5954
6033
|
* @throws {RequiredError}
|
|
5955
6034
|
*/
|
|
5956
|
-
getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
6035
|
+
getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<User>;
|
|
5957
6036
|
/**
|
|
5958
6037
|
* Inboxes List
|
|
5959
6038
|
* @summary Inboxes List
|
|
@@ -6363,7 +6442,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6363
6442
|
* @throws {RequiredError}
|
|
6364
6443
|
* @memberof UnboundApi
|
|
6365
6444
|
*/
|
|
6366
|
-
getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
6445
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
6367
6446
|
/**
|
|
6368
6447
|
* Inboxes List
|
|
6369
6448
|
* @summary Inboxes List
|
|
@@ -6601,7 +6680,7 @@ declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
6601
6680
|
* @param {*} [options] Override http request option.
|
|
6602
6681
|
* @throws {RequiredError}
|
|
6603
6682
|
*/
|
|
6604
|
-
getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
6683
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
6605
6684
|
};
|
|
6606
6685
|
/**
|
|
6607
6686
|
* UsersApi - factory interface
|
|
@@ -6614,7 +6693,7 @@ declare const UsersApiFactory: (configuration?: Configuration, basePath?: string
|
|
|
6614
6693
|
* @param {*} [options] Override http request option.
|
|
6615
6694
|
* @throws {RequiredError}
|
|
6616
6695
|
*/
|
|
6617
|
-
getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
6696
|
+
getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<User>;
|
|
6618
6697
|
};
|
|
6619
6698
|
/**
|
|
6620
6699
|
* UsersApi - object-oriented interface
|
|
@@ -6630,7 +6709,7 @@ declare class UsersApi extends BaseAPI {
|
|
|
6630
6709
|
* @throws {RequiredError}
|
|
6631
6710
|
* @memberof UsersApi
|
|
6632
6711
|
*/
|
|
6633
|
-
getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
6712
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
6634
6713
|
}
|
|
6635
6714
|
|
|
6636
|
-
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, 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 EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInbox, 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 PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PhonesApi, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, 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, RentalProviderTypes, 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, UsersApi, UsersApiAxiosParamCreator, UsersApiFactory, UsersApiFp };
|
|
6715
|
+
export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIConversation, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, 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 EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIInbox, 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 PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PhonesApi, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, 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, RentalProviderTypes, 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, type User, UsersApi, UsersApiAxiosParamCreator, UsersApiFactory, UsersApiFp };
|