@ember-home/unbound-ts-client 0.0.10 → 0.0.11
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 +26 -26
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +26 -26
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1868,12 +1868,12 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
1868
1868
|
/**
|
|
1869
1869
|
*
|
|
1870
1870
|
* @summary Contacts List
|
|
1871
|
-
* @param {ContactType} [
|
|
1871
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
1872
1872
|
* @param {string} [searchString]
|
|
1873
1873
|
* @param {*} [options] Override http request option.
|
|
1874
1874
|
* @throws {RequiredError}
|
|
1875
1875
|
*/
|
|
1876
|
-
contactsList: (
|
|
1876
|
+
contactsList: (contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1877
1877
|
/**
|
|
1878
1878
|
*
|
|
1879
1879
|
* @summary Contacts Update
|
|
@@ -1976,12 +1976,12 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
1976
1976
|
/**
|
|
1977
1977
|
*
|
|
1978
1978
|
* @summary Contacts List
|
|
1979
|
-
* @param {ContactType} [
|
|
1979
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
1980
1980
|
* @param {string} [searchString]
|
|
1981
1981
|
* @param {*} [options] Override http request option.
|
|
1982
1982
|
* @throws {RequiredError}
|
|
1983
1983
|
*/
|
|
1984
|
-
contactsList(
|
|
1984
|
+
contactsList(contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseContactsListResponse>>;
|
|
1985
1985
|
/**
|
|
1986
1986
|
*
|
|
1987
1987
|
* @summary Contacts Update
|
|
@@ -2084,12 +2084,12 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2084
2084
|
/**
|
|
2085
2085
|
*
|
|
2086
2086
|
* @summary Contacts List
|
|
2087
|
-
* @param {ContactType} [
|
|
2087
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
2088
2088
|
* @param {string} [searchString]
|
|
2089
2089
|
* @param {*} [options] Override http request option.
|
|
2090
2090
|
* @throws {RequiredError}
|
|
2091
2091
|
*/
|
|
2092
|
-
contactsList(
|
|
2092
|
+
contactsList(contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseContactsListResponse>;
|
|
2093
2093
|
/**
|
|
2094
2094
|
*
|
|
2095
2095
|
* @summary Contacts Update
|
|
@@ -2200,13 +2200,13 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2200
2200
|
/**
|
|
2201
2201
|
*
|
|
2202
2202
|
* @summary Contacts List
|
|
2203
|
-
* @param {ContactType} [
|
|
2203
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
2204
2204
|
* @param {string} [searchString]
|
|
2205
2205
|
* @param {*} [options] Override http request option.
|
|
2206
2206
|
* @throws {RequiredError}
|
|
2207
2207
|
* @memberof ContactsApi
|
|
2208
2208
|
*/
|
|
2209
|
-
contactsList(
|
|
2209
|
+
contactsList(contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseContactsListResponse, any>>;
|
|
2210
2210
|
/**
|
|
2211
2211
|
*
|
|
2212
2212
|
* @summary Contacts Update
|
|
@@ -2624,12 +2624,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2624
2624
|
/**
|
|
2625
2625
|
*
|
|
2626
2626
|
* @summary Contacts List
|
|
2627
|
-
* @param {ContactType} [
|
|
2627
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
2628
2628
|
* @param {string} [searchString]
|
|
2629
2629
|
* @param {*} [options] Override http request option.
|
|
2630
2630
|
* @throws {RequiredError}
|
|
2631
2631
|
*/
|
|
2632
|
-
contactsList: (
|
|
2632
|
+
contactsList: (contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2633
2633
|
/**
|
|
2634
2634
|
*
|
|
2635
2635
|
* @summary Contacts Update
|
|
@@ -2748,12 +2748,12 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2748
2748
|
/**
|
|
2749
2749
|
*
|
|
2750
2750
|
* @summary Contacts List
|
|
2751
|
-
* @param {ContactType} [
|
|
2751
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
2752
2752
|
* @param {string} [searchString]
|
|
2753
2753
|
* @param {*} [options] Override http request option.
|
|
2754
2754
|
* @throws {RequiredError}
|
|
2755
2755
|
*/
|
|
2756
|
-
contactsList(
|
|
2756
|
+
contactsList(contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseContactsListResponse>>;
|
|
2757
2757
|
/**
|
|
2758
2758
|
*
|
|
2759
2759
|
* @summary Contacts Update
|
|
@@ -2872,12 +2872,12 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
2872
2872
|
/**
|
|
2873
2873
|
*
|
|
2874
2874
|
* @summary Contacts List
|
|
2875
|
-
* @param {ContactType} [
|
|
2875
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
2876
2876
|
* @param {string} [searchString]
|
|
2877
2877
|
* @param {*} [options] Override http request option.
|
|
2878
2878
|
* @throws {RequiredError}
|
|
2879
2879
|
*/
|
|
2880
|
-
contactsList(
|
|
2880
|
+
contactsList(contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseContactsListResponse>;
|
|
2881
2881
|
/**
|
|
2882
2882
|
*
|
|
2883
2883
|
* @summary Contacts Update
|
|
@@ -3004,13 +3004,13 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3004
3004
|
/**
|
|
3005
3005
|
*
|
|
3006
3006
|
* @summary Contacts List
|
|
3007
|
-
* @param {ContactType} [
|
|
3007
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
3008
3008
|
* @param {string} [searchString]
|
|
3009
3009
|
* @param {*} [options] Override http request option.
|
|
3010
3010
|
* @throws {RequiredError}
|
|
3011
3011
|
* @memberof UnboundApi
|
|
3012
3012
|
*/
|
|
3013
|
-
contactsList(
|
|
3013
|
+
contactsList(contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseContactsListResponse, any>>;
|
|
3014
3014
|
/**
|
|
3015
3015
|
*
|
|
3016
3016
|
* @summary Contacts Update
|
package/dist/index.d.ts
CHANGED
|
@@ -1868,12 +1868,12 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
1868
1868
|
/**
|
|
1869
1869
|
*
|
|
1870
1870
|
* @summary Contacts List
|
|
1871
|
-
* @param {ContactType} [
|
|
1871
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
1872
1872
|
* @param {string} [searchString]
|
|
1873
1873
|
* @param {*} [options] Override http request option.
|
|
1874
1874
|
* @throws {RequiredError}
|
|
1875
1875
|
*/
|
|
1876
|
-
contactsList: (
|
|
1876
|
+
contactsList: (contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1877
1877
|
/**
|
|
1878
1878
|
*
|
|
1879
1879
|
* @summary Contacts Update
|
|
@@ -1976,12 +1976,12 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
1976
1976
|
/**
|
|
1977
1977
|
*
|
|
1978
1978
|
* @summary Contacts List
|
|
1979
|
-
* @param {ContactType} [
|
|
1979
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
1980
1980
|
* @param {string} [searchString]
|
|
1981
1981
|
* @param {*} [options] Override http request option.
|
|
1982
1982
|
* @throws {RequiredError}
|
|
1983
1983
|
*/
|
|
1984
|
-
contactsList(
|
|
1984
|
+
contactsList(contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseContactsListResponse>>;
|
|
1985
1985
|
/**
|
|
1986
1986
|
*
|
|
1987
1987
|
* @summary Contacts Update
|
|
@@ -2084,12 +2084,12 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
2084
2084
|
/**
|
|
2085
2085
|
*
|
|
2086
2086
|
* @summary Contacts List
|
|
2087
|
-
* @param {ContactType} [
|
|
2087
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
2088
2088
|
* @param {string} [searchString]
|
|
2089
2089
|
* @param {*} [options] Override http request option.
|
|
2090
2090
|
* @throws {RequiredError}
|
|
2091
2091
|
*/
|
|
2092
|
-
contactsList(
|
|
2092
|
+
contactsList(contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseContactsListResponse>;
|
|
2093
2093
|
/**
|
|
2094
2094
|
*
|
|
2095
2095
|
* @summary Contacts Update
|
|
@@ -2200,13 +2200,13 @@ declare class ContactsApi extends BaseAPI {
|
|
|
2200
2200
|
/**
|
|
2201
2201
|
*
|
|
2202
2202
|
* @summary Contacts List
|
|
2203
|
-
* @param {ContactType} [
|
|
2203
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
2204
2204
|
* @param {string} [searchString]
|
|
2205
2205
|
* @param {*} [options] Override http request option.
|
|
2206
2206
|
* @throws {RequiredError}
|
|
2207
2207
|
* @memberof ContactsApi
|
|
2208
2208
|
*/
|
|
2209
|
-
contactsList(
|
|
2209
|
+
contactsList(contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseContactsListResponse, any>>;
|
|
2210
2210
|
/**
|
|
2211
2211
|
*
|
|
2212
2212
|
* @summary Contacts Update
|
|
@@ -2624,12 +2624,12 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
2624
2624
|
/**
|
|
2625
2625
|
*
|
|
2626
2626
|
* @summary Contacts List
|
|
2627
|
-
* @param {ContactType} [
|
|
2627
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
2628
2628
|
* @param {string} [searchString]
|
|
2629
2629
|
* @param {*} [options] Override http request option.
|
|
2630
2630
|
* @throws {RequiredError}
|
|
2631
2631
|
*/
|
|
2632
|
-
contactsList: (
|
|
2632
|
+
contactsList: (contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2633
2633
|
/**
|
|
2634
2634
|
*
|
|
2635
2635
|
* @summary Contacts Update
|
|
@@ -2748,12 +2748,12 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
2748
2748
|
/**
|
|
2749
2749
|
*
|
|
2750
2750
|
* @summary Contacts List
|
|
2751
|
-
* @param {ContactType} [
|
|
2751
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
2752
2752
|
* @param {string} [searchString]
|
|
2753
2753
|
* @param {*} [options] Override http request option.
|
|
2754
2754
|
* @throws {RequiredError}
|
|
2755
2755
|
*/
|
|
2756
|
-
contactsList(
|
|
2756
|
+
contactsList(contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListResponseContactsListResponse>>;
|
|
2757
2757
|
/**
|
|
2758
2758
|
*
|
|
2759
2759
|
* @summary Contacts Update
|
|
@@ -2872,12 +2872,12 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
2872
2872
|
/**
|
|
2873
2873
|
*
|
|
2874
2874
|
* @summary Contacts List
|
|
2875
|
-
* @param {ContactType} [
|
|
2875
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
2876
2876
|
* @param {string} [searchString]
|
|
2877
2877
|
* @param {*} [options] Override http request option.
|
|
2878
2878
|
* @throws {RequiredError}
|
|
2879
2879
|
*/
|
|
2880
|
-
contactsList(
|
|
2880
|
+
contactsList(contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListResponseContactsListResponse>;
|
|
2881
2881
|
/**
|
|
2882
2882
|
*
|
|
2883
2883
|
* @summary Contacts Update
|
|
@@ -3004,13 +3004,13 @@ declare class UnboundApi extends BaseAPI {
|
|
|
3004
3004
|
/**
|
|
3005
3005
|
*
|
|
3006
3006
|
* @summary Contacts List
|
|
3007
|
-
* @param {ContactType} [
|
|
3007
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
3008
3008
|
* @param {string} [searchString]
|
|
3009
3009
|
* @param {*} [options] Override http request option.
|
|
3010
3010
|
* @throws {RequiredError}
|
|
3011
3011
|
* @memberof UnboundApi
|
|
3012
3012
|
*/
|
|
3013
|
-
contactsList(
|
|
3013
|
+
contactsList(contactTypes?: Array<ContactType>, searchString?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListResponseContactsListResponse, any>>;
|
|
3014
3014
|
/**
|
|
3015
3015
|
*
|
|
3016
3016
|
* @summary Contacts Update
|
package/dist/index.js
CHANGED
|
@@ -503,12 +503,12 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
503
503
|
/**
|
|
504
504
|
*
|
|
505
505
|
* @summary Contacts List
|
|
506
|
-
* @param {ContactType} [
|
|
506
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
507
507
|
* @param {string} [searchString]
|
|
508
508
|
* @param {*} [options] Override http request option.
|
|
509
509
|
* @throws {RequiredError}
|
|
510
510
|
*/
|
|
511
|
-
contactsList: async (
|
|
511
|
+
contactsList: async (contactTypes, searchString, options = {}) => {
|
|
512
512
|
const localVarPath = `/contacts`;
|
|
513
513
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
514
514
|
let baseOptions;
|
|
@@ -518,8 +518,8 @@ var ContactsApiAxiosParamCreator = function(configuration) {
|
|
|
518
518
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
519
519
|
const localVarHeaderParameter = {};
|
|
520
520
|
const localVarQueryParameter = {};
|
|
521
|
-
if (
|
|
522
|
-
localVarQueryParameter["
|
|
521
|
+
if (contactTypes) {
|
|
522
|
+
localVarQueryParameter["contactTypes"] = contactTypes;
|
|
523
523
|
}
|
|
524
524
|
if (searchString !== void 0) {
|
|
525
525
|
localVarQueryParameter["searchString"] = searchString;
|
|
@@ -762,13 +762,13 @@ var ContactsApiFp = function(configuration) {
|
|
|
762
762
|
/**
|
|
763
763
|
*
|
|
764
764
|
* @summary Contacts List
|
|
765
|
-
* @param {ContactType} [
|
|
765
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
766
766
|
* @param {string} [searchString]
|
|
767
767
|
* @param {*} [options] Override http request option.
|
|
768
768
|
* @throws {RequiredError}
|
|
769
769
|
*/
|
|
770
|
-
async contactsList(
|
|
771
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsList(
|
|
770
|
+
async contactsList(contactTypes, searchString, options) {
|
|
771
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsList(contactTypes, searchString, options);
|
|
772
772
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _38 => _38.serverIndex]), () => ( 0));
|
|
773
773
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _39 => _39["ContactsApi.contactsList"], 'optionalAccess', _40 => _40[localVarOperationServerIndex], 'optionalAccess', _41 => _41.url]);
|
|
774
774
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -911,13 +911,13 @@ var ContactsApiFactory = function(configuration, basePath, axios) {
|
|
|
911
911
|
/**
|
|
912
912
|
*
|
|
913
913
|
* @summary Contacts List
|
|
914
|
-
* @param {ContactType} [
|
|
914
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
915
915
|
* @param {string} [searchString]
|
|
916
916
|
* @param {*} [options] Override http request option.
|
|
917
917
|
* @throws {RequiredError}
|
|
918
918
|
*/
|
|
919
|
-
contactsList(
|
|
920
|
-
return localVarFp.contactsList(
|
|
919
|
+
contactsList(contactTypes, searchString, options) {
|
|
920
|
+
return localVarFp.contactsList(contactTypes, searchString, options).then((request) => request(axios, basePath));
|
|
921
921
|
},
|
|
922
922
|
/**
|
|
923
923
|
*
|
|
@@ -1046,14 +1046,14 @@ var ContactsApi = class extends BaseAPI {
|
|
|
1046
1046
|
/**
|
|
1047
1047
|
*
|
|
1048
1048
|
* @summary Contacts List
|
|
1049
|
-
* @param {ContactType} [
|
|
1049
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
1050
1050
|
* @param {string} [searchString]
|
|
1051
1051
|
* @param {*} [options] Override http request option.
|
|
1052
1052
|
* @throws {RequiredError}
|
|
1053
1053
|
* @memberof ContactsApi
|
|
1054
1054
|
*/
|
|
1055
|
-
contactsList(
|
|
1056
|
-
return ContactsApiFp(this.configuration).contactsList(
|
|
1055
|
+
contactsList(contactTypes, searchString, options) {
|
|
1056
|
+
return ContactsApiFp(this.configuration).contactsList(contactTypes, searchString, options).then((request) => request(this.axios, this.basePath));
|
|
1057
1057
|
}
|
|
1058
1058
|
/**
|
|
1059
1059
|
*
|
|
@@ -1728,12 +1728,12 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
1728
1728
|
/**
|
|
1729
1729
|
*
|
|
1730
1730
|
* @summary Contacts List
|
|
1731
|
-
* @param {ContactType} [
|
|
1731
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
1732
1732
|
* @param {string} [searchString]
|
|
1733
1733
|
* @param {*} [options] Override http request option.
|
|
1734
1734
|
* @throws {RequiredError}
|
|
1735
1735
|
*/
|
|
1736
|
-
contactsList: async (
|
|
1736
|
+
contactsList: async (contactTypes, searchString, options = {}) => {
|
|
1737
1737
|
const localVarPath = `/contacts`;
|
|
1738
1738
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1739
1739
|
let baseOptions;
|
|
@@ -1743,8 +1743,8 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
1743
1743
|
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
1744
1744
|
const localVarHeaderParameter = {};
|
|
1745
1745
|
const localVarQueryParameter = {};
|
|
1746
|
-
if (
|
|
1747
|
-
localVarQueryParameter["
|
|
1746
|
+
if (contactTypes) {
|
|
1747
|
+
localVarQueryParameter["contactTypes"] = contactTypes;
|
|
1748
1748
|
}
|
|
1749
1749
|
if (searchString !== void 0) {
|
|
1750
1750
|
localVarQueryParameter["searchString"] = searchString;
|
|
@@ -2044,13 +2044,13 @@ var UnboundApiFp = function(configuration) {
|
|
|
2044
2044
|
/**
|
|
2045
2045
|
*
|
|
2046
2046
|
* @summary Contacts List
|
|
2047
|
-
* @param {ContactType} [
|
|
2047
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
2048
2048
|
* @param {string} [searchString]
|
|
2049
2049
|
* @param {*} [options] Override http request option.
|
|
2050
2050
|
* @throws {RequiredError}
|
|
2051
2051
|
*/
|
|
2052
|
-
async contactsList(
|
|
2053
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsList(
|
|
2052
|
+
async contactsList(contactTypes, searchString, options) {
|
|
2053
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.contactsList(contactTypes, searchString, options);
|
|
2054
2054
|
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _110 => _110.serverIndex]), () => ( 0));
|
|
2055
2055
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _111 => _111["UnboundApi.contactsList"], 'optionalAccess', _112 => _112[localVarOperationServerIndex], 'optionalAccess', _113 => _113.url]);
|
|
2056
2056
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -2219,13 +2219,13 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
2219
2219
|
/**
|
|
2220
2220
|
*
|
|
2221
2221
|
* @summary Contacts List
|
|
2222
|
-
* @param {ContactType} [
|
|
2222
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
2223
2223
|
* @param {string} [searchString]
|
|
2224
2224
|
* @param {*} [options] Override http request option.
|
|
2225
2225
|
* @throws {RequiredError}
|
|
2226
2226
|
*/
|
|
2227
|
-
contactsList(
|
|
2228
|
-
return localVarFp.contactsList(
|
|
2227
|
+
contactsList(contactTypes, searchString, options) {
|
|
2228
|
+
return localVarFp.contactsList(contactTypes, searchString, options).then((request) => request(axios, basePath));
|
|
2229
2229
|
},
|
|
2230
2230
|
/**
|
|
2231
2231
|
*
|
|
@@ -2374,14 +2374,14 @@ var UnboundApi = class extends BaseAPI {
|
|
|
2374
2374
|
/**
|
|
2375
2375
|
*
|
|
2376
2376
|
* @summary Contacts List
|
|
2377
|
-
* @param {ContactType} [
|
|
2377
|
+
* @param {Array<ContactType>} [contactTypes]
|
|
2378
2378
|
* @param {string} [searchString]
|
|
2379
2379
|
* @param {*} [options] Override http request option.
|
|
2380
2380
|
* @throws {RequiredError}
|
|
2381
2381
|
* @memberof UnboundApi
|
|
2382
2382
|
*/
|
|
2383
|
-
contactsList(
|
|
2384
|
-
return UnboundApiFp(this.configuration).contactsList(
|
|
2383
|
+
contactsList(contactTypes, searchString, options) {
|
|
2384
|
+
return UnboundApiFp(this.configuration).contactsList(contactTypes, searchString, options).then((request) => request(this.axios, this.basePath));
|
|
2385
2385
|
}
|
|
2386
2386
|
/**
|
|
2387
2387
|
*
|