@magic-xpa/engine 4.800.0 → 4.801.0-dev481.221
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/bundles/magic-xpa-engine.umd.js +13 -1
- package/bundles/magic-xpa-engine.umd.js.map +1 -1
- package/bundles/magic-xpa-engine.umd.min.js +1 -1
- package/bundles/magic-xpa-engine.umd.min.js.map +1 -1
- package/esm2015/src/CurrentClientVersion.js +2 -2
- package/esm2015/src/rt/Operation.js +4 -1
- package/esm2015/src/tasks/Task.js +10 -1
- package/fesm2015/magic-xpa-engine.js +13 -1
- package/fesm2015/magic-xpa-engine.js.map +1 -1
- package/package.json +4 -4
- package/src/rt/Operation.d.ts +2 -0
|
@@ -11998,6 +11998,9 @@
|
|
|
11998
11998
|
Operation.prototype.toString = function () {
|
|
11999
11999
|
return mscorelib.NString.Format("Executing operation number {0}", this._serverId + 1);
|
|
12000
12000
|
};
|
|
12001
|
+
Operation.prototype.GetRuntimeEvent = function () {
|
|
12002
|
+
return this._rtEvt;
|
|
12003
|
+
};
|
|
12001
12004
|
return Operation;
|
|
12002
12005
|
}());
|
|
12003
12006
|
|
|
@@ -29417,6 +29420,15 @@
|
|
|
29417
29420
|
clientOperationExist = true;
|
|
29418
29421
|
break;
|
|
29419
29422
|
}
|
|
29423
|
+
else {
|
|
29424
|
+
if (oper.getType() == ConstInterface.MG_OPER_RAISE_EVENT) {
|
|
29425
|
+
if (oper.GetRuntimeEvent().getType() == ConstInterface.EVENT_TYPE_INTERNAL &&
|
|
29426
|
+
oper.GetRuntimeEvent().getInternalCode() === utils.InternalInterface.MG_ACT_RT_REFRESH_VIEW) {
|
|
29427
|
+
clientOperationExist = true;
|
|
29428
|
+
break;
|
|
29429
|
+
}
|
|
29430
|
+
}
|
|
29431
|
+
}
|
|
29420
29432
|
}
|
|
29421
29433
|
}
|
|
29422
29434
|
if (!(!clientOperationExist && task.hasSubTasks())) return [3 /*break*/, 6];
|
|
@@ -37328,7 +37340,7 @@
|
|
|
37328
37340
|
return CommandsTable;
|
|
37329
37341
|
}());
|
|
37330
37342
|
|
|
37331
|
-
var CurrentClientVersion = '4.
|
|
37343
|
+
var CurrentClientVersion = '4.801.0-dev481.221';
|
|
37332
37344
|
|
|
37333
37345
|
var ClientManager = /** @class */ (function () {
|
|
37334
37346
|
function ClientManager() {
|