@ardimedia/angular-portal-azure 0.2.243 → 0.2.244
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/apn.js +9 -4
- package/package.json +1 -1
package/apn.js
CHANGED
|
@@ -1471,10 +1471,15 @@ var angularportalazure;
|
|
|
1471
1471
|
var exception = new angularportalazure.Exception();
|
|
1472
1472
|
//#region Convert data to Messages
|
|
1473
1473
|
exception.Messages = [];
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1474
|
+
if (response.data.Data === undefined) {
|
|
1475
|
+
exception.Messages.push('No further information found in [response.data.Data].');
|
|
1476
|
+
}
|
|
1477
|
+
else {
|
|
1478
|
+
var i = 1;
|
|
1479
|
+
while (response.data.Data[i + ''] !== undefined) {
|
|
1480
|
+
exception.Messages.push(response.data.Data[i + '']);
|
|
1481
|
+
i++;
|
|
1482
|
+
}
|
|
1478
1483
|
}
|
|
1479
1484
|
//#endregion
|
|
1480
1485
|
return exception;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@ardimedia/angular-portal-azure",
|
|
3
3
|
"description": "Angular Portal Azure - GUI Framework.",
|
|
4
4
|
"author": "Ardimedia Anstalt <info@ardimedia.com> (http://www.ardimedia.com)",
|
|
5
|
-
"version": "0.2.
|
|
5
|
+
"version": "0.2.244",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|