@ardimedia/angular-portal-azure 0.2.192 → 0.2.194
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.d.ts +25 -15
- package/apn.js +28 -12
- package/package.json +1 -1
package/apn.d.ts
CHANGED
|
@@ -388,29 +388,39 @@ declare namespace angularportalazure {
|
|
|
388
388
|
}
|
|
389
389
|
}
|
|
390
390
|
declare namespace angularportalazure {
|
|
391
|
-
class
|
|
391
|
+
class ExceptionDotNet {
|
|
392
|
+
ExceptionMessage: string;
|
|
392
393
|
ExceptionType: string;
|
|
393
|
-
ClassName: string;
|
|
394
|
-
Data: Object;
|
|
395
|
-
Type: string;
|
|
396
|
-
Messages: string[];
|
|
397
394
|
Message: string;
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
395
|
+
StackTrace: string;
|
|
396
|
+
}
|
|
397
|
+
class ValidationResultDotNet {
|
|
398
|
+
ErrorMessage: string;
|
|
399
|
+
MemberNames: string[];
|
|
400
|
+
}
|
|
401
|
+
class ValidationsExceptionDotNet extends ExceptionDotNet {
|
|
402
|
+
ClassName: string;
|
|
403
|
+
Data: {
|
|
404
|
+
key: number;
|
|
405
|
+
value: string;
|
|
406
|
+
}[];
|
|
407
|
+
ValidationResults: ValidationResultDotNet[];
|
|
404
408
|
}
|
|
405
409
|
}
|
|
406
410
|
declare namespace angularportalazure {
|
|
407
|
-
class
|
|
411
|
+
class Exception extends angularportalazure.ValidationsExceptionDotNet {
|
|
412
|
+
ExceptionMessage: string;
|
|
408
413
|
ExceptionType: string;
|
|
409
|
-
ClassName: string;
|
|
410
|
-
Data: Object;
|
|
411
|
-
Type: string;
|
|
412
414
|
Message: string;
|
|
415
|
+
StackTrace: string;
|
|
416
|
+
Type: string;
|
|
417
|
+
MessageDetail: string;
|
|
413
418
|
Messages: string[];
|
|
419
|
+
Status: number | undefined;
|
|
420
|
+
StatusText: string | undefined;
|
|
421
|
+
Url: string;
|
|
422
|
+
processException(response: angular.IHttpPromiseCallbackArg<any>): void;
|
|
423
|
+
convertFromWebApiException(ex: angularportalazure.Exception): void;
|
|
414
424
|
}
|
|
415
425
|
}
|
|
416
426
|
declare namespace angularportalazure {
|
package/apn.js
CHANGED
|
@@ -1347,8 +1347,34 @@ var angularportalazure;
|
|
|
1347
1347
|
"use strict";
|
|
1348
1348
|
var angularportalazure;
|
|
1349
1349
|
(function (angularportalazure) {
|
|
1350
|
-
var
|
|
1350
|
+
var ExceptionDotNet = (function () {
|
|
1351
|
+
function ExceptionDotNet() {
|
|
1352
|
+
}
|
|
1353
|
+
return ExceptionDotNet;
|
|
1354
|
+
}());
|
|
1355
|
+
angularportalazure.ExceptionDotNet = ExceptionDotNet;
|
|
1356
|
+
var ValidationResultDotNet = (function () {
|
|
1357
|
+
function ValidationResultDotNet() {
|
|
1358
|
+
}
|
|
1359
|
+
return ValidationResultDotNet;
|
|
1360
|
+
}());
|
|
1361
|
+
angularportalazure.ValidationResultDotNet = ValidationResultDotNet;
|
|
1362
|
+
var ValidationsExceptionDotNet = (function (_super) {
|
|
1363
|
+
__extends(ValidationsExceptionDotNet, _super);
|
|
1364
|
+
function ValidationsExceptionDotNet() {
|
|
1365
|
+
return _super.apply(this, arguments) || this;
|
|
1366
|
+
}
|
|
1367
|
+
return ValidationsExceptionDotNet;
|
|
1368
|
+
}(ExceptionDotNet));
|
|
1369
|
+
angularportalazure.ValidationsExceptionDotNet = ValidationsExceptionDotNet;
|
|
1370
|
+
})(angularportalazure || (angularportalazure = {}));
|
|
1371
|
+
"use strict";
|
|
1372
|
+
var angularportalazure;
|
|
1373
|
+
(function (angularportalazure) {
|
|
1374
|
+
var Exception = (function (_super) {
|
|
1375
|
+
__extends(Exception, _super);
|
|
1351
1376
|
function Exception() {
|
|
1377
|
+
return _super.apply(this, arguments) || this;
|
|
1352
1378
|
}
|
|
1353
1379
|
//#endregion
|
|
1354
1380
|
Exception.prototype.processException = function (response) {
|
|
@@ -1393,19 +1419,9 @@ var angularportalazure;
|
|
|
1393
1419
|
//#endregion
|
|
1394
1420
|
};
|
|
1395
1421
|
return Exception;
|
|
1396
|
-
}());
|
|
1422
|
+
}(angularportalazure.ValidationsExceptionDotNet));
|
|
1397
1423
|
angularportalazure.Exception = Exception;
|
|
1398
1424
|
})(angularportalazure || (angularportalazure = {}));
|
|
1399
|
-
"use strict";
|
|
1400
|
-
var angularportalazure;
|
|
1401
|
-
(function (angularportalazure) {
|
|
1402
|
-
var IExceptionDotNet = (function () {
|
|
1403
|
-
function IExceptionDotNet() {
|
|
1404
|
-
}
|
|
1405
|
-
return IExceptionDotNet;
|
|
1406
|
-
}());
|
|
1407
|
-
angularportalazure.IExceptionDotNet = IExceptionDotNet;
|
|
1408
|
-
})(angularportalazure || (angularportalazure = {}));
|
|
1409
1425
|
/// <reference types="angular" />
|
|
1410
1426
|
"use strict";
|
|
1411
1427
|
var angularportalazure;
|
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.194",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|