@nyig/models 0.4.18 → 0.4.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/index.js +4 -4
- package/index.mjs +4 -4
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -821,11 +821,11 @@ var zBEventConfig = import_zod29.z.object({
|
|
|
821
821
|
/**
|
|
822
822
|
* Full name of the tournament
|
|
823
823
|
*/
|
|
824
|
-
title: import_zod29.z.string(),
|
|
824
|
+
title: import_zod29.z.string().min(5),
|
|
825
825
|
/**
|
|
826
826
|
* Abbreviated title of the tournament
|
|
827
827
|
*/
|
|
828
|
-
shortTitle: import_zod29.z.string(),
|
|
828
|
+
shortTitle: import_zod29.z.string().min(2),
|
|
829
829
|
/**
|
|
830
830
|
* Tournament start date and time
|
|
831
831
|
*/
|
|
@@ -837,11 +837,11 @@ var zBEventConfig = import_zod29.z.object({
|
|
|
837
837
|
/**
|
|
838
838
|
* Short description for tournament card
|
|
839
839
|
*/
|
|
840
|
-
shortDescription: import_zod29.z.string(),
|
|
840
|
+
shortDescription: import_zod29.z.string().min(5),
|
|
841
841
|
/**
|
|
842
842
|
* Full description
|
|
843
843
|
*/
|
|
844
|
-
description: import_zod29.z.string(),
|
|
844
|
+
description: import_zod29.z.string().min(5),
|
|
845
845
|
/**
|
|
846
846
|
* Defines the tournament details table with 2 columns
|
|
847
847
|
* typically Time and Event
|
package/index.mjs
CHANGED
|
@@ -713,11 +713,11 @@ var zBEventConfig = z29.object({
|
|
|
713
713
|
/**
|
|
714
714
|
* Full name of the tournament
|
|
715
715
|
*/
|
|
716
|
-
title: z29.string(),
|
|
716
|
+
title: z29.string().min(5),
|
|
717
717
|
/**
|
|
718
718
|
* Abbreviated title of the tournament
|
|
719
719
|
*/
|
|
720
|
-
shortTitle: z29.string(),
|
|
720
|
+
shortTitle: z29.string().min(2),
|
|
721
721
|
/**
|
|
722
722
|
* Tournament start date and time
|
|
723
723
|
*/
|
|
@@ -729,11 +729,11 @@ var zBEventConfig = z29.object({
|
|
|
729
729
|
/**
|
|
730
730
|
* Short description for tournament card
|
|
731
731
|
*/
|
|
732
|
-
shortDescription: z29.string(),
|
|
732
|
+
shortDescription: z29.string().min(5),
|
|
733
733
|
/**
|
|
734
734
|
* Full description
|
|
735
735
|
*/
|
|
736
|
-
description: z29.string(),
|
|
736
|
+
description: z29.string().min(5),
|
|
737
737
|
/**
|
|
738
738
|
* Defines the tournament details table with 2 columns
|
|
739
739
|
* typically Time and Event
|