@magic-xpa/engine 4.1000.0-dev4100.284 → 4.1000.0-dev4100.285
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/esm2020/src/CurrentClientVersion.mjs +2 -2
- package/esm2020/src/event/Event.mjs +4 -1
- package/esm2020/src/event/EventsManager.mjs +2 -1
- package/fesm2015/magic-xpa-engine.mjs +5 -1
- package/fesm2015/magic-xpa-engine.mjs.map +1 -1
- package/fesm2020/magic-xpa-engine.mjs +5 -1
- package/fesm2020/magic-xpa-engine.mjs.map +1 -1
- package/package.json +4 -4
@@ -2917,6 +2917,9 @@ class Event {
|
|
2917
2917
|
case InternalInterface.MG_ACT_INDEX_CHANGE:
|
2918
2918
|
description = 'Index Change';
|
2919
2919
|
break;
|
2920
|
+
case InternalInterface.MG_ACT_DUMP_ENVIRONMENT:
|
2921
|
+
description = 'Dump Environment';
|
2922
|
+
break;
|
2920
2923
|
default:
|
2921
2924
|
description = '';
|
2922
2925
|
break;
|
@@ -28170,6 +28173,7 @@ class EventsManager {
|
|
28170
28173
|
}
|
28171
28174
|
break;
|
28172
28175
|
case InternalInterface.MG_ACT_SERVER_TERMINATION:
|
28176
|
+
case InternalInterface.MG_ACT_DUMP_ENVIRONMENT:
|
28173
28177
|
cmd = CommandFactory.CreateEventCommand(task.getTaskTag(), intEvtCode);
|
28174
28178
|
cmdsToServer.Add(cmd);
|
28175
28179
|
yield CommandsProcessorManager.GetCommandsProcessor().Execute(CommandsProcessorBase_SendingInstruction.TASKS_AND_COMMANDS);
|
@@ -30327,7 +30331,7 @@ class CommandsTable {
|
|
30327
30331
|
}
|
30328
30332
|
}
|
30329
30333
|
|
30330
|
-
let CurrentClientVersion = '4.1000.0-dev4100.
|
30334
|
+
let CurrentClientVersion = '4.1000.0-dev4100.285';
|
30331
30335
|
|
30332
30336
|
class ClientManager {
|
30333
30337
|
static get Instance() {
|