@ember-home/unbound-ts-client 0.0.66 → 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 +169 -6
- package/dist/index.d.ts +169 -6
- package/dist/index.js +174 -44
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +131 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2556,22 +2556,22 @@ interface ProviderConversationDataApi {
|
|
|
2556
2556
|
'providerChannelName': ReservationChannelTypes;
|
|
2557
2557
|
/**
|
|
2558
2558
|
*
|
|
2559
|
-
* @type {
|
|
2559
|
+
* @type {SubjectApi}
|
|
2560
2560
|
* @memberof ProviderConversationDataApi
|
|
2561
2561
|
*/
|
|
2562
|
-
'
|
|
2562
|
+
'subject': SubjectApi;
|
|
2563
2563
|
/**
|
|
2564
2564
|
*
|
|
2565
2565
|
* @type {string}
|
|
2566
2566
|
* @memberof ProviderConversationDataApi
|
|
2567
2567
|
*/
|
|
2568
|
-
'
|
|
2568
|
+
'listingId': string;
|
|
2569
2569
|
/**
|
|
2570
2570
|
*
|
|
2571
|
-
* @type {
|
|
2571
|
+
* @type {string}
|
|
2572
2572
|
* @memberof ProviderConversationDataApi
|
|
2573
2573
|
*/
|
|
2574
|
-
'
|
|
2574
|
+
'contactId'?: string | null;
|
|
2575
2575
|
}
|
|
2576
2576
|
declare const ProviderConversationDataApiConversationTypeEnum: {
|
|
2577
2577
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
@@ -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
|
|
@@ -5173,6 +5252,13 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5173
5252
|
* @throws {RequiredError}
|
|
5174
5253
|
*/
|
|
5175
5254
|
emailsUpdate: (emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5255
|
+
/**
|
|
5256
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
5257
|
+
* @summary Get Me
|
|
5258
|
+
* @param {*} [options] Override http request option.
|
|
5259
|
+
* @throws {RequiredError}
|
|
5260
|
+
*/
|
|
5261
|
+
getMeMeGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5176
5262
|
/**
|
|
5177
5263
|
* Inboxes List
|
|
5178
5264
|
* @summary Inboxes List
|
|
@@ -5553,6 +5639,13 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5553
5639
|
* @throws {RequiredError}
|
|
5554
5640
|
*/
|
|
5555
5641
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIEmail>>;
|
|
5642
|
+
/**
|
|
5643
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
5644
|
+
* @summary Get Me
|
|
5645
|
+
* @param {*} [options] Override http request option.
|
|
5646
|
+
* @throws {RequiredError}
|
|
5647
|
+
*/
|
|
5648
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
5556
5649
|
/**
|
|
5557
5650
|
* Inboxes List
|
|
5558
5651
|
* @summary Inboxes List
|
|
@@ -5933,6 +6026,13 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5933
6026
|
* @throws {RequiredError}
|
|
5934
6027
|
*/
|
|
5935
6028
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIEmail>;
|
|
6029
|
+
/**
|
|
6030
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6031
|
+
* @summary Get Me
|
|
6032
|
+
* @param {*} [options] Override http request option.
|
|
6033
|
+
* @throws {RequiredError}
|
|
6034
|
+
*/
|
|
6035
|
+
getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<User>;
|
|
5936
6036
|
/**
|
|
5937
6037
|
* Inboxes List
|
|
5938
6038
|
* @summary Inboxes List
|
|
@@ -6335,6 +6435,14 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6335
6435
|
* @memberof UnboundApi
|
|
6336
6436
|
*/
|
|
6337
6437
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIEmail, any>>;
|
|
6438
|
+
/**
|
|
6439
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6440
|
+
* @summary Get Me
|
|
6441
|
+
* @param {*} [options] Override http request option.
|
|
6442
|
+
* @throws {RequiredError}
|
|
6443
|
+
* @memberof UnboundApi
|
|
6444
|
+
*/
|
|
6445
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
6338
6446
|
/**
|
|
6339
6447
|
* Inboxes List
|
|
6340
6448
|
* @summary Inboxes List
|
|
@@ -6548,5 +6656,60 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6548
6656
|
*/
|
|
6549
6657
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6550
6658
|
}
|
|
6659
|
+
/**
|
|
6660
|
+
* UsersApi - axios parameter creator
|
|
6661
|
+
* @export
|
|
6662
|
+
*/
|
|
6663
|
+
declare const UsersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6664
|
+
/**
|
|
6665
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6666
|
+
* @summary Get Me
|
|
6667
|
+
* @param {*} [options] Override http request option.
|
|
6668
|
+
* @throws {RequiredError}
|
|
6669
|
+
*/
|
|
6670
|
+
getMeMeGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6671
|
+
};
|
|
6672
|
+
/**
|
|
6673
|
+
* UsersApi - functional programming interface
|
|
6674
|
+
* @export
|
|
6675
|
+
*/
|
|
6676
|
+
declare const UsersApiFp: (configuration?: Configuration) => {
|
|
6677
|
+
/**
|
|
6678
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6679
|
+
* @summary Get Me
|
|
6680
|
+
* @param {*} [options] Override http request option.
|
|
6681
|
+
* @throws {RequiredError}
|
|
6682
|
+
*/
|
|
6683
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
6684
|
+
};
|
|
6685
|
+
/**
|
|
6686
|
+
* UsersApi - factory interface
|
|
6687
|
+
* @export
|
|
6688
|
+
*/
|
|
6689
|
+
declare const UsersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6690
|
+
/**
|
|
6691
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6692
|
+
* @summary Get Me
|
|
6693
|
+
* @param {*} [options] Override http request option.
|
|
6694
|
+
* @throws {RequiredError}
|
|
6695
|
+
*/
|
|
6696
|
+
getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<User>;
|
|
6697
|
+
};
|
|
6698
|
+
/**
|
|
6699
|
+
* UsersApi - object-oriented interface
|
|
6700
|
+
* @export
|
|
6701
|
+
* @class UsersApi
|
|
6702
|
+
* @extends {BaseAPI}
|
|
6703
|
+
*/
|
|
6704
|
+
declare class UsersApi extends BaseAPI {
|
|
6705
|
+
/**
|
|
6706
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6707
|
+
* @summary Get Me
|
|
6708
|
+
* @param {*} [options] Override http request option.
|
|
6709
|
+
* @throws {RequiredError}
|
|
6710
|
+
* @memberof UsersApi
|
|
6711
|
+
*/
|
|
6712
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
6713
|
+
}
|
|
6551
6714
|
|
|
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 };
|
|
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
|
@@ -2556,22 +2556,22 @@ interface ProviderConversationDataApi {
|
|
|
2556
2556
|
'providerChannelName': ReservationChannelTypes;
|
|
2557
2557
|
/**
|
|
2558
2558
|
*
|
|
2559
|
-
* @type {
|
|
2559
|
+
* @type {SubjectApi}
|
|
2560
2560
|
* @memberof ProviderConversationDataApi
|
|
2561
2561
|
*/
|
|
2562
|
-
'
|
|
2562
|
+
'subject': SubjectApi;
|
|
2563
2563
|
/**
|
|
2564
2564
|
*
|
|
2565
2565
|
* @type {string}
|
|
2566
2566
|
* @memberof ProviderConversationDataApi
|
|
2567
2567
|
*/
|
|
2568
|
-
'
|
|
2568
|
+
'listingId': string;
|
|
2569
2569
|
/**
|
|
2570
2570
|
*
|
|
2571
|
-
* @type {
|
|
2571
|
+
* @type {string}
|
|
2572
2572
|
* @memberof ProviderConversationDataApi
|
|
2573
2573
|
*/
|
|
2574
|
-
'
|
|
2574
|
+
'contactId'?: string | null;
|
|
2575
2575
|
}
|
|
2576
2576
|
declare const ProviderConversationDataApiConversationTypeEnum: {
|
|
2577
2577
|
readonly RentalProvider: "RENTAL_PROVIDER";
|
|
@@ -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
|
|
@@ -5173,6 +5252,13 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5173
5252
|
* @throws {RequiredError}
|
|
5174
5253
|
*/
|
|
5175
5254
|
emailsUpdate: (emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5255
|
+
/**
|
|
5256
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
5257
|
+
* @summary Get Me
|
|
5258
|
+
* @param {*} [options] Override http request option.
|
|
5259
|
+
* @throws {RequiredError}
|
|
5260
|
+
*/
|
|
5261
|
+
getMeMeGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5176
5262
|
/**
|
|
5177
5263
|
* Inboxes List
|
|
5178
5264
|
* @summary Inboxes List
|
|
@@ -5553,6 +5639,13 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
5553
5639
|
* @throws {RequiredError}
|
|
5554
5640
|
*/
|
|
5555
5641
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIEmail>>;
|
|
5642
|
+
/**
|
|
5643
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
5644
|
+
* @summary Get Me
|
|
5645
|
+
* @param {*} [options] Override http request option.
|
|
5646
|
+
* @throws {RequiredError}
|
|
5647
|
+
*/
|
|
5648
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
5556
5649
|
/**
|
|
5557
5650
|
* Inboxes List
|
|
5558
5651
|
* @summary Inboxes List
|
|
@@ -5933,6 +6026,13 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
5933
6026
|
* @throws {RequiredError}
|
|
5934
6027
|
*/
|
|
5935
6028
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): AxiosPromise<APIEmail>;
|
|
6029
|
+
/**
|
|
6030
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6031
|
+
* @summary Get Me
|
|
6032
|
+
* @param {*} [options] Override http request option.
|
|
6033
|
+
* @throws {RequiredError}
|
|
6034
|
+
*/
|
|
6035
|
+
getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<User>;
|
|
5936
6036
|
/**
|
|
5937
6037
|
* Inboxes List
|
|
5938
6038
|
* @summary Inboxes List
|
|
@@ -6335,6 +6435,14 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6335
6435
|
* @memberof UnboundApi
|
|
6336
6436
|
*/
|
|
6337
6437
|
emailsUpdate(emailId: string, aPIEmailUpdate: APIEmailUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<APIEmail, any>>;
|
|
6438
|
+
/**
|
|
6439
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6440
|
+
* @summary Get Me
|
|
6441
|
+
* @param {*} [options] Override http request option.
|
|
6442
|
+
* @throws {RequiredError}
|
|
6443
|
+
* @memberof UnboundApi
|
|
6444
|
+
*/
|
|
6445
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
6338
6446
|
/**
|
|
6339
6447
|
* Inboxes List
|
|
6340
6448
|
* @summary Inboxes List
|
|
@@ -6548,5 +6656,60 @@ declare class UnboundApi extends BaseAPI {
|
|
|
6548
6656
|
*/
|
|
6549
6657
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
6550
6658
|
}
|
|
6659
|
+
/**
|
|
6660
|
+
* UsersApi - axios parameter creator
|
|
6661
|
+
* @export
|
|
6662
|
+
*/
|
|
6663
|
+
declare const UsersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6664
|
+
/**
|
|
6665
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6666
|
+
* @summary Get Me
|
|
6667
|
+
* @param {*} [options] Override http request option.
|
|
6668
|
+
* @throws {RequiredError}
|
|
6669
|
+
*/
|
|
6670
|
+
getMeMeGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6671
|
+
};
|
|
6672
|
+
/**
|
|
6673
|
+
* UsersApi - functional programming interface
|
|
6674
|
+
* @export
|
|
6675
|
+
*/
|
|
6676
|
+
declare const UsersApiFp: (configuration?: Configuration) => {
|
|
6677
|
+
/**
|
|
6678
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6679
|
+
* @summary Get Me
|
|
6680
|
+
* @param {*} [options] Override http request option.
|
|
6681
|
+
* @throws {RequiredError}
|
|
6682
|
+
*/
|
|
6683
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<User>>;
|
|
6684
|
+
};
|
|
6685
|
+
/**
|
|
6686
|
+
* UsersApi - factory interface
|
|
6687
|
+
* @export
|
|
6688
|
+
*/
|
|
6689
|
+
declare const UsersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6690
|
+
/**
|
|
6691
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6692
|
+
* @summary Get Me
|
|
6693
|
+
* @param {*} [options] Override http request option.
|
|
6694
|
+
* @throws {RequiredError}
|
|
6695
|
+
*/
|
|
6696
|
+
getMeMeGet(options?: RawAxiosRequestConfig): AxiosPromise<User>;
|
|
6697
|
+
};
|
|
6698
|
+
/**
|
|
6699
|
+
* UsersApi - object-oriented interface
|
|
6700
|
+
* @export
|
|
6701
|
+
* @class UsersApi
|
|
6702
|
+
* @extends {BaseAPI}
|
|
6703
|
+
*/
|
|
6704
|
+
declare class UsersApi extends BaseAPI {
|
|
6705
|
+
/**
|
|
6706
|
+
* Get the current authenticated user. Returns the user information for the currently authenticated user based on the JWT token in the Authorization header.
|
|
6707
|
+
* @summary Get Me
|
|
6708
|
+
* @param {*} [options] Override http request option.
|
|
6709
|
+
* @throws {RequiredError}
|
|
6710
|
+
* @memberof UsersApi
|
|
6711
|
+
*/
|
|
6712
|
+
getMeMeGet(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<User, any>>;
|
|
6713
|
+
}
|
|
6551
6714
|
|
|
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 };
|
|
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 };
|