@itentialopensource/adapter-calix_smx 1.0.2 → 1.0.4
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 +16 -0
- package/entities/EMSSubscriber/action.json +2 -2
- package/entities/EMSSubscriber/mockdatafiles/updateAccount.json +6 -0
- package/entities/EMSSubscriber/postSchema.json +1 -1
- package/package.json +6 -6
- package/report/adapterInfo.json +2 -2
- package/report/auto-adapter-openapi.json +19 -3
- package/test/integration/adapterTestIntegration.js +2 -2
- package/test/unit/adapterTestUnit.js +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,20 @@
|
|
|
1
1
|
|
|
2
|
+
## 1.0.4 [05-13-2026]
|
|
3
|
+
|
|
4
|
+
* Changes made at 2026.05.13_08:20AM
|
|
5
|
+
|
|
6
|
+
See merge request itentialopensource/adapters/adapter-calix_smx!28
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## 1.0.3 [04-29-2026]
|
|
11
|
+
|
|
12
|
+
* fix default value in schema
|
|
13
|
+
|
|
14
|
+
See merge request itentialopensource/adapters/adapter-calix_smx!27
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
2
18
|
## 1.0.2 [04-28-2026]
|
|
3
19
|
|
|
4
20
|
* Changes made at 2026.04.28_13:04PM
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-calix_smx",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "This adapter integrates with system described as: Calix SMx Northbound API.",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"systemName": "Calixsmx",
|
|
@@ -48,12 +48,12 @@
|
|
|
48
48
|
"author": "Itential",
|
|
49
49
|
"homepage": "https://gitlab.com/itentialopensource/adapters/adapter-calix_smx#readme",
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@itentialopensource/adapter-utils": "6.1.
|
|
52
|
-
"acorn": "8.
|
|
53
|
-
"ajv": "8.
|
|
54
|
-
"axios": "1.
|
|
51
|
+
"@itentialopensource/adapter-utils": "6.1.20",
|
|
52
|
+
"acorn": "8.16.0",
|
|
53
|
+
"ajv": "8.20.0",
|
|
54
|
+
"axios": "1.16.0",
|
|
55
55
|
"commander": "11.1.0",
|
|
56
|
-
"fs-extra": "11.3.
|
|
56
|
+
"fs-extra": "11.3.5",
|
|
57
57
|
"json-query": "2.2.2",
|
|
58
58
|
"mocha": "12.0.0-beta-10",
|
|
59
59
|
"mocha-param": "2.0.1",
|
package/report/adapterInfo.json
CHANGED
|
@@ -102437,9 +102437,25 @@
|
|
|
102437
102437
|
"content": {
|
|
102438
102438
|
"application/json": {
|
|
102439
102439
|
"schema": {
|
|
102440
|
-
"
|
|
102441
|
-
"
|
|
102442
|
-
|
|
102440
|
+
"type": "array",
|
|
102441
|
+
"items": {
|
|
102442
|
+
"type": "object",
|
|
102443
|
+
"properties": {
|
|
102444
|
+
"resultCode": {
|
|
102445
|
+
"type": "string"
|
|
102446
|
+
},
|
|
102447
|
+
"userMessage": {
|
|
102448
|
+
"type": "string"
|
|
102449
|
+
}
|
|
102450
|
+
}
|
|
102451
|
+
}
|
|
102452
|
+
},
|
|
102453
|
+
"example": [
|
|
102454
|
+
{
|
|
102455
|
+
"resultCode": "String",
|
|
102456
|
+
"userMessage": "String"
|
|
102457
|
+
}
|
|
102458
|
+
]
|
|
102443
102459
|
}
|
|
102444
102460
|
}
|
|
102445
102461
|
}
|
|
@@ -37517,8 +37517,8 @@ describe('[integration] Calixsmx Adapter Test', () => {
|
|
|
37517
37517
|
a.updateAccount(eMSSubscriberOrgId, eMSSubscriberAccountName, eMSSubscriberUpdateAccountBodyParam, null, (data, error) => {
|
|
37518
37518
|
try {
|
|
37519
37519
|
if (stub) {
|
|
37520
|
-
|
|
37521
|
-
|
|
37520
|
+
runCommonAsserts(data, error);
|
|
37521
|
+
assert.equal('object', typeof data.response);
|
|
37522
37522
|
} else {
|
|
37523
37523
|
runCommonAsserts(data, error);
|
|
37524
37524
|
}
|
|
@@ -279,10 +279,10 @@ describe('[unit] Calixsmx Adapter Test', () => {
|
|
|
279
279
|
assert.notEqual(undefined, packageDotJson.dependencies);
|
|
280
280
|
assert.notEqual(null, packageDotJson.dependencies);
|
|
281
281
|
assert.notEqual('', packageDotJson.dependencies);
|
|
282
|
-
assert.equal('8.
|
|
283
|
-
assert.equal('1.
|
|
282
|
+
assert.equal('8.20.0', packageDotJson.dependencies.ajv);
|
|
283
|
+
assert.equal('1.16.0', packageDotJson.dependencies.axios);
|
|
284
284
|
assert.equal('11.1.0', packageDotJson.dependencies.commander);
|
|
285
|
-
assert.equal('11.3.
|
|
285
|
+
assert.equal('11.3.5', packageDotJson.dependencies['fs-extra']);
|
|
286
286
|
assert.equal('12.0.0-beta-10', packageDotJson.dependencies.mocha);
|
|
287
287
|
assert.equal('2.0.1', packageDotJson.dependencies['mocha-param']);
|
|
288
288
|
assert.equal('0.4.4', packageDotJson.dependencies.ping);
|