@ember-home/unbound-ts-client 0.0.13 → 0.0.14
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 +143 -1
- package/dist/index.d.ts +143 -1
- package/dist/index.js +180 -36
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +144 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1646,6 +1646,19 @@ interface ListResponseContactsListResponse {
|
|
|
1646
1646
|
*/
|
|
1647
1647
|
'data': Array<ContactsListResponse>;
|
|
1648
1648
|
}
|
|
1649
|
+
/**
|
|
1650
|
+
*
|
|
1651
|
+
* @export
|
|
1652
|
+
* @interface ListResponseListingsListResponse
|
|
1653
|
+
*/
|
|
1654
|
+
interface ListResponseListingsListResponse {
|
|
1655
|
+
/**
|
|
1656
|
+
*
|
|
1657
|
+
* @type {Array<ListingsListResponse>}
|
|
1658
|
+
* @memberof ListResponseListingsListResponse
|
|
1659
|
+
*/
|
|
1660
|
+
'data': Array<ListingsListResponse>;
|
|
1661
|
+
}
|
|
1649
1662
|
/**
|
|
1650
1663
|
*
|
|
1651
1664
|
* @export
|
|
@@ -1659,6 +1672,43 @@ interface ListResponseReservationsListResponse {
|
|
|
1659
1672
|
*/
|
|
1660
1673
|
'data': Array<ReservationsListResponse>;
|
|
1661
1674
|
}
|
|
1675
|
+
/**
|
|
1676
|
+
*
|
|
1677
|
+
* @export
|
|
1678
|
+
* @interface ListingsListResponse
|
|
1679
|
+
*/
|
|
1680
|
+
interface ListingsListResponse {
|
|
1681
|
+
/**
|
|
1682
|
+
*
|
|
1683
|
+
* @type {string}
|
|
1684
|
+
* @memberof ListingsListResponse
|
|
1685
|
+
*/
|
|
1686
|
+
'listingId'?: string | null;
|
|
1687
|
+
/**
|
|
1688
|
+
*
|
|
1689
|
+
* @type {string}
|
|
1690
|
+
* @memberof ListingsListResponse
|
|
1691
|
+
*/
|
|
1692
|
+
'datasource': string;
|
|
1693
|
+
/**
|
|
1694
|
+
*
|
|
1695
|
+
* @type {string}
|
|
1696
|
+
* @memberof ListingsListResponse
|
|
1697
|
+
*/
|
|
1698
|
+
'providerListingId': string;
|
|
1699
|
+
/**
|
|
1700
|
+
*
|
|
1701
|
+
* @type {string}
|
|
1702
|
+
* @memberof ListingsListResponse
|
|
1703
|
+
*/
|
|
1704
|
+
'title': string;
|
|
1705
|
+
/**
|
|
1706
|
+
*
|
|
1707
|
+
* @type {string}
|
|
1708
|
+
* @memberof ListingsListResponse
|
|
1709
|
+
*/
|
|
1710
|
+
'description'?: string | null;
|
|
1711
|
+
}
|
|
1662
1712
|
/**
|
|
1663
1713
|
*
|
|
1664
1714
|
* @export
|
|
@@ -2548,6 +2598,65 @@ declare class HostawayApi extends BaseAPI {
|
|
|
2548
2598
|
*/
|
|
2549
2599
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
2550
2600
|
}
|
|
2601
|
+
/**
|
|
2602
|
+
* ListingsApi - axios parameter creator
|
|
2603
|
+
* @export
|
|
2604
|
+
*/
|
|
2605
|
+
declare const ListingsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2606
|
+
/**
|
|
2607
|
+
* List all listings
|
|
2608
|
+
* @summary Listings List
|
|
2609
|
+
* @param {string} [contactId]
|
|
2610
|
+
* @param {*} [options] Override http request option.
|
|
2611
|
+
* @throws {RequiredError}
|
|
2612
|
+
*/
|
|
2613
|
+
listingsList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2614
|
+
};
|
|
2615
|
+
/**
|
|
2616
|
+
* ListingsApi - functional programming interface
|
|
2617
|
+
* @export
|
|
2618
|
+
*/
|
|
2619
|
+
declare const ListingsApiFp: (configuration?: Configuration) => {
|
|
2620
|
+
/**
|
|
2621
|
+
* List all listings
|
|
2622
|
+
* @summary Listings List
|
|
2623
|
+
* @param {string} [contactId]
|
|
2624
|
+
* @param {*} [options] Override http request option.
|
|
2625
|
+
* @throws {RequiredError}
|
|
2626
|
+
*/
|
|
2627
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseListingsListResponse>>;
|
|
2628
|
+
};
|
|
2629
|
+
/**
|
|
2630
|
+
* ListingsApi - factory interface
|
|
2631
|
+
* @export
|
|
2632
|
+
*/
|
|
2633
|
+
declare const ListingsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2634
|
+
/**
|
|
2635
|
+
* List all listings
|
|
2636
|
+
* @summary Listings List
|
|
2637
|
+
* @param {string} [contactId]
|
|
2638
|
+
* @param {*} [options] Override http request option.
|
|
2639
|
+
* @throws {RequiredError}
|
|
2640
|
+
*/
|
|
2641
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseListingsListResponse>;
|
|
2642
|
+
};
|
|
2643
|
+
/**
|
|
2644
|
+
* ListingsApi - object-oriented interface
|
|
2645
|
+
* @export
|
|
2646
|
+
* @class ListingsApi
|
|
2647
|
+
* @extends {BaseAPI}
|
|
2648
|
+
*/
|
|
2649
|
+
declare class ListingsApi extends BaseAPI {
|
|
2650
|
+
/**
|
|
2651
|
+
* List all listings
|
|
2652
|
+
* @summary Listings List
|
|
2653
|
+
* @param {string} [contactId]
|
|
2654
|
+
* @param {*} [options] Override http request option.
|
|
2655
|
+
* @throws {RequiredError}
|
|
2656
|
+
* @memberof ListingsApi
|
|
2657
|
+
*/
|
|
2658
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseListingsListResponse, any>>;
|
|
2659
|
+
}
|
|
2551
2660
|
/**
|
|
2552
2661
|
* PhonesApi - axios parameter creator
|
|
2553
2662
|
* @export
|
|
@@ -2793,6 +2902,14 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2793
2902
|
* @throws {RequiredError}
|
|
2794
2903
|
*/
|
|
2795
2904
|
emailsDelete: (emailId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2905
|
+
/**
|
|
2906
|
+
* List all listings
|
|
2907
|
+
* @summary Listings List
|
|
2908
|
+
* @param {string} [contactId]
|
|
2909
|
+
* @param {*} [options] Override http request option.
|
|
2910
|
+
* @throws {RequiredError}
|
|
2911
|
+
*/
|
|
2912
|
+
listingsList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2796
2913
|
/**
|
|
2797
2914
|
*
|
|
2798
2915
|
* @summary Phones Create
|
|
@@ -2917,6 +3034,14 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2917
3034
|
* @throws {RequiredError}
|
|
2918
3035
|
*/
|
|
2919
3036
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3037
|
+
/**
|
|
3038
|
+
* List all listings
|
|
3039
|
+
* @summary Listings List
|
|
3040
|
+
* @param {string} [contactId]
|
|
3041
|
+
* @param {*} [options] Override http request option.
|
|
3042
|
+
* @throws {RequiredError}
|
|
3043
|
+
*/
|
|
3044
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseListingsListResponse>>;
|
|
2920
3045
|
/**
|
|
2921
3046
|
*
|
|
2922
3047
|
* @summary Phones Create
|
|
@@ -3041,6 +3166,14 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
3041
3166
|
* @throws {RequiredError}
|
|
3042
3167
|
*/
|
|
3043
3168
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3169
|
+
/**
|
|
3170
|
+
* List all listings
|
|
3171
|
+
* @summary Listings List
|
|
3172
|
+
* @param {string} [contactId]
|
|
3173
|
+
* @param {*} [options] Override http request option.
|
|
3174
|
+
* @throws {RequiredError}
|
|
3175
|
+
*/
|
|
3176
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseListingsListResponse>;
|
|
3044
3177
|
/**
|
|
3045
3178
|
*
|
|
3046
3179
|
* @summary Phones Create
|
|
@@ -3177,6 +3310,15 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3177
3310
|
* @memberof UnboundApi
|
|
3178
3311
|
*/
|
|
3179
3312
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
3313
|
+
/**
|
|
3314
|
+
* List all listings
|
|
3315
|
+
* @summary Listings List
|
|
3316
|
+
* @param {string} [contactId]
|
|
3317
|
+
* @param {*} [options] Override http request option.
|
|
3318
|
+
* @throws {RequiredError}
|
|
3319
|
+
* @memberof UnboundApi
|
|
3320
|
+
*/
|
|
3321
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseListingsListResponse, any>>;
|
|
3180
3322
|
/**
|
|
3181
3323
|
*
|
|
3182
3324
|
* @summary Phones Create
|
|
@@ -3216,4 +3358,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3216
3358
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
3217
3359
|
}
|
|
3218
3360
|
|
|
3219
|
-
export { type APIValidationError, type APIValidationErrorLocInner, type Address, type AddressCreate, type AddressItem, type AddressUpdate, AddressesApi, AddressesApiAxiosParamCreator, AddressesApiFactory, AddressesApiFp, type AddressesCreateResponse, type AddressesUpdateResponse, Configuration, type ConfigurationParameters, type ContactCreate, type ContactTypeData, type ContactTypeDataCreate, type ContactTypeDataUpdate, ContactTypeFilter, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, type ContactsCreateResponse, type ContactsGetResponse, type ContactsListResponse, type ContactsUpdateResponse, DataSource, type Email, type EmailCreate, EmailsApi, EmailsApiAxiosParamCreator, EmailsApiFactory, EmailsApiFp, type EmailsCreateResponse, type GuestData, type GuestDataCreate, type GuestDataUpdate, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, type LeadData, type ListResponseContactsListResponse, type ListResponseReservationsListResponse, type OwnerData, type Phone, type PhoneCreate, PhonesApi, PhonesApiAxiosParamCreator, PhonesApiFactory, PhonesApiFp, type PhonesCreateResponse, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type ReservationsListResponse, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp };
|
|
3361
|
+
export { type APIValidationError, type APIValidationErrorLocInner, type Address, type AddressCreate, type AddressItem, type AddressUpdate, AddressesApi, AddressesApiAxiosParamCreator, AddressesApiFactory, AddressesApiFp, type AddressesCreateResponse, type AddressesUpdateResponse, Configuration, type ConfigurationParameters, type ContactCreate, type ContactTypeData, type ContactTypeDataCreate, type ContactTypeDataUpdate, ContactTypeFilter, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, type ContactsCreateResponse, type ContactsGetResponse, type ContactsListResponse, type ContactsUpdateResponse, DataSource, type Email, type EmailCreate, EmailsApi, EmailsApiAxiosParamCreator, EmailsApiFactory, EmailsApiFp, type EmailsCreateResponse, type GuestData, type GuestDataCreate, type GuestDataUpdate, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, type LeadData, type ListResponseContactsListResponse, type ListResponseListingsListResponse, type ListResponseReservationsListResponse, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ListingsListResponse, type OwnerData, type Phone, type PhoneCreate, PhonesApi, PhonesApiAxiosParamCreator, PhonesApiFactory, PhonesApiFp, type PhonesCreateResponse, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type ReservationsListResponse, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp };
|
package/dist/index.d.ts
CHANGED
|
@@ -1646,6 +1646,19 @@ interface ListResponseContactsListResponse {
|
|
|
1646
1646
|
*/
|
|
1647
1647
|
'data': Array<ContactsListResponse>;
|
|
1648
1648
|
}
|
|
1649
|
+
/**
|
|
1650
|
+
*
|
|
1651
|
+
* @export
|
|
1652
|
+
* @interface ListResponseListingsListResponse
|
|
1653
|
+
*/
|
|
1654
|
+
interface ListResponseListingsListResponse {
|
|
1655
|
+
/**
|
|
1656
|
+
*
|
|
1657
|
+
* @type {Array<ListingsListResponse>}
|
|
1658
|
+
* @memberof ListResponseListingsListResponse
|
|
1659
|
+
*/
|
|
1660
|
+
'data': Array<ListingsListResponse>;
|
|
1661
|
+
}
|
|
1649
1662
|
/**
|
|
1650
1663
|
*
|
|
1651
1664
|
* @export
|
|
@@ -1659,6 +1672,43 @@ interface ListResponseReservationsListResponse {
|
|
|
1659
1672
|
*/
|
|
1660
1673
|
'data': Array<ReservationsListResponse>;
|
|
1661
1674
|
}
|
|
1675
|
+
/**
|
|
1676
|
+
*
|
|
1677
|
+
* @export
|
|
1678
|
+
* @interface ListingsListResponse
|
|
1679
|
+
*/
|
|
1680
|
+
interface ListingsListResponse {
|
|
1681
|
+
/**
|
|
1682
|
+
*
|
|
1683
|
+
* @type {string}
|
|
1684
|
+
* @memberof ListingsListResponse
|
|
1685
|
+
*/
|
|
1686
|
+
'listingId'?: string | null;
|
|
1687
|
+
/**
|
|
1688
|
+
*
|
|
1689
|
+
* @type {string}
|
|
1690
|
+
* @memberof ListingsListResponse
|
|
1691
|
+
*/
|
|
1692
|
+
'datasource': string;
|
|
1693
|
+
/**
|
|
1694
|
+
*
|
|
1695
|
+
* @type {string}
|
|
1696
|
+
* @memberof ListingsListResponse
|
|
1697
|
+
*/
|
|
1698
|
+
'providerListingId': string;
|
|
1699
|
+
/**
|
|
1700
|
+
*
|
|
1701
|
+
* @type {string}
|
|
1702
|
+
* @memberof ListingsListResponse
|
|
1703
|
+
*/
|
|
1704
|
+
'title': string;
|
|
1705
|
+
/**
|
|
1706
|
+
*
|
|
1707
|
+
* @type {string}
|
|
1708
|
+
* @memberof ListingsListResponse
|
|
1709
|
+
*/
|
|
1710
|
+
'description'?: string | null;
|
|
1711
|
+
}
|
|
1662
1712
|
/**
|
|
1663
1713
|
*
|
|
1664
1714
|
* @export
|
|
@@ -2548,6 +2598,65 @@ declare class HostawayApi extends BaseAPI {
|
|
|
2548
2598
|
*/
|
|
2549
2599
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
2550
2600
|
}
|
|
2601
|
+
/**
|
|
2602
|
+
* ListingsApi - axios parameter creator
|
|
2603
|
+
* @export
|
|
2604
|
+
*/
|
|
2605
|
+
declare const ListingsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2606
|
+
/**
|
|
2607
|
+
* List all listings
|
|
2608
|
+
* @summary Listings List
|
|
2609
|
+
* @param {string} [contactId]
|
|
2610
|
+
* @param {*} [options] Override http request option.
|
|
2611
|
+
* @throws {RequiredError}
|
|
2612
|
+
*/
|
|
2613
|
+
listingsList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2614
|
+
};
|
|
2615
|
+
/**
|
|
2616
|
+
* ListingsApi - functional programming interface
|
|
2617
|
+
* @export
|
|
2618
|
+
*/
|
|
2619
|
+
declare const ListingsApiFp: (configuration?: Configuration) => {
|
|
2620
|
+
/**
|
|
2621
|
+
* List all listings
|
|
2622
|
+
* @summary Listings List
|
|
2623
|
+
* @param {string} [contactId]
|
|
2624
|
+
* @param {*} [options] Override http request option.
|
|
2625
|
+
* @throws {RequiredError}
|
|
2626
|
+
*/
|
|
2627
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseListingsListResponse>>;
|
|
2628
|
+
};
|
|
2629
|
+
/**
|
|
2630
|
+
* ListingsApi - factory interface
|
|
2631
|
+
* @export
|
|
2632
|
+
*/
|
|
2633
|
+
declare const ListingsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2634
|
+
/**
|
|
2635
|
+
* List all listings
|
|
2636
|
+
* @summary Listings List
|
|
2637
|
+
* @param {string} [contactId]
|
|
2638
|
+
* @param {*} [options] Override http request option.
|
|
2639
|
+
* @throws {RequiredError}
|
|
2640
|
+
*/
|
|
2641
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseListingsListResponse>;
|
|
2642
|
+
};
|
|
2643
|
+
/**
|
|
2644
|
+
* ListingsApi - object-oriented interface
|
|
2645
|
+
* @export
|
|
2646
|
+
* @class ListingsApi
|
|
2647
|
+
* @extends {BaseAPI}
|
|
2648
|
+
*/
|
|
2649
|
+
declare class ListingsApi extends BaseAPI {
|
|
2650
|
+
/**
|
|
2651
|
+
* List all listings
|
|
2652
|
+
* @summary Listings List
|
|
2653
|
+
* @param {string} [contactId]
|
|
2654
|
+
* @param {*} [options] Override http request option.
|
|
2655
|
+
* @throws {RequiredError}
|
|
2656
|
+
* @memberof ListingsApi
|
|
2657
|
+
*/
|
|
2658
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseListingsListResponse, any>>;
|
|
2659
|
+
}
|
|
2551
2660
|
/**
|
|
2552
2661
|
* PhonesApi - axios parameter creator
|
|
2553
2662
|
* @export
|
|
@@ -2793,6 +2902,14 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2793
2902
|
* @throws {RequiredError}
|
|
2794
2903
|
*/
|
|
2795
2904
|
emailsDelete: (emailId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2905
|
+
/**
|
|
2906
|
+
* List all listings
|
|
2907
|
+
* @summary Listings List
|
|
2908
|
+
* @param {string} [contactId]
|
|
2909
|
+
* @param {*} [options] Override http request option.
|
|
2910
|
+
* @throws {RequiredError}
|
|
2911
|
+
*/
|
|
2912
|
+
listingsList: (contactId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2796
2913
|
/**
|
|
2797
2914
|
*
|
|
2798
2915
|
* @summary Phones Create
|
|
@@ -2917,6 +3034,14 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2917
3034
|
* @throws {RequiredError}
|
|
2918
3035
|
*/
|
|
2919
3036
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3037
|
+
/**
|
|
3038
|
+
* List all listings
|
|
3039
|
+
* @summary Listings List
|
|
3040
|
+
* @param {string} [contactId]
|
|
3041
|
+
* @param {*} [options] Override http request option.
|
|
3042
|
+
* @throws {RequiredError}
|
|
3043
|
+
*/
|
|
3044
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseListingsListResponse>>;
|
|
2920
3045
|
/**
|
|
2921
3046
|
*
|
|
2922
3047
|
* @summary Phones Create
|
|
@@ -3041,6 +3166,14 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
3041
3166
|
* @throws {RequiredError}
|
|
3042
3167
|
*/
|
|
3043
3168
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3169
|
+
/**
|
|
3170
|
+
* List all listings
|
|
3171
|
+
* @summary Listings List
|
|
3172
|
+
* @param {string} [contactId]
|
|
3173
|
+
* @param {*} [options] Override http request option.
|
|
3174
|
+
* @throws {RequiredError}
|
|
3175
|
+
*/
|
|
3176
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseListingsListResponse>;
|
|
3044
3177
|
/**
|
|
3045
3178
|
*
|
|
3046
3179
|
* @summary Phones Create
|
|
@@ -3177,6 +3310,15 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3177
3310
|
* @memberof UnboundApi
|
|
3178
3311
|
*/
|
|
3179
3312
|
emailsDelete(emailId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
3313
|
+
/**
|
|
3314
|
+
* List all listings
|
|
3315
|
+
* @summary Listings List
|
|
3316
|
+
* @param {string} [contactId]
|
|
3317
|
+
* @param {*} [options] Override http request option.
|
|
3318
|
+
* @throws {RequiredError}
|
|
3319
|
+
* @memberof UnboundApi
|
|
3320
|
+
*/
|
|
3321
|
+
listingsList(contactId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseListingsListResponse, any>>;
|
|
3180
3322
|
/**
|
|
3181
3323
|
*
|
|
3182
3324
|
* @summary Phones Create
|
|
@@ -3216,4 +3358,4 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3216
3358
|
webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
|
|
3217
3359
|
}
|
|
3218
3360
|
|
|
3219
|
-
export { type APIValidationError, type APIValidationErrorLocInner, type Address, type AddressCreate, type AddressItem, type AddressUpdate, AddressesApi, AddressesApiAxiosParamCreator, AddressesApiFactory, AddressesApiFp, type AddressesCreateResponse, type AddressesUpdateResponse, Configuration, type ConfigurationParameters, type ContactCreate, type ContactTypeData, type ContactTypeDataCreate, type ContactTypeDataUpdate, ContactTypeFilter, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, type ContactsCreateResponse, type ContactsGetResponse, type ContactsListResponse, type ContactsUpdateResponse, DataSource, type Email, type EmailCreate, EmailsApi, EmailsApiAxiosParamCreator, EmailsApiFactory, EmailsApiFp, type EmailsCreateResponse, type GuestData, type GuestDataCreate, type GuestDataUpdate, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, type LeadData, type ListResponseContactsListResponse, type ListResponseReservationsListResponse, type OwnerData, type Phone, type PhoneCreate, PhonesApi, PhonesApiAxiosParamCreator, PhonesApiFactory, PhonesApiFp, type PhonesCreateResponse, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type ReservationsListResponse, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp };
|
|
3361
|
+
export { type APIValidationError, type APIValidationErrorLocInner, type Address, type AddressCreate, type AddressItem, type AddressUpdate, AddressesApi, AddressesApiAxiosParamCreator, AddressesApiFactory, AddressesApiFp, type AddressesCreateResponse, type AddressesUpdateResponse, Configuration, type ConfigurationParameters, type ContactCreate, type ContactTypeData, type ContactTypeDataCreate, type ContactTypeDataUpdate, ContactTypeFilter, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, type ContactsCreateResponse, type ContactsGetResponse, type ContactsListResponse, type ContactsUpdateResponse, DataSource, type Email, type EmailCreate, EmailsApi, EmailsApiAxiosParamCreator, EmailsApiFactory, EmailsApiFp, type EmailsCreateResponse, type GuestData, type GuestDataCreate, type GuestDataUpdate, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type HostawayWebhook, type LeadData, type ListResponseContactsListResponse, type ListResponseListingsListResponse, type ListResponseReservationsListResponse, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ListingsListResponse, type OwnerData, type Phone, type PhoneCreate, PhonesApi, PhonesApiAxiosParamCreator, PhonesApiFactory, PhonesApiFp, type PhonesCreateResponse, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type ReservationsListResponse, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp };
|