cqrs-boilerplate-code 1.0.3 → 1.0.5
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/dist/core-common/error/index.d.ts +3 -0
- package/dist/core-common/error/index.js +3 -0
- package/dist/core-common/error/index.js.map +1 -1
- package/dist/core-common/logger/index.d.ts +3 -0
- package/dist/core-common/logger/index.js +20 -0
- package/dist/core-common/logger/index.js.map +1 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/core-common/error/index.ts +5 -1
|
@@ -8,3 +8,6 @@ export * from "./custom-error/already-exists.error";
|
|
|
8
8
|
export * from "./custom-error/validation.error";
|
|
9
9
|
export * from "./custom-error/unprocess-entity.error";
|
|
10
10
|
export * from "./custom-error/service-unavailable.error";
|
|
11
|
+
export * from "./custom-error/internal-server.error";
|
|
12
|
+
export * from "./custom-error/validation.error";
|
|
13
|
+
export * from "./custom-error/custom-validation-error";
|
|
@@ -24,4 +24,7 @@ __exportStar(require("./custom-error/already-exists.error"), exports);
|
|
|
24
24
|
__exportStar(require("./custom-error/validation.error"), exports);
|
|
25
25
|
__exportStar(require("./custom-error/unprocess-entity.error"), exports);
|
|
26
26
|
__exportStar(require("./custom-error/service-unavailable.error"), exports);
|
|
27
|
+
__exportStar(require("./custom-error/internal-server.error"), exports);
|
|
28
|
+
__exportStar(require("./custom-error/validation.error"), exports);
|
|
29
|
+
__exportStar(require("./custom-error/custom-validation-error"), exports);
|
|
27
30
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/core-common/error/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAAgC;AAChC,mEAAiD;AACjD,oEAAkD;AAClD,iEAA+C;AAC/C,iEAA+C;AAC/C,gEAA8C;AAC9C,sEAAoD;AACpD,kEAAgD;AAChD,wEAAsD;AACtD,2EAAyD","sourcesContent":["export * from \"./generic.error\";\nexport * from \"./custom-error/bad-request.error\";\nexport * from \"./custom-error/unauthorized.error\";\nexport * from \"./custom-error/forbidden.error\";\nexport * from \"./custom-error/not-found.error\";\nexport * from \"./custom-error/conflict.error\";\nexport * from \"./custom-error/already-exists.error\";\nexport * from \"./custom-error/validation.error\";\nexport * from \"./custom-error/unprocess-entity.error\";\nexport * from \"./custom-error/service-unavailable.error\"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/core-common/error/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAAgC;AAChC,mEAAiD;AACjD,oEAAkD;AAClD,iEAA+C;AAC/C,iEAA+C;AAC/C,gEAA8C;AAC9C,sEAAoD;AACpD,kEAAgD;AAChD,wEAAsD;AACtD,2EAAyD;AAEzD,uEAAqD;AACrD,kEAAgD;AAChD,yEAAsD","sourcesContent":["export * from \"./generic.error\";\nexport * from \"./custom-error/bad-request.error\";\nexport * from \"./custom-error/unauthorized.error\";\nexport * from \"./custom-error/forbidden.error\";\nexport * from \"./custom-error/not-found.error\";\nexport * from \"./custom-error/conflict.error\";\nexport * from \"./custom-error/already-exists.error\";\nexport * from \"./custom-error/validation.error\";\nexport * from \"./custom-error/unprocess-entity.error\";\nexport * from \"./custom-error/service-unavailable.error\";\n\nexport * from \"./custom-error/internal-server.error\";\nexport * from \"./custom-error/validation.error\";\nexport * from \"./custom-error/custom-validation-error\""]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./logger.interface"), exports);
|
|
18
|
+
__exportStar(require("./logger.module"), exports);
|
|
19
|
+
__exportStar(require("./logger.service"), exports);
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/core-common/logger/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qDAAkC;AAClC,kDAA+B;AAC/B,mDAAgC","sourcesContent":["export * from './logger.interface'\nexport * from './logger.module'\nexport * from './logger.service'"]}
|