flexinet-api 0.0.1667-prerelease0-dev → 0.0.1669
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/README.md +2 -2
- package/api.ts +7 -15
- package/dist/api.d.ts +4 -8
- package/dist/api.js +7 -14
- package/dist/esm/api.d.ts +4 -8
- package/dist/esm/api.js +7 -14
- package/package.json +1 -1
package/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
## flexinet-api@0.0.
|
1
|
+
## flexinet-api@0.0.1669
|
2
2
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
4
4
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
36
36
|
_published:_
|
37
37
|
|
38
38
|
```
|
39
|
-
npm install flexinet-api@0.0.
|
39
|
+
npm install flexinet-api@0.0.1669 --save
|
40
40
|
```
|
41
41
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
@@ -5926,11 +5926,10 @@ export const ClientApiAxiosParamCreator = function (configuration?: Configuratio
|
|
5926
5926
|
* @param {Array<string>} [referenceIDs] reference ID
|
5927
5927
|
* @param {Array<string>} [clientIDs] client IDs
|
5928
5928
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
5929
|
-
* @param {boolean} [isExcluded] is client excluded
|
5930
5929
|
* @param {*} [options] Override http request option.
|
5931
5930
|
* @throws {RequiredError}
|
5932
5931
|
*/
|
5933
|
-
listClients: async (nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string,
|
5932
|
+
listClients: async (nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
5934
5933
|
const localVarPath = `/admins/clients`;
|
5935
5934
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
5936
5935
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
@@ -5967,10 +5966,6 @@ export const ClientApiAxiosParamCreator = function (configuration?: Configuratio
|
|
5967
5966
|
localVarQueryParameter['managerID'] = managerID;
|
5968
5967
|
}
|
5969
5968
|
|
5970
|
-
if (isExcluded !== undefined) {
|
5971
|
-
localVarQueryParameter['isExcluded'] = isExcluded;
|
5972
|
-
}
|
5973
|
-
|
5974
5969
|
|
5975
5970
|
|
5976
5971
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
@@ -6066,12 +6061,11 @@ export const ClientApiFp = function(configuration?: Configuration) {
|
|
6066
6061
|
* @param {Array<string>} [referenceIDs] reference ID
|
6067
6062
|
* @param {Array<string>} [clientIDs] client IDs
|
6068
6063
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
6069
|
-
* @param {boolean} [isExcluded] is client excluded
|
6070
6064
|
* @param {*} [options] Override http request option.
|
6071
6065
|
* @throws {RequiredError}
|
6072
6066
|
*/
|
6073
|
-
async listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string,
|
6074
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listClients(nextToken, search, referenceIDs, clientIDs, managerID,
|
6067
|
+
async listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClientListResponse>> {
|
6068
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listClients(nextToken, search, referenceIDs, clientIDs, managerID, options);
|
6075
6069
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
6076
6070
|
},
|
6077
6071
|
/**
|
@@ -6124,12 +6118,11 @@ export const ClientApiFactory = function (configuration?: Configuration, basePat
|
|
6124
6118
|
* @param {Array<string>} [referenceIDs] reference ID
|
6125
6119
|
* @param {Array<string>} [clientIDs] client IDs
|
6126
6120
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
6127
|
-
* @param {boolean} [isExcluded] is client excluded
|
6128
6121
|
* @param {*} [options] Override http request option.
|
6129
6122
|
* @throws {RequiredError}
|
6130
6123
|
*/
|
6131
|
-
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string,
|
6132
|
-
return localVarFp.listClients(nextToken, search, referenceIDs, clientIDs, managerID,
|
6124
|
+
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options?: any): AxiosPromise<ClientListResponse> {
|
6125
|
+
return localVarFp.listClients(nextToken, search, referenceIDs, clientIDs, managerID, options).then((request) => request(axios, basePath));
|
6133
6126
|
},
|
6134
6127
|
/**
|
6135
6128
|
* Update client
|
@@ -6184,13 +6177,12 @@ export class ClientApi extends BaseAPI {
|
|
6184
6177
|
* @param {Array<string>} [referenceIDs] reference ID
|
6185
6178
|
* @param {Array<string>} [clientIDs] client IDs
|
6186
6179
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
6187
|
-
* @param {boolean} [isExcluded] is client excluded
|
6188
6180
|
* @param {*} [options] Override http request option.
|
6189
6181
|
* @throws {RequiredError}
|
6190
6182
|
* @memberof ClientApi
|
6191
6183
|
*/
|
6192
|
-
public listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string,
|
6193
|
-
return ClientApiFp(this.configuration).listClients(nextToken, search, referenceIDs, clientIDs, managerID,
|
6184
|
+
public listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options?: AxiosRequestConfig) {
|
6185
|
+
return ClientApiFp(this.configuration).listClients(nextToken, search, referenceIDs, clientIDs, managerID, options).then((request) => request(this.axios, this.basePath));
|
6194
6186
|
}
|
6195
6187
|
|
6196
6188
|
/**
|
package/dist/api.d.ts
CHANGED
@@ -5010,11 +5010,10 @@ export declare const ClientApiAxiosParamCreator: (configuration?: Configuration)
|
|
5010
5010
|
* @param {Array<string>} [referenceIDs] reference ID
|
5011
5011
|
* @param {Array<string>} [clientIDs] client IDs
|
5012
5012
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
5013
|
-
* @param {boolean} [isExcluded] is client excluded
|
5014
5013
|
* @param {*} [options] Override http request option.
|
5015
5014
|
* @throws {RequiredError}
|
5016
5015
|
*/
|
5017
|
-
listClients: (nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string,
|
5016
|
+
listClients: (nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
5018
5017
|
/**
|
5019
5018
|
* Update client
|
5020
5019
|
* @summary Update client
|
@@ -5054,11 +5053,10 @@ export declare const ClientApiFp: (configuration?: Configuration) => {
|
|
5054
5053
|
* @param {Array<string>} [referenceIDs] reference ID
|
5055
5054
|
* @param {Array<string>} [clientIDs] client IDs
|
5056
5055
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
5057
|
-
* @param {boolean} [isExcluded] is client excluded
|
5058
5056
|
* @param {*} [options] Override http request option.
|
5059
5057
|
* @throws {RequiredError}
|
5060
5058
|
*/
|
5061
|
-
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string,
|
5059
|
+
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClientListResponse>>;
|
5062
5060
|
/**
|
5063
5061
|
* Update client
|
5064
5062
|
* @summary Update client
|
@@ -5098,11 +5096,10 @@ export declare const ClientApiFactory: (configuration?: Configuration, basePath?
|
|
5098
5096
|
* @param {Array<string>} [referenceIDs] reference ID
|
5099
5097
|
* @param {Array<string>} [clientIDs] client IDs
|
5100
5098
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
5101
|
-
* @param {boolean} [isExcluded] is client excluded
|
5102
5099
|
* @param {*} [options] Override http request option.
|
5103
5100
|
* @throws {RequiredError}
|
5104
5101
|
*/
|
5105
|
-
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string,
|
5102
|
+
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options?: any): AxiosPromise<ClientListResponse>;
|
5106
5103
|
/**
|
5107
5104
|
* Update client
|
5108
5105
|
* @summary Update client
|
@@ -5146,12 +5143,11 @@ export declare class ClientApi extends BaseAPI {
|
|
5146
5143
|
* @param {Array<string>} [referenceIDs] reference ID
|
5147
5144
|
* @param {Array<string>} [clientIDs] client IDs
|
5148
5145
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
5149
|
-
* @param {boolean} [isExcluded] is client excluded
|
5150
5146
|
* @param {*} [options] Override http request option.
|
5151
5147
|
* @throws {RequiredError}
|
5152
5148
|
* @memberof ClientApi
|
5153
5149
|
*/
|
5154
|
-
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string,
|
5150
|
+
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ClientListResponse, any>>;
|
5155
5151
|
/**
|
5156
5152
|
* Update client
|
5157
5153
|
* @summary Update client
|
package/dist/api.js
CHANGED
@@ -1646,11 +1646,10 @@ const ClientApiAxiosParamCreator = function (configuration) {
|
|
1646
1646
|
* @param {Array<string>} [referenceIDs] reference ID
|
1647
1647
|
* @param {Array<string>} [clientIDs] client IDs
|
1648
1648
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
1649
|
-
* @param {boolean} [isExcluded] is client excluded
|
1650
1649
|
* @param {*} [options] Override http request option.
|
1651
1650
|
* @throws {RequiredError}
|
1652
1651
|
*/
|
1653
|
-
listClients: (nextToken, search, referenceIDs, clientIDs, managerID,
|
1652
|
+
listClients: (nextToken, search, referenceIDs, clientIDs, managerID, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
1654
1653
|
const localVarPath = `/admins/clients`;
|
1655
1654
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
1656
1655
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
@@ -1679,9 +1678,6 @@ const ClientApiAxiosParamCreator = function (configuration) {
|
|
1679
1678
|
if (managerID !== undefined) {
|
1680
1679
|
localVarQueryParameter['managerID'] = managerID;
|
1681
1680
|
}
|
1682
|
-
if (isExcluded !== undefined) {
|
1683
|
-
localVarQueryParameter['isExcluded'] = isExcluded;
|
1684
|
-
}
|
1685
1681
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
1686
1682
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
1687
1683
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
@@ -1771,13 +1767,12 @@ const ClientApiFp = function (configuration) {
|
|
1771
1767
|
* @param {Array<string>} [referenceIDs] reference ID
|
1772
1768
|
* @param {Array<string>} [clientIDs] client IDs
|
1773
1769
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
1774
|
-
* @param {boolean} [isExcluded] is client excluded
|
1775
1770
|
* @param {*} [options] Override http request option.
|
1776
1771
|
* @throws {RequiredError}
|
1777
1772
|
*/
|
1778
|
-
listClients(nextToken, search, referenceIDs, clientIDs, managerID,
|
1773
|
+
listClients(nextToken, search, referenceIDs, clientIDs, managerID, options) {
|
1779
1774
|
return __awaiter(this, void 0, void 0, function* () {
|
1780
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.listClients(nextToken, search, referenceIDs, clientIDs, managerID,
|
1775
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listClients(nextToken, search, referenceIDs, clientIDs, managerID, options);
|
1781
1776
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
1782
1777
|
});
|
1783
1778
|
},
|
@@ -1833,12 +1828,11 @@ const ClientApiFactory = function (configuration, basePath, axios) {
|
|
1833
1828
|
* @param {Array<string>} [referenceIDs] reference ID
|
1834
1829
|
* @param {Array<string>} [clientIDs] client IDs
|
1835
1830
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
1836
|
-
* @param {boolean} [isExcluded] is client excluded
|
1837
1831
|
* @param {*} [options] Override http request option.
|
1838
1832
|
* @throws {RequiredError}
|
1839
1833
|
*/
|
1840
|
-
listClients(nextToken, search, referenceIDs, clientIDs, managerID,
|
1841
|
-
return localVarFp.listClients(nextToken, search, referenceIDs, clientIDs, managerID,
|
1834
|
+
listClients(nextToken, search, referenceIDs, clientIDs, managerID, options) {
|
1835
|
+
return localVarFp.listClients(nextToken, search, referenceIDs, clientIDs, managerID, options).then((request) => request(axios, basePath));
|
1842
1836
|
},
|
1843
1837
|
/**
|
1844
1838
|
* Update client
|
@@ -1891,13 +1885,12 @@ class ClientApi extends base_1.BaseAPI {
|
|
1891
1885
|
* @param {Array<string>} [referenceIDs] reference ID
|
1892
1886
|
* @param {Array<string>} [clientIDs] client IDs
|
1893
1887
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
1894
|
-
* @param {boolean} [isExcluded] is client excluded
|
1895
1888
|
* @param {*} [options] Override http request option.
|
1896
1889
|
* @throws {RequiredError}
|
1897
1890
|
* @memberof ClientApi
|
1898
1891
|
*/
|
1899
|
-
listClients(nextToken, search, referenceIDs, clientIDs, managerID,
|
1900
|
-
return (0, exports.ClientApiFp)(this.configuration).listClients(nextToken, search, referenceIDs, clientIDs, managerID,
|
1892
|
+
listClients(nextToken, search, referenceIDs, clientIDs, managerID, options) {
|
1893
|
+
return (0, exports.ClientApiFp)(this.configuration).listClients(nextToken, search, referenceIDs, clientIDs, managerID, options).then((request) => request(this.axios, this.basePath));
|
1901
1894
|
}
|
1902
1895
|
/**
|
1903
1896
|
* Update client
|
package/dist/esm/api.d.ts
CHANGED
@@ -5010,11 +5010,10 @@ export declare const ClientApiAxiosParamCreator: (configuration?: Configuration)
|
|
5010
5010
|
* @param {Array<string>} [referenceIDs] reference ID
|
5011
5011
|
* @param {Array<string>} [clientIDs] client IDs
|
5012
5012
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
5013
|
-
* @param {boolean} [isExcluded] is client excluded
|
5014
5013
|
* @param {*} [options] Override http request option.
|
5015
5014
|
* @throws {RequiredError}
|
5016
5015
|
*/
|
5017
|
-
listClients: (nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string,
|
5016
|
+
listClients: (nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
5018
5017
|
/**
|
5019
5018
|
* Update client
|
5020
5019
|
* @summary Update client
|
@@ -5054,11 +5053,10 @@ export declare const ClientApiFp: (configuration?: Configuration) => {
|
|
5054
5053
|
* @param {Array<string>} [referenceIDs] reference ID
|
5055
5054
|
* @param {Array<string>} [clientIDs] client IDs
|
5056
5055
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
5057
|
-
* @param {boolean} [isExcluded] is client excluded
|
5058
5056
|
* @param {*} [options] Override http request option.
|
5059
5057
|
* @throws {RequiredError}
|
5060
5058
|
*/
|
5061
|
-
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string,
|
5059
|
+
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClientListResponse>>;
|
5062
5060
|
/**
|
5063
5061
|
* Update client
|
5064
5062
|
* @summary Update client
|
@@ -5098,11 +5096,10 @@ export declare const ClientApiFactory: (configuration?: Configuration, basePath?
|
|
5098
5096
|
* @param {Array<string>} [referenceIDs] reference ID
|
5099
5097
|
* @param {Array<string>} [clientIDs] client IDs
|
5100
5098
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
5101
|
-
* @param {boolean} [isExcluded] is client excluded
|
5102
5099
|
* @param {*} [options] Override http request option.
|
5103
5100
|
* @throws {RequiredError}
|
5104
5101
|
*/
|
5105
|
-
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string,
|
5102
|
+
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options?: any): AxiosPromise<ClientListResponse>;
|
5106
5103
|
/**
|
5107
5104
|
* Update client
|
5108
5105
|
* @summary Update client
|
@@ -5146,12 +5143,11 @@ export declare class ClientApi extends BaseAPI {
|
|
5146
5143
|
* @param {Array<string>} [referenceIDs] reference ID
|
5147
5144
|
* @param {Array<string>} [clientIDs] client IDs
|
5148
5145
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
5149
|
-
* @param {boolean} [isExcluded] is client excluded
|
5150
5146
|
* @param {*} [options] Override http request option.
|
5151
5147
|
* @throws {RequiredError}
|
5152
5148
|
* @memberof ClientApi
|
5153
5149
|
*/
|
5154
|
-
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string,
|
5150
|
+
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ClientListResponse, any>>;
|
5155
5151
|
/**
|
5156
5152
|
* Update client
|
5157
5153
|
* @summary Update client
|
package/dist/esm/api.js
CHANGED
@@ -1625,11 +1625,10 @@ export const ClientApiAxiosParamCreator = function (configuration) {
|
|
1625
1625
|
* @param {Array<string>} [referenceIDs] reference ID
|
1626
1626
|
* @param {Array<string>} [clientIDs] client IDs
|
1627
1627
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
1628
|
-
* @param {boolean} [isExcluded] is client excluded
|
1629
1628
|
* @param {*} [options] Override http request option.
|
1630
1629
|
* @throws {RequiredError}
|
1631
1630
|
*/
|
1632
|
-
listClients: (nextToken, search, referenceIDs, clientIDs, managerID,
|
1631
|
+
listClients: (nextToken, search, referenceIDs, clientIDs, managerID, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
1633
1632
|
const localVarPath = `/admins/clients`;
|
1634
1633
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
1635
1634
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
@@ -1658,9 +1657,6 @@ export const ClientApiAxiosParamCreator = function (configuration) {
|
|
1658
1657
|
if (managerID !== undefined) {
|
1659
1658
|
localVarQueryParameter['managerID'] = managerID;
|
1660
1659
|
}
|
1661
|
-
if (isExcluded !== undefined) {
|
1662
|
-
localVarQueryParameter['isExcluded'] = isExcluded;
|
1663
|
-
}
|
1664
1660
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
1665
1661
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
1666
1662
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
@@ -1749,13 +1745,12 @@ export const ClientApiFp = function (configuration) {
|
|
1749
1745
|
* @param {Array<string>} [referenceIDs] reference ID
|
1750
1746
|
* @param {Array<string>} [clientIDs] client IDs
|
1751
1747
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
1752
|
-
* @param {boolean} [isExcluded] is client excluded
|
1753
1748
|
* @param {*} [options] Override http request option.
|
1754
1749
|
* @throws {RequiredError}
|
1755
1750
|
*/
|
1756
|
-
listClients(nextToken, search, referenceIDs, clientIDs, managerID,
|
1751
|
+
listClients(nextToken, search, referenceIDs, clientIDs, managerID, options) {
|
1757
1752
|
return __awaiter(this, void 0, void 0, function* () {
|
1758
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.listClients(nextToken, search, referenceIDs, clientIDs, managerID,
|
1753
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listClients(nextToken, search, referenceIDs, clientIDs, managerID, options);
|
1759
1754
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
1760
1755
|
});
|
1761
1756
|
},
|
@@ -1810,12 +1805,11 @@ export const ClientApiFactory = function (configuration, basePath, axios) {
|
|
1810
1805
|
* @param {Array<string>} [referenceIDs] reference ID
|
1811
1806
|
* @param {Array<string>} [clientIDs] client IDs
|
1812
1807
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
1813
|
-
* @param {boolean} [isExcluded] is client excluded
|
1814
1808
|
* @param {*} [options] Override http request option.
|
1815
1809
|
* @throws {RequiredError}
|
1816
1810
|
*/
|
1817
|
-
listClients(nextToken, search, referenceIDs, clientIDs, managerID,
|
1818
|
-
return localVarFp.listClients(nextToken, search, referenceIDs, clientIDs, managerID,
|
1811
|
+
listClients(nextToken, search, referenceIDs, clientIDs, managerID, options) {
|
1812
|
+
return localVarFp.listClients(nextToken, search, referenceIDs, clientIDs, managerID, options).then((request) => request(axios, basePath));
|
1819
1813
|
},
|
1820
1814
|
/**
|
1821
1815
|
* Update client
|
@@ -1867,13 +1861,12 @@ export class ClientApi extends BaseAPI {
|
|
1867
1861
|
* @param {Array<string>} [referenceIDs] reference ID
|
1868
1862
|
* @param {Array<string>} [clientIDs] client IDs
|
1869
1863
|
* @param {string} [managerID] manager ID for whose clients we want to list
|
1870
|
-
* @param {boolean} [isExcluded] is client excluded
|
1871
1864
|
* @param {*} [options] Override http request option.
|
1872
1865
|
* @throws {RequiredError}
|
1873
1866
|
* @memberof ClientApi
|
1874
1867
|
*/
|
1875
|
-
listClients(nextToken, search, referenceIDs, clientIDs, managerID,
|
1876
|
-
return ClientApiFp(this.configuration).listClients(nextToken, search, referenceIDs, clientIDs, managerID,
|
1868
|
+
listClients(nextToken, search, referenceIDs, clientIDs, managerID, options) {
|
1869
|
+
return ClientApiFp(this.configuration).listClients(nextToken, search, referenceIDs, clientIDs, managerID, options).then((request) => request(this.axios, this.basePath));
|
1877
1870
|
}
|
1878
1871
|
/**
|
1879
1872
|
* Update client
|