@eeplatform/basic-edu 1.10.29 → 1.10.30

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @eeplatform/basic-edu
2
2
 
3
+ ## 1.10.30
4
+
5
+ ### Patch Changes
6
+
7
+ - 16f4d00: Relax validation for seniorHigh track/strand
8
+
3
9
  ## 1.10.29
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -3182,9 +3182,9 @@ var schemaEnrollment = import_joi5.default.object({
3182
3182
  }).optional(),
3183
3183
  seniorHighInfo: import_joi5.default.object({
3184
3184
  semester: import_joi5.default.string().optional().allow("", null),
3185
- track: import_joi5.default.string().hex().optional().allow("", null),
3185
+ track: import_joi5.default.string().optional().allow("", null),
3186
3186
  trackName: import_joi5.default.string().optional().allow("", null),
3187
- strand: import_joi5.default.string().hex().optional().allow("", null),
3187
+ strand: import_joi5.default.string().optional().allow("", null),
3188
3188
  strandName: import_joi5.default.string().optional().allow("", null)
3189
3189
  }).optional(),
3190
3190
  alternativeLearningOptions: import_joi5.default.array().items(import_joi5.default.string()).optional(),