@itentialopensource/adapter-meraki 1.4.2 → 1.4.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 CHANGED
@@ -1,4 +1,12 @@
1
1
 
2
+ ## 1.4.3 [02-09-2024]
3
+
4
+ * updates for broker
5
+
6
+ See merge request itentialopensource/adapters/sd-wan/adapter-meraki!37
7
+
8
+ ---
9
+
2
10
  ## 1.4.2 [12-24-2023]
3
11
 
4
12
  * update metadata
@@ -37,9 +37,5 @@
37
37
  "external_name": "passwd"
38
38
  }
39
39
  },
40
- "required": [
41
- "username",
42
- "password"
43
- ],
44
40
  "definitions": {}
45
41
  }
package/metadata.json CHANGED
@@ -40,14 +40,26 @@
40
40
  "isDeprecated": false
41
41
  },
42
42
  "brokerSince": "1.1.0",
43
+ "authMethods": [
44
+ {
45
+ "type": "API Key",
46
+ "primary": true
47
+ }
48
+ ],
43
49
  "documentation": {
44
50
  "storeLink": "",
45
51
  "npmLink": "https://www.npmjs.com/package/@itentialopensource/adapter-meraki",
46
52
  "repoLink": "https://gitlab.com/itentialopensource/adapters/sd-wan/adapter-meraki",
47
53
  "docLink": "https://docs.itential.com/opensource/docs/meraki",
48
54
  "demoLinks": [
49
- "https://www.itential.com/automations/sd-wan-branch-management/",
50
- "https://www.itential.com/solutions/sdwan-automation-orchestration/"
55
+ {
56
+ "title": "Meraki SD-WAN Branch Management",
57
+ "link": "https://www.itential.com/automations/sd-wan-branch-management/"
58
+ },
59
+ {
60
+ "title": "Multi-Vendor SD-WAN",
61
+ "link": "https://www.itential.com/solutions/sdwan-automation-orchestration/"
62
+ }
51
63
  ],
52
64
  "trainingLinks": [],
53
65
  "faqLink": "https://docs.itential.com/opensource/docs/troubleshooting-an-adapter",
@@ -57,7 +69,10 @@
57
69
  "vendorLink": "https://www.cisco.com/",
58
70
  "productLink": "https://meraki.cisco.com/",
59
71
  "apiLinks": [
60
- "https://developer.cisco.com/meraki/api-latest/"
72
+ {
73
+ "title": "Meraki Dashboard API",
74
+ "link": "https://developer.cisco.com/meraki/api-latest/"
75
+ }
61
76
  ]
62
77
  },
63
78
  "assets": [],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itentialopensource/adapter-meraki",
3
- "version": "1.4.2",
3
+ "version": "1.4.3",
4
4
  "description": "This adapter integrates with system described as: merakiDashboardApi.",
5
5
  "main": "adapter.js",
6
6
  "systemName": "Meraki",
@@ -44,7 +44,7 @@
44
44
  ],
45
45
  "license": "Apache-2.0",
46
46
  "engines": {
47
- "node": ">= 8.0.0",
47
+ "node": ">= 14.0.0",
48
48
  "npm": ">= 6.0.0"
49
49
  },
50
50
  "repository": {
@@ -54,10 +54,10 @@
54
54
  "author": "Itential",
55
55
  "homepage": "https://gitlab.com/itentialopensource/adapters/sd-wan/adapter-meraki#readme",
56
56
  "dependencies": {
57
- "@itentialopensource/adapter-utils": "^5.3.0",
57
+ "@itentialopensource/adapter-utils": "^5.3.7",
58
58
  "acorn": "^8.10.0",
59
59
  "ajv": "^8.12.0",
60
- "axios": "^1.6.2",
60
+ "axios": "^1.6.7",
61
61
  "commander": "^11.0.0",
62
62
  "dns-lookup-promise": "^1.0.4",
63
63
  "fs-extra": "^11.1.1",
@@ -945,6 +945,11 @@
945
945
  "devicebroker": {
946
946
  "type": "object",
947
947
  "properties": {
948
+ "enabled": {
949
+ "type": "boolean",
950
+ "description": "Whether or not the device broker calls have been mapped",
951
+ "default": false
952
+ },
948
953
  "getDevice": {
949
954
  "type": "array",
950
955
  "description": "Broker call(s) to getDevice",
Binary file
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "1.4.1",
3
- "configLines": 63063,
2
+ "version": "1.4.2",
3
+ "configLines": 63068,
4
4
  "scriptLines": 1783,
5
5
  "codeLines": 53869,
6
6
  "testLines": 43445,
@@ -22,8 +22,8 @@
22
22
  "token_timeout": 1800000,
23
23
  "token_cache": "local",
24
24
  "invalid_token_error": 401,
25
- "auth_field": "header.headers.Authorization",
26
- "auth_field_format": "Bearer {token}",
25
+ "auth_field": "header.headers.X-Cisco-Meraki-API-Key",
26
+ "auth_field_format": "{token}",
27
27
  "auth_logging": false,
28
28
  "client_id": "",
29
29
  "client_secret": "",
@@ -115,6 +115,7 @@
115
115
  }
116
116
  },
117
117
  "devicebroker": {
118
+ "enabled": true,
118
119
  "getDevice": [
119
120
  {
120
121
  "path": "/organizations/{orgID}/networks/{networkId}/devices/{serial}",
@@ -316,7 +316,7 @@ describe('[unit] Meraki 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.2', packageDotJson.dependencies.axios);
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
322
  assert.equal('^10.2.0', packageDotJson.dependencies.mocha);