ismx-nexo-node-app 0.4.85 → 0.4.86
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 +5 -1
- package/dist/types/index.d.ts +3 -0
- package/package.json +1 -1
- package/src/main/node/index.ts +3 -0
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.ArrayUtils = exports.StringUtils = exports.NumberUtils = exports.CryptoUtils = exports.DateUtils = exports.BusinessLogger = exports.FormalError = exports.BusinessErrors = exports.BusinessThreadState = exports.BusinessThread = exports.BusinessServer = exports.FormalProxyBusiness = exports.ProxyBusiness = 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.ArrayUtils = exports.StringUtils = 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
|
}
|
|
@@ -67,6 +67,10 @@ const FormalProxyBusiness_1 = __importDefault(require("./business/FormalProxyBus
|
|
|
67
67
|
class FormalProxyBusiness extends FormalProxyBusiness_1.default {
|
|
68
68
|
}
|
|
69
69
|
exports.FormalProxyBusiness = FormalProxyBusiness;
|
|
70
|
+
const FormalLoopbackBusiness_1 = __importDefault(require("./business/FormalLoopbackBusiness"));
|
|
71
|
+
class FormalLoopbackBusiness extends FormalLoopbackBusiness_1.default {
|
|
72
|
+
}
|
|
73
|
+
exports.FormalLoopbackBusiness = FormalLoopbackBusiness;
|
|
70
74
|
const BusinessServer_1 = __importDefault(require("./business/BusinessServer"));
|
|
71
75
|
class BusinessServer extends BusinessServer_1.default {
|
|
72
76
|
}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -34,6 +34,9 @@ export interface Module extends BaseModule {
|
|
|
34
34
|
import _FormalProxyBusiness from "./business/FormalProxyBusiness";
|
|
35
35
|
export declare class FormalProxyBusiness extends _FormalProxyBusiness {
|
|
36
36
|
}
|
|
37
|
+
import _FormalLoopbackBusiness from "./business/FormalLoopbackBusiness";
|
|
38
|
+
export declare class FormalLoopbackBusiness extends _FormalLoopbackBusiness {
|
|
39
|
+
}
|
|
37
40
|
import _BusinessServer from "./business/BusinessServer";
|
|
38
41
|
export declare class BusinessServer extends _BusinessServer {
|
|
39
42
|
}
|
package/package.json
CHANGED
package/src/main/node/index.ts
CHANGED
|
@@ -31,6 +31,9 @@ export interface Module extends BaseModule {}
|
|
|
31
31
|
import _FormalProxyBusiness from "./business/FormalProxyBusiness";
|
|
32
32
|
export class FormalProxyBusiness extends _FormalProxyBusiness {}
|
|
33
33
|
|
|
34
|
+
import _FormalLoopbackBusiness from "./business/FormalLoopbackBusiness";
|
|
35
|
+
export class FormalLoopbackBusiness extends _FormalLoopbackBusiness {}
|
|
36
|
+
|
|
34
37
|
import _BusinessServer from "./business/BusinessServer";
|
|
35
38
|
export class BusinessServer extends _BusinessServer {}
|
|
36
39
|
|