ismx-nexo-node-app 0.4.158 → 0.4.159

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/js/index.js CHANGED
@@ -26,7 +26,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
26
26
  return (mod && mod.__esModule) ? mod : { "default": mod };
27
27
  };
28
28
  Object.defineProperty(exports, "__esModule", { value: true });
29
- exports.PostgresUtils = exports.RestUtils = exports.QueryUtils = exports.RepositoryRestFormalTemplate = exports.RepositoryRestFormal = exports.RepositoryRest = exports.RepositoryDatabasePostgres = exports.RepositoryDatabase = exports.Repository = exports.PromiseUtils = exports.ArrayUtils = exports.StringUtils = exports.ObjectUtils = exports.NumberUtils = exports.CryptoUtils = exports.DateUtils = exports.BusinessLogger = exports.FormalError = exports.BusinessErrors = exports.BusinessThreadState = exports.BusinessThread = exports.BusinessServer = exports.FormalLoopbackBusiness = exports.FormalProxyBusiness = exports.ProxyBusiness = exports.BusinessState = exports.Business = exports.ColorUtils = exports.ServiceRestFormalTemplate = exports.ServiceRestFormal = exports.ServiceRest = exports.HttpResponse = exports.Service = void 0;
29
+ exports.PostgresUtils = exports.JwtUtils = exports.RestUtils = exports.QueryUtils = exports.RepositoryRestFormalTemplate = exports.RepositoryRestFormal = exports.RepositoryRest = exports.RepositoryDatabasePostgres = exports.RepositoryDatabase = exports.Repository = exports.PromiseUtils = exports.ArrayUtils = exports.StringUtils = exports.ObjectUtils = exports.NumberUtils = exports.CryptoUtils = exports.DateUtils = exports.BusinessLogger = exports.FormalError = exports.BusinessErrors = exports.BusinessThreadState = exports.BusinessThread = exports.BusinessServer = exports.FormalLoopbackBusiness = exports.FormalProxyBusiness = exports.ProxyBusiness = exports.BusinessState = exports.Business = exports.ColorUtils = exports.ServiceRestFormalTemplate = exports.ServiceRestFormal = exports.ServiceRest = exports.HttpResponse = exports.Service = void 0;
30
30
  const Service_1 = __importStar(require("./api/Service"));
31
31
  class Service extends Service_1.default {
32
32
  }
@@ -155,6 +155,10 @@ const RestUtils_1 = __importDefault(require("./repository/utils/RestUtils"));
155
155
  class RestUtils extends RestUtils_1.default {
156
156
  }
157
157
  exports.RestUtils = RestUtils;
158
+ const JwtUtils_1 = __importDefault(require("./repository/utils/JwtUtils"));
159
+ class JwtUtils extends JwtUtils_1.default {
160
+ }
161
+ exports.JwtUtils = JwtUtils;
158
162
  const PostgresUtils_1 = __importDefault(require("./repository/utils/PostgresUtils"));
159
163
  class PostgresUtils extends PostgresUtils_1.default {
160
164
  }
@@ -106,6 +106,9 @@ export declare abstract class QueryUtils extends _QueryUtils {
106
106
  import _RestUtils from "./repository/utils/RestUtils";
107
107
  export declare abstract class RestUtils extends _RestUtils {
108
108
  }
109
+ import _JwtUtils from "./repository/utils/JwtUtils";
110
+ export declare abstract class JwtUtils extends _JwtUtils {
111
+ }
109
112
  import _PostgresUtils from "./repository/utils/PostgresUtils";
110
113
  export declare abstract class PostgresUtils extends _PostgresUtils {
111
114
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ismx-nexo-node-app",
3
- "version": "0.4.158",
3
+ "version": "0.4.159",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rm -rf ./dist && npx tsc",
@@ -101,5 +101,8 @@ export abstract class QueryUtils extends _QueryUtils {}
101
101
  import _RestUtils from "./repository/utils/RestUtils";
102
102
  export abstract class RestUtils extends _RestUtils {}
103
103
 
104
+ import _JwtUtils from "./repository/utils/JwtUtils";
105
+ export abstract class JwtUtils extends _JwtUtils {}
106
+
104
107
  import _PostgresUtils from "./repository/utils/PostgresUtils";
105
108
  export abstract class PostgresUtils extends _PostgresUtils {}