@itentialopensource/adapter-calix_smx 1.0.2 → 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 +8 -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 +1 -1
- package/report/adapterInfo.json +2 -2
- package/report/auto-adapter-openapi.json +19 -3
- package/test/integration/adapterTestIntegration.js +2 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
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
|
}
|