flexinet-api 0.0.368-prerelease0 → 0.0.371-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 +3 -0
- package/dist/api.js +2 -0
- package/dist/esm/api.js +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## flexinet-api@0.0.
|
|
1
|
+
## flexinet-api@0.0.371-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.371-prerelease0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4416,6 +4416,9 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
4416
4416
|
// http bearer authentication required
|
|
4417
4417
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
4418
4418
|
|
|
4419
|
+
// authentication ApiKeyAuth required
|
|
4420
|
+
await setApiKeyToObject(localVarHeaderParameter, "X-API-Key", configuration)
|
|
4421
|
+
|
|
4419
4422
|
|
|
4420
4423
|
|
|
4421
4424
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
package/dist/api.js
CHANGED
|
@@ -1499,6 +1499,8 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1499
1499
|
// authentication jwt required
|
|
1500
1500
|
// http bearer authentication required
|
|
1501
1501
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
1502
|
+
// authentication ApiKeyAuth required
|
|
1503
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "X-API-Key", configuration);
|
|
1502
1504
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1503
1505
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1504
1506
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
package/dist/esm/api.js
CHANGED
|
@@ -1470,6 +1470,8 @@ export const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
1470
1470
|
// authentication jwt required
|
|
1471
1471
|
// http bearer authentication required
|
|
1472
1472
|
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1473
|
+
// authentication ApiKeyAuth required
|
|
1474
|
+
yield setApiKeyToObject(localVarHeaderParameter, "X-API-Key", configuration);
|
|
1473
1475
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1474
1476
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1475
1477
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|