@itentialopensource/adapter-calix_smx 1.0.1 → 1.0.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 +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 +3 -3
- 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 +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,20 @@
|
|
|
1
1
|
|
|
2
|
+
## 1.0.3 [04-29-2026]
|
|
3
|
+
|
|
4
|
+
* fix default value in schema
|
|
5
|
+
|
|
6
|
+
See merge request itentialopensource/adapters/adapter-calix_smx!27
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## 1.0.2 [04-28-2026]
|
|
11
|
+
|
|
12
|
+
* Changes made at 2026.04.28_13:04PM
|
|
13
|
+
|
|
14
|
+
See merge request itentialopensource/adapters/adapter-calix_smx!26
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
2
18
|
## 1.0.1 [04-24-2026]
|
|
3
19
|
|
|
4
20
|
* change schema on Post/put EMS Subscriber calls
|
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.3",
|
|
4
4
|
"description": "This adapter integrates with system described as: Calix SMx Northbound API.",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"systemName": "Calixsmx",
|
|
@@ -48,10 +48,10 @@
|
|
|
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.
|
|
51
|
+
"@itentialopensource/adapter-utils": "6.1.19",
|
|
52
52
|
"acorn": "8.14.1",
|
|
53
53
|
"ajv": "8.18.0",
|
|
54
|
-
"axios": "1.15.
|
|
54
|
+
"axios": "1.15.2",
|
|
55
55
|
"commander": "11.1.0",
|
|
56
56
|
"fs-extra": "11.3.4",
|
|
57
57
|
"json-query": "2.2.2",
|
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
|
}
|
|
@@ -280,7 +280,7 @@ describe('[unit] Calixsmx Adapter Test', () => {
|
|
|
280
280
|
assert.notEqual(null, packageDotJson.dependencies);
|
|
281
281
|
assert.notEqual('', packageDotJson.dependencies);
|
|
282
282
|
assert.equal('8.18.0', packageDotJson.dependencies.ajv);
|
|
283
|
-
assert.equal('1.15.
|
|
283
|
+
assert.equal('1.15.2', packageDotJson.dependencies.axios);
|
|
284
284
|
assert.equal('11.1.0', packageDotJson.dependencies.commander);
|
|
285
285
|
assert.equal('11.3.4', packageDotJson.dependencies['fs-extra']);
|
|
286
286
|
assert.equal('12.0.0-beta-10', packageDotJson.dependencies.mocha);
|