@lowdefy/engine 4.0.0-alpha.16 → 4.0.0-alpha.19

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.
Files changed (2) hide show
  1. package/dist/Actions.js +2 -3
  2. package/package.json +8 -8
package/dist/Actions.js CHANGED
@@ -165,6 +165,7 @@ let Actions = class Actions {
165
165
  });
166
166
  try {
167
167
  response = await this.actions[action.type]({
168
+ globals: this.context._internal.lowdefy._internal.globals,
168
169
  methods: getActionMethods({
169
170
  actions: responses,
170
171
  arrayIndices,
@@ -172,9 +173,7 @@ let Actions = class Actions {
172
173
  context: this.context,
173
174
  event
174
175
  }),
175
- document: this.context._internal.lowdefy._internal.document,
176
- params: parsedAction.params,
177
- window: this.context._internal.lowdefy._internal.window
176
+ params: parsedAction.params
178
177
  });
179
178
  if (progress) {
180
179
  progress();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lowdefy/engine",
3
- "version": "4.0.0-alpha.16",
3
+ "version": "4.0.0-alpha.19",
4
4
  "license": "Apache-2.0",
5
5
  "description": "",
6
6
  "homepage": "https://lowdefy.com",
@@ -37,15 +37,15 @@
37
37
  "test": "yarn node --experimental-vm-modules $(yarn bin jest)"
38
38
  },
39
39
  "dependencies": {
40
- "@lowdefy/helpers": "4.0.0-alpha.16",
41
- "@lowdefy/operators": "4.0.0-alpha.16"
40
+ "@lowdefy/helpers": "4.0.0-alpha.19",
41
+ "@lowdefy/operators": "4.0.0-alpha.19"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@jest/globals": "28.1.0",
45
- "@lowdefy/actions-core": "4.0.0-alpha.16",
46
- "@lowdefy/build": "4.0.0-alpha.16",
47
- "@lowdefy/operators-js": "4.0.0-alpha.16",
48
- "@lowdefy/operators-mql": "4.0.0-alpha.16",
45
+ "@lowdefy/actions-core": "4.0.0-alpha.19",
46
+ "@lowdefy/build": "4.0.0-alpha.19",
47
+ "@lowdefy/operators-js": "4.0.0-alpha.19",
48
+ "@lowdefy/operators-mql": "4.0.0-alpha.19",
49
49
  "@swc/cli": "0.1.57",
50
50
  "@swc/core": "1.2.194",
51
51
  "@swc/jest": "0.2.21",
@@ -54,5 +54,5 @@
54
54
  "publishConfig": {
55
55
  "access": "public"
56
56
  },
57
- "gitHead": "91459befdeb9b22aaba40e8c51d6a173a11ea939"
57
+ "gitHead": "5240a074f7225295a8c92aaf0236b7680c296b57"
58
58
  }