resurgence-data 1.0.7 → 1.0.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -4,3 +4,4 @@ export * from "./authentication.exception";
4
4
  export * from "./authorization.exception";
5
5
  export * from "./database.exception";
6
6
  export * from "./integration.exception";
7
+ export * from "./process.exception";
@@ -20,3 +20,4 @@ __exportStar(require("./authentication.exception"), exports);
20
20
  __exportStar(require("./authorization.exception"), exports);
21
21
  __exportStar(require("./database.exception"), exports);
22
22
  __exportStar(require("./integration.exception"), exports);
23
+ __exportStar(require("./process.exception"), exports);
@@ -0,0 +1,3 @@
1
+ import { Exception } from "./exception";
2
+ export declare class IncompleteProcessException extends Exception {
3
+ }
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IncompleteProcessException = void 0;
4
+ const exception_1 = require("./exception");
5
+ class IncompleteProcessException extends exception_1.Exception {
6
+ }
7
+ exports.IncompleteProcessException = IncompleteProcessException;
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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "resurgence-data",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "description": "DTOs and shareable resources",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",