@itentialopensource/adapter-ciena_mcp 0.5.1 → 0.5.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 +8 -0
- package/TAB2.md +2 -2
- 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/TAB2.md
CHANGED
|
@@ -314,7 +314,7 @@ Sample Properties can be used to help you configure the adapter in the Itential
|
|
|
314
314
|
}
|
|
315
315
|
}
|
|
316
316
|
```
|
|
317
|
-
### [Swagger](https://gitlab.com/itentialopensource/adapters/
|
|
317
|
+
### [Swagger](https://gitlab.com/itentialopensource/adapters/adapter-ciena_mcp/-/blob/master/report/adapter-openapi.json)
|
|
318
318
|
|
|
319
|
-
## [Generic Adapter Information](https://gitlab.com/itentialopensource/adapters/
|
|
319
|
+
## [Generic Adapter Information](https://gitlab.com/itentialopensource/adapters/adapter-ciena_mcp/-/blob/master/README.md)
|
|
320
320
|
|
package/metadata.json
CHANGED
|
@@ -71,7 +71,9 @@
|
|
|
71
71
|
"link": "https://my.ciena.com/CienaPortal/s/article/MCP-OAuth-20-Token-on-MCP-API",
|
|
72
72
|
"public": true
|
|
73
73
|
}
|
|
74
|
-
]
|
|
74
|
+
],
|
|
75
|
+
"workshopLinks": [],
|
|
76
|
+
"workshopHomePage": "https://www.itential.com/get-started/"
|
|
75
77
|
},
|
|
76
78
|
"assets": [],
|
|
77
79
|
"relatedItems": {
|
|
@@ -82,5 +84,6 @@
|
|
|
82
84
|
"transformationProjects": [],
|
|
83
85
|
"exampleProjects": []
|
|
84
86
|
},
|
|
85
|
-
"supportLevel": "community"
|
|
87
|
+
"supportLevel": "community",
|
|
88
|
+
"techAlliance": false
|
|
86
89
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-ciena_mcp",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "This adapter integrates with system described as: Ciena Mcp",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"wizardVersion": "2.44.7",
|
|
@@ -58,12 +58,12 @@
|
|
|
58
58
|
"@itentialopensource/adapter-utils": "^5.6.0",
|
|
59
59
|
"acorn": "^8.12.1",
|
|
60
60
|
"ajv": "^8.17.1",
|
|
61
|
-
"axios": "^1.7.
|
|
61
|
+
"axios": "^1.7.4",
|
|
62
62
|
"commander": "^11.0.0",
|
|
63
63
|
"dns-lookup-promise": "^1.0.4",
|
|
64
64
|
"fs-extra": "^11.2.0",
|
|
65
65
|
"json-query": "^2.2.2",
|
|
66
|
-
"mocha": "^10.7.
|
|
66
|
+
"mocha": "^10.7.3",
|
|
67
67
|
"mocha-param": "^2.0.1",
|
|
68
68
|
"mongodb": "^4.16.0",
|
|
69
69
|
"ping": "^0.4.4",
|
|
Binary file
|
|
@@ -315,10 +315,10 @@ describe('[unit] CienaMcp 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']);
|