@nyig/models 0.6.10 → 0.6.12

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/index.d.mts CHANGED
@@ -6415,8 +6415,9 @@ type BSemester = z.infer<typeof zBSemester>;
6415
6415
  type Semester = z.infer<typeof zSemester>;
6416
6416
 
6417
6417
  declare enum YouthOrAdult {
6418
- YOUTH_ONLY = "youth_only",
6419
- BOTH = "both"
6418
+ YOUTH_ONLY = "Youth only",
6419
+ ADULT_ONLY = "Adult only",
6420
+ BOTH = "Both"
6420
6421
  }
6421
6422
 
6422
6423
  declare const zBEventConfig: z.ZodObject<{
package/index.d.ts CHANGED
@@ -6415,8 +6415,9 @@ type BSemester = z.infer<typeof zBSemester>;
6415
6415
  type Semester = z.infer<typeof zSemester>;
6416
6416
 
6417
6417
  declare enum YouthOrAdult {
6418
- YOUTH_ONLY = "youth_only",
6419
- BOTH = "both"
6418
+ YOUTH_ONLY = "Youth only",
6419
+ ADULT_ONLY = "Adult only",
6420
+ BOTH = "Both"
6420
6421
  }
6421
6422
 
6422
6423
  declare const zBEventConfig: z.ZodObject<{
package/index.js CHANGED
@@ -841,8 +841,9 @@ var zEventTicket = addAutoProps(zBEventTicket);
841
841
 
842
842
  // src/interface/event/youthOrAdult.ts
843
843
  var YouthOrAdult = /* @__PURE__ */ ((YouthOrAdult2) => {
844
- YouthOrAdult2["YOUTH_ONLY"] = "youth_only";
845
- YouthOrAdult2["BOTH"] = "both";
844
+ YouthOrAdult2["YOUTH_ONLY"] = "Youth only";
845
+ YouthOrAdult2["ADULT_ONLY"] = "Adult only";
846
+ YouthOrAdult2["BOTH"] = "Both";
846
847
  return YouthOrAdult2;
847
848
  })(YouthOrAdult || {});
848
849
 
package/index.mjs CHANGED
@@ -729,8 +729,9 @@ var zEventTicket = addAutoProps(zBEventTicket);
729
729
 
730
730
  // src/interface/event/youthOrAdult.ts
731
731
  var YouthOrAdult = /* @__PURE__ */ ((YouthOrAdult2) => {
732
- YouthOrAdult2["YOUTH_ONLY"] = "youth_only";
733
- YouthOrAdult2["BOTH"] = "both";
732
+ YouthOrAdult2["YOUTH_ONLY"] = "Youth only";
733
+ YouthOrAdult2["ADULT_ONLY"] = "Adult only";
734
+ YouthOrAdult2["BOTH"] = "Both";
734
735
  return YouthOrAdult2;
735
736
  })(YouthOrAdult || {});
736
737
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nyig/models",
3
- "version": "0.6.10",
3
+ "version": "0.6.12",
4
4
  "license": "MIT",
5
5
  "main": "index.js",
6
6
  "module": "index.mjs",