@nyig/models 0.2.30 → 0.2.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.mts +119 -113
- package/index.d.ts +119 -113
- package/index.js +6 -5
- package/index.mjs +6 -5
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -133,12 +133,11 @@ declare const zAttendance: z.ZodObject<{
|
|
|
133
133
|
paid: z.ZodOptional<z.ZodBoolean>;
|
|
134
134
|
campOption: z.ZodNativeEnum<typeof CampOption>;
|
|
135
135
|
_id: z.ZodString;
|
|
136
|
-
editedBy: z.ZodString
|
|
136
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
137
137
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
138
138
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
139
139
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
140
140
|
_id: string;
|
|
141
|
-
editedBy: string;
|
|
142
141
|
student: string;
|
|
143
142
|
states: AttendState[];
|
|
144
143
|
tuition: {
|
|
@@ -148,11 +147,11 @@ declare const zAttendance: z.ZodObject<{
|
|
|
148
147
|
};
|
|
149
148
|
campOption: CampOption;
|
|
150
149
|
paid?: boolean | undefined;
|
|
150
|
+
editedBy?: string | undefined;
|
|
151
151
|
createdAt?: Date | undefined;
|
|
152
152
|
updatedAt?: Date | undefined;
|
|
153
153
|
}, {
|
|
154
154
|
_id: string;
|
|
155
|
-
editedBy: string;
|
|
156
155
|
student: string;
|
|
157
156
|
states: AttendState[];
|
|
158
157
|
tuition: {
|
|
@@ -162,6 +161,7 @@ declare const zAttendance: z.ZodObject<{
|
|
|
162
161
|
};
|
|
163
162
|
campOption: CampOption;
|
|
164
163
|
paid?: boolean | undefined;
|
|
164
|
+
editedBy?: string | undefined;
|
|
165
165
|
createdAt?: Date | undefined;
|
|
166
166
|
updatedAt?: Date | undefined;
|
|
167
167
|
}>;
|
|
@@ -208,12 +208,11 @@ declare const zCampTracker: z.ZodObject<{
|
|
|
208
208
|
attendances: z.ZodArray<z.ZodString, "many">;
|
|
209
209
|
isNonPublic: z.ZodOptional<z.ZodBoolean>;
|
|
210
210
|
_id: z.ZodString;
|
|
211
|
-
editedBy: z.ZodString
|
|
211
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
212
212
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
213
213
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
214
214
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
215
215
|
_id: string;
|
|
216
|
-
editedBy: string;
|
|
217
216
|
course: string;
|
|
218
217
|
teacher: string;
|
|
219
218
|
semester: string;
|
|
@@ -221,11 +220,11 @@ declare const zCampTracker: z.ZodObject<{
|
|
|
221
220
|
attendances: string[];
|
|
222
221
|
notes?: string | undefined;
|
|
223
222
|
isNonPublic?: boolean | undefined;
|
|
223
|
+
editedBy?: string | undefined;
|
|
224
224
|
createdAt?: Date | undefined;
|
|
225
225
|
updatedAt?: Date | undefined;
|
|
226
226
|
}, {
|
|
227
227
|
_id: string;
|
|
228
|
-
editedBy: string;
|
|
229
228
|
course: string;
|
|
230
229
|
teacher: string;
|
|
231
230
|
semester: string;
|
|
@@ -233,6 +232,7 @@ declare const zCampTracker: z.ZodObject<{
|
|
|
233
232
|
attendances: string[];
|
|
234
233
|
notes?: string | undefined;
|
|
235
234
|
isNonPublic?: boolean | undefined;
|
|
235
|
+
editedBy?: string | undefined;
|
|
236
236
|
createdAt?: Date | undefined;
|
|
237
237
|
updatedAt?: Date | undefined;
|
|
238
238
|
}>;
|
|
@@ -320,12 +320,11 @@ declare const zClassTracker: z.ZodObject<{
|
|
|
320
320
|
completed: z.ZodOptional<z.ZodBoolean>;
|
|
321
321
|
paused: z.ZodOptional<z.ZodBoolean>;
|
|
322
322
|
_id: z.ZodString;
|
|
323
|
-
editedBy: z.ZodString
|
|
323
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
324
324
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
325
325
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
326
326
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
327
327
|
_id: string;
|
|
328
|
-
editedBy: string;
|
|
329
328
|
student: string;
|
|
330
329
|
course: string;
|
|
331
330
|
teacher: string;
|
|
@@ -340,11 +339,11 @@ declare const zClassTracker: z.ZodObject<{
|
|
|
340
339
|
paid?: boolean | undefined;
|
|
341
340
|
completed?: boolean | undefined;
|
|
342
341
|
paused?: boolean | undefined;
|
|
342
|
+
editedBy?: string | undefined;
|
|
343
343
|
createdAt?: Date | undefined;
|
|
344
344
|
updatedAt?: Date | undefined;
|
|
345
345
|
}, {
|
|
346
346
|
_id: string;
|
|
347
|
-
editedBy: string;
|
|
348
347
|
student: string;
|
|
349
348
|
course: string;
|
|
350
349
|
teacher: string;
|
|
@@ -359,6 +358,7 @@ declare const zClassTracker: z.ZodObject<{
|
|
|
359
358
|
paid?: boolean | undefined;
|
|
360
359
|
completed?: boolean | undefined;
|
|
361
360
|
paused?: boolean | undefined;
|
|
361
|
+
editedBy?: string | undefined;
|
|
362
362
|
createdAt?: Date | undefined;
|
|
363
363
|
updatedAt?: Date | undefined;
|
|
364
364
|
}>;
|
|
@@ -443,12 +443,11 @@ declare const zCourse: z.ZodObject<{
|
|
|
443
443
|
halfCampTuition: z.ZodOptional<z.ZodNumber>;
|
|
444
444
|
fullCampTuition: z.ZodOptional<z.ZodNumber>;
|
|
445
445
|
_id: z.ZodString;
|
|
446
|
-
editedBy: z.ZodString
|
|
446
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
447
447
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
448
448
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
449
449
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
450
450
|
_id: string;
|
|
451
|
-
editedBy: string;
|
|
452
451
|
price: number;
|
|
453
452
|
name: string;
|
|
454
453
|
category: CourseCategory;
|
|
@@ -458,11 +457,11 @@ declare const zCourse: z.ZodObject<{
|
|
|
458
457
|
description?: string | undefined;
|
|
459
458
|
halfCampTuition?: number | undefined;
|
|
460
459
|
fullCampTuition?: number | undefined;
|
|
460
|
+
editedBy?: string | undefined;
|
|
461
461
|
createdAt?: Date | undefined;
|
|
462
462
|
updatedAt?: Date | undefined;
|
|
463
463
|
}, {
|
|
464
464
|
_id: string;
|
|
465
|
-
editedBy: string;
|
|
466
465
|
price: number;
|
|
467
466
|
name: string;
|
|
468
467
|
category: CourseCategory;
|
|
@@ -472,6 +471,7 @@ declare const zCourse: z.ZodObject<{
|
|
|
472
471
|
description?: string | undefined;
|
|
473
472
|
halfCampTuition?: number | undefined;
|
|
474
473
|
fullCampTuition?: number | undefined;
|
|
474
|
+
editedBy?: string | undefined;
|
|
475
475
|
createdAt?: Date | undefined;
|
|
476
476
|
updatedAt?: Date | undefined;
|
|
477
477
|
}>;
|
|
@@ -563,12 +563,11 @@ declare const zGroupTracker: z.ZodObject<{
|
|
|
563
563
|
courseId: z.ZodOptional<z.ZodString>;
|
|
564
564
|
ageGroup: z.ZodOptional<z.ZodNativeEnum<typeof AgeGroup>>;
|
|
565
565
|
_id: z.ZodString;
|
|
566
|
-
editedBy: z.ZodString
|
|
566
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
567
567
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
568
568
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
569
569
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
570
570
|
_id: string;
|
|
571
|
-
editedBy: string;
|
|
572
571
|
course: string;
|
|
573
572
|
teacher: string;
|
|
574
573
|
semester: string;
|
|
@@ -582,11 +581,11 @@ declare const zGroupTracker: z.ZodObject<{
|
|
|
582
581
|
isNonPublic?: boolean | undefined;
|
|
583
582
|
courseId?: string | undefined;
|
|
584
583
|
ageGroup?: AgeGroup | undefined;
|
|
584
|
+
editedBy?: string | undefined;
|
|
585
585
|
createdAt?: Date | undefined;
|
|
586
586
|
updatedAt?: Date | undefined;
|
|
587
587
|
}, {
|
|
588
588
|
_id: string;
|
|
589
|
-
editedBy: string;
|
|
590
589
|
course: string;
|
|
591
590
|
teacher: string;
|
|
592
591
|
semester: string;
|
|
@@ -600,6 +599,7 @@ declare const zGroupTracker: z.ZodObject<{
|
|
|
600
599
|
isNonPublic?: boolean | undefined;
|
|
601
600
|
courseId?: string | undefined;
|
|
602
601
|
ageGroup?: AgeGroup | undefined;
|
|
602
|
+
editedBy?: string | undefined;
|
|
603
603
|
createdAt?: Date | undefined;
|
|
604
604
|
updatedAt?: Date | undefined;
|
|
605
605
|
}>;
|
|
@@ -688,7 +688,7 @@ declare const zCampBooking: z.ZodObject<{
|
|
|
688
688
|
isOnline: z.ZodBoolean;
|
|
689
689
|
classDates: z.ZodString;
|
|
690
690
|
_id: z.ZodString;
|
|
691
|
-
editedBy: z.ZodString
|
|
691
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
692
692
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
693
693
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
694
694
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
@@ -698,7 +698,6 @@ declare const zCampBooking: z.ZodObject<{
|
|
|
698
698
|
rank: string;
|
|
699
699
|
email: string;
|
|
700
700
|
_id: string;
|
|
701
|
-
editedBy: string;
|
|
702
701
|
campOption: CampOption;
|
|
703
702
|
isOnline: boolean;
|
|
704
703
|
classDates: string;
|
|
@@ -710,6 +709,7 @@ declare const zCampBooking: z.ZodObject<{
|
|
|
710
709
|
notes?: string | undefined;
|
|
711
710
|
shipping?: boolean | undefined;
|
|
712
711
|
ctId?: string | undefined;
|
|
712
|
+
editedBy?: string | undefined;
|
|
713
713
|
createdAt?: Date | undefined;
|
|
714
714
|
updatedAt?: Date | undefined;
|
|
715
715
|
}, {
|
|
@@ -719,7 +719,6 @@ declare const zCampBooking: z.ZodObject<{
|
|
|
719
719
|
rank: string;
|
|
720
720
|
email: string;
|
|
721
721
|
_id: string;
|
|
722
|
-
editedBy: string;
|
|
723
722
|
campOption: CampOption;
|
|
724
723
|
isOnline: boolean;
|
|
725
724
|
classDates: string;
|
|
@@ -731,6 +730,7 @@ declare const zCampBooking: z.ZodObject<{
|
|
|
731
730
|
notes?: string | undefined;
|
|
732
731
|
shipping?: boolean | undefined;
|
|
733
732
|
ctId?: string | undefined;
|
|
733
|
+
editedBy?: string | undefined;
|
|
734
734
|
createdAt?: Date | undefined;
|
|
735
735
|
updatedAt?: Date | undefined;
|
|
736
736
|
}>;
|
|
@@ -807,7 +807,7 @@ declare const zGroupBooking: z.ZodObject<{
|
|
|
807
807
|
isTrial: z.ZodOptional<z.ZodBoolean>;
|
|
808
808
|
classDate: z.ZodOptional<z.ZodString>;
|
|
809
809
|
_id: z.ZodString;
|
|
810
|
-
editedBy: z.ZodString
|
|
810
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
811
811
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
812
812
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
813
813
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
@@ -817,7 +817,6 @@ declare const zGroupBooking: z.ZodObject<{
|
|
|
817
817
|
rank: string;
|
|
818
818
|
email: string;
|
|
819
819
|
_id: string;
|
|
820
|
-
editedBy: string;
|
|
821
820
|
isOnline: boolean;
|
|
822
821
|
paymentReceived?: boolean | undefined;
|
|
823
822
|
expireAt?: Date | undefined;
|
|
@@ -829,6 +828,7 @@ declare const zGroupBooking: z.ZodObject<{
|
|
|
829
828
|
gtId?: string | undefined;
|
|
830
829
|
isTrial?: boolean | undefined;
|
|
831
830
|
classDate?: string | undefined;
|
|
831
|
+
editedBy?: string | undefined;
|
|
832
832
|
createdAt?: Date | undefined;
|
|
833
833
|
updatedAt?: Date | undefined;
|
|
834
834
|
}, {
|
|
@@ -838,7 +838,6 @@ declare const zGroupBooking: z.ZodObject<{
|
|
|
838
838
|
rank: string;
|
|
839
839
|
email: string;
|
|
840
840
|
_id: string;
|
|
841
|
-
editedBy: string;
|
|
842
841
|
isOnline: boolean;
|
|
843
842
|
paymentReceived?: boolean | undefined;
|
|
844
843
|
expireAt?: Date | undefined;
|
|
@@ -850,6 +849,7 @@ declare const zGroupBooking: z.ZodObject<{
|
|
|
850
849
|
gtId?: string | undefined;
|
|
851
850
|
isTrial?: boolean | undefined;
|
|
852
851
|
classDate?: string | undefined;
|
|
852
|
+
editedBy?: string | undefined;
|
|
853
853
|
createdAt?: Date | undefined;
|
|
854
854
|
updatedAt?: Date | undefined;
|
|
855
855
|
}>;
|
|
@@ -918,7 +918,7 @@ declare const zPrivateBooking: z.ZodObject<{
|
|
|
918
918
|
classDate: z.ZodOptional<z.ZodString>;
|
|
919
919
|
teacherId: z.ZodString;
|
|
920
920
|
_id: z.ZodString;
|
|
921
|
-
editedBy: z.ZodString
|
|
921
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
922
922
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
923
923
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
924
924
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
@@ -928,7 +928,6 @@ declare const zPrivateBooking: z.ZodObject<{
|
|
|
928
928
|
rank: string;
|
|
929
929
|
email: string;
|
|
930
930
|
_id: string;
|
|
931
|
-
editedBy: string;
|
|
932
931
|
courseId: string;
|
|
933
932
|
teacherId: string;
|
|
934
933
|
paymentReceived?: boolean | undefined;
|
|
@@ -938,6 +937,7 @@ declare const zPrivateBooking: z.ZodObject<{
|
|
|
938
937
|
address?: string | undefined;
|
|
939
938
|
notes?: string | undefined;
|
|
940
939
|
classDate?: string | undefined;
|
|
940
|
+
editedBy?: string | undefined;
|
|
941
941
|
createdAt?: Date | undefined;
|
|
942
942
|
updatedAt?: Date | undefined;
|
|
943
943
|
}, {
|
|
@@ -947,7 +947,6 @@ declare const zPrivateBooking: z.ZodObject<{
|
|
|
947
947
|
rank: string;
|
|
948
948
|
email: string;
|
|
949
949
|
_id: string;
|
|
950
|
-
editedBy: string;
|
|
951
950
|
courseId: string;
|
|
952
951
|
teacherId: string;
|
|
953
952
|
paymentReceived?: boolean | undefined;
|
|
@@ -957,6 +956,7 @@ declare const zPrivateBooking: z.ZodObject<{
|
|
|
957
956
|
address?: string | undefined;
|
|
958
957
|
notes?: string | undefined;
|
|
959
958
|
classDate?: string | undefined;
|
|
959
|
+
editedBy?: string | undefined;
|
|
960
960
|
createdAt?: Date | undefined;
|
|
961
961
|
updatedAt?: Date | undefined;
|
|
962
962
|
}>;
|
|
@@ -1070,6 +1070,7 @@ declare const zBInvoice: z.ZodObject<{
|
|
|
1070
1070
|
paid: z.ZodOptional<z.ZodNativeEnum<typeof PaymentMethod>>;
|
|
1071
1071
|
notes: z.ZodOptional<z.ZodString>;
|
|
1072
1072
|
createdBy: z.ZodString;
|
|
1073
|
+
lastEditBy: z.ZodOptional<z.ZodString>;
|
|
1073
1074
|
}, "strip", z.ZodTypeAny, {
|
|
1074
1075
|
billTo: string;
|
|
1075
1076
|
packages: {
|
|
@@ -1089,6 +1090,7 @@ declare const zBInvoice: z.ZodObject<{
|
|
|
1089
1090
|
shipping?: number | undefined;
|
|
1090
1091
|
paid?: PaymentMethod | undefined;
|
|
1091
1092
|
notes?: string | undefined;
|
|
1093
|
+
lastEditBy?: string | undefined;
|
|
1092
1094
|
}, {
|
|
1093
1095
|
billTo: string;
|
|
1094
1096
|
packages: {
|
|
@@ -1108,6 +1110,7 @@ declare const zBInvoice: z.ZodObject<{
|
|
|
1108
1110
|
shipping?: number | undefined;
|
|
1109
1111
|
paid?: PaymentMethod | undefined;
|
|
1110
1112
|
notes?: string | undefined;
|
|
1113
|
+
lastEditBy?: string | undefined;
|
|
1111
1114
|
}>;
|
|
1112
1115
|
declare const zInvoice: z.ZodObject<{
|
|
1113
1116
|
notes: z.ZodOptional<z.ZodString>;
|
|
@@ -1156,13 +1159,13 @@ declare const zInvoice: z.ZodObject<{
|
|
|
1156
1159
|
amount: number;
|
|
1157
1160
|
}>, "many">;
|
|
1158
1161
|
createdBy: z.ZodString;
|
|
1162
|
+
lastEditBy: z.ZodOptional<z.ZodString>;
|
|
1159
1163
|
_id: z.ZodString;
|
|
1160
|
-
editedBy: z.ZodString
|
|
1164
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
1161
1165
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
1162
1166
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
1163
1167
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1164
1168
|
_id: string;
|
|
1165
|
-
editedBy: string;
|
|
1166
1169
|
billTo: string;
|
|
1167
1170
|
packages: {
|
|
1168
1171
|
student: string;
|
|
@@ -1181,11 +1184,12 @@ declare const zInvoice: z.ZodObject<{
|
|
|
1181
1184
|
textbook?: number | undefined;
|
|
1182
1185
|
shipping?: number | undefined;
|
|
1183
1186
|
paid?: PaymentMethod | undefined;
|
|
1187
|
+
lastEditBy?: string | undefined;
|
|
1188
|
+
editedBy?: string | undefined;
|
|
1184
1189
|
createdAt?: Date | undefined;
|
|
1185
1190
|
updatedAt?: Date | undefined;
|
|
1186
1191
|
}, {
|
|
1187
1192
|
_id: string;
|
|
1188
|
-
editedBy: string;
|
|
1189
1193
|
billTo: string;
|
|
1190
1194
|
packages: {
|
|
1191
1195
|
student: string;
|
|
@@ -1204,6 +1208,8 @@ declare const zInvoice: z.ZodObject<{
|
|
|
1204
1208
|
textbook?: number | undefined;
|
|
1205
1209
|
shipping?: number | undefined;
|
|
1206
1210
|
paid?: PaymentMethod | undefined;
|
|
1211
|
+
lastEditBy?: string | undefined;
|
|
1212
|
+
editedBy?: string | undefined;
|
|
1207
1213
|
createdAt?: Date | undefined;
|
|
1208
1214
|
updatedAt?: Date | undefined;
|
|
1209
1215
|
}>;
|
|
@@ -1292,12 +1298,11 @@ declare const zTeacherPayment: z.ZodObject<{
|
|
|
1292
1298
|
wage: number;
|
|
1293
1299
|
}>, "many">;
|
|
1294
1300
|
_id: z.ZodString;
|
|
1295
|
-
editedBy: z.ZodString
|
|
1301
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
1296
1302
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
1297
1303
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
1298
1304
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1299
1305
|
_id: string;
|
|
1300
|
-
editedBy: string;
|
|
1301
1306
|
teacher: string;
|
|
1302
1307
|
rows: {
|
|
1303
1308
|
length: number;
|
|
@@ -1306,11 +1311,11 @@ declare const zTeacherPayment: z.ZodObject<{
|
|
|
1306
1311
|
wage: number;
|
|
1307
1312
|
}[];
|
|
1308
1313
|
paid?: boolean | undefined;
|
|
1314
|
+
editedBy?: string | undefined;
|
|
1309
1315
|
createdAt?: Date | undefined;
|
|
1310
1316
|
updatedAt?: Date | undefined;
|
|
1311
1317
|
}, {
|
|
1312
1318
|
_id: string;
|
|
1313
|
-
editedBy: string;
|
|
1314
1319
|
teacher: string;
|
|
1315
1320
|
rows: {
|
|
1316
1321
|
length: number;
|
|
@@ -1319,6 +1324,7 @@ declare const zTeacherPayment: z.ZodObject<{
|
|
|
1319
1324
|
wage: number;
|
|
1320
1325
|
}[];
|
|
1321
1326
|
paid?: boolean | undefined;
|
|
1327
|
+
editedBy?: string | undefined;
|
|
1322
1328
|
createdAt?: Date | undefined;
|
|
1323
1329
|
updatedAt?: Date | undefined;
|
|
1324
1330
|
}>;
|
|
@@ -1451,27 +1457,27 @@ declare const zReportTicket: z.ZodObject<{
|
|
|
1451
1457
|
requester: z.ZodString;
|
|
1452
1458
|
resolver: z.ZodOptional<z.ZodString>;
|
|
1453
1459
|
_id: z.ZodString;
|
|
1454
|
-
editedBy: z.ZodString
|
|
1460
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
1455
1461
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
1456
1462
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
1457
1463
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1458
1464
|
status: TicketStatus;
|
|
1459
1465
|
_id: string;
|
|
1460
|
-
editedBy: string;
|
|
1461
1466
|
description: string;
|
|
1462
1467
|
title: string;
|
|
1463
1468
|
requester: string;
|
|
1464
1469
|
resolver?: string | undefined;
|
|
1470
|
+
editedBy?: string | undefined;
|
|
1465
1471
|
createdAt?: Date | undefined;
|
|
1466
1472
|
updatedAt?: Date | undefined;
|
|
1467
1473
|
}, {
|
|
1468
1474
|
status: TicketStatus;
|
|
1469
1475
|
_id: string;
|
|
1470
|
-
editedBy: string;
|
|
1471
1476
|
description: string;
|
|
1472
1477
|
title: string;
|
|
1473
1478
|
requester: string;
|
|
1474
1479
|
resolver?: string | undefined;
|
|
1480
|
+
editedBy?: string | undefined;
|
|
1475
1481
|
createdAt?: Date | undefined;
|
|
1476
1482
|
updatedAt?: Date | undefined;
|
|
1477
1483
|
}>;
|
|
@@ -1520,29 +1526,29 @@ declare const zSemester: z.ZodObject<{
|
|
|
1520
1526
|
blackoutDates: z.ZodArray<z.ZodDate, "many">;
|
|
1521
1527
|
importantDates: z.ZodArray<z.ZodString, "many">;
|
|
1522
1528
|
_id: z.ZodString;
|
|
1523
|
-
editedBy: z.ZodString
|
|
1529
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
1524
1530
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
1525
1531
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
1526
1532
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1527
1533
|
_id: string;
|
|
1528
|
-
editedBy: string;
|
|
1529
1534
|
season: Season;
|
|
1530
1535
|
year: number;
|
|
1531
1536
|
startDate: Date;
|
|
1532
1537
|
endDate: Date;
|
|
1533
1538
|
blackoutDates: Date[];
|
|
1534
1539
|
importantDates: string[];
|
|
1540
|
+
editedBy?: string | undefined;
|
|
1535
1541
|
createdAt?: Date | undefined;
|
|
1536
1542
|
updatedAt?: Date | undefined;
|
|
1537
1543
|
}, {
|
|
1538
1544
|
_id: string;
|
|
1539
|
-
editedBy: string;
|
|
1540
1545
|
season: Season;
|
|
1541
1546
|
year: number;
|
|
1542
1547
|
startDate: Date;
|
|
1543
1548
|
endDate: Date;
|
|
1544
1549
|
blackoutDates: Date[];
|
|
1545
1550
|
importantDates: string[];
|
|
1551
|
+
editedBy?: string | undefined;
|
|
1546
1552
|
createdAt?: Date | undefined;
|
|
1547
1553
|
updatedAt?: Date | undefined;
|
|
1548
1554
|
}>;
|
|
@@ -1589,12 +1595,12 @@ declare const zBEventConfig: z.ZodObject<{
|
|
|
1589
1595
|
*/
|
|
1590
1596
|
details: z.ZodObject<{
|
|
1591
1597
|
fields: z.ZodArray<z.ZodString, "many">;
|
|
1592
|
-
data: z.ZodArray<z.
|
|
1598
|
+
data: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodString>, "many">;
|
|
1593
1599
|
}, "strip", z.ZodTypeAny, {
|
|
1594
|
-
data:
|
|
1600
|
+
data: Record<string, string>[];
|
|
1595
1601
|
fields: string[];
|
|
1596
1602
|
}, {
|
|
1597
|
-
data:
|
|
1603
|
+
data: Record<string, string>[];
|
|
1598
1604
|
fields: string[];
|
|
1599
1605
|
}>;
|
|
1600
1606
|
/**
|
|
@@ -1603,12 +1609,12 @@ declare const zBEventConfig: z.ZodObject<{
|
|
|
1603
1609
|
*/
|
|
1604
1610
|
schedule: z.ZodObject<{
|
|
1605
1611
|
fields: z.ZodArray<z.ZodString, "many">;
|
|
1606
|
-
data: z.ZodRecord<z.ZodString, z.ZodArray<z.
|
|
1612
|
+
data: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodRecord<z.ZodString, z.ZodString>, "many">>;
|
|
1607
1613
|
}, "strip", z.ZodTypeAny, {
|
|
1608
|
-
data: Record<string,
|
|
1614
|
+
data: Record<string, Record<string, string>[]>;
|
|
1609
1615
|
fields: string[];
|
|
1610
1616
|
}, {
|
|
1611
|
-
data: Record<string,
|
|
1617
|
+
data: Record<string, Record<string, string>[]>;
|
|
1612
1618
|
fields: string[];
|
|
1613
1619
|
}>;
|
|
1614
1620
|
/**
|
|
@@ -1648,11 +1654,11 @@ declare const zBEventConfig: z.ZodObject<{
|
|
|
1648
1654
|
tEnd: Date;
|
|
1649
1655
|
shortDescription: string;
|
|
1650
1656
|
details: {
|
|
1651
|
-
data:
|
|
1657
|
+
data: Record<string, string>[];
|
|
1652
1658
|
fields: string[];
|
|
1653
1659
|
};
|
|
1654
1660
|
schedule: {
|
|
1655
|
-
data: Record<string,
|
|
1661
|
+
data: Record<string, Record<string, string>[]>;
|
|
1656
1662
|
fields: string[];
|
|
1657
1663
|
};
|
|
1658
1664
|
tickets: string[];
|
|
@@ -1673,11 +1679,11 @@ declare const zBEventConfig: z.ZodObject<{
|
|
|
1673
1679
|
tEnd: Date;
|
|
1674
1680
|
shortDescription: string;
|
|
1675
1681
|
details: {
|
|
1676
|
-
data:
|
|
1682
|
+
data: Record<string, string>[];
|
|
1677
1683
|
fields: string[];
|
|
1678
1684
|
};
|
|
1679
1685
|
schedule: {
|
|
1680
|
-
data: Record<string,
|
|
1686
|
+
data: Record<string, Record<string, string>[]>;
|
|
1681
1687
|
fields: string[];
|
|
1682
1688
|
};
|
|
1683
1689
|
tickets: string[];
|
|
@@ -1701,22 +1707,22 @@ declare const zEventConfig: z.ZodObject<{
|
|
|
1701
1707
|
shortDescription: z.ZodString;
|
|
1702
1708
|
details: z.ZodObject<{
|
|
1703
1709
|
fields: z.ZodArray<z.ZodString, "many">;
|
|
1704
|
-
data: z.ZodArray<z.
|
|
1710
|
+
data: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodString>, "many">;
|
|
1705
1711
|
}, "strip", z.ZodTypeAny, {
|
|
1706
|
-
data:
|
|
1712
|
+
data: Record<string, string>[];
|
|
1707
1713
|
fields: string[];
|
|
1708
1714
|
}, {
|
|
1709
|
-
data:
|
|
1715
|
+
data: Record<string, string>[];
|
|
1710
1716
|
fields: string[];
|
|
1711
1717
|
}>;
|
|
1712
1718
|
schedule: z.ZodObject<{
|
|
1713
1719
|
fields: z.ZodArray<z.ZodString, "many">;
|
|
1714
|
-
data: z.ZodRecord<z.ZodString, z.ZodArray<z.
|
|
1720
|
+
data: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodRecord<z.ZodString, z.ZodString>, "many">>;
|
|
1715
1721
|
}, "strip", z.ZodTypeAny, {
|
|
1716
|
-
data: Record<string,
|
|
1722
|
+
data: Record<string, Record<string, string>[]>;
|
|
1717
1723
|
fields: string[];
|
|
1718
1724
|
}, {
|
|
1719
|
-
data: Record<string,
|
|
1725
|
+
data: Record<string, Record<string, string>[]>;
|
|
1720
1726
|
fields: string[];
|
|
1721
1727
|
}>;
|
|
1722
1728
|
tickets: z.ZodArray<z.ZodString, "many">;
|
|
@@ -1736,12 +1742,11 @@ declare const zEventConfig: z.ZodObject<{
|
|
|
1736
1742
|
width: number;
|
|
1737
1743
|
}>>;
|
|
1738
1744
|
_id: z.ZodString;
|
|
1739
|
-
editedBy: z.ZodString
|
|
1745
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
1740
1746
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
1741
1747
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
1742
1748
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1743
1749
|
_id: string;
|
|
1744
|
-
editedBy: string;
|
|
1745
1750
|
description: string;
|
|
1746
1751
|
title: string;
|
|
1747
1752
|
url: string;
|
|
@@ -1750,11 +1755,11 @@ declare const zEventConfig: z.ZodObject<{
|
|
|
1750
1755
|
tEnd: Date;
|
|
1751
1756
|
shortDescription: string;
|
|
1752
1757
|
details: {
|
|
1753
|
-
data:
|
|
1758
|
+
data: Record<string, string>[];
|
|
1754
1759
|
fields: string[];
|
|
1755
1760
|
};
|
|
1756
1761
|
schedule: {
|
|
1757
|
-
data: Record<string,
|
|
1762
|
+
data: Record<string, Record<string, string>[]>;
|
|
1758
1763
|
fields: string[];
|
|
1759
1764
|
};
|
|
1760
1765
|
tickets: string[];
|
|
@@ -1766,11 +1771,11 @@ declare const zEventConfig: z.ZodObject<{
|
|
|
1766
1771
|
height: number;
|
|
1767
1772
|
width: number;
|
|
1768
1773
|
} | undefined;
|
|
1774
|
+
editedBy?: string | undefined;
|
|
1769
1775
|
createdAt?: Date | undefined;
|
|
1770
1776
|
updatedAt?: Date | undefined;
|
|
1771
1777
|
}, {
|
|
1772
1778
|
_id: string;
|
|
1773
|
-
editedBy: string;
|
|
1774
1779
|
description: string;
|
|
1775
1780
|
title: string;
|
|
1776
1781
|
url: string;
|
|
@@ -1779,11 +1784,11 @@ declare const zEventConfig: z.ZodObject<{
|
|
|
1779
1784
|
tEnd: Date;
|
|
1780
1785
|
shortDescription: string;
|
|
1781
1786
|
details: {
|
|
1782
|
-
data:
|
|
1787
|
+
data: Record<string, string>[];
|
|
1783
1788
|
fields: string[];
|
|
1784
1789
|
};
|
|
1785
1790
|
schedule: {
|
|
1786
|
-
data: Record<string,
|
|
1791
|
+
data: Record<string, Record<string, string>[]>;
|
|
1787
1792
|
fields: string[];
|
|
1788
1793
|
};
|
|
1789
1794
|
tickets: string[];
|
|
@@ -1795,12 +1800,13 @@ declare const zEventConfig: z.ZodObject<{
|
|
|
1795
1800
|
height: number;
|
|
1796
1801
|
width: number;
|
|
1797
1802
|
} | undefined;
|
|
1803
|
+
editedBy?: string | undefined;
|
|
1798
1804
|
createdAt?: Date | undefined;
|
|
1799
1805
|
updatedAt?: Date | undefined;
|
|
1800
1806
|
}>;
|
|
1801
1807
|
declare const zEventConfigResponse: z.ZodObject<{
|
|
1802
1808
|
_id: z.ZodString;
|
|
1803
|
-
editedBy: z.ZodString
|
|
1809
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
1804
1810
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
1805
1811
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
1806
1812
|
description: z.ZodString;
|
|
@@ -1813,22 +1819,22 @@ declare const zEventConfigResponse: z.ZodObject<{
|
|
|
1813
1819
|
shortDescription: z.ZodString;
|
|
1814
1820
|
details: z.ZodObject<{
|
|
1815
1821
|
fields: z.ZodArray<z.ZodString, "many">;
|
|
1816
|
-
data: z.ZodArray<z.
|
|
1822
|
+
data: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodString>, "many">;
|
|
1817
1823
|
}, "strip", z.ZodTypeAny, {
|
|
1818
|
-
data:
|
|
1824
|
+
data: Record<string, string>[];
|
|
1819
1825
|
fields: string[];
|
|
1820
1826
|
}, {
|
|
1821
|
-
data:
|
|
1827
|
+
data: Record<string, string>[];
|
|
1822
1828
|
fields: string[];
|
|
1823
1829
|
}>;
|
|
1824
1830
|
schedule: z.ZodObject<{
|
|
1825
1831
|
fields: z.ZodArray<z.ZodString, "many">;
|
|
1826
|
-
data: z.ZodRecord<z.ZodString, z.ZodArray<z.
|
|
1832
|
+
data: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodRecord<z.ZodString, z.ZodString>, "many">>;
|
|
1827
1833
|
}, "strip", z.ZodTypeAny, {
|
|
1828
|
-
data: Record<string,
|
|
1834
|
+
data: Record<string, Record<string, string>[]>;
|
|
1829
1835
|
fields: string[];
|
|
1830
1836
|
}, {
|
|
1831
|
-
data: Record<string,
|
|
1837
|
+
data: Record<string, Record<string, string>[]>;
|
|
1832
1838
|
fields: string[];
|
|
1833
1839
|
}>;
|
|
1834
1840
|
canRegister: z.ZodBoolean;
|
|
@@ -1853,33 +1859,32 @@ declare const zEventConfigResponse: z.ZodObject<{
|
|
|
1853
1859
|
isNotBuyable: z.ZodOptional<z.ZodBoolean>;
|
|
1854
1860
|
lastBuyableDate: z.ZodOptional<z.ZodDate>;
|
|
1855
1861
|
_id: z.ZodString;
|
|
1856
|
-
editedBy: z.ZodString
|
|
1862
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
1857
1863
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
1858
1864
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
1859
1865
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1860
1866
|
_id: string;
|
|
1861
|
-
editedBy: string;
|
|
1862
1867
|
price: number;
|
|
1863
1868
|
name: string;
|
|
1864
1869
|
description?: string | undefined;
|
|
1865
1870
|
isNotBuyable?: boolean | undefined;
|
|
1866
1871
|
lastBuyableDate?: Date | undefined;
|
|
1872
|
+
editedBy?: string | undefined;
|
|
1867
1873
|
createdAt?: Date | undefined;
|
|
1868
1874
|
updatedAt?: Date | undefined;
|
|
1869
1875
|
}, {
|
|
1870
1876
|
_id: string;
|
|
1871
|
-
editedBy: string;
|
|
1872
1877
|
price: number;
|
|
1873
1878
|
name: string;
|
|
1874
1879
|
description?: string | undefined;
|
|
1875
1880
|
isNotBuyable?: boolean | undefined;
|
|
1876
1881
|
lastBuyableDate?: Date | undefined;
|
|
1882
|
+
editedBy?: string | undefined;
|
|
1877
1883
|
createdAt?: Date | undefined;
|
|
1878
1884
|
updatedAt?: Date | undefined;
|
|
1879
1885
|
}>, "many">;
|
|
1880
1886
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1881
1887
|
_id: string;
|
|
1882
|
-
editedBy: string;
|
|
1883
1888
|
description: string;
|
|
1884
1889
|
title: string;
|
|
1885
1890
|
url: string;
|
|
@@ -1888,25 +1893,26 @@ declare const zEventConfigResponse: z.ZodObject<{
|
|
|
1888
1893
|
tEnd: Date;
|
|
1889
1894
|
shortDescription: string;
|
|
1890
1895
|
details: {
|
|
1891
|
-
data:
|
|
1896
|
+
data: Record<string, string>[];
|
|
1892
1897
|
fields: string[];
|
|
1893
1898
|
};
|
|
1894
1899
|
schedule: {
|
|
1895
|
-
data: Record<string,
|
|
1900
|
+
data: Record<string, Record<string, string>[]>;
|
|
1896
1901
|
fields: string[];
|
|
1897
1902
|
};
|
|
1898
1903
|
tickets: {
|
|
1899
1904
|
_id: string;
|
|
1900
|
-
editedBy: string;
|
|
1901
1905
|
price: number;
|
|
1902
1906
|
name: string;
|
|
1903
1907
|
description?: string | undefined;
|
|
1904
1908
|
isNotBuyable?: boolean | undefined;
|
|
1905
1909
|
lastBuyableDate?: Date | undefined;
|
|
1910
|
+
editedBy?: string | undefined;
|
|
1906
1911
|
createdAt?: Date | undefined;
|
|
1907
1912
|
updatedAt?: Date | undefined;
|
|
1908
1913
|
}[];
|
|
1909
1914
|
canRegister: boolean;
|
|
1915
|
+
editedBy?: string | undefined;
|
|
1910
1916
|
createdAt?: Date | undefined;
|
|
1911
1917
|
updatedAt?: Date | undefined;
|
|
1912
1918
|
location?: string | undefined;
|
|
@@ -1918,7 +1924,6 @@ declare const zEventConfigResponse: z.ZodObject<{
|
|
|
1918
1924
|
} | undefined;
|
|
1919
1925
|
}, {
|
|
1920
1926
|
_id: string;
|
|
1921
|
-
editedBy: string;
|
|
1922
1927
|
description: string;
|
|
1923
1928
|
title: string;
|
|
1924
1929
|
url: string;
|
|
@@ -1927,25 +1932,26 @@ declare const zEventConfigResponse: z.ZodObject<{
|
|
|
1927
1932
|
tEnd: Date;
|
|
1928
1933
|
shortDescription: string;
|
|
1929
1934
|
details: {
|
|
1930
|
-
data:
|
|
1935
|
+
data: Record<string, string>[];
|
|
1931
1936
|
fields: string[];
|
|
1932
1937
|
};
|
|
1933
1938
|
schedule: {
|
|
1934
|
-
data: Record<string,
|
|
1939
|
+
data: Record<string, Record<string, string>[]>;
|
|
1935
1940
|
fields: string[];
|
|
1936
1941
|
};
|
|
1937
1942
|
tickets: {
|
|
1938
1943
|
_id: string;
|
|
1939
|
-
editedBy: string;
|
|
1940
1944
|
price: number;
|
|
1941
1945
|
name: string;
|
|
1942
1946
|
description?: string | undefined;
|
|
1943
1947
|
isNotBuyable?: boolean | undefined;
|
|
1944
1948
|
lastBuyableDate?: Date | undefined;
|
|
1949
|
+
editedBy?: string | undefined;
|
|
1945
1950
|
createdAt?: Date | undefined;
|
|
1946
1951
|
updatedAt?: Date | undefined;
|
|
1947
1952
|
}[];
|
|
1948
1953
|
canRegister: boolean;
|
|
1954
|
+
editedBy?: string | undefined;
|
|
1949
1955
|
createdAt?: Date | undefined;
|
|
1950
1956
|
updatedAt?: Date | undefined;
|
|
1951
1957
|
location?: string | undefined;
|
|
@@ -1962,22 +1968,22 @@ type EventConfigResponse = z.infer<typeof zEventConfigResponse>;
|
|
|
1962
1968
|
|
|
1963
1969
|
declare const zDetailsTable: z.ZodObject<{
|
|
1964
1970
|
fields: z.ZodArray<z.ZodString, "many">;
|
|
1965
|
-
data: z.ZodArray<z.
|
|
1971
|
+
data: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodString>, "many">;
|
|
1966
1972
|
}, "strip", z.ZodTypeAny, {
|
|
1967
|
-
data:
|
|
1973
|
+
data: Record<string, string>[];
|
|
1968
1974
|
fields: string[];
|
|
1969
1975
|
}, {
|
|
1970
|
-
data:
|
|
1976
|
+
data: Record<string, string>[];
|
|
1971
1977
|
fields: string[];
|
|
1972
1978
|
}>;
|
|
1973
1979
|
declare const zScheduleTable: z.ZodObject<{
|
|
1974
1980
|
fields: z.ZodArray<z.ZodString, "many">;
|
|
1975
|
-
data: z.ZodRecord<z.ZodString, z.ZodArray<z.
|
|
1981
|
+
data: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodRecord<z.ZodString, z.ZodString>, "many">>;
|
|
1976
1982
|
}, "strip", z.ZodTypeAny, {
|
|
1977
|
-
data: Record<string,
|
|
1983
|
+
data: Record<string, Record<string, string>[]>;
|
|
1978
1984
|
fields: string[];
|
|
1979
1985
|
}, {
|
|
1980
|
-
data: Record<string,
|
|
1986
|
+
data: Record<string, Record<string, string>[]>;
|
|
1981
1987
|
fields: string[];
|
|
1982
1988
|
}>;
|
|
1983
1989
|
type DetailsTable = z.infer<typeof zDetailsTable>;
|
|
@@ -2077,7 +2083,7 @@ declare const zEventReg: z.ZodObject<{
|
|
|
2077
2083
|
donation: z.ZodOptional<z.ZodNumber>;
|
|
2078
2084
|
createMethod: z.ZodOptional<z.ZodString>;
|
|
2079
2085
|
_id: z.ZodString;
|
|
2080
|
-
editedBy: z.ZodString
|
|
2086
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
2081
2087
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
2082
2088
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
2083
2089
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
@@ -2087,7 +2093,6 @@ declare const zEventReg: z.ZodObject<{
|
|
|
2087
2093
|
rank: string;
|
|
2088
2094
|
email: string;
|
|
2089
2095
|
_id: string;
|
|
2090
|
-
editedBy: string;
|
|
2091
2096
|
tickets: {
|
|
2092
2097
|
amount: number;
|
|
2093
2098
|
ticket: string;
|
|
@@ -2102,6 +2107,7 @@ declare const zEventReg: z.ZodObject<{
|
|
|
2102
2107
|
notes?: string | undefined;
|
|
2103
2108
|
donation?: number | undefined;
|
|
2104
2109
|
createMethod?: string | undefined;
|
|
2110
|
+
editedBy?: string | undefined;
|
|
2105
2111
|
createdAt?: Date | undefined;
|
|
2106
2112
|
updatedAt?: Date | undefined;
|
|
2107
2113
|
}, {
|
|
@@ -2111,7 +2117,6 @@ declare const zEventReg: z.ZodObject<{
|
|
|
2111
2117
|
rank: string;
|
|
2112
2118
|
email: string;
|
|
2113
2119
|
_id: string;
|
|
2114
|
-
editedBy: string;
|
|
2115
2120
|
tickets: {
|
|
2116
2121
|
amount: number;
|
|
2117
2122
|
ticket: string;
|
|
@@ -2126,6 +2131,7 @@ declare const zEventReg: z.ZodObject<{
|
|
|
2126
2131
|
notes?: string | undefined;
|
|
2127
2132
|
donation?: number | undefined;
|
|
2128
2133
|
createMethod?: string | undefined;
|
|
2134
|
+
editedBy?: string | undefined;
|
|
2129
2135
|
createdAt?: Date | undefined;
|
|
2130
2136
|
updatedAt?: Date | undefined;
|
|
2131
2137
|
}>;
|
|
@@ -2142,7 +2148,7 @@ declare const zEventRegResponse: z.ZodObject<{
|
|
|
2142
2148
|
address: z.ZodOptional<z.ZodString>;
|
|
2143
2149
|
notes: z.ZodOptional<z.ZodString>;
|
|
2144
2150
|
_id: z.ZodString;
|
|
2145
|
-
editedBy: z.ZodString
|
|
2151
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
2146
2152
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
2147
2153
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
2148
2154
|
agaId: z.ZodString;
|
|
@@ -2158,27 +2164,27 @@ declare const zEventRegResponse: z.ZodObject<{
|
|
|
2158
2164
|
isNotBuyable: z.ZodOptional<z.ZodBoolean>;
|
|
2159
2165
|
lastBuyableDate: z.ZodOptional<z.ZodDate>;
|
|
2160
2166
|
_id: z.ZodString;
|
|
2161
|
-
editedBy: z.ZodString
|
|
2167
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
2162
2168
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
2163
2169
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
2164
2170
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2165
2171
|
_id: string;
|
|
2166
|
-
editedBy: string;
|
|
2167
2172
|
price: number;
|
|
2168
2173
|
name: string;
|
|
2169
2174
|
description?: string | undefined;
|
|
2170
2175
|
isNotBuyable?: boolean | undefined;
|
|
2171
2176
|
lastBuyableDate?: Date | undefined;
|
|
2177
|
+
editedBy?: string | undefined;
|
|
2172
2178
|
createdAt?: Date | undefined;
|
|
2173
2179
|
updatedAt?: Date | undefined;
|
|
2174
2180
|
}, {
|
|
2175
2181
|
_id: string;
|
|
2176
|
-
editedBy: string;
|
|
2177
2182
|
price: number;
|
|
2178
2183
|
name: string;
|
|
2179
2184
|
description?: string | undefined;
|
|
2180
2185
|
isNotBuyable?: boolean | undefined;
|
|
2181
2186
|
lastBuyableDate?: Date | undefined;
|
|
2187
|
+
editedBy?: string | undefined;
|
|
2182
2188
|
createdAt?: Date | undefined;
|
|
2183
2189
|
updatedAt?: Date | undefined;
|
|
2184
2190
|
}>;
|
|
@@ -2186,12 +2192,12 @@ declare const zEventRegResponse: z.ZodObject<{
|
|
|
2186
2192
|
amount: number;
|
|
2187
2193
|
ticket: {
|
|
2188
2194
|
_id: string;
|
|
2189
|
-
editedBy: string;
|
|
2190
2195
|
price: number;
|
|
2191
2196
|
name: string;
|
|
2192
2197
|
description?: string | undefined;
|
|
2193
2198
|
isNotBuyable?: boolean | undefined;
|
|
2194
2199
|
lastBuyableDate?: Date | undefined;
|
|
2200
|
+
editedBy?: string | undefined;
|
|
2195
2201
|
createdAt?: Date | undefined;
|
|
2196
2202
|
updatedAt?: Date | undefined;
|
|
2197
2203
|
};
|
|
@@ -2199,12 +2205,12 @@ declare const zEventRegResponse: z.ZodObject<{
|
|
|
2199
2205
|
amount: number;
|
|
2200
2206
|
ticket: {
|
|
2201
2207
|
_id: string;
|
|
2202
|
-
editedBy: string;
|
|
2203
2208
|
price: number;
|
|
2204
2209
|
name: string;
|
|
2205
2210
|
description?: string | undefined;
|
|
2206
2211
|
isNotBuyable?: boolean | undefined;
|
|
2207
2212
|
lastBuyableDate?: Date | undefined;
|
|
2213
|
+
editedBy?: string | undefined;
|
|
2208
2214
|
createdAt?: Date | undefined;
|
|
2209
2215
|
updatedAt?: Date | undefined;
|
|
2210
2216
|
};
|
|
@@ -2216,17 +2222,16 @@ declare const zEventRegResponse: z.ZodObject<{
|
|
|
2216
2222
|
rank: string;
|
|
2217
2223
|
email: string;
|
|
2218
2224
|
_id: string;
|
|
2219
|
-
editedBy: string;
|
|
2220
2225
|
tickets: {
|
|
2221
2226
|
amount: number;
|
|
2222
2227
|
ticket: {
|
|
2223
2228
|
_id: string;
|
|
2224
|
-
editedBy: string;
|
|
2225
2229
|
price: number;
|
|
2226
2230
|
name: string;
|
|
2227
2231
|
description?: string | undefined;
|
|
2228
2232
|
isNotBuyable?: boolean | undefined;
|
|
2229
2233
|
lastBuyableDate?: Date | undefined;
|
|
2234
|
+
editedBy?: string | undefined;
|
|
2230
2235
|
createdAt?: Date | undefined;
|
|
2231
2236
|
updatedAt?: Date | undefined;
|
|
2232
2237
|
};
|
|
@@ -2239,6 +2244,7 @@ declare const zEventRegResponse: z.ZodObject<{
|
|
|
2239
2244
|
phone?: string | undefined;
|
|
2240
2245
|
address?: string | undefined;
|
|
2241
2246
|
notes?: string | undefined;
|
|
2247
|
+
editedBy?: string | undefined;
|
|
2242
2248
|
createdAt?: Date | undefined;
|
|
2243
2249
|
updatedAt?: Date | undefined;
|
|
2244
2250
|
donation?: number | undefined;
|
|
@@ -2250,17 +2256,16 @@ declare const zEventRegResponse: z.ZodObject<{
|
|
|
2250
2256
|
rank: string;
|
|
2251
2257
|
email: string;
|
|
2252
2258
|
_id: string;
|
|
2253
|
-
editedBy: string;
|
|
2254
2259
|
tickets: {
|
|
2255
2260
|
amount: number;
|
|
2256
2261
|
ticket: {
|
|
2257
2262
|
_id: string;
|
|
2258
|
-
editedBy: string;
|
|
2259
2263
|
price: number;
|
|
2260
2264
|
name: string;
|
|
2261
2265
|
description?: string | undefined;
|
|
2262
2266
|
isNotBuyable?: boolean | undefined;
|
|
2263
2267
|
lastBuyableDate?: Date | undefined;
|
|
2268
|
+
editedBy?: string | undefined;
|
|
2264
2269
|
createdAt?: Date | undefined;
|
|
2265
2270
|
updatedAt?: Date | undefined;
|
|
2266
2271
|
};
|
|
@@ -2273,6 +2278,7 @@ declare const zEventRegResponse: z.ZodObject<{
|
|
|
2273
2278
|
phone?: string | undefined;
|
|
2274
2279
|
address?: string | undefined;
|
|
2275
2280
|
notes?: string | undefined;
|
|
2281
|
+
editedBy?: string | undefined;
|
|
2276
2282
|
createdAt?: Date | undefined;
|
|
2277
2283
|
updatedAt?: Date | undefined;
|
|
2278
2284
|
donation?: number | undefined;
|
|
@@ -2304,27 +2310,27 @@ declare const zEventTicketRegResponse: z.ZodObject<{
|
|
|
2304
2310
|
isNotBuyable: z.ZodOptional<z.ZodBoolean>;
|
|
2305
2311
|
lastBuyableDate: z.ZodOptional<z.ZodDate>;
|
|
2306
2312
|
_id: z.ZodString;
|
|
2307
|
-
editedBy: z.ZodString
|
|
2313
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
2308
2314
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
2309
2315
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
2310
2316
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2311
2317
|
_id: string;
|
|
2312
|
-
editedBy: string;
|
|
2313
2318
|
price: number;
|
|
2314
2319
|
name: string;
|
|
2315
2320
|
description?: string | undefined;
|
|
2316
2321
|
isNotBuyable?: boolean | undefined;
|
|
2317
2322
|
lastBuyableDate?: Date | undefined;
|
|
2323
|
+
editedBy?: string | undefined;
|
|
2318
2324
|
createdAt?: Date | undefined;
|
|
2319
2325
|
updatedAt?: Date | undefined;
|
|
2320
2326
|
}, {
|
|
2321
2327
|
_id: string;
|
|
2322
|
-
editedBy: string;
|
|
2323
2328
|
price: number;
|
|
2324
2329
|
name: string;
|
|
2325
2330
|
description?: string | undefined;
|
|
2326
2331
|
isNotBuyable?: boolean | undefined;
|
|
2327
2332
|
lastBuyableDate?: Date | undefined;
|
|
2333
|
+
editedBy?: string | undefined;
|
|
2328
2334
|
createdAt?: Date | undefined;
|
|
2329
2335
|
updatedAt?: Date | undefined;
|
|
2330
2336
|
}>;
|
|
@@ -2332,12 +2338,12 @@ declare const zEventTicketRegResponse: z.ZodObject<{
|
|
|
2332
2338
|
amount: number;
|
|
2333
2339
|
ticket: {
|
|
2334
2340
|
_id: string;
|
|
2335
|
-
editedBy: string;
|
|
2336
2341
|
price: number;
|
|
2337
2342
|
name: string;
|
|
2338
2343
|
description?: string | undefined;
|
|
2339
2344
|
isNotBuyable?: boolean | undefined;
|
|
2340
2345
|
lastBuyableDate?: Date | undefined;
|
|
2346
|
+
editedBy?: string | undefined;
|
|
2341
2347
|
createdAt?: Date | undefined;
|
|
2342
2348
|
updatedAt?: Date | undefined;
|
|
2343
2349
|
};
|
|
@@ -2345,12 +2351,12 @@ declare const zEventTicketRegResponse: z.ZodObject<{
|
|
|
2345
2351
|
amount: number;
|
|
2346
2352
|
ticket: {
|
|
2347
2353
|
_id: string;
|
|
2348
|
-
editedBy: string;
|
|
2349
2354
|
price: number;
|
|
2350
2355
|
name: string;
|
|
2351
2356
|
description?: string | undefined;
|
|
2352
2357
|
isNotBuyable?: boolean | undefined;
|
|
2353
2358
|
lastBuyableDate?: Date | undefined;
|
|
2359
|
+
editedBy?: string | undefined;
|
|
2354
2360
|
createdAt?: Date | undefined;
|
|
2355
2361
|
updatedAt?: Date | undefined;
|
|
2356
2362
|
};
|
|
@@ -2396,27 +2402,27 @@ declare const zEventTicket: z.ZodObject<{
|
|
|
2396
2402
|
isNotBuyable: z.ZodOptional<z.ZodBoolean>;
|
|
2397
2403
|
lastBuyableDate: z.ZodOptional<z.ZodDate>;
|
|
2398
2404
|
_id: z.ZodString;
|
|
2399
|
-
editedBy: z.ZodString
|
|
2405
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
2400
2406
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
2401
2407
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
2402
2408
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2403
2409
|
_id: string;
|
|
2404
|
-
editedBy: string;
|
|
2405
2410
|
price: number;
|
|
2406
2411
|
name: string;
|
|
2407
2412
|
description?: string | undefined;
|
|
2408
2413
|
isNotBuyable?: boolean | undefined;
|
|
2409
2414
|
lastBuyableDate?: Date | undefined;
|
|
2415
|
+
editedBy?: string | undefined;
|
|
2410
2416
|
createdAt?: Date | undefined;
|
|
2411
2417
|
updatedAt?: Date | undefined;
|
|
2412
2418
|
}, {
|
|
2413
2419
|
_id: string;
|
|
2414
|
-
editedBy: string;
|
|
2415
2420
|
price: number;
|
|
2416
2421
|
name: string;
|
|
2417
2422
|
description?: string | undefined;
|
|
2418
2423
|
isNotBuyable?: boolean | undefined;
|
|
2419
2424
|
lastBuyableDate?: Date | undefined;
|
|
2425
|
+
editedBy?: string | undefined;
|
|
2420
2426
|
createdAt?: Date | undefined;
|
|
2421
2427
|
updatedAt?: Date | undefined;
|
|
2422
2428
|
}>;
|
|
@@ -2509,12 +2515,11 @@ declare const zUser: z.ZodObject<{
|
|
|
2509
2515
|
phoneNumber: z.ZodOptional<z.ZodString>;
|
|
2510
2516
|
birthDate: z.ZodOptional<z.ZodString>;
|
|
2511
2517
|
_id: z.ZodString;
|
|
2512
|
-
editedBy: z.ZodString
|
|
2518
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
2513
2519
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
2514
2520
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
2515
2521
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2516
2522
|
_id: string;
|
|
2517
|
-
editedBy: string;
|
|
2518
2523
|
name: string;
|
|
2519
2524
|
email?: string | undefined;
|
|
2520
2525
|
address?: string | undefined;
|
|
@@ -2524,11 +2529,11 @@ declare const zUser: z.ZodObject<{
|
|
|
2524
2529
|
country?: string | undefined;
|
|
2525
2530
|
phoneNumber?: string | undefined;
|
|
2526
2531
|
birthDate?: string | undefined;
|
|
2532
|
+
editedBy?: string | undefined;
|
|
2527
2533
|
createdAt?: Date | undefined;
|
|
2528
2534
|
updatedAt?: Date | undefined;
|
|
2529
2535
|
}, {
|
|
2530
2536
|
_id: string;
|
|
2531
|
-
editedBy: string;
|
|
2532
2537
|
name: string;
|
|
2533
2538
|
email?: string | undefined;
|
|
2534
2539
|
address?: string | undefined;
|
|
@@ -2538,6 +2543,7 @@ declare const zUser: z.ZodObject<{
|
|
|
2538
2543
|
country?: string | undefined;
|
|
2539
2544
|
phoneNumber?: string | undefined;
|
|
2540
2545
|
birthDate?: string | undefined;
|
|
2546
|
+
editedBy?: string | undefined;
|
|
2541
2547
|
createdAt?: Date | undefined;
|
|
2542
2548
|
updatedAt?: Date | undefined;
|
|
2543
2549
|
}>;
|
|
@@ -2545,7 +2551,7 @@ declare const zStudent: z.ZodObject<{
|
|
|
2545
2551
|
email: z.ZodOptional<z.ZodString>;
|
|
2546
2552
|
address: z.ZodOptional<z.ZodString>;
|
|
2547
2553
|
_id: z.ZodString;
|
|
2548
|
-
editedBy: z.ZodString
|
|
2554
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
2549
2555
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
2550
2556
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
2551
2557
|
name: z.ZodString;
|
|
@@ -2560,10 +2566,10 @@ declare const zStudent: z.ZodObject<{
|
|
|
2560
2566
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2561
2567
|
rank: GoRank;
|
|
2562
2568
|
_id: string;
|
|
2563
|
-
editedBy: string;
|
|
2564
2569
|
name: string;
|
|
2565
2570
|
email?: string | undefined;
|
|
2566
2571
|
address?: string | undefined;
|
|
2572
|
+
editedBy?: string | undefined;
|
|
2567
2573
|
createdAt?: Date | undefined;
|
|
2568
2574
|
updatedAt?: Date | undefined;
|
|
2569
2575
|
username?: string | undefined;
|
|
@@ -2576,10 +2582,10 @@ declare const zStudent: z.ZodObject<{
|
|
|
2576
2582
|
}, {
|
|
2577
2583
|
rank: GoRank;
|
|
2578
2584
|
_id: string;
|
|
2579
|
-
editedBy: string;
|
|
2580
2585
|
name: string;
|
|
2581
2586
|
email?: string | undefined;
|
|
2582
2587
|
address?: string | undefined;
|
|
2588
|
+
editedBy?: string | undefined;
|
|
2583
2589
|
createdAt?: Date | undefined;
|
|
2584
2590
|
updatedAt?: Date | undefined;
|
|
2585
2591
|
username?: string | undefined;
|
|
@@ -2594,7 +2600,7 @@ declare const zTeacher: z.ZodObject<{
|
|
|
2594
2600
|
email: z.ZodOptional<z.ZodString>;
|
|
2595
2601
|
address: z.ZodOptional<z.ZodString>;
|
|
2596
2602
|
_id: z.ZodString;
|
|
2597
|
-
editedBy: z.ZodString
|
|
2603
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
2598
2604
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
2599
2605
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
2600
2606
|
name: z.ZodString;
|
|
@@ -2612,10 +2618,10 @@ declare const zTeacher: z.ZodObject<{
|
|
|
2612
2618
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2613
2619
|
rank: GoRank;
|
|
2614
2620
|
_id: string;
|
|
2615
|
-
editedBy: string;
|
|
2616
2621
|
name: string;
|
|
2617
2622
|
email?: string | undefined;
|
|
2618
2623
|
address?: string | undefined;
|
|
2624
|
+
editedBy?: string | undefined;
|
|
2619
2625
|
createdAt?: Date | undefined;
|
|
2620
2626
|
updatedAt?: Date | undefined;
|
|
2621
2627
|
username?: string | undefined;
|
|
@@ -2631,10 +2637,10 @@ declare const zTeacher: z.ZodObject<{
|
|
|
2631
2637
|
}, {
|
|
2632
2638
|
rank: GoRank;
|
|
2633
2639
|
_id: string;
|
|
2634
|
-
editedBy: string;
|
|
2635
2640
|
name: string;
|
|
2636
2641
|
email?: string | undefined;
|
|
2637
2642
|
address?: string | undefined;
|
|
2643
|
+
editedBy?: string | undefined;
|
|
2638
2644
|
createdAt?: Date | undefined;
|
|
2639
2645
|
updatedAt?: Date | undefined;
|
|
2640
2646
|
username?: string | undefined;
|