ismx-nexo-node-app 0.3.68 → 0.3.69

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.RestUtils = exports.QueryUtils = exports.RepositoryRestFormalTemplate = exports.RepositoryRestFormal = exports.RepositoryRest = exports.RepositoryDatabasePostgres = exports.RepositoryDatabase = exports.Repository = exports.StringUtils = exports.NumberUtils = exports.CryptoUtils = exports.BusinessLogger = exports.BusinessErrors = exports.BusinessThread = exports.BusinessServer = exports.BusinessProxy = exports.BusinessState = exports.Business = exports.ColorUtils = exports.ServiceRestFormalTemplate = exports.ServiceRestFormal = exports.ServiceRest = exports.HttpResponse = exports.Service = void 0;
29
+ exports.RestUtils = exports.QueryUtils = exports.RepositoryRestFormalTemplate = exports.RepositoryRestFormal = exports.RepositoryRest = exports.RepositoryDatabasePostgres = exports.RepositoryDatabase = exports.Repository = exports.StringUtils = exports.NumberUtils = exports.CryptoUtils = exports.BusinessLogger = exports.FormalError = exports.BusinessErrors = exports.BusinessThread = exports.BusinessServer = exports.BusinessProxy = 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
  }
@@ -71,10 +71,13 @@ const BusinessThread_1 = __importDefault(require("./business/BusinessThread"));
71
71
  class BusinessThread extends BusinessThread_1.default {
72
72
  }
73
73
  exports.BusinessThread = BusinessThread;
74
- const BusinessErrors_1 = __importDefault(require("./business/BusinessErrors"));
74
+ const BusinessErrors_1 = __importStar(require("./business/BusinessErrors"));
75
75
  class BusinessErrors extends BusinessErrors_1.default {
76
76
  }
77
77
  exports.BusinessErrors = BusinessErrors;
78
+ class FormalError extends BusinessErrors_1.FormalError {
79
+ }
80
+ exports.FormalError = FormalError;
78
81
  const BusinessLogger_1 = __importDefault(require("./business/BusinessLogger"));
79
82
  class BusinessLogger extends BusinessLogger_1.default {
80
83
  }
@@ -37,10 +37,12 @@ export declare class BusinessServer extends _BusinessServer {
37
37
  import BaseBusinessThread from "./business/BusinessThread";
38
38
  export declare abstract class BusinessThread extends BaseBusinessThread {
39
39
  }
40
- import BaseBusinessErrors, { ErrorType as BaseFormalError } from "./business/BusinessErrors";
40
+ import BaseBusinessErrors, { ErrorType as _ErrorType, FormalError as _FormalError } from "./business/BusinessErrors";
41
41
  export declare class BusinessErrors extends BaseBusinessErrors {
42
42
  }
43
- export interface FormalError extends BaseFormalError {
43
+ export interface ErrorType extends _ErrorType {
44
+ }
45
+ export declare class FormalError extends _FormalError {
44
46
  }
45
47
  import BaseBusinessLogger from "./business/BusinessLogger";
46
48
  export declare class BusinessLogger extends BaseBusinessLogger {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ismx-nexo-node-app",
3
- "version": "0.3.68",
3
+ "version": "0.3.69",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rm -rf ./dist && npx tsc",
@@ -34,9 +34,10 @@ export class BusinessServer extends _BusinessServer {}
34
34
  import BaseBusinessThread from "./business/BusinessThread";
35
35
  export abstract class BusinessThread extends BaseBusinessThread {}
36
36
 
37
- import BaseBusinessErrors, { ErrorType as BaseFormalError } from "./business/BusinessErrors";
37
+ import BaseBusinessErrors, { ErrorType as _ErrorType, FormalError as _FormalError} from "./business/BusinessErrors";
38
38
  export class BusinessErrors extends BaseBusinessErrors {}
39
- export interface FormalError extends BaseFormalError {}
39
+ export interface ErrorType extends _ErrorType {}
40
+ export class FormalError extends _FormalError {}
40
41
 
41
42
  import BaseBusinessLogger from "./business/BusinessLogger";
42
43
  export class BusinessLogger extends BaseBusinessLogger {}