@ember-home/unbound-ts-client 0.0.23 → 0.0.24
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 +16 -16
- package/dist/index.d.ts +16 -16
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2619,7 +2619,7 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2619
2619
|
/**
|
|
2620
2620
|
*
|
|
2621
2621
|
* @summary Contacts List
|
|
2622
|
-
* @param {string} [searchString]
|
|
2622
|
+
* @param {string | null} [searchString]
|
|
2623
2623
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2624
2624
|
* @param {number} [limit]
|
|
2625
2625
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -2628,7 +2628,7 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2628
2628
|
* @param {*} [options] Override http request option.
|
|
2629
2629
|
* @throws {RequiredError}
|
|
2630
2630
|
*/
|
|
2631
|
-
contactsList: (searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2631
|
+
contactsList: (searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2632
2632
|
/**
|
|
2633
2633
|
* Removes an association between a contact and a listing.
|
|
2634
2634
|
* @summary Delete Contact Listing
|
|
@@ -2761,7 +2761,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2761
2761
|
/**
|
|
2762
2762
|
*
|
|
2763
2763
|
* @summary Contacts List
|
|
2764
|
-
* @param {string} [searchString]
|
|
2764
|
+
* @param {string | null} [searchString]
|
|
2765
2765
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2766
2766
|
* @param {number} [limit]
|
|
2767
2767
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -2770,7 +2770,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2770
2770
|
* @param {*} [options] Override http request option.
|
|
2771
2771
|
* @throws {RequiredError}
|
|
2772
2772
|
*/
|
|
2773
|
-
contactsList(searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContacts>>;
|
|
2773
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContacts>>;
|
|
2774
2774
|
/**
|
|
2775
2775
|
* Removes an association between a contact and a listing.
|
|
2776
2776
|
* @summary Delete Contact Listing
|
|
@@ -2903,7 +2903,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2903
2903
|
/**
|
|
2904
2904
|
*
|
|
2905
2905
|
* @summary Contacts List
|
|
2906
|
-
* @param {string} [searchString]
|
|
2906
|
+
* @param {string | null} [searchString]
|
|
2907
2907
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2908
2908
|
* @param {number} [limit]
|
|
2909
2909
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -2912,7 +2912,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2912
2912
|
* @param {*} [options] Override http request option.
|
|
2913
2913
|
* @throws {RequiredError}
|
|
2914
2914
|
*/
|
|
2915
|
-
contactsList(searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContacts>;
|
|
2915
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContacts>;
|
|
2916
2916
|
/**
|
|
2917
2917
|
* Removes an association between a contact and a listing.
|
|
2918
2918
|
* @summary Delete Contact Listing
|
|
@@ -3054,7 +3054,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
3054
3054
|
/**
|
|
3055
3055
|
*
|
|
3056
3056
|
* @summary Contacts List
|
|
3057
|
-
* @param {string} [searchString]
|
|
3057
|
+
* @param {string | null} [searchString]
|
|
3058
3058
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3059
3059
|
* @param {number} [limit]
|
|
3060
3060
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3064,7 +3064,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
3064
3064
|
* @throws {RequiredError}
|
|
3065
3065
|
* @memberof ContactsApi
|
|
3066
3066
|
*/
|
|
3067
|
-
contactsList(searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContacts, any>>;
|
|
3067
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContacts, any>>;
|
|
3068
3068
|
/**
|
|
3069
3069
|
* Removes an association between a contact and a listing.
|
|
3070
3070
|
* @summary Delete Contact Listing
|
|
@@ -3856,7 +3856,7 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3856
3856
|
/**
|
|
3857
3857
|
*
|
|
3858
3858
|
* @summary Contacts List
|
|
3859
|
-
* @param {string} [searchString]
|
|
3859
|
+
* @param {string | null} [searchString]
|
|
3860
3860
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3861
3861
|
* @param {number} [limit]
|
|
3862
3862
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3865,7 +3865,7 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3865
3865
|
* @param {*} [options] Override http request option.
|
|
3866
3866
|
* @throws {RequiredError}
|
|
3867
3867
|
*/
|
|
3868
|
-
contactsList: (searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3868
|
+
contactsList: (searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3869
3869
|
/**
|
|
3870
3870
|
* Removes an association between a contact and a listing.
|
|
3871
3871
|
* @summary Delete Contact Listing
|
|
@@ -4077,7 +4077,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
4077
4077
|
/**
|
|
4078
4078
|
*
|
|
4079
4079
|
* @summary Contacts List
|
|
4080
|
-
* @param {string} [searchString]
|
|
4080
|
+
* @param {string | null} [searchString]
|
|
4081
4081
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4082
4082
|
* @param {number} [limit]
|
|
4083
4083
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -4086,7 +4086,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
4086
4086
|
* @param {*} [options] Override http request option.
|
|
4087
4087
|
* @throws {RequiredError}
|
|
4088
4088
|
*/
|
|
4089
|
-
contactsList(searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContacts>>;
|
|
4089
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContacts>>;
|
|
4090
4090
|
/**
|
|
4091
4091
|
* Removes an association between a contact and a listing.
|
|
4092
4092
|
* @summary Delete Contact Listing
|
|
@@ -4298,7 +4298,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
4298
4298
|
/**
|
|
4299
4299
|
*
|
|
4300
4300
|
* @summary Contacts List
|
|
4301
|
-
* @param {string} [searchString]
|
|
4301
|
+
* @param {string | null} [searchString]
|
|
4302
4302
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4303
4303
|
* @param {number} [limit]
|
|
4304
4304
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -4307,7 +4307,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
4307
4307
|
* @param {*} [options] Override http request option.
|
|
4308
4308
|
* @throws {RequiredError}
|
|
4309
4309
|
*/
|
|
4310
|
-
contactsList(searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContacts>;
|
|
4310
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContacts>;
|
|
4311
4311
|
/**
|
|
4312
4312
|
* Removes an association between a contact and a listing.
|
|
4313
4313
|
* @summary Delete Contact Listing
|
|
@@ -4529,7 +4529,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
4529
4529
|
/**
|
|
4530
4530
|
*
|
|
4531
4531
|
* @summary Contacts List
|
|
4532
|
-
* @param {string} [searchString]
|
|
4532
|
+
* @param {string | null} [searchString]
|
|
4533
4533
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4534
4534
|
* @param {number} [limit]
|
|
4535
4535
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -4539,7 +4539,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
4539
4539
|
* @throws {RequiredError}
|
|
4540
4540
|
* @memberof UnboundApi
|
|
4541
4541
|
*/
|
|
4542
|
-
contactsList(searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContacts, any>>;
|
|
4542
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContacts, any>>;
|
|
4543
4543
|
/**
|
|
4544
4544
|
* Removes an association between a contact and a listing.
|
|
4545
4545
|
* @summary Delete Contact Listing
|
package/dist/index.d.ts
CHANGED
|
@@ -2619,7 +2619,7 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2619
2619
|
/**
|
|
2620
2620
|
*
|
|
2621
2621
|
* @summary Contacts List
|
|
2622
|
-
* @param {string} [searchString]
|
|
2622
|
+
* @param {string | null} [searchString]
|
|
2623
2623
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2624
2624
|
* @param {number} [limit]
|
|
2625
2625
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -2628,7 +2628,7 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2628
2628
|
* @param {*} [options] Override http request option.
|
|
2629
2629
|
* @throws {RequiredError}
|
|
2630
2630
|
*/
|
|
2631
|
-
contactsList: (searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2631
|
+
contactsList: (searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2632
2632
|
/**
|
|
2633
2633
|
* Removes an association between a contact and a listing.
|
|
2634
2634
|
* @summary Delete Contact Listing
|
|
@@ -2761,7 +2761,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2761
2761
|
/**
|
|
2762
2762
|
*
|
|
2763
2763
|
* @summary Contacts List
|
|
2764
|
-
* @param {string} [searchString]
|
|
2764
|
+
* @param {string | null} [searchString]
|
|
2765
2765
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2766
2766
|
* @param {number} [limit]
|
|
2767
2767
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -2770,7 +2770,7 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
2770
2770
|
* @param {*} [options] Override http request option.
|
|
2771
2771
|
* @throws {RequiredError}
|
|
2772
2772
|
*/
|
|
2773
|
-
contactsList(searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContacts>>;
|
|
2773
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContacts>>;
|
|
2774
2774
|
/**
|
|
2775
2775
|
* Removes an association between a contact and a listing.
|
|
2776
2776
|
* @summary Delete Contact Listing
|
|
@@ -2903,7 +2903,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2903
2903
|
/**
|
|
2904
2904
|
*
|
|
2905
2905
|
* @summary Contacts List
|
|
2906
|
-
* @param {string} [searchString]
|
|
2906
|
+
* @param {string | null} [searchString]
|
|
2907
2907
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2908
2908
|
* @param {number} [limit]
|
|
2909
2909
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -2912,7 +2912,7 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2912
2912
|
* @param {*} [options] Override http request option.
|
|
2913
2913
|
* @throws {RequiredError}
|
|
2914
2914
|
*/
|
|
2915
|
-
contactsList(searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContacts>;
|
|
2915
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContacts>;
|
|
2916
2916
|
/**
|
|
2917
2917
|
* Removes an association between a contact and a listing.
|
|
2918
2918
|
* @summary Delete Contact Listing
|
|
@@ -3054,7 +3054,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
3054
3054
|
/**
|
|
3055
3055
|
*
|
|
3056
3056
|
* @summary Contacts List
|
|
3057
|
-
* @param {string} [searchString]
|
|
3057
|
+
* @param {string | null} [searchString]
|
|
3058
3058
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3059
3059
|
* @param {number} [limit]
|
|
3060
3060
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3064,7 +3064,7 @@ declare class ContactsApi extends BaseAPI {
|
|
|
3064
3064
|
* @throws {RequiredError}
|
|
3065
3065
|
* @memberof ContactsApi
|
|
3066
3066
|
*/
|
|
3067
|
-
contactsList(searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContacts, any>>;
|
|
3067
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContacts, any>>;
|
|
3068
3068
|
/**
|
|
3069
3069
|
* Removes an association between a contact and a listing.
|
|
3070
3070
|
* @summary Delete Contact Listing
|
|
@@ -3856,7 +3856,7 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3856
3856
|
/**
|
|
3857
3857
|
*
|
|
3858
3858
|
* @summary Contacts List
|
|
3859
|
-
* @param {string} [searchString]
|
|
3859
|
+
* @param {string | null} [searchString]
|
|
3860
3860
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3861
3861
|
* @param {number} [limit]
|
|
3862
3862
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3865,7 +3865,7 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
3865
3865
|
* @param {*} [options] Override http request option.
|
|
3866
3866
|
* @throws {RequiredError}
|
|
3867
3867
|
*/
|
|
3868
|
-
contactsList: (searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3868
|
+
contactsList: (searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3869
3869
|
/**
|
|
3870
3870
|
* Removes an association between a contact and a listing.
|
|
3871
3871
|
* @summary Delete Contact Listing
|
|
@@ -4077,7 +4077,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
4077
4077
|
/**
|
|
4078
4078
|
*
|
|
4079
4079
|
* @summary Contacts List
|
|
4080
|
-
* @param {string} [searchString]
|
|
4080
|
+
* @param {string | null} [searchString]
|
|
4081
4081
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4082
4082
|
* @param {number} [limit]
|
|
4083
4083
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -4086,7 +4086,7 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
4086
4086
|
* @param {*} [options] Override http request option.
|
|
4087
4087
|
* @throws {RequiredError}
|
|
4088
4088
|
*/
|
|
4089
|
-
contactsList(searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContacts>>;
|
|
4089
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResponseContacts>>;
|
|
4090
4090
|
/**
|
|
4091
4091
|
* Removes an association between a contact and a listing.
|
|
4092
4092
|
* @summary Delete Contact Listing
|
|
@@ -4298,7 +4298,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
4298
4298
|
/**
|
|
4299
4299
|
*
|
|
4300
4300
|
* @summary Contacts List
|
|
4301
|
-
* @param {string} [searchString]
|
|
4301
|
+
* @param {string | null} [searchString]
|
|
4302
4302
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4303
4303
|
* @param {number} [limit]
|
|
4304
4304
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -4307,7 +4307,7 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
4307
4307
|
* @param {*} [options] Override http request option.
|
|
4308
4308
|
* @throws {RequiredError}
|
|
4309
4309
|
*/
|
|
4310
|
-
contactsList(searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContacts>;
|
|
4310
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedResponseContacts>;
|
|
4311
4311
|
/**
|
|
4312
4312
|
* Removes an association between a contact and a listing.
|
|
4313
4313
|
* @summary Delete Contact Listing
|
|
@@ -4529,7 +4529,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
4529
4529
|
/**
|
|
4530
4530
|
*
|
|
4531
4531
|
* @summary Contacts List
|
|
4532
|
-
* @param {string} [searchString]
|
|
4532
|
+
* @param {string | null} [searchString]
|
|
4533
4533
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
4534
4534
|
* @param {number} [limit]
|
|
4535
4535
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -4539,7 +4539,7 @@ declare class UnboundApi extends BaseAPI {
|
|
|
4539
4539
|
* @throws {RequiredError}
|
|
4540
4540
|
* @memberof UnboundApi
|
|
4541
4541
|
*/
|
|
4542
|
-
contactsList(searchString?: string, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContacts, any>>;
|
|
4542
|
+
contactsList(searchString?: string | null, cursor?: string | null, limit?: number, pageDir?: PaginationDirection, sortBy?: ContactSortBy, sortOrder?: SortOrder, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PaginatedResponseContacts, any>>;
|
|
4543
4543
|
/**
|
|
4544
4544
|
* Removes an association between a contact and a listing.
|
|
4545
4545
|
* @summary Delete Contact Listing
|
package/dist/index.js
CHANGED
|
@@ -591,7 +591,7 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
591
591
|
/**
|
|
592
592
|
*
|
|
593
593
|
* @summary Contacts List
|
|
594
|
-
* @param {string} [searchString]
|
|
594
|
+
* @param {string | null} [searchString]
|
|
595
595
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
596
596
|
* @param {number} [limit]
|
|
597
597
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -945,7 +945,7 @@ var ContactsApiFp = function(configuration) {
|
|
|
945
945
|
/**
|
|
946
946
|
*
|
|
947
947
|
* @summary Contacts List
|
|
948
|
-
* @param {string} [searchString]
|
|
948
|
+
* @param {string | null} [searchString]
|
|
949
949
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
950
950
|
* @param {number} [limit]
|
|
951
951
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -1140,7 +1140,7 @@ var ContactsApiFactory = function(configuration, basePath, axios) {
|
|
|
1140
1140
|
/**
|
|
1141
1141
|
*
|
|
1142
1142
|
* @summary Contacts List
|
|
1143
|
-
* @param {string} [searchString]
|
|
1143
|
+
* @param {string | null} [searchString]
|
|
1144
1144
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
1145
1145
|
* @param {number} [limit]
|
|
1146
1146
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -1316,7 +1316,7 @@ var ContactsApi = class extends BaseAPI {
|
|
|
1316
1316
|
/**
|
|
1317
1317
|
*
|
|
1318
1318
|
* @summary Contacts List
|
|
1319
|
-
* @param {string} [searchString]
|
|
1319
|
+
* @param {string | null} [searchString]
|
|
1320
1320
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
1321
1321
|
* @param {number} [limit]
|
|
1322
1322
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -2578,7 +2578,7 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
2578
2578
|
/**
|
|
2579
2579
|
*
|
|
2580
2580
|
* @summary Contacts List
|
|
2581
|
-
* @param {string} [searchString]
|
|
2581
|
+
* @param {string | null} [searchString]
|
|
2582
2582
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
2583
2583
|
* @param {number} [limit]
|
|
2584
2584
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3193,7 +3193,7 @@ var UnboundApiFp = function(configuration) {
|
|
|
3193
3193
|
/**
|
|
3194
3194
|
*
|
|
3195
3195
|
* @summary Contacts List
|
|
3196
|
-
* @param {string} [searchString]
|
|
3196
|
+
* @param {string | null} [searchString]
|
|
3197
3197
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3198
3198
|
* @param {number} [limit]
|
|
3199
3199
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3514,7 +3514,7 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
3514
3514
|
/**
|
|
3515
3515
|
*
|
|
3516
3516
|
* @summary Contacts List
|
|
3517
|
-
* @param {string} [searchString]
|
|
3517
|
+
* @param {string | null} [searchString]
|
|
3518
3518
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3519
3519
|
* @param {number} [limit]
|
|
3520
3520
|
* @param {PaginationDirection} [pageDir] Direction of paging
|
|
@@ -3790,7 +3790,7 @@ var UnboundApi = class extends BaseAPI {
|
|
|
3790
3790
|
/**
|
|
3791
3791
|
*
|
|
3792
3792
|
* @summary Contacts List
|
|
3793
|
-
* @param {string} [searchString]
|
|
3793
|
+
* @param {string | null} [searchString]
|
|
3794
3794
|
* @param {string | null} [cursor] Cursor for keyset paging
|
|
3795
3795
|
* @param {number} [limit]
|
|
3796
3796
|
* @param {PaginationDirection} [pageDir] Direction of paging
|