badmfck-api-server 3.9.97 → 3.9.98
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/apiServer/APIService.js +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +5 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -14,4 +14,6 @@ import { TimeframeService } from "./apiServer/TimeframeService";
|
|
|
14
14
|
import { JSONStableStringify } from "./apiServer/helper/JSONStableStringify";
|
|
15
15
|
import { ZipUtils } from "./apiServer/helper/ZipUtils";
|
|
16
16
|
import { Http } from "./apiServer/http/Http";
|
|
17
|
-
|
|
17
|
+
import { MicroserviceHost } from "./apiServer/external/MicroserviceHost";
|
|
18
|
+
import { MicroserviceClient } from "./apiServer/external/MicroserviceClient";
|
|
19
|
+
export { MicroserviceHost, MicroserviceClient, Http, ZipUtils, UID, YYYYMMDDHH, JSONStableStringify, APIService, Initializer, LocalRequest, ValidationModel, MysqlService, TimeframeService, Validator, LogService, DataProvider, ErrorUtils, ExternalService, DBService, S_MONITOR_REGISTRATE_ACTION };
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.S_MONITOR_REGISTRATE_ACTION = exports.DBService = exports.ExternalService = exports.ErrorUtils = exports.DataProvider = exports.LogService = exports.Validator = exports.TimeframeService = exports.MysqlService = exports.LocalRequest = exports.Initializer = exports.APIService = exports.JSONStableStringify = exports.YYYYMMDDHH = exports.UID = exports.ZipUtils = exports.Http = void 0;
|
|
3
|
+
exports.S_MONITOR_REGISTRATE_ACTION = exports.DBService = exports.ExternalService = exports.ErrorUtils = exports.DataProvider = exports.LogService = exports.Validator = exports.TimeframeService = exports.MysqlService = exports.LocalRequest = exports.Initializer = exports.APIService = exports.JSONStableStringify = exports.YYYYMMDDHH = exports.UID = exports.ZipUtils = exports.Http = exports.MicroserviceClient = exports.MicroserviceHost = void 0;
|
|
4
4
|
const APIService_1 = require("./apiServer/APIService");
|
|
5
5
|
Object.defineProperty(exports, "APIService", { enumerable: true, get: function () { return APIService_1.APIService; } });
|
|
6
6
|
Object.defineProperty(exports, "Initializer", { enumerable: true, get: function () { return APIService_1.Initializer; } });
|
|
@@ -34,3 +34,7 @@ const ZipUtils_1 = require("./apiServer/helper/ZipUtils");
|
|
|
34
34
|
Object.defineProperty(exports, "ZipUtils", { enumerable: true, get: function () { return ZipUtils_1.ZipUtils; } });
|
|
35
35
|
const Http_1 = require("./apiServer/http/Http");
|
|
36
36
|
Object.defineProperty(exports, "Http", { enumerable: true, get: function () { return Http_1.Http; } });
|
|
37
|
+
const MicroserviceHost_1 = require("./apiServer/external/MicroserviceHost");
|
|
38
|
+
Object.defineProperty(exports, "MicroserviceHost", { enumerable: true, get: function () { return MicroserviceHost_1.MicroserviceHost; } });
|
|
39
|
+
const MicroserviceClient_1 = require("./apiServer/external/MicroserviceClient");
|
|
40
|
+
Object.defineProperty(exports, "MicroserviceClient", { enumerable: true, get: function () { return MicroserviceClient_1.MicroserviceClient; } });
|