@constela/core 0.15.1 → 0.15.2
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.js +0 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1184,9 +1184,6 @@ function validateActionStep(step, path) {
|
|
|
1184
1184
|
const pathError = validateExpression(step["path"], path + "/path");
|
|
1185
1185
|
if (pathError) return pathError;
|
|
1186
1186
|
}
|
|
1187
|
-
if (!("field" in step) || typeof step["field"] !== "string") {
|
|
1188
|
-
return { path: path + "/field", message: "field is required" };
|
|
1189
|
-
}
|
|
1190
1187
|
if (!("value" in step)) {
|
|
1191
1188
|
return { path: path + "/value", message: "value is required" };
|
|
1192
1189
|
}
|