flexinet-api 0.0.370-prerelease0 → 0.0.372-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 +2 -3
- package/dist/api.js +2 -3
- package/dist/esm/api.js +2 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## flexinet-api@0.0.
|
|
1
|
+
## flexinet-api@0.0.372-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.372-prerelease0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4412,9 +4412,8 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
4412
4412
|
const localVarHeaderParameter = {} as any;
|
|
4413
4413
|
const localVarQueryParameter = {} as any;
|
|
4414
4414
|
|
|
4415
|
-
// authentication
|
|
4416
|
-
|
|
4417
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
4415
|
+
// authentication ApiKeyAuth required
|
|
4416
|
+
await setApiKeyToObject(localVarHeaderParameter, "X-API-Key", configuration)
|
|
4418
4417
|
|
|
4419
4418
|
|
|
4420
4419
|
|
package/dist/api.js
CHANGED
|
@@ -1496,9 +1496,8 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1496
1496
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
1497
1497
|
const localVarHeaderParameter = {};
|
|
1498
1498
|
const localVarQueryParameter = {};
|
|
1499
|
-
// authentication
|
|
1500
|
-
|
|
1501
|
-
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
1499
|
+
// authentication ApiKeyAuth required
|
|
1500
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "X-API-Key", configuration);
|
|
1502
1501
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1503
1502
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1504
1503
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
package/dist/esm/api.js
CHANGED
|
@@ -1467,9 +1467,8 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1467
1467
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
1468
1468
|
const localVarHeaderParameter = {};
|
|
1469
1469
|
const localVarQueryParameter = {};
|
|
1470
|
-
// authentication
|
|
1471
|
-
|
|
1472
|
-
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1470
|
+
// authentication ApiKeyAuth required
|
|
1471
|
+
yield setApiKeyToObject(localVarHeaderParameter, "X-API-Key", configuration);
|
|
1473
1472
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1474
1473
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1475
1474
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|