@itentialopensource/adapter-alkira 0.6.1 → 0.6.3
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/metadata.json +7 -2
- package/package.json +3 -3
- package/refs?service=git-upload-pack +0 -0
- package/test/unit/adapterTestUnit.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,20 @@
|
|
|
1
1
|
|
|
2
|
+
## 0.6.3 [08-14-2024]
|
|
3
|
+
|
|
4
|
+
* Changes made at 2024.08.14_17:53PM
|
|
5
|
+
|
|
6
|
+
See merge request itentialopensource/adapters/adapter-alkira!16
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## 0.6.2 [08-06-2024]
|
|
11
|
+
|
|
12
|
+
* Changes made at 2024.08.06_19:07PM
|
|
13
|
+
|
|
14
|
+
See merge request itentialopensource/adapters/adapter-alkira!15
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
2
18
|
## 0.6.1 [08-05-2024]
|
|
3
19
|
|
|
4
20
|
* Changes made at 2024.08.05_19:15PM
|
package/metadata.json
CHANGED
|
@@ -81,7 +81,9 @@
|
|
|
81
81
|
"webLink": "https://www.itential.com/adapters/alkira/",
|
|
82
82
|
"vendorLink": "https://www.alkira.com/",
|
|
83
83
|
"productLink": "https://www.alkira.com/multi-cloud-networking/",
|
|
84
|
-
"apiLinks": []
|
|
84
|
+
"apiLinks": [],
|
|
85
|
+
"workshopLinks": [],
|
|
86
|
+
"workshopHomePage": "https://www.itential.com/get-started/"
|
|
85
87
|
},
|
|
86
88
|
"assets": [],
|
|
87
89
|
"relatedItems": {
|
|
@@ -105,5 +107,8 @@
|
|
|
105
107
|
"transformationProjects": [],
|
|
106
108
|
"exampleProjects": []
|
|
107
109
|
},
|
|
108
|
-
"supportLevel":
|
|
110
|
+
"supportLevel": [
|
|
111
|
+
"community"
|
|
112
|
+
],
|
|
113
|
+
"techAlliance": false
|
|
109
114
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-alkira",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
4
4
|
"description": "This adapter integrates with system described as: alkiraApi.",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"systemName": "Alkira",
|
|
@@ -56,12 +56,12 @@
|
|
|
56
56
|
"@itentialopensource/adapter-utils": "^5.6.0",
|
|
57
57
|
"acorn": "^8.12.1",
|
|
58
58
|
"ajv": "^8.17.1",
|
|
59
|
-
"axios": "^1.7.
|
|
59
|
+
"axios": "^1.7.4",
|
|
60
60
|
"commander": "^11.0.0",
|
|
61
61
|
"dns-lookup-promise": "^1.0.4",
|
|
62
62
|
"fs-extra": "^11.2.0",
|
|
63
63
|
"json-query": "^2.2.2",
|
|
64
|
-
"mocha": "^10.7.
|
|
64
|
+
"mocha": "^10.7.3",
|
|
65
65
|
"mocha-param": "^2.0.1",
|
|
66
66
|
"mongodb": "^4.16.0",
|
|
67
67
|
"ping": "^0.4.4",
|
|
Binary file
|
|
@@ -315,10 +315,10 @@ describe('[unit] Alkira Adapter Test', () => {
|
|
|
315
315
|
assert.notEqual(null, packageDotJson.dependencies);
|
|
316
316
|
assert.notEqual('', packageDotJson.dependencies);
|
|
317
317
|
assert.equal('^8.17.1', packageDotJson.dependencies.ajv);
|
|
318
|
-
assert.equal('^1.7.
|
|
318
|
+
assert.equal('^1.7.4', packageDotJson.dependencies.axios);
|
|
319
319
|
assert.equal('^11.0.0', packageDotJson.dependencies.commander);
|
|
320
320
|
assert.equal('^11.2.0', packageDotJson.dependencies['fs-extra']);
|
|
321
|
-
assert.equal('^10.7.
|
|
321
|
+
assert.equal('^10.7.3', packageDotJson.dependencies.mocha);
|
|
322
322
|
assert.equal('^2.0.1', packageDotJson.dependencies['mocha-param']);
|
|
323
323
|
assert.equal('^0.4.4', packageDotJson.dependencies.ping);
|
|
324
324
|
assert.equal('^1.4.10', packageDotJson.dependencies['readline-sync']);
|