@ardimedia/angular-portal-azure 0.2.192 → 0.2.193
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 +29 -15
- package/apn.js +28 -12
- package/package.json +1 -1
package/apn.d.ts
CHANGED
|
@@ -388,29 +388,43 @@ declare namespace angularportalazure {
|
|
|
388
388
|
}
|
|
389
389
|
}
|
|
390
390
|
declare namespace angularportalazure {
|
|
391
|
-
class
|
|
391
|
+
class ExceptionDotNet {
|
|
392
|
+
Data: {
|
|
393
|
+
key: number;
|
|
394
|
+
value: string;
|
|
395
|
+
}[];
|
|
396
|
+
HelpLink: string;
|
|
397
|
+
HResult: number;
|
|
398
|
+
InnerException: Exception;
|
|
399
|
+
Message: string;
|
|
400
|
+
Source: string;
|
|
401
|
+
StackTrace: string;
|
|
402
|
+
ExceptionMessage: string;
|
|
392
403
|
ExceptionType: string;
|
|
393
404
|
ClassName: string;
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
Url: string;
|
|
402
|
-
processException(response: angular.IHttpPromiseCallbackArg<any>): void;
|
|
403
|
-
convertFromWebApiException(ex: angularportalazure.IExceptionDotNet): void;
|
|
405
|
+
}
|
|
406
|
+
class ValidationResultDotNet {
|
|
407
|
+
ErrorMessage: string;
|
|
408
|
+
MemberNames: string[];
|
|
409
|
+
}
|
|
410
|
+
class ValidationsExceptionDotNet extends ExceptionDotNet {
|
|
411
|
+
ValidationResults: ValidationResultDotNet[];
|
|
404
412
|
}
|
|
405
413
|
}
|
|
406
414
|
declare namespace angularportalazure {
|
|
407
|
-
class
|
|
415
|
+
class Exception extends angularportalazure.ExceptionDotNet {
|
|
416
|
+
ExceptionMessage: string;
|
|
408
417
|
ExceptionType: string;
|
|
409
|
-
ClassName: string;
|
|
410
|
-
Data: Object;
|
|
411
|
-
Type: string;
|
|
412
418
|
Message: string;
|
|
419
|
+
StackTrace: string;
|
|
420
|
+
Type: string;
|
|
421
|
+
MessageDetail: string;
|
|
413
422
|
Messages: string[];
|
|
423
|
+
Status: number | undefined;
|
|
424
|
+
StatusText: string | undefined;
|
|
425
|
+
Url: string;
|
|
426
|
+
processException(response: angular.IHttpPromiseCallbackArg<any>): void;
|
|
427
|
+
convertFromWebApiException(ex: angularportalazure.Exception): void;
|
|
414
428
|
}
|
|
415
429
|
}
|
|
416
430
|
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.ExceptionDotNet));
|
|
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.193",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|