@ember-home/unbound-ts-client 0.0.65 → 0.0.67

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 CHANGED
@@ -2556,22 +2556,22 @@ interface ProviderConversationDataApi {
2556
2556
  'providerChannelName': ReservationChannelTypes;
2557
2557
  /**
2558
2558
  *
2559
- * @type {string}
2559
+ * @type {SubjectApi}
2560
2560
  * @memberof ProviderConversationDataApi
2561
2561
  */
2562
- 'listingId': string;
2562
+ 'subject': SubjectApi;
2563
2563
  /**
2564
2564
  *
2565
2565
  * @type {string}
2566
2566
  * @memberof ProviderConversationDataApi
2567
2567
  */
2568
- 'contactId'?: string | null;
2568
+ 'listingId': string;
2569
2569
  /**
2570
2570
  *
2571
- * @type {SubjectApi}
2571
+ * @type {string}
2572
2572
  * @memberof ProviderConversationDataApi
2573
2573
  */
2574
- 'subject': SubjectApi;
2574
+ 'contactId'?: string | null;
2575
2575
  }
2576
2576
  declare const ProviderConversationDataApiConversationTypeEnum: {
2577
2577
  readonly RentalProvider: "RENTAL_PROVIDER";
@@ -2708,10 +2708,10 @@ interface RentalProviderMessageApi {
2708
2708
  'messageType': RentalProviderMessageApiMessageTypeEnum;
2709
2709
  /**
2710
2710
  *
2711
- * @type {string}
2711
+ * @type {ProviderCommunicationType}
2712
2712
  * @memberof RentalProviderMessageApi
2713
2713
  */
2714
- 'communicationType': string;
2714
+ 'communicationType': ProviderCommunicationType;
2715
2715
  }
2716
2716
  declare const RentalProviderMessageApiMessageTypeEnum: {
2717
2717
  readonly RentalProvider: "RENTAL_PROVIDER";
@@ -5173,6 +5173,13 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
5173
5173
  * @throws {RequiredError}
5174
5174
  */
5175
5175
  emailsUpdate: (emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5176
+ /**
5177
+ * Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
5178
+ * @summary Get Me
5179
+ * @param {*} [options] Override http request option.
5180
+ * @throws {RequiredError}
5181
+ */
5182
+ getMeMeGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5176
5183
  /**
5177
5184
  * Inboxes List
5178
5185
  * @summary Inboxes List
@@ -5553,6 +5560,13 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
5553
5560
  * @throws {RequiredError}
5554
5561
  */
5555
5562
  emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIEmail>>;
5563
+ /**
5564
+ * Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
5565
+ * @summary Get Me
5566
+ * @param {*} [options] Override http request option.
5567
+ * @throws {RequiredError}
5568
+ */
5569
+ getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
5556
5570
  /**
5557
5571
  * Inboxes List
5558
5572
  * @summary Inboxes List
@@ -5933,6 +5947,13 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
5933
5947
  * @throws {RequiredError}
5934
5948
  */
5935
5949
  emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIEmail>;
5950
+ /**
5951
+ * Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
5952
+ * @summary Get Me
5953
+ * @param {*} [options] Override http request option.
5954
+ * @throws {RequiredError}
5955
+ */
5956
+ getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<object>;
5936
5957
  /**
5937
5958
  * Inboxes List
5938
5959
  * @summary Inboxes List
@@ -6335,6 +6356,14 @@ declare class UnboundApi extends BaseAPI {
6335
6356
  * @memberof UnboundApi
6336
6357
  */
6337
6358
  emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIEmail, any>>;
6359
+ /**
6360
+ * Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
6361
+ * @summary Get Me
6362
+ * @param {*} [options] Override http request option.
6363
+ * @throws {RequiredError}
6364
+ * @memberof UnboundApi
6365
+ */
6366
+ getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
6338
6367
  /**
6339
6368
  * Inboxes List
6340
6369
  * @summary Inboxes List
@@ -6548,5 +6577,60 @@ declare class UnboundApi extends BaseAPI {
6548
6577
  */
6549
6578
  webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
6550
6579
  }
6580
+ /**
6581
+ * UsersApi - axios parameter creator
6582
+ * @export
6583
+ */
6584
+ declare const UsersApiAxiosParamCreator: (configuration?: Configuration) => {
6585
+ /**
6586
+ * Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
6587
+ * @summary Get Me
6588
+ * @param {*} [options] Override http request option.
6589
+ * @throws {RequiredError}
6590
+ */
6591
+ getMeMeGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6592
+ };
6593
+ /**
6594
+ * UsersApi - functional programming interface
6595
+ * @export
6596
+ */
6597
+ declare const UsersApiFp: (configuration?: Configuration) => {
6598
+ /**
6599
+ * Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
6600
+ * @summary Get Me
6601
+ * @param {*} [options] Override http request option.
6602
+ * @throws {RequiredError}
6603
+ */
6604
+ getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
6605
+ };
6606
+ /**
6607
+ * UsersApi - factory interface
6608
+ * @export
6609
+ */
6610
+ declare const UsersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6611
+ /**
6612
+ * Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
6613
+ * @summary Get Me
6614
+ * @param {*} [options] Override http request option.
6615
+ * @throws {RequiredError}
6616
+ */
6617
+ getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<object>;
6618
+ };
6619
+ /**
6620
+ * UsersApi - object-oriented interface
6621
+ * @export
6622
+ * @class UsersApi
6623
+ * @extends {BaseAPI}
6624
+ */
6625
+ declare class UsersApi extends BaseAPI {
6626
+ /**
6627
+ * Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
6628
+ * @summary Get Me
6629
+ * @param {*} [options] Override http request option.
6630
+ * @throws {RequiredError}
6631
+ * @memberof UsersApi
6632
+ */
6633
+ getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
6634
+ }
6551
6635
 
6552
- 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 };
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 };
package/dist/index.d.ts CHANGED
@@ -2556,22 +2556,22 @@ interface ProviderConversationDataApi {
2556
2556
  'providerChannelName': ReservationChannelTypes;
2557
2557
  /**
2558
2558
  *
2559
- * @type {string}
2559
+ * @type {SubjectApi}
2560
2560
  * @memberof ProviderConversationDataApi
2561
2561
  */
2562
- 'listingId': string;
2562
+ 'subject': SubjectApi;
2563
2563
  /**
2564
2564
  *
2565
2565
  * @type {string}
2566
2566
  * @memberof ProviderConversationDataApi
2567
2567
  */
2568
- 'contactId'?: string | null;
2568
+ 'listingId': string;
2569
2569
  /**
2570
2570
  *
2571
- * @type {SubjectApi}
2571
+ * @type {string}
2572
2572
  * @memberof ProviderConversationDataApi
2573
2573
  */
2574
- 'subject': SubjectApi;
2574
+ 'contactId'?: string | null;
2575
2575
  }
2576
2576
  declare const ProviderConversationDataApiConversationTypeEnum: {
2577
2577
  readonly RentalProvider: "RENTAL_PROVIDER";
@@ -2708,10 +2708,10 @@ interface RentalProviderMessageApi {
2708
2708
  'messageType': RentalProviderMessageApiMessageTypeEnum;
2709
2709
  /**
2710
2710
  *
2711
- * @type {string}
2711
+ * @type {ProviderCommunicationType}
2712
2712
  * @memberof RentalProviderMessageApi
2713
2713
  */
2714
- 'communicationType': string;
2714
+ 'communicationType': ProviderCommunicationType;
2715
2715
  }
2716
2716
  declare const RentalProviderMessageApiMessageTypeEnum: {
2717
2717
  readonly RentalProvider: "RENTAL_PROVIDER";
@@ -5173,6 +5173,13 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
5173
5173
  * @throws {RequiredError}
5174
5174
  */
5175
5175
  emailsUpdate: (emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5176
+ /**
5177
+ * Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
5178
+ * @summary Get Me
5179
+ * @param {*} [options] Override http request option.
5180
+ * @throws {RequiredError}
5181
+ */
5182
+ getMeMeGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5176
5183
  /**
5177
5184
  * Inboxes List
5178
5185
  * @summary Inboxes List
@@ -5553,6 +5560,13 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
5553
5560
  * @throws {RequiredError}
5554
5561
  */
5555
5562
  emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIEmail>>;
5563
+ /**
5564
+ * Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
5565
+ * @summary Get Me
5566
+ * @param {*} [options] Override http request option.
5567
+ * @throws {RequiredError}
5568
+ */
5569
+ getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
5556
5570
  /**
5557
5571
  * Inboxes List
5558
5572
  * @summary Inboxes List
@@ -5933,6 +5947,13 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
5933
5947
  * @throws {RequiredError}
5934
5948
  */
5935
5949
  emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIEmail>;
5950
+ /**
5951
+ * Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
5952
+ * @summary Get Me
5953
+ * @param {*} [options] Override http request option.
5954
+ * @throws {RequiredError}
5955
+ */
5956
+ getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<object>;
5936
5957
  /**
5937
5958
  * Inboxes List
5938
5959
  * @summary Inboxes List
@@ -6335,6 +6356,14 @@ declare class UnboundApi extends BaseAPI {
6335
6356
  * @memberof UnboundApi
6336
6357
  */
6337
6358
  emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIEmail, any>>;
6359
+ /**
6360
+ * Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
6361
+ * @summary Get Me
6362
+ * @param {*} [options] Override http request option.
6363
+ * @throws {RequiredError}
6364
+ * @memberof UnboundApi
6365
+ */
6366
+ getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
6338
6367
  /**
6339
6368
  * Inboxes List
6340
6369
  * @summary Inboxes List
@@ -6548,5 +6577,60 @@ declare class UnboundApi extends BaseAPI {
6548
6577
  */
6549
6578
  webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
6550
6579
  }
6580
+ /**
6581
+ * UsersApi - axios parameter creator
6582
+ * @export
6583
+ */
6584
+ declare const UsersApiAxiosParamCreator: (configuration?: Configuration) => {
6585
+ /**
6586
+ * Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
6587
+ * @summary Get Me
6588
+ * @param {*} [options] Override http request option.
6589
+ * @throws {RequiredError}
6590
+ */
6591
+ getMeMeGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6592
+ };
6593
+ /**
6594
+ * UsersApi - functional programming interface
6595
+ * @export
6596
+ */
6597
+ declare const UsersApiFp: (configuration?: Configuration) => {
6598
+ /**
6599
+ * Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
6600
+ * @summary Get Me
6601
+ * @param {*} [options] Override http request option.
6602
+ * @throws {RequiredError}
6603
+ */
6604
+ getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
6605
+ };
6606
+ /**
6607
+ * UsersApi - factory interface
6608
+ * @export
6609
+ */
6610
+ declare const UsersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
6611
+ /**
6612
+ * Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
6613
+ * @summary Get Me
6614
+ * @param {*} [options] Override http request option.
6615
+ * @throws {RequiredError}
6616
+ */
6617
+ getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<object>;
6618
+ };
6619
+ /**
6620
+ * UsersApi - object-oriented interface
6621
+ * @export
6622
+ * @class UsersApi
6623
+ * @extends {BaseAPI}
6624
+ */
6625
+ declare class UsersApi extends BaseAPI {
6626
+ /**
6627
+ * Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
6628
+ * @summary Get Me
6629
+ * @param {*} [options] Override http request option.
6630
+ * @throws {RequiredError}
6631
+ * @memberof UsersApi
6632
+ */
6633
+ getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
6634
+ }
6551
6635
 
6552
- 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 };
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 };