flexinet-api 0.0.365-prerelease0 → 0.0.366-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.366-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.366-prerelease0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -3842,10 +3842,11 @@ export const ClientApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
3842
3842
|
* @summary List clients
|
|
3843
3843
|
* @param {string} [nextToken] This is the pagination token
|
|
3844
3844
|
* @param {string} [search] search string
|
|
3845
|
+
* @param {string} [referenceID] reference ID
|
|
3845
3846
|
* @param {*} [options] Override http request option.
|
|
3846
3847
|
* @throws {RequiredError}
|
|
3847
3848
|
*/
|
|
3848
|
-
listClients: async (nextToken?: string, search?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3849
|
+
listClients: async (nextToken?: string, search?: string, referenceID?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3849
3850
|
const localVarPath = `/admins/clients`;
|
|
3850
3851
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3851
3852
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -3870,6 +3871,10 @@ export const ClientApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
3870
3871
|
localVarQueryParameter['search'] = search;
|
|
3871
3872
|
}
|
|
3872
3873
|
|
|
3874
|
+
if (referenceID !== undefined) {
|
|
3875
|
+
localVarQueryParameter['referenceID'] = referenceID;
|
|
3876
|
+
}
|
|
3877
|
+
|
|
3873
3878
|
|
|
3874
3879
|
|
|
3875
3880
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -3918,11 +3923,12 @@ export const ClientApiFp = function(configuration?: Configuration) {
|
|
|
3918
3923
|
* @summary List clients
|
|
3919
3924
|
* @param {string} [nextToken] This is the pagination token
|
|
3920
3925
|
* @param {string} [search] search string
|
|
3926
|
+
* @param {string} [referenceID] reference ID
|
|
3921
3927
|
* @param {*} [options] Override http request option.
|
|
3922
3928
|
* @throws {RequiredError}
|
|
3923
3929
|
*/
|
|
3924
|
-
async listClients(nextToken?: string, search?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClientListResponse>> {
|
|
3925
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listClients(nextToken, search, options);
|
|
3930
|
+
async listClients(nextToken?: string, search?: string, referenceID?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClientListResponse>> {
|
|
3931
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listClients(nextToken, search, referenceID, options);
|
|
3926
3932
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3927
3933
|
},
|
|
3928
3934
|
}
|
|
@@ -3960,11 +3966,12 @@ export const ClientApiFactory = function (configuration?: Configuration, basePat
|
|
|
3960
3966
|
* @summary List clients
|
|
3961
3967
|
* @param {string} [nextToken] This is the pagination token
|
|
3962
3968
|
* @param {string} [search] search string
|
|
3969
|
+
* @param {string} [referenceID] reference ID
|
|
3963
3970
|
* @param {*} [options] Override http request option.
|
|
3964
3971
|
* @throws {RequiredError}
|
|
3965
3972
|
*/
|
|
3966
|
-
listClients(nextToken?: string, search?: string, options?: any): AxiosPromise<ClientListResponse> {
|
|
3967
|
-
return localVarFp.listClients(nextToken, search, options).then((request) => request(axios, basePath));
|
|
3973
|
+
listClients(nextToken?: string, search?: string, referenceID?: string, options?: any): AxiosPromise<ClientListResponse> {
|
|
3974
|
+
return localVarFp.listClients(nextToken, search, referenceID, options).then((request) => request(axios, basePath));
|
|
3968
3975
|
},
|
|
3969
3976
|
};
|
|
3970
3977
|
};
|
|
@@ -4005,12 +4012,13 @@ export class ClientApi extends BaseAPI {
|
|
|
4005
4012
|
* @summary List clients
|
|
4006
4013
|
* @param {string} [nextToken] This is the pagination token
|
|
4007
4014
|
* @param {string} [search] search string
|
|
4015
|
+
* @param {string} [referenceID] reference ID
|
|
4008
4016
|
* @param {*} [options] Override http request option.
|
|
4009
4017
|
* @throws {RequiredError}
|
|
4010
4018
|
* @memberof ClientApi
|
|
4011
4019
|
*/
|
|
4012
|
-
public listClients(nextToken?: string, search?: string, options?: AxiosRequestConfig) {
|
|
4013
|
-
return ClientApiFp(this.configuration).listClients(nextToken, search, options).then((request) => request(this.axios, this.basePath));
|
|
4020
|
+
public listClients(nextToken?: string, search?: string, referenceID?: string, options?: AxiosRequestConfig) {
|
|
4021
|
+
return ClientApiFp(this.configuration).listClients(nextToken, search, referenceID, options).then((request) => request(this.axios, this.basePath));
|
|
4014
4022
|
}
|
|
4015
4023
|
}
|
|
4016
4024
|
|
package/dist/api.d.ts
CHANGED
|
@@ -3308,10 +3308,11 @@ export declare const ClientApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3308
3308
|
* @summary List clients
|
|
3309
3309
|
* @param {string} [nextToken] This is the pagination token
|
|
3310
3310
|
* @param {string} [search] search string
|
|
3311
|
+
* @param {string} [referenceID] reference ID
|
|
3311
3312
|
* @param {*} [options] Override http request option.
|
|
3312
3313
|
* @throws {RequiredError}
|
|
3313
3314
|
*/
|
|
3314
|
-
listClients: (nextToken?: string, search?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3315
|
+
listClients: (nextToken?: string, search?: string, referenceID?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3315
3316
|
};
|
|
3316
3317
|
/**
|
|
3317
3318
|
* ClientApi - functional programming interface
|
|
@@ -3339,10 +3340,11 @@ export declare const ClientApiFp: (configuration?: Configuration) => {
|
|
|
3339
3340
|
* @summary List clients
|
|
3340
3341
|
* @param {string} [nextToken] This is the pagination token
|
|
3341
3342
|
* @param {string} [search] search string
|
|
3343
|
+
* @param {string} [referenceID] reference ID
|
|
3342
3344
|
* @param {*} [options] Override http request option.
|
|
3343
3345
|
* @throws {RequiredError}
|
|
3344
3346
|
*/
|
|
3345
|
-
listClients(nextToken?: string, search?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClientListResponse>>;
|
|
3347
|
+
listClients(nextToken?: string, search?: string, referenceID?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClientListResponse>>;
|
|
3346
3348
|
};
|
|
3347
3349
|
/**
|
|
3348
3350
|
* ClientApi - factory interface
|
|
@@ -3370,10 +3372,11 @@ export declare const ClientApiFactory: (configuration?: Configuration, basePath?
|
|
|
3370
3372
|
* @summary List clients
|
|
3371
3373
|
* @param {string} [nextToken] This is the pagination token
|
|
3372
3374
|
* @param {string} [search] search string
|
|
3375
|
+
* @param {string} [referenceID] reference ID
|
|
3373
3376
|
* @param {*} [options] Override http request option.
|
|
3374
3377
|
* @throws {RequiredError}
|
|
3375
3378
|
*/
|
|
3376
|
-
listClients(nextToken?: string, search?: string, options?: any): AxiosPromise<ClientListResponse>;
|
|
3379
|
+
listClients(nextToken?: string, search?: string, referenceID?: string, options?: any): AxiosPromise<ClientListResponse>;
|
|
3377
3380
|
};
|
|
3378
3381
|
/**
|
|
3379
3382
|
* ClientApi - object-oriented interface
|
|
@@ -3405,11 +3408,12 @@ export declare class ClientApi extends BaseAPI {
|
|
|
3405
3408
|
* @summary List clients
|
|
3406
3409
|
* @param {string} [nextToken] This is the pagination token
|
|
3407
3410
|
* @param {string} [search] search string
|
|
3411
|
+
* @param {string} [referenceID] reference ID
|
|
3408
3412
|
* @param {*} [options] Override http request option.
|
|
3409
3413
|
* @throws {RequiredError}
|
|
3410
3414
|
* @memberof ClientApi
|
|
3411
3415
|
*/
|
|
3412
|
-
listClients(nextToken?: string, search?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ClientListResponse, any>>;
|
|
3416
|
+
listClients(nextToken?: string, search?: string, referenceID?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ClientListResponse, any>>;
|
|
3413
3417
|
}
|
|
3414
3418
|
/**
|
|
3415
3419
|
* ConfigurationApi - axios parameter creator
|
package/dist/api.js
CHANGED
|
@@ -959,10 +959,11 @@ const ClientApiAxiosParamCreator = function (configuration) {
|
|
|
959
959
|
* @summary List clients
|
|
960
960
|
* @param {string} [nextToken] This is the pagination token
|
|
961
961
|
* @param {string} [search] search string
|
|
962
|
+
* @param {string} [referenceID] reference ID
|
|
962
963
|
* @param {*} [options] Override http request option.
|
|
963
964
|
* @throws {RequiredError}
|
|
964
965
|
*/
|
|
965
|
-
listClients: (nextToken, search, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
966
|
+
listClients: (nextToken, search, referenceID, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
966
967
|
const localVarPath = `/admins/clients`;
|
|
967
968
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
968
969
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -982,6 +983,9 @@ const ClientApiAxiosParamCreator = function (configuration) {
|
|
|
982
983
|
if (search !== undefined) {
|
|
983
984
|
localVarQueryParameter['search'] = search;
|
|
984
985
|
}
|
|
986
|
+
if (referenceID !== undefined) {
|
|
987
|
+
localVarQueryParameter['referenceID'] = referenceID;
|
|
988
|
+
}
|
|
985
989
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
986
990
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
987
991
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -1031,12 +1035,13 @@ const ClientApiFp = function (configuration) {
|
|
|
1031
1035
|
* @summary List clients
|
|
1032
1036
|
* @param {string} [nextToken] This is the pagination token
|
|
1033
1037
|
* @param {string} [search] search string
|
|
1038
|
+
* @param {string} [referenceID] reference ID
|
|
1034
1039
|
* @param {*} [options] Override http request option.
|
|
1035
1040
|
* @throws {RequiredError}
|
|
1036
1041
|
*/
|
|
1037
|
-
listClients(nextToken, search, options) {
|
|
1042
|
+
listClients(nextToken, search, referenceID, options) {
|
|
1038
1043
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1039
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.listClients(nextToken, search, options);
|
|
1044
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listClients(nextToken, search, referenceID, options);
|
|
1040
1045
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
1041
1046
|
});
|
|
1042
1047
|
},
|
|
@@ -1075,11 +1080,12 @@ const ClientApiFactory = function (configuration, basePath, axios) {
|
|
|
1075
1080
|
* @summary List clients
|
|
1076
1081
|
* @param {string} [nextToken] This is the pagination token
|
|
1077
1082
|
* @param {string} [search] search string
|
|
1083
|
+
* @param {string} [referenceID] reference ID
|
|
1078
1084
|
* @param {*} [options] Override http request option.
|
|
1079
1085
|
* @throws {RequiredError}
|
|
1080
1086
|
*/
|
|
1081
|
-
listClients(nextToken, search, options) {
|
|
1082
|
-
return localVarFp.listClients(nextToken, search, options).then((request) => request(axios, basePath));
|
|
1087
|
+
listClients(nextToken, search, referenceID, options) {
|
|
1088
|
+
return localVarFp.listClients(nextToken, search, referenceID, options).then((request) => request(axios, basePath));
|
|
1083
1089
|
},
|
|
1084
1090
|
};
|
|
1085
1091
|
};
|
|
@@ -1118,12 +1124,13 @@ class ClientApi extends base_1.BaseAPI {
|
|
|
1118
1124
|
* @summary List clients
|
|
1119
1125
|
* @param {string} [nextToken] This is the pagination token
|
|
1120
1126
|
* @param {string} [search] search string
|
|
1127
|
+
* @param {string} [referenceID] reference ID
|
|
1121
1128
|
* @param {*} [options] Override http request option.
|
|
1122
1129
|
* @throws {RequiredError}
|
|
1123
1130
|
* @memberof ClientApi
|
|
1124
1131
|
*/
|
|
1125
|
-
listClients(nextToken, search, options) {
|
|
1126
|
-
return (0, exports.ClientApiFp)(this.configuration).listClients(nextToken, search, options).then((request) => request(this.axios, this.basePath));
|
|
1132
|
+
listClients(nextToken, search, referenceID, options) {
|
|
1133
|
+
return (0, exports.ClientApiFp)(this.configuration).listClients(nextToken, search, referenceID, options).then((request) => request(this.axios, this.basePath));
|
|
1127
1134
|
}
|
|
1128
1135
|
}
|
|
1129
1136
|
exports.ClientApi = ClientApi;
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -3308,10 +3308,11 @@ export declare const ClientApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3308
3308
|
* @summary List clients
|
|
3309
3309
|
* @param {string} [nextToken] This is the pagination token
|
|
3310
3310
|
* @param {string} [search] search string
|
|
3311
|
+
* @param {string} [referenceID] reference ID
|
|
3311
3312
|
* @param {*} [options] Override http request option.
|
|
3312
3313
|
* @throws {RequiredError}
|
|
3313
3314
|
*/
|
|
3314
|
-
listClients: (nextToken?: string, search?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3315
|
+
listClients: (nextToken?: string, search?: string, referenceID?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3315
3316
|
};
|
|
3316
3317
|
/**
|
|
3317
3318
|
* ClientApi - functional programming interface
|
|
@@ -3339,10 +3340,11 @@ export declare const ClientApiFp: (configuration?: Configuration) => {
|
|
|
3339
3340
|
* @summary List clients
|
|
3340
3341
|
* @param {string} [nextToken] This is the pagination token
|
|
3341
3342
|
* @param {string} [search] search string
|
|
3343
|
+
* @param {string} [referenceID] reference ID
|
|
3342
3344
|
* @param {*} [options] Override http request option.
|
|
3343
3345
|
* @throws {RequiredError}
|
|
3344
3346
|
*/
|
|
3345
|
-
listClients(nextToken?: string, search?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClientListResponse>>;
|
|
3347
|
+
listClients(nextToken?: string, search?: string, referenceID?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClientListResponse>>;
|
|
3346
3348
|
};
|
|
3347
3349
|
/**
|
|
3348
3350
|
* ClientApi - factory interface
|
|
@@ -3370,10 +3372,11 @@ export declare const ClientApiFactory: (configuration?: Configuration, basePath?
|
|
|
3370
3372
|
* @summary List clients
|
|
3371
3373
|
* @param {string} [nextToken] This is the pagination token
|
|
3372
3374
|
* @param {string} [search] search string
|
|
3375
|
+
* @param {string} [referenceID] reference ID
|
|
3373
3376
|
* @param {*} [options] Override http request option.
|
|
3374
3377
|
* @throws {RequiredError}
|
|
3375
3378
|
*/
|
|
3376
|
-
listClients(nextToken?: string, search?: string, options?: any): AxiosPromise<ClientListResponse>;
|
|
3379
|
+
listClients(nextToken?: string, search?: string, referenceID?: string, options?: any): AxiosPromise<ClientListResponse>;
|
|
3377
3380
|
};
|
|
3378
3381
|
/**
|
|
3379
3382
|
* ClientApi - object-oriented interface
|
|
@@ -3405,11 +3408,12 @@ export declare class ClientApi extends BaseAPI {
|
|
|
3405
3408
|
* @summary List clients
|
|
3406
3409
|
* @param {string} [nextToken] This is the pagination token
|
|
3407
3410
|
* @param {string} [search] search string
|
|
3411
|
+
* @param {string} [referenceID] reference ID
|
|
3408
3412
|
* @param {*} [options] Override http request option.
|
|
3409
3413
|
* @throws {RequiredError}
|
|
3410
3414
|
* @memberof ClientApi
|
|
3411
3415
|
*/
|
|
3412
|
-
listClients(nextToken?: string, search?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ClientListResponse, any>>;
|
|
3416
|
+
listClients(nextToken?: string, search?: string, referenceID?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ClientListResponse, any>>;
|
|
3413
3417
|
}
|
|
3414
3418
|
/**
|
|
3415
3419
|
* ConfigurationApi - axios parameter creator
|
package/dist/esm/api.js
CHANGED
|
@@ -942,10 +942,11 @@ export const ClientApiAxiosParamCreator = function (configuration) {
|
|
|
942
942
|
* @summary List clients
|
|
943
943
|
* @param {string} [nextToken] This is the pagination token
|
|
944
944
|
* @param {string} [search] search string
|
|
945
|
+
* @param {string} [referenceID] reference ID
|
|
945
946
|
* @param {*} [options] Override http request option.
|
|
946
947
|
* @throws {RequiredError}
|
|
947
948
|
*/
|
|
948
|
-
listClients: (nextToken, search, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
949
|
+
listClients: (nextToken, search, referenceID, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
949
950
|
const localVarPath = `/admins/clients`;
|
|
950
951
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
951
952
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -965,6 +966,9 @@ export const ClientApiAxiosParamCreator = function (configuration) {
|
|
|
965
966
|
if (search !== undefined) {
|
|
966
967
|
localVarQueryParameter['search'] = search;
|
|
967
968
|
}
|
|
969
|
+
if (referenceID !== undefined) {
|
|
970
|
+
localVarQueryParameter['referenceID'] = referenceID;
|
|
971
|
+
}
|
|
968
972
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
969
973
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
970
974
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -1013,12 +1017,13 @@ export const ClientApiFp = function (configuration) {
|
|
|
1013
1017
|
* @summary List clients
|
|
1014
1018
|
* @param {string} [nextToken] This is the pagination token
|
|
1015
1019
|
* @param {string} [search] search string
|
|
1020
|
+
* @param {string} [referenceID] reference ID
|
|
1016
1021
|
* @param {*} [options] Override http request option.
|
|
1017
1022
|
* @throws {RequiredError}
|
|
1018
1023
|
*/
|
|
1019
|
-
listClients(nextToken, search, options) {
|
|
1024
|
+
listClients(nextToken, search, referenceID, options) {
|
|
1020
1025
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1021
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.listClients(nextToken, search, options);
|
|
1026
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listClients(nextToken, search, referenceID, options);
|
|
1022
1027
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1023
1028
|
});
|
|
1024
1029
|
},
|
|
@@ -1056,11 +1061,12 @@ export const ClientApiFactory = function (configuration, basePath, axios) {
|
|
|
1056
1061
|
* @summary List clients
|
|
1057
1062
|
* @param {string} [nextToken] This is the pagination token
|
|
1058
1063
|
* @param {string} [search] search string
|
|
1064
|
+
* @param {string} [referenceID] reference ID
|
|
1059
1065
|
* @param {*} [options] Override http request option.
|
|
1060
1066
|
* @throws {RequiredError}
|
|
1061
1067
|
*/
|
|
1062
|
-
listClients(nextToken, search, options) {
|
|
1063
|
-
return localVarFp.listClients(nextToken, search, options).then((request) => request(axios, basePath));
|
|
1068
|
+
listClients(nextToken, search, referenceID, options) {
|
|
1069
|
+
return localVarFp.listClients(nextToken, search, referenceID, options).then((request) => request(axios, basePath));
|
|
1064
1070
|
},
|
|
1065
1071
|
};
|
|
1066
1072
|
};
|
|
@@ -1098,12 +1104,13 @@ export class ClientApi extends BaseAPI {
|
|
|
1098
1104
|
* @summary List clients
|
|
1099
1105
|
* @param {string} [nextToken] This is the pagination token
|
|
1100
1106
|
* @param {string} [search] search string
|
|
1107
|
+
* @param {string} [referenceID] reference ID
|
|
1101
1108
|
* @param {*} [options] Override http request option.
|
|
1102
1109
|
* @throws {RequiredError}
|
|
1103
1110
|
* @memberof ClientApi
|
|
1104
1111
|
*/
|
|
1105
|
-
listClients(nextToken, search, options) {
|
|
1106
|
-
return ClientApiFp(this.configuration).listClients(nextToken, search, options).then((request) => request(this.axios, this.basePath));
|
|
1112
|
+
listClients(nextToken, search, referenceID, options) {
|
|
1113
|
+
return ClientApiFp(this.configuration).listClients(nextToken, search, referenceID, options).then((request) => request(this.axios, this.basePath));
|
|
1107
1114
|
}
|
|
1108
1115
|
}
|
|
1109
1116
|
/**
|