@itentialopensource/adapter-meraki 0.7.0 → 0.8.0
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/.eslintignore +1 -0
- package/.eslintrc.js +12 -12
- package/CHANGELOG.md +32 -0
- package/README.md +270 -68
- package/adapter.js +2786 -24
- package/adapterBase.js +544 -17
- package/entities/.generic/action.json +109 -0
- package/entities/.generic/schema.json +23 -0
- package/entities/.system/action.json +1 -1
- package/entities/CameraQualityRetentionProfiles/action.json +3 -0
- package/entities/ConnectivityMonitoringDestinations/action.json +1 -0
- package/entities/DashboardBrandingPolicies/action.json +4 -0
- package/entities/Floorplans/action.json +3 -0
- package/entities/Licenses/action.json +5 -0
- package/entities/LinkAggregations/action.json +3 -0
- package/entities/MGConnectivityMonitoringDestinations/action.json +1 -0
- package/entities/MGDHCPSettings/action.json +1 -0
- package/entities/MGLANSettings/action.json +1 -0
- package/entities/MGPortforwardingRules/action.json +1 -0
- package/entities/MGSubnetPoolSettings/action.json +1 -0
- package/entities/MGUplinkSettings/action.json +1 -0
- package/entities/MXVLANPorts/action.json +1 -0
- package/entities/MXWarmSpareSettings/action.json +2 -0
- package/entities/NetFlowSettings/action.json +1 -0
- package/entities/Switch settings/action.json +9 -0
- package/entities/SwitchACLs/action.json +1 -0
- package/entities/SwitchPortsSchedules/action.json +3 -0
- package/entities/TrafficAnalysisSettings/action.json +1 -0
- package/entities/WirelessSettings/action.json +1 -0
- package/error.json +6 -0
- package/package.json +45 -23
- package/pronghorn.json +586 -16
- package/propertiesSchema.json +84 -11
- package/refs?service=git-upload-pack +0 -0
- package/report/meraki-newcalls-OpenApi3Json.json +5460 -0
- package/report/updateReport1594225126093.json +95 -0
- package/report/updateReport1615384306128.json +95 -0
- package/report/updateReport1642739939352.json +95 -0
- package/sampleProperties.json +20 -5
- package/test/integration/adapterTestBasicGet.js +85 -0
- package/test/integration/adapterTestConnectivity.js +93 -0
- package/test/integration/adapterTestIntegration.js +30 -11
- package/test/unit/adapterBaseTestUnit.js +944 -0
- package/test/unit/adapterTestUnit.js +638 -12
- package/utils/addAuth.js +94 -0
- package/utils/artifactize.js +9 -14
- package/utils/basicGet.js +50 -0
- package/utils/checkMigrate.js +63 -0
- package/utils/entitiesToDB.js +224 -0
- package/utils/findPath.js +74 -0
- package/utils/modify.js +154 -0
- package/utils/packModificationScript.js +1 -1
- package/utils/patches2bundledDeps.js +90 -0
- package/utils/pre-commit.sh +1 -1
- package/utils/removeHooks.js +20 -0
- package/utils/tbScript.js +169 -0
- package/utils/tbUtils.js +451 -0
- package/utils/troubleshootingAdapter.js +190 -0
- package/gl-code-quality-report.json +0 -1
package/.eslintignore
CHANGED
package/.eslintrc.js
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
module.exports = {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
2
|
+
env: {
|
3
|
+
browser: true,
|
4
|
+
es6: true,
|
5
|
+
node: true
|
6
6
|
},
|
7
|
-
|
8
|
-
|
9
|
-
|
7
|
+
extends: 'airbnb-base',
|
8
|
+
plugins: [
|
9
|
+
'json'
|
10
10
|
],
|
11
|
-
|
12
|
-
|
11
|
+
parserOptions: {
|
12
|
+
sourceType: 'module'
|
13
13
|
},
|
14
14
|
rules: {
|
15
15
|
'max-len': 'warn',
|
16
|
-
'comma-dangle': ['error', 'never']
|
17
|
-
}
|
18
|
-
};
|
16
|
+
'comma-dangle': ['error', 'never']
|
17
|
+
}
|
18
|
+
};
|
package/CHANGELOG.md
CHANGED
@@ -1,4 +1,36 @@
|
|
1
1
|
|
2
|
+
## 0.8.0 [01-21-2022]
|
3
|
+
|
4
|
+
* migration to the latest foundation and broker ready
|
5
|
+
|
6
|
+
See merge request itentialopensource/adapters/sd-wan/adapter-meraki!15
|
7
|
+
|
8
|
+
---
|
9
|
+
|
10
|
+
## 0.7.3 [06-08-2021]
|
11
|
+
|
12
|
+
* Update Pronghorn.json and adapter.js for passing body directly to api call
|
13
|
+
|
14
|
+
See merge request itentialopensource/adapters/sd-wan/adapter-meraki!14
|
15
|
+
|
16
|
+
---
|
17
|
+
|
18
|
+
## 0.7.2 [03-10-2021]
|
19
|
+
|
20
|
+
* migration to the latest adapter foundation
|
21
|
+
|
22
|
+
See merge request itentialopensource/adapters/sd-wan/adapter-meraki!13
|
23
|
+
|
24
|
+
---
|
25
|
+
|
26
|
+
## 0.7.1 [07-08-2020]
|
27
|
+
|
28
|
+
* migration
|
29
|
+
|
30
|
+
See merge request itentialopensource/adapters/sd-wan/adapter-meraki!12
|
31
|
+
|
32
|
+
---
|
33
|
+
|
2
34
|
## 0.7.0 [03-02-2020]
|
3
35
|
|
4
36
|
* Minor/add new version calls
|