@itentialopensource/adapter-netbox_v33 2.1.9 → 2.1.10
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 +8 -0
- package/metadata.json +5 -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
package/metadata.json
CHANGED
|
@@ -85,7 +85,9 @@
|
|
|
85
85
|
"link": "https://demo.netbox.dev/",
|
|
86
86
|
"public": true
|
|
87
87
|
}
|
|
88
|
-
]
|
|
88
|
+
],
|
|
89
|
+
"workshopLinks": [],
|
|
90
|
+
"workshopHomePage": "https://www.itential.com/get-started/"
|
|
89
91
|
},
|
|
90
92
|
"assets": [],
|
|
91
93
|
"relatedItems": {
|
|
@@ -109,5 +111,6 @@
|
|
|
109
111
|
"transformationProjects": [],
|
|
110
112
|
"exampleProjects": []
|
|
111
113
|
},
|
|
112
|
-
"supportLevel": "community"
|
|
114
|
+
"supportLevel": "community",
|
|
115
|
+
"techAlliance": false
|
|
113
116
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-netbox_v33",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.10",
|
|
4
4
|
"description": "This adapter integrates with system described as: Netbox v3.3",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"wizardVersion": "2.44.7",
|
|
@@ -55,12 +55,12 @@
|
|
|
55
55
|
"@itentialopensource/adapter-utils": "^5.6.0",
|
|
56
56
|
"acorn": "^8.12.1",
|
|
57
57
|
"ajv": "^8.17.1",
|
|
58
|
-
"axios": "^1.7.
|
|
58
|
+
"axios": "^1.7.4",
|
|
59
59
|
"commander": "^11.0.0",
|
|
60
60
|
"dns-lookup-promise": "^1.0.4",
|
|
61
61
|
"fs-extra": "^11.2.0",
|
|
62
62
|
"json-query": "^2.2.2",
|
|
63
|
-
"mocha": "^10.7.
|
|
63
|
+
"mocha": "^10.7.3",
|
|
64
64
|
"mocha-param": "^2.0.1",
|
|
65
65
|
"mongodb": "^4.16.0",
|
|
66
66
|
"ping": "^0.4.4",
|
|
Binary file
|
|
@@ -315,10 +315,10 @@ describe('[unit] Netbox_v33 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']);
|