@mac777/project-pinecone-schema 1.0.8 → 1.0.9
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,6 +803,7 @@ 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>;
|
|
806
807
|
price: z.ZodObject<{
|
|
807
808
|
amount: z.ZodNumber;
|
|
808
809
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -826,10 +827,15 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
826
827
|
}>>;
|
|
827
828
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
828
829
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
829
|
-
wristbandColor: z.
|
|
830
|
+
wristbandColor: z.ZodDefault<z.ZodString>;
|
|
831
|
+
accentColor: z.ZodDefault<z.ZodString>;
|
|
832
|
+
isDark: z.ZodDefault<z.ZodBoolean>;
|
|
833
|
+
glassMode: z.ZodDefault<z.ZodBoolean>;
|
|
834
|
+
cornerRadius: z.ZodDefault<z.ZodNumber>;
|
|
835
|
+
perforationStyle: z.ZodDefault<z.ZodEnum<["solid", "dashed", "dotted"]>>;
|
|
830
836
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
831
837
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
832
|
-
benefits: z.
|
|
838
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
833
839
|
tier: z.ZodDefault<z.ZodString>;
|
|
834
840
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
835
841
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -848,18 +854,24 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
848
854
|
currency: string;
|
|
849
855
|
};
|
|
850
856
|
quantity: number;
|
|
857
|
+
wristbandColor: string;
|
|
858
|
+
accentColor: string;
|
|
859
|
+
isDark: boolean;
|
|
860
|
+
glassMode: boolean;
|
|
861
|
+
cornerRadius: number;
|
|
862
|
+
perforationStyle: "solid" | "dashed" | "dotted";
|
|
863
|
+
benefits: string[];
|
|
851
864
|
tier: string;
|
|
852
865
|
_id?: string | undefined;
|
|
866
|
+
description?: string | undefined;
|
|
853
867
|
limits?: {
|
|
854
868
|
minPerOrder: number;
|
|
855
869
|
maxPerOrder: number;
|
|
856
870
|
} | undefined;
|
|
857
871
|
sold?: number | undefined;
|
|
858
872
|
reserved?: number | undefined;
|
|
859
|
-
wristbandColor?: string | undefined;
|
|
860
873
|
isVisible?: boolean | undefined;
|
|
861
874
|
isActive?: boolean | undefined;
|
|
862
|
-
benefits?: string[] | undefined;
|
|
863
875
|
salesWindow?: {
|
|
864
876
|
startDate?: string | undefined;
|
|
865
877
|
endDate?: string | undefined;
|
|
@@ -872,6 +884,7 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
872
884
|
};
|
|
873
885
|
quantity: number;
|
|
874
886
|
_id?: string | undefined;
|
|
887
|
+
description?: string | undefined;
|
|
875
888
|
limits?: {
|
|
876
889
|
minPerOrder?: number | undefined;
|
|
877
890
|
maxPerOrder?: number | undefined;
|
|
@@ -879,6 +892,11 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
879
892
|
sold?: number | undefined;
|
|
880
893
|
reserved?: number | undefined;
|
|
881
894
|
wristbandColor?: string | undefined;
|
|
895
|
+
accentColor?: string | undefined;
|
|
896
|
+
isDark?: boolean | undefined;
|
|
897
|
+
glassMode?: boolean | undefined;
|
|
898
|
+
cornerRadius?: number | undefined;
|
|
899
|
+
perforationStyle?: "solid" | "dashed" | "dotted" | undefined;
|
|
882
900
|
isVisible?: boolean | undefined;
|
|
883
901
|
isActive?: boolean | undefined;
|
|
884
902
|
benefits?: string[] | undefined;
|
|
@@ -892,6 +910,7 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
892
910
|
tickets: z.ZodArray<z.ZodObject<{
|
|
893
911
|
_id: z.ZodOptional<z.ZodString>;
|
|
894
912
|
name: z.ZodString;
|
|
913
|
+
description: z.ZodOptional<z.ZodString>;
|
|
895
914
|
price: z.ZodObject<{
|
|
896
915
|
amount: z.ZodNumber;
|
|
897
916
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -915,10 +934,15 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
915
934
|
}>>;
|
|
916
935
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
917
936
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
918
|
-
wristbandColor: z.
|
|
937
|
+
wristbandColor: z.ZodDefault<z.ZodString>;
|
|
938
|
+
accentColor: z.ZodDefault<z.ZodString>;
|
|
939
|
+
isDark: z.ZodDefault<z.ZodBoolean>;
|
|
940
|
+
glassMode: z.ZodDefault<z.ZodBoolean>;
|
|
941
|
+
cornerRadius: z.ZodDefault<z.ZodNumber>;
|
|
942
|
+
perforationStyle: z.ZodDefault<z.ZodEnum<["solid", "dashed", "dotted"]>>;
|
|
919
943
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
920
944
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
921
|
-
benefits: z.
|
|
945
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
922
946
|
tier: z.ZodDefault<z.ZodString>;
|
|
923
947
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
924
948
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -937,18 +961,24 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
937
961
|
currency: string;
|
|
938
962
|
};
|
|
939
963
|
quantity: number;
|
|
964
|
+
wristbandColor: string;
|
|
965
|
+
accentColor: string;
|
|
966
|
+
isDark: boolean;
|
|
967
|
+
glassMode: boolean;
|
|
968
|
+
cornerRadius: number;
|
|
969
|
+
perforationStyle: "solid" | "dashed" | "dotted";
|
|
970
|
+
benefits: string[];
|
|
940
971
|
tier: string;
|
|
941
972
|
_id?: string | undefined;
|
|
973
|
+
description?: string | undefined;
|
|
942
974
|
limits?: {
|
|
943
975
|
minPerOrder: number;
|
|
944
976
|
maxPerOrder: number;
|
|
945
977
|
} | undefined;
|
|
946
978
|
sold?: number | undefined;
|
|
947
979
|
reserved?: number | undefined;
|
|
948
|
-
wristbandColor?: string | undefined;
|
|
949
980
|
isVisible?: boolean | undefined;
|
|
950
981
|
isActive?: boolean | undefined;
|
|
951
|
-
benefits?: string[] | undefined;
|
|
952
982
|
salesWindow?: {
|
|
953
983
|
startDate?: string | undefined;
|
|
954
984
|
endDate?: string | undefined;
|
|
@@ -961,6 +991,7 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
961
991
|
};
|
|
962
992
|
quantity: number;
|
|
963
993
|
_id?: string | undefined;
|
|
994
|
+
description?: string | undefined;
|
|
964
995
|
limits?: {
|
|
965
996
|
minPerOrder?: number | undefined;
|
|
966
997
|
maxPerOrder?: number | undefined;
|
|
@@ -968,6 +999,11 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
968
999
|
sold?: number | undefined;
|
|
969
1000
|
reserved?: number | undefined;
|
|
970
1001
|
wristbandColor?: string | undefined;
|
|
1002
|
+
accentColor?: string | undefined;
|
|
1003
|
+
isDark?: boolean | undefined;
|
|
1004
|
+
glassMode?: boolean | undefined;
|
|
1005
|
+
cornerRadius?: number | undefined;
|
|
1006
|
+
perforationStyle?: "solid" | "dashed" | "dotted" | undefined;
|
|
971
1007
|
isVisible?: boolean | undefined;
|
|
972
1008
|
isActive?: boolean | undefined;
|
|
973
1009
|
benefits?: string[] | undefined;
|
|
@@ -981,6 +1017,7 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
981
1017
|
tickets: z.ZodArray<z.ZodObject<{
|
|
982
1018
|
_id: z.ZodOptional<z.ZodString>;
|
|
983
1019
|
name: z.ZodString;
|
|
1020
|
+
description: z.ZodOptional<z.ZodString>;
|
|
984
1021
|
price: z.ZodObject<{
|
|
985
1022
|
amount: z.ZodNumber;
|
|
986
1023
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -1004,10 +1041,15 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1004
1041
|
}>>;
|
|
1005
1042
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
1006
1043
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
1007
|
-
wristbandColor: z.
|
|
1044
|
+
wristbandColor: z.ZodDefault<z.ZodString>;
|
|
1045
|
+
accentColor: z.ZodDefault<z.ZodString>;
|
|
1046
|
+
isDark: z.ZodDefault<z.ZodBoolean>;
|
|
1047
|
+
glassMode: z.ZodDefault<z.ZodBoolean>;
|
|
1048
|
+
cornerRadius: z.ZodDefault<z.ZodNumber>;
|
|
1049
|
+
perforationStyle: z.ZodDefault<z.ZodEnum<["solid", "dashed", "dotted"]>>;
|
|
1008
1050
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1009
1051
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1010
|
-
benefits: z.
|
|
1052
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1011
1053
|
tier: z.ZodDefault<z.ZodString>;
|
|
1012
1054
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
1013
1055
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -1026,18 +1068,24 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1026
1068
|
currency: string;
|
|
1027
1069
|
};
|
|
1028
1070
|
quantity: number;
|
|
1071
|
+
wristbandColor: string;
|
|
1072
|
+
accentColor: string;
|
|
1073
|
+
isDark: boolean;
|
|
1074
|
+
glassMode: boolean;
|
|
1075
|
+
cornerRadius: number;
|
|
1076
|
+
perforationStyle: "solid" | "dashed" | "dotted";
|
|
1077
|
+
benefits: string[];
|
|
1029
1078
|
tier: string;
|
|
1030
1079
|
_id?: string | undefined;
|
|
1080
|
+
description?: string | undefined;
|
|
1031
1081
|
limits?: {
|
|
1032
1082
|
minPerOrder: number;
|
|
1033
1083
|
maxPerOrder: number;
|
|
1034
1084
|
} | undefined;
|
|
1035
1085
|
sold?: number | undefined;
|
|
1036
1086
|
reserved?: number | undefined;
|
|
1037
|
-
wristbandColor?: string | undefined;
|
|
1038
1087
|
isVisible?: boolean | undefined;
|
|
1039
1088
|
isActive?: boolean | undefined;
|
|
1040
|
-
benefits?: string[] | undefined;
|
|
1041
1089
|
salesWindow?: {
|
|
1042
1090
|
startDate?: string | undefined;
|
|
1043
1091
|
endDate?: string | undefined;
|
|
@@ -1050,6 +1098,7 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1050
1098
|
};
|
|
1051
1099
|
quantity: number;
|
|
1052
1100
|
_id?: string | undefined;
|
|
1101
|
+
description?: string | undefined;
|
|
1053
1102
|
limits?: {
|
|
1054
1103
|
minPerOrder?: number | undefined;
|
|
1055
1104
|
maxPerOrder?: number | undefined;
|
|
@@ -1057,6 +1106,11 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1057
1106
|
sold?: number | undefined;
|
|
1058
1107
|
reserved?: number | undefined;
|
|
1059
1108
|
wristbandColor?: string | undefined;
|
|
1109
|
+
accentColor?: string | undefined;
|
|
1110
|
+
isDark?: boolean | undefined;
|
|
1111
|
+
glassMode?: boolean | undefined;
|
|
1112
|
+
cornerRadius?: number | undefined;
|
|
1113
|
+
perforationStyle?: "solid" | "dashed" | "dotted" | undefined;
|
|
1060
1114
|
isVisible?: boolean | undefined;
|
|
1061
1115
|
isActive?: boolean | undefined;
|
|
1062
1116
|
benefits?: string[] | undefined;
|
|
@@ -1070,6 +1124,7 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1070
1124
|
tickets: z.ZodArray<z.ZodObject<{
|
|
1071
1125
|
_id: z.ZodOptional<z.ZodString>;
|
|
1072
1126
|
name: z.ZodString;
|
|
1127
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1073
1128
|
price: z.ZodObject<{
|
|
1074
1129
|
amount: z.ZodNumber;
|
|
1075
1130
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -1093,10 +1148,15 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1093
1148
|
}>>;
|
|
1094
1149
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
1095
1150
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
1096
|
-
wristbandColor: z.
|
|
1151
|
+
wristbandColor: z.ZodDefault<z.ZodString>;
|
|
1152
|
+
accentColor: z.ZodDefault<z.ZodString>;
|
|
1153
|
+
isDark: z.ZodDefault<z.ZodBoolean>;
|
|
1154
|
+
glassMode: z.ZodDefault<z.ZodBoolean>;
|
|
1155
|
+
cornerRadius: z.ZodDefault<z.ZodNumber>;
|
|
1156
|
+
perforationStyle: z.ZodDefault<z.ZodEnum<["solid", "dashed", "dotted"]>>;
|
|
1097
1157
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1098
1158
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1099
|
-
benefits: z.
|
|
1159
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1100
1160
|
tier: z.ZodDefault<z.ZodString>;
|
|
1101
1161
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
1102
1162
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -1115,18 +1175,24 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1115
1175
|
currency: string;
|
|
1116
1176
|
};
|
|
1117
1177
|
quantity: number;
|
|
1178
|
+
wristbandColor: string;
|
|
1179
|
+
accentColor: string;
|
|
1180
|
+
isDark: boolean;
|
|
1181
|
+
glassMode: boolean;
|
|
1182
|
+
cornerRadius: number;
|
|
1183
|
+
perforationStyle: "solid" | "dashed" | "dotted";
|
|
1184
|
+
benefits: string[];
|
|
1118
1185
|
tier: string;
|
|
1119
1186
|
_id?: string | undefined;
|
|
1187
|
+
description?: string | undefined;
|
|
1120
1188
|
limits?: {
|
|
1121
1189
|
minPerOrder: number;
|
|
1122
1190
|
maxPerOrder: number;
|
|
1123
1191
|
} | undefined;
|
|
1124
1192
|
sold?: number | undefined;
|
|
1125
1193
|
reserved?: number | undefined;
|
|
1126
|
-
wristbandColor?: string | undefined;
|
|
1127
1194
|
isVisible?: boolean | undefined;
|
|
1128
1195
|
isActive?: boolean | undefined;
|
|
1129
|
-
benefits?: string[] | undefined;
|
|
1130
1196
|
salesWindow?: {
|
|
1131
1197
|
startDate?: string | undefined;
|
|
1132
1198
|
endDate?: string | undefined;
|
|
@@ -1139,6 +1205,7 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1139
1205
|
};
|
|
1140
1206
|
quantity: number;
|
|
1141
1207
|
_id?: string | undefined;
|
|
1208
|
+
description?: string | undefined;
|
|
1142
1209
|
limits?: {
|
|
1143
1210
|
minPerOrder?: number | undefined;
|
|
1144
1211
|
maxPerOrder?: number | undefined;
|
|
@@ -1146,6 +1213,11 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1146
1213
|
sold?: number | undefined;
|
|
1147
1214
|
reserved?: number | undefined;
|
|
1148
1215
|
wristbandColor?: string | undefined;
|
|
1216
|
+
accentColor?: string | undefined;
|
|
1217
|
+
isDark?: boolean | undefined;
|
|
1218
|
+
glassMode?: boolean | undefined;
|
|
1219
|
+
cornerRadius?: number | undefined;
|
|
1220
|
+
perforationStyle?: "solid" | "dashed" | "dotted" | undefined;
|
|
1149
1221
|
isVisible?: boolean | undefined;
|
|
1150
1222
|
isActive?: boolean | undefined;
|
|
1151
1223
|
benefits?: string[] | undefined;
|
|
@@ -1159,6 +1231,7 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1159
1231
|
tickets: z.ZodArray<z.ZodObject<{
|
|
1160
1232
|
_id: z.ZodOptional<z.ZodString>;
|
|
1161
1233
|
name: z.ZodString;
|
|
1234
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1162
1235
|
price: z.ZodObject<{
|
|
1163
1236
|
amount: z.ZodNumber;
|
|
1164
1237
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -1182,10 +1255,15 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1182
1255
|
}>>;
|
|
1183
1256
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
1184
1257
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
1185
|
-
wristbandColor: z.
|
|
1258
|
+
wristbandColor: z.ZodDefault<z.ZodString>;
|
|
1259
|
+
accentColor: z.ZodDefault<z.ZodString>;
|
|
1260
|
+
isDark: z.ZodDefault<z.ZodBoolean>;
|
|
1261
|
+
glassMode: z.ZodDefault<z.ZodBoolean>;
|
|
1262
|
+
cornerRadius: z.ZodDefault<z.ZodNumber>;
|
|
1263
|
+
perforationStyle: z.ZodDefault<z.ZodEnum<["solid", "dashed", "dotted"]>>;
|
|
1186
1264
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1187
1265
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1188
|
-
benefits: z.
|
|
1266
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1189
1267
|
tier: z.ZodDefault<z.ZodString>;
|
|
1190
1268
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
1191
1269
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -1204,18 +1282,24 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1204
1282
|
currency: string;
|
|
1205
1283
|
};
|
|
1206
1284
|
quantity: number;
|
|
1285
|
+
wristbandColor: string;
|
|
1286
|
+
accentColor: string;
|
|
1287
|
+
isDark: boolean;
|
|
1288
|
+
glassMode: boolean;
|
|
1289
|
+
cornerRadius: number;
|
|
1290
|
+
perforationStyle: "solid" | "dashed" | "dotted";
|
|
1291
|
+
benefits: string[];
|
|
1207
1292
|
tier: string;
|
|
1208
1293
|
_id?: string | undefined;
|
|
1294
|
+
description?: string | undefined;
|
|
1209
1295
|
limits?: {
|
|
1210
1296
|
minPerOrder: number;
|
|
1211
1297
|
maxPerOrder: number;
|
|
1212
1298
|
} | undefined;
|
|
1213
1299
|
sold?: number | undefined;
|
|
1214
1300
|
reserved?: number | undefined;
|
|
1215
|
-
wristbandColor?: string | undefined;
|
|
1216
1301
|
isVisible?: boolean | undefined;
|
|
1217
1302
|
isActive?: boolean | undefined;
|
|
1218
|
-
benefits?: string[] | undefined;
|
|
1219
1303
|
salesWindow?: {
|
|
1220
1304
|
startDate?: string | undefined;
|
|
1221
1305
|
endDate?: string | undefined;
|
|
@@ -1228,6 +1312,7 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1228
1312
|
};
|
|
1229
1313
|
quantity: number;
|
|
1230
1314
|
_id?: string | undefined;
|
|
1315
|
+
description?: string | undefined;
|
|
1231
1316
|
limits?: {
|
|
1232
1317
|
minPerOrder?: number | undefined;
|
|
1233
1318
|
maxPerOrder?: number | undefined;
|
|
@@ -1235,6 +1320,11 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1235
1320
|
sold?: number | undefined;
|
|
1236
1321
|
reserved?: number | undefined;
|
|
1237
1322
|
wristbandColor?: string | undefined;
|
|
1323
|
+
accentColor?: string | undefined;
|
|
1324
|
+
isDark?: boolean | undefined;
|
|
1325
|
+
glassMode?: boolean | undefined;
|
|
1326
|
+
cornerRadius?: number | undefined;
|
|
1327
|
+
perforationStyle?: "solid" | "dashed" | "dotted" | undefined;
|
|
1238
1328
|
isVisible?: boolean | undefined;
|
|
1239
1329
|
isActive?: boolean | undefined;
|
|
1240
1330
|
benefits?: string[] | undefined;
|
|
@@ -1248,6 +1338,7 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1248
1338
|
tickets: z.ZodArray<z.ZodObject<{
|
|
1249
1339
|
_id: z.ZodOptional<z.ZodString>;
|
|
1250
1340
|
name: z.ZodString;
|
|
1341
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1251
1342
|
price: z.ZodObject<{
|
|
1252
1343
|
amount: z.ZodNumber;
|
|
1253
1344
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -1271,10 +1362,15 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1271
1362
|
}>>;
|
|
1272
1363
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
1273
1364
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
1274
|
-
wristbandColor: z.
|
|
1365
|
+
wristbandColor: z.ZodDefault<z.ZodString>;
|
|
1366
|
+
accentColor: z.ZodDefault<z.ZodString>;
|
|
1367
|
+
isDark: z.ZodDefault<z.ZodBoolean>;
|
|
1368
|
+
glassMode: z.ZodDefault<z.ZodBoolean>;
|
|
1369
|
+
cornerRadius: z.ZodDefault<z.ZodNumber>;
|
|
1370
|
+
perforationStyle: z.ZodDefault<z.ZodEnum<["solid", "dashed", "dotted"]>>;
|
|
1275
1371
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1276
1372
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1277
|
-
benefits: z.
|
|
1373
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1278
1374
|
tier: z.ZodDefault<z.ZodString>;
|
|
1279
1375
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
1280
1376
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -1293,18 +1389,24 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1293
1389
|
currency: string;
|
|
1294
1390
|
};
|
|
1295
1391
|
quantity: number;
|
|
1392
|
+
wristbandColor: string;
|
|
1393
|
+
accentColor: string;
|
|
1394
|
+
isDark: boolean;
|
|
1395
|
+
glassMode: boolean;
|
|
1396
|
+
cornerRadius: number;
|
|
1397
|
+
perforationStyle: "solid" | "dashed" | "dotted";
|
|
1398
|
+
benefits: string[];
|
|
1296
1399
|
tier: string;
|
|
1297
1400
|
_id?: string | undefined;
|
|
1401
|
+
description?: string | undefined;
|
|
1298
1402
|
limits?: {
|
|
1299
1403
|
minPerOrder: number;
|
|
1300
1404
|
maxPerOrder: number;
|
|
1301
1405
|
} | undefined;
|
|
1302
1406
|
sold?: number | undefined;
|
|
1303
1407
|
reserved?: number | undefined;
|
|
1304
|
-
wristbandColor?: string | undefined;
|
|
1305
1408
|
isVisible?: boolean | undefined;
|
|
1306
1409
|
isActive?: boolean | undefined;
|
|
1307
|
-
benefits?: string[] | undefined;
|
|
1308
1410
|
salesWindow?: {
|
|
1309
1411
|
startDate?: string | undefined;
|
|
1310
1412
|
endDate?: string | undefined;
|
|
@@ -1317,6 +1419,7 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1317
1419
|
};
|
|
1318
1420
|
quantity: number;
|
|
1319
1421
|
_id?: string | undefined;
|
|
1422
|
+
description?: string | undefined;
|
|
1320
1423
|
limits?: {
|
|
1321
1424
|
minPerOrder?: number | undefined;
|
|
1322
1425
|
maxPerOrder?: number | undefined;
|
|
@@ -1324,6 +1427,11 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1324
1427
|
sold?: number | undefined;
|
|
1325
1428
|
reserved?: number | undefined;
|
|
1326
1429
|
wristbandColor?: string | undefined;
|
|
1430
|
+
accentColor?: string | undefined;
|
|
1431
|
+
isDark?: boolean | undefined;
|
|
1432
|
+
glassMode?: boolean | undefined;
|
|
1433
|
+
cornerRadius?: number | undefined;
|
|
1434
|
+
perforationStyle?: "solid" | "dashed" | "dotted" | undefined;
|
|
1327
1435
|
isVisible?: boolean | undefined;
|
|
1328
1436
|
isActive?: boolean | undefined;
|
|
1329
1437
|
benefits?: string[] | undefined;
|
|
@@ -1337,6 +1445,7 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1337
1445
|
tickets: z.ZodArray<z.ZodObject<{
|
|
1338
1446
|
_id: z.ZodOptional<z.ZodString>;
|
|
1339
1447
|
name: z.ZodString;
|
|
1448
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1340
1449
|
price: z.ZodObject<{
|
|
1341
1450
|
amount: z.ZodNumber;
|
|
1342
1451
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -1360,10 +1469,15 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1360
1469
|
}>>;
|
|
1361
1470
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
1362
1471
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
1363
|
-
wristbandColor: z.
|
|
1472
|
+
wristbandColor: z.ZodDefault<z.ZodString>;
|
|
1473
|
+
accentColor: z.ZodDefault<z.ZodString>;
|
|
1474
|
+
isDark: z.ZodDefault<z.ZodBoolean>;
|
|
1475
|
+
glassMode: z.ZodDefault<z.ZodBoolean>;
|
|
1476
|
+
cornerRadius: z.ZodDefault<z.ZodNumber>;
|
|
1477
|
+
perforationStyle: z.ZodDefault<z.ZodEnum<["solid", "dashed", "dotted"]>>;
|
|
1364
1478
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1365
1479
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1366
|
-
benefits: z.
|
|
1480
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1367
1481
|
tier: z.ZodDefault<z.ZodString>;
|
|
1368
1482
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
1369
1483
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -1382,18 +1496,24 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1382
1496
|
currency: string;
|
|
1383
1497
|
};
|
|
1384
1498
|
quantity: number;
|
|
1499
|
+
wristbandColor: string;
|
|
1500
|
+
accentColor: string;
|
|
1501
|
+
isDark: boolean;
|
|
1502
|
+
glassMode: boolean;
|
|
1503
|
+
cornerRadius: number;
|
|
1504
|
+
perforationStyle: "solid" | "dashed" | "dotted";
|
|
1505
|
+
benefits: string[];
|
|
1385
1506
|
tier: string;
|
|
1386
1507
|
_id?: string | undefined;
|
|
1508
|
+
description?: string | undefined;
|
|
1387
1509
|
limits?: {
|
|
1388
1510
|
minPerOrder: number;
|
|
1389
1511
|
maxPerOrder: number;
|
|
1390
1512
|
} | undefined;
|
|
1391
1513
|
sold?: number | undefined;
|
|
1392
1514
|
reserved?: number | undefined;
|
|
1393
|
-
wristbandColor?: string | undefined;
|
|
1394
1515
|
isVisible?: boolean | undefined;
|
|
1395
1516
|
isActive?: boolean | undefined;
|
|
1396
|
-
benefits?: string[] | undefined;
|
|
1397
1517
|
salesWindow?: {
|
|
1398
1518
|
startDate?: string | undefined;
|
|
1399
1519
|
endDate?: string | undefined;
|
|
@@ -1406,6 +1526,7 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1406
1526
|
};
|
|
1407
1527
|
quantity: number;
|
|
1408
1528
|
_id?: string | undefined;
|
|
1529
|
+
description?: string | undefined;
|
|
1409
1530
|
limits?: {
|
|
1410
1531
|
minPerOrder?: number | undefined;
|
|
1411
1532
|
maxPerOrder?: number | undefined;
|
|
@@ -1413,6 +1534,11 @@ export declare const stepTicketsSchema: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
1413
1534
|
sold?: number | undefined;
|
|
1414
1535
|
reserved?: number | undefined;
|
|
1415
1536
|
wristbandColor?: string | undefined;
|
|
1537
|
+
accentColor?: string | undefined;
|
|
1538
|
+
isDark?: boolean | undefined;
|
|
1539
|
+
glassMode?: boolean | undefined;
|
|
1540
|
+
cornerRadius?: number | undefined;
|
|
1541
|
+
perforationStyle?: "solid" | "dashed" | "dotted" | undefined;
|
|
1416
1542
|
isVisible?: boolean | undefined;
|
|
1417
1543
|
isActive?: boolean | undefined;
|
|
1418
1544
|
benefits?: string[] | undefined;
|
|
@@ -1551,8 +1677,8 @@ export declare const pendingApprovalEditSchema: z.ZodObject<{
|
|
|
1551
1677
|
};
|
|
1552
1678
|
eventId: string;
|
|
1553
1679
|
hostId: string;
|
|
1554
|
-
tagline?: string | undefined;
|
|
1555
1680
|
description?: string | undefined;
|
|
1681
|
+
tagline?: string | undefined;
|
|
1556
1682
|
highlights?: string[] | undefined;
|
|
1557
1683
|
tickets?: {
|
|
1558
1684
|
_id: string;
|
|
@@ -1580,8 +1706,8 @@ export declare const pendingApprovalEditSchema: z.ZodObject<{
|
|
|
1580
1706
|
};
|
|
1581
1707
|
eventId: string;
|
|
1582
1708
|
hostId: string;
|
|
1583
|
-
tagline?: string | undefined;
|
|
1584
1709
|
description?: string | undefined;
|
|
1710
|
+
tagline?: string | undefined;
|
|
1585
1711
|
highlights?: string[] | undefined;
|
|
1586
1712
|
tickets?: {
|
|
1587
1713
|
_id: string;
|
|
@@ -1743,8 +1869,8 @@ export declare const approvedEventEditSchema: z.ZodObject<{
|
|
|
1743
1869
|
}[];
|
|
1744
1870
|
eventId: string;
|
|
1745
1871
|
hostId: string;
|
|
1746
|
-
tagline?: string | undefined;
|
|
1747
1872
|
description?: string | undefined;
|
|
1873
|
+
tagline?: string | undefined;
|
|
1748
1874
|
highlights?: string[] | undefined;
|
|
1749
1875
|
schedule?: {
|
|
1750
1876
|
startDate: Date;
|
|
@@ -1780,8 +1906,8 @@ export declare const approvedEventEditSchema: z.ZodObject<{
|
|
|
1780
1906
|
}[];
|
|
1781
1907
|
eventId: string;
|
|
1782
1908
|
hostId: string;
|
|
1783
|
-
tagline?: string | undefined;
|
|
1784
1909
|
description?: string | undefined;
|
|
1910
|
+
tagline?: string | undefined;
|
|
1785
1911
|
highlights?: string[] | undefined;
|
|
1786
1912
|
schedule?: {
|
|
1787
1913
|
startDate: Date;
|
|
@@ -1904,6 +2030,7 @@ export declare const publishedEventEditSchema: z.ZodObject<{
|
|
|
1904
2030
|
}[];
|
|
1905
2031
|
eventId: string;
|
|
1906
2032
|
hostId: string;
|
|
2033
|
+
description?: string | undefined;
|
|
1907
2034
|
media?: {
|
|
1908
2035
|
coverImage: {
|
|
1909
2036
|
alt: string;
|
|
@@ -1916,7 +2043,6 @@ export declare const publishedEventEditSchema: z.ZodObject<{
|
|
|
1916
2043
|
url: string;
|
|
1917
2044
|
}[] | undefined;
|
|
1918
2045
|
} | undefined;
|
|
1919
|
-
description?: string | undefined;
|
|
1920
2046
|
highlights?: string[] | undefined;
|
|
1921
2047
|
languages?: string[] | undefined;
|
|
1922
2048
|
}, {
|
|
@@ -1935,6 +2061,7 @@ export declare const publishedEventEditSchema: z.ZodObject<{
|
|
|
1935
2061
|
}[];
|
|
1936
2062
|
eventId: string;
|
|
1937
2063
|
hostId: string;
|
|
2064
|
+
description?: string | undefined;
|
|
1938
2065
|
media?: {
|
|
1939
2066
|
coverImage: {
|
|
1940
2067
|
alt: string;
|
|
@@ -1947,7 +2074,6 @@ export declare const publishedEventEditSchema: z.ZodObject<{
|
|
|
1947
2074
|
url: string;
|
|
1948
2075
|
}[] | undefined;
|
|
1949
2076
|
} | undefined;
|
|
1950
|
-
description?: string | undefined;
|
|
1951
2077
|
highlights?: string[] | undefined;
|
|
1952
2078
|
languages?: string[] | undefined;
|
|
1953
2079
|
}>;
|
|
@@ -2219,6 +2345,7 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2219
2345
|
tickets: z.ZodArray<z.ZodObject<{
|
|
2220
2346
|
_id: z.ZodOptional<z.ZodString>;
|
|
2221
2347
|
name: z.ZodString;
|
|
2348
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2222
2349
|
price: z.ZodObject<{
|
|
2223
2350
|
amount: z.ZodNumber;
|
|
2224
2351
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -2242,10 +2369,15 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2242
2369
|
}>>;
|
|
2243
2370
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
2244
2371
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
2245
|
-
wristbandColor: z.
|
|
2372
|
+
wristbandColor: z.ZodDefault<z.ZodString>;
|
|
2373
|
+
accentColor: z.ZodDefault<z.ZodString>;
|
|
2374
|
+
isDark: z.ZodDefault<z.ZodBoolean>;
|
|
2375
|
+
glassMode: z.ZodDefault<z.ZodBoolean>;
|
|
2376
|
+
cornerRadius: z.ZodDefault<z.ZodNumber>;
|
|
2377
|
+
perforationStyle: z.ZodDefault<z.ZodEnum<["solid", "dashed", "dotted"]>>;
|
|
2246
2378
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2247
2379
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2248
|
-
benefits: z.
|
|
2380
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
2249
2381
|
tier: z.ZodDefault<z.ZodString>;
|
|
2250
2382
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
2251
2383
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -2264,18 +2396,24 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2264
2396
|
currency: string;
|
|
2265
2397
|
};
|
|
2266
2398
|
quantity: number;
|
|
2399
|
+
wristbandColor: string;
|
|
2400
|
+
accentColor: string;
|
|
2401
|
+
isDark: boolean;
|
|
2402
|
+
glassMode: boolean;
|
|
2403
|
+
cornerRadius: number;
|
|
2404
|
+
perforationStyle: "solid" | "dashed" | "dotted";
|
|
2405
|
+
benefits: string[];
|
|
2267
2406
|
tier: string;
|
|
2268
2407
|
_id?: string | undefined;
|
|
2408
|
+
description?: string | undefined;
|
|
2269
2409
|
limits?: {
|
|
2270
2410
|
minPerOrder: number;
|
|
2271
2411
|
maxPerOrder: number;
|
|
2272
2412
|
} | undefined;
|
|
2273
2413
|
sold?: number | undefined;
|
|
2274
2414
|
reserved?: number | undefined;
|
|
2275
|
-
wristbandColor?: string | undefined;
|
|
2276
2415
|
isVisible?: boolean | undefined;
|
|
2277
2416
|
isActive?: boolean | undefined;
|
|
2278
|
-
benefits?: string[] | undefined;
|
|
2279
2417
|
salesWindow?: {
|
|
2280
2418
|
startDate?: string | undefined;
|
|
2281
2419
|
endDate?: string | undefined;
|
|
@@ -2288,6 +2426,7 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2288
2426
|
};
|
|
2289
2427
|
quantity: number;
|
|
2290
2428
|
_id?: string | undefined;
|
|
2429
|
+
description?: string | undefined;
|
|
2291
2430
|
limits?: {
|
|
2292
2431
|
minPerOrder?: number | undefined;
|
|
2293
2432
|
maxPerOrder?: number | undefined;
|
|
@@ -2295,6 +2434,11 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2295
2434
|
sold?: number | undefined;
|
|
2296
2435
|
reserved?: number | undefined;
|
|
2297
2436
|
wristbandColor?: string | undefined;
|
|
2437
|
+
accentColor?: string | undefined;
|
|
2438
|
+
isDark?: boolean | undefined;
|
|
2439
|
+
glassMode?: boolean | undefined;
|
|
2440
|
+
cornerRadius?: number | undefined;
|
|
2441
|
+
perforationStyle?: "solid" | "dashed" | "dotted" | undefined;
|
|
2298
2442
|
isVisible?: boolean | undefined;
|
|
2299
2443
|
isActive?: boolean | undefined;
|
|
2300
2444
|
benefits?: string[] | undefined;
|
|
@@ -2527,6 +2671,7 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2527
2671
|
tickets: z.ZodArray<z.ZodObject<{
|
|
2528
2672
|
_id: z.ZodOptional<z.ZodString>;
|
|
2529
2673
|
name: z.ZodString;
|
|
2674
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2530
2675
|
price: z.ZodObject<{
|
|
2531
2676
|
amount: z.ZodNumber;
|
|
2532
2677
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -2550,10 +2695,15 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2550
2695
|
}>>;
|
|
2551
2696
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
2552
2697
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
2553
|
-
wristbandColor: z.
|
|
2698
|
+
wristbandColor: z.ZodDefault<z.ZodString>;
|
|
2699
|
+
accentColor: z.ZodDefault<z.ZodString>;
|
|
2700
|
+
isDark: z.ZodDefault<z.ZodBoolean>;
|
|
2701
|
+
glassMode: z.ZodDefault<z.ZodBoolean>;
|
|
2702
|
+
cornerRadius: z.ZodDefault<z.ZodNumber>;
|
|
2703
|
+
perforationStyle: z.ZodDefault<z.ZodEnum<["solid", "dashed", "dotted"]>>;
|
|
2554
2704
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2555
2705
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2556
|
-
benefits: z.
|
|
2706
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
2557
2707
|
tier: z.ZodDefault<z.ZodString>;
|
|
2558
2708
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
2559
2709
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -2572,18 +2722,24 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2572
2722
|
currency: string;
|
|
2573
2723
|
};
|
|
2574
2724
|
quantity: number;
|
|
2725
|
+
wristbandColor: string;
|
|
2726
|
+
accentColor: string;
|
|
2727
|
+
isDark: boolean;
|
|
2728
|
+
glassMode: boolean;
|
|
2729
|
+
cornerRadius: number;
|
|
2730
|
+
perforationStyle: "solid" | "dashed" | "dotted";
|
|
2731
|
+
benefits: string[];
|
|
2575
2732
|
tier: string;
|
|
2576
2733
|
_id?: string | undefined;
|
|
2734
|
+
description?: string | undefined;
|
|
2577
2735
|
limits?: {
|
|
2578
2736
|
minPerOrder: number;
|
|
2579
2737
|
maxPerOrder: number;
|
|
2580
2738
|
} | undefined;
|
|
2581
2739
|
sold?: number | undefined;
|
|
2582
2740
|
reserved?: number | undefined;
|
|
2583
|
-
wristbandColor?: string | undefined;
|
|
2584
2741
|
isVisible?: boolean | undefined;
|
|
2585
2742
|
isActive?: boolean | undefined;
|
|
2586
|
-
benefits?: string[] | undefined;
|
|
2587
2743
|
salesWindow?: {
|
|
2588
2744
|
startDate?: string | undefined;
|
|
2589
2745
|
endDate?: string | undefined;
|
|
@@ -2596,6 +2752,7 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2596
2752
|
};
|
|
2597
2753
|
quantity: number;
|
|
2598
2754
|
_id?: string | undefined;
|
|
2755
|
+
description?: string | undefined;
|
|
2599
2756
|
limits?: {
|
|
2600
2757
|
minPerOrder?: number | undefined;
|
|
2601
2758
|
maxPerOrder?: number | undefined;
|
|
@@ -2603,6 +2760,11 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2603
2760
|
sold?: number | undefined;
|
|
2604
2761
|
reserved?: number | undefined;
|
|
2605
2762
|
wristbandColor?: string | undefined;
|
|
2763
|
+
accentColor?: string | undefined;
|
|
2764
|
+
isDark?: boolean | undefined;
|
|
2765
|
+
glassMode?: boolean | undefined;
|
|
2766
|
+
cornerRadius?: number | undefined;
|
|
2767
|
+
perforationStyle?: "solid" | "dashed" | "dotted" | undefined;
|
|
2606
2768
|
isVisible?: boolean | undefined;
|
|
2607
2769
|
isActive?: boolean | undefined;
|
|
2608
2770
|
benefits?: string[] | undefined;
|
|
@@ -2835,6 +2997,7 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2835
2997
|
tickets: z.ZodArray<z.ZodObject<{
|
|
2836
2998
|
_id: z.ZodOptional<z.ZodString>;
|
|
2837
2999
|
name: z.ZodString;
|
|
3000
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2838
3001
|
price: z.ZodObject<{
|
|
2839
3002
|
amount: z.ZodNumber;
|
|
2840
3003
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -2858,10 +3021,15 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2858
3021
|
}>>;
|
|
2859
3022
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
2860
3023
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
2861
|
-
wristbandColor: z.
|
|
3024
|
+
wristbandColor: z.ZodDefault<z.ZodString>;
|
|
3025
|
+
accentColor: z.ZodDefault<z.ZodString>;
|
|
3026
|
+
isDark: z.ZodDefault<z.ZodBoolean>;
|
|
3027
|
+
glassMode: z.ZodDefault<z.ZodBoolean>;
|
|
3028
|
+
cornerRadius: z.ZodDefault<z.ZodNumber>;
|
|
3029
|
+
perforationStyle: z.ZodDefault<z.ZodEnum<["solid", "dashed", "dotted"]>>;
|
|
2862
3030
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2863
3031
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2864
|
-
benefits: z.
|
|
3032
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
2865
3033
|
tier: z.ZodDefault<z.ZodString>;
|
|
2866
3034
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
2867
3035
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -2880,18 +3048,24 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2880
3048
|
currency: string;
|
|
2881
3049
|
};
|
|
2882
3050
|
quantity: number;
|
|
3051
|
+
wristbandColor: string;
|
|
3052
|
+
accentColor: string;
|
|
3053
|
+
isDark: boolean;
|
|
3054
|
+
glassMode: boolean;
|
|
3055
|
+
cornerRadius: number;
|
|
3056
|
+
perforationStyle: "solid" | "dashed" | "dotted";
|
|
3057
|
+
benefits: string[];
|
|
2883
3058
|
tier: string;
|
|
2884
3059
|
_id?: string | undefined;
|
|
3060
|
+
description?: string | undefined;
|
|
2885
3061
|
limits?: {
|
|
2886
3062
|
minPerOrder: number;
|
|
2887
3063
|
maxPerOrder: number;
|
|
2888
3064
|
} | undefined;
|
|
2889
3065
|
sold?: number | undefined;
|
|
2890
3066
|
reserved?: number | undefined;
|
|
2891
|
-
wristbandColor?: string | undefined;
|
|
2892
3067
|
isVisible?: boolean | undefined;
|
|
2893
3068
|
isActive?: boolean | undefined;
|
|
2894
|
-
benefits?: string[] | undefined;
|
|
2895
3069
|
salesWindow?: {
|
|
2896
3070
|
startDate?: string | undefined;
|
|
2897
3071
|
endDate?: string | undefined;
|
|
@@ -2904,6 +3078,7 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2904
3078
|
};
|
|
2905
3079
|
quantity: number;
|
|
2906
3080
|
_id?: string | undefined;
|
|
3081
|
+
description?: string | undefined;
|
|
2907
3082
|
limits?: {
|
|
2908
3083
|
minPerOrder?: number | undefined;
|
|
2909
3084
|
maxPerOrder?: number | undefined;
|
|
@@ -2911,6 +3086,11 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2911
3086
|
sold?: number | undefined;
|
|
2912
3087
|
reserved?: number | undefined;
|
|
2913
3088
|
wristbandColor?: string | undefined;
|
|
3089
|
+
accentColor?: string | undefined;
|
|
3090
|
+
isDark?: boolean | undefined;
|
|
3091
|
+
glassMode?: boolean | undefined;
|
|
3092
|
+
cornerRadius?: number | undefined;
|
|
3093
|
+
perforationStyle?: "solid" | "dashed" | "dotted" | undefined;
|
|
2914
3094
|
isVisible?: boolean | undefined;
|
|
2915
3095
|
isActive?: boolean | undefined;
|
|
2916
3096
|
benefits?: string[] | undefined;
|
|
@@ -3144,6 +3324,7 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3144
3324
|
tickets: z.ZodArray<z.ZodObject<{
|
|
3145
3325
|
_id: z.ZodOptional<z.ZodString>;
|
|
3146
3326
|
name: z.ZodString;
|
|
3327
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3147
3328
|
price: z.ZodObject<{
|
|
3148
3329
|
amount: z.ZodNumber;
|
|
3149
3330
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -3167,10 +3348,15 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3167
3348
|
}>>;
|
|
3168
3349
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
3169
3350
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
3170
|
-
wristbandColor: z.
|
|
3351
|
+
wristbandColor: z.ZodDefault<z.ZodString>;
|
|
3352
|
+
accentColor: z.ZodDefault<z.ZodString>;
|
|
3353
|
+
isDark: z.ZodDefault<z.ZodBoolean>;
|
|
3354
|
+
glassMode: z.ZodDefault<z.ZodBoolean>;
|
|
3355
|
+
cornerRadius: z.ZodDefault<z.ZodNumber>;
|
|
3356
|
+
perforationStyle: z.ZodDefault<z.ZodEnum<["solid", "dashed", "dotted"]>>;
|
|
3171
3357
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3172
3358
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3173
|
-
benefits: z.
|
|
3359
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
3174
3360
|
tier: z.ZodDefault<z.ZodString>;
|
|
3175
3361
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
3176
3362
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -3189,18 +3375,24 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3189
3375
|
currency: string;
|
|
3190
3376
|
};
|
|
3191
3377
|
quantity: number;
|
|
3378
|
+
wristbandColor: string;
|
|
3379
|
+
accentColor: string;
|
|
3380
|
+
isDark: boolean;
|
|
3381
|
+
glassMode: boolean;
|
|
3382
|
+
cornerRadius: number;
|
|
3383
|
+
perforationStyle: "solid" | "dashed" | "dotted";
|
|
3384
|
+
benefits: string[];
|
|
3192
3385
|
tier: string;
|
|
3193
3386
|
_id?: string | undefined;
|
|
3387
|
+
description?: string | undefined;
|
|
3194
3388
|
limits?: {
|
|
3195
3389
|
minPerOrder: number;
|
|
3196
3390
|
maxPerOrder: number;
|
|
3197
3391
|
} | undefined;
|
|
3198
3392
|
sold?: number | undefined;
|
|
3199
3393
|
reserved?: number | undefined;
|
|
3200
|
-
wristbandColor?: string | undefined;
|
|
3201
3394
|
isVisible?: boolean | undefined;
|
|
3202
3395
|
isActive?: boolean | undefined;
|
|
3203
|
-
benefits?: string[] | undefined;
|
|
3204
3396
|
salesWindow?: {
|
|
3205
3397
|
startDate?: string | undefined;
|
|
3206
3398
|
endDate?: string | undefined;
|
|
@@ -3213,6 +3405,7 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3213
3405
|
};
|
|
3214
3406
|
quantity: number;
|
|
3215
3407
|
_id?: string | undefined;
|
|
3408
|
+
description?: string | undefined;
|
|
3216
3409
|
limits?: {
|
|
3217
3410
|
minPerOrder?: number | undefined;
|
|
3218
3411
|
maxPerOrder?: number | undefined;
|
|
@@ -3220,6 +3413,11 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3220
3413
|
sold?: number | undefined;
|
|
3221
3414
|
reserved?: number | undefined;
|
|
3222
3415
|
wristbandColor?: string | undefined;
|
|
3416
|
+
accentColor?: string | undefined;
|
|
3417
|
+
isDark?: boolean | undefined;
|
|
3418
|
+
glassMode?: boolean | undefined;
|
|
3419
|
+
cornerRadius?: number | undefined;
|
|
3420
|
+
perforationStyle?: "solid" | "dashed" | "dotted" | undefined;
|
|
3223
3421
|
isVisible?: boolean | undefined;
|
|
3224
3422
|
isActive?: boolean | undefined;
|
|
3225
3423
|
benefits?: string[] | undefined;
|
|
@@ -3452,6 +3650,7 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3452
3650
|
tickets: z.ZodArray<z.ZodObject<{
|
|
3453
3651
|
_id: z.ZodOptional<z.ZodString>;
|
|
3454
3652
|
name: z.ZodString;
|
|
3653
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3455
3654
|
price: z.ZodObject<{
|
|
3456
3655
|
amount: z.ZodNumber;
|
|
3457
3656
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -3475,10 +3674,15 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3475
3674
|
}>>;
|
|
3476
3675
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
3477
3676
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
3478
|
-
wristbandColor: z.
|
|
3677
|
+
wristbandColor: z.ZodDefault<z.ZodString>;
|
|
3678
|
+
accentColor: z.ZodDefault<z.ZodString>;
|
|
3679
|
+
isDark: z.ZodDefault<z.ZodBoolean>;
|
|
3680
|
+
glassMode: z.ZodDefault<z.ZodBoolean>;
|
|
3681
|
+
cornerRadius: z.ZodDefault<z.ZodNumber>;
|
|
3682
|
+
perforationStyle: z.ZodDefault<z.ZodEnum<["solid", "dashed", "dotted"]>>;
|
|
3479
3683
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3480
3684
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3481
|
-
benefits: z.
|
|
3685
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
3482
3686
|
tier: z.ZodDefault<z.ZodString>;
|
|
3483
3687
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
3484
3688
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -3497,18 +3701,24 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3497
3701
|
currency: string;
|
|
3498
3702
|
};
|
|
3499
3703
|
quantity: number;
|
|
3704
|
+
wristbandColor: string;
|
|
3705
|
+
accentColor: string;
|
|
3706
|
+
isDark: boolean;
|
|
3707
|
+
glassMode: boolean;
|
|
3708
|
+
cornerRadius: number;
|
|
3709
|
+
perforationStyle: "solid" | "dashed" | "dotted";
|
|
3710
|
+
benefits: string[];
|
|
3500
3711
|
tier: string;
|
|
3501
3712
|
_id?: string | undefined;
|
|
3713
|
+
description?: string | undefined;
|
|
3502
3714
|
limits?: {
|
|
3503
3715
|
minPerOrder: number;
|
|
3504
3716
|
maxPerOrder: number;
|
|
3505
3717
|
} | undefined;
|
|
3506
3718
|
sold?: number | undefined;
|
|
3507
3719
|
reserved?: number | undefined;
|
|
3508
|
-
wristbandColor?: string | undefined;
|
|
3509
3720
|
isVisible?: boolean | undefined;
|
|
3510
3721
|
isActive?: boolean | undefined;
|
|
3511
|
-
benefits?: string[] | undefined;
|
|
3512
3722
|
salesWindow?: {
|
|
3513
3723
|
startDate?: string | undefined;
|
|
3514
3724
|
endDate?: string | undefined;
|
|
@@ -3521,6 +3731,7 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3521
3731
|
};
|
|
3522
3732
|
quantity: number;
|
|
3523
3733
|
_id?: string | undefined;
|
|
3734
|
+
description?: string | undefined;
|
|
3524
3735
|
limits?: {
|
|
3525
3736
|
minPerOrder?: number | undefined;
|
|
3526
3737
|
maxPerOrder?: number | undefined;
|
|
@@ -3528,6 +3739,11 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3528
3739
|
sold?: number | undefined;
|
|
3529
3740
|
reserved?: number | undefined;
|
|
3530
3741
|
wristbandColor?: string | undefined;
|
|
3742
|
+
accentColor?: string | undefined;
|
|
3743
|
+
isDark?: boolean | undefined;
|
|
3744
|
+
glassMode?: boolean | undefined;
|
|
3745
|
+
cornerRadius?: number | undefined;
|
|
3746
|
+
perforationStyle?: "solid" | "dashed" | "dotted" | undefined;
|
|
3531
3747
|
isVisible?: boolean | undefined;
|
|
3532
3748
|
isActive?: boolean | undefined;
|
|
3533
3749
|
benefits?: string[] | undefined;
|
|
@@ -3760,6 +3976,7 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3760
3976
|
tickets: z.ZodArray<z.ZodObject<{
|
|
3761
3977
|
_id: z.ZodOptional<z.ZodString>;
|
|
3762
3978
|
name: z.ZodString;
|
|
3979
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3763
3980
|
price: z.ZodObject<{
|
|
3764
3981
|
amount: z.ZodNumber;
|
|
3765
3982
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -3783,10 +4000,15 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3783
4000
|
}>>;
|
|
3784
4001
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
3785
4002
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
3786
|
-
wristbandColor: z.
|
|
4003
|
+
wristbandColor: z.ZodDefault<z.ZodString>;
|
|
4004
|
+
accentColor: z.ZodDefault<z.ZodString>;
|
|
4005
|
+
isDark: z.ZodDefault<z.ZodBoolean>;
|
|
4006
|
+
glassMode: z.ZodDefault<z.ZodBoolean>;
|
|
4007
|
+
cornerRadius: z.ZodDefault<z.ZodNumber>;
|
|
4008
|
+
perforationStyle: z.ZodDefault<z.ZodEnum<["solid", "dashed", "dotted"]>>;
|
|
3787
4009
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3788
4010
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3789
|
-
benefits: z.
|
|
4011
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
3790
4012
|
tier: z.ZodDefault<z.ZodString>;
|
|
3791
4013
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
3792
4014
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -3805,18 +4027,24 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3805
4027
|
currency: string;
|
|
3806
4028
|
};
|
|
3807
4029
|
quantity: number;
|
|
4030
|
+
wristbandColor: string;
|
|
4031
|
+
accentColor: string;
|
|
4032
|
+
isDark: boolean;
|
|
4033
|
+
glassMode: boolean;
|
|
4034
|
+
cornerRadius: number;
|
|
4035
|
+
perforationStyle: "solid" | "dashed" | "dotted";
|
|
4036
|
+
benefits: string[];
|
|
3808
4037
|
tier: string;
|
|
3809
4038
|
_id?: string | undefined;
|
|
4039
|
+
description?: string | undefined;
|
|
3810
4040
|
limits?: {
|
|
3811
4041
|
minPerOrder: number;
|
|
3812
4042
|
maxPerOrder: number;
|
|
3813
4043
|
} | undefined;
|
|
3814
4044
|
sold?: number | undefined;
|
|
3815
4045
|
reserved?: number | undefined;
|
|
3816
|
-
wristbandColor?: string | undefined;
|
|
3817
4046
|
isVisible?: boolean | undefined;
|
|
3818
4047
|
isActive?: boolean | undefined;
|
|
3819
|
-
benefits?: string[] | undefined;
|
|
3820
4048
|
salesWindow?: {
|
|
3821
4049
|
startDate?: string | undefined;
|
|
3822
4050
|
endDate?: string | undefined;
|
|
@@ -3829,6 +4057,7 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3829
4057
|
};
|
|
3830
4058
|
quantity: number;
|
|
3831
4059
|
_id?: string | undefined;
|
|
4060
|
+
description?: string | undefined;
|
|
3832
4061
|
limits?: {
|
|
3833
4062
|
minPerOrder?: number | undefined;
|
|
3834
4063
|
maxPerOrder?: number | undefined;
|
|
@@ -3836,6 +4065,11 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3836
4065
|
sold?: number | undefined;
|
|
3837
4066
|
reserved?: number | undefined;
|
|
3838
4067
|
wristbandColor?: string | undefined;
|
|
4068
|
+
accentColor?: string | undefined;
|
|
4069
|
+
isDark?: boolean | undefined;
|
|
4070
|
+
glassMode?: boolean | undefined;
|
|
4071
|
+
cornerRadius?: number | undefined;
|
|
4072
|
+
perforationStyle?: "solid" | "dashed" | "dotted" | undefined;
|
|
3839
4073
|
isVisible?: boolean | undefined;
|
|
3840
4074
|
isActive?: boolean | undefined;
|
|
3841
4075
|
benefits?: string[] | undefined;
|
|
@@ -4064,6 +4298,7 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4064
4298
|
tickets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4065
4299
|
_id: z.ZodOptional<z.ZodString>;
|
|
4066
4300
|
name: z.ZodString;
|
|
4301
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4067
4302
|
price: z.ZodObject<{
|
|
4068
4303
|
amount: z.ZodNumber;
|
|
4069
4304
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -4087,10 +4322,15 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4087
4322
|
}>>;
|
|
4088
4323
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
4089
4324
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
4090
|
-
wristbandColor: z.
|
|
4325
|
+
wristbandColor: z.ZodDefault<z.ZodString>;
|
|
4326
|
+
accentColor: z.ZodDefault<z.ZodString>;
|
|
4327
|
+
isDark: z.ZodDefault<z.ZodBoolean>;
|
|
4328
|
+
glassMode: z.ZodDefault<z.ZodBoolean>;
|
|
4329
|
+
cornerRadius: z.ZodDefault<z.ZodNumber>;
|
|
4330
|
+
perforationStyle: z.ZodDefault<z.ZodEnum<["solid", "dashed", "dotted"]>>;
|
|
4091
4331
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4092
4332
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4093
|
-
benefits: z.
|
|
4333
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
4094
4334
|
tier: z.ZodDefault<z.ZodString>;
|
|
4095
4335
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
4096
4336
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -4109,18 +4349,24 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4109
4349
|
currency: string;
|
|
4110
4350
|
};
|
|
4111
4351
|
quantity: number;
|
|
4352
|
+
wristbandColor: string;
|
|
4353
|
+
accentColor: string;
|
|
4354
|
+
isDark: boolean;
|
|
4355
|
+
glassMode: boolean;
|
|
4356
|
+
cornerRadius: number;
|
|
4357
|
+
perforationStyle: "solid" | "dashed" | "dotted";
|
|
4358
|
+
benefits: string[];
|
|
4112
4359
|
tier: string;
|
|
4113
4360
|
_id?: string | undefined;
|
|
4361
|
+
description?: string | undefined;
|
|
4114
4362
|
limits?: {
|
|
4115
4363
|
minPerOrder: number;
|
|
4116
4364
|
maxPerOrder: number;
|
|
4117
4365
|
} | undefined;
|
|
4118
4366
|
sold?: number | undefined;
|
|
4119
4367
|
reserved?: number | undefined;
|
|
4120
|
-
wristbandColor?: string | undefined;
|
|
4121
4368
|
isVisible?: boolean | undefined;
|
|
4122
4369
|
isActive?: boolean | undefined;
|
|
4123
|
-
benefits?: string[] | undefined;
|
|
4124
4370
|
salesWindow?: {
|
|
4125
4371
|
startDate?: string | undefined;
|
|
4126
4372
|
endDate?: string | undefined;
|
|
@@ -4133,6 +4379,7 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4133
4379
|
};
|
|
4134
4380
|
quantity: number;
|
|
4135
4381
|
_id?: string | undefined;
|
|
4382
|
+
description?: string | undefined;
|
|
4136
4383
|
limits?: {
|
|
4137
4384
|
minPerOrder?: number | undefined;
|
|
4138
4385
|
maxPerOrder?: number | undefined;
|
|
@@ -4140,6 +4387,11 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4140
4387
|
sold?: number | undefined;
|
|
4141
4388
|
reserved?: number | undefined;
|
|
4142
4389
|
wristbandColor?: string | undefined;
|
|
4390
|
+
accentColor?: string | undefined;
|
|
4391
|
+
isDark?: boolean | undefined;
|
|
4392
|
+
glassMode?: boolean | undefined;
|
|
4393
|
+
cornerRadius?: number | undefined;
|
|
4394
|
+
perforationStyle?: "solid" | "dashed" | "dotted" | undefined;
|
|
4143
4395
|
isVisible?: boolean | undefined;
|
|
4144
4396
|
isActive?: boolean | undefined;
|
|
4145
4397
|
benefits?: string[] | undefined;
|
|
@@ -4367,6 +4619,7 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4367
4619
|
tickets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4368
4620
|
_id: z.ZodOptional<z.ZodString>;
|
|
4369
4621
|
name: z.ZodString;
|
|
4622
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4370
4623
|
price: z.ZodObject<{
|
|
4371
4624
|
amount: z.ZodNumber;
|
|
4372
4625
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -4390,10 +4643,15 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4390
4643
|
}>>;
|
|
4391
4644
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
4392
4645
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
4393
|
-
wristbandColor: z.
|
|
4646
|
+
wristbandColor: z.ZodDefault<z.ZodString>;
|
|
4647
|
+
accentColor: z.ZodDefault<z.ZodString>;
|
|
4648
|
+
isDark: z.ZodDefault<z.ZodBoolean>;
|
|
4649
|
+
glassMode: z.ZodDefault<z.ZodBoolean>;
|
|
4650
|
+
cornerRadius: z.ZodDefault<z.ZodNumber>;
|
|
4651
|
+
perforationStyle: z.ZodDefault<z.ZodEnum<["solid", "dashed", "dotted"]>>;
|
|
4394
4652
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4395
4653
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4396
|
-
benefits: z.
|
|
4654
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
4397
4655
|
tier: z.ZodDefault<z.ZodString>;
|
|
4398
4656
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
4399
4657
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -4412,18 +4670,24 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4412
4670
|
currency: string;
|
|
4413
4671
|
};
|
|
4414
4672
|
quantity: number;
|
|
4673
|
+
wristbandColor: string;
|
|
4674
|
+
accentColor: string;
|
|
4675
|
+
isDark: boolean;
|
|
4676
|
+
glassMode: boolean;
|
|
4677
|
+
cornerRadius: number;
|
|
4678
|
+
perforationStyle: "solid" | "dashed" | "dotted";
|
|
4679
|
+
benefits: string[];
|
|
4415
4680
|
tier: string;
|
|
4416
4681
|
_id?: string | undefined;
|
|
4682
|
+
description?: string | undefined;
|
|
4417
4683
|
limits?: {
|
|
4418
4684
|
minPerOrder: number;
|
|
4419
4685
|
maxPerOrder: number;
|
|
4420
4686
|
} | undefined;
|
|
4421
4687
|
sold?: number | undefined;
|
|
4422
4688
|
reserved?: number | undefined;
|
|
4423
|
-
wristbandColor?: string | undefined;
|
|
4424
4689
|
isVisible?: boolean | undefined;
|
|
4425
4690
|
isActive?: boolean | undefined;
|
|
4426
|
-
benefits?: string[] | undefined;
|
|
4427
4691
|
salesWindow?: {
|
|
4428
4692
|
startDate?: string | undefined;
|
|
4429
4693
|
endDate?: string | undefined;
|
|
@@ -4436,6 +4700,7 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4436
4700
|
};
|
|
4437
4701
|
quantity: number;
|
|
4438
4702
|
_id?: string | undefined;
|
|
4703
|
+
description?: string | undefined;
|
|
4439
4704
|
limits?: {
|
|
4440
4705
|
minPerOrder?: number | undefined;
|
|
4441
4706
|
maxPerOrder?: number | undefined;
|
|
@@ -4443,6 +4708,11 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4443
4708
|
sold?: number | undefined;
|
|
4444
4709
|
reserved?: number | undefined;
|
|
4445
4710
|
wristbandColor?: string | undefined;
|
|
4711
|
+
accentColor?: string | undefined;
|
|
4712
|
+
isDark?: boolean | undefined;
|
|
4713
|
+
glassMode?: boolean | undefined;
|
|
4714
|
+
cornerRadius?: number | undefined;
|
|
4715
|
+
perforationStyle?: "solid" | "dashed" | "dotted" | undefined;
|
|
4446
4716
|
isVisible?: boolean | undefined;
|
|
4447
4717
|
isActive?: boolean | undefined;
|
|
4448
4718
|
benefits?: string[] | undefined;
|
|
@@ -4670,6 +4940,7 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4670
4940
|
tickets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4671
4941
|
_id: z.ZodOptional<z.ZodString>;
|
|
4672
4942
|
name: z.ZodString;
|
|
4943
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4673
4944
|
price: z.ZodObject<{
|
|
4674
4945
|
amount: z.ZodNumber;
|
|
4675
4946
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -4693,10 +4964,15 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4693
4964
|
}>>;
|
|
4694
4965
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
4695
4966
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
4696
|
-
wristbandColor: z.
|
|
4967
|
+
wristbandColor: z.ZodDefault<z.ZodString>;
|
|
4968
|
+
accentColor: z.ZodDefault<z.ZodString>;
|
|
4969
|
+
isDark: z.ZodDefault<z.ZodBoolean>;
|
|
4970
|
+
glassMode: z.ZodDefault<z.ZodBoolean>;
|
|
4971
|
+
cornerRadius: z.ZodDefault<z.ZodNumber>;
|
|
4972
|
+
perforationStyle: z.ZodDefault<z.ZodEnum<["solid", "dashed", "dotted"]>>;
|
|
4697
4973
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4698
4974
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4699
|
-
benefits: z.
|
|
4975
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
4700
4976
|
tier: z.ZodDefault<z.ZodString>;
|
|
4701
4977
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
4702
4978
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -4715,18 +4991,24 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4715
4991
|
currency: string;
|
|
4716
4992
|
};
|
|
4717
4993
|
quantity: number;
|
|
4994
|
+
wristbandColor: string;
|
|
4995
|
+
accentColor: string;
|
|
4996
|
+
isDark: boolean;
|
|
4997
|
+
glassMode: boolean;
|
|
4998
|
+
cornerRadius: number;
|
|
4999
|
+
perforationStyle: "solid" | "dashed" | "dotted";
|
|
5000
|
+
benefits: string[];
|
|
4718
5001
|
tier: string;
|
|
4719
5002
|
_id?: string | undefined;
|
|
5003
|
+
description?: string | undefined;
|
|
4720
5004
|
limits?: {
|
|
4721
5005
|
minPerOrder: number;
|
|
4722
5006
|
maxPerOrder: number;
|
|
4723
5007
|
} | undefined;
|
|
4724
5008
|
sold?: number | undefined;
|
|
4725
5009
|
reserved?: number | undefined;
|
|
4726
|
-
wristbandColor?: string | undefined;
|
|
4727
5010
|
isVisible?: boolean | undefined;
|
|
4728
5011
|
isActive?: boolean | undefined;
|
|
4729
|
-
benefits?: string[] | undefined;
|
|
4730
5012
|
salesWindow?: {
|
|
4731
5013
|
startDate?: string | undefined;
|
|
4732
5014
|
endDate?: string | undefined;
|
|
@@ -4739,6 +5021,7 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4739
5021
|
};
|
|
4740
5022
|
quantity: number;
|
|
4741
5023
|
_id?: string | undefined;
|
|
5024
|
+
description?: string | undefined;
|
|
4742
5025
|
limits?: {
|
|
4743
5026
|
minPerOrder?: number | undefined;
|
|
4744
5027
|
maxPerOrder?: number | undefined;
|
|
@@ -4746,6 +5029,11 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4746
5029
|
sold?: number | undefined;
|
|
4747
5030
|
reserved?: number | undefined;
|
|
4748
5031
|
wristbandColor?: string | undefined;
|
|
5032
|
+
accentColor?: string | undefined;
|
|
5033
|
+
isDark?: boolean | undefined;
|
|
5034
|
+
glassMode?: boolean | undefined;
|
|
5035
|
+
cornerRadius?: number | undefined;
|
|
5036
|
+
perforationStyle?: "solid" | "dashed" | "dotted" | undefined;
|
|
4749
5037
|
isVisible?: boolean | undefined;
|
|
4750
5038
|
isActive?: boolean | undefined;
|
|
4751
5039
|
benefits?: string[] | undefined;
|
|
@@ -32,6 +32,7 @@ export declare const limitsSchema: z.ZodObject<{
|
|
|
32
32
|
export declare const displayTicketSchema: z.ZodObject<{
|
|
33
33
|
_id: z.ZodOptional<z.ZodString>;
|
|
34
34
|
name: z.ZodString;
|
|
35
|
+
description: z.ZodOptional<z.ZodString>;
|
|
35
36
|
price: z.ZodObject<{
|
|
36
37
|
amount: z.ZodNumber;
|
|
37
38
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -55,10 +56,15 @@ export declare const displayTicketSchema: z.ZodObject<{
|
|
|
55
56
|
}>>;
|
|
56
57
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
57
58
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
58
|
-
wristbandColor: z.
|
|
59
|
+
wristbandColor: z.ZodDefault<z.ZodString>;
|
|
60
|
+
accentColor: z.ZodDefault<z.ZodString>;
|
|
61
|
+
isDark: z.ZodDefault<z.ZodBoolean>;
|
|
62
|
+
glassMode: z.ZodDefault<z.ZodBoolean>;
|
|
63
|
+
cornerRadius: z.ZodDefault<z.ZodNumber>;
|
|
64
|
+
perforationStyle: z.ZodDefault<z.ZodEnum<["solid", "dashed", "dotted"]>>;
|
|
59
65
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
60
66
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
61
|
-
benefits: z.
|
|
67
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
62
68
|
tier: z.ZodDefault<z.ZodString>;
|
|
63
69
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
64
70
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -77,18 +83,24 @@ export declare const displayTicketSchema: z.ZodObject<{
|
|
|
77
83
|
currency: string;
|
|
78
84
|
};
|
|
79
85
|
quantity: number;
|
|
86
|
+
wristbandColor: string;
|
|
87
|
+
accentColor: string;
|
|
88
|
+
isDark: boolean;
|
|
89
|
+
glassMode: boolean;
|
|
90
|
+
cornerRadius: number;
|
|
91
|
+
perforationStyle: "solid" | "dashed" | "dotted";
|
|
92
|
+
benefits: string[];
|
|
80
93
|
tier: string;
|
|
81
94
|
_id?: string | undefined;
|
|
95
|
+
description?: string | undefined;
|
|
82
96
|
limits?: {
|
|
83
97
|
minPerOrder: number;
|
|
84
98
|
maxPerOrder: number;
|
|
85
99
|
} | undefined;
|
|
86
100
|
sold?: number | undefined;
|
|
87
101
|
reserved?: number | undefined;
|
|
88
|
-
wristbandColor?: string | undefined;
|
|
89
102
|
isVisible?: boolean | undefined;
|
|
90
103
|
isActive?: boolean | undefined;
|
|
91
|
-
benefits?: string[] | undefined;
|
|
92
104
|
salesWindow?: {
|
|
93
105
|
startDate?: string | undefined;
|
|
94
106
|
endDate?: string | undefined;
|
|
@@ -101,6 +113,7 @@ export declare const displayTicketSchema: z.ZodObject<{
|
|
|
101
113
|
};
|
|
102
114
|
quantity: number;
|
|
103
115
|
_id?: string | undefined;
|
|
116
|
+
description?: string | undefined;
|
|
104
117
|
limits?: {
|
|
105
118
|
minPerOrder?: number | undefined;
|
|
106
119
|
maxPerOrder?: number | undefined;
|
|
@@ -108,6 +121,11 @@ export declare const displayTicketSchema: z.ZodObject<{
|
|
|
108
121
|
sold?: number | undefined;
|
|
109
122
|
reserved?: number | undefined;
|
|
110
123
|
wristbandColor?: string | undefined;
|
|
124
|
+
accentColor?: string | undefined;
|
|
125
|
+
isDark?: boolean | undefined;
|
|
126
|
+
glassMode?: boolean | undefined;
|
|
127
|
+
cornerRadius?: number | undefined;
|
|
128
|
+
perforationStyle?: "solid" | "dashed" | "dotted" | undefined;
|
|
111
129
|
isVisible?: boolean | undefined;
|
|
112
130
|
isActive?: boolean | undefined;
|
|
113
131
|
benefits?: string[] | undefined;
|
|
@@ -17,15 +17,23 @@ exports.limitsSchema = zod_1.z.object({
|
|
|
17
17
|
exports.displayTicketSchema = zod_1.z.object({
|
|
18
18
|
_id: zod_1.z.string().optional(),
|
|
19
19
|
name: zod_1.z.string({ required_error: 'Ticket name is required' }),
|
|
20
|
+
description: zod_1.z.string().optional(),
|
|
20
21
|
price: exports.priceSchema,
|
|
21
22
|
quantity: zod_1.z.number({ required_error: 'Ticket quantity is required' }).int('Quantity must be an integer').positive('Quantity must be positive'),
|
|
22
23
|
limits: exports.limitsSchema.optional(),
|
|
23
24
|
sold: zod_1.z.number().default(0).optional(),
|
|
24
25
|
reserved: zod_1.z.number().default(0).optional(),
|
|
25
|
-
|
|
26
|
+
// Visual customization
|
|
27
|
+
wristbandColor: zod_1.z.string().default('#4f46e5'),
|
|
28
|
+
accentColor: zod_1.z.string().default('#4f46e5'),
|
|
29
|
+
isDark: zod_1.z.boolean().default(false),
|
|
30
|
+
glassMode: zod_1.z.boolean().default(false),
|
|
31
|
+
cornerRadius: zod_1.z.number().min(0).max(50).default(32),
|
|
32
|
+
perforationStyle: zod_1.z.enum(['solid', 'dashed', 'dotted']).default('dotted'),
|
|
33
|
+
// Metadata
|
|
26
34
|
isVisible: zod_1.z.boolean().default(true).optional(),
|
|
27
35
|
isActive: zod_1.z.boolean().default(true).optional(),
|
|
28
|
-
benefits: zod_1.z.array(zod_1.z.string(), { required_error: 'Benefits must be an array of strings' }).
|
|
36
|
+
benefits: zod_1.z.array(zod_1.z.string(), { required_error: 'Benefits must be an array of strings' }).default([]),
|
|
29
37
|
tier: zod_1.z.string({ required_error: 'Ticket tier must be early_bird, regular or vip' }).default('regular'),
|
|
30
38
|
salesWindow: exports.salesWindowSchema.optional(),
|
|
31
39
|
});
|
package/package.json
CHANGED
|
@@ -18,15 +18,25 @@ export const limitsSchema = z.object({
|
|
|
18
18
|
export const displayTicketSchema = z.object({
|
|
19
19
|
_id: z.string().optional(),
|
|
20
20
|
name: z.string({ required_error: 'Ticket name is required' }),
|
|
21
|
+
description: z.string().optional(),
|
|
21
22
|
price: priceSchema,
|
|
22
23
|
quantity: z.number({ required_error: 'Ticket quantity is required' }).int('Quantity must be an integer').positive('Quantity must be positive'),
|
|
23
24
|
limits: limitsSchema.optional(),
|
|
24
25
|
sold: z.number().default(0).optional(),
|
|
25
26
|
reserved: z.number().default(0).optional(),
|
|
26
|
-
|
|
27
|
+
|
|
28
|
+
// Visual customization
|
|
29
|
+
wristbandColor: z.string().default('#4f46e5'),
|
|
30
|
+
accentColor: z.string().default('#4f46e5'),
|
|
31
|
+
isDark: z.boolean().default(false),
|
|
32
|
+
glassMode: z.boolean().default(false),
|
|
33
|
+
cornerRadius: z.number().min(0).max(50).default(32),
|
|
34
|
+
perforationStyle: z.enum(['solid', 'dashed', 'dotted']).default('dotted'),
|
|
35
|
+
|
|
36
|
+
// Metadata
|
|
27
37
|
isVisible: z.boolean().default(true).optional(),
|
|
28
38
|
isActive: z.boolean().default(true).optional(),
|
|
29
|
-
benefits: z.array(z.string(), { required_error: 'Benefits must be an array of strings' }).
|
|
39
|
+
benefits: z.array(z.string(), { required_error: 'Benefits must be an array of strings' }).default([]),
|
|
30
40
|
tier: z.string({ required_error: 'Ticket tier must be early_bird, regular or vip' }).default('regular'),
|
|
31
41
|
salesWindow: salesWindowSchema.optional(),
|
|
32
42
|
});
|