@itentialopensource/adapter-centreon 0.2.1 → 0.2.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/metadata.json CHANGED
@@ -13,9 +13,16 @@
13
13
  ],
14
14
  "method": "REST",
15
15
  "type": "Adapter",
16
- "domains": [],
17
- "tags": [],
18
- "useCases": [],
16
+ "domains": [
17
+ "Service Assurance"
18
+ ],
19
+ "tags": [
20
+ "Monitoring & Troubleshooting"
21
+ ],
22
+ "useCases": [
23
+ "Add Device to Monitoring",
24
+ "Automated network data gathering for diagnostics"
25
+ ],
19
26
  "deprecated": {
20
27
  "isDeprecated": false
21
28
  },
@@ -43,5 +50,11 @@
43
50
  "workflowProjects": [],
44
51
  "transformationProjects": [],
45
52
  "exampleProjects": []
46
- }
47
- }
53
+ },
54
+ "authMethods": [
55
+ {
56
+ "type": "Dynamic Token",
57
+ "primary": true
58
+ }
59
+ ]
60
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itentialopensource/adapter-centreon",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "This adapter integrates with system described as: Centreon.",
5
5
  "main": "adapter.js",
6
6
  "wizardVersion": "2.44.7",
@@ -54,10 +54,10 @@
54
54
  "author": "Itential",
55
55
  "homepage": "https://gitlab.com/itentialopensource/adapters/service-assurance/adapter-centreon#readme",
56
56
  "dependencies": {
57
- "@itentialopensource/adapter-utils": "^5.3.8",
57
+ "@itentialopensource/adapter-utils": "^5.3.10",
58
58
  "acorn": "^8.10.0",
59
59
  "ajv": "^8.12.0",
60
- "axios": "^1.6.7",
60
+ "axios": "^1.6.8",
61
61
  "commander": "^11.0.0",
62
62
  "dns-lookup-promise": "^1.0.4",
63
63
  "fs-extra": "^11.1.1",
Binary file
@@ -316,7 +316,7 @@ describe('[unit] Centreon 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.7', packageDotJson.dependencies.axios);
319
+ assert.equal('^1.6.8', 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
322
  assert.equal('^10.3.0', packageDotJson.dependencies.mocha);