flexinet-api 0.0.1665 → 0.0.1668-prerelease0-dev

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