@lowdefy/operators 3.22.0 → 4.0.0-alpha.1
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/common/and.js +8 -24
- package/dist/common/args.js +10 -31
- package/dist/common/array.js +244 -153
- package/dist/common/change_case.js +114 -160
- package/dist/common/date.js +33 -54
- package/dist/common/divide.js +16 -36
- package/dist/common/eq.js +10 -28
- package/dist/common/function.js +27 -59
- package/dist/common/get.js +21 -46
- package/dist/common/gt.js +10 -28
- package/dist/common/gte.js +10 -28
- package/dist/common/if.js +9 -26
- package/dist/common/if_none.js +13 -32
- package/dist/common/index.js +39 -53
- package/dist/common/json.js +53 -57
- package/dist/common/log.js +5 -18
- package/dist/common/lt.js +10 -28
- package/dist/common/lte.js +10 -28
- package/dist/common/math.js +255 -194
- package/dist/common/mql.js +93 -102
- package/dist/common/ne.js +10 -28
- package/dist/common/not.js +3 -16
- package/dist/common/number.js +130 -108
- package/dist/common/nunjucks.js +24 -44
- package/dist/common/object.js +89 -98
- package/dist/common/operator.js +33 -44
- package/dist/common/or.js +8 -24
- package/dist/common/product.js +11 -29
- package/dist/common/random.js +74 -109
- package/dist/common/regex.js +26 -49
- package/dist/common/string.js +270 -171
- package/dist/common/subtract.js +13 -32
- package/dist/common/sum.js +11 -29
- package/dist/common/switch.js +30 -0
- package/dist/common/type.js +36 -67
- package/dist/common/uri.js +29 -46
- package/dist/common/user.js +10 -35
- package/dist/common/uuid.js +48 -59
- package/dist/common/yaml.js +56 -63
- package/dist/getFromArray.js +22 -44
- package/dist/getFromObject.js +25 -70
- package/dist/index.js +14 -20
- package/dist/node/base64.js +31 -48
- package/dist/node/diff.js +30 -47
- package/dist/node/hash.js +55 -71
- package/dist/node/index.js +6 -14
- package/dist/{web/list_contexts.js → node/payload.js} +9 -16
- package/dist/node/secret.js +32 -53
- package/dist/nodeParser.js +95 -146
- package/dist/runClass.js +57 -82
- package/dist/runInstance.js +60 -84
- package/dist/web/_index.js +25 -0
- package/dist/web/actions.js +10 -31
- package/dist/web/base64.js +29 -46
- package/dist/{common/_index.js → web/event.js} +10 -30
- package/dist/web/event_log.js +10 -35
- package/dist/web/format.js +15 -37
- package/dist/web/global.js +25 -0
- package/dist/web/index.js +17 -21
- package/dist/{common/event.js → web/input.js} +10 -31
- package/dist/web/js.js +10 -30
- package/dist/web/location.js +44 -59
- package/dist/web/media.js +46 -75
- package/dist/web/menu.js +10 -28
- package/dist/web/request.js +19 -40
- package/dist/web/request_details.js +10 -35
- package/dist/web/state.js +25 -0
- package/dist/web/url_query.js +25 -0
- package/dist/webParser.js +115 -157
- package/package.json +16 -15
- package/dist/common/global.js +0 -50
- package/dist/common/input.js +0 -50
- package/dist/common/state.js +0 -50
- package/dist/common/url_query.js +0 -50
- package/dist/getFromOtherContext.js +0 -96
package/dist/common/state.js
DELETED
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
|
-
|
|
8
|
-
var _getFromObject = _interopRequireDefault(require("../getFromObject"));
|
|
9
|
-
|
|
10
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
11
|
-
|
|
12
|
-
/*
|
|
13
|
-
Copyright 2020-2021 Lowdefy, Inc
|
|
14
|
-
|
|
15
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
16
|
-
you may not use this file except in compliance with the License.
|
|
17
|
-
You may obtain a copy of the License at
|
|
18
|
-
|
|
19
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
20
|
-
|
|
21
|
-
Unless required by applicable law or agreed to in writing, software
|
|
22
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
23
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
24
|
-
See the License for the specific language governing permissions and
|
|
25
|
-
limitations under the License.
|
|
26
|
-
*/
|
|
27
|
-
function _state(_ref) {
|
|
28
|
-
var {
|
|
29
|
-
arrayIndices,
|
|
30
|
-
context,
|
|
31
|
-
contexts,
|
|
32
|
-
env,
|
|
33
|
-
location,
|
|
34
|
-
params,
|
|
35
|
-
state
|
|
36
|
-
} = _ref;
|
|
37
|
-
return (0, _getFromObject.default)({
|
|
38
|
-
arrayIndices,
|
|
39
|
-
context,
|
|
40
|
-
contexts,
|
|
41
|
-
env,
|
|
42
|
-
location,
|
|
43
|
-
object: state,
|
|
44
|
-
operator: '_state',
|
|
45
|
-
params
|
|
46
|
-
});
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
var _default = _state;
|
|
50
|
-
exports.default = _default;
|
package/dist/common/url_query.js
DELETED
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
|
-
|
|
8
|
-
var _getFromObject = _interopRequireDefault(require("../getFromObject"));
|
|
9
|
-
|
|
10
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
11
|
-
|
|
12
|
-
/*
|
|
13
|
-
Copyright 2020-2021 Lowdefy, Inc
|
|
14
|
-
|
|
15
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
16
|
-
you may not use this file except in compliance with the License.
|
|
17
|
-
You may obtain a copy of the License at
|
|
18
|
-
|
|
19
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
20
|
-
|
|
21
|
-
Unless required by applicable law or agreed to in writing, software
|
|
22
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
23
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
24
|
-
See the License for the specific language governing permissions and
|
|
25
|
-
limitations under the License.
|
|
26
|
-
*/
|
|
27
|
-
function _url_query(_ref) {
|
|
28
|
-
var {
|
|
29
|
-
arrayIndices,
|
|
30
|
-
context,
|
|
31
|
-
contexts,
|
|
32
|
-
env,
|
|
33
|
-
location,
|
|
34
|
-
params,
|
|
35
|
-
urlQuery
|
|
36
|
-
} = _ref;
|
|
37
|
-
return (0, _getFromObject.default)({
|
|
38
|
-
arrayIndices,
|
|
39
|
-
context,
|
|
40
|
-
contexts,
|
|
41
|
-
env,
|
|
42
|
-
location,
|
|
43
|
-
object: urlQuery,
|
|
44
|
-
operator: '_url_query',
|
|
45
|
-
params
|
|
46
|
-
});
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
var _default = _url_query;
|
|
50
|
-
exports.default = _default;
|
|
@@ -1,96 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = void 0;
|
|
7
|
-
|
|
8
|
-
var _helpers = require("@lowdefy/helpers");
|
|
9
|
-
|
|
10
|
-
/*
|
|
11
|
-
Copyright 2020-2021 Lowdefy, Inc
|
|
12
|
-
|
|
13
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
14
|
-
you may not use this file except in compliance with the License.
|
|
15
|
-
You may obtain a copy of the License at
|
|
16
|
-
|
|
17
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
18
|
-
|
|
19
|
-
Unless required by applicable law or agreed to in writing, software
|
|
20
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
21
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
22
|
-
See the License for the specific language governing permissions and
|
|
23
|
-
limitations under the License.
|
|
24
|
-
*/
|
|
25
|
-
function addListener(_ref) {
|
|
26
|
-
var {
|
|
27
|
-
context,
|
|
28
|
-
targetContext
|
|
29
|
-
} = _ref;
|
|
30
|
-
|
|
31
|
-
if (context.id === targetContext.id) {
|
|
32
|
-
return;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
targetContext.updateListeners.add(context.id);
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
function getFromOtherContext(_ref2) {
|
|
39
|
-
var {
|
|
40
|
-
params,
|
|
41
|
-
context,
|
|
42
|
-
contexts,
|
|
43
|
-
arrayIndices,
|
|
44
|
-
operator,
|
|
45
|
-
location
|
|
46
|
-
} = _ref2;
|
|
47
|
-
var {
|
|
48
|
-
contextId
|
|
49
|
-
} = params;
|
|
50
|
-
|
|
51
|
-
if (!_helpers.type.isString(contextId)) {
|
|
52
|
-
throw new Error("Operator Error: ".concat(operator, ".contextId must be of type string. Received: ").concat(JSON.stringify(params), " at ").concat(location, "."));
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
var contextKeys = {
|
|
56
|
-
_event_log: 'eventLog',
|
|
57
|
-
_state: 'state',
|
|
58
|
-
_input: "lowdefy.inputs.".concat(contextId),
|
|
59
|
-
_global: 'lowdefy.lowdefyGlobal',
|
|
60
|
-
_request_details: 'requests',
|
|
61
|
-
_mutation_details: 'mutations',
|
|
62
|
-
_url_query: 'lowdefy.urlQuery'
|
|
63
|
-
};
|
|
64
|
-
|
|
65
|
-
if (_helpers.type.isUndefined(contextKeys[operator])) {
|
|
66
|
-
throw new Error("Operator Error: Cannot use ".concat(operator, " to get from another context. Received: ").concat(JSON.stringify(params), " at ").concat(location, "."));
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
var targetContext = contexts[contextId];
|
|
70
|
-
|
|
71
|
-
if (!_helpers.type.isObject(targetContext)) {
|
|
72
|
-
throw new Error("Operator Error: Context ".concat(contextId, " not found. Received: ").concat(JSON.stringify(params), " at ").concat(location, "."));
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
addListener({
|
|
76
|
-
context,
|
|
77
|
-
targetContext
|
|
78
|
-
});
|
|
79
|
-
var object = (0, _helpers.get)(targetContext, contextKeys[operator]);
|
|
80
|
-
if (params.all === true) return object;
|
|
81
|
-
|
|
82
|
-
if (_helpers.type.isString(params.key)) {
|
|
83
|
-
return (0, _helpers.get)(object, (0, _helpers.applyArrayIndices)(arrayIndices, params.key), {
|
|
84
|
-
default: (0, _helpers.get)(params, 'default', {
|
|
85
|
-
default: null,
|
|
86
|
-
copy: true
|
|
87
|
-
}),
|
|
88
|
-
copy: true
|
|
89
|
-
});
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
return object;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
var _default = getFromOtherContext;
|
|
96
|
-
exports.default = _default;
|