badmfck-api-server 2.4.3 → 2.4.4
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 +4 -1
- package/dist/index.js +7 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -7,4 +7,7 @@ import { ErrorUtils } from "./apiServer/structures/DefaultErrors";
|
|
7
7
|
import { S_MONITOR_REGISTRATE_ACTION } from "./apiServer/monitor/Monitor";
|
8
8
|
import { DataProvider } from "./apiServer/helper/DataProvider";
|
9
9
|
import { UID } from "./apiServer/helper/UID";
|
10
|
-
|
10
|
+
import { HUBService } from "./apiServer/HUBService";
|
11
|
+
import { HUBConnection } from "./apiServer/cluster/HUBConnection";
|
12
|
+
import { ClusterService } from "./apiServer/ClusterService";
|
13
|
+
export { UID, APIService, Initializer, LocalRequest, MysqlService, Validator, LogService, DataProvider, ErrorUtils, HUBService, ClusterService, HUBConnection, 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.ErrorUtils = exports.DataProvider = exports.LogService = exports.Validator = exports.MysqlService = exports.LocalRequest = exports.Initializer = exports.APIService = exports.UID = void 0;
|
3
|
+
exports.S_MONITOR_REGISTRATE_ACTION = exports.HUBConnection = exports.ClusterService = exports.HUBService = exports.ErrorUtils = exports.DataProvider = exports.LogService = exports.Validator = exports.MysqlService = exports.LocalRequest = exports.Initializer = exports.APIService = exports.UID = 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; } });
|
@@ -20,3 +20,9 @@ const DataProvider_1 = require("./apiServer/helper/DataProvider");
|
|
20
20
|
Object.defineProperty(exports, "DataProvider", { enumerable: true, get: function () { return DataProvider_1.DataProvider; } });
|
21
21
|
const UID_1 = require("./apiServer/helper/UID");
|
22
22
|
Object.defineProperty(exports, "UID", { enumerable: true, get: function () { return UID_1.UID; } });
|
23
|
+
const HUBService_1 = require("./apiServer/HUBService");
|
24
|
+
Object.defineProperty(exports, "HUBService", { enumerable: true, get: function () { return HUBService_1.HUBService; } });
|
25
|
+
const HUBConnection_1 = require("./apiServer/cluster/HUBConnection");
|
26
|
+
Object.defineProperty(exports, "HUBConnection", { enumerable: true, get: function () { return HUBConnection_1.HUBConnection; } });
|
27
|
+
const ClusterService_1 = require("./apiServer/ClusterService");
|
28
|
+
Object.defineProperty(exports, "ClusterService", { enumerable: true, get: function () { return ClusterService_1.ClusterService; } });
|