resurgence-data 1.0.6 → 1.0.7
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/exception/index.d.ts +1 -0
- package/dist/exception/index.js +1 -0
- package/dist/exception/integration.exception.d.ts +5 -0
- package/dist/exception/integration.exception.js +10 -0
- package/dist/messaging/index.d.ts +1 -0
- package/dist/messaging/index.js +17 -0
- package/dist/messaging/message.dto.d.ts +5 -0
- package/dist/messaging/message.dto.js +2 -0
- package/package.json +1 -1
package/dist/exception/index.js
CHANGED
@@ -19,3 +19,4 @@ __exportStar(require("./exception"), exports);
|
|
19
19
|
__exportStar(require("./authentication.exception"), exports);
|
20
20
|
__exportStar(require("./authorization.exception"), exports);
|
21
21
|
__exportStar(require("./database.exception"), exports);
|
22
|
+
__exportStar(require("./integration.exception"), exports);
|
@@ -0,0 +1,10 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.ThirdPartyIntegrationException = exports.MessagingException = void 0;
|
4
|
+
const exception_1 = require("./exception");
|
5
|
+
class MessagingException extends exception_1.Exception {
|
6
|
+
}
|
7
|
+
exports.MessagingException = MessagingException;
|
8
|
+
class ThirdPartyIntegrationException extends exception_1.Exception {
|
9
|
+
}
|
10
|
+
exports.ThirdPartyIntegrationException = ThirdPartyIntegrationException;
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./message.dto";
|
@@ -0,0 +1,17 @@
|
|
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("./message.dto"), exports);
|