@itentialopensource/adapter-thingspace 0.2.0 → 0.2.2
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 +23 -4
- package/package.json +4 -4
- 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.2.2 [03-11-2024]
|
|
3
|
+
|
|
4
|
+
* Changes made at 2024.03.11_15:54PM
|
|
5
|
+
|
|
6
|
+
See merge request itentialopensource/adapters/controller-orchestrator/adapter-thingspace!4
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## 0.2.1 [02-28-2024]
|
|
11
|
+
|
|
12
|
+
* Changes made at 2024.02.28_11:21AM
|
|
13
|
+
|
|
14
|
+
See merge request itentialopensource/adapters/controller-orchestrator/adapter-thingspace!3
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
2
18
|
## 0.2.0 [12-29-2023]
|
|
3
19
|
|
|
4
20
|
* Adapter Migration
|
package/metadata.json
CHANGED
|
@@ -13,9 +13,28 @@
|
|
|
13
13
|
],
|
|
14
14
|
"method": "REST",
|
|
15
15
|
"type": "Adapter",
|
|
16
|
-
"domains": [
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
"domains": [
|
|
17
|
+
"Data Center",
|
|
18
|
+
"Network Services"
|
|
19
|
+
],
|
|
20
|
+
"tags": [
|
|
21
|
+
"Configuration & Compliance",
|
|
22
|
+
"Network Infrastructure Changes",
|
|
23
|
+
"Software Upgrades & Device Maintenance"
|
|
24
|
+
],
|
|
25
|
+
"useCases": [
|
|
26
|
+
"Device Onboarding",
|
|
27
|
+
"Router configuration backup or restore",
|
|
28
|
+
"Run network compliance checks and remediation",
|
|
29
|
+
"Determine configuration drift",
|
|
30
|
+
"Golden Configuration",
|
|
31
|
+
"Port/VLAN Configuration",
|
|
32
|
+
"EVPN & VXLA",
|
|
33
|
+
"Port Turn-up",
|
|
34
|
+
"Assign Network & IP",
|
|
35
|
+
"Cloud Managed Networks",
|
|
36
|
+
"Software Upgrade"
|
|
37
|
+
],
|
|
19
38
|
"deprecated": {
|
|
20
39
|
"isDeprecated": false
|
|
21
40
|
},
|
|
@@ -44,4 +63,4 @@
|
|
|
44
63
|
"transformationProjects": [],
|
|
45
64
|
"exampleProjects": []
|
|
46
65
|
}
|
|
47
|
-
}
|
|
66
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-thingspace",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "This adapter integrates with system described as: ThingSpace.",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"wizardVersion": "2.44.7",
|
|
@@ -52,15 +52,15 @@
|
|
|
52
52
|
"author": "Itential",
|
|
53
53
|
"homepage": "https://gitlab.com/itentialopensource/adapters/adapter-thingspace#readme",
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@itentialopensource/adapter-utils": "^5.3.
|
|
55
|
+
"@itentialopensource/adapter-utils": "^5.3.8",
|
|
56
56
|
"acorn": "^8.10.0",
|
|
57
57
|
"ajv": "^8.12.0",
|
|
58
|
-
"axios": "^1.6.
|
|
58
|
+
"axios": "^1.6.7",
|
|
59
59
|
"commander": "^11.0.0",
|
|
60
60
|
"dns-lookup-promise": "^1.0.4",
|
|
61
61
|
"fs-extra": "^11.1.1",
|
|
62
62
|
"json-query": "^2.2.2",
|
|
63
|
-
"mocha": "^10.
|
|
63
|
+
"mocha": "^10.3.0",
|
|
64
64
|
"mocha-param": "^2.0.1",
|
|
65
65
|
"mongodb": "^4.16.0",
|
|
66
66
|
"nyc": "^15.1.0",
|
|
Binary file
|
|
@@ -316,10 +316,10 @@ describe('[unit] Thingspace Adapter Test', () => {
|
|
|
316
316
|
assert.notEqual(null, packageDotJson.dependencies);
|
|
317
317
|
assert.notEqual('', packageDotJson.dependencies);
|
|
318
318
|
assert.equal('^8.12.0', packageDotJson.dependencies.ajv);
|
|
319
|
-
assert.equal('^1.6.
|
|
319
|
+
assert.equal('^1.6.7', packageDotJson.dependencies.axios);
|
|
320
320
|
assert.equal('^11.0.0', packageDotJson.dependencies.commander);
|
|
321
321
|
assert.equal('^11.1.1', packageDotJson.dependencies['fs-extra']);
|
|
322
|
-
assert.equal('^10.
|
|
322
|
+
assert.equal('^10.3.0', packageDotJson.dependencies.mocha);
|
|
323
323
|
assert.equal('^2.0.1', packageDotJson.dependencies['mocha-param']);
|
|
324
324
|
assert.equal('^15.1.0', packageDotJson.dependencies.nyc);
|
|
325
325
|
assert.equal('^0.4.4', packageDotJson.dependencies.ping);
|