@bigbinary/neeto-rules-frontend 2.5.49 → 2.5.50

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.
@@ -5246,8 +5246,8 @@ var getSchemaForExecutionDelay = function getSchemaForExecutionDelay(_) {
5246
5246
  var schema = yup.object().shape({
5247
5247
  value: yup.number().nullable().integer().typeError(t$1("neetoRules.validations.number")).min(1, t$1("neetoRules.validations.minDelay", {
5248
5248
  min: 1
5249
- })).max(15, t$1("neetoRules.validations.maxDelay", {
5250
- max: 15
5249
+ })).max(999, t$1("neetoRules.validations.maxDelay", {
5250
+ max: 999
5251
5251
  })).required(t$1("neetoRules.validations.required.value")),
5252
5252
  unit: yup.string().nullable().required(t$1("neetoRules.validations.required.value"))
5253
5253
  });