@elyx-code/project-logic-tree 0.0.6874 → 0.0.6876
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/index.cjs +1 -1
- package/dist/index.js +3 -3
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -103893,7 +103893,7 @@ function pui(l, p) {
|
|
|
103893
103893
|
), r = r.replace(s, "");
|
|
103894
103894
|
}
|
|
103895
103895
|
const c = r.split(" ").filter(Boolean);
|
|
103896
|
-
if (c.length !== 6
|
|
103896
|
+
if (c.length !== 6)
|
|
103897
103897
|
i.push(
|
|
103898
103898
|
new Fi({
|
|
103899
103899
|
id: l.id + "--cron-must-have-six-fields",
|
|
@@ -103903,7 +103903,7 @@ function pui(l, p) {
|
|
|
103903
103903
|
entity: l
|
|
103904
103904
|
})
|
|
103905
103905
|
);
|
|
103906
|
-
else
|
|
103906
|
+
else {
|
|
103907
103907
|
const e = c[2], f = c[4];
|
|
103908
103908
|
e !== "?" && f !== "?" && (i.push(
|
|
103909
103909
|
new Fi({
|
|
@@ -103966,7 +103966,7 @@ class cui extends jd {
|
|
|
103966
103966
|
);
|
|
103967
103967
|
if (!r)
|
|
103968
103968
|
throw new Error("Expression property not found in cron job entity");
|
|
103969
|
-
r._codeNativeValueValidation = (s, c) =>
|
|
103969
|
+
r._codeNativeValueValidation = (s, c) => pui(s, c);
|
|
103970
103970
|
}
|
|
103971
103971
|
}
|
|
103972
103972
|
class fui extends jd {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elyx-code/project-logic-tree",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6876",
|
|
4
4
|
"author": "Sergio Herrero",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"description": "An installable module which contains the type definitions and ephemeral state management for a projects' logic tree data structure",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"log:project": "tsx --tsconfig tsconfig.scripts.json scripts/describe-project.ts"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@elyx-code/definitions": "^0.0.
|
|
41
|
+
"@elyx-code/definitions": "^0.0.79993",
|
|
42
42
|
"axios": "^1.9.0",
|
|
43
43
|
"dayjs": "^1.11.13",
|
|
44
44
|
"sql-parser-cst": "^0.33.1",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@aws-sdk/client-s3": "^3.850.0",
|
|
50
|
-
"@elyx-code/common-ts-utils": "^0.0.
|
|
50
|
+
"@elyx-code/common-ts-utils": "^0.0.129",
|
|
51
51
|
"@elyx-code/compiler": "^0.0.8014",
|
|
52
52
|
"@nangohq/node": "^0.58.4",
|
|
53
53
|
"@nangohq/types": "^0.58.4",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"yaml": "^2.7.1"
|
|
66
66
|
},
|
|
67
67
|
"peerDependencies": {
|
|
68
|
-
"@elyx-code/common-ts-utils": "^0.0.
|
|
68
|
+
"@elyx-code/common-ts-utils": "^0.0.129",
|
|
69
69
|
"sql-parser-cst": "^0.33.1"
|
|
70
70
|
},
|
|
71
71
|
"peerDependenciesMeta": {
|