@ember-home/unbound-ts-client 0.0.12 → 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 CHANGED
@@ -479,19 +479,8 @@ interface ContactCreate {
479
479
  * @type {ContactTypeDataCreate}
480
480
  * @memberof ContactCreate
481
481
  */
482
- 'contactTypeData'?: ContactTypeDataCreate;
482
+ 'contactTypeData'?: ContactTypeDataCreate | null;
483
483
  }
484
- /**
485
- *
486
- * @export
487
- * @enum {string}
488
- */
489
- declare const ContactType: {
490
- readonly Guest: "GUEST";
491
- readonly Owner: "OWNER";
492
- readonly Lead: "LEAD";
493
- };
494
- type ContactType = typeof ContactType[keyof typeof ContactType];
495
484
  /**
496
485
  *
497
486
  * @export
@@ -567,6 +556,18 @@ interface ContactTypeDataUpdate {
567
556
  */
568
557
  'lead'?: object;
569
558
  }
559
+ /**
560
+ *
561
+ * @export
562
+ * @enum {string}
563
+ */
564
+ declare const ContactTypeFilter: {
565
+ readonly Guest: "guest";
566
+ readonly Owner: "owner";
567
+ readonly Lead: "lead";
568
+ readonly Basic: "basic";
569
+ };
570
+ type ContactTypeFilter = typeof ContactTypeFilter[keyof typeof ContactTypeFilter];
570
571
  /**
571
572
  *
572
573
  * @export
@@ -1645,6 +1646,19 @@ interface ListResponseContactsListResponse {
1645
1646
  */
1646
1647
  'data': Array<ContactsListResponse>;
1647
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
+ }
1648
1662
  /**
1649
1663
  *
1650
1664
  * @export
@@ -1658,6 +1672,43 @@ interface ListResponseReservationsListResponse {
1658
1672
  */
1659
1673
  'data': Array<ReservationsListResponse>;
1660
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
+ }
1661
1712
  /**
1662
1713
  *
1663
1714
  * @export
@@ -2004,12 +2055,12 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
2004
2055
  /**
2005
2056
  *
2006
2057
  * @summary Contacts List
2007
- * @param {Array<ContactType>} [contactTypes]
2058
+ * @param {Array<ContactTypeFilter>} [contactTypes]
2008
2059
  * @param {string} [searchString]
2009
2060
  * @param {*} [options] Override http request option.
2010
2061
  * @throws {RequiredError}
2011
2062
  */
2012
- contactsList: (contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2063
+ contactsList: (contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2013
2064
  /**
2014
2065
  *
2015
2066
  * @summary Contacts Update
@@ -2112,12 +2163,12 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
2112
2163
  /**
2113
2164
  *
2114
2165
  * @summary Contacts List
2115
- * @param {Array<ContactType>} [contactTypes]
2166
+ * @param {Array<ContactTypeFilter>} [contactTypes]
2116
2167
  * @param {string} [searchString]
2117
2168
  * @param {*} [options] Override http request option.
2118
2169
  * @throws {RequiredError}
2119
2170
  */
2120
- contactsList(contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseContactsListResponse>>;
2171
+ contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseContactsListResponse>>;
2121
2172
  /**
2122
2173
  *
2123
2174
  * @summary Contacts Update
@@ -2220,12 +2271,12 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
2220
2271
  /**
2221
2272
  *
2222
2273
  * @summary Contacts List
2223
- * @param {Array<ContactType>} [contactTypes]
2274
+ * @param {Array<ContactTypeFilter>} [contactTypes]
2224
2275
  * @param {string} [searchString]
2225
2276
  * @param {*} [options] Override http request option.
2226
2277
  * @throws {RequiredError}
2227
2278
  */
2228
- contactsList(contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseContactsListResponse>;
2279
+ contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseContactsListResponse>;
2229
2280
  /**
2230
2281
  *
2231
2282
  * @summary Contacts Update
@@ -2336,13 +2387,13 @@ declare class ContactsApi extends BaseAPI {
2336
2387
  /**
2337
2388
  *
2338
2389
  * @summary Contacts List
2339
- * @param {Array<ContactType>} [contactTypes]
2390
+ * @param {Array<ContactTypeFilter>} [contactTypes]
2340
2391
  * @param {string} [searchString]
2341
2392
  * @param {*} [options] Override http request option.
2342
2393
  * @throws {RequiredError}
2343
2394
  * @memberof ContactsApi
2344
2395
  */
2345
- contactsList(contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseContactsListResponse, any>>;
2396
+ contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseContactsListResponse, any>>;
2346
2397
  /**
2347
2398
  *
2348
2399
  * @summary Contacts Update
@@ -2547,6 +2598,65 @@ declare class HostawayApi extends BaseAPI {
2547
2598
  */
2548
2599
  webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
2549
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
+ }
2550
2660
  /**
2551
2661
  * PhonesApi - axios parameter creator
2552
2662
  * @export
@@ -2649,7 +2759,7 @@ declare class PhonesApi extends BaseAPI {
2649
2759
  */
2650
2760
  declare const ReservationsApiAxiosParamCreator: (configuration?: Configuration) => {
2651
2761
  /**
2652
- * List all contacts
2762
+ *
2653
2763
  * @summary Reservations List
2654
2764
  * @param {string} [contactId]
2655
2765
  * @param {*} [options] Override http request option.
@@ -2663,7 +2773,7 @@ declare const ReservationsApiAxiosParamCreator: (configuration?: Configuration)
2663
2773
  */
2664
2774
  declare const ReservationsApiFp: (configuration?: Configuration) => {
2665
2775
  /**
2666
- * List all contacts
2776
+ *
2667
2777
  * @summary Reservations List
2668
2778
  * @param {string} [contactId]
2669
2779
  * @param {*} [options] Override http request option.
@@ -2677,7 +2787,7 @@ declare const ReservationsApiFp: (configuration?: Configuration) => {
2677
2787
  */
2678
2788
  declare const ReservationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2679
2789
  /**
2680
- * List all contacts
2790
+ *
2681
2791
  * @summary Reservations List
2682
2792
  * @param {string} [contactId]
2683
2793
  * @param {*} [options] Override http request option.
@@ -2693,7 +2803,7 @@ declare const ReservationsApiFactory: (configuration?: Configuration, basePath?:
2693
2803
  */
2694
2804
  declare class ReservationsApi extends BaseAPI {
2695
2805
  /**
2696
- * List all contacts
2806
+ *
2697
2807
  * @summary Reservations List
2698
2808
  * @param {string} [contactId]
2699
2809
  * @param {*} [options] Override http request option.
@@ -2760,12 +2870,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
2760
2870
  /**
2761
2871
  *
2762
2872
  * @summary Contacts List
2763
- * @param {Array<ContactType>} [contactTypes]
2873
+ * @param {Array<ContactTypeFilter>} [contactTypes]
2764
2874
  * @param {string} [searchString]
2765
2875
  * @param {*} [options] Override http request option.
2766
2876
  * @throws {RequiredError}
2767
2877
  */
2768
- contactsList: (contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2878
+ contactsList: (contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2769
2879
  /**
2770
2880
  *
2771
2881
  * @summary Contacts Update
@@ -2792,6 +2902,14 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
2792
2902
  * @throws {RequiredError}
2793
2903
  */
2794
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>;
2795
2913
  /**
2796
2914
  *
2797
2915
  * @summary Phones Create
@@ -2810,7 +2928,7 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
2810
2928
  */
2811
2929
  phonesDelete: (phoneId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2812
2930
  /**
2813
- * List all contacts
2931
+ *
2814
2932
  * @summary Reservations List
2815
2933
  * @param {string} [contactId]
2816
2934
  * @param {*} [options] Override http request option.
@@ -2884,12 +3002,12 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
2884
3002
  /**
2885
3003
  *
2886
3004
  * @summary Contacts List
2887
- * @param {Array<ContactType>} [contactTypes]
3005
+ * @param {Array<ContactTypeFilter>} [contactTypes]
2888
3006
  * @param {string} [searchString]
2889
3007
  * @param {*} [options] Override http request option.
2890
3008
  * @throws {RequiredError}
2891
3009
  */
2892
- contactsList(contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseContactsListResponse>>;
3010
+ contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseContactsListResponse>>;
2893
3011
  /**
2894
3012
  *
2895
3013
  * @summary Contacts Update
@@ -2916,6 +3034,14 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
2916
3034
  * @throws {RequiredError}
2917
3035
  */
2918
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>>;
2919
3045
  /**
2920
3046
  *
2921
3047
  * @summary Phones Create
@@ -2934,7 +3060,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
2934
3060
  */
2935
3061
  phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2936
3062
  /**
2937
- * List all contacts
3063
+ *
2938
3064
  * @summary Reservations List
2939
3065
  * @param {string} [contactId]
2940
3066
  * @param {*} [options] Override http request option.
@@ -3008,12 +3134,12 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
3008
3134
  /**
3009
3135
  *
3010
3136
  * @summary Contacts List
3011
- * @param {Array<ContactType>} [contactTypes]
3137
+ * @param {Array<ContactTypeFilter>} [contactTypes]
3012
3138
  * @param {string} [searchString]
3013
3139
  * @param {*} [options] Override http request option.
3014
3140
  * @throws {RequiredError}
3015
3141
  */
3016
- contactsList(contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseContactsListResponse>;
3142
+ contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseContactsListResponse>;
3017
3143
  /**
3018
3144
  *
3019
3145
  * @summary Contacts Update
@@ -3040,6 +3166,14 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
3040
3166
  * @throws {RequiredError}
3041
3167
  */
3042
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>;
3043
3177
  /**
3044
3178
  *
3045
3179
  * @summary Phones Create
@@ -3058,7 +3192,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
3058
3192
  */
3059
3193
  phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
3060
3194
  /**
3061
- * List all contacts
3195
+ *
3062
3196
  * @summary Reservations List
3063
3197
  * @param {string} [contactId]
3064
3198
  * @param {*} [options] Override http request option.
@@ -3140,13 +3274,13 @@ declare class UnboundApi extends BaseAPI {
3140
3274
  /**
3141
3275
  *
3142
3276
  * @summary Contacts List
3143
- * @param {Array<ContactType>} [contactTypes]
3277
+ * @param {Array<ContactTypeFilter>} [contactTypes]
3144
3278
  * @param {string} [searchString]
3145
3279
  * @param {*} [options] Override http request option.
3146
3280
  * @throws {RequiredError}
3147
3281
  * @memberof UnboundApi
3148
3282
  */
3149
- contactsList(contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseContactsListResponse, any>>;
3283
+ contactsList(contactTypes?: Array<ContactTypeFilter>, searchString?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseContactsListResponse, any>>;
3150
3284
  /**
3151
3285
  *
3152
3286
  * @summary Contacts Update
@@ -3176,6 +3310,15 @@ declare class UnboundApi extends BaseAPI {
3176
3310
  * @memberof UnboundApi
3177
3311
  */
3178
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>>;
3179
3322
  /**
3180
3323
  *
3181
3324
  * @summary Phones Create
@@ -3196,7 +3339,7 @@ declare class UnboundApi extends BaseAPI {
3196
3339
  */
3197
3340
  phonesDelete(phoneId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
3198
3341
  /**
3199
- * List all contacts
3342
+ *
3200
3343
  * @summary Reservations List
3201
3344
  * @param {string} [contactId]
3202
3345
  * @param {*} [options] Override http request option.
@@ -3215,4 +3358,4 @@ declare class UnboundApi extends BaseAPI {
3215
3358
  webhook(hostawayWebhook: HostawayWebhook, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<any, any>>;
3216
3359
  }
3217
3360
 
3218
- 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, ContactType, type ContactTypeData, type ContactTypeDataCreate, type ContactTypeDataUpdate, 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 };