resurgence-data 1.0.6 → 1.0.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,3 +3,4 @@ export * from "./exception";
3
3
  export * from "./authentication.exception";
4
4
  export * from "./authorization.exception";
5
5
  export * from "./database.exception";
6
+ export * from "./integration.exception";
@@ -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,5 @@
1
+ import { Exception } from "./exception";
2
+ export declare class MessagingException extends Exception {
3
+ }
4
+ export declare class ThirdPartyIntegrationException extends Exception {
5
+ }
@@ -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;
package/dist/index.d.ts CHANGED
@@ -2,3 +2,4 @@ export * from "./authentication";
2
2
  export * from "./response";
3
3
  export * from "./exception";
4
4
  export * from "./user";
5
+ export * from "./messaging";
package/dist/index.js CHANGED
@@ -18,3 +18,4 @@ __exportStar(require("./authentication"), exports);
18
18
  __exportStar(require("./response"), exports);
19
19
  __exportStar(require("./exception"), exports);
20
20
  __exportStar(require("./user"), exports);
21
+ __exportStar(require("./messaging"), exports);
@@ -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);
@@ -0,0 +1,5 @@
1
+ export interface QueueMessageContent {
2
+ message: any;
3
+ queueName: string;
4
+ action: string;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "resurgence-data",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "description": "DTOs and shareable resources",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",