flexinet-api 0.0.444-prerelease0 → 0.0.449-prerelease0
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 +15 -7
- package/dist/api.d.ts +8 -4
- package/dist/api.js +14 -7
- package/dist/esm/api.d.ts +8 -4
- package/dist/esm/api.js +14 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## flexinet-api@0.0.
|
|
1
|
+
## flexinet-api@0.0.449-prerelease0
|
|
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.449-prerelease0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -3920,10 +3920,11 @@ export const ClientApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
3920
3920
|
* @param {string} [search] search string
|
|
3921
3921
|
* @param {Array<string>} [referenceIDs] reference ID
|
|
3922
3922
|
* @param {Array<string>} [clientIDs] client IDs
|
|
3923
|
+
* @param {string} [managerID] manager ID for whose clients we want to list
|
|
3923
3924
|
* @param {*} [options] Override http request option.
|
|
3924
3925
|
* @throws {RequiredError}
|
|
3925
3926
|
*/
|
|
3926
|
-
listClients: async (nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3927
|
+
listClients: async (nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3927
3928
|
const localVarPath = `/admins/clients`;
|
|
3928
3929
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3929
3930
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -3956,6 +3957,10 @@ export const ClientApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
3956
3957
|
localVarQueryParameter['clientIDs'] = clientIDs;
|
|
3957
3958
|
}
|
|
3958
3959
|
|
|
3960
|
+
if (managerID !== undefined) {
|
|
3961
|
+
localVarQueryParameter['managerID'] = managerID;
|
|
3962
|
+
}
|
|
3963
|
+
|
|
3959
3964
|
|
|
3960
3965
|
|
|
3961
3966
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -4006,11 +4011,12 @@ export const ClientApiFp = function(configuration?: Configuration) {
|
|
|
4006
4011
|
* @param {string} [search] search string
|
|
4007
4012
|
* @param {Array<string>} [referenceIDs] reference ID
|
|
4008
4013
|
* @param {Array<string>} [clientIDs] client IDs
|
|
4014
|
+
* @param {string} [managerID] manager ID for whose clients we want to list
|
|
4009
4015
|
* @param {*} [options] Override http request option.
|
|
4010
4016
|
* @throws {RequiredError}
|
|
4011
4017
|
*/
|
|
4012
|
-
async listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClientListResponse>> {
|
|
4013
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listClients(nextToken, search, referenceIDs, clientIDs, options);
|
|
4018
|
+
async listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClientListResponse>> {
|
|
4019
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listClients(nextToken, search, referenceIDs, clientIDs, managerID, options);
|
|
4014
4020
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4015
4021
|
},
|
|
4016
4022
|
}
|
|
@@ -4050,11 +4056,12 @@ export const ClientApiFactory = function (configuration?: Configuration, basePat
|
|
|
4050
4056
|
* @param {string} [search] search string
|
|
4051
4057
|
* @param {Array<string>} [referenceIDs] reference ID
|
|
4052
4058
|
* @param {Array<string>} [clientIDs] client IDs
|
|
4059
|
+
* @param {string} [managerID] manager ID for whose clients we want to list
|
|
4053
4060
|
* @param {*} [options] Override http request option.
|
|
4054
4061
|
* @throws {RequiredError}
|
|
4055
4062
|
*/
|
|
4056
|
-
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, options?: any): AxiosPromise<ClientListResponse> {
|
|
4057
|
-
return localVarFp.listClients(nextToken, search, referenceIDs, clientIDs, options).then((request) => request(axios, basePath));
|
|
4063
|
+
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options?: any): AxiosPromise<ClientListResponse> {
|
|
4064
|
+
return localVarFp.listClients(nextToken, search, referenceIDs, clientIDs, managerID, options).then((request) => request(axios, basePath));
|
|
4058
4065
|
},
|
|
4059
4066
|
};
|
|
4060
4067
|
};
|
|
@@ -4097,12 +4104,13 @@ export class ClientApi extends BaseAPI {
|
|
|
4097
4104
|
* @param {string} [search] search string
|
|
4098
4105
|
* @param {Array<string>} [referenceIDs] reference ID
|
|
4099
4106
|
* @param {Array<string>} [clientIDs] client IDs
|
|
4107
|
+
* @param {string} [managerID] manager ID for whose clients we want to list
|
|
4100
4108
|
* @param {*} [options] Override http request option.
|
|
4101
4109
|
* @throws {RequiredError}
|
|
4102
4110
|
* @memberof ClientApi
|
|
4103
4111
|
*/
|
|
4104
|
-
public listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, options?: AxiosRequestConfig) {
|
|
4105
|
-
return ClientApiFp(this.configuration).listClients(nextToken, search, referenceIDs, clientIDs, options).then((request) => request(this.axios, this.basePath));
|
|
4112
|
+
public listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options?: AxiosRequestConfig) {
|
|
4113
|
+
return ClientApiFp(this.configuration).listClients(nextToken, search, referenceIDs, clientIDs, managerID, options).then((request) => request(this.axios, this.basePath));
|
|
4106
4114
|
}
|
|
4107
4115
|
}
|
|
4108
4116
|
|
package/dist/api.d.ts
CHANGED
|
@@ -3376,10 +3376,11 @@ export declare const ClientApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3376
3376
|
* @param {string} [search] search string
|
|
3377
3377
|
* @param {Array<string>} [referenceIDs] reference ID
|
|
3378
3378
|
* @param {Array<string>} [clientIDs] client IDs
|
|
3379
|
+
* @param {string} [managerID] manager ID for whose clients we want to list
|
|
3379
3380
|
* @param {*} [options] Override http request option.
|
|
3380
3381
|
* @throws {RequiredError}
|
|
3381
3382
|
*/
|
|
3382
|
-
listClients: (nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3383
|
+
listClients: (nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3383
3384
|
};
|
|
3384
3385
|
/**
|
|
3385
3386
|
* ClientApi - functional programming interface
|
|
@@ -3409,10 +3410,11 @@ export declare const ClientApiFp: (configuration?: Configuration) => {
|
|
|
3409
3410
|
* @param {string} [search] search string
|
|
3410
3411
|
* @param {Array<string>} [referenceIDs] reference ID
|
|
3411
3412
|
* @param {Array<string>} [clientIDs] client IDs
|
|
3413
|
+
* @param {string} [managerID] manager ID for whose clients we want to list
|
|
3412
3414
|
* @param {*} [options] Override http request option.
|
|
3413
3415
|
* @throws {RequiredError}
|
|
3414
3416
|
*/
|
|
3415
|
-
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClientListResponse>>;
|
|
3417
|
+
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClientListResponse>>;
|
|
3416
3418
|
};
|
|
3417
3419
|
/**
|
|
3418
3420
|
* ClientApi - factory interface
|
|
@@ -3442,10 +3444,11 @@ export declare const ClientApiFactory: (configuration?: Configuration, basePath?
|
|
|
3442
3444
|
* @param {string} [search] search string
|
|
3443
3445
|
* @param {Array<string>} [referenceIDs] reference ID
|
|
3444
3446
|
* @param {Array<string>} [clientIDs] client IDs
|
|
3447
|
+
* @param {string} [managerID] manager ID for whose clients we want to list
|
|
3445
3448
|
* @param {*} [options] Override http request option.
|
|
3446
3449
|
* @throws {RequiredError}
|
|
3447
3450
|
*/
|
|
3448
|
-
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, options?: any): AxiosPromise<ClientListResponse>;
|
|
3451
|
+
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options?: any): AxiosPromise<ClientListResponse>;
|
|
3449
3452
|
};
|
|
3450
3453
|
/**
|
|
3451
3454
|
* ClientApi - object-oriented interface
|
|
@@ -3479,11 +3482,12 @@ export declare class ClientApi extends BaseAPI {
|
|
|
3479
3482
|
* @param {string} [search] search string
|
|
3480
3483
|
* @param {Array<string>} [referenceIDs] reference ID
|
|
3481
3484
|
* @param {Array<string>} [clientIDs] client IDs
|
|
3485
|
+
* @param {string} [managerID] manager ID for whose clients we want to list
|
|
3482
3486
|
* @param {*} [options] Override http request option.
|
|
3483
3487
|
* @throws {RequiredError}
|
|
3484
3488
|
* @memberof ClientApi
|
|
3485
3489
|
*/
|
|
3486
|
-
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ClientListResponse, any>>;
|
|
3490
|
+
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ClientListResponse, any>>;
|
|
3487
3491
|
}
|
|
3488
3492
|
/**
|
|
3489
3493
|
* ConfigurationApi - axios parameter creator
|
package/dist/api.js
CHANGED
|
@@ -983,10 +983,11 @@ const ClientApiAxiosParamCreator = function (configuration) {
|
|
|
983
983
|
* @param {string} [search] search string
|
|
984
984
|
* @param {Array<string>} [referenceIDs] reference ID
|
|
985
985
|
* @param {Array<string>} [clientIDs] client IDs
|
|
986
|
+
* @param {string} [managerID] manager ID for whose clients we want to list
|
|
986
987
|
* @param {*} [options] Override http request option.
|
|
987
988
|
* @throws {RequiredError}
|
|
988
989
|
*/
|
|
989
|
-
listClients: (nextToken, search, referenceIDs, clientIDs, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
990
|
+
listClients: (nextToken, search, referenceIDs, clientIDs, managerID, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
990
991
|
const localVarPath = `/admins/clients`;
|
|
991
992
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
992
993
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -1012,6 +1013,9 @@ const ClientApiAxiosParamCreator = function (configuration) {
|
|
|
1012
1013
|
if (clientIDs) {
|
|
1013
1014
|
localVarQueryParameter['clientIDs'] = clientIDs;
|
|
1014
1015
|
}
|
|
1016
|
+
if (managerID !== undefined) {
|
|
1017
|
+
localVarQueryParameter['managerID'] = managerID;
|
|
1018
|
+
}
|
|
1015
1019
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1016
1020
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1017
1021
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -1063,12 +1067,13 @@ const ClientApiFp = function (configuration) {
|
|
|
1063
1067
|
* @param {string} [search] search string
|
|
1064
1068
|
* @param {Array<string>} [referenceIDs] reference ID
|
|
1065
1069
|
* @param {Array<string>} [clientIDs] client IDs
|
|
1070
|
+
* @param {string} [managerID] manager ID for whose clients we want to list
|
|
1066
1071
|
* @param {*} [options] Override http request option.
|
|
1067
1072
|
* @throws {RequiredError}
|
|
1068
1073
|
*/
|
|
1069
|
-
listClients(nextToken, search, referenceIDs, clientIDs, options) {
|
|
1074
|
+
listClients(nextToken, search, referenceIDs, clientIDs, managerID, options) {
|
|
1070
1075
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1071
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.listClients(nextToken, search, referenceIDs, clientIDs, options);
|
|
1076
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listClients(nextToken, search, referenceIDs, clientIDs, managerID, options);
|
|
1072
1077
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1073
1078
|
});
|
|
1074
1079
|
},
|
|
@@ -1109,11 +1114,12 @@ const ClientApiFactory = function (configuration, basePath, axios) {
|
|
|
1109
1114
|
* @param {string} [search] search string
|
|
1110
1115
|
* @param {Array<string>} [referenceIDs] reference ID
|
|
1111
1116
|
* @param {Array<string>} [clientIDs] client IDs
|
|
1117
|
+
* @param {string} [managerID] manager ID for whose clients we want to list
|
|
1112
1118
|
* @param {*} [options] Override http request option.
|
|
1113
1119
|
* @throws {RequiredError}
|
|
1114
1120
|
*/
|
|
1115
|
-
listClients(nextToken, search, referenceIDs, clientIDs, options) {
|
|
1116
|
-
return localVarFp.listClients(nextToken, search, referenceIDs, clientIDs, options).then((request) => request(axios, basePath));
|
|
1121
|
+
listClients(nextToken, search, referenceIDs, clientIDs, managerID, options) {
|
|
1122
|
+
return localVarFp.listClients(nextToken, search, referenceIDs, clientIDs, managerID, options).then((request) => request(axios, basePath));
|
|
1117
1123
|
},
|
|
1118
1124
|
};
|
|
1119
1125
|
};
|
|
@@ -1154,12 +1160,13 @@ class ClientApi extends base_1.BaseAPI {
|
|
|
1154
1160
|
* @param {string} [search] search string
|
|
1155
1161
|
* @param {Array<string>} [referenceIDs] reference ID
|
|
1156
1162
|
* @param {Array<string>} [clientIDs] client IDs
|
|
1163
|
+
* @param {string} [managerID] manager ID for whose clients we want to list
|
|
1157
1164
|
* @param {*} [options] Override http request option.
|
|
1158
1165
|
* @throws {RequiredError}
|
|
1159
1166
|
* @memberof ClientApi
|
|
1160
1167
|
*/
|
|
1161
|
-
listClients(nextToken, search, referenceIDs, clientIDs, options) {
|
|
1162
|
-
return (0, exports.ClientApiFp)(this.configuration).listClients(nextToken, search, referenceIDs, clientIDs, options).then((request) => request(this.axios, this.basePath));
|
|
1168
|
+
listClients(nextToken, search, referenceIDs, clientIDs, managerID, options) {
|
|
1169
|
+
return (0, exports.ClientApiFp)(this.configuration).listClients(nextToken, search, referenceIDs, clientIDs, managerID, options).then((request) => request(this.axios, this.basePath));
|
|
1163
1170
|
}
|
|
1164
1171
|
}
|
|
1165
1172
|
exports.ClientApi = ClientApi;
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -3376,10 +3376,11 @@ export declare const ClientApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3376
3376
|
* @param {string} [search] search string
|
|
3377
3377
|
* @param {Array<string>} [referenceIDs] reference ID
|
|
3378
3378
|
* @param {Array<string>} [clientIDs] client IDs
|
|
3379
|
+
* @param {string} [managerID] manager ID for whose clients we want to list
|
|
3379
3380
|
* @param {*} [options] Override http request option.
|
|
3380
3381
|
* @throws {RequiredError}
|
|
3381
3382
|
*/
|
|
3382
|
-
listClients: (nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3383
|
+
listClients: (nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3383
3384
|
};
|
|
3384
3385
|
/**
|
|
3385
3386
|
* ClientApi - functional programming interface
|
|
@@ -3409,10 +3410,11 @@ export declare const ClientApiFp: (configuration?: Configuration) => {
|
|
|
3409
3410
|
* @param {string} [search] search string
|
|
3410
3411
|
* @param {Array<string>} [referenceIDs] reference ID
|
|
3411
3412
|
* @param {Array<string>} [clientIDs] client IDs
|
|
3413
|
+
* @param {string} [managerID] manager ID for whose clients we want to list
|
|
3412
3414
|
* @param {*} [options] Override http request option.
|
|
3413
3415
|
* @throws {RequiredError}
|
|
3414
3416
|
*/
|
|
3415
|
-
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClientListResponse>>;
|
|
3417
|
+
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClientListResponse>>;
|
|
3416
3418
|
};
|
|
3417
3419
|
/**
|
|
3418
3420
|
* ClientApi - factory interface
|
|
@@ -3442,10 +3444,11 @@ export declare const ClientApiFactory: (configuration?: Configuration, basePath?
|
|
|
3442
3444
|
* @param {string} [search] search string
|
|
3443
3445
|
* @param {Array<string>} [referenceIDs] reference ID
|
|
3444
3446
|
* @param {Array<string>} [clientIDs] client IDs
|
|
3447
|
+
* @param {string} [managerID] manager ID for whose clients we want to list
|
|
3445
3448
|
* @param {*} [options] Override http request option.
|
|
3446
3449
|
* @throws {RequiredError}
|
|
3447
3450
|
*/
|
|
3448
|
-
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, options?: any): AxiosPromise<ClientListResponse>;
|
|
3451
|
+
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options?: any): AxiosPromise<ClientListResponse>;
|
|
3449
3452
|
};
|
|
3450
3453
|
/**
|
|
3451
3454
|
* ClientApi - object-oriented interface
|
|
@@ -3479,11 +3482,12 @@ export declare class ClientApi extends BaseAPI {
|
|
|
3479
3482
|
* @param {string} [search] search string
|
|
3480
3483
|
* @param {Array<string>} [referenceIDs] reference ID
|
|
3481
3484
|
* @param {Array<string>} [clientIDs] client IDs
|
|
3485
|
+
* @param {string} [managerID] manager ID for whose clients we want to list
|
|
3482
3486
|
* @param {*} [options] Override http request option.
|
|
3483
3487
|
* @throws {RequiredError}
|
|
3484
3488
|
* @memberof ClientApi
|
|
3485
3489
|
*/
|
|
3486
|
-
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ClientListResponse, any>>;
|
|
3490
|
+
listClients(nextToken?: string, search?: string, referenceIDs?: Array<string>, clientIDs?: Array<string>, managerID?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ClientListResponse, any>>;
|
|
3487
3491
|
}
|
|
3488
3492
|
/**
|
|
3489
3493
|
* ConfigurationApi - axios parameter creator
|
package/dist/esm/api.js
CHANGED
|
@@ -966,10 +966,11 @@ export const ClientApiAxiosParamCreator = function (configuration) {
|
|
|
966
966
|
* @param {string} [search] search string
|
|
967
967
|
* @param {Array<string>} [referenceIDs] reference ID
|
|
968
968
|
* @param {Array<string>} [clientIDs] client IDs
|
|
969
|
+
* @param {string} [managerID] manager ID for whose clients we want to list
|
|
969
970
|
* @param {*} [options] Override http request option.
|
|
970
971
|
* @throws {RequiredError}
|
|
971
972
|
*/
|
|
972
|
-
listClients: (nextToken, search, referenceIDs, clientIDs, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
973
|
+
listClients: (nextToken, search, referenceIDs, clientIDs, managerID, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
973
974
|
const localVarPath = `/admins/clients`;
|
|
974
975
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
975
976
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -995,6 +996,9 @@ export const ClientApiAxiosParamCreator = function (configuration) {
|
|
|
995
996
|
if (clientIDs) {
|
|
996
997
|
localVarQueryParameter['clientIDs'] = clientIDs;
|
|
997
998
|
}
|
|
999
|
+
if (managerID !== undefined) {
|
|
1000
|
+
localVarQueryParameter['managerID'] = managerID;
|
|
1001
|
+
}
|
|
998
1002
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
999
1003
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1000
1004
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -1045,12 +1049,13 @@ export const ClientApiFp = function (configuration) {
|
|
|
1045
1049
|
* @param {string} [search] search string
|
|
1046
1050
|
* @param {Array<string>} [referenceIDs] reference ID
|
|
1047
1051
|
* @param {Array<string>} [clientIDs] client IDs
|
|
1052
|
+
* @param {string} [managerID] manager ID for whose clients we want to list
|
|
1048
1053
|
* @param {*} [options] Override http request option.
|
|
1049
1054
|
* @throws {RequiredError}
|
|
1050
1055
|
*/
|
|
1051
|
-
listClients(nextToken, search, referenceIDs, clientIDs, options) {
|
|
1056
|
+
listClients(nextToken, search, referenceIDs, clientIDs, managerID, options) {
|
|
1052
1057
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1053
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.listClients(nextToken, search, referenceIDs, clientIDs, options);
|
|
1058
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listClients(nextToken, search, referenceIDs, clientIDs, managerID, options);
|
|
1054
1059
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1055
1060
|
});
|
|
1056
1061
|
},
|
|
@@ -1090,11 +1095,12 @@ export const ClientApiFactory = function (configuration, basePath, axios) {
|
|
|
1090
1095
|
* @param {string} [search] search string
|
|
1091
1096
|
* @param {Array<string>} [referenceIDs] reference ID
|
|
1092
1097
|
* @param {Array<string>} [clientIDs] client IDs
|
|
1098
|
+
* @param {string} [managerID] manager ID for whose clients we want to list
|
|
1093
1099
|
* @param {*} [options] Override http request option.
|
|
1094
1100
|
* @throws {RequiredError}
|
|
1095
1101
|
*/
|
|
1096
|
-
listClients(nextToken, search, referenceIDs, clientIDs, options) {
|
|
1097
|
-
return localVarFp.listClients(nextToken, search, referenceIDs, clientIDs, options).then((request) => request(axios, basePath));
|
|
1102
|
+
listClients(nextToken, search, referenceIDs, clientIDs, managerID, options) {
|
|
1103
|
+
return localVarFp.listClients(nextToken, search, referenceIDs, clientIDs, managerID, options).then((request) => request(axios, basePath));
|
|
1098
1104
|
},
|
|
1099
1105
|
};
|
|
1100
1106
|
};
|
|
@@ -1134,12 +1140,13 @@ export class ClientApi extends BaseAPI {
|
|
|
1134
1140
|
* @param {string} [search] search string
|
|
1135
1141
|
* @param {Array<string>} [referenceIDs] reference ID
|
|
1136
1142
|
* @param {Array<string>} [clientIDs] client IDs
|
|
1143
|
+
* @param {string} [managerID] manager ID for whose clients we want to list
|
|
1137
1144
|
* @param {*} [options] Override http request option.
|
|
1138
1145
|
* @throws {RequiredError}
|
|
1139
1146
|
* @memberof ClientApi
|
|
1140
1147
|
*/
|
|
1141
|
-
listClients(nextToken, search, referenceIDs, clientIDs, options) {
|
|
1142
|
-
return ClientApiFp(this.configuration).listClients(nextToken, search, referenceIDs, clientIDs, options).then((request) => request(this.axios, this.basePath));
|
|
1148
|
+
listClients(nextToken, search, referenceIDs, clientIDs, managerID, options) {
|
|
1149
|
+
return ClientApiFp(this.configuration).listClients(nextToken, search, referenceIDs, clientIDs, managerID, options).then((request) => request(this.axios, this.basePath));
|
|
1143
1150
|
}
|
|
1144
1151
|
}
|
|
1145
1152
|
/**
|