@mac777/project-pinecone-schema 1.0.4 → 1.0.6

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.
@@ -803,7 +803,6 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
803
803
  tickets: z.ZodArray<z.ZodObject<{
804
804
  _id: z.ZodOptional<z.ZodString>;
805
805
  name: z.ZodString;
806
- description: z.ZodOptional<z.ZodString>;
807
806
  price: z.ZodObject<{
808
807
  amount: z.ZodNumber;
809
808
  currency: z.ZodDefault<z.ZodString>;
@@ -815,16 +814,6 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
815
814
  currency?: string | undefined;
816
815
  }>;
817
816
  quantity: z.ZodNumber;
818
- salesWindow: z.ZodOptional<z.ZodObject<{
819
- startDate: z.ZodOptional<z.ZodString>;
820
- endDate: z.ZodOptional<z.ZodString>;
821
- }, "strip", z.ZodTypeAny, {
822
- startDate?: string | undefined;
823
- endDate?: string | undefined;
824
- }, {
825
- startDate?: string | undefined;
826
- endDate?: string | undefined;
827
- }>>;
828
817
  limits: z.ZodOptional<z.ZodObject<{
829
818
  minPerOrder: z.ZodDefault<z.ZodNumber>;
830
819
  maxPerOrder: z.ZodDefault<z.ZodNumber>;
@@ -835,13 +824,23 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
835
824
  minPerOrder?: number | undefined;
836
825
  maxPerOrder?: number | undefined;
837
826
  }>>;
838
- remaining: z.ZodOptional<z.ZodNumber>;
839
- sold: z.ZodOptional<z.ZodNumber>;
840
- reserved: z.ZodOptional<z.ZodNumber>;
841
- visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
842
- status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
827
+ sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
828
+ reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
829
+ wristbandColor: z.ZodOptional<z.ZodString>;
830
+ isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
831
+ isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
843
832
  benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
844
833
  tier: z.ZodDefault<z.ZodString>;
834
+ salesWindow: z.ZodOptional<z.ZodObject<{
835
+ startDate: z.ZodOptional<z.ZodString>;
836
+ endDate: z.ZodOptional<z.ZodString>;
837
+ }, "strip", z.ZodTypeAny, {
838
+ startDate?: string | undefined;
839
+ endDate?: string | undefined;
840
+ }, {
841
+ startDate?: string | undefined;
842
+ endDate?: string | undefined;
843
+ }>>;
845
844
  }, "strip", z.ZodTypeAny, {
846
845
  name: string;
847
846
  price: {
@@ -850,22 +849,21 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
850
849
  };
851
850
  quantity: number;
852
851
  tier: string;
853
- status?: "active" | "inactive" | undefined;
854
852
  _id?: string | undefined;
855
- description?: string | undefined;
856
- salesWindow?: {
857
- startDate?: string | undefined;
858
- endDate?: string | undefined;
859
- } | undefined;
860
853
  limits?: {
861
854
  minPerOrder: number;
862
855
  maxPerOrder: number;
863
856
  } | undefined;
864
- remaining?: number | undefined;
865
857
  sold?: number | undefined;
866
858
  reserved?: number | undefined;
867
- visibility?: "public" | "hidden" | "invite_only" | undefined;
859
+ wristbandColor?: string | undefined;
860
+ isVisible?: boolean | undefined;
861
+ isActive?: boolean | undefined;
868
862
  benefits?: string[] | undefined;
863
+ salesWindow?: {
864
+ startDate?: string | undefined;
865
+ endDate?: string | undefined;
866
+ } | undefined;
869
867
  }, {
870
868
  name: string;
871
869
  price: {
@@ -873,29 +871,27 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
873
871
  currency?: string | undefined;
874
872
  };
875
873
  quantity: number;
876
- status?: "active" | "inactive" | undefined;
877
874
  _id?: string | undefined;
878
- description?: string | undefined;
879
- salesWindow?: {
880
- startDate?: string | undefined;
881
- endDate?: string | undefined;
882
- } | undefined;
883
875
  limits?: {
884
876
  minPerOrder?: number | undefined;
885
877
  maxPerOrder?: number | undefined;
886
878
  } | undefined;
887
- remaining?: number | undefined;
888
879
  sold?: number | undefined;
889
880
  reserved?: number | undefined;
890
- visibility?: "public" | "hidden" | "invite_only" | undefined;
881
+ wristbandColor?: string | undefined;
882
+ isVisible?: boolean | undefined;
883
+ isActive?: boolean | undefined;
891
884
  benefits?: string[] | undefined;
892
885
  tier?: string | undefined;
886
+ salesWindow?: {
887
+ startDate?: string | undefined;
888
+ endDate?: string | undefined;
889
+ } | undefined;
893
890
  }>, "many">;
894
891
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
895
892
  tickets: z.ZodArray<z.ZodObject<{
896
893
  _id: z.ZodOptional<z.ZodString>;
897
894
  name: z.ZodString;
898
- description: z.ZodOptional<z.ZodString>;
899
895
  price: z.ZodObject<{
900
896
  amount: z.ZodNumber;
901
897
  currency: z.ZodDefault<z.ZodString>;
@@ -907,16 +903,6 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
907
903
  currency?: string | undefined;
908
904
  }>;
909
905
  quantity: z.ZodNumber;
910
- salesWindow: z.ZodOptional<z.ZodObject<{
911
- startDate: z.ZodOptional<z.ZodString>;
912
- endDate: z.ZodOptional<z.ZodString>;
913
- }, "strip", z.ZodTypeAny, {
914
- startDate?: string | undefined;
915
- endDate?: string | undefined;
916
- }, {
917
- startDate?: string | undefined;
918
- endDate?: string | undefined;
919
- }>>;
920
906
  limits: z.ZodOptional<z.ZodObject<{
921
907
  minPerOrder: z.ZodDefault<z.ZodNumber>;
922
908
  maxPerOrder: z.ZodDefault<z.ZodNumber>;
@@ -927,13 +913,23 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
927
913
  minPerOrder?: number | undefined;
928
914
  maxPerOrder?: number | undefined;
929
915
  }>>;
930
- remaining: z.ZodOptional<z.ZodNumber>;
931
- sold: z.ZodOptional<z.ZodNumber>;
932
- reserved: z.ZodOptional<z.ZodNumber>;
933
- visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
934
- status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
916
+ sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
917
+ reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
918
+ wristbandColor: z.ZodOptional<z.ZodString>;
919
+ isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
920
+ isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
935
921
  benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
936
922
  tier: z.ZodDefault<z.ZodString>;
923
+ salesWindow: z.ZodOptional<z.ZodObject<{
924
+ startDate: z.ZodOptional<z.ZodString>;
925
+ endDate: z.ZodOptional<z.ZodString>;
926
+ }, "strip", z.ZodTypeAny, {
927
+ startDate?: string | undefined;
928
+ endDate?: string | undefined;
929
+ }, {
930
+ startDate?: string | undefined;
931
+ endDate?: string | undefined;
932
+ }>>;
937
933
  }, "strip", z.ZodTypeAny, {
938
934
  name: string;
939
935
  price: {
@@ -942,22 +938,21 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
942
938
  };
943
939
  quantity: number;
944
940
  tier: string;
945
- status?: "active" | "inactive" | undefined;
946
941
  _id?: string | undefined;
947
- description?: string | undefined;
948
- salesWindow?: {
949
- startDate?: string | undefined;
950
- endDate?: string | undefined;
951
- } | undefined;
952
942
  limits?: {
953
943
  minPerOrder: number;
954
944
  maxPerOrder: number;
955
945
  } | undefined;
956
- remaining?: number | undefined;
957
946
  sold?: number | undefined;
958
947
  reserved?: number | undefined;
959
- visibility?: "public" | "hidden" | "invite_only" | undefined;
948
+ wristbandColor?: string | undefined;
949
+ isVisible?: boolean | undefined;
950
+ isActive?: boolean | undefined;
960
951
  benefits?: string[] | undefined;
952
+ salesWindow?: {
953
+ startDate?: string | undefined;
954
+ endDate?: string | undefined;
955
+ } | undefined;
961
956
  }, {
962
957
  name: string;
963
958
  price: {
@@ -965,29 +960,27 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
965
960
  currency?: string | undefined;
966
961
  };
967
962
  quantity: number;
968
- status?: "active" | "inactive" | undefined;
969
963
  _id?: string | undefined;
970
- description?: string | undefined;
971
- salesWindow?: {
972
- startDate?: string | undefined;
973
- endDate?: string | undefined;
974
- } | undefined;
975
964
  limits?: {
976
965
  minPerOrder?: number | undefined;
977
966
  maxPerOrder?: number | undefined;
978
967
  } | undefined;
979
- remaining?: number | undefined;
980
968
  sold?: number | undefined;
981
969
  reserved?: number | undefined;
982
- visibility?: "public" | "hidden" | "invite_only" | undefined;
970
+ wristbandColor?: string | undefined;
971
+ isVisible?: boolean | undefined;
972
+ isActive?: boolean | undefined;
983
973
  benefits?: string[] | undefined;
984
974
  tier?: string | undefined;
975
+ salesWindow?: {
976
+ startDate?: string | undefined;
977
+ endDate?: string | undefined;
978
+ } | undefined;
985
979
  }>, "many">;
986
980
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
987
981
  tickets: z.ZodArray<z.ZodObject<{
988
982
  _id: z.ZodOptional<z.ZodString>;
989
983
  name: z.ZodString;
990
- description: z.ZodOptional<z.ZodString>;
991
984
  price: z.ZodObject<{
992
985
  amount: z.ZodNumber;
993
986
  currency: z.ZodDefault<z.ZodString>;
@@ -999,16 +992,6 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
999
992
  currency?: string | undefined;
1000
993
  }>;
1001
994
  quantity: z.ZodNumber;
1002
- salesWindow: z.ZodOptional<z.ZodObject<{
1003
- startDate: z.ZodOptional<z.ZodString>;
1004
- endDate: z.ZodOptional<z.ZodString>;
1005
- }, "strip", z.ZodTypeAny, {
1006
- startDate?: string | undefined;
1007
- endDate?: string | undefined;
1008
- }, {
1009
- startDate?: string | undefined;
1010
- endDate?: string | undefined;
1011
- }>>;
1012
995
  limits: z.ZodOptional<z.ZodObject<{
1013
996
  minPerOrder: z.ZodDefault<z.ZodNumber>;
1014
997
  maxPerOrder: z.ZodDefault<z.ZodNumber>;
@@ -1019,13 +1002,23 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1019
1002
  minPerOrder?: number | undefined;
1020
1003
  maxPerOrder?: number | undefined;
1021
1004
  }>>;
1022
- remaining: z.ZodOptional<z.ZodNumber>;
1023
- sold: z.ZodOptional<z.ZodNumber>;
1024
- reserved: z.ZodOptional<z.ZodNumber>;
1025
- visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
1026
- status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
1005
+ sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
1006
+ reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
1007
+ wristbandColor: z.ZodOptional<z.ZodString>;
1008
+ isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1009
+ isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1027
1010
  benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1028
1011
  tier: z.ZodDefault<z.ZodString>;
1012
+ salesWindow: z.ZodOptional<z.ZodObject<{
1013
+ startDate: z.ZodOptional<z.ZodString>;
1014
+ endDate: z.ZodOptional<z.ZodString>;
1015
+ }, "strip", z.ZodTypeAny, {
1016
+ startDate?: string | undefined;
1017
+ endDate?: string | undefined;
1018
+ }, {
1019
+ startDate?: string | undefined;
1020
+ endDate?: string | undefined;
1021
+ }>>;
1029
1022
  }, "strip", z.ZodTypeAny, {
1030
1023
  name: string;
1031
1024
  price: {
@@ -1034,22 +1027,21 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1034
1027
  };
1035
1028
  quantity: number;
1036
1029
  tier: string;
1037
- status?: "active" | "inactive" | undefined;
1038
1030
  _id?: string | undefined;
1039
- description?: string | undefined;
1040
- salesWindow?: {
1041
- startDate?: string | undefined;
1042
- endDate?: string | undefined;
1043
- } | undefined;
1044
1031
  limits?: {
1045
1032
  minPerOrder: number;
1046
1033
  maxPerOrder: number;
1047
1034
  } | undefined;
1048
- remaining?: number | undefined;
1049
1035
  sold?: number | undefined;
1050
1036
  reserved?: number | undefined;
1051
- visibility?: "public" | "hidden" | "invite_only" | undefined;
1037
+ wristbandColor?: string | undefined;
1038
+ isVisible?: boolean | undefined;
1039
+ isActive?: boolean | undefined;
1052
1040
  benefits?: string[] | undefined;
1041
+ salesWindow?: {
1042
+ startDate?: string | undefined;
1043
+ endDate?: string | undefined;
1044
+ } | undefined;
1053
1045
  }, {
1054
1046
  name: string;
1055
1047
  price: {
@@ -1057,29 +1049,27 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1057
1049
  currency?: string | undefined;
1058
1050
  };
1059
1051
  quantity: number;
1060
- status?: "active" | "inactive" | undefined;
1061
1052
  _id?: string | undefined;
1062
- description?: string | undefined;
1063
- salesWindow?: {
1064
- startDate?: string | undefined;
1065
- endDate?: string | undefined;
1066
- } | undefined;
1067
1053
  limits?: {
1068
1054
  minPerOrder?: number | undefined;
1069
1055
  maxPerOrder?: number | undefined;
1070
1056
  } | undefined;
1071
- remaining?: number | undefined;
1072
1057
  sold?: number | undefined;
1073
1058
  reserved?: number | undefined;
1074
- visibility?: "public" | "hidden" | "invite_only" | undefined;
1059
+ wristbandColor?: string | undefined;
1060
+ isVisible?: boolean | undefined;
1061
+ isActive?: boolean | undefined;
1075
1062
  benefits?: string[] | undefined;
1076
1063
  tier?: string | undefined;
1064
+ salesWindow?: {
1065
+ startDate?: string | undefined;
1066
+ endDate?: string | undefined;
1067
+ } | undefined;
1077
1068
  }>, "many">;
1078
1069
  }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
1079
1070
  tickets: z.ZodArray<z.ZodObject<{
1080
1071
  _id: z.ZodOptional<z.ZodString>;
1081
1072
  name: z.ZodString;
1082
- description: z.ZodOptional<z.ZodString>;
1083
1073
  price: z.ZodObject<{
1084
1074
  amount: z.ZodNumber;
1085
1075
  currency: z.ZodDefault<z.ZodString>;
@@ -1091,16 +1081,6 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1091
1081
  currency?: string | undefined;
1092
1082
  }>;
1093
1083
  quantity: z.ZodNumber;
1094
- salesWindow: z.ZodOptional<z.ZodObject<{
1095
- startDate: z.ZodOptional<z.ZodString>;
1096
- endDate: z.ZodOptional<z.ZodString>;
1097
- }, "strip", z.ZodTypeAny, {
1098
- startDate?: string | undefined;
1099
- endDate?: string | undefined;
1100
- }, {
1101
- startDate?: string | undefined;
1102
- endDate?: string | undefined;
1103
- }>>;
1104
1084
  limits: z.ZodOptional<z.ZodObject<{
1105
1085
  minPerOrder: z.ZodDefault<z.ZodNumber>;
1106
1086
  maxPerOrder: z.ZodDefault<z.ZodNumber>;
@@ -1111,13 +1091,23 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1111
1091
  minPerOrder?: number | undefined;
1112
1092
  maxPerOrder?: number | undefined;
1113
1093
  }>>;
1114
- remaining: z.ZodOptional<z.ZodNumber>;
1115
- sold: z.ZodOptional<z.ZodNumber>;
1116
- reserved: z.ZodOptional<z.ZodNumber>;
1117
- visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
1118
- status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
1094
+ sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
1095
+ reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
1096
+ wristbandColor: z.ZodOptional<z.ZodString>;
1097
+ isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1098
+ isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1119
1099
  benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1120
1100
  tier: z.ZodDefault<z.ZodString>;
1101
+ salesWindow: z.ZodOptional<z.ZodObject<{
1102
+ startDate: z.ZodOptional<z.ZodString>;
1103
+ endDate: z.ZodOptional<z.ZodString>;
1104
+ }, "strip", z.ZodTypeAny, {
1105
+ startDate?: string | undefined;
1106
+ endDate?: string | undefined;
1107
+ }, {
1108
+ startDate?: string | undefined;
1109
+ endDate?: string | undefined;
1110
+ }>>;
1121
1111
  }, "strip", z.ZodTypeAny, {
1122
1112
  name: string;
1123
1113
  price: {
@@ -1126,22 +1116,21 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1126
1116
  };
1127
1117
  quantity: number;
1128
1118
  tier: string;
1129
- status?: "active" | "inactive" | undefined;
1130
1119
  _id?: string | undefined;
1131
- description?: string | undefined;
1132
- salesWindow?: {
1133
- startDate?: string | undefined;
1134
- endDate?: string | undefined;
1135
- } | undefined;
1136
1120
  limits?: {
1137
1121
  minPerOrder: number;
1138
1122
  maxPerOrder: number;
1139
1123
  } | undefined;
1140
- remaining?: number | undefined;
1141
1124
  sold?: number | undefined;
1142
1125
  reserved?: number | undefined;
1143
- visibility?: "public" | "hidden" | "invite_only" | undefined;
1126
+ wristbandColor?: string | undefined;
1127
+ isVisible?: boolean | undefined;
1128
+ isActive?: boolean | undefined;
1144
1129
  benefits?: string[] | undefined;
1130
+ salesWindow?: {
1131
+ startDate?: string | undefined;
1132
+ endDate?: string | undefined;
1133
+ } | undefined;
1145
1134
  }, {
1146
1135
  name: string;
1147
1136
  price: {
@@ -1149,29 +1138,27 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1149
1138
  currency?: string | undefined;
1150
1139
  };
1151
1140
  quantity: number;
1152
- status?: "active" | "inactive" | undefined;
1153
1141
  _id?: string | undefined;
1154
- description?: string | undefined;
1155
- salesWindow?: {
1156
- startDate?: string | undefined;
1157
- endDate?: string | undefined;
1158
- } | undefined;
1159
1142
  limits?: {
1160
1143
  minPerOrder?: number | undefined;
1161
1144
  maxPerOrder?: number | undefined;
1162
1145
  } | undefined;
1163
- remaining?: number | undefined;
1164
1146
  sold?: number | undefined;
1165
1147
  reserved?: number | undefined;
1166
- visibility?: "public" | "hidden" | "invite_only" | undefined;
1148
+ wristbandColor?: string | undefined;
1149
+ isVisible?: boolean | undefined;
1150
+ isActive?: boolean | undefined;
1167
1151
  benefits?: string[] | undefined;
1168
1152
  tier?: string | undefined;
1153
+ salesWindow?: {
1154
+ startDate?: string | undefined;
1155
+ endDate?: string | undefined;
1156
+ } | undefined;
1169
1157
  }>, "many">;
1170
1158
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1171
1159
  tickets: z.ZodArray<z.ZodObject<{
1172
1160
  _id: z.ZodOptional<z.ZodString>;
1173
1161
  name: z.ZodString;
1174
- description: z.ZodOptional<z.ZodString>;
1175
1162
  price: z.ZodObject<{
1176
1163
  amount: z.ZodNumber;
1177
1164
  currency: z.ZodDefault<z.ZodString>;
@@ -1183,16 +1170,6 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1183
1170
  currency?: string | undefined;
1184
1171
  }>;
1185
1172
  quantity: z.ZodNumber;
1186
- salesWindow: z.ZodOptional<z.ZodObject<{
1187
- startDate: z.ZodOptional<z.ZodString>;
1188
- endDate: z.ZodOptional<z.ZodString>;
1189
- }, "strip", z.ZodTypeAny, {
1190
- startDate?: string | undefined;
1191
- endDate?: string | undefined;
1192
- }, {
1193
- startDate?: string | undefined;
1194
- endDate?: string | undefined;
1195
- }>>;
1196
1173
  limits: z.ZodOptional<z.ZodObject<{
1197
1174
  minPerOrder: z.ZodDefault<z.ZodNumber>;
1198
1175
  maxPerOrder: z.ZodDefault<z.ZodNumber>;
@@ -1203,13 +1180,23 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1203
1180
  minPerOrder?: number | undefined;
1204
1181
  maxPerOrder?: number | undefined;
1205
1182
  }>>;
1206
- remaining: z.ZodOptional<z.ZodNumber>;
1207
- sold: z.ZodOptional<z.ZodNumber>;
1208
- reserved: z.ZodOptional<z.ZodNumber>;
1209
- visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
1210
- status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
1183
+ sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
1184
+ reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
1185
+ wristbandColor: z.ZodOptional<z.ZodString>;
1186
+ isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1187
+ isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1211
1188
  benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1212
1189
  tier: z.ZodDefault<z.ZodString>;
1190
+ salesWindow: z.ZodOptional<z.ZodObject<{
1191
+ startDate: z.ZodOptional<z.ZodString>;
1192
+ endDate: z.ZodOptional<z.ZodString>;
1193
+ }, "strip", z.ZodTypeAny, {
1194
+ startDate?: string | undefined;
1195
+ endDate?: string | undefined;
1196
+ }, {
1197
+ startDate?: string | undefined;
1198
+ endDate?: string | undefined;
1199
+ }>>;
1213
1200
  }, "strip", z.ZodTypeAny, {
1214
1201
  name: string;
1215
1202
  price: {
@@ -1218,22 +1205,21 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1218
1205
  };
1219
1206
  quantity: number;
1220
1207
  tier: string;
1221
- status?: "active" | "inactive" | undefined;
1222
1208
  _id?: string | undefined;
1223
- description?: string | undefined;
1224
- salesWindow?: {
1225
- startDate?: string | undefined;
1226
- endDate?: string | undefined;
1227
- } | undefined;
1228
1209
  limits?: {
1229
1210
  minPerOrder: number;
1230
1211
  maxPerOrder: number;
1231
1212
  } | undefined;
1232
- remaining?: number | undefined;
1233
1213
  sold?: number | undefined;
1234
1214
  reserved?: number | undefined;
1235
- visibility?: "public" | "hidden" | "invite_only" | undefined;
1215
+ wristbandColor?: string | undefined;
1216
+ isVisible?: boolean | undefined;
1217
+ isActive?: boolean | undefined;
1236
1218
  benefits?: string[] | undefined;
1219
+ salesWindow?: {
1220
+ startDate?: string | undefined;
1221
+ endDate?: string | undefined;
1222
+ } | undefined;
1237
1223
  }, {
1238
1224
  name: string;
1239
1225
  price: {
@@ -1241,29 +1227,27 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1241
1227
  currency?: string | undefined;
1242
1228
  };
1243
1229
  quantity: number;
1244
- status?: "active" | "inactive" | undefined;
1245
1230
  _id?: string | undefined;
1246
- description?: string | undefined;
1247
- salesWindow?: {
1248
- startDate?: string | undefined;
1249
- endDate?: string | undefined;
1250
- } | undefined;
1251
1231
  limits?: {
1252
1232
  minPerOrder?: number | undefined;
1253
1233
  maxPerOrder?: number | undefined;
1254
1234
  } | undefined;
1255
- remaining?: number | undefined;
1256
1235
  sold?: number | undefined;
1257
1236
  reserved?: number | undefined;
1258
- visibility?: "public" | "hidden" | "invite_only" | undefined;
1237
+ wristbandColor?: string | undefined;
1238
+ isVisible?: boolean | undefined;
1239
+ isActive?: boolean | undefined;
1259
1240
  benefits?: string[] | undefined;
1260
1241
  tier?: string | undefined;
1242
+ salesWindow?: {
1243
+ startDate?: string | undefined;
1244
+ endDate?: string | undefined;
1245
+ } | undefined;
1261
1246
  }>, "many">;
1262
1247
  }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
1263
1248
  tickets: z.ZodArray<z.ZodObject<{
1264
1249
  _id: z.ZodOptional<z.ZodString>;
1265
1250
  name: z.ZodString;
1266
- description: z.ZodOptional<z.ZodString>;
1267
1251
  price: z.ZodObject<{
1268
1252
  amount: z.ZodNumber;
1269
1253
  currency: z.ZodDefault<z.ZodString>;
@@ -1275,16 +1259,6 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1275
1259
  currency?: string | undefined;
1276
1260
  }>;
1277
1261
  quantity: z.ZodNumber;
1278
- salesWindow: z.ZodOptional<z.ZodObject<{
1279
- startDate: z.ZodOptional<z.ZodString>;
1280
- endDate: z.ZodOptional<z.ZodString>;
1281
- }, "strip", z.ZodTypeAny, {
1282
- startDate?: string | undefined;
1283
- endDate?: string | undefined;
1284
- }, {
1285
- startDate?: string | undefined;
1286
- endDate?: string | undefined;
1287
- }>>;
1288
1262
  limits: z.ZodOptional<z.ZodObject<{
1289
1263
  minPerOrder: z.ZodDefault<z.ZodNumber>;
1290
1264
  maxPerOrder: z.ZodDefault<z.ZodNumber>;
@@ -1295,13 +1269,23 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1295
1269
  minPerOrder?: number | undefined;
1296
1270
  maxPerOrder?: number | undefined;
1297
1271
  }>>;
1298
- remaining: z.ZodOptional<z.ZodNumber>;
1299
- sold: z.ZodOptional<z.ZodNumber>;
1300
- reserved: z.ZodOptional<z.ZodNumber>;
1301
- visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
1302
- status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
1272
+ sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
1273
+ reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
1274
+ wristbandColor: z.ZodOptional<z.ZodString>;
1275
+ isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1276
+ isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1303
1277
  benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1304
1278
  tier: z.ZodDefault<z.ZodString>;
1279
+ salesWindow: z.ZodOptional<z.ZodObject<{
1280
+ startDate: z.ZodOptional<z.ZodString>;
1281
+ endDate: z.ZodOptional<z.ZodString>;
1282
+ }, "strip", z.ZodTypeAny, {
1283
+ startDate?: string | undefined;
1284
+ endDate?: string | undefined;
1285
+ }, {
1286
+ startDate?: string | undefined;
1287
+ endDate?: string | undefined;
1288
+ }>>;
1305
1289
  }, "strip", z.ZodTypeAny, {
1306
1290
  name: string;
1307
1291
  price: {
@@ -1310,22 +1294,21 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1310
1294
  };
1311
1295
  quantity: number;
1312
1296
  tier: string;
1313
- status?: "active" | "inactive" | undefined;
1314
1297
  _id?: string | undefined;
1315
- description?: string | undefined;
1316
- salesWindow?: {
1317
- startDate?: string | undefined;
1318
- endDate?: string | undefined;
1319
- } | undefined;
1320
1298
  limits?: {
1321
1299
  minPerOrder: number;
1322
1300
  maxPerOrder: number;
1323
1301
  } | undefined;
1324
- remaining?: number | undefined;
1325
1302
  sold?: number | undefined;
1326
1303
  reserved?: number | undefined;
1327
- visibility?: "public" | "hidden" | "invite_only" | undefined;
1304
+ wristbandColor?: string | undefined;
1305
+ isVisible?: boolean | undefined;
1306
+ isActive?: boolean | undefined;
1328
1307
  benefits?: string[] | undefined;
1308
+ salesWindow?: {
1309
+ startDate?: string | undefined;
1310
+ endDate?: string | undefined;
1311
+ } | undefined;
1329
1312
  }, {
1330
1313
  name: string;
1331
1314
  price: {
@@ -1333,29 +1316,27 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1333
1316
  currency?: string | undefined;
1334
1317
  };
1335
1318
  quantity: number;
1336
- status?: "active" | "inactive" | undefined;
1337
1319
  _id?: string | undefined;
1338
- description?: string | undefined;
1339
- salesWindow?: {
1340
- startDate?: string | undefined;
1341
- endDate?: string | undefined;
1342
- } | undefined;
1343
1320
  limits?: {
1344
1321
  minPerOrder?: number | undefined;
1345
1322
  maxPerOrder?: number | undefined;
1346
1323
  } | undefined;
1347
- remaining?: number | undefined;
1348
1324
  sold?: number | undefined;
1349
1325
  reserved?: number | undefined;
1350
- visibility?: "public" | "hidden" | "invite_only" | undefined;
1326
+ wristbandColor?: string | undefined;
1327
+ isVisible?: boolean | undefined;
1328
+ isActive?: boolean | undefined;
1351
1329
  benefits?: string[] | undefined;
1352
1330
  tier?: string | undefined;
1331
+ salesWindow?: {
1332
+ startDate?: string | undefined;
1333
+ endDate?: string | undefined;
1334
+ } | undefined;
1353
1335
  }>, "many">;
1354
1336
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1355
1337
  tickets: z.ZodArray<z.ZodObject<{
1356
1338
  _id: z.ZodOptional<z.ZodString>;
1357
1339
  name: z.ZodString;
1358
- description: z.ZodOptional<z.ZodString>;
1359
1340
  price: z.ZodObject<{
1360
1341
  amount: z.ZodNumber;
1361
1342
  currency: z.ZodDefault<z.ZodString>;
@@ -1367,16 +1348,6 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1367
1348
  currency?: string | undefined;
1368
1349
  }>;
1369
1350
  quantity: z.ZodNumber;
1370
- salesWindow: z.ZodOptional<z.ZodObject<{
1371
- startDate: z.ZodOptional<z.ZodString>;
1372
- endDate: z.ZodOptional<z.ZodString>;
1373
- }, "strip", z.ZodTypeAny, {
1374
- startDate?: string | undefined;
1375
- endDate?: string | undefined;
1376
- }, {
1377
- startDate?: string | undefined;
1378
- endDate?: string | undefined;
1379
- }>>;
1380
1351
  limits: z.ZodOptional<z.ZodObject<{
1381
1352
  minPerOrder: z.ZodDefault<z.ZodNumber>;
1382
1353
  maxPerOrder: z.ZodDefault<z.ZodNumber>;
@@ -1387,13 +1358,23 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1387
1358
  minPerOrder?: number | undefined;
1388
1359
  maxPerOrder?: number | undefined;
1389
1360
  }>>;
1390
- remaining: z.ZodOptional<z.ZodNumber>;
1391
- sold: z.ZodOptional<z.ZodNumber>;
1392
- reserved: z.ZodOptional<z.ZodNumber>;
1393
- visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
1394
- status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
1361
+ sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
1362
+ reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
1363
+ wristbandColor: z.ZodOptional<z.ZodString>;
1364
+ isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1365
+ isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1395
1366
  benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1396
1367
  tier: z.ZodDefault<z.ZodString>;
1368
+ salesWindow: z.ZodOptional<z.ZodObject<{
1369
+ startDate: z.ZodOptional<z.ZodString>;
1370
+ endDate: z.ZodOptional<z.ZodString>;
1371
+ }, "strip", z.ZodTypeAny, {
1372
+ startDate?: string | undefined;
1373
+ endDate?: string | undefined;
1374
+ }, {
1375
+ startDate?: string | undefined;
1376
+ endDate?: string | undefined;
1377
+ }>>;
1397
1378
  }, "strip", z.ZodTypeAny, {
1398
1379
  name: string;
1399
1380
  price: {
@@ -1402,22 +1383,21 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1402
1383
  };
1403
1384
  quantity: number;
1404
1385
  tier: string;
1405
- status?: "active" | "inactive" | undefined;
1406
1386
  _id?: string | undefined;
1407
- description?: string | undefined;
1408
- salesWindow?: {
1409
- startDate?: string | undefined;
1410
- endDate?: string | undefined;
1411
- } | undefined;
1412
1387
  limits?: {
1413
1388
  minPerOrder: number;
1414
1389
  maxPerOrder: number;
1415
1390
  } | undefined;
1416
- remaining?: number | undefined;
1417
1391
  sold?: number | undefined;
1418
1392
  reserved?: number | undefined;
1419
- visibility?: "public" | "hidden" | "invite_only" | undefined;
1393
+ wristbandColor?: string | undefined;
1394
+ isVisible?: boolean | undefined;
1395
+ isActive?: boolean | undefined;
1420
1396
  benefits?: string[] | undefined;
1397
+ salesWindow?: {
1398
+ startDate?: string | undefined;
1399
+ endDate?: string | undefined;
1400
+ } | undefined;
1421
1401
  }, {
1422
1402
  name: string;
1423
1403
  price: {
@@ -1425,23 +1405,22 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
1425
1405
  currency?: string | undefined;
1426
1406
  };
1427
1407
  quantity: number;
1428
- status?: "active" | "inactive" | undefined;
1429
1408
  _id?: string | undefined;
1430
- description?: string | undefined;
1431
- salesWindow?: {
1432
- startDate?: string | undefined;
1433
- endDate?: string | undefined;
1434
- } | undefined;
1435
1409
  limits?: {
1436
1410
  minPerOrder?: number | undefined;
1437
1411
  maxPerOrder?: number | undefined;
1438
1412
  } | undefined;
1439
- remaining?: number | undefined;
1440
1413
  sold?: number | undefined;
1441
1414
  reserved?: number | undefined;
1442
- visibility?: "public" | "hidden" | "invite_only" | undefined;
1415
+ wristbandColor?: string | undefined;
1416
+ isVisible?: boolean | undefined;
1417
+ isActive?: boolean | undefined;
1443
1418
  benefits?: string[] | undefined;
1444
1419
  tier?: string | undefined;
1420
+ salesWindow?: {
1421
+ startDate?: string | undefined;
1422
+ endDate?: string | undefined;
1423
+ } | undefined;
1445
1424
  }>, "many">;
1446
1425
  }, z.ZodTypeAny, "passthrough">>;
1447
1426
  export declare const stepReviewSchema: z.ZodObject<{
@@ -1529,7 +1508,6 @@ export declare const pendingApprovalEditSchema: z.ZodObject<{
1529
1508
  }>;
1530
1509
  description: z.ZodString;
1531
1510
  }, "strip", z.ZodTypeAny, {
1532
- description: string;
1533
1511
  media: {
1534
1512
  coverImage: {
1535
1513
  alt: string;
@@ -1542,10 +1520,10 @@ export declare const pendingApprovalEditSchema: z.ZodObject<{
1542
1520
  url: string;
1543
1521
  }[] | undefined;
1544
1522
  };
1523
+ description: string;
1545
1524
  eventId: string;
1546
1525
  hostId: string;
1547
1526
  }, {
1548
- description: string;
1549
1527
  media: {
1550
1528
  coverImage: {
1551
1529
  alt: string;
@@ -1558,6 +1536,7 @@ export declare const pendingApprovalEditSchema: z.ZodObject<{
1558
1536
  url: string;
1559
1537
  }[] | undefined;
1560
1538
  };
1539
+ description: string;
1561
1540
  eventId: string;
1562
1541
  hostId: string;
1563
1542
  }>;
@@ -1618,7 +1597,6 @@ export declare const approvedEventEditSchema: z.ZodEffects<z.ZodObject<{
1618
1597
  tickets: z.ZodArray<z.ZodObject<{
1619
1598
  _id: z.ZodOptional<z.ZodString>;
1620
1599
  name: z.ZodString;
1621
- description: z.ZodOptional<z.ZodString>;
1622
1600
  price: z.ZodObject<{
1623
1601
  amount: z.ZodNumber;
1624
1602
  currency: z.ZodDefault<z.ZodString>;
@@ -1630,16 +1608,6 @@ export declare const approvedEventEditSchema: z.ZodEffects<z.ZodObject<{
1630
1608
  currency?: string | undefined;
1631
1609
  }>;
1632
1610
  quantity: z.ZodNumber;
1633
- salesWindow: z.ZodOptional<z.ZodObject<{
1634
- startDate: z.ZodOptional<z.ZodString>;
1635
- endDate: z.ZodOptional<z.ZodString>;
1636
- }, "strip", z.ZodTypeAny, {
1637
- startDate?: string | undefined;
1638
- endDate?: string | undefined;
1639
- }, {
1640
- startDate?: string | undefined;
1641
- endDate?: string | undefined;
1642
- }>>;
1643
1611
  limits: z.ZodOptional<z.ZodObject<{
1644
1612
  minPerOrder: z.ZodDefault<z.ZodNumber>;
1645
1613
  maxPerOrder: z.ZodDefault<z.ZodNumber>;
@@ -1650,13 +1618,23 @@ export declare const approvedEventEditSchema: z.ZodEffects<z.ZodObject<{
1650
1618
  minPerOrder?: number | undefined;
1651
1619
  maxPerOrder?: number | undefined;
1652
1620
  }>>;
1653
- remaining: z.ZodOptional<z.ZodNumber>;
1654
- sold: z.ZodOptional<z.ZodNumber>;
1655
- reserved: z.ZodOptional<z.ZodNumber>;
1656
- visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
1657
- status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
1621
+ sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
1622
+ reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
1623
+ wristbandColor: z.ZodOptional<z.ZodString>;
1624
+ isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1625
+ isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1658
1626
  benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1659
1627
  tier: z.ZodDefault<z.ZodString>;
1628
+ salesWindow: z.ZodOptional<z.ZodObject<{
1629
+ startDate: z.ZodOptional<z.ZodString>;
1630
+ endDate: z.ZodOptional<z.ZodString>;
1631
+ }, "strip", z.ZodTypeAny, {
1632
+ startDate?: string | undefined;
1633
+ endDate?: string | undefined;
1634
+ }, {
1635
+ startDate?: string | undefined;
1636
+ endDate?: string | undefined;
1637
+ }>>;
1660
1638
  }, "strip", z.ZodTypeAny, {
1661
1639
  name: string;
1662
1640
  price: {
@@ -1665,22 +1643,21 @@ export declare const approvedEventEditSchema: z.ZodEffects<z.ZodObject<{
1665
1643
  };
1666
1644
  quantity: number;
1667
1645
  tier: string;
1668
- status?: "active" | "inactive" | undefined;
1669
1646
  _id?: string | undefined;
1670
- description?: string | undefined;
1671
- salesWindow?: {
1672
- startDate?: string | undefined;
1673
- endDate?: string | undefined;
1674
- } | undefined;
1675
1647
  limits?: {
1676
1648
  minPerOrder: number;
1677
1649
  maxPerOrder: number;
1678
1650
  } | undefined;
1679
- remaining?: number | undefined;
1680
1651
  sold?: number | undefined;
1681
1652
  reserved?: number | undefined;
1682
- visibility?: "public" | "hidden" | "invite_only" | undefined;
1653
+ wristbandColor?: string | undefined;
1654
+ isVisible?: boolean | undefined;
1655
+ isActive?: boolean | undefined;
1683
1656
  benefits?: string[] | undefined;
1657
+ salesWindow?: {
1658
+ startDate?: string | undefined;
1659
+ endDate?: string | undefined;
1660
+ } | undefined;
1684
1661
  }, {
1685
1662
  name: string;
1686
1663
  price: {
@@ -1688,26 +1665,24 @@ export declare const approvedEventEditSchema: z.ZodEffects<z.ZodObject<{
1688
1665
  currency?: string | undefined;
1689
1666
  };
1690
1667
  quantity: number;
1691
- status?: "active" | "inactive" | undefined;
1692
1668
  _id?: string | undefined;
1693
- description?: string | undefined;
1694
- salesWindow?: {
1695
- startDate?: string | undefined;
1696
- endDate?: string | undefined;
1697
- } | undefined;
1698
1669
  limits?: {
1699
1670
  minPerOrder?: number | undefined;
1700
1671
  maxPerOrder?: number | undefined;
1701
1672
  } | undefined;
1702
- remaining?: number | undefined;
1703
1673
  sold?: number | undefined;
1704
1674
  reserved?: number | undefined;
1705
- visibility?: "public" | "hidden" | "invite_only" | undefined;
1675
+ wristbandColor?: string | undefined;
1676
+ isVisible?: boolean | undefined;
1677
+ isActive?: boolean | undefined;
1706
1678
  benefits?: string[] | undefined;
1707
1679
  tier?: string | undefined;
1680
+ salesWindow?: {
1681
+ startDate?: string | undefined;
1682
+ endDate?: string | undefined;
1683
+ } | undefined;
1708
1684
  }>, "many">;
1709
1685
  }, "strip", z.ZodTypeAny, {
1710
- description: string;
1711
1686
  media: {
1712
1687
  coverImage: {
1713
1688
  alt: string;
@@ -1720,6 +1695,7 @@ export declare const approvedEventEditSchema: z.ZodEffects<z.ZodObject<{
1720
1695
  url: string;
1721
1696
  }[] | undefined;
1722
1697
  };
1698
+ description: string;
1723
1699
  tickets: {
1724
1700
  name: string;
1725
1701
  price: {
@@ -1728,27 +1704,25 @@ export declare const approvedEventEditSchema: z.ZodEffects<z.ZodObject<{
1728
1704
  };
1729
1705
  quantity: number;
1730
1706
  tier: string;
1731
- status?: "active" | "inactive" | undefined;
1732
1707
  _id?: string | undefined;
1733
- description?: string | undefined;
1734
- salesWindow?: {
1735
- startDate?: string | undefined;
1736
- endDate?: string | undefined;
1737
- } | undefined;
1738
1708
  limits?: {
1739
1709
  minPerOrder: number;
1740
1710
  maxPerOrder: number;
1741
1711
  } | undefined;
1742
- remaining?: number | undefined;
1743
1712
  sold?: number | undefined;
1744
1713
  reserved?: number | undefined;
1745
- visibility?: "public" | "hidden" | "invite_only" | undefined;
1714
+ wristbandColor?: string | undefined;
1715
+ isVisible?: boolean | undefined;
1716
+ isActive?: boolean | undefined;
1746
1717
  benefits?: string[] | undefined;
1718
+ salesWindow?: {
1719
+ startDate?: string | undefined;
1720
+ endDate?: string | undefined;
1721
+ } | undefined;
1747
1722
  }[];
1748
1723
  eventId: string;
1749
1724
  hostId: string;
1750
1725
  }, {
1751
- description: string;
1752
1726
  media: {
1753
1727
  coverImage: {
1754
1728
  alt: string;
@@ -1761,6 +1735,7 @@ export declare const approvedEventEditSchema: z.ZodEffects<z.ZodObject<{
1761
1735
  url: string;
1762
1736
  }[] | undefined;
1763
1737
  };
1738
+ description: string;
1764
1739
  tickets: {
1765
1740
  name: string;
1766
1741
  price: {
@@ -1768,28 +1743,26 @@ export declare const approvedEventEditSchema: z.ZodEffects<z.ZodObject<{
1768
1743
  currency?: string | undefined;
1769
1744
  };
1770
1745
  quantity: number;
1771
- status?: "active" | "inactive" | undefined;
1772
1746
  _id?: string | undefined;
1773
- description?: string | undefined;
1774
- salesWindow?: {
1775
- startDate?: string | undefined;
1776
- endDate?: string | undefined;
1777
- } | undefined;
1778
1747
  limits?: {
1779
1748
  minPerOrder?: number | undefined;
1780
1749
  maxPerOrder?: number | undefined;
1781
1750
  } | undefined;
1782
- remaining?: number | undefined;
1783
1751
  sold?: number | undefined;
1784
1752
  reserved?: number | undefined;
1785
- visibility?: "public" | "hidden" | "invite_only" | undefined;
1753
+ wristbandColor?: string | undefined;
1754
+ isVisible?: boolean | undefined;
1755
+ isActive?: boolean | undefined;
1786
1756
  benefits?: string[] | undefined;
1787
1757
  tier?: string | undefined;
1758
+ salesWindow?: {
1759
+ startDate?: string | undefined;
1760
+ endDate?: string | undefined;
1761
+ } | undefined;
1788
1762
  }[];
1789
1763
  eventId: string;
1790
1764
  hostId: string;
1791
1765
  }>, {
1792
- description: string;
1793
1766
  media: {
1794
1767
  coverImage: {
1795
1768
  alt: string;
@@ -1802,6 +1775,7 @@ export declare const approvedEventEditSchema: z.ZodEffects<z.ZodObject<{
1802
1775
  url: string;
1803
1776
  }[] | undefined;
1804
1777
  };
1778
+ description: string;
1805
1779
  tickets: {
1806
1780
  name: string;
1807
1781
  price: {
@@ -1810,27 +1784,25 @@ export declare const approvedEventEditSchema: z.ZodEffects<z.ZodObject<{
1810
1784
  };
1811
1785
  quantity: number;
1812
1786
  tier: string;
1813
- status?: "active" | "inactive" | undefined;
1814
1787
  _id?: string | undefined;
1815
- description?: string | undefined;
1816
- salesWindow?: {
1817
- startDate?: string | undefined;
1818
- endDate?: string | undefined;
1819
- } | undefined;
1820
1788
  limits?: {
1821
1789
  minPerOrder: number;
1822
1790
  maxPerOrder: number;
1823
1791
  } | undefined;
1824
- remaining?: number | undefined;
1825
1792
  sold?: number | undefined;
1826
1793
  reserved?: number | undefined;
1827
- visibility?: "public" | "hidden" | "invite_only" | undefined;
1794
+ wristbandColor?: string | undefined;
1795
+ isVisible?: boolean | undefined;
1796
+ isActive?: boolean | undefined;
1828
1797
  benefits?: string[] | undefined;
1798
+ salesWindow?: {
1799
+ startDate?: string | undefined;
1800
+ endDate?: string | undefined;
1801
+ } | undefined;
1829
1802
  }[];
1830
1803
  eventId: string;
1831
1804
  hostId: string;
1832
1805
  }, {
1833
- description: string;
1834
1806
  media: {
1835
1807
  coverImage: {
1836
1808
  alt: string;
@@ -1843,6 +1815,7 @@ export declare const approvedEventEditSchema: z.ZodEffects<z.ZodObject<{
1843
1815
  url: string;
1844
1816
  }[] | undefined;
1845
1817
  };
1818
+ description: string;
1846
1819
  tickets: {
1847
1820
  name: string;
1848
1821
  price: {
@@ -1850,23 +1823,22 @@ export declare const approvedEventEditSchema: z.ZodEffects<z.ZodObject<{
1850
1823
  currency?: string | undefined;
1851
1824
  };
1852
1825
  quantity: number;
1853
- status?: "active" | "inactive" | undefined;
1854
1826
  _id?: string | undefined;
1855
- description?: string | undefined;
1856
- salesWindow?: {
1857
- startDate?: string | undefined;
1858
- endDate?: string | undefined;
1859
- } | undefined;
1860
1827
  limits?: {
1861
1828
  minPerOrder?: number | undefined;
1862
1829
  maxPerOrder?: number | undefined;
1863
1830
  } | undefined;
1864
- remaining?: number | undefined;
1865
1831
  sold?: number | undefined;
1866
1832
  reserved?: number | undefined;
1867
- visibility?: "public" | "hidden" | "invite_only" | undefined;
1833
+ wristbandColor?: string | undefined;
1834
+ isVisible?: boolean | undefined;
1835
+ isActive?: boolean | undefined;
1868
1836
  benefits?: string[] | undefined;
1869
1837
  tier?: string | undefined;
1838
+ salesWindow?: {
1839
+ startDate?: string | undefined;
1840
+ endDate?: string | undefined;
1841
+ } | undefined;
1870
1842
  }[];
1871
1843
  eventId: string;
1872
1844
  hostId: string;
@@ -2087,7 +2059,6 @@ export declare const submitEventSchema: z.ZodObject<{
2087
2059
  tickets: z.ZodArray<z.ZodObject<{
2088
2060
  _id: z.ZodOptional<z.ZodString>;
2089
2061
  name: z.ZodString;
2090
- description: z.ZodOptional<z.ZodString>;
2091
2062
  price: z.ZodObject<{
2092
2063
  amount: z.ZodNumber;
2093
2064
  currency: z.ZodDefault<z.ZodString>;
@@ -2099,16 +2070,6 @@ export declare const submitEventSchema: z.ZodObject<{
2099
2070
  currency?: string | undefined;
2100
2071
  }>;
2101
2072
  quantity: z.ZodNumber;
2102
- salesWindow: z.ZodOptional<z.ZodObject<{
2103
- startDate: z.ZodOptional<z.ZodString>;
2104
- endDate: z.ZodOptional<z.ZodString>;
2105
- }, "strip", z.ZodTypeAny, {
2106
- startDate?: string | undefined;
2107
- endDate?: string | undefined;
2108
- }, {
2109
- startDate?: string | undefined;
2110
- endDate?: string | undefined;
2111
- }>>;
2112
2073
  limits: z.ZodOptional<z.ZodObject<{
2113
2074
  minPerOrder: z.ZodDefault<z.ZodNumber>;
2114
2075
  maxPerOrder: z.ZodDefault<z.ZodNumber>;
@@ -2119,13 +2080,23 @@ export declare const submitEventSchema: z.ZodObject<{
2119
2080
  minPerOrder?: number | undefined;
2120
2081
  maxPerOrder?: number | undefined;
2121
2082
  }>>;
2122
- remaining: z.ZodOptional<z.ZodNumber>;
2123
- sold: z.ZodOptional<z.ZodNumber>;
2124
- reserved: z.ZodOptional<z.ZodNumber>;
2125
- visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
2126
- status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
2083
+ sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
2084
+ reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
2085
+ wristbandColor: z.ZodOptional<z.ZodString>;
2086
+ isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2087
+ isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2127
2088
  benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2128
2089
  tier: z.ZodDefault<z.ZodString>;
2090
+ salesWindow: z.ZodOptional<z.ZodObject<{
2091
+ startDate: z.ZodOptional<z.ZodString>;
2092
+ endDate: z.ZodOptional<z.ZodString>;
2093
+ }, "strip", z.ZodTypeAny, {
2094
+ startDate?: string | undefined;
2095
+ endDate?: string | undefined;
2096
+ }, {
2097
+ startDate?: string | undefined;
2098
+ endDate?: string | undefined;
2099
+ }>>;
2129
2100
  }, "strip", z.ZodTypeAny, {
2130
2101
  name: string;
2131
2102
  price: {
@@ -2134,22 +2105,21 @@ export declare const submitEventSchema: z.ZodObject<{
2134
2105
  };
2135
2106
  quantity: number;
2136
2107
  tier: string;
2137
- status?: "active" | "inactive" | undefined;
2138
2108
  _id?: string | undefined;
2139
- description?: string | undefined;
2140
- salesWindow?: {
2141
- startDate?: string | undefined;
2142
- endDate?: string | undefined;
2143
- } | undefined;
2144
2109
  limits?: {
2145
2110
  minPerOrder: number;
2146
2111
  maxPerOrder: number;
2147
2112
  } | undefined;
2148
- remaining?: number | undefined;
2149
2113
  sold?: number | undefined;
2150
2114
  reserved?: number | undefined;
2151
- visibility?: "public" | "hidden" | "invite_only" | undefined;
2115
+ wristbandColor?: string | undefined;
2116
+ isVisible?: boolean | undefined;
2117
+ isActive?: boolean | undefined;
2152
2118
  benefits?: string[] | undefined;
2119
+ salesWindow?: {
2120
+ startDate?: string | undefined;
2121
+ endDate?: string | undefined;
2122
+ } | undefined;
2153
2123
  }, {
2154
2124
  name: string;
2155
2125
  price: {
@@ -2157,23 +2127,22 @@ export declare const submitEventSchema: z.ZodObject<{
2157
2127
  currency?: string | undefined;
2158
2128
  };
2159
2129
  quantity: number;
2160
- status?: "active" | "inactive" | undefined;
2161
2130
  _id?: string | undefined;
2162
- description?: string | undefined;
2163
- salesWindow?: {
2164
- startDate?: string | undefined;
2165
- endDate?: string | undefined;
2166
- } | undefined;
2167
2131
  limits?: {
2168
2132
  minPerOrder?: number | undefined;
2169
2133
  maxPerOrder?: number | undefined;
2170
2134
  } | undefined;
2171
- remaining?: number | undefined;
2172
2135
  sold?: number | undefined;
2173
2136
  reserved?: number | undefined;
2174
- visibility?: "public" | "hidden" | "invite_only" | undefined;
2137
+ wristbandColor?: string | undefined;
2138
+ isVisible?: boolean | undefined;
2139
+ isActive?: boolean | undefined;
2175
2140
  benefits?: string[] | undefined;
2176
2141
  tier?: string | undefined;
2142
+ salesWindow?: {
2143
+ startDate?: string | undefined;
2144
+ endDate?: string | undefined;
2145
+ } | undefined;
2177
2146
  }>, "many">;
2178
2147
  } & {
2179
2148
  termsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
@@ -2398,7 +2367,6 @@ export declare const submitEventSchema: z.ZodObject<{
2398
2367
  tickets: z.ZodArray<z.ZodObject<{
2399
2368
  _id: z.ZodOptional<z.ZodString>;
2400
2369
  name: z.ZodString;
2401
- description: z.ZodOptional<z.ZodString>;
2402
2370
  price: z.ZodObject<{
2403
2371
  amount: z.ZodNumber;
2404
2372
  currency: z.ZodDefault<z.ZodString>;
@@ -2410,16 +2378,6 @@ export declare const submitEventSchema: z.ZodObject<{
2410
2378
  currency?: string | undefined;
2411
2379
  }>;
2412
2380
  quantity: z.ZodNumber;
2413
- salesWindow: z.ZodOptional<z.ZodObject<{
2414
- startDate: z.ZodOptional<z.ZodString>;
2415
- endDate: z.ZodOptional<z.ZodString>;
2416
- }, "strip", z.ZodTypeAny, {
2417
- startDate?: string | undefined;
2418
- endDate?: string | undefined;
2419
- }, {
2420
- startDate?: string | undefined;
2421
- endDate?: string | undefined;
2422
- }>>;
2423
2381
  limits: z.ZodOptional<z.ZodObject<{
2424
2382
  minPerOrder: z.ZodDefault<z.ZodNumber>;
2425
2383
  maxPerOrder: z.ZodDefault<z.ZodNumber>;
@@ -2430,13 +2388,23 @@ export declare const submitEventSchema: z.ZodObject<{
2430
2388
  minPerOrder?: number | undefined;
2431
2389
  maxPerOrder?: number | undefined;
2432
2390
  }>>;
2433
- remaining: z.ZodOptional<z.ZodNumber>;
2434
- sold: z.ZodOptional<z.ZodNumber>;
2435
- reserved: z.ZodOptional<z.ZodNumber>;
2436
- visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
2437
- status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
2391
+ sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
2392
+ reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
2393
+ wristbandColor: z.ZodOptional<z.ZodString>;
2394
+ isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2395
+ isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2438
2396
  benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2439
2397
  tier: z.ZodDefault<z.ZodString>;
2398
+ salesWindow: z.ZodOptional<z.ZodObject<{
2399
+ startDate: z.ZodOptional<z.ZodString>;
2400
+ endDate: z.ZodOptional<z.ZodString>;
2401
+ }, "strip", z.ZodTypeAny, {
2402
+ startDate?: string | undefined;
2403
+ endDate?: string | undefined;
2404
+ }, {
2405
+ startDate?: string | undefined;
2406
+ endDate?: string | undefined;
2407
+ }>>;
2440
2408
  }, "strip", z.ZodTypeAny, {
2441
2409
  name: string;
2442
2410
  price: {
@@ -2445,22 +2413,21 @@ export declare const submitEventSchema: z.ZodObject<{
2445
2413
  };
2446
2414
  quantity: number;
2447
2415
  tier: string;
2448
- status?: "active" | "inactive" | undefined;
2449
2416
  _id?: string | undefined;
2450
- description?: string | undefined;
2451
- salesWindow?: {
2452
- startDate?: string | undefined;
2453
- endDate?: string | undefined;
2454
- } | undefined;
2455
2417
  limits?: {
2456
2418
  minPerOrder: number;
2457
2419
  maxPerOrder: number;
2458
2420
  } | undefined;
2459
- remaining?: number | undefined;
2460
2421
  sold?: number | undefined;
2461
2422
  reserved?: number | undefined;
2462
- visibility?: "public" | "hidden" | "invite_only" | undefined;
2423
+ wristbandColor?: string | undefined;
2424
+ isVisible?: boolean | undefined;
2425
+ isActive?: boolean | undefined;
2463
2426
  benefits?: string[] | undefined;
2427
+ salesWindow?: {
2428
+ startDate?: string | undefined;
2429
+ endDate?: string | undefined;
2430
+ } | undefined;
2464
2431
  }, {
2465
2432
  name: string;
2466
2433
  price: {
@@ -2468,23 +2435,22 @@ export declare const submitEventSchema: z.ZodObject<{
2468
2435
  currency?: string | undefined;
2469
2436
  };
2470
2437
  quantity: number;
2471
- status?: "active" | "inactive" | undefined;
2472
2438
  _id?: string | undefined;
2473
- description?: string | undefined;
2474
- salesWindow?: {
2475
- startDate?: string | undefined;
2476
- endDate?: string | undefined;
2477
- } | undefined;
2478
2439
  limits?: {
2479
2440
  minPerOrder?: number | undefined;
2480
2441
  maxPerOrder?: number | undefined;
2481
2442
  } | undefined;
2482
- remaining?: number | undefined;
2483
2443
  sold?: number | undefined;
2484
2444
  reserved?: number | undefined;
2485
- visibility?: "public" | "hidden" | "invite_only" | undefined;
2445
+ wristbandColor?: string | undefined;
2446
+ isVisible?: boolean | undefined;
2447
+ isActive?: boolean | undefined;
2486
2448
  benefits?: string[] | undefined;
2487
2449
  tier?: string | undefined;
2450
+ salesWindow?: {
2451
+ startDate?: string | undefined;
2452
+ endDate?: string | undefined;
2453
+ } | undefined;
2488
2454
  }>, "many">;
2489
2455
  } & {
2490
2456
  termsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
@@ -2709,7 +2675,6 @@ export declare const submitEventSchema: z.ZodObject<{
2709
2675
  tickets: z.ZodArray<z.ZodObject<{
2710
2676
  _id: z.ZodOptional<z.ZodString>;
2711
2677
  name: z.ZodString;
2712
- description: z.ZodOptional<z.ZodString>;
2713
2678
  price: z.ZodObject<{
2714
2679
  amount: z.ZodNumber;
2715
2680
  currency: z.ZodDefault<z.ZodString>;
@@ -2721,16 +2686,6 @@ export declare const submitEventSchema: z.ZodObject<{
2721
2686
  currency?: string | undefined;
2722
2687
  }>;
2723
2688
  quantity: z.ZodNumber;
2724
- salesWindow: z.ZodOptional<z.ZodObject<{
2725
- startDate: z.ZodOptional<z.ZodString>;
2726
- endDate: z.ZodOptional<z.ZodString>;
2727
- }, "strip", z.ZodTypeAny, {
2728
- startDate?: string | undefined;
2729
- endDate?: string | undefined;
2730
- }, {
2731
- startDate?: string | undefined;
2732
- endDate?: string | undefined;
2733
- }>>;
2734
2689
  limits: z.ZodOptional<z.ZodObject<{
2735
2690
  minPerOrder: z.ZodDefault<z.ZodNumber>;
2736
2691
  maxPerOrder: z.ZodDefault<z.ZodNumber>;
@@ -2741,13 +2696,23 @@ export declare const submitEventSchema: z.ZodObject<{
2741
2696
  minPerOrder?: number | undefined;
2742
2697
  maxPerOrder?: number | undefined;
2743
2698
  }>>;
2744
- remaining: z.ZodOptional<z.ZodNumber>;
2745
- sold: z.ZodOptional<z.ZodNumber>;
2746
- reserved: z.ZodOptional<z.ZodNumber>;
2747
- visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
2748
- status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
2699
+ sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
2700
+ reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
2701
+ wristbandColor: z.ZodOptional<z.ZodString>;
2702
+ isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2703
+ isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2749
2704
  benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2750
2705
  tier: z.ZodDefault<z.ZodString>;
2706
+ salesWindow: z.ZodOptional<z.ZodObject<{
2707
+ startDate: z.ZodOptional<z.ZodString>;
2708
+ endDate: z.ZodOptional<z.ZodString>;
2709
+ }, "strip", z.ZodTypeAny, {
2710
+ startDate?: string | undefined;
2711
+ endDate?: string | undefined;
2712
+ }, {
2713
+ startDate?: string | undefined;
2714
+ endDate?: string | undefined;
2715
+ }>>;
2751
2716
  }, "strip", z.ZodTypeAny, {
2752
2717
  name: string;
2753
2718
  price: {
@@ -2756,22 +2721,21 @@ export declare const submitEventSchema: z.ZodObject<{
2756
2721
  };
2757
2722
  quantity: number;
2758
2723
  tier: string;
2759
- status?: "active" | "inactive" | undefined;
2760
2724
  _id?: string | undefined;
2761
- description?: string | undefined;
2762
- salesWindow?: {
2763
- startDate?: string | undefined;
2764
- endDate?: string | undefined;
2765
- } | undefined;
2766
2725
  limits?: {
2767
2726
  minPerOrder: number;
2768
2727
  maxPerOrder: number;
2769
2728
  } | undefined;
2770
- remaining?: number | undefined;
2771
2729
  sold?: number | undefined;
2772
2730
  reserved?: number | undefined;
2773
- visibility?: "public" | "hidden" | "invite_only" | undefined;
2731
+ wristbandColor?: string | undefined;
2732
+ isVisible?: boolean | undefined;
2733
+ isActive?: boolean | undefined;
2774
2734
  benefits?: string[] | undefined;
2735
+ salesWindow?: {
2736
+ startDate?: string | undefined;
2737
+ endDate?: string | undefined;
2738
+ } | undefined;
2775
2739
  }, {
2776
2740
  name: string;
2777
2741
  price: {
@@ -2779,23 +2743,22 @@ export declare const submitEventSchema: z.ZodObject<{
2779
2743
  currency?: string | undefined;
2780
2744
  };
2781
2745
  quantity: number;
2782
- status?: "active" | "inactive" | undefined;
2783
2746
  _id?: string | undefined;
2784
- description?: string | undefined;
2785
- salesWindow?: {
2786
- startDate?: string | undefined;
2787
- endDate?: string | undefined;
2788
- } | undefined;
2789
2747
  limits?: {
2790
2748
  minPerOrder?: number | undefined;
2791
2749
  maxPerOrder?: number | undefined;
2792
2750
  } | undefined;
2793
- remaining?: number | undefined;
2794
2751
  sold?: number | undefined;
2795
2752
  reserved?: number | undefined;
2796
- visibility?: "public" | "hidden" | "invite_only" | undefined;
2753
+ wristbandColor?: string | undefined;
2754
+ isVisible?: boolean | undefined;
2755
+ isActive?: boolean | undefined;
2797
2756
  benefits?: string[] | undefined;
2798
2757
  tier?: string | undefined;
2758
+ salesWindow?: {
2759
+ startDate?: string | undefined;
2760
+ endDate?: string | undefined;
2761
+ } | undefined;
2799
2762
  }>, "many">;
2800
2763
  } & {
2801
2764
  termsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
@@ -3021,7 +2984,6 @@ export declare const clientGetEventSchema: z.ZodObject<{
3021
2984
  tickets: z.ZodArray<z.ZodObject<{
3022
2985
  _id: z.ZodOptional<z.ZodString>;
3023
2986
  name: z.ZodString;
3024
- description: z.ZodOptional<z.ZodString>;
3025
2987
  price: z.ZodObject<{
3026
2988
  amount: z.ZodNumber;
3027
2989
  currency: z.ZodDefault<z.ZodString>;
@@ -3033,16 +2995,6 @@ export declare const clientGetEventSchema: z.ZodObject<{
3033
2995
  currency?: string | undefined;
3034
2996
  }>;
3035
2997
  quantity: z.ZodNumber;
3036
- salesWindow: z.ZodOptional<z.ZodObject<{
3037
- startDate: z.ZodOptional<z.ZodString>;
3038
- endDate: z.ZodOptional<z.ZodString>;
3039
- }, "strip", z.ZodTypeAny, {
3040
- startDate?: string | undefined;
3041
- endDate?: string | undefined;
3042
- }, {
3043
- startDate?: string | undefined;
3044
- endDate?: string | undefined;
3045
- }>>;
3046
2998
  limits: z.ZodOptional<z.ZodObject<{
3047
2999
  minPerOrder: z.ZodDefault<z.ZodNumber>;
3048
3000
  maxPerOrder: z.ZodDefault<z.ZodNumber>;
@@ -3053,13 +3005,23 @@ export declare const clientGetEventSchema: z.ZodObject<{
3053
3005
  minPerOrder?: number | undefined;
3054
3006
  maxPerOrder?: number | undefined;
3055
3007
  }>>;
3056
- remaining: z.ZodOptional<z.ZodNumber>;
3057
- sold: z.ZodOptional<z.ZodNumber>;
3058
- reserved: z.ZodOptional<z.ZodNumber>;
3059
- visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
3060
- status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
3008
+ sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
3009
+ reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
3010
+ wristbandColor: z.ZodOptional<z.ZodString>;
3011
+ isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3012
+ isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3061
3013
  benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3062
3014
  tier: z.ZodDefault<z.ZodString>;
3015
+ salesWindow: z.ZodOptional<z.ZodObject<{
3016
+ startDate: z.ZodOptional<z.ZodString>;
3017
+ endDate: z.ZodOptional<z.ZodString>;
3018
+ }, "strip", z.ZodTypeAny, {
3019
+ startDate?: string | undefined;
3020
+ endDate?: string | undefined;
3021
+ }, {
3022
+ startDate?: string | undefined;
3023
+ endDate?: string | undefined;
3024
+ }>>;
3063
3025
  }, "strip", z.ZodTypeAny, {
3064
3026
  name: string;
3065
3027
  price: {
@@ -3068,22 +3030,21 @@ export declare const clientGetEventSchema: z.ZodObject<{
3068
3030
  };
3069
3031
  quantity: number;
3070
3032
  tier: string;
3071
- status?: "active" | "inactive" | undefined;
3072
3033
  _id?: string | undefined;
3073
- description?: string | undefined;
3074
- salesWindow?: {
3075
- startDate?: string | undefined;
3076
- endDate?: string | undefined;
3077
- } | undefined;
3078
3034
  limits?: {
3079
3035
  minPerOrder: number;
3080
3036
  maxPerOrder: number;
3081
3037
  } | undefined;
3082
- remaining?: number | undefined;
3083
3038
  sold?: number | undefined;
3084
3039
  reserved?: number | undefined;
3085
- visibility?: "public" | "hidden" | "invite_only" | undefined;
3040
+ wristbandColor?: string | undefined;
3041
+ isVisible?: boolean | undefined;
3042
+ isActive?: boolean | undefined;
3086
3043
  benefits?: string[] | undefined;
3044
+ salesWindow?: {
3045
+ startDate?: string | undefined;
3046
+ endDate?: string | undefined;
3047
+ } | undefined;
3087
3048
  }, {
3088
3049
  name: string;
3089
3050
  price: {
@@ -3091,23 +3052,22 @@ export declare const clientGetEventSchema: z.ZodObject<{
3091
3052
  currency?: string | undefined;
3092
3053
  };
3093
3054
  quantity: number;
3094
- status?: "active" | "inactive" | undefined;
3095
3055
  _id?: string | undefined;
3096
- description?: string | undefined;
3097
- salesWindow?: {
3098
- startDate?: string | undefined;
3099
- endDate?: string | undefined;
3100
- } | undefined;
3101
3056
  limits?: {
3102
3057
  minPerOrder?: number | undefined;
3103
3058
  maxPerOrder?: number | undefined;
3104
3059
  } | undefined;
3105
- remaining?: number | undefined;
3106
3060
  sold?: number | undefined;
3107
3061
  reserved?: number | undefined;
3108
- visibility?: "public" | "hidden" | "invite_only" | undefined;
3062
+ wristbandColor?: string | undefined;
3063
+ isVisible?: boolean | undefined;
3064
+ isActive?: boolean | undefined;
3109
3065
  benefits?: string[] | undefined;
3110
3066
  tier?: string | undefined;
3067
+ salesWindow?: {
3068
+ startDate?: string | undefined;
3069
+ endDate?: string | undefined;
3070
+ } | undefined;
3111
3071
  }>, "many">;
3112
3072
  } & {
3113
3073
  termsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
@@ -3332,7 +3292,6 @@ export declare const clientGetEventSchema: z.ZodObject<{
3332
3292
  tickets: z.ZodArray<z.ZodObject<{
3333
3293
  _id: z.ZodOptional<z.ZodString>;
3334
3294
  name: z.ZodString;
3335
- description: z.ZodOptional<z.ZodString>;
3336
3295
  price: z.ZodObject<{
3337
3296
  amount: z.ZodNumber;
3338
3297
  currency: z.ZodDefault<z.ZodString>;
@@ -3344,16 +3303,6 @@ export declare const clientGetEventSchema: z.ZodObject<{
3344
3303
  currency?: string | undefined;
3345
3304
  }>;
3346
3305
  quantity: z.ZodNumber;
3347
- salesWindow: z.ZodOptional<z.ZodObject<{
3348
- startDate: z.ZodOptional<z.ZodString>;
3349
- endDate: z.ZodOptional<z.ZodString>;
3350
- }, "strip", z.ZodTypeAny, {
3351
- startDate?: string | undefined;
3352
- endDate?: string | undefined;
3353
- }, {
3354
- startDate?: string | undefined;
3355
- endDate?: string | undefined;
3356
- }>>;
3357
3306
  limits: z.ZodOptional<z.ZodObject<{
3358
3307
  minPerOrder: z.ZodDefault<z.ZodNumber>;
3359
3308
  maxPerOrder: z.ZodDefault<z.ZodNumber>;
@@ -3364,13 +3313,23 @@ export declare const clientGetEventSchema: z.ZodObject<{
3364
3313
  minPerOrder?: number | undefined;
3365
3314
  maxPerOrder?: number | undefined;
3366
3315
  }>>;
3367
- remaining: z.ZodOptional<z.ZodNumber>;
3368
- sold: z.ZodOptional<z.ZodNumber>;
3369
- reserved: z.ZodOptional<z.ZodNumber>;
3370
- visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
3371
- status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
3316
+ sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
3317
+ reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
3318
+ wristbandColor: z.ZodOptional<z.ZodString>;
3319
+ isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3320
+ isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3372
3321
  benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3373
3322
  tier: z.ZodDefault<z.ZodString>;
3323
+ salesWindow: z.ZodOptional<z.ZodObject<{
3324
+ startDate: z.ZodOptional<z.ZodString>;
3325
+ endDate: z.ZodOptional<z.ZodString>;
3326
+ }, "strip", z.ZodTypeAny, {
3327
+ startDate?: string | undefined;
3328
+ endDate?: string | undefined;
3329
+ }, {
3330
+ startDate?: string | undefined;
3331
+ endDate?: string | undefined;
3332
+ }>>;
3374
3333
  }, "strip", z.ZodTypeAny, {
3375
3334
  name: string;
3376
3335
  price: {
@@ -3379,22 +3338,21 @@ export declare const clientGetEventSchema: z.ZodObject<{
3379
3338
  };
3380
3339
  quantity: number;
3381
3340
  tier: string;
3382
- status?: "active" | "inactive" | undefined;
3383
3341
  _id?: string | undefined;
3384
- description?: string | undefined;
3385
- salesWindow?: {
3386
- startDate?: string | undefined;
3387
- endDate?: string | undefined;
3388
- } | undefined;
3389
3342
  limits?: {
3390
3343
  minPerOrder: number;
3391
3344
  maxPerOrder: number;
3392
3345
  } | undefined;
3393
- remaining?: number | undefined;
3394
3346
  sold?: number | undefined;
3395
3347
  reserved?: number | undefined;
3396
- visibility?: "public" | "hidden" | "invite_only" | undefined;
3348
+ wristbandColor?: string | undefined;
3349
+ isVisible?: boolean | undefined;
3350
+ isActive?: boolean | undefined;
3397
3351
  benefits?: string[] | undefined;
3352
+ salesWindow?: {
3353
+ startDate?: string | undefined;
3354
+ endDate?: string | undefined;
3355
+ } | undefined;
3398
3356
  }, {
3399
3357
  name: string;
3400
3358
  price: {
@@ -3402,23 +3360,22 @@ export declare const clientGetEventSchema: z.ZodObject<{
3402
3360
  currency?: string | undefined;
3403
3361
  };
3404
3362
  quantity: number;
3405
- status?: "active" | "inactive" | undefined;
3406
3363
  _id?: string | undefined;
3407
- description?: string | undefined;
3408
- salesWindow?: {
3409
- startDate?: string | undefined;
3410
- endDate?: string | undefined;
3411
- } | undefined;
3412
3364
  limits?: {
3413
3365
  minPerOrder?: number | undefined;
3414
3366
  maxPerOrder?: number | undefined;
3415
3367
  } | undefined;
3416
- remaining?: number | undefined;
3417
3368
  sold?: number | undefined;
3418
3369
  reserved?: number | undefined;
3419
- visibility?: "public" | "hidden" | "invite_only" | undefined;
3370
+ wristbandColor?: string | undefined;
3371
+ isVisible?: boolean | undefined;
3372
+ isActive?: boolean | undefined;
3420
3373
  benefits?: string[] | undefined;
3421
3374
  tier?: string | undefined;
3375
+ salesWindow?: {
3376
+ startDate?: string | undefined;
3377
+ endDate?: string | undefined;
3378
+ } | undefined;
3422
3379
  }>, "many">;
3423
3380
  } & {
3424
3381
  termsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
@@ -3643,7 +3600,6 @@ export declare const clientGetEventSchema: z.ZodObject<{
3643
3600
  tickets: z.ZodArray<z.ZodObject<{
3644
3601
  _id: z.ZodOptional<z.ZodString>;
3645
3602
  name: z.ZodString;
3646
- description: z.ZodOptional<z.ZodString>;
3647
3603
  price: z.ZodObject<{
3648
3604
  amount: z.ZodNumber;
3649
3605
  currency: z.ZodDefault<z.ZodString>;
@@ -3655,16 +3611,6 @@ export declare const clientGetEventSchema: z.ZodObject<{
3655
3611
  currency?: string | undefined;
3656
3612
  }>;
3657
3613
  quantity: z.ZodNumber;
3658
- salesWindow: z.ZodOptional<z.ZodObject<{
3659
- startDate: z.ZodOptional<z.ZodString>;
3660
- endDate: z.ZodOptional<z.ZodString>;
3661
- }, "strip", z.ZodTypeAny, {
3662
- startDate?: string | undefined;
3663
- endDate?: string | undefined;
3664
- }, {
3665
- startDate?: string | undefined;
3666
- endDate?: string | undefined;
3667
- }>>;
3668
3614
  limits: z.ZodOptional<z.ZodObject<{
3669
3615
  minPerOrder: z.ZodDefault<z.ZodNumber>;
3670
3616
  maxPerOrder: z.ZodDefault<z.ZodNumber>;
@@ -3675,13 +3621,23 @@ export declare const clientGetEventSchema: z.ZodObject<{
3675
3621
  minPerOrder?: number | undefined;
3676
3622
  maxPerOrder?: number | undefined;
3677
3623
  }>>;
3678
- remaining: z.ZodOptional<z.ZodNumber>;
3679
- sold: z.ZodOptional<z.ZodNumber>;
3680
- reserved: z.ZodOptional<z.ZodNumber>;
3681
- visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
3682
- status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
3624
+ sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
3625
+ reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
3626
+ wristbandColor: z.ZodOptional<z.ZodString>;
3627
+ isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3628
+ isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3683
3629
  benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3684
3630
  tier: z.ZodDefault<z.ZodString>;
3631
+ salesWindow: z.ZodOptional<z.ZodObject<{
3632
+ startDate: z.ZodOptional<z.ZodString>;
3633
+ endDate: z.ZodOptional<z.ZodString>;
3634
+ }, "strip", z.ZodTypeAny, {
3635
+ startDate?: string | undefined;
3636
+ endDate?: string | undefined;
3637
+ }, {
3638
+ startDate?: string | undefined;
3639
+ endDate?: string | undefined;
3640
+ }>>;
3685
3641
  }, "strip", z.ZodTypeAny, {
3686
3642
  name: string;
3687
3643
  price: {
@@ -3690,22 +3646,21 @@ export declare const clientGetEventSchema: z.ZodObject<{
3690
3646
  };
3691
3647
  quantity: number;
3692
3648
  tier: string;
3693
- status?: "active" | "inactive" | undefined;
3694
3649
  _id?: string | undefined;
3695
- description?: string | undefined;
3696
- salesWindow?: {
3697
- startDate?: string | undefined;
3698
- endDate?: string | undefined;
3699
- } | undefined;
3700
3650
  limits?: {
3701
3651
  minPerOrder: number;
3702
3652
  maxPerOrder: number;
3703
3653
  } | undefined;
3704
- remaining?: number | undefined;
3705
3654
  sold?: number | undefined;
3706
3655
  reserved?: number | undefined;
3707
- visibility?: "public" | "hidden" | "invite_only" | undefined;
3656
+ wristbandColor?: string | undefined;
3657
+ isVisible?: boolean | undefined;
3658
+ isActive?: boolean | undefined;
3708
3659
  benefits?: string[] | undefined;
3660
+ salesWindow?: {
3661
+ startDate?: string | undefined;
3662
+ endDate?: string | undefined;
3663
+ } | undefined;
3709
3664
  }, {
3710
3665
  name: string;
3711
3666
  price: {
@@ -3713,23 +3668,22 @@ export declare const clientGetEventSchema: z.ZodObject<{
3713
3668
  currency?: string | undefined;
3714
3669
  };
3715
3670
  quantity: number;
3716
- status?: "active" | "inactive" | undefined;
3717
3671
  _id?: string | undefined;
3718
- description?: string | undefined;
3719
- salesWindow?: {
3720
- startDate?: string | undefined;
3721
- endDate?: string | undefined;
3722
- } | undefined;
3723
3672
  limits?: {
3724
3673
  minPerOrder?: number | undefined;
3725
3674
  maxPerOrder?: number | undefined;
3726
3675
  } | undefined;
3727
- remaining?: number | undefined;
3728
3676
  sold?: number | undefined;
3729
3677
  reserved?: number | undefined;
3730
- visibility?: "public" | "hidden" | "invite_only" | undefined;
3678
+ wristbandColor?: string | undefined;
3679
+ isVisible?: boolean | undefined;
3680
+ isActive?: boolean | undefined;
3731
3681
  benefits?: string[] | undefined;
3732
3682
  tier?: string | undefined;
3683
+ salesWindow?: {
3684
+ startDate?: string | undefined;
3685
+ endDate?: string | undefined;
3686
+ } | undefined;
3733
3687
  }>, "many">;
3734
3688
  } & {
3735
3689
  termsAccepted: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
@@ -3950,7 +3904,6 @@ export declare const draftEventSchema: z.ZodObject<{
3950
3904
  tickets: z.ZodOptional<z.ZodArray<z.ZodObject<{
3951
3905
  _id: z.ZodOptional<z.ZodString>;
3952
3906
  name: z.ZodString;
3953
- description: z.ZodOptional<z.ZodString>;
3954
3907
  price: z.ZodObject<{
3955
3908
  amount: z.ZodNumber;
3956
3909
  currency: z.ZodDefault<z.ZodString>;
@@ -3962,16 +3915,6 @@ export declare const draftEventSchema: z.ZodObject<{
3962
3915
  currency?: string | undefined;
3963
3916
  }>;
3964
3917
  quantity: z.ZodNumber;
3965
- salesWindow: z.ZodOptional<z.ZodObject<{
3966
- startDate: z.ZodOptional<z.ZodString>;
3967
- endDate: z.ZodOptional<z.ZodString>;
3968
- }, "strip", z.ZodTypeAny, {
3969
- startDate?: string | undefined;
3970
- endDate?: string | undefined;
3971
- }, {
3972
- startDate?: string | undefined;
3973
- endDate?: string | undefined;
3974
- }>>;
3975
3918
  limits: z.ZodOptional<z.ZodObject<{
3976
3919
  minPerOrder: z.ZodDefault<z.ZodNumber>;
3977
3920
  maxPerOrder: z.ZodDefault<z.ZodNumber>;
@@ -3982,13 +3925,23 @@ export declare const draftEventSchema: z.ZodObject<{
3982
3925
  minPerOrder?: number | undefined;
3983
3926
  maxPerOrder?: number | undefined;
3984
3927
  }>>;
3985
- remaining: z.ZodOptional<z.ZodNumber>;
3986
- sold: z.ZodOptional<z.ZodNumber>;
3987
- reserved: z.ZodOptional<z.ZodNumber>;
3988
- visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
3989
- status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
3928
+ sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
3929
+ reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
3930
+ wristbandColor: z.ZodOptional<z.ZodString>;
3931
+ isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3932
+ isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3990
3933
  benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3991
3934
  tier: z.ZodDefault<z.ZodString>;
3935
+ salesWindow: z.ZodOptional<z.ZodObject<{
3936
+ startDate: z.ZodOptional<z.ZodString>;
3937
+ endDate: z.ZodOptional<z.ZodString>;
3938
+ }, "strip", z.ZodTypeAny, {
3939
+ startDate?: string | undefined;
3940
+ endDate?: string | undefined;
3941
+ }, {
3942
+ startDate?: string | undefined;
3943
+ endDate?: string | undefined;
3944
+ }>>;
3992
3945
  }, "strip", z.ZodTypeAny, {
3993
3946
  name: string;
3994
3947
  price: {
@@ -3997,22 +3950,21 @@ export declare const draftEventSchema: z.ZodObject<{
3997
3950
  };
3998
3951
  quantity: number;
3999
3952
  tier: string;
4000
- status?: "active" | "inactive" | undefined;
4001
3953
  _id?: string | undefined;
4002
- description?: string | undefined;
4003
- salesWindow?: {
4004
- startDate?: string | undefined;
4005
- endDate?: string | undefined;
4006
- } | undefined;
4007
3954
  limits?: {
4008
3955
  minPerOrder: number;
4009
3956
  maxPerOrder: number;
4010
3957
  } | undefined;
4011
- remaining?: number | undefined;
4012
3958
  sold?: number | undefined;
4013
3959
  reserved?: number | undefined;
4014
- visibility?: "public" | "hidden" | "invite_only" | undefined;
3960
+ wristbandColor?: string | undefined;
3961
+ isVisible?: boolean | undefined;
3962
+ isActive?: boolean | undefined;
4015
3963
  benefits?: string[] | undefined;
3964
+ salesWindow?: {
3965
+ startDate?: string | undefined;
3966
+ endDate?: string | undefined;
3967
+ } | undefined;
4016
3968
  }, {
4017
3969
  name: string;
4018
3970
  price: {
@@ -4020,23 +3972,22 @@ export declare const draftEventSchema: z.ZodObject<{
4020
3972
  currency?: string | undefined;
4021
3973
  };
4022
3974
  quantity: number;
4023
- status?: "active" | "inactive" | undefined;
4024
3975
  _id?: string | undefined;
4025
- description?: string | undefined;
4026
- salesWindow?: {
4027
- startDate?: string | undefined;
4028
- endDate?: string | undefined;
4029
- } | undefined;
4030
3976
  limits?: {
4031
3977
  minPerOrder?: number | undefined;
4032
3978
  maxPerOrder?: number | undefined;
4033
3979
  } | undefined;
4034
- remaining?: number | undefined;
4035
3980
  sold?: number | undefined;
4036
3981
  reserved?: number | undefined;
4037
- visibility?: "public" | "hidden" | "invite_only" | undefined;
3982
+ wristbandColor?: string | undefined;
3983
+ isVisible?: boolean | undefined;
3984
+ isActive?: boolean | undefined;
4038
3985
  benefits?: string[] | undefined;
4039
3986
  tier?: string | undefined;
3987
+ salesWindow?: {
3988
+ startDate?: string | undefined;
3989
+ endDate?: string | undefined;
3990
+ } | undefined;
4040
3991
  }>, "many">>;
4041
3992
  termsAccepted: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, boolean>>;
4042
3993
  legalPermissionAccepted: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, boolean>>;
@@ -4256,7 +4207,6 @@ export declare const draftEventSchema: z.ZodObject<{
4256
4207
  tickets: z.ZodOptional<z.ZodArray<z.ZodObject<{
4257
4208
  _id: z.ZodOptional<z.ZodString>;
4258
4209
  name: z.ZodString;
4259
- description: z.ZodOptional<z.ZodString>;
4260
4210
  price: z.ZodObject<{
4261
4211
  amount: z.ZodNumber;
4262
4212
  currency: z.ZodDefault<z.ZodString>;
@@ -4268,16 +4218,6 @@ export declare const draftEventSchema: z.ZodObject<{
4268
4218
  currency?: string | undefined;
4269
4219
  }>;
4270
4220
  quantity: z.ZodNumber;
4271
- salesWindow: z.ZodOptional<z.ZodObject<{
4272
- startDate: z.ZodOptional<z.ZodString>;
4273
- endDate: z.ZodOptional<z.ZodString>;
4274
- }, "strip", z.ZodTypeAny, {
4275
- startDate?: string | undefined;
4276
- endDate?: string | undefined;
4277
- }, {
4278
- startDate?: string | undefined;
4279
- endDate?: string | undefined;
4280
- }>>;
4281
4221
  limits: z.ZodOptional<z.ZodObject<{
4282
4222
  minPerOrder: z.ZodDefault<z.ZodNumber>;
4283
4223
  maxPerOrder: z.ZodDefault<z.ZodNumber>;
@@ -4288,13 +4228,23 @@ export declare const draftEventSchema: z.ZodObject<{
4288
4228
  minPerOrder?: number | undefined;
4289
4229
  maxPerOrder?: number | undefined;
4290
4230
  }>>;
4291
- remaining: z.ZodOptional<z.ZodNumber>;
4292
- sold: z.ZodOptional<z.ZodNumber>;
4293
- reserved: z.ZodOptional<z.ZodNumber>;
4294
- visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
4295
- status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
4231
+ sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
4232
+ reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
4233
+ wristbandColor: z.ZodOptional<z.ZodString>;
4234
+ isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4235
+ isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4296
4236
  benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4297
4237
  tier: z.ZodDefault<z.ZodString>;
4238
+ salesWindow: z.ZodOptional<z.ZodObject<{
4239
+ startDate: z.ZodOptional<z.ZodString>;
4240
+ endDate: z.ZodOptional<z.ZodString>;
4241
+ }, "strip", z.ZodTypeAny, {
4242
+ startDate?: string | undefined;
4243
+ endDate?: string | undefined;
4244
+ }, {
4245
+ startDate?: string | undefined;
4246
+ endDate?: string | undefined;
4247
+ }>>;
4298
4248
  }, "strip", z.ZodTypeAny, {
4299
4249
  name: string;
4300
4250
  price: {
@@ -4303,22 +4253,21 @@ export declare const draftEventSchema: z.ZodObject<{
4303
4253
  };
4304
4254
  quantity: number;
4305
4255
  tier: string;
4306
- status?: "active" | "inactive" | undefined;
4307
4256
  _id?: string | undefined;
4308
- description?: string | undefined;
4309
- salesWindow?: {
4310
- startDate?: string | undefined;
4311
- endDate?: string | undefined;
4312
- } | undefined;
4313
4257
  limits?: {
4314
4258
  minPerOrder: number;
4315
4259
  maxPerOrder: number;
4316
4260
  } | undefined;
4317
- remaining?: number | undefined;
4318
4261
  sold?: number | undefined;
4319
4262
  reserved?: number | undefined;
4320
- visibility?: "public" | "hidden" | "invite_only" | undefined;
4263
+ wristbandColor?: string | undefined;
4264
+ isVisible?: boolean | undefined;
4265
+ isActive?: boolean | undefined;
4321
4266
  benefits?: string[] | undefined;
4267
+ salesWindow?: {
4268
+ startDate?: string | undefined;
4269
+ endDate?: string | undefined;
4270
+ } | undefined;
4322
4271
  }, {
4323
4272
  name: string;
4324
4273
  price: {
@@ -4326,23 +4275,22 @@ export declare const draftEventSchema: z.ZodObject<{
4326
4275
  currency?: string | undefined;
4327
4276
  };
4328
4277
  quantity: number;
4329
- status?: "active" | "inactive" | undefined;
4330
4278
  _id?: string | undefined;
4331
- description?: string | undefined;
4332
- salesWindow?: {
4333
- startDate?: string | undefined;
4334
- endDate?: string | undefined;
4335
- } | undefined;
4336
4279
  limits?: {
4337
4280
  minPerOrder?: number | undefined;
4338
4281
  maxPerOrder?: number | undefined;
4339
4282
  } | undefined;
4340
- remaining?: number | undefined;
4341
4283
  sold?: number | undefined;
4342
4284
  reserved?: number | undefined;
4343
- visibility?: "public" | "hidden" | "invite_only" | undefined;
4285
+ wristbandColor?: string | undefined;
4286
+ isVisible?: boolean | undefined;
4287
+ isActive?: boolean | undefined;
4344
4288
  benefits?: string[] | undefined;
4345
4289
  tier?: string | undefined;
4290
+ salesWindow?: {
4291
+ startDate?: string | undefined;
4292
+ endDate?: string | undefined;
4293
+ } | undefined;
4346
4294
  }>, "many">>;
4347
4295
  termsAccepted: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, boolean>>;
4348
4296
  legalPermissionAccepted: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, boolean>>;
@@ -4562,7 +4510,6 @@ export declare const draftEventSchema: z.ZodObject<{
4562
4510
  tickets: z.ZodOptional<z.ZodArray<z.ZodObject<{
4563
4511
  _id: z.ZodOptional<z.ZodString>;
4564
4512
  name: z.ZodString;
4565
- description: z.ZodOptional<z.ZodString>;
4566
4513
  price: z.ZodObject<{
4567
4514
  amount: z.ZodNumber;
4568
4515
  currency: z.ZodDefault<z.ZodString>;
@@ -4574,16 +4521,6 @@ export declare const draftEventSchema: z.ZodObject<{
4574
4521
  currency?: string | undefined;
4575
4522
  }>;
4576
4523
  quantity: z.ZodNumber;
4577
- salesWindow: z.ZodOptional<z.ZodObject<{
4578
- startDate: z.ZodOptional<z.ZodString>;
4579
- endDate: z.ZodOptional<z.ZodString>;
4580
- }, "strip", z.ZodTypeAny, {
4581
- startDate?: string | undefined;
4582
- endDate?: string | undefined;
4583
- }, {
4584
- startDate?: string | undefined;
4585
- endDate?: string | undefined;
4586
- }>>;
4587
4524
  limits: z.ZodOptional<z.ZodObject<{
4588
4525
  minPerOrder: z.ZodDefault<z.ZodNumber>;
4589
4526
  maxPerOrder: z.ZodDefault<z.ZodNumber>;
@@ -4594,13 +4531,23 @@ export declare const draftEventSchema: z.ZodObject<{
4594
4531
  minPerOrder?: number | undefined;
4595
4532
  maxPerOrder?: number | undefined;
4596
4533
  }>>;
4597
- remaining: z.ZodOptional<z.ZodNumber>;
4598
- sold: z.ZodOptional<z.ZodNumber>;
4599
- reserved: z.ZodOptional<z.ZodNumber>;
4600
- visibility: z.ZodOptional<z.ZodDefault<z.ZodEnum<["public", "hidden", "invite_only"]>>>;
4601
- status: z.ZodOptional<z.ZodDefault<z.ZodEnum<["active", "inactive"]>>>;
4534
+ sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
4535
+ reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
4536
+ wristbandColor: z.ZodOptional<z.ZodString>;
4537
+ isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4538
+ isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4602
4539
  benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4603
4540
  tier: z.ZodDefault<z.ZodString>;
4541
+ salesWindow: z.ZodOptional<z.ZodObject<{
4542
+ startDate: z.ZodOptional<z.ZodString>;
4543
+ endDate: z.ZodOptional<z.ZodString>;
4544
+ }, "strip", z.ZodTypeAny, {
4545
+ startDate?: string | undefined;
4546
+ endDate?: string | undefined;
4547
+ }, {
4548
+ startDate?: string | undefined;
4549
+ endDate?: string | undefined;
4550
+ }>>;
4604
4551
  }, "strip", z.ZodTypeAny, {
4605
4552
  name: string;
4606
4553
  price: {
@@ -4609,22 +4556,21 @@ export declare const draftEventSchema: z.ZodObject<{
4609
4556
  };
4610
4557
  quantity: number;
4611
4558
  tier: string;
4612
- status?: "active" | "inactive" | undefined;
4613
4559
  _id?: string | undefined;
4614
- description?: string | undefined;
4615
- salesWindow?: {
4616
- startDate?: string | undefined;
4617
- endDate?: string | undefined;
4618
- } | undefined;
4619
4560
  limits?: {
4620
4561
  minPerOrder: number;
4621
4562
  maxPerOrder: number;
4622
4563
  } | undefined;
4623
- remaining?: number | undefined;
4624
4564
  sold?: number | undefined;
4625
4565
  reserved?: number | undefined;
4626
- visibility?: "public" | "hidden" | "invite_only" | undefined;
4566
+ wristbandColor?: string | undefined;
4567
+ isVisible?: boolean | undefined;
4568
+ isActive?: boolean | undefined;
4627
4569
  benefits?: string[] | undefined;
4570
+ salesWindow?: {
4571
+ startDate?: string | undefined;
4572
+ endDate?: string | undefined;
4573
+ } | undefined;
4628
4574
  }, {
4629
4575
  name: string;
4630
4576
  price: {
@@ -4632,23 +4578,22 @@ export declare const draftEventSchema: z.ZodObject<{
4632
4578
  currency?: string | undefined;
4633
4579
  };
4634
4580
  quantity: number;
4635
- status?: "active" | "inactive" | undefined;
4636
4581
  _id?: string | undefined;
4637
- description?: string | undefined;
4638
- salesWindow?: {
4639
- startDate?: string | undefined;
4640
- endDate?: string | undefined;
4641
- } | undefined;
4642
4582
  limits?: {
4643
4583
  minPerOrder?: number | undefined;
4644
4584
  maxPerOrder?: number | undefined;
4645
4585
  } | undefined;
4646
- remaining?: number | undefined;
4647
4586
  sold?: number | undefined;
4648
4587
  reserved?: number | undefined;
4649
- visibility?: "public" | "hidden" | "invite_only" | undefined;
4588
+ wristbandColor?: string | undefined;
4589
+ isVisible?: boolean | undefined;
4590
+ isActive?: boolean | undefined;
4650
4591
  benefits?: string[] | undefined;
4651
4592
  tier?: string | undefined;
4593
+ salesWindow?: {
4594
+ startDate?: string | undefined;
4595
+ endDate?: string | undefined;
4596
+ } | undefined;
4652
4597
  }>, "many">>;
4653
4598
  termsAccepted: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, boolean>>;
4654
4599
  legalPermissionAccepted: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, boolean>>;