@lowdefy/operators 4.0.2 → 4.1.0
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/dist/serverParser.js +4 -2
- package/dist/webParser.js +1 -0
- package/package.json +2 -2
package/dist/serverParser.js
CHANGED
|
@@ -45,11 +45,12 @@ let ServerParser = class ServerParser {
|
|
|
45
45
|
args,
|
|
46
46
|
arrayIndices: [],
|
|
47
47
|
env: this.env,
|
|
48
|
+
jsMap: this.jsMap,
|
|
48
49
|
location,
|
|
49
50
|
methodName,
|
|
51
|
+
operatorPrefix,
|
|
50
52
|
operators: this.operators,
|
|
51
53
|
params: value[key],
|
|
52
|
-
operatorPrefix,
|
|
53
54
|
parser: this,
|
|
54
55
|
payload: this.payload,
|
|
55
56
|
runtime: 'node',
|
|
@@ -72,8 +73,9 @@ let ServerParser = class ServerParser {
|
|
|
72
73
|
errors
|
|
73
74
|
};
|
|
74
75
|
}
|
|
75
|
-
constructor({ env, payload, secrets, user, operators, verbose }){
|
|
76
|
+
constructor({ env, payload, secrets, user, operators, verbose, jsMap }){
|
|
76
77
|
this.env = env;
|
|
78
|
+
this.jsMap = jsMap;
|
|
77
79
|
this.operators = operators;
|
|
78
80
|
this.payload = payload;
|
|
79
81
|
this.secrets = secrets;
|
package/dist/webParser.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lowdefy/operators",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"homepage": "https://lowdefy.com",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"dist/*"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@lowdefy/helpers": "4.0
|
|
37
|
+
"@lowdefy/helpers": "4.1.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@jest/globals": "28.1.3",
|