@itentialopensource/adapter-alkira 0.1.5 → 0.1.7
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/CHANGELOG.md +16 -0
- package/adapterBase.js +0 -7
- package/package.json +2 -2
- package/refs?service=git-upload-pack +0 -0
- package/report/adapterInfo.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,20 @@
|
|
|
1
1
|
|
|
2
|
+
## 0.1.7 [08-01-2023]
|
|
3
|
+
|
|
4
|
+
* Bug fixes and performance improvements
|
|
5
|
+
|
|
6
|
+
See commit a5678d1
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## 0.1.6 [08-01-2023]
|
|
11
|
+
|
|
12
|
+
* Migrate adapter base with broker changes
|
|
13
|
+
|
|
14
|
+
See merge request itentialopensource/adapters/cloud/adapter-alkira!4
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
2
18
|
## 0.1.5 [05-02-2023]
|
|
3
19
|
|
|
4
20
|
* Migrate adapter base with broker changes
|
package/adapterBase.js
CHANGED
|
@@ -26,14 +26,11 @@ const AjvCl = require('ajv');
|
|
|
26
26
|
const PropUtilCl = require('@itentialopensource/adapter-utils').PropertyUtility;
|
|
27
27
|
const RequestHandlerCl = require('@itentialopensource/adapter-utils').RequestHandler;
|
|
28
28
|
|
|
29
|
-
const TransUtilCl = require(path.join(__dirname, 'node_modules/@itentialopensource/adapter-utils/lib/translatorUtil.js'));
|
|
30
|
-
|
|
31
29
|
const entitiesToDB = require(path.join(__dirname, 'utils/entitiesToDB'));
|
|
32
30
|
const troubleshootingAdapter = require(path.join(__dirname, 'utils/troubleshootingAdapter'));
|
|
33
31
|
const tbUtils = require(path.join(__dirname, 'utils/tbUtils'));
|
|
34
32
|
|
|
35
33
|
let propUtil = null;
|
|
36
|
-
let transUtil = null;
|
|
37
34
|
let choosepath = null;
|
|
38
35
|
|
|
39
36
|
/*
|
|
@@ -217,10 +214,6 @@ class AdapterBase extends EventEmitterCl {
|
|
|
217
214
|
this.id = prongid;
|
|
218
215
|
this.propUtilInst = new PropUtilCl(prongid, __dirname);
|
|
219
216
|
propUtil = this.propUtilInst;
|
|
220
|
-
this.transUtilInst = new TransUtilCl(prongid, this.propUtilInst);
|
|
221
|
-
transUtil = this.transUtilInst;
|
|
222
|
-
this.transUtilInst = new TransUtilCl(prongid, this.propUtilInst);
|
|
223
|
-
transUtil = this.transUtilInst;
|
|
224
217
|
this.initProps = properties;
|
|
225
218
|
this.alive = false;
|
|
226
219
|
this.healthy = false;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-alkira",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "This adapter integrates with system described as: alkiraApi.",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"wizardVersion": "2.44.15",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"author": "Itential",
|
|
54
54
|
"homepage": "https://gitlab.com/itentialopensource/adapters/cloud/adapter-alkira#readme",
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@itentialopensource/adapter-utils": "^4.
|
|
56
|
+
"@itentialopensource/adapter-utils": "^4.49.0",
|
|
57
57
|
"ajv": "^6.12.0",
|
|
58
58
|
"axios": "^0.21.0",
|
|
59
59
|
"commander": "^2.20.0",
|
|
Binary file
|
package/report/adapterInfo.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.1.
|
|
2
|
+
"version": "0.1.5",
|
|
3
3
|
"configLines": 46212,
|
|
4
4
|
"scriptLines": 1795,
|
|
5
|
-
"codeLines":
|
|
5
|
+
"codeLines": 40977,
|
|
6
6
|
"testLines": 32660,
|
|
7
7
|
"testCases": 1735,
|
|
8
|
-
"totalCodeLines":
|
|
8
|
+
"totalCodeLines": 75432,
|
|
9
9
|
"wfTasks": 457
|
|
10
10
|
}
|