@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.
@@ -5267,8 +5267,8 @@ var getSchemaForExecutionDelay = function getSchemaForExecutionDelay(_) {
5267
5267
  var schema = yup__namespace.object().shape({
5268
5268
  value: yup__namespace.number().nullable().integer().typeError(i18next.t("neetoRules.validations.number")).min(1, i18next.t("neetoRules.validations.minDelay", {
5269
5269
  min: 1
5270
- })).max(15, i18next.t("neetoRules.validations.maxDelay", {
5271
- max: 15
5270
+ })).max(999, i18next.t("neetoRules.validations.maxDelay", {
5271
+ max: 999
5272
5272
  })).required(i18next.t("neetoRules.validations.required.value")),
5273
5273
  unit: yup__namespace.string().nullable().required(i18next.t("neetoRules.validations.required.value"))
5274
5274
  });