@eeplatform/basic-edu 1.10.18 → 1.10.19

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.mjs CHANGED
@@ -37338,10 +37338,11 @@ function useGradeLevelController() {
37338
37338
  const validation = Joi23.object({
37339
37339
  id: Joi23.string().hex().required(),
37340
37340
  value: Joi23.object({
37341
- school: Joi23.string().hex().optional(),
37342
37341
  educationLevel: Joi23.string().optional(),
37343
37342
  gradeLevel: Joi23.string().optional(),
37344
37343
  teachingStyle: Joi23.string().optional(),
37344
+ maxNumberOfLearners: Joi23.number().min(1).optional(),
37345
+ minNumberOfLearners: Joi23.number().min(1).optional(),
37345
37346
  maxTeachingHoursPerDay: Joi23.number().integer().min(0).optional(),
37346
37347
  maxTeachingHoursPerWeek: Joi23.number().integer().min(0).optional(),
37347
37348
  defaultStartTime: Joi23.string().optional().allow("", null),