@magic-xpa/engine 4.800.0-dev480.190 → 4.800.0-dev480.198
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 +227 -206
- 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/ConstInterface.js +2 -1
- package/esm2015/src/CurrentClientVersion.js +2 -2
- package/esm2015/src/event/EventsManager.js +2 -1
- package/esm2015/src/exp/ExpressionDict.js +3 -1
- package/esm2015/src/exp/ExpressionEvaluator.js +9 -1
- package/esm2015/src/tasks/MGDataCollection.js +12 -2
- package/fesm2015/magic-xpa-engine.js +22 -2
- package/fesm2015/magic-xpa-engine.js.map +1 -1
- package/package.json +4 -4
- package/src/ConstInterface.d.ts +1 -0
- package/src/exp/ExpressionEvaluator.d.ts +1 -0
- package/src/tasks/MGDataCollection.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magic-xpa/engine",
|
|
3
|
-
"version": "4.800.0-dev480.
|
|
3
|
+
"version": "4.800.0-dev480.198",
|
|
4
4
|
"description": "magic engine package",
|
|
5
5
|
"license": "SEE LICENSE IN EULA.pdf",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@magic-xpa/mscorelib": "4.800.0-dev480.
|
|
8
|
-
"@magic-xpa/utils": "4.800.0-dev480.
|
|
9
|
-
"@magic-xpa/gui": "4.800.0-dev480.
|
|
7
|
+
"@magic-xpa/mscorelib": "4.800.0-dev480.198",
|
|
8
|
+
"@magic-xpa/utils": "4.800.0-dev480.198",
|
|
9
|
+
"@magic-xpa/gui": "4.800.0-dev480.198",
|
|
10
10
|
"@angular/http": "^7.1.0",
|
|
11
11
|
"tslib": "^2.0.0"
|
|
12
12
|
},
|
package/src/ConstInterface.d.ts
CHANGED
|
@@ -177,6 +177,7 @@ export declare class ExpressionEvaluator extends GuiExpressionEvaluator {
|
|
|
177
177
|
eval_op_set_cookie(cookieName: string, expVal: ExpVal[], resVal: ExpVal): any;
|
|
178
178
|
eval_op_get_cookie(cookieName: string, resVal: ExpVal): void;
|
|
179
179
|
eval_op_delete_cookie(cookieName: string, resVal: ExpVal): void;
|
|
180
|
+
eval_op_route_get(resVal: ExpVal): void;
|
|
180
181
|
private params2arguments;
|
|
181
182
|
}
|
|
182
183
|
export declare class NullValueException extends Exception {
|
|
@@ -13,6 +13,7 @@ export declare class MGDataCollection implements IMGDataCollection {
|
|
|
13
13
|
private _iteratorTaskIdx;
|
|
14
14
|
currMgdID: number;
|
|
15
15
|
StartupMgData: MGData;
|
|
16
|
+
private _lastRouteSentToServer;
|
|
16
17
|
constructor();
|
|
17
18
|
GetTaskByID(id: string): ITask;
|
|
18
19
|
static get Instance(): MGDataCollection;
|