biz-a-cli 2.3.79 → 2.3.80-15224
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/bin/hubEvent.js +6 -5
- package/engine/domain/appConfig.js +2342 -0
- package/engine/domain/firebird-ddl.js +1097 -0
- package/package.json +2 -2
package/bin/hubEvent.js
CHANGED
|
@@ -17,7 +17,7 @@ const DISCONNECT_REASON_BY_SOCKET_SERVER = "io server disconnect";
|
|
|
17
17
|
|
|
18
18
|
export const socketAgent = (isUsingHttps) => (isUsingHttps == true ? tls : net);
|
|
19
19
|
|
|
20
|
-
const getIdText = (id) => (id ? id + " " : "");
|
|
20
|
+
const getIdText = (id) => (id ? id + " " : "");
|
|
21
21
|
|
|
22
22
|
export const streamEvent = async (socket, argv) =>
|
|
23
23
|
new Promise((resolve, reject) => {
|
|
@@ -297,6 +297,7 @@ const EngineRegistry = {
|
|
|
297
297
|
"bpm/workflow": () => import("../engine/bpm/workflow.js"),
|
|
298
298
|
"bpm/workflowRT": () => import("../engine/bpm/workflow-runtime.js"),
|
|
299
299
|
"domain/system": () => import("../engine/domain/system.js"),
|
|
300
|
+
"domain/appConfig": () => import("../engine/domain/appConfig.js"),
|
|
300
301
|
};
|
|
301
302
|
|
|
302
303
|
const handleCliCommand = async (data, cb, argv) => {
|
|
@@ -347,10 +348,10 @@ const handleCliCommand = async (data, cb, argv) => {
|
|
|
347
348
|
);
|
|
348
349
|
}
|
|
349
350
|
|
|
350
|
-
const result = await engineModule[methodName](
|
|
351
|
-
data.payload,
|
|
352
|
-
argv,
|
|
353
|
-
);
|
|
351
|
+
const result = await engineModule[methodName](
|
|
352
|
+
data.payload,
|
|
353
|
+
argv,
|
|
354
|
+
);
|
|
354
355
|
|
|
355
356
|
cb(null, { success: true, data: result });
|
|
356
357
|
break;
|