@mac777/project-pinecone-schema 1.0.7 → 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.
- package/dist/events/events.schema.d.ts +628 -316
- package/dist/events/events.schema.js +99 -17
- package/dist/events/events.type.d.ts +4 -1
- package/dist/events/utils/ticket.schema.d.ts +22 -4
- package/dist/events/utils/ticket.schema.js +10 -2
- package/package.json +1 -1
- package/src/events/events.schema.ts +119 -18
- package/src/events/events.type.ts +4 -1
- package/src/events/utils/ticket.schema.ts +12 -2
|
@@ -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;
|
|
@@ -1456,6 +1582,10 @@ export declare const protectedEventSchema: z.ZodObject<{
|
|
|
1456
1582
|
export declare const pendingApprovalEditSchema: z.ZodObject<{
|
|
1457
1583
|
eventId: z.ZodString;
|
|
1458
1584
|
hostId: z.ZodString;
|
|
1585
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1586
|
+
tagline: z.ZodOptional<z.ZodString>;
|
|
1587
|
+
highlights: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1588
|
+
languages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1459
1589
|
media: z.ZodObject<{
|
|
1460
1590
|
coverImage: z.ZodObject<{
|
|
1461
1591
|
alt: z.ZodString;
|
|
@@ -1506,94 +1636,31 @@ export declare const pendingApprovalEditSchema: z.ZodObject<{
|
|
|
1506
1636
|
url: string;
|
|
1507
1637
|
}[] | undefined;
|
|
1508
1638
|
}>;
|
|
1509
|
-
|
|
1639
|
+
additionalDocuments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1640
|
+
type: z.ZodOptional<z.ZodEnum<["venue_booking", "permit", "insurance", "license", "portfolio", "other"]>>;
|
|
1641
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1642
|
+
filename: z.ZodString;
|
|
1643
|
+
objectKey: z.ZodString;
|
|
1644
|
+
}, "strip", z.ZodTypeAny, {
|
|
1645
|
+
filename: string;
|
|
1646
|
+
objectKey: string;
|
|
1647
|
+
type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
|
|
1648
|
+
url?: string | undefined;
|
|
1649
|
+
}, {
|
|
1650
|
+
filename: string;
|
|
1651
|
+
objectKey: string;
|
|
1652
|
+
type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
|
|
1653
|
+
url?: string | undefined;
|
|
1654
|
+
}>, "many">>;
|
|
1510
1655
|
tickets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1511
|
-
_id: z.
|
|
1512
|
-
name: z.ZodString;
|
|
1513
|
-
price: z.ZodObject<{
|
|
1514
|
-
amount: z.ZodNumber;
|
|
1515
|
-
currency: z.ZodDefault<z.ZodString>;
|
|
1516
|
-
}, "strip", z.ZodTypeAny, {
|
|
1517
|
-
amount: number;
|
|
1518
|
-
currency: string;
|
|
1519
|
-
}, {
|
|
1520
|
-
amount: number;
|
|
1521
|
-
currency?: string | undefined;
|
|
1522
|
-
}>;
|
|
1523
|
-
quantity: z.ZodNumber;
|
|
1524
|
-
limits: z.ZodOptional<z.ZodObject<{
|
|
1525
|
-
minPerOrder: z.ZodDefault<z.ZodNumber>;
|
|
1526
|
-
maxPerOrder: z.ZodDefault<z.ZodNumber>;
|
|
1527
|
-
}, "strip", z.ZodTypeAny, {
|
|
1528
|
-
minPerOrder: number;
|
|
1529
|
-
maxPerOrder: number;
|
|
1530
|
-
}, {
|
|
1531
|
-
minPerOrder?: number | undefined;
|
|
1532
|
-
maxPerOrder?: number | undefined;
|
|
1533
|
-
}>>;
|
|
1534
|
-
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
1535
|
-
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
1536
|
-
wristbandColor: z.ZodOptional<z.ZodString>;
|
|
1537
|
-
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1538
|
-
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1656
|
+
_id: z.ZodString;
|
|
1539
1657
|
benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1540
|
-
tier: z.ZodDefault<z.ZodString>;
|
|
1541
|
-
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
1542
|
-
startDate: z.ZodOptional<z.ZodString>;
|
|
1543
|
-
endDate: z.ZodOptional<z.ZodString>;
|
|
1544
|
-
}, "strip", z.ZodTypeAny, {
|
|
1545
|
-
startDate?: string | undefined;
|
|
1546
|
-
endDate?: string | undefined;
|
|
1547
|
-
}, {
|
|
1548
|
-
startDate?: string | undefined;
|
|
1549
|
-
endDate?: string | undefined;
|
|
1550
|
-
}>>;
|
|
1551
1658
|
}, "strip", z.ZodTypeAny, {
|
|
1552
|
-
|
|
1553
|
-
price: {
|
|
1554
|
-
amount: number;
|
|
1555
|
-
currency: string;
|
|
1556
|
-
};
|
|
1557
|
-
quantity: number;
|
|
1558
|
-
tier: string;
|
|
1559
|
-
_id?: string | undefined;
|
|
1560
|
-
limits?: {
|
|
1561
|
-
minPerOrder: number;
|
|
1562
|
-
maxPerOrder: number;
|
|
1563
|
-
} | undefined;
|
|
1564
|
-
sold?: number | undefined;
|
|
1565
|
-
reserved?: number | undefined;
|
|
1566
|
-
wristbandColor?: string | undefined;
|
|
1567
|
-
isVisible?: boolean | undefined;
|
|
1568
|
-
isActive?: boolean | undefined;
|
|
1659
|
+
_id: string;
|
|
1569
1660
|
benefits?: string[] | undefined;
|
|
1570
|
-
salesWindow?: {
|
|
1571
|
-
startDate?: string | undefined;
|
|
1572
|
-
endDate?: string | undefined;
|
|
1573
|
-
} | undefined;
|
|
1574
1661
|
}, {
|
|
1575
|
-
|
|
1576
|
-
price: {
|
|
1577
|
-
amount: number;
|
|
1578
|
-
currency?: string | undefined;
|
|
1579
|
-
};
|
|
1580
|
-
quantity: number;
|
|
1581
|
-
_id?: string | undefined;
|
|
1582
|
-
limits?: {
|
|
1583
|
-
minPerOrder?: number | undefined;
|
|
1584
|
-
maxPerOrder?: number | undefined;
|
|
1585
|
-
} | undefined;
|
|
1586
|
-
sold?: number | undefined;
|
|
1587
|
-
reserved?: number | undefined;
|
|
1588
|
-
wristbandColor?: string | undefined;
|
|
1589
|
-
isVisible?: boolean | undefined;
|
|
1590
|
-
isActive?: boolean | undefined;
|
|
1662
|
+
_id: string;
|
|
1591
1663
|
benefits?: string[] | undefined;
|
|
1592
|
-
tier?: string | undefined;
|
|
1593
|
-
salesWindow?: {
|
|
1594
|
-
startDate?: string | undefined;
|
|
1595
|
-
endDate?: string | undefined;
|
|
1596
|
-
} | undefined;
|
|
1597
1664
|
}>, "many">>;
|
|
1598
1665
|
}, "strip", z.ZodTypeAny, {
|
|
1599
1666
|
media: {
|
|
@@ -1608,32 +1675,21 @@ export declare const pendingApprovalEditSchema: z.ZodObject<{
|
|
|
1608
1675
|
url: string;
|
|
1609
1676
|
}[] | undefined;
|
|
1610
1677
|
};
|
|
1611
|
-
description: string;
|
|
1612
1678
|
eventId: string;
|
|
1613
1679
|
hostId: string;
|
|
1680
|
+
description?: string | undefined;
|
|
1681
|
+
tagline?: string | undefined;
|
|
1682
|
+
highlights?: string[] | undefined;
|
|
1614
1683
|
tickets?: {
|
|
1615
|
-
|
|
1616
|
-
price: {
|
|
1617
|
-
amount: number;
|
|
1618
|
-
currency: string;
|
|
1619
|
-
};
|
|
1620
|
-
quantity: number;
|
|
1621
|
-
tier: string;
|
|
1622
|
-
_id?: string | undefined;
|
|
1623
|
-
limits?: {
|
|
1624
|
-
minPerOrder: number;
|
|
1625
|
-
maxPerOrder: number;
|
|
1626
|
-
} | undefined;
|
|
1627
|
-
sold?: number | undefined;
|
|
1628
|
-
reserved?: number | undefined;
|
|
1629
|
-
wristbandColor?: string | undefined;
|
|
1630
|
-
isVisible?: boolean | undefined;
|
|
1631
|
-
isActive?: boolean | undefined;
|
|
1684
|
+
_id: string;
|
|
1632
1685
|
benefits?: string[] | undefined;
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1686
|
+
}[] | undefined;
|
|
1687
|
+
languages?: string[] | undefined;
|
|
1688
|
+
additionalDocuments?: {
|
|
1689
|
+
filename: string;
|
|
1690
|
+
objectKey: string;
|
|
1691
|
+
type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
|
|
1692
|
+
url?: string | undefined;
|
|
1637
1693
|
}[] | undefined;
|
|
1638
1694
|
}, {
|
|
1639
1695
|
media: {
|
|
@@ -1648,37 +1704,30 @@ export declare const pendingApprovalEditSchema: z.ZodObject<{
|
|
|
1648
1704
|
url: string;
|
|
1649
1705
|
}[] | undefined;
|
|
1650
1706
|
};
|
|
1651
|
-
description: string;
|
|
1652
1707
|
eventId: string;
|
|
1653
1708
|
hostId: string;
|
|
1709
|
+
description?: string | undefined;
|
|
1710
|
+
tagline?: string | undefined;
|
|
1711
|
+
highlights?: string[] | undefined;
|
|
1654
1712
|
tickets?: {
|
|
1655
|
-
|
|
1656
|
-
price: {
|
|
1657
|
-
amount: number;
|
|
1658
|
-
currency?: string | undefined;
|
|
1659
|
-
};
|
|
1660
|
-
quantity: number;
|
|
1661
|
-
_id?: string | undefined;
|
|
1662
|
-
limits?: {
|
|
1663
|
-
minPerOrder?: number | undefined;
|
|
1664
|
-
maxPerOrder?: number | undefined;
|
|
1665
|
-
} | undefined;
|
|
1666
|
-
sold?: number | undefined;
|
|
1667
|
-
reserved?: number | undefined;
|
|
1668
|
-
wristbandColor?: string | undefined;
|
|
1669
|
-
isVisible?: boolean | undefined;
|
|
1670
|
-
isActive?: boolean | undefined;
|
|
1713
|
+
_id: string;
|
|
1671
1714
|
benefits?: string[] | undefined;
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1715
|
+
}[] | undefined;
|
|
1716
|
+
languages?: string[] | undefined;
|
|
1717
|
+
additionalDocuments?: {
|
|
1718
|
+
filename: string;
|
|
1719
|
+
objectKey: string;
|
|
1720
|
+
type?: "other" | "venue_booking" | "permit" | "insurance" | "license" | "portfolio" | undefined;
|
|
1721
|
+
url?: string | undefined;
|
|
1677
1722
|
}[] | undefined;
|
|
1678
1723
|
}>;
|
|
1679
|
-
export declare const approvedEventEditSchema: z.
|
|
1724
|
+
export declare const approvedEventEditSchema: z.ZodObject<{
|
|
1680
1725
|
eventId: z.ZodString;
|
|
1681
1726
|
hostId: z.ZodString;
|
|
1727
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1728
|
+
tagline: z.ZodOptional<z.ZodString>;
|
|
1729
|
+
highlights: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1730
|
+
languages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1682
1731
|
media: z.ZodObject<{
|
|
1683
1732
|
coverImage: z.ZodObject<{
|
|
1684
1733
|
alt: z.ZodString;
|
|
@@ -1729,95 +1778,68 @@ export declare const approvedEventEditSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1729
1778
|
url: string;
|
|
1730
1779
|
}[] | undefined;
|
|
1731
1780
|
}>;
|
|
1732
|
-
description: z.ZodString;
|
|
1733
1781
|
tickets: z.ZodArray<z.ZodObject<{
|
|
1734
1782
|
_id: z.ZodOptional<z.ZodString>;
|
|
1735
1783
|
name: z.ZodString;
|
|
1736
|
-
price: z.
|
|
1737
|
-
amount: z.ZodNumber;
|
|
1738
|
-
currency: z.ZodDefault<z.ZodString>;
|
|
1739
|
-
}, "strip", z.ZodTypeAny, {
|
|
1740
|
-
amount: number;
|
|
1741
|
-
currency: string;
|
|
1742
|
-
}, {
|
|
1743
|
-
amount: number;
|
|
1744
|
-
currency?: string | undefined;
|
|
1745
|
-
}>;
|
|
1784
|
+
price: z.ZodNumber;
|
|
1746
1785
|
quantity: z.ZodNumber;
|
|
1786
|
+
benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1787
|
+
wristbandColor: z.ZodDefault<z.ZodString>;
|
|
1788
|
+
isVisible: z.ZodDefault<z.ZodBoolean>;
|
|
1789
|
+
isActive: z.ZodDefault<z.ZodBoolean>;
|
|
1747
1790
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1748
|
-
minPerOrder: z.
|
|
1749
|
-
maxPerOrder: z.
|
|
1791
|
+
minPerOrder: z.ZodNumber;
|
|
1792
|
+
maxPerOrder: z.ZodNumber;
|
|
1750
1793
|
}, "strip", z.ZodTypeAny, {
|
|
1751
1794
|
minPerOrder: number;
|
|
1752
1795
|
maxPerOrder: number;
|
|
1753
1796
|
}, {
|
|
1754
|
-
minPerOrder
|
|
1755
|
-
maxPerOrder
|
|
1756
|
-
}>>;
|
|
1757
|
-
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
1758
|
-
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
1759
|
-
wristbandColor: z.ZodOptional<z.ZodString>;
|
|
1760
|
-
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1761
|
-
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1762
|
-
benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1763
|
-
tier: z.ZodDefault<z.ZodString>;
|
|
1764
|
-
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
1765
|
-
startDate: z.ZodOptional<z.ZodString>;
|
|
1766
|
-
endDate: z.ZodOptional<z.ZodString>;
|
|
1767
|
-
}, "strip", z.ZodTypeAny, {
|
|
1768
|
-
startDate?: string | undefined;
|
|
1769
|
-
endDate?: string | undefined;
|
|
1770
|
-
}, {
|
|
1771
|
-
startDate?: string | undefined;
|
|
1772
|
-
endDate?: string | undefined;
|
|
1797
|
+
minPerOrder: number;
|
|
1798
|
+
maxPerOrder: number;
|
|
1773
1799
|
}>>;
|
|
1774
1800
|
}, "strip", z.ZodTypeAny, {
|
|
1775
1801
|
name: string;
|
|
1776
|
-
price:
|
|
1777
|
-
amount: number;
|
|
1778
|
-
currency: string;
|
|
1779
|
-
};
|
|
1802
|
+
price: number;
|
|
1780
1803
|
quantity: number;
|
|
1781
|
-
|
|
1804
|
+
wristbandColor: string;
|
|
1805
|
+
isVisible: boolean;
|
|
1806
|
+
isActive: boolean;
|
|
1782
1807
|
_id?: string | undefined;
|
|
1783
1808
|
limits?: {
|
|
1784
1809
|
minPerOrder: number;
|
|
1785
1810
|
maxPerOrder: number;
|
|
1786
1811
|
} | undefined;
|
|
1787
|
-
sold?: number | undefined;
|
|
1788
|
-
reserved?: number | undefined;
|
|
1789
|
-
wristbandColor?: string | undefined;
|
|
1790
|
-
isVisible?: boolean | undefined;
|
|
1791
|
-
isActive?: boolean | undefined;
|
|
1792
1812
|
benefits?: string[] | undefined;
|
|
1793
|
-
salesWindow?: {
|
|
1794
|
-
startDate?: string | undefined;
|
|
1795
|
-
endDate?: string | undefined;
|
|
1796
|
-
} | undefined;
|
|
1797
1813
|
}, {
|
|
1798
1814
|
name: string;
|
|
1799
|
-
price:
|
|
1800
|
-
amount: number;
|
|
1801
|
-
currency?: string | undefined;
|
|
1802
|
-
};
|
|
1815
|
+
price: number;
|
|
1803
1816
|
quantity: number;
|
|
1804
1817
|
_id?: string | undefined;
|
|
1805
1818
|
limits?: {
|
|
1806
|
-
minPerOrder
|
|
1807
|
-
maxPerOrder
|
|
1819
|
+
minPerOrder: number;
|
|
1820
|
+
maxPerOrder: number;
|
|
1808
1821
|
} | undefined;
|
|
1809
|
-
sold?: number | undefined;
|
|
1810
|
-
reserved?: number | undefined;
|
|
1811
1822
|
wristbandColor?: string | undefined;
|
|
1812
1823
|
isVisible?: boolean | undefined;
|
|
1813
1824
|
isActive?: boolean | undefined;
|
|
1814
1825
|
benefits?: string[] | undefined;
|
|
1815
|
-
tier?: string | undefined;
|
|
1816
|
-
salesWindow?: {
|
|
1817
|
-
startDate?: string | undefined;
|
|
1818
|
-
endDate?: string | undefined;
|
|
1819
|
-
} | undefined;
|
|
1820
1826
|
}>, "many">;
|
|
1827
|
+
schedule: z.ZodEffects<z.ZodOptional<z.ZodObject<{
|
|
1828
|
+
startDate: z.ZodDate;
|
|
1829
|
+
endDate: z.ZodDate;
|
|
1830
|
+
}, "strip", z.ZodTypeAny, {
|
|
1831
|
+
startDate: Date;
|
|
1832
|
+
endDate: Date;
|
|
1833
|
+
}, {
|
|
1834
|
+
startDate: Date;
|
|
1835
|
+
endDate: Date;
|
|
1836
|
+
}>>, {
|
|
1837
|
+
startDate: Date;
|
|
1838
|
+
endDate: Date;
|
|
1839
|
+
} | undefined, {
|
|
1840
|
+
startDate: Date;
|
|
1841
|
+
endDate: Date;
|
|
1842
|
+
} | undefined>;
|
|
1821
1843
|
}, "strip", z.ZodTypeAny, {
|
|
1822
1844
|
media: {
|
|
1823
1845
|
coverImage: {
|
|
@@ -1831,33 +1853,30 @@ export declare const approvedEventEditSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1831
1853
|
url: string;
|
|
1832
1854
|
}[] | undefined;
|
|
1833
1855
|
};
|
|
1834
|
-
description: string;
|
|
1835
1856
|
tickets: {
|
|
1836
1857
|
name: string;
|
|
1837
|
-
price:
|
|
1838
|
-
amount: number;
|
|
1839
|
-
currency: string;
|
|
1840
|
-
};
|
|
1858
|
+
price: number;
|
|
1841
1859
|
quantity: number;
|
|
1842
|
-
|
|
1860
|
+
wristbandColor: string;
|
|
1861
|
+
isVisible: boolean;
|
|
1862
|
+
isActive: boolean;
|
|
1843
1863
|
_id?: string | undefined;
|
|
1844
1864
|
limits?: {
|
|
1845
1865
|
minPerOrder: number;
|
|
1846
1866
|
maxPerOrder: number;
|
|
1847
1867
|
} | undefined;
|
|
1848
|
-
sold?: number | undefined;
|
|
1849
|
-
reserved?: number | undefined;
|
|
1850
|
-
wristbandColor?: string | undefined;
|
|
1851
|
-
isVisible?: boolean | undefined;
|
|
1852
|
-
isActive?: boolean | undefined;
|
|
1853
1868
|
benefits?: string[] | undefined;
|
|
1854
|
-
salesWindow?: {
|
|
1855
|
-
startDate?: string | undefined;
|
|
1856
|
-
endDate?: string | undefined;
|
|
1857
|
-
} | undefined;
|
|
1858
1869
|
}[];
|
|
1859
1870
|
eventId: string;
|
|
1860
1871
|
hostId: string;
|
|
1872
|
+
description?: string | undefined;
|
|
1873
|
+
tagline?: string | undefined;
|
|
1874
|
+
highlights?: string[] | undefined;
|
|
1875
|
+
schedule?: {
|
|
1876
|
+
startDate: Date;
|
|
1877
|
+
endDate: Date;
|
|
1878
|
+
} | undefined;
|
|
1879
|
+
languages?: string[] | undefined;
|
|
1861
1880
|
}, {
|
|
1862
1881
|
media: {
|
|
1863
1882
|
coverImage: {
|
|
@@ -1871,35 +1890,65 @@ export declare const approvedEventEditSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1871
1890
|
url: string;
|
|
1872
1891
|
}[] | undefined;
|
|
1873
1892
|
};
|
|
1874
|
-
description: string;
|
|
1875
1893
|
tickets: {
|
|
1876
1894
|
name: string;
|
|
1877
|
-
price:
|
|
1878
|
-
amount: number;
|
|
1879
|
-
currency?: string | undefined;
|
|
1880
|
-
};
|
|
1895
|
+
price: number;
|
|
1881
1896
|
quantity: number;
|
|
1882
1897
|
_id?: string | undefined;
|
|
1883
1898
|
limits?: {
|
|
1884
|
-
minPerOrder
|
|
1885
|
-
maxPerOrder
|
|
1899
|
+
minPerOrder: number;
|
|
1900
|
+
maxPerOrder: number;
|
|
1886
1901
|
} | undefined;
|
|
1887
|
-
sold?: number | undefined;
|
|
1888
|
-
reserved?: number | undefined;
|
|
1889
1902
|
wristbandColor?: string | undefined;
|
|
1890
1903
|
isVisible?: boolean | undefined;
|
|
1891
1904
|
isActive?: boolean | undefined;
|
|
1892
1905
|
benefits?: string[] | undefined;
|
|
1893
|
-
tier?: string | undefined;
|
|
1894
|
-
salesWindow?: {
|
|
1895
|
-
startDate?: string | undefined;
|
|
1896
|
-
endDate?: string | undefined;
|
|
1897
|
-
} | undefined;
|
|
1898
1906
|
}[];
|
|
1899
1907
|
eventId: string;
|
|
1900
1908
|
hostId: string;
|
|
1901
|
-
|
|
1902
|
-
|
|
1909
|
+
description?: string | undefined;
|
|
1910
|
+
tagline?: string | undefined;
|
|
1911
|
+
highlights?: string[] | undefined;
|
|
1912
|
+
schedule?: {
|
|
1913
|
+
startDate: Date;
|
|
1914
|
+
endDate: Date;
|
|
1915
|
+
} | undefined;
|
|
1916
|
+
languages?: string[] | undefined;
|
|
1917
|
+
}>;
|
|
1918
|
+
export declare const publishedEventEditSchema: z.ZodObject<{
|
|
1919
|
+
eventId: z.ZodString;
|
|
1920
|
+
hostId: z.ZodString;
|
|
1921
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1922
|
+
highlights: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1923
|
+
languages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1924
|
+
media: z.ZodOptional<z.ZodObject<{
|
|
1925
|
+
coverImage: z.ZodObject<{
|
|
1926
|
+
alt: z.ZodString;
|
|
1927
|
+
thumbnailUrl: z.ZodString;
|
|
1928
|
+
url: z.ZodString;
|
|
1929
|
+
}, "strip", z.ZodTypeAny, {
|
|
1930
|
+
alt: string;
|
|
1931
|
+
thumbnailUrl: string;
|
|
1932
|
+
url: string;
|
|
1933
|
+
}, {
|
|
1934
|
+
alt: string;
|
|
1935
|
+
thumbnailUrl: string;
|
|
1936
|
+
url: string;
|
|
1937
|
+
}>;
|
|
1938
|
+
gallery: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1939
|
+
alt: z.ZodString;
|
|
1940
|
+
thumbnailUrl: z.ZodString;
|
|
1941
|
+
url: z.ZodString;
|
|
1942
|
+
}, "strip", z.ZodTypeAny, {
|
|
1943
|
+
alt: string;
|
|
1944
|
+
thumbnailUrl: string;
|
|
1945
|
+
url: string;
|
|
1946
|
+
}, {
|
|
1947
|
+
alt: string;
|
|
1948
|
+
thumbnailUrl: string;
|
|
1949
|
+
url: string;
|
|
1950
|
+
}>, "many">>;
|
|
1951
|
+
}, "strip", z.ZodTypeAny, {
|
|
1903
1952
|
coverImage: {
|
|
1904
1953
|
alt: string;
|
|
1905
1954
|
thumbnailUrl: string;
|
|
@@ -1910,36 +1959,79 @@ export declare const approvedEventEditSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1910
1959
|
thumbnailUrl: string;
|
|
1911
1960
|
url: string;
|
|
1912
1961
|
}[] | undefined;
|
|
1913
|
-
}
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
amount: number;
|
|
1919
|
-
currency: string;
|
|
1962
|
+
}, {
|
|
1963
|
+
coverImage: {
|
|
1964
|
+
alt: string;
|
|
1965
|
+
thumbnailUrl: string;
|
|
1966
|
+
url: string;
|
|
1920
1967
|
};
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1968
|
+
gallery?: {
|
|
1969
|
+
alt: string;
|
|
1970
|
+
thumbnailUrl: string;
|
|
1971
|
+
url: string;
|
|
1972
|
+
}[] | undefined;
|
|
1973
|
+
}>>;
|
|
1974
|
+
tickets: z.ZodArray<z.ZodObject<{
|
|
1975
|
+
_id: z.ZodString;
|
|
1976
|
+
price: z.ZodOptional<z.ZodNumber>;
|
|
1977
|
+
quantity: z.ZodOptional<z.ZodNumber>;
|
|
1978
|
+
benefits: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1979
|
+
wristbandColor: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1980
|
+
isVisible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1981
|
+
isActive: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1982
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
1983
|
+
minPerOrder: z.ZodOptional<z.ZodNumber>;
|
|
1984
|
+
maxPerOrder: z.ZodOptional<z.ZodNumber>;
|
|
1985
|
+
}, "strip", z.ZodTypeAny, {
|
|
1986
|
+
minPerOrder?: number | undefined;
|
|
1987
|
+
maxPerOrder?: number | undefined;
|
|
1988
|
+
}, {
|
|
1989
|
+
minPerOrder?: number | undefined;
|
|
1990
|
+
maxPerOrder?: number | undefined;
|
|
1991
|
+
}>>;
|
|
1992
|
+
}, "strip", z.ZodTypeAny, {
|
|
1993
|
+
_id: string;
|
|
1994
|
+
wristbandColor: string;
|
|
1995
|
+
isVisible: boolean;
|
|
1996
|
+
isActive: boolean;
|
|
1997
|
+
price?: number | undefined;
|
|
1998
|
+
quantity?: number | undefined;
|
|
1924
1999
|
limits?: {
|
|
1925
|
-
minPerOrder
|
|
1926
|
-
maxPerOrder
|
|
2000
|
+
minPerOrder?: number | undefined;
|
|
2001
|
+
maxPerOrder?: number | undefined;
|
|
2002
|
+
} | undefined;
|
|
2003
|
+
benefits?: string[] | undefined;
|
|
2004
|
+
}, {
|
|
2005
|
+
_id: string;
|
|
2006
|
+
price?: number | undefined;
|
|
2007
|
+
quantity?: number | undefined;
|
|
2008
|
+
limits?: {
|
|
2009
|
+
minPerOrder?: number | undefined;
|
|
2010
|
+
maxPerOrder?: number | undefined;
|
|
1927
2011
|
} | undefined;
|
|
1928
|
-
sold?: number | undefined;
|
|
1929
|
-
reserved?: number | undefined;
|
|
1930
2012
|
wristbandColor?: string | undefined;
|
|
1931
2013
|
isVisible?: boolean | undefined;
|
|
1932
2014
|
isActive?: boolean | undefined;
|
|
1933
2015
|
benefits?: string[] | undefined;
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
2016
|
+
}>, "many">;
|
|
2017
|
+
}, "strip", z.ZodTypeAny, {
|
|
2018
|
+
tickets: {
|
|
2019
|
+
_id: string;
|
|
2020
|
+
wristbandColor: string;
|
|
2021
|
+
isVisible: boolean;
|
|
2022
|
+
isActive: boolean;
|
|
2023
|
+
price?: number | undefined;
|
|
2024
|
+
quantity?: number | undefined;
|
|
2025
|
+
limits?: {
|
|
2026
|
+
minPerOrder?: number | undefined;
|
|
2027
|
+
maxPerOrder?: number | undefined;
|
|
1937
2028
|
} | undefined;
|
|
2029
|
+
benefits?: string[] | undefined;
|
|
1938
2030
|
}[];
|
|
1939
2031
|
eventId: string;
|
|
1940
2032
|
hostId: string;
|
|
1941
|
-
|
|
1942
|
-
media
|
|
2033
|
+
description?: string | undefined;
|
|
2034
|
+
media?: {
|
|
1943
2035
|
coverImage: {
|
|
1944
2036
|
alt: string;
|
|
1945
2037
|
thumbnailUrl: string;
|
|
@@ -1950,34 +2042,92 @@ export declare const approvedEventEditSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1950
2042
|
thumbnailUrl: string;
|
|
1951
2043
|
url: string;
|
|
1952
2044
|
}[] | undefined;
|
|
1953
|
-
};
|
|
1954
|
-
|
|
2045
|
+
} | undefined;
|
|
2046
|
+
highlights?: string[] | undefined;
|
|
2047
|
+
languages?: string[] | undefined;
|
|
2048
|
+
}, {
|
|
1955
2049
|
tickets: {
|
|
1956
|
-
|
|
1957
|
-
price
|
|
1958
|
-
|
|
1959
|
-
currency?: string | undefined;
|
|
1960
|
-
};
|
|
1961
|
-
quantity: number;
|
|
1962
|
-
_id?: string | undefined;
|
|
2050
|
+
_id: string;
|
|
2051
|
+
price?: number | undefined;
|
|
2052
|
+
quantity?: number | undefined;
|
|
1963
2053
|
limits?: {
|
|
1964
2054
|
minPerOrder?: number | undefined;
|
|
1965
2055
|
maxPerOrder?: number | undefined;
|
|
1966
2056
|
} | undefined;
|
|
1967
|
-
sold?: number | undefined;
|
|
1968
|
-
reserved?: number | undefined;
|
|
1969
2057
|
wristbandColor?: string | undefined;
|
|
1970
2058
|
isVisible?: boolean | undefined;
|
|
1971
2059
|
isActive?: boolean | undefined;
|
|
1972
2060
|
benefits?: string[] | undefined;
|
|
1973
|
-
tier?: string | undefined;
|
|
1974
|
-
salesWindow?: {
|
|
1975
|
-
startDate?: string | undefined;
|
|
1976
|
-
endDate?: string | undefined;
|
|
1977
|
-
} | undefined;
|
|
1978
2061
|
}[];
|
|
1979
2062
|
eventId: string;
|
|
1980
2063
|
hostId: string;
|
|
2064
|
+
description?: string | undefined;
|
|
2065
|
+
media?: {
|
|
2066
|
+
coverImage: {
|
|
2067
|
+
alt: string;
|
|
2068
|
+
thumbnailUrl: string;
|
|
2069
|
+
url: string;
|
|
2070
|
+
};
|
|
2071
|
+
gallery?: {
|
|
2072
|
+
alt: string;
|
|
2073
|
+
thumbnailUrl: string;
|
|
2074
|
+
url: string;
|
|
2075
|
+
}[] | undefined;
|
|
2076
|
+
} | undefined;
|
|
2077
|
+
highlights?: string[] | undefined;
|
|
2078
|
+
languages?: string[] | undefined;
|
|
2079
|
+
}>;
|
|
2080
|
+
export declare const liveEventEditSchema: z.ZodObject<{
|
|
2081
|
+
eventId: z.ZodString;
|
|
2082
|
+
hostId: z.ZodString;
|
|
2083
|
+
liveUpdate: z.ZodOptional<z.ZodString>;
|
|
2084
|
+
tickets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2085
|
+
_id: z.ZodString;
|
|
2086
|
+
quantity: z.ZodOptional<z.ZodNumber>;
|
|
2087
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
2088
|
+
}, "strip", z.ZodTypeAny, {
|
|
2089
|
+
_id: string;
|
|
2090
|
+
quantity?: number | undefined;
|
|
2091
|
+
isActive?: boolean | undefined;
|
|
2092
|
+
}, {
|
|
2093
|
+
_id: string;
|
|
2094
|
+
quantity?: number | undefined;
|
|
2095
|
+
isActive?: boolean | undefined;
|
|
2096
|
+
}>, "many">>;
|
|
2097
|
+
}, "strip", z.ZodTypeAny, {
|
|
2098
|
+
eventId: string;
|
|
2099
|
+
hostId: string;
|
|
2100
|
+
tickets?: {
|
|
2101
|
+
_id: string;
|
|
2102
|
+
quantity?: number | undefined;
|
|
2103
|
+
isActive?: boolean | undefined;
|
|
2104
|
+
}[] | undefined;
|
|
2105
|
+
liveUpdate?: string | undefined;
|
|
2106
|
+
}, {
|
|
2107
|
+
eventId: string;
|
|
2108
|
+
hostId: string;
|
|
2109
|
+
tickets?: {
|
|
2110
|
+
_id: string;
|
|
2111
|
+
quantity?: number | undefined;
|
|
2112
|
+
isActive?: boolean | undefined;
|
|
2113
|
+
}[] | undefined;
|
|
2114
|
+
liveUpdate?: string | undefined;
|
|
2115
|
+
}>;
|
|
2116
|
+
export declare const endedEventEditSchema: z.ZodObject<{
|
|
2117
|
+
eventId: z.ZodString;
|
|
2118
|
+
hostId: z.ZodString;
|
|
2119
|
+
recap: z.ZodOptional<z.ZodString>;
|
|
2120
|
+
eventPhotos: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2121
|
+
}, "strip", z.ZodTypeAny, {
|
|
2122
|
+
eventId: string;
|
|
2123
|
+
hostId: string;
|
|
2124
|
+
recap?: string | undefined;
|
|
2125
|
+
eventPhotos?: string[] | undefined;
|
|
2126
|
+
}, {
|
|
2127
|
+
eventId: string;
|
|
2128
|
+
hostId: string;
|
|
2129
|
+
recap?: string | undefined;
|
|
2130
|
+
eventPhotos?: string[] | undefined;
|
|
1981
2131
|
}>;
|
|
1982
2132
|
export declare const submitEventSchema: z.ZodObject<{
|
|
1983
2133
|
title: z.ZodString;
|
|
@@ -2195,6 +2345,7 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2195
2345
|
tickets: z.ZodArray<z.ZodObject<{
|
|
2196
2346
|
_id: z.ZodOptional<z.ZodString>;
|
|
2197
2347
|
name: z.ZodString;
|
|
2348
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2198
2349
|
price: z.ZodObject<{
|
|
2199
2350
|
amount: z.ZodNumber;
|
|
2200
2351
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -2218,10 +2369,15 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2218
2369
|
}>>;
|
|
2219
2370
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
2220
2371
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
2221
|
-
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"]>>;
|
|
2222
2378
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2223
2379
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2224
|
-
benefits: z.
|
|
2380
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
2225
2381
|
tier: z.ZodDefault<z.ZodString>;
|
|
2226
2382
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
2227
2383
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -2240,18 +2396,24 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2240
2396
|
currency: string;
|
|
2241
2397
|
};
|
|
2242
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[];
|
|
2243
2406
|
tier: string;
|
|
2244
2407
|
_id?: string | undefined;
|
|
2408
|
+
description?: string | undefined;
|
|
2245
2409
|
limits?: {
|
|
2246
2410
|
minPerOrder: number;
|
|
2247
2411
|
maxPerOrder: number;
|
|
2248
2412
|
} | undefined;
|
|
2249
2413
|
sold?: number | undefined;
|
|
2250
2414
|
reserved?: number | undefined;
|
|
2251
|
-
wristbandColor?: string | undefined;
|
|
2252
2415
|
isVisible?: boolean | undefined;
|
|
2253
2416
|
isActive?: boolean | undefined;
|
|
2254
|
-
benefits?: string[] | undefined;
|
|
2255
2417
|
salesWindow?: {
|
|
2256
2418
|
startDate?: string | undefined;
|
|
2257
2419
|
endDate?: string | undefined;
|
|
@@ -2264,6 +2426,7 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2264
2426
|
};
|
|
2265
2427
|
quantity: number;
|
|
2266
2428
|
_id?: string | undefined;
|
|
2429
|
+
description?: string | undefined;
|
|
2267
2430
|
limits?: {
|
|
2268
2431
|
minPerOrder?: number | undefined;
|
|
2269
2432
|
maxPerOrder?: number | undefined;
|
|
@@ -2271,6 +2434,11 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2271
2434
|
sold?: number | undefined;
|
|
2272
2435
|
reserved?: number | undefined;
|
|
2273
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;
|
|
2274
2442
|
isVisible?: boolean | undefined;
|
|
2275
2443
|
isActive?: boolean | undefined;
|
|
2276
2444
|
benefits?: string[] | undefined;
|
|
@@ -2503,6 +2671,7 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2503
2671
|
tickets: z.ZodArray<z.ZodObject<{
|
|
2504
2672
|
_id: z.ZodOptional<z.ZodString>;
|
|
2505
2673
|
name: z.ZodString;
|
|
2674
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2506
2675
|
price: z.ZodObject<{
|
|
2507
2676
|
amount: z.ZodNumber;
|
|
2508
2677
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -2526,10 +2695,15 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2526
2695
|
}>>;
|
|
2527
2696
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
2528
2697
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
2529
|
-
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"]>>;
|
|
2530
2704
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2531
2705
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2532
|
-
benefits: z.
|
|
2706
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
2533
2707
|
tier: z.ZodDefault<z.ZodString>;
|
|
2534
2708
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
2535
2709
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -2548,18 +2722,24 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2548
2722
|
currency: string;
|
|
2549
2723
|
};
|
|
2550
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[];
|
|
2551
2732
|
tier: string;
|
|
2552
2733
|
_id?: string | undefined;
|
|
2734
|
+
description?: string | undefined;
|
|
2553
2735
|
limits?: {
|
|
2554
2736
|
minPerOrder: number;
|
|
2555
2737
|
maxPerOrder: number;
|
|
2556
2738
|
} | undefined;
|
|
2557
2739
|
sold?: number | undefined;
|
|
2558
2740
|
reserved?: number | undefined;
|
|
2559
|
-
wristbandColor?: string | undefined;
|
|
2560
2741
|
isVisible?: boolean | undefined;
|
|
2561
2742
|
isActive?: boolean | undefined;
|
|
2562
|
-
benefits?: string[] | undefined;
|
|
2563
2743
|
salesWindow?: {
|
|
2564
2744
|
startDate?: string | undefined;
|
|
2565
2745
|
endDate?: string | undefined;
|
|
@@ -2572,6 +2752,7 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2572
2752
|
};
|
|
2573
2753
|
quantity: number;
|
|
2574
2754
|
_id?: string | undefined;
|
|
2755
|
+
description?: string | undefined;
|
|
2575
2756
|
limits?: {
|
|
2576
2757
|
minPerOrder?: number | undefined;
|
|
2577
2758
|
maxPerOrder?: number | undefined;
|
|
@@ -2579,6 +2760,11 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2579
2760
|
sold?: number | undefined;
|
|
2580
2761
|
reserved?: number | undefined;
|
|
2581
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;
|
|
2582
2768
|
isVisible?: boolean | undefined;
|
|
2583
2769
|
isActive?: boolean | undefined;
|
|
2584
2770
|
benefits?: string[] | undefined;
|
|
@@ -2811,6 +2997,7 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2811
2997
|
tickets: z.ZodArray<z.ZodObject<{
|
|
2812
2998
|
_id: z.ZodOptional<z.ZodString>;
|
|
2813
2999
|
name: z.ZodString;
|
|
3000
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2814
3001
|
price: z.ZodObject<{
|
|
2815
3002
|
amount: z.ZodNumber;
|
|
2816
3003
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -2834,10 +3021,15 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2834
3021
|
}>>;
|
|
2835
3022
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
2836
3023
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
2837
|
-
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"]>>;
|
|
2838
3030
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2839
3031
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2840
|
-
benefits: z.
|
|
3032
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
2841
3033
|
tier: z.ZodDefault<z.ZodString>;
|
|
2842
3034
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
2843
3035
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -2856,18 +3048,24 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2856
3048
|
currency: string;
|
|
2857
3049
|
};
|
|
2858
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[];
|
|
2859
3058
|
tier: string;
|
|
2860
3059
|
_id?: string | undefined;
|
|
3060
|
+
description?: string | undefined;
|
|
2861
3061
|
limits?: {
|
|
2862
3062
|
minPerOrder: number;
|
|
2863
3063
|
maxPerOrder: number;
|
|
2864
3064
|
} | undefined;
|
|
2865
3065
|
sold?: number | undefined;
|
|
2866
3066
|
reserved?: number | undefined;
|
|
2867
|
-
wristbandColor?: string | undefined;
|
|
2868
3067
|
isVisible?: boolean | undefined;
|
|
2869
3068
|
isActive?: boolean | undefined;
|
|
2870
|
-
benefits?: string[] | undefined;
|
|
2871
3069
|
salesWindow?: {
|
|
2872
3070
|
startDate?: string | undefined;
|
|
2873
3071
|
endDate?: string | undefined;
|
|
@@ -2880,6 +3078,7 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2880
3078
|
};
|
|
2881
3079
|
quantity: number;
|
|
2882
3080
|
_id?: string | undefined;
|
|
3081
|
+
description?: string | undefined;
|
|
2883
3082
|
limits?: {
|
|
2884
3083
|
minPerOrder?: number | undefined;
|
|
2885
3084
|
maxPerOrder?: number | undefined;
|
|
@@ -2887,6 +3086,11 @@ export declare const submitEventSchema: z.ZodObject<{
|
|
|
2887
3086
|
sold?: number | undefined;
|
|
2888
3087
|
reserved?: number | undefined;
|
|
2889
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;
|
|
2890
3094
|
isVisible?: boolean | undefined;
|
|
2891
3095
|
isActive?: boolean | undefined;
|
|
2892
3096
|
benefits?: string[] | undefined;
|
|
@@ -3120,6 +3324,7 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3120
3324
|
tickets: z.ZodArray<z.ZodObject<{
|
|
3121
3325
|
_id: z.ZodOptional<z.ZodString>;
|
|
3122
3326
|
name: z.ZodString;
|
|
3327
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3123
3328
|
price: z.ZodObject<{
|
|
3124
3329
|
amount: z.ZodNumber;
|
|
3125
3330
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -3143,10 +3348,15 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3143
3348
|
}>>;
|
|
3144
3349
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
3145
3350
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
3146
|
-
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"]>>;
|
|
3147
3357
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3148
3358
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3149
|
-
benefits: z.
|
|
3359
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
3150
3360
|
tier: z.ZodDefault<z.ZodString>;
|
|
3151
3361
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
3152
3362
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -3165,18 +3375,24 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3165
3375
|
currency: string;
|
|
3166
3376
|
};
|
|
3167
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[];
|
|
3168
3385
|
tier: string;
|
|
3169
3386
|
_id?: string | undefined;
|
|
3387
|
+
description?: string | undefined;
|
|
3170
3388
|
limits?: {
|
|
3171
3389
|
minPerOrder: number;
|
|
3172
3390
|
maxPerOrder: number;
|
|
3173
3391
|
} | undefined;
|
|
3174
3392
|
sold?: number | undefined;
|
|
3175
3393
|
reserved?: number | undefined;
|
|
3176
|
-
wristbandColor?: string | undefined;
|
|
3177
3394
|
isVisible?: boolean | undefined;
|
|
3178
3395
|
isActive?: boolean | undefined;
|
|
3179
|
-
benefits?: string[] | undefined;
|
|
3180
3396
|
salesWindow?: {
|
|
3181
3397
|
startDate?: string | undefined;
|
|
3182
3398
|
endDate?: string | undefined;
|
|
@@ -3189,6 +3405,7 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3189
3405
|
};
|
|
3190
3406
|
quantity: number;
|
|
3191
3407
|
_id?: string | undefined;
|
|
3408
|
+
description?: string | undefined;
|
|
3192
3409
|
limits?: {
|
|
3193
3410
|
minPerOrder?: number | undefined;
|
|
3194
3411
|
maxPerOrder?: number | undefined;
|
|
@@ -3196,6 +3413,11 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3196
3413
|
sold?: number | undefined;
|
|
3197
3414
|
reserved?: number | undefined;
|
|
3198
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;
|
|
3199
3421
|
isVisible?: boolean | undefined;
|
|
3200
3422
|
isActive?: boolean | undefined;
|
|
3201
3423
|
benefits?: string[] | undefined;
|
|
@@ -3428,6 +3650,7 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3428
3650
|
tickets: z.ZodArray<z.ZodObject<{
|
|
3429
3651
|
_id: z.ZodOptional<z.ZodString>;
|
|
3430
3652
|
name: z.ZodString;
|
|
3653
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3431
3654
|
price: z.ZodObject<{
|
|
3432
3655
|
amount: z.ZodNumber;
|
|
3433
3656
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -3451,10 +3674,15 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3451
3674
|
}>>;
|
|
3452
3675
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
3453
3676
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
3454
|
-
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"]>>;
|
|
3455
3683
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3456
3684
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3457
|
-
benefits: z.
|
|
3685
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
3458
3686
|
tier: z.ZodDefault<z.ZodString>;
|
|
3459
3687
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
3460
3688
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -3473,18 +3701,24 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3473
3701
|
currency: string;
|
|
3474
3702
|
};
|
|
3475
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[];
|
|
3476
3711
|
tier: string;
|
|
3477
3712
|
_id?: string | undefined;
|
|
3713
|
+
description?: string | undefined;
|
|
3478
3714
|
limits?: {
|
|
3479
3715
|
minPerOrder: number;
|
|
3480
3716
|
maxPerOrder: number;
|
|
3481
3717
|
} | undefined;
|
|
3482
3718
|
sold?: number | undefined;
|
|
3483
3719
|
reserved?: number | undefined;
|
|
3484
|
-
wristbandColor?: string | undefined;
|
|
3485
3720
|
isVisible?: boolean | undefined;
|
|
3486
3721
|
isActive?: boolean | undefined;
|
|
3487
|
-
benefits?: string[] | undefined;
|
|
3488
3722
|
salesWindow?: {
|
|
3489
3723
|
startDate?: string | undefined;
|
|
3490
3724
|
endDate?: string | undefined;
|
|
@@ -3497,6 +3731,7 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3497
3731
|
};
|
|
3498
3732
|
quantity: number;
|
|
3499
3733
|
_id?: string | undefined;
|
|
3734
|
+
description?: string | undefined;
|
|
3500
3735
|
limits?: {
|
|
3501
3736
|
minPerOrder?: number | undefined;
|
|
3502
3737
|
maxPerOrder?: number | undefined;
|
|
@@ -3504,6 +3739,11 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3504
3739
|
sold?: number | undefined;
|
|
3505
3740
|
reserved?: number | undefined;
|
|
3506
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;
|
|
3507
3747
|
isVisible?: boolean | undefined;
|
|
3508
3748
|
isActive?: boolean | undefined;
|
|
3509
3749
|
benefits?: string[] | undefined;
|
|
@@ -3736,6 +3976,7 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3736
3976
|
tickets: z.ZodArray<z.ZodObject<{
|
|
3737
3977
|
_id: z.ZodOptional<z.ZodString>;
|
|
3738
3978
|
name: z.ZodString;
|
|
3979
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3739
3980
|
price: z.ZodObject<{
|
|
3740
3981
|
amount: z.ZodNumber;
|
|
3741
3982
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -3759,10 +4000,15 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3759
4000
|
}>>;
|
|
3760
4001
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
3761
4002
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
3762
|
-
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"]>>;
|
|
3763
4009
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3764
4010
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3765
|
-
benefits: z.
|
|
4011
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
3766
4012
|
tier: z.ZodDefault<z.ZodString>;
|
|
3767
4013
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
3768
4014
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -3781,18 +4027,24 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3781
4027
|
currency: string;
|
|
3782
4028
|
};
|
|
3783
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[];
|
|
3784
4037
|
tier: string;
|
|
3785
4038
|
_id?: string | undefined;
|
|
4039
|
+
description?: string | undefined;
|
|
3786
4040
|
limits?: {
|
|
3787
4041
|
minPerOrder: number;
|
|
3788
4042
|
maxPerOrder: number;
|
|
3789
4043
|
} | undefined;
|
|
3790
4044
|
sold?: number | undefined;
|
|
3791
4045
|
reserved?: number | undefined;
|
|
3792
|
-
wristbandColor?: string | undefined;
|
|
3793
4046
|
isVisible?: boolean | undefined;
|
|
3794
4047
|
isActive?: boolean | undefined;
|
|
3795
|
-
benefits?: string[] | undefined;
|
|
3796
4048
|
salesWindow?: {
|
|
3797
4049
|
startDate?: string | undefined;
|
|
3798
4050
|
endDate?: string | undefined;
|
|
@@ -3805,6 +4057,7 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3805
4057
|
};
|
|
3806
4058
|
quantity: number;
|
|
3807
4059
|
_id?: string | undefined;
|
|
4060
|
+
description?: string | undefined;
|
|
3808
4061
|
limits?: {
|
|
3809
4062
|
minPerOrder?: number | undefined;
|
|
3810
4063
|
maxPerOrder?: number | undefined;
|
|
@@ -3812,6 +4065,11 @@ export declare const clientGetEventSchema: z.ZodObject<{
|
|
|
3812
4065
|
sold?: number | undefined;
|
|
3813
4066
|
reserved?: number | undefined;
|
|
3814
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;
|
|
3815
4073
|
isVisible?: boolean | undefined;
|
|
3816
4074
|
isActive?: boolean | undefined;
|
|
3817
4075
|
benefits?: string[] | undefined;
|
|
@@ -4040,6 +4298,7 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4040
4298
|
tickets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4041
4299
|
_id: z.ZodOptional<z.ZodString>;
|
|
4042
4300
|
name: z.ZodString;
|
|
4301
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4043
4302
|
price: z.ZodObject<{
|
|
4044
4303
|
amount: z.ZodNumber;
|
|
4045
4304
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -4063,10 +4322,15 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4063
4322
|
}>>;
|
|
4064
4323
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
4065
4324
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
4066
|
-
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"]>>;
|
|
4067
4331
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4068
4332
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4069
|
-
benefits: z.
|
|
4333
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
4070
4334
|
tier: z.ZodDefault<z.ZodString>;
|
|
4071
4335
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
4072
4336
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -4085,18 +4349,24 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4085
4349
|
currency: string;
|
|
4086
4350
|
};
|
|
4087
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[];
|
|
4088
4359
|
tier: string;
|
|
4089
4360
|
_id?: string | undefined;
|
|
4361
|
+
description?: string | undefined;
|
|
4090
4362
|
limits?: {
|
|
4091
4363
|
minPerOrder: number;
|
|
4092
4364
|
maxPerOrder: number;
|
|
4093
4365
|
} | undefined;
|
|
4094
4366
|
sold?: number | undefined;
|
|
4095
4367
|
reserved?: number | undefined;
|
|
4096
|
-
wristbandColor?: string | undefined;
|
|
4097
4368
|
isVisible?: boolean | undefined;
|
|
4098
4369
|
isActive?: boolean | undefined;
|
|
4099
|
-
benefits?: string[] | undefined;
|
|
4100
4370
|
salesWindow?: {
|
|
4101
4371
|
startDate?: string | undefined;
|
|
4102
4372
|
endDate?: string | undefined;
|
|
@@ -4109,6 +4379,7 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4109
4379
|
};
|
|
4110
4380
|
quantity: number;
|
|
4111
4381
|
_id?: string | undefined;
|
|
4382
|
+
description?: string | undefined;
|
|
4112
4383
|
limits?: {
|
|
4113
4384
|
minPerOrder?: number | undefined;
|
|
4114
4385
|
maxPerOrder?: number | undefined;
|
|
@@ -4116,6 +4387,11 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4116
4387
|
sold?: number | undefined;
|
|
4117
4388
|
reserved?: number | undefined;
|
|
4118
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;
|
|
4119
4395
|
isVisible?: boolean | undefined;
|
|
4120
4396
|
isActive?: boolean | undefined;
|
|
4121
4397
|
benefits?: string[] | undefined;
|
|
@@ -4343,6 +4619,7 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4343
4619
|
tickets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4344
4620
|
_id: z.ZodOptional<z.ZodString>;
|
|
4345
4621
|
name: z.ZodString;
|
|
4622
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4346
4623
|
price: z.ZodObject<{
|
|
4347
4624
|
amount: z.ZodNumber;
|
|
4348
4625
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -4366,10 +4643,15 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4366
4643
|
}>>;
|
|
4367
4644
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
4368
4645
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
4369
|
-
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"]>>;
|
|
4370
4652
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4371
4653
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4372
|
-
benefits: z.
|
|
4654
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
4373
4655
|
tier: z.ZodDefault<z.ZodString>;
|
|
4374
4656
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
4375
4657
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -4388,18 +4670,24 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4388
4670
|
currency: string;
|
|
4389
4671
|
};
|
|
4390
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[];
|
|
4391
4680
|
tier: string;
|
|
4392
4681
|
_id?: string | undefined;
|
|
4682
|
+
description?: string | undefined;
|
|
4393
4683
|
limits?: {
|
|
4394
4684
|
minPerOrder: number;
|
|
4395
4685
|
maxPerOrder: number;
|
|
4396
4686
|
} | undefined;
|
|
4397
4687
|
sold?: number | undefined;
|
|
4398
4688
|
reserved?: number | undefined;
|
|
4399
|
-
wristbandColor?: string | undefined;
|
|
4400
4689
|
isVisible?: boolean | undefined;
|
|
4401
4690
|
isActive?: boolean | undefined;
|
|
4402
|
-
benefits?: string[] | undefined;
|
|
4403
4691
|
salesWindow?: {
|
|
4404
4692
|
startDate?: string | undefined;
|
|
4405
4693
|
endDate?: string | undefined;
|
|
@@ -4412,6 +4700,7 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4412
4700
|
};
|
|
4413
4701
|
quantity: number;
|
|
4414
4702
|
_id?: string | undefined;
|
|
4703
|
+
description?: string | undefined;
|
|
4415
4704
|
limits?: {
|
|
4416
4705
|
minPerOrder?: number | undefined;
|
|
4417
4706
|
maxPerOrder?: number | undefined;
|
|
@@ -4419,6 +4708,11 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4419
4708
|
sold?: number | undefined;
|
|
4420
4709
|
reserved?: number | undefined;
|
|
4421
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;
|
|
4422
4716
|
isVisible?: boolean | undefined;
|
|
4423
4717
|
isActive?: boolean | undefined;
|
|
4424
4718
|
benefits?: string[] | undefined;
|
|
@@ -4646,6 +4940,7 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4646
4940
|
tickets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4647
4941
|
_id: z.ZodOptional<z.ZodString>;
|
|
4648
4942
|
name: z.ZodString;
|
|
4943
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4649
4944
|
price: z.ZodObject<{
|
|
4650
4945
|
amount: z.ZodNumber;
|
|
4651
4946
|
currency: z.ZodDefault<z.ZodString>;
|
|
@@ -4669,10 +4964,15 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4669
4964
|
}>>;
|
|
4670
4965
|
sold: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
4671
4966
|
reserved: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
4672
|
-
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"]>>;
|
|
4673
4973
|
isVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4674
4974
|
isActive: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4675
|
-
benefits: z.
|
|
4975
|
+
benefits: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
4676
4976
|
tier: z.ZodDefault<z.ZodString>;
|
|
4677
4977
|
salesWindow: z.ZodOptional<z.ZodObject<{
|
|
4678
4978
|
startDate: z.ZodOptional<z.ZodString>;
|
|
@@ -4691,18 +4991,24 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4691
4991
|
currency: string;
|
|
4692
4992
|
};
|
|
4693
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[];
|
|
4694
5001
|
tier: string;
|
|
4695
5002
|
_id?: string | undefined;
|
|
5003
|
+
description?: string | undefined;
|
|
4696
5004
|
limits?: {
|
|
4697
5005
|
minPerOrder: number;
|
|
4698
5006
|
maxPerOrder: number;
|
|
4699
5007
|
} | undefined;
|
|
4700
5008
|
sold?: number | undefined;
|
|
4701
5009
|
reserved?: number | undefined;
|
|
4702
|
-
wristbandColor?: string | undefined;
|
|
4703
5010
|
isVisible?: boolean | undefined;
|
|
4704
5011
|
isActive?: boolean | undefined;
|
|
4705
|
-
benefits?: string[] | undefined;
|
|
4706
5012
|
salesWindow?: {
|
|
4707
5013
|
startDate?: string | undefined;
|
|
4708
5014
|
endDate?: string | undefined;
|
|
@@ -4715,6 +5021,7 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4715
5021
|
};
|
|
4716
5022
|
quantity: number;
|
|
4717
5023
|
_id?: string | undefined;
|
|
5024
|
+
description?: string | undefined;
|
|
4718
5025
|
limits?: {
|
|
4719
5026
|
minPerOrder?: number | undefined;
|
|
4720
5027
|
maxPerOrder?: number | undefined;
|
|
@@ -4722,6 +5029,11 @@ export declare const draftEventSchema: z.ZodObject<{
|
|
|
4722
5029
|
sold?: number | undefined;
|
|
4723
5030
|
reserved?: number | undefined;
|
|
4724
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;
|
|
4725
5037
|
isVisible?: boolean | undefined;
|
|
4726
5038
|
isActive?: boolean | undefined;
|
|
4727
5039
|
benefits?: string[] | undefined;
|