flexinet-api 0.0.1712 → 0.0.1719-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 +2 -2
- package/api.ts +72 -0
- package/dist/api.d.ts +35 -0
- package/dist/api.js +59 -0
- package/dist/esm/api.d.ts +35 -0
- package/dist/esm/api.js +59 -0
- package/package.json +1 -1
package/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
## flexinet-api@0.0.
|
1
|
+
## flexinet-api@0.0.1719-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.
|
39
|
+
npm install flexinet-api@0.0.1719-prerelease0-dev --save
|
40
40
|
```
|
41
41
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
@@ -638,7 +638,15 @@ export interface CallbackOrderDetails {
|
|
638
638
|
* @memberof CallbackOrderDetails
|
639
639
|
*/
|
640
640
|
'createdAt'?: string;
|
641
|
+
/**
|
642
|
+
*
|
643
|
+
* @type {OrderKind}
|
644
|
+
* @memberof CallbackOrderDetails
|
645
|
+
*/
|
646
|
+
'kind': OrderKind;
|
641
647
|
}
|
648
|
+
|
649
|
+
|
642
650
|
/**
|
643
651
|
*
|
644
652
|
* @export
|
@@ -6324,6 +6332,40 @@ export const ConfigurationApiAxiosParamCreator = function (configuration?: Confi
|
|
6324
6332
|
|
6325
6333
|
|
6326
6334
|
|
6335
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
6336
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
6337
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
6338
|
+
|
6339
|
+
return {
|
6340
|
+
url: toPathString(localVarUrlObj),
|
6341
|
+
options: localVarRequestOptions,
|
6342
|
+
};
|
6343
|
+
},
|
6344
|
+
/**
|
6345
|
+
* List all features
|
6346
|
+
* @summary List features
|
6347
|
+
* @param {*} [options] Override http request option.
|
6348
|
+
* @throws {RequiredError}
|
6349
|
+
*/
|
6350
|
+
listUserFeatures: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
6351
|
+
const localVarPath = `/users/features`;
|
6352
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
6353
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
6354
|
+
let baseOptions;
|
6355
|
+
if (configuration) {
|
6356
|
+
baseOptions = configuration.baseOptions;
|
6357
|
+
}
|
6358
|
+
|
6359
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
6360
|
+
const localVarHeaderParameter = {} as any;
|
6361
|
+
const localVarQueryParameter = {} as any;
|
6362
|
+
|
6363
|
+
// authentication customerJWT required
|
6364
|
+
// http bearer authentication required
|
6365
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
6366
|
+
|
6367
|
+
|
6368
|
+
|
6327
6369
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
6328
6370
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
6329
6371
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
@@ -6376,6 +6418,16 @@ export const ConfigurationApiFp = function(configuration?: Configuration) {
|
|
6376
6418
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listFeatures(options);
|
6377
6419
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
6378
6420
|
},
|
6421
|
+
/**
|
6422
|
+
* List all features
|
6423
|
+
* @summary List features
|
6424
|
+
* @param {*} [options] Override http request option.
|
6425
|
+
* @throws {RequiredError}
|
6426
|
+
*/
|
6427
|
+
async listUserFeatures(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeaturesResponse>> {
|
6428
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listUserFeatures(options);
|
6429
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
6430
|
+
},
|
6379
6431
|
}
|
6380
6432
|
};
|
6381
6433
|
|
@@ -6416,6 +6468,15 @@ export const ConfigurationApiFactory = function (configuration?: Configuration,
|
|
6416
6468
|
listFeatures(options?: any): AxiosPromise<FeaturesResponse> {
|
6417
6469
|
return localVarFp.listFeatures(options).then((request) => request(axios, basePath));
|
6418
6470
|
},
|
6471
|
+
/**
|
6472
|
+
* List all features
|
6473
|
+
* @summary List features
|
6474
|
+
* @param {*} [options] Override http request option.
|
6475
|
+
* @throws {RequiredError}
|
6476
|
+
*/
|
6477
|
+
listUserFeatures(options?: any): AxiosPromise<FeaturesResponse> {
|
6478
|
+
return localVarFp.listUserFeatures(options).then((request) => request(axios, basePath));
|
6479
|
+
},
|
6419
6480
|
};
|
6420
6481
|
};
|
6421
6482
|
|
@@ -6461,6 +6522,17 @@ export class ConfigurationApi extends BaseAPI {
|
|
6461
6522
|
public listFeatures(options?: AxiosRequestConfig) {
|
6462
6523
|
return ConfigurationApiFp(this.configuration).listFeatures(options).then((request) => request(this.axios, this.basePath));
|
6463
6524
|
}
|
6525
|
+
|
6526
|
+
/**
|
6527
|
+
* List all features
|
6528
|
+
* @summary List features
|
6529
|
+
* @param {*} [options] Override http request option.
|
6530
|
+
* @throws {RequiredError}
|
6531
|
+
* @memberof ConfigurationApi
|
6532
|
+
*/
|
6533
|
+
public listUserFeatures(options?: AxiosRequestConfig) {
|
6534
|
+
return ConfigurationApiFp(this.configuration).listUserFeatures(options).then((request) => request(this.axios, this.basePath));
|
6535
|
+
}
|
6464
6536
|
}
|
6465
6537
|
|
6466
6538
|
|
package/dist/api.d.ts
CHANGED
@@ -583,6 +583,12 @@ export interface CallbackOrderDetails {
|
|
583
583
|
* @memberof CallbackOrderDetails
|
584
584
|
*/
|
585
585
|
'createdAt'?: string;
|
586
|
+
/**
|
587
|
+
*
|
588
|
+
* @type {OrderKind}
|
589
|
+
* @memberof CallbackOrderDetails
|
590
|
+
*/
|
591
|
+
'kind': OrderKind;
|
586
592
|
}
|
587
593
|
/**
|
588
594
|
*
|
@@ -5192,6 +5198,13 @@ export declare const ConfigurationApiAxiosParamCreator: (configuration?: Configu
|
|
5192
5198
|
* @throws {RequiredError}
|
5193
5199
|
*/
|
5194
5200
|
listFeatures: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
5201
|
+
/**
|
5202
|
+
* List all features
|
5203
|
+
* @summary List features
|
5204
|
+
* @param {*} [options] Override http request option.
|
5205
|
+
* @throws {RequiredError}
|
5206
|
+
*/
|
5207
|
+
listUserFeatures: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
5195
5208
|
};
|
5196
5209
|
/**
|
5197
5210
|
* ConfigurationApi - functional programming interface
|
@@ -5222,6 +5235,13 @@ export declare const ConfigurationApiFp: (configuration?: Configuration) => {
|
|
5222
5235
|
* @throws {RequiredError}
|
5223
5236
|
*/
|
5224
5237
|
listFeatures(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeaturesResponse>>;
|
5238
|
+
/**
|
5239
|
+
* List all features
|
5240
|
+
* @summary List features
|
5241
|
+
* @param {*} [options] Override http request option.
|
5242
|
+
* @throws {RequiredError}
|
5243
|
+
*/
|
5244
|
+
listUserFeatures(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeaturesResponse>>;
|
5225
5245
|
};
|
5226
5246
|
/**
|
5227
5247
|
* ConfigurationApi - factory interface
|
@@ -5252,6 +5272,13 @@ export declare const ConfigurationApiFactory: (configuration?: Configuration, ba
|
|
5252
5272
|
* @throws {RequiredError}
|
5253
5273
|
*/
|
5254
5274
|
listFeatures(options?: any): AxiosPromise<FeaturesResponse>;
|
5275
|
+
/**
|
5276
|
+
* List all features
|
5277
|
+
* @summary List features
|
5278
|
+
* @param {*} [options] Override http request option.
|
5279
|
+
* @throws {RequiredError}
|
5280
|
+
*/
|
5281
|
+
listUserFeatures(options?: any): AxiosPromise<FeaturesResponse>;
|
5255
5282
|
};
|
5256
5283
|
/**
|
5257
5284
|
* ConfigurationApi - object-oriented interface
|
@@ -5287,6 +5314,14 @@ export declare class ConfigurationApi extends BaseAPI {
|
|
5287
5314
|
* @memberof ConfigurationApi
|
5288
5315
|
*/
|
5289
5316
|
listFeatures(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FeaturesResponse, any>>;
|
5317
|
+
/**
|
5318
|
+
* List all features
|
5319
|
+
* @summary List features
|
5320
|
+
* @param {*} [options] Override http request option.
|
5321
|
+
* @throws {RequiredError}
|
5322
|
+
* @memberof ConfigurationApi
|
5323
|
+
*/
|
5324
|
+
listUserFeatures(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FeaturesResponse, any>>;
|
5290
5325
|
}
|
5291
5326
|
/**
|
5292
5327
|
* CustomDealsApi - axios parameter creator
|
package/dist/api.js
CHANGED
@@ -2016,6 +2016,34 @@ const ConfigurationApiAxiosParamCreator = function (configuration) {
|
|
2016
2016
|
options: localVarRequestOptions,
|
2017
2017
|
};
|
2018
2018
|
}),
|
2019
|
+
/**
|
2020
|
+
* List all features
|
2021
|
+
* @summary List features
|
2022
|
+
* @param {*} [options] Override http request option.
|
2023
|
+
* @throws {RequiredError}
|
2024
|
+
*/
|
2025
|
+
listUserFeatures: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
2026
|
+
const localVarPath = `/users/features`;
|
2027
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
2028
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
2029
|
+
let baseOptions;
|
2030
|
+
if (configuration) {
|
2031
|
+
baseOptions = configuration.baseOptions;
|
2032
|
+
}
|
2033
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
2034
|
+
const localVarHeaderParameter = {};
|
2035
|
+
const localVarQueryParameter = {};
|
2036
|
+
// authentication customerJWT required
|
2037
|
+
// http bearer authentication required
|
2038
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
2039
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
2040
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
2041
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
2042
|
+
return {
|
2043
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
2044
|
+
options: localVarRequestOptions,
|
2045
|
+
};
|
2046
|
+
}),
|
2019
2047
|
};
|
2020
2048
|
};
|
2021
2049
|
exports.ConfigurationApiAxiosParamCreator = ConfigurationApiAxiosParamCreator;
|
@@ -2065,6 +2093,18 @@ const ConfigurationApiFp = function (configuration) {
|
|
2065
2093
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
2066
2094
|
});
|
2067
2095
|
},
|
2096
|
+
/**
|
2097
|
+
* List all features
|
2098
|
+
* @summary List features
|
2099
|
+
* @param {*} [options] Override http request option.
|
2100
|
+
* @throws {RequiredError}
|
2101
|
+
*/
|
2102
|
+
listUserFeatures(options) {
|
2103
|
+
return __awaiter(this, void 0, void 0, function* () {
|
2104
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listUserFeatures(options);
|
2105
|
+
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
2106
|
+
});
|
2107
|
+
},
|
2068
2108
|
};
|
2069
2109
|
};
|
2070
2110
|
exports.ConfigurationApiFp = ConfigurationApiFp;
|
@@ -2105,6 +2145,15 @@ const ConfigurationApiFactory = function (configuration, basePath, axios) {
|
|
2105
2145
|
listFeatures(options) {
|
2106
2146
|
return localVarFp.listFeatures(options).then((request) => request(axios, basePath));
|
2107
2147
|
},
|
2148
|
+
/**
|
2149
|
+
* List all features
|
2150
|
+
* @summary List features
|
2151
|
+
* @param {*} [options] Override http request option.
|
2152
|
+
* @throws {RequiredError}
|
2153
|
+
*/
|
2154
|
+
listUserFeatures(options) {
|
2155
|
+
return localVarFp.listUserFeatures(options).then((request) => request(axios, basePath));
|
2156
|
+
},
|
2108
2157
|
};
|
2109
2158
|
};
|
2110
2159
|
exports.ConfigurationApiFactory = ConfigurationApiFactory;
|
@@ -2148,6 +2197,16 @@ class ConfigurationApi extends base_1.BaseAPI {
|
|
2148
2197
|
listFeatures(options) {
|
2149
2198
|
return (0, exports.ConfigurationApiFp)(this.configuration).listFeatures(options).then((request) => request(this.axios, this.basePath));
|
2150
2199
|
}
|
2200
|
+
/**
|
2201
|
+
* List all features
|
2202
|
+
* @summary List features
|
2203
|
+
* @param {*} [options] Override http request option.
|
2204
|
+
* @throws {RequiredError}
|
2205
|
+
* @memberof ConfigurationApi
|
2206
|
+
*/
|
2207
|
+
listUserFeatures(options) {
|
2208
|
+
return (0, exports.ConfigurationApiFp)(this.configuration).listUserFeatures(options).then((request) => request(this.axios, this.basePath));
|
2209
|
+
}
|
2151
2210
|
}
|
2152
2211
|
exports.ConfigurationApi = ConfigurationApi;
|
2153
2212
|
/**
|
package/dist/esm/api.d.ts
CHANGED
@@ -583,6 +583,12 @@ export interface CallbackOrderDetails {
|
|
583
583
|
* @memberof CallbackOrderDetails
|
584
584
|
*/
|
585
585
|
'createdAt'?: string;
|
586
|
+
/**
|
587
|
+
*
|
588
|
+
* @type {OrderKind}
|
589
|
+
* @memberof CallbackOrderDetails
|
590
|
+
*/
|
591
|
+
'kind': OrderKind;
|
586
592
|
}
|
587
593
|
/**
|
588
594
|
*
|
@@ -5192,6 +5198,13 @@ export declare const ConfigurationApiAxiosParamCreator: (configuration?: Configu
|
|
5192
5198
|
* @throws {RequiredError}
|
5193
5199
|
*/
|
5194
5200
|
listFeatures: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
5201
|
+
/**
|
5202
|
+
* List all features
|
5203
|
+
* @summary List features
|
5204
|
+
* @param {*} [options] Override http request option.
|
5205
|
+
* @throws {RequiredError}
|
5206
|
+
*/
|
5207
|
+
listUserFeatures: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
5195
5208
|
};
|
5196
5209
|
/**
|
5197
5210
|
* ConfigurationApi - functional programming interface
|
@@ -5222,6 +5235,13 @@ export declare const ConfigurationApiFp: (configuration?: Configuration) => {
|
|
5222
5235
|
* @throws {RequiredError}
|
5223
5236
|
*/
|
5224
5237
|
listFeatures(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeaturesResponse>>;
|
5238
|
+
/**
|
5239
|
+
* List all features
|
5240
|
+
* @summary List features
|
5241
|
+
* @param {*} [options] Override http request option.
|
5242
|
+
* @throws {RequiredError}
|
5243
|
+
*/
|
5244
|
+
listUserFeatures(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeaturesResponse>>;
|
5225
5245
|
};
|
5226
5246
|
/**
|
5227
5247
|
* ConfigurationApi - factory interface
|
@@ -5252,6 +5272,13 @@ export declare const ConfigurationApiFactory: (configuration?: Configuration, ba
|
|
5252
5272
|
* @throws {RequiredError}
|
5253
5273
|
*/
|
5254
5274
|
listFeatures(options?: any): AxiosPromise<FeaturesResponse>;
|
5275
|
+
/**
|
5276
|
+
* List all features
|
5277
|
+
* @summary List features
|
5278
|
+
* @param {*} [options] Override http request option.
|
5279
|
+
* @throws {RequiredError}
|
5280
|
+
*/
|
5281
|
+
listUserFeatures(options?: any): AxiosPromise<FeaturesResponse>;
|
5255
5282
|
};
|
5256
5283
|
/**
|
5257
5284
|
* ConfigurationApi - object-oriented interface
|
@@ -5287,6 +5314,14 @@ export declare class ConfigurationApi extends BaseAPI {
|
|
5287
5314
|
* @memberof ConfigurationApi
|
5288
5315
|
*/
|
5289
5316
|
listFeatures(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FeaturesResponse, any>>;
|
5317
|
+
/**
|
5318
|
+
* List all features
|
5319
|
+
* @summary List features
|
5320
|
+
* @param {*} [options] Override http request option.
|
5321
|
+
* @throws {RequiredError}
|
5322
|
+
* @memberof ConfigurationApi
|
5323
|
+
*/
|
5324
|
+
listUserFeatures(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FeaturesResponse, any>>;
|
5290
5325
|
}
|
5291
5326
|
/**
|
5292
5327
|
* CustomDealsApi - axios parameter creator
|
package/dist/esm/api.js
CHANGED
@@ -1991,6 +1991,34 @@ export const ConfigurationApiAxiosParamCreator = function (configuration) {
|
|
1991
1991
|
options: localVarRequestOptions,
|
1992
1992
|
};
|
1993
1993
|
}),
|
1994
|
+
/**
|
1995
|
+
* List all features
|
1996
|
+
* @summary List features
|
1997
|
+
* @param {*} [options] Override http request option.
|
1998
|
+
* @throws {RequiredError}
|
1999
|
+
*/
|
2000
|
+
listUserFeatures: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
2001
|
+
const localVarPath = `/users/features`;
|
2002
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
2003
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
2004
|
+
let baseOptions;
|
2005
|
+
if (configuration) {
|
2006
|
+
baseOptions = configuration.baseOptions;
|
2007
|
+
}
|
2008
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
2009
|
+
const localVarHeaderParameter = {};
|
2010
|
+
const localVarQueryParameter = {};
|
2011
|
+
// authentication customerJWT required
|
2012
|
+
// http bearer authentication required
|
2013
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
2014
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
2015
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
2016
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
2017
|
+
return {
|
2018
|
+
url: toPathString(localVarUrlObj),
|
2019
|
+
options: localVarRequestOptions,
|
2020
|
+
};
|
2021
|
+
}),
|
1994
2022
|
};
|
1995
2023
|
};
|
1996
2024
|
/**
|
@@ -2039,6 +2067,18 @@ export const ConfigurationApiFp = function (configuration) {
|
|
2039
2067
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
2040
2068
|
});
|
2041
2069
|
},
|
2070
|
+
/**
|
2071
|
+
* List all features
|
2072
|
+
* @summary List features
|
2073
|
+
* @param {*} [options] Override http request option.
|
2074
|
+
* @throws {RequiredError}
|
2075
|
+
*/
|
2076
|
+
listUserFeatures(options) {
|
2077
|
+
return __awaiter(this, void 0, void 0, function* () {
|
2078
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listUserFeatures(options);
|
2079
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
2080
|
+
});
|
2081
|
+
},
|
2042
2082
|
};
|
2043
2083
|
};
|
2044
2084
|
/**
|
@@ -2078,6 +2118,15 @@ export const ConfigurationApiFactory = function (configuration, basePath, axios)
|
|
2078
2118
|
listFeatures(options) {
|
2079
2119
|
return localVarFp.listFeatures(options).then((request) => request(axios, basePath));
|
2080
2120
|
},
|
2121
|
+
/**
|
2122
|
+
* List all features
|
2123
|
+
* @summary List features
|
2124
|
+
* @param {*} [options] Override http request option.
|
2125
|
+
* @throws {RequiredError}
|
2126
|
+
*/
|
2127
|
+
listUserFeatures(options) {
|
2128
|
+
return localVarFp.listUserFeatures(options).then((request) => request(axios, basePath));
|
2129
|
+
},
|
2081
2130
|
};
|
2082
2131
|
};
|
2083
2132
|
/**
|
@@ -2120,6 +2169,16 @@ export class ConfigurationApi extends BaseAPI {
|
|
2120
2169
|
listFeatures(options) {
|
2121
2170
|
return ConfigurationApiFp(this.configuration).listFeatures(options).then((request) => request(this.axios, this.basePath));
|
2122
2171
|
}
|
2172
|
+
/**
|
2173
|
+
* List all features
|
2174
|
+
* @summary List features
|
2175
|
+
* @param {*} [options] Override http request option.
|
2176
|
+
* @throws {RequiredError}
|
2177
|
+
* @memberof ConfigurationApi
|
2178
|
+
*/
|
2179
|
+
listUserFeatures(options) {
|
2180
|
+
return ConfigurationApiFp(this.configuration).listUserFeatures(options).then((request) => request(this.axios, this.basePath));
|
2181
|
+
}
|
2123
2182
|
}
|
2124
2183
|
/**
|
2125
2184
|
* CustomDealsApi - axios parameter creator
|