@nyig/models 0.2.39 → 0.2.40
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 +220 -220
- package/index.d.ts +220 -220
- package/index.js +2 -2
- package/index.mjs +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -134,8 +134,8 @@ declare const zAttendance: z.ZodObject<{
|
|
|
134
134
|
campOption: z.ZodNativeEnum<typeof CampOption>;
|
|
135
135
|
_id: z.ZodString;
|
|
136
136
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
137
|
-
createdAt: z.ZodOptional<z.
|
|
138
|
-
updatedAt: z.ZodOptional<z.
|
|
137
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
138
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
139
139
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
140
140
|
_id: string;
|
|
141
141
|
student: string;
|
|
@@ -148,8 +148,8 @@ declare const zAttendance: z.ZodObject<{
|
|
|
148
148
|
campOption: CampOption;
|
|
149
149
|
paid?: boolean | undefined;
|
|
150
150
|
editedBy?: string | undefined;
|
|
151
|
-
createdAt?:
|
|
152
|
-
updatedAt?:
|
|
151
|
+
createdAt?: string | undefined;
|
|
152
|
+
updatedAt?: string | undefined;
|
|
153
153
|
}, {
|
|
154
154
|
_id: string;
|
|
155
155
|
student: string;
|
|
@@ -162,8 +162,8 @@ declare const zAttendance: z.ZodObject<{
|
|
|
162
162
|
campOption: CampOption;
|
|
163
163
|
paid?: boolean | undefined;
|
|
164
164
|
editedBy?: string | undefined;
|
|
165
|
-
createdAt?:
|
|
166
|
-
updatedAt?:
|
|
165
|
+
createdAt?: string | undefined;
|
|
166
|
+
updatedAt?: string | undefined;
|
|
167
167
|
}>;
|
|
168
168
|
type BAttendance = z.infer<typeof zBAttendance>;
|
|
169
169
|
type Attendance = z.infer<typeof zAttendance>;
|
|
@@ -209,8 +209,8 @@ declare const zCampTracker: z.ZodObject<{
|
|
|
209
209
|
isNonPublic: z.ZodOptional<z.ZodBoolean>;
|
|
210
210
|
_id: z.ZodString;
|
|
211
211
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
212
|
-
createdAt: z.ZodOptional<z.
|
|
213
|
-
updatedAt: z.ZodOptional<z.
|
|
212
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
213
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
214
214
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
215
215
|
_id: string;
|
|
216
216
|
course: string;
|
|
@@ -221,8 +221,8 @@ declare const zCampTracker: z.ZodObject<{
|
|
|
221
221
|
notes?: string | undefined;
|
|
222
222
|
isNonPublic?: boolean | undefined;
|
|
223
223
|
editedBy?: string | undefined;
|
|
224
|
-
createdAt?:
|
|
225
|
-
updatedAt?:
|
|
224
|
+
createdAt?: string | undefined;
|
|
225
|
+
updatedAt?: string | undefined;
|
|
226
226
|
}, {
|
|
227
227
|
_id: string;
|
|
228
228
|
course: string;
|
|
@@ -233,8 +233,8 @@ declare const zCampTracker: z.ZodObject<{
|
|
|
233
233
|
notes?: string | undefined;
|
|
234
234
|
isNonPublic?: boolean | undefined;
|
|
235
235
|
editedBy?: string | undefined;
|
|
236
|
-
createdAt?:
|
|
237
|
-
updatedAt?:
|
|
236
|
+
createdAt?: string | undefined;
|
|
237
|
+
updatedAt?: string | undefined;
|
|
238
238
|
}>;
|
|
239
239
|
type BCampTracker = z.infer<typeof zBCampTracker>;
|
|
240
240
|
type CampTracker = z.infer<typeof zCampTracker>;
|
|
@@ -321,8 +321,8 @@ declare const zClassTracker: z.ZodObject<{
|
|
|
321
321
|
paused: z.ZodOptional<z.ZodBoolean>;
|
|
322
322
|
_id: z.ZodString;
|
|
323
323
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
324
|
-
createdAt: z.ZodOptional<z.
|
|
325
|
-
updatedAt: z.ZodOptional<z.
|
|
324
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
325
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
326
326
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
327
327
|
_id: string;
|
|
328
328
|
student: string;
|
|
@@ -340,8 +340,8 @@ declare const zClassTracker: z.ZodObject<{
|
|
|
340
340
|
completed?: boolean | undefined;
|
|
341
341
|
paused?: boolean | undefined;
|
|
342
342
|
editedBy?: string | undefined;
|
|
343
|
-
createdAt?:
|
|
344
|
-
updatedAt?:
|
|
343
|
+
createdAt?: string | undefined;
|
|
344
|
+
updatedAt?: string | undefined;
|
|
345
345
|
}, {
|
|
346
346
|
_id: string;
|
|
347
347
|
student: string;
|
|
@@ -359,8 +359,8 @@ declare const zClassTracker: z.ZodObject<{
|
|
|
359
359
|
completed?: boolean | undefined;
|
|
360
360
|
paused?: boolean | undefined;
|
|
361
361
|
editedBy?: string | undefined;
|
|
362
|
-
createdAt?:
|
|
363
|
-
updatedAt?:
|
|
362
|
+
createdAt?: string | undefined;
|
|
363
|
+
updatedAt?: string | undefined;
|
|
364
364
|
}>;
|
|
365
365
|
type BClassTracker = z.infer<typeof zBClassTracker>;
|
|
366
366
|
type ClassTracker = z.infer<typeof zClassTracker>;
|
|
@@ -444,8 +444,8 @@ declare const zCourse: z.ZodObject<{
|
|
|
444
444
|
fullCampTuition: z.ZodOptional<z.ZodNumber>;
|
|
445
445
|
_id: z.ZodString;
|
|
446
446
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
447
|
-
createdAt: z.ZodOptional<z.
|
|
448
|
-
updatedAt: z.ZodOptional<z.
|
|
447
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
448
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
449
449
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
450
450
|
_id: string;
|
|
451
451
|
name: string;
|
|
@@ -458,8 +458,8 @@ declare const zCourse: z.ZodObject<{
|
|
|
458
458
|
halfCampTuition?: number | undefined;
|
|
459
459
|
fullCampTuition?: number | undefined;
|
|
460
460
|
editedBy?: string | undefined;
|
|
461
|
-
createdAt?:
|
|
462
|
-
updatedAt?:
|
|
461
|
+
createdAt?: string | undefined;
|
|
462
|
+
updatedAt?: string | undefined;
|
|
463
463
|
}, {
|
|
464
464
|
_id: string;
|
|
465
465
|
name: string;
|
|
@@ -472,8 +472,8 @@ declare const zCourse: z.ZodObject<{
|
|
|
472
472
|
halfCampTuition?: number | undefined;
|
|
473
473
|
fullCampTuition?: number | undefined;
|
|
474
474
|
editedBy?: string | undefined;
|
|
475
|
-
createdAt?:
|
|
476
|
-
updatedAt?:
|
|
475
|
+
createdAt?: string | undefined;
|
|
476
|
+
updatedAt?: string | undefined;
|
|
477
477
|
}>;
|
|
478
478
|
type BCourse = z.infer<typeof zBCourse>;
|
|
479
479
|
type Course = z.infer<typeof zCourse>;
|
|
@@ -564,8 +564,8 @@ declare const zGroupTracker: z.ZodObject<{
|
|
|
564
564
|
ageGroup: z.ZodOptional<z.ZodNativeEnum<typeof AgeGroup>>;
|
|
565
565
|
_id: z.ZodString;
|
|
566
566
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
567
|
-
createdAt: z.ZodOptional<z.
|
|
568
|
-
updatedAt: z.ZodOptional<z.
|
|
567
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
568
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
569
569
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
570
570
|
_id: string;
|
|
571
571
|
course: string;
|
|
@@ -582,8 +582,8 @@ declare const zGroupTracker: z.ZodObject<{
|
|
|
582
582
|
courseId?: string | undefined;
|
|
583
583
|
ageGroup?: AgeGroup | undefined;
|
|
584
584
|
editedBy?: string | undefined;
|
|
585
|
-
createdAt?:
|
|
586
|
-
updatedAt?:
|
|
585
|
+
createdAt?: string | undefined;
|
|
586
|
+
updatedAt?: string | undefined;
|
|
587
587
|
}, {
|
|
588
588
|
_id: string;
|
|
589
589
|
course: string;
|
|
@@ -600,8 +600,8 @@ declare const zGroupTracker: z.ZodObject<{
|
|
|
600
600
|
courseId?: string | undefined;
|
|
601
601
|
ageGroup?: AgeGroup | undefined;
|
|
602
602
|
editedBy?: string | undefined;
|
|
603
|
-
createdAt?:
|
|
604
|
-
updatedAt?:
|
|
603
|
+
createdAt?: string | undefined;
|
|
604
|
+
updatedAt?: string | undefined;
|
|
605
605
|
}>;
|
|
606
606
|
type BGroupTracker = z.infer<typeof zBGroupTracker>;
|
|
607
607
|
type GroupTracker = z.infer<typeof zGroupTracker>;
|
|
@@ -689,8 +689,8 @@ declare const zCampBooking: z.ZodObject<{
|
|
|
689
689
|
classDates: z.ZodString;
|
|
690
690
|
_id: z.ZodString;
|
|
691
691
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
692
|
-
createdAt: z.ZodOptional<z.
|
|
693
|
-
updatedAt: z.ZodOptional<z.
|
|
692
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
693
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
694
694
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
695
695
|
paymentAmount: number;
|
|
696
696
|
firstName: string;
|
|
@@ -710,8 +710,8 @@ declare const zCampBooking: z.ZodObject<{
|
|
|
710
710
|
shipping?: boolean | undefined;
|
|
711
711
|
ctId?: string | undefined;
|
|
712
712
|
editedBy?: string | undefined;
|
|
713
|
-
createdAt?:
|
|
714
|
-
updatedAt?:
|
|
713
|
+
createdAt?: string | undefined;
|
|
714
|
+
updatedAt?: string | undefined;
|
|
715
715
|
}, {
|
|
716
716
|
paymentAmount: number;
|
|
717
717
|
firstName: string;
|
|
@@ -731,8 +731,8 @@ declare const zCampBooking: z.ZodObject<{
|
|
|
731
731
|
shipping?: boolean | undefined;
|
|
732
732
|
ctId?: string | undefined;
|
|
733
733
|
editedBy?: string | undefined;
|
|
734
|
-
createdAt?:
|
|
735
|
-
updatedAt?:
|
|
734
|
+
createdAt?: string | undefined;
|
|
735
|
+
updatedAt?: string | undefined;
|
|
736
736
|
}>;
|
|
737
737
|
type BCampBooking = z.infer<typeof zBCampBooking>;
|
|
738
738
|
type CampBooking = z.infer<typeof zCampBooking>;
|
|
@@ -808,8 +808,8 @@ declare const zGroupBooking: z.ZodObject<{
|
|
|
808
808
|
classDate: z.ZodOptional<z.ZodString>;
|
|
809
809
|
_id: z.ZodString;
|
|
810
810
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
811
|
-
createdAt: z.ZodOptional<z.
|
|
812
|
-
updatedAt: z.ZodOptional<z.
|
|
811
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
812
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
813
813
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
814
814
|
paymentAmount: number;
|
|
815
815
|
firstName: string;
|
|
@@ -829,8 +829,8 @@ declare const zGroupBooking: z.ZodObject<{
|
|
|
829
829
|
isTrial?: boolean | undefined;
|
|
830
830
|
classDate?: string | undefined;
|
|
831
831
|
editedBy?: string | undefined;
|
|
832
|
-
createdAt?:
|
|
833
|
-
updatedAt?:
|
|
832
|
+
createdAt?: string | undefined;
|
|
833
|
+
updatedAt?: string | undefined;
|
|
834
834
|
}, {
|
|
835
835
|
paymentAmount: number;
|
|
836
836
|
firstName: string;
|
|
@@ -850,8 +850,8 @@ declare const zGroupBooking: z.ZodObject<{
|
|
|
850
850
|
isTrial?: boolean | undefined;
|
|
851
851
|
classDate?: string | undefined;
|
|
852
852
|
editedBy?: string | undefined;
|
|
853
|
-
createdAt?:
|
|
854
|
-
updatedAt?:
|
|
853
|
+
createdAt?: string | undefined;
|
|
854
|
+
updatedAt?: string | undefined;
|
|
855
855
|
}>;
|
|
856
856
|
type BGroupBooking = z.infer<typeof zBGroupBooking>;
|
|
857
857
|
type GroupBooking = z.infer<typeof zGroupBooking>;
|
|
@@ -919,8 +919,8 @@ declare const zPrivateBooking: z.ZodObject<{
|
|
|
919
919
|
teacherId: z.ZodString;
|
|
920
920
|
_id: z.ZodString;
|
|
921
921
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
922
|
-
createdAt: z.ZodOptional<z.
|
|
923
|
-
updatedAt: z.ZodOptional<z.
|
|
922
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
923
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
924
924
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
925
925
|
paymentAmount: number;
|
|
926
926
|
firstName: string;
|
|
@@ -938,8 +938,8 @@ declare const zPrivateBooking: z.ZodObject<{
|
|
|
938
938
|
notes?: string | undefined;
|
|
939
939
|
classDate?: string | undefined;
|
|
940
940
|
editedBy?: string | undefined;
|
|
941
|
-
createdAt?:
|
|
942
|
-
updatedAt?:
|
|
941
|
+
createdAt?: string | undefined;
|
|
942
|
+
updatedAt?: string | undefined;
|
|
943
943
|
}, {
|
|
944
944
|
paymentAmount: number;
|
|
945
945
|
firstName: string;
|
|
@@ -957,8 +957,8 @@ declare const zPrivateBooking: z.ZodObject<{
|
|
|
957
957
|
notes?: string | undefined;
|
|
958
958
|
classDate?: string | undefined;
|
|
959
959
|
editedBy?: string | undefined;
|
|
960
|
-
createdAt?:
|
|
961
|
-
updatedAt?:
|
|
960
|
+
createdAt?: string | undefined;
|
|
961
|
+
updatedAt?: string | undefined;
|
|
962
962
|
}>;
|
|
963
963
|
type BPrivateBooking = z.infer<typeof zBPrivateBooking>;
|
|
964
964
|
type PrivateBooking = z.infer<typeof zPrivateBooking>;
|
|
@@ -1050,8 +1050,8 @@ declare const zUser: z.ZodObject<{
|
|
|
1050
1050
|
birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1051
1051
|
_id: z.ZodString;
|
|
1052
1052
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
1053
|
-
createdAt: z.ZodOptional<z.
|
|
1054
|
-
updatedAt: z.ZodOptional<z.
|
|
1053
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1054
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1055
1055
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1056
1056
|
_id: string;
|
|
1057
1057
|
name: string;
|
|
@@ -1064,8 +1064,8 @@ declare const zUser: z.ZodObject<{
|
|
|
1064
1064
|
phoneNumber?: string | undefined;
|
|
1065
1065
|
birthDate?: string | undefined;
|
|
1066
1066
|
editedBy?: string | undefined;
|
|
1067
|
-
createdAt?:
|
|
1068
|
-
updatedAt?:
|
|
1067
|
+
createdAt?: string | undefined;
|
|
1068
|
+
updatedAt?: string | undefined;
|
|
1069
1069
|
}, {
|
|
1070
1070
|
_id: string;
|
|
1071
1071
|
name: string;
|
|
@@ -1078,16 +1078,16 @@ declare const zUser: z.ZodObject<{
|
|
|
1078
1078
|
phoneNumber?: string | undefined;
|
|
1079
1079
|
birthDate?: string | undefined;
|
|
1080
1080
|
editedBy?: string | undefined;
|
|
1081
|
-
createdAt?:
|
|
1082
|
-
updatedAt?:
|
|
1081
|
+
createdAt?: string | undefined;
|
|
1082
|
+
updatedAt?: string | undefined;
|
|
1083
1083
|
}>;
|
|
1084
1084
|
declare const zStudent: z.ZodObject<{
|
|
1085
1085
|
email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1086
1086
|
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1087
1087
|
_id: z.ZodString;
|
|
1088
1088
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
1089
|
-
createdAt: z.ZodOptional<z.
|
|
1090
|
-
updatedAt: z.ZodOptional<z.
|
|
1089
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1090
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1091
1091
|
name: z.ZodString;
|
|
1092
1092
|
username: z.ZodOptional<z.ZodString>;
|
|
1093
1093
|
password: z.ZodOptional<z.ZodString>;
|
|
@@ -1104,8 +1104,8 @@ declare const zStudent: z.ZodObject<{
|
|
|
1104
1104
|
email?: string | undefined;
|
|
1105
1105
|
address?: string | undefined;
|
|
1106
1106
|
editedBy?: string | undefined;
|
|
1107
|
-
createdAt?:
|
|
1108
|
-
updatedAt?:
|
|
1107
|
+
createdAt?: string | undefined;
|
|
1108
|
+
updatedAt?: string | undefined;
|
|
1109
1109
|
username?: string | undefined;
|
|
1110
1110
|
password?: string | undefined;
|
|
1111
1111
|
roles?: number[] | undefined;
|
|
@@ -1120,8 +1120,8 @@ declare const zStudent: z.ZodObject<{
|
|
|
1120
1120
|
email?: string | undefined;
|
|
1121
1121
|
address?: string | undefined;
|
|
1122
1122
|
editedBy?: string | undefined;
|
|
1123
|
-
createdAt?:
|
|
1124
|
-
updatedAt?:
|
|
1123
|
+
createdAt?: string | undefined;
|
|
1124
|
+
updatedAt?: string | undefined;
|
|
1125
1125
|
username?: string | undefined;
|
|
1126
1126
|
password?: string | undefined;
|
|
1127
1127
|
roles?: number[] | undefined;
|
|
@@ -1135,8 +1135,8 @@ declare const zTeacher: z.ZodObject<{
|
|
|
1135
1135
|
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1136
1136
|
_id: z.ZodString;
|
|
1137
1137
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
1138
|
-
createdAt: z.ZodOptional<z.
|
|
1139
|
-
updatedAt: z.ZodOptional<z.
|
|
1138
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1139
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1140
1140
|
name: z.ZodString;
|
|
1141
1141
|
username: z.ZodOptional<z.ZodString>;
|
|
1142
1142
|
password: z.ZodOptional<z.ZodString>;
|
|
@@ -1156,8 +1156,8 @@ declare const zTeacher: z.ZodObject<{
|
|
|
1156
1156
|
email?: string | undefined;
|
|
1157
1157
|
address?: string | undefined;
|
|
1158
1158
|
editedBy?: string | undefined;
|
|
1159
|
-
createdAt?:
|
|
1160
|
-
updatedAt?:
|
|
1159
|
+
createdAt?: string | undefined;
|
|
1160
|
+
updatedAt?: string | undefined;
|
|
1161
1161
|
username?: string | undefined;
|
|
1162
1162
|
password?: string | undefined;
|
|
1163
1163
|
roles?: number[] | undefined;
|
|
@@ -1175,8 +1175,8 @@ declare const zTeacher: z.ZodObject<{
|
|
|
1175
1175
|
email?: string | undefined;
|
|
1176
1176
|
address?: string | undefined;
|
|
1177
1177
|
editedBy?: string | undefined;
|
|
1178
|
-
createdAt?:
|
|
1179
|
-
updatedAt?:
|
|
1178
|
+
createdAt?: string | undefined;
|
|
1179
|
+
updatedAt?: string | undefined;
|
|
1180
1180
|
username?: string | undefined;
|
|
1181
1181
|
password?: string | undefined;
|
|
1182
1182
|
roles?: number[] | undefined;
|
|
@@ -1287,8 +1287,8 @@ declare const zInvoicePackageResponse: z.ZodObject<{
|
|
|
1287
1287
|
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1288
1288
|
_id: z.ZodString;
|
|
1289
1289
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
1290
|
-
createdAt: z.ZodOptional<z.
|
|
1291
|
-
updatedAt: z.ZodOptional<z.
|
|
1290
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1291
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1292
1292
|
name: z.ZodString;
|
|
1293
1293
|
username: z.ZodOptional<z.ZodString>;
|
|
1294
1294
|
password: z.ZodOptional<z.ZodString>;
|
|
@@ -1305,8 +1305,8 @@ declare const zInvoicePackageResponse: z.ZodObject<{
|
|
|
1305
1305
|
email?: string | undefined;
|
|
1306
1306
|
address?: string | undefined;
|
|
1307
1307
|
editedBy?: string | undefined;
|
|
1308
|
-
createdAt?:
|
|
1309
|
-
updatedAt?:
|
|
1308
|
+
createdAt?: string | undefined;
|
|
1309
|
+
updatedAt?: string | undefined;
|
|
1310
1310
|
username?: string | undefined;
|
|
1311
1311
|
password?: string | undefined;
|
|
1312
1312
|
roles?: number[] | undefined;
|
|
@@ -1321,8 +1321,8 @@ declare const zInvoicePackageResponse: z.ZodObject<{
|
|
|
1321
1321
|
email?: string | undefined;
|
|
1322
1322
|
address?: string | undefined;
|
|
1323
1323
|
editedBy?: string | undefined;
|
|
1324
|
-
createdAt?:
|
|
1325
|
-
updatedAt?:
|
|
1324
|
+
createdAt?: string | undefined;
|
|
1325
|
+
updatedAt?: string | undefined;
|
|
1326
1326
|
username?: string | undefined;
|
|
1327
1327
|
password?: string | undefined;
|
|
1328
1328
|
roles?: number[] | undefined;
|
|
@@ -1339,8 +1339,8 @@ declare const zInvoicePackageResponse: z.ZodObject<{
|
|
|
1339
1339
|
email?: string | undefined;
|
|
1340
1340
|
address?: string | undefined;
|
|
1341
1341
|
editedBy?: string | undefined;
|
|
1342
|
-
createdAt?:
|
|
1343
|
-
updatedAt?:
|
|
1342
|
+
createdAt?: string | undefined;
|
|
1343
|
+
updatedAt?: string | undefined;
|
|
1344
1344
|
username?: string | undefined;
|
|
1345
1345
|
password?: string | undefined;
|
|
1346
1346
|
roles?: number[] | undefined;
|
|
@@ -1362,8 +1362,8 @@ declare const zInvoicePackageResponse: z.ZodObject<{
|
|
|
1362
1362
|
email?: string | undefined;
|
|
1363
1363
|
address?: string | undefined;
|
|
1364
1364
|
editedBy?: string | undefined;
|
|
1365
|
-
createdAt?:
|
|
1366
|
-
updatedAt?:
|
|
1365
|
+
createdAt?: string | undefined;
|
|
1366
|
+
updatedAt?: string | undefined;
|
|
1367
1367
|
username?: string | undefined;
|
|
1368
1368
|
password?: string | undefined;
|
|
1369
1369
|
roles?: number[] | undefined;
|
|
@@ -1517,8 +1517,8 @@ declare const zInvoice: z.ZodObject<{
|
|
|
1517
1517
|
lastEditBy: z.ZodOptional<z.ZodString>;
|
|
1518
1518
|
_id: z.ZodString;
|
|
1519
1519
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
1520
|
-
createdAt: z.ZodOptional<z.
|
|
1521
|
-
updatedAt: z.ZodOptional<z.
|
|
1520
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1521
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1522
1522
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1523
1523
|
_id: string;
|
|
1524
1524
|
billTo: string;
|
|
@@ -1541,8 +1541,8 @@ declare const zInvoice: z.ZodObject<{
|
|
|
1541
1541
|
paid?: PaymentMethod | undefined;
|
|
1542
1542
|
lastEditBy?: string | undefined;
|
|
1543
1543
|
editedBy?: string | undefined;
|
|
1544
|
-
createdAt?:
|
|
1545
|
-
updatedAt?:
|
|
1544
|
+
createdAt?: string | undefined;
|
|
1545
|
+
updatedAt?: string | undefined;
|
|
1546
1546
|
}, {
|
|
1547
1547
|
_id: string;
|
|
1548
1548
|
billTo: string;
|
|
@@ -1565,8 +1565,8 @@ declare const zInvoice: z.ZodObject<{
|
|
|
1565
1565
|
paid?: PaymentMethod | undefined;
|
|
1566
1566
|
lastEditBy?: string | undefined;
|
|
1567
1567
|
editedBy?: string | undefined;
|
|
1568
|
-
createdAt?:
|
|
1569
|
-
updatedAt?:
|
|
1568
|
+
createdAt?: string | undefined;
|
|
1569
|
+
updatedAt?: string | undefined;
|
|
1570
1570
|
}>;
|
|
1571
1571
|
declare const zInvoiceResponse: z.ZodObject<{
|
|
1572
1572
|
notes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
@@ -1574,8 +1574,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
1574
1574
|
shipping: z.ZodOptional<z.ZodNumber>;
|
|
1575
1575
|
_id: z.ZodString;
|
|
1576
1576
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
1577
|
-
createdAt: z.ZodOptional<z.
|
|
1578
|
-
updatedAt: z.ZodOptional<z.
|
|
1577
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1578
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1579
1579
|
paid: z.ZodOptional<z.ZodNativeEnum<typeof PaymentMethod>>;
|
|
1580
1580
|
billTo: z.ZodString;
|
|
1581
1581
|
discounts: z.ZodArray<z.ZodObject<{
|
|
@@ -1593,8 +1593,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
1593
1593
|
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1594
1594
|
_id: z.ZodString;
|
|
1595
1595
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
1596
|
-
createdAt: z.ZodOptional<z.
|
|
1597
|
-
updatedAt: z.ZodOptional<z.
|
|
1596
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1597
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1598
1598
|
name: z.ZodString;
|
|
1599
1599
|
username: z.ZodOptional<z.ZodString>;
|
|
1600
1600
|
password: z.ZodOptional<z.ZodString>;
|
|
@@ -1614,8 +1614,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
1614
1614
|
email?: string | undefined;
|
|
1615
1615
|
address?: string | undefined;
|
|
1616
1616
|
editedBy?: string | undefined;
|
|
1617
|
-
createdAt?:
|
|
1618
|
-
updatedAt?:
|
|
1617
|
+
createdAt?: string | undefined;
|
|
1618
|
+
updatedAt?: string | undefined;
|
|
1619
1619
|
username?: string | undefined;
|
|
1620
1620
|
password?: string | undefined;
|
|
1621
1621
|
roles?: number[] | undefined;
|
|
@@ -1633,8 +1633,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
1633
1633
|
email?: string | undefined;
|
|
1634
1634
|
address?: string | undefined;
|
|
1635
1635
|
editedBy?: string | undefined;
|
|
1636
|
-
createdAt?:
|
|
1637
|
-
updatedAt?:
|
|
1636
|
+
createdAt?: string | undefined;
|
|
1637
|
+
updatedAt?: string | undefined;
|
|
1638
1638
|
username?: string | undefined;
|
|
1639
1639
|
password?: string | undefined;
|
|
1640
1640
|
roles?: number[] | undefined;
|
|
@@ -1651,8 +1651,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
1651
1651
|
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1652
1652
|
_id: z.ZodString;
|
|
1653
1653
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
1654
|
-
createdAt: z.ZodOptional<z.
|
|
1655
|
-
updatedAt: z.ZodOptional<z.
|
|
1654
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1655
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1656
1656
|
name: z.ZodString;
|
|
1657
1657
|
username: z.ZodOptional<z.ZodString>;
|
|
1658
1658
|
password: z.ZodOptional<z.ZodString>;
|
|
@@ -1672,8 +1672,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
1672
1672
|
email?: string | undefined;
|
|
1673
1673
|
address?: string | undefined;
|
|
1674
1674
|
editedBy?: string | undefined;
|
|
1675
|
-
createdAt?:
|
|
1676
|
-
updatedAt?:
|
|
1675
|
+
createdAt?: string | undefined;
|
|
1676
|
+
updatedAt?: string | undefined;
|
|
1677
1677
|
username?: string | undefined;
|
|
1678
1678
|
password?: string | undefined;
|
|
1679
1679
|
roles?: number[] | undefined;
|
|
@@ -1691,8 +1691,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
1691
1691
|
email?: string | undefined;
|
|
1692
1692
|
address?: string | undefined;
|
|
1693
1693
|
editedBy?: string | undefined;
|
|
1694
|
-
createdAt?:
|
|
1695
|
-
updatedAt?:
|
|
1694
|
+
createdAt?: string | undefined;
|
|
1695
|
+
updatedAt?: string | undefined;
|
|
1696
1696
|
username?: string | undefined;
|
|
1697
1697
|
password?: string | undefined;
|
|
1698
1698
|
roles?: number[] | undefined;
|
|
@@ -1723,8 +1723,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
1723
1723
|
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1724
1724
|
_id: z.ZodString;
|
|
1725
1725
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
1726
|
-
createdAt: z.ZodOptional<z.
|
|
1727
|
-
updatedAt: z.ZodOptional<z.
|
|
1726
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1727
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1728
1728
|
name: z.ZodString;
|
|
1729
1729
|
username: z.ZodOptional<z.ZodString>;
|
|
1730
1730
|
password: z.ZodOptional<z.ZodString>;
|
|
@@ -1741,8 +1741,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
1741
1741
|
email?: string | undefined;
|
|
1742
1742
|
address?: string | undefined;
|
|
1743
1743
|
editedBy?: string | undefined;
|
|
1744
|
-
createdAt?:
|
|
1745
|
-
updatedAt?:
|
|
1744
|
+
createdAt?: string | undefined;
|
|
1745
|
+
updatedAt?: string | undefined;
|
|
1746
1746
|
username?: string | undefined;
|
|
1747
1747
|
password?: string | undefined;
|
|
1748
1748
|
roles?: number[] | undefined;
|
|
@@ -1757,8 +1757,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
1757
1757
|
email?: string | undefined;
|
|
1758
1758
|
address?: string | undefined;
|
|
1759
1759
|
editedBy?: string | undefined;
|
|
1760
|
-
createdAt?:
|
|
1761
|
-
updatedAt?:
|
|
1760
|
+
createdAt?: string | undefined;
|
|
1761
|
+
updatedAt?: string | undefined;
|
|
1762
1762
|
username?: string | undefined;
|
|
1763
1763
|
password?: string | undefined;
|
|
1764
1764
|
roles?: number[] | undefined;
|
|
@@ -1775,8 +1775,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
1775
1775
|
email?: string | undefined;
|
|
1776
1776
|
address?: string | undefined;
|
|
1777
1777
|
editedBy?: string | undefined;
|
|
1778
|
-
createdAt?:
|
|
1779
|
-
updatedAt?:
|
|
1778
|
+
createdAt?: string | undefined;
|
|
1779
|
+
updatedAt?: string | undefined;
|
|
1780
1780
|
username?: string | undefined;
|
|
1781
1781
|
password?: string | undefined;
|
|
1782
1782
|
roles?: number[] | undefined;
|
|
@@ -1798,8 +1798,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
1798
1798
|
email?: string | undefined;
|
|
1799
1799
|
address?: string | undefined;
|
|
1800
1800
|
editedBy?: string | undefined;
|
|
1801
|
-
createdAt?:
|
|
1802
|
-
updatedAt?:
|
|
1801
|
+
createdAt?: string | undefined;
|
|
1802
|
+
updatedAt?: string | undefined;
|
|
1803
1803
|
username?: string | undefined;
|
|
1804
1804
|
password?: string | undefined;
|
|
1805
1805
|
roles?: number[] | undefined;
|
|
@@ -1825,8 +1825,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
1825
1825
|
email?: string | undefined;
|
|
1826
1826
|
address?: string | undefined;
|
|
1827
1827
|
editedBy?: string | undefined;
|
|
1828
|
-
createdAt?:
|
|
1829
|
-
updatedAt?:
|
|
1828
|
+
createdAt?: string | undefined;
|
|
1829
|
+
updatedAt?: string | undefined;
|
|
1830
1830
|
username?: string | undefined;
|
|
1831
1831
|
password?: string | undefined;
|
|
1832
1832
|
roles?: number[] | undefined;
|
|
@@ -1852,8 +1852,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
1852
1852
|
email?: string | undefined;
|
|
1853
1853
|
address?: string | undefined;
|
|
1854
1854
|
editedBy?: string | undefined;
|
|
1855
|
-
createdAt?:
|
|
1856
|
-
updatedAt?:
|
|
1855
|
+
createdAt?: string | undefined;
|
|
1856
|
+
updatedAt?: string | undefined;
|
|
1857
1857
|
username?: string | undefined;
|
|
1858
1858
|
password?: string | undefined;
|
|
1859
1859
|
roles?: number[] | undefined;
|
|
@@ -1869,8 +1869,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
1869
1869
|
textbook?: number | undefined;
|
|
1870
1870
|
shipping?: number | undefined;
|
|
1871
1871
|
editedBy?: string | undefined;
|
|
1872
|
-
createdAt?:
|
|
1873
|
-
updatedAt?:
|
|
1872
|
+
createdAt?: string | undefined;
|
|
1873
|
+
updatedAt?: string | undefined;
|
|
1874
1874
|
paid?: PaymentMethod | undefined;
|
|
1875
1875
|
lastEditBy?: {
|
|
1876
1876
|
rank: GoRank;
|
|
@@ -1879,8 +1879,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
1879
1879
|
email?: string | undefined;
|
|
1880
1880
|
address?: string | undefined;
|
|
1881
1881
|
editedBy?: string | undefined;
|
|
1882
|
-
createdAt?:
|
|
1883
|
-
updatedAt?:
|
|
1882
|
+
createdAt?: string | undefined;
|
|
1883
|
+
updatedAt?: string | undefined;
|
|
1884
1884
|
username?: string | undefined;
|
|
1885
1885
|
password?: string | undefined;
|
|
1886
1886
|
roles?: number[] | undefined;
|
|
@@ -1903,8 +1903,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
1903
1903
|
email?: string | undefined;
|
|
1904
1904
|
address?: string | undefined;
|
|
1905
1905
|
editedBy?: string | undefined;
|
|
1906
|
-
createdAt?:
|
|
1907
|
-
updatedAt?:
|
|
1906
|
+
createdAt?: string | undefined;
|
|
1907
|
+
updatedAt?: string | undefined;
|
|
1908
1908
|
username?: string | undefined;
|
|
1909
1909
|
password?: string | undefined;
|
|
1910
1910
|
roles?: number[] | undefined;
|
|
@@ -1930,8 +1930,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
1930
1930
|
email?: string | undefined;
|
|
1931
1931
|
address?: string | undefined;
|
|
1932
1932
|
editedBy?: string | undefined;
|
|
1933
|
-
createdAt?:
|
|
1934
|
-
updatedAt?:
|
|
1933
|
+
createdAt?: string | undefined;
|
|
1934
|
+
updatedAt?: string | undefined;
|
|
1935
1935
|
username?: string | undefined;
|
|
1936
1936
|
password?: string | undefined;
|
|
1937
1937
|
roles?: number[] | undefined;
|
|
@@ -1947,8 +1947,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
1947
1947
|
textbook?: number | undefined;
|
|
1948
1948
|
shipping?: number | undefined;
|
|
1949
1949
|
editedBy?: string | undefined;
|
|
1950
|
-
createdAt?:
|
|
1951
|
-
updatedAt?:
|
|
1950
|
+
createdAt?: string | undefined;
|
|
1951
|
+
updatedAt?: string | undefined;
|
|
1952
1952
|
paid?: PaymentMethod | undefined;
|
|
1953
1953
|
lastEditBy?: {
|
|
1954
1954
|
rank: GoRank;
|
|
@@ -1957,8 +1957,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
1957
1957
|
email?: string | undefined;
|
|
1958
1958
|
address?: string | undefined;
|
|
1959
1959
|
editedBy?: string | undefined;
|
|
1960
|
-
createdAt?:
|
|
1961
|
-
updatedAt?:
|
|
1960
|
+
createdAt?: string | undefined;
|
|
1961
|
+
updatedAt?: string | undefined;
|
|
1962
1962
|
username?: string | undefined;
|
|
1963
1963
|
password?: string | undefined;
|
|
1964
1964
|
roles?: number[] | undefined;
|
|
@@ -2059,8 +2059,8 @@ declare const zTeacherPayment: z.ZodObject<{
|
|
|
2059
2059
|
}>, "many">;
|
|
2060
2060
|
_id: z.ZodString;
|
|
2061
2061
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
2062
|
-
createdAt: z.ZodOptional<z.
|
|
2063
|
-
updatedAt: z.ZodOptional<z.
|
|
2062
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2063
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2064
2064
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2065
2065
|
_id: string;
|
|
2066
2066
|
teacher: string;
|
|
@@ -2072,8 +2072,8 @@ declare const zTeacherPayment: z.ZodObject<{
|
|
|
2072
2072
|
}[];
|
|
2073
2073
|
paid?: boolean | undefined;
|
|
2074
2074
|
editedBy?: string | undefined;
|
|
2075
|
-
createdAt?:
|
|
2076
|
-
updatedAt?:
|
|
2075
|
+
createdAt?: string | undefined;
|
|
2076
|
+
updatedAt?: string | undefined;
|
|
2077
2077
|
}, {
|
|
2078
2078
|
_id: string;
|
|
2079
2079
|
teacher: string;
|
|
@@ -2085,14 +2085,14 @@ declare const zTeacherPayment: z.ZodObject<{
|
|
|
2085
2085
|
}[];
|
|
2086
2086
|
paid?: boolean | undefined;
|
|
2087
2087
|
editedBy?: string | undefined;
|
|
2088
|
-
createdAt?:
|
|
2089
|
-
updatedAt?:
|
|
2088
|
+
createdAt?: string | undefined;
|
|
2089
|
+
updatedAt?: string | undefined;
|
|
2090
2090
|
}>;
|
|
2091
2091
|
declare const zTeacherPaymentResponse: z.ZodObject<{
|
|
2092
2092
|
_id: z.ZodString;
|
|
2093
2093
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
2094
|
-
createdAt: z.ZodOptional<z.
|
|
2095
|
-
updatedAt: z.ZodOptional<z.
|
|
2094
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2095
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2096
2096
|
paid: z.ZodOptional<z.ZodBoolean>;
|
|
2097
2097
|
rows: z.ZodArray<z.ZodObject<{
|
|
2098
2098
|
course: z.ZodString;
|
|
@@ -2115,8 +2115,8 @@ declare const zTeacherPaymentResponse: z.ZodObject<{
|
|
|
2115
2115
|
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
2116
2116
|
_id: z.ZodString;
|
|
2117
2117
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
2118
|
-
createdAt: z.ZodOptional<z.
|
|
2119
|
-
updatedAt: z.ZodOptional<z.
|
|
2118
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2119
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2120
2120
|
name: z.ZodString;
|
|
2121
2121
|
username: z.ZodOptional<z.ZodString>;
|
|
2122
2122
|
password: z.ZodOptional<z.ZodString>;
|
|
@@ -2136,8 +2136,8 @@ declare const zTeacherPaymentResponse: z.ZodObject<{
|
|
|
2136
2136
|
email?: string | undefined;
|
|
2137
2137
|
address?: string | undefined;
|
|
2138
2138
|
editedBy?: string | undefined;
|
|
2139
|
-
createdAt?:
|
|
2140
|
-
updatedAt?:
|
|
2139
|
+
createdAt?: string | undefined;
|
|
2140
|
+
updatedAt?: string | undefined;
|
|
2141
2141
|
username?: string | undefined;
|
|
2142
2142
|
password?: string | undefined;
|
|
2143
2143
|
roles?: number[] | undefined;
|
|
@@ -2155,8 +2155,8 @@ declare const zTeacherPaymentResponse: z.ZodObject<{
|
|
|
2155
2155
|
email?: string | undefined;
|
|
2156
2156
|
address?: string | undefined;
|
|
2157
2157
|
editedBy?: string | undefined;
|
|
2158
|
-
createdAt?:
|
|
2159
|
-
updatedAt?:
|
|
2158
|
+
createdAt?: string | undefined;
|
|
2159
|
+
updatedAt?: string | undefined;
|
|
2160
2160
|
username?: string | undefined;
|
|
2161
2161
|
password?: string | undefined;
|
|
2162
2162
|
roles?: number[] | undefined;
|
|
@@ -2177,8 +2177,8 @@ declare const zTeacherPaymentResponse: z.ZodObject<{
|
|
|
2177
2177
|
email?: string | undefined;
|
|
2178
2178
|
address?: string | undefined;
|
|
2179
2179
|
editedBy?: string | undefined;
|
|
2180
|
-
createdAt?:
|
|
2181
|
-
updatedAt?:
|
|
2180
|
+
createdAt?: string | undefined;
|
|
2181
|
+
updatedAt?: string | undefined;
|
|
2182
2182
|
username?: string | undefined;
|
|
2183
2183
|
password?: string | undefined;
|
|
2184
2184
|
roles?: number[] | undefined;
|
|
@@ -2197,8 +2197,8 @@ declare const zTeacherPaymentResponse: z.ZodObject<{
|
|
|
2197
2197
|
wage: number;
|
|
2198
2198
|
}[];
|
|
2199
2199
|
editedBy?: string | undefined;
|
|
2200
|
-
createdAt?:
|
|
2201
|
-
updatedAt?:
|
|
2200
|
+
createdAt?: string | undefined;
|
|
2201
|
+
updatedAt?: string | undefined;
|
|
2202
2202
|
paid?: boolean | undefined;
|
|
2203
2203
|
}, {
|
|
2204
2204
|
_id: string;
|
|
@@ -2209,8 +2209,8 @@ declare const zTeacherPaymentResponse: z.ZodObject<{
|
|
|
2209
2209
|
email?: string | undefined;
|
|
2210
2210
|
address?: string | undefined;
|
|
2211
2211
|
editedBy?: string | undefined;
|
|
2212
|
-
createdAt?:
|
|
2213
|
-
updatedAt?:
|
|
2212
|
+
createdAt?: string | undefined;
|
|
2213
|
+
updatedAt?: string | undefined;
|
|
2214
2214
|
username?: string | undefined;
|
|
2215
2215
|
password?: string | undefined;
|
|
2216
2216
|
roles?: number[] | undefined;
|
|
@@ -2229,8 +2229,8 @@ declare const zTeacherPaymentResponse: z.ZodObject<{
|
|
|
2229
2229
|
wage: number;
|
|
2230
2230
|
}[];
|
|
2231
2231
|
editedBy?: string | undefined;
|
|
2232
|
-
createdAt?:
|
|
2233
|
-
updatedAt?:
|
|
2232
|
+
createdAt?: string | undefined;
|
|
2233
|
+
updatedAt?: string | undefined;
|
|
2234
2234
|
paid?: boolean | undefined;
|
|
2235
2235
|
}>;
|
|
2236
2236
|
type TeacherPaymentRow = z.infer<typeof zTeacherPaymentRow>;
|
|
@@ -2364,8 +2364,8 @@ declare const zReportTicket: z.ZodObject<{
|
|
|
2364
2364
|
resolver: z.ZodOptional<z.ZodString>;
|
|
2365
2365
|
_id: z.ZodString;
|
|
2366
2366
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
2367
|
-
createdAt: z.ZodOptional<z.
|
|
2368
|
-
updatedAt: z.ZodOptional<z.
|
|
2367
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2368
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2369
2369
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2370
2370
|
status: TicketStatus;
|
|
2371
2371
|
_id: string;
|
|
@@ -2374,8 +2374,8 @@ declare const zReportTicket: z.ZodObject<{
|
|
|
2374
2374
|
requester: string;
|
|
2375
2375
|
resolver?: string | undefined;
|
|
2376
2376
|
editedBy?: string | undefined;
|
|
2377
|
-
createdAt?:
|
|
2378
|
-
updatedAt?:
|
|
2377
|
+
createdAt?: string | undefined;
|
|
2378
|
+
updatedAt?: string | undefined;
|
|
2379
2379
|
}, {
|
|
2380
2380
|
status: TicketStatus;
|
|
2381
2381
|
_id: string;
|
|
@@ -2384,8 +2384,8 @@ declare const zReportTicket: z.ZodObject<{
|
|
|
2384
2384
|
requester: string;
|
|
2385
2385
|
resolver?: string | undefined;
|
|
2386
2386
|
editedBy?: string | undefined;
|
|
2387
|
-
createdAt?:
|
|
2388
|
-
updatedAt?:
|
|
2387
|
+
createdAt?: string | undefined;
|
|
2388
|
+
updatedAt?: string | undefined;
|
|
2389
2389
|
}>;
|
|
2390
2390
|
type BReportTicket = z.infer<typeof zBReportTicket>;
|
|
2391
2391
|
type ReportTicket = z.infer<typeof zReportTicket>;
|
|
@@ -2433,8 +2433,8 @@ declare const zSemester: z.ZodObject<{
|
|
|
2433
2433
|
importantDates: z.ZodArray<z.ZodString, "many">;
|
|
2434
2434
|
_id: z.ZodString;
|
|
2435
2435
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
2436
|
-
createdAt: z.ZodOptional<z.
|
|
2437
|
-
updatedAt: z.ZodOptional<z.
|
|
2436
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2437
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2438
2438
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2439
2439
|
_id: string;
|
|
2440
2440
|
season: Season;
|
|
@@ -2444,8 +2444,8 @@ declare const zSemester: z.ZodObject<{
|
|
|
2444
2444
|
blackoutDates: Date[];
|
|
2445
2445
|
importantDates: string[];
|
|
2446
2446
|
editedBy?: string | undefined;
|
|
2447
|
-
createdAt?:
|
|
2448
|
-
updatedAt?:
|
|
2447
|
+
createdAt?: string | undefined;
|
|
2448
|
+
updatedAt?: string | undefined;
|
|
2449
2449
|
}, {
|
|
2450
2450
|
_id: string;
|
|
2451
2451
|
season: Season;
|
|
@@ -2455,8 +2455,8 @@ declare const zSemester: z.ZodObject<{
|
|
|
2455
2455
|
blackoutDates: Date[];
|
|
2456
2456
|
importantDates: string[];
|
|
2457
2457
|
editedBy?: string | undefined;
|
|
2458
|
-
createdAt?:
|
|
2459
|
-
updatedAt?:
|
|
2458
|
+
createdAt?: string | undefined;
|
|
2459
|
+
updatedAt?: string | undefined;
|
|
2460
2460
|
}>;
|
|
2461
2461
|
type BSemester = z.infer<typeof zBSemester>;
|
|
2462
2462
|
type Semester = z.infer<typeof zSemester>;
|
|
@@ -2649,8 +2649,8 @@ declare const zEventConfig: z.ZodObject<{
|
|
|
2649
2649
|
}>>;
|
|
2650
2650
|
_id: z.ZodString;
|
|
2651
2651
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
2652
|
-
createdAt: z.ZodOptional<z.
|
|
2653
|
-
updatedAt: z.ZodOptional<z.
|
|
2652
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2653
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2654
2654
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2655
2655
|
_id: string;
|
|
2656
2656
|
title: string;
|
|
@@ -2678,8 +2678,8 @@ declare const zEventConfig: z.ZodObject<{
|
|
|
2678
2678
|
width: number;
|
|
2679
2679
|
} | undefined;
|
|
2680
2680
|
editedBy?: string | undefined;
|
|
2681
|
-
createdAt?:
|
|
2682
|
-
updatedAt?:
|
|
2681
|
+
createdAt?: string | undefined;
|
|
2682
|
+
updatedAt?: string | undefined;
|
|
2683
2683
|
}, {
|
|
2684
2684
|
_id: string;
|
|
2685
2685
|
title: string;
|
|
@@ -2707,14 +2707,14 @@ declare const zEventConfig: z.ZodObject<{
|
|
|
2707
2707
|
width: number;
|
|
2708
2708
|
} | undefined;
|
|
2709
2709
|
editedBy?: string | undefined;
|
|
2710
|
-
createdAt?:
|
|
2711
|
-
updatedAt?:
|
|
2710
|
+
createdAt?: string | undefined;
|
|
2711
|
+
updatedAt?: string | undefined;
|
|
2712
2712
|
}>;
|
|
2713
2713
|
declare const zEventConfigResponse: z.ZodObject<{
|
|
2714
2714
|
_id: z.ZodString;
|
|
2715
2715
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
2716
|
-
createdAt: z.ZodOptional<z.
|
|
2717
|
-
updatedAt: z.ZodOptional<z.
|
|
2716
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2717
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2718
2718
|
title: z.ZodString;
|
|
2719
2719
|
description: z.ZodString;
|
|
2720
2720
|
url: z.ZodString;
|
|
@@ -2766,8 +2766,8 @@ declare const zEventConfigResponse: z.ZodObject<{
|
|
|
2766
2766
|
lastBuyableDate: z.ZodOptional<z.ZodDate>;
|
|
2767
2767
|
_id: z.ZodString;
|
|
2768
2768
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
2769
|
-
createdAt: z.ZodOptional<z.
|
|
2770
|
-
updatedAt: z.ZodOptional<z.
|
|
2769
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2770
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2771
2771
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2772
2772
|
_id: string;
|
|
2773
2773
|
name: string;
|
|
@@ -2776,8 +2776,8 @@ declare const zEventConfigResponse: z.ZodObject<{
|
|
|
2776
2776
|
isNotBuyable?: boolean | undefined;
|
|
2777
2777
|
lastBuyableDate?: Date | undefined;
|
|
2778
2778
|
editedBy?: string | undefined;
|
|
2779
|
-
createdAt?:
|
|
2780
|
-
updatedAt?:
|
|
2779
|
+
createdAt?: string | undefined;
|
|
2780
|
+
updatedAt?: string | undefined;
|
|
2781
2781
|
}, {
|
|
2782
2782
|
_id: string;
|
|
2783
2783
|
name: string;
|
|
@@ -2786,8 +2786,8 @@ declare const zEventConfigResponse: z.ZodObject<{
|
|
|
2786
2786
|
isNotBuyable?: boolean | undefined;
|
|
2787
2787
|
lastBuyableDate?: Date | undefined;
|
|
2788
2788
|
editedBy?: string | undefined;
|
|
2789
|
-
createdAt?:
|
|
2790
|
-
updatedAt?:
|
|
2789
|
+
createdAt?: string | undefined;
|
|
2790
|
+
updatedAt?: string | undefined;
|
|
2791
2791
|
}>, "many">;
|
|
2792
2792
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2793
2793
|
_id: string;
|
|
@@ -2814,13 +2814,13 @@ declare const zEventConfigResponse: z.ZodObject<{
|
|
|
2814
2814
|
isNotBuyable?: boolean | undefined;
|
|
2815
2815
|
lastBuyableDate?: Date | undefined;
|
|
2816
2816
|
editedBy?: string | undefined;
|
|
2817
|
-
createdAt?:
|
|
2818
|
-
updatedAt?:
|
|
2817
|
+
createdAt?: string | undefined;
|
|
2818
|
+
updatedAt?: string | undefined;
|
|
2819
2819
|
}[];
|
|
2820
2820
|
canRegister: boolean;
|
|
2821
2821
|
editedBy?: string | undefined;
|
|
2822
|
-
createdAt?:
|
|
2823
|
-
updatedAt?:
|
|
2822
|
+
createdAt?: string | undefined;
|
|
2823
|
+
updatedAt?: string | undefined;
|
|
2824
2824
|
location?: string | undefined;
|
|
2825
2825
|
donationsDisabled?: boolean | undefined;
|
|
2826
2826
|
image?: {
|
|
@@ -2853,13 +2853,13 @@ declare const zEventConfigResponse: z.ZodObject<{
|
|
|
2853
2853
|
isNotBuyable?: boolean | undefined;
|
|
2854
2854
|
lastBuyableDate?: Date | undefined;
|
|
2855
2855
|
editedBy?: string | undefined;
|
|
2856
|
-
createdAt?:
|
|
2857
|
-
updatedAt?:
|
|
2856
|
+
createdAt?: string | undefined;
|
|
2857
|
+
updatedAt?: string | undefined;
|
|
2858
2858
|
}[];
|
|
2859
2859
|
canRegister: boolean;
|
|
2860
2860
|
editedBy?: string | undefined;
|
|
2861
|
-
createdAt?:
|
|
2862
|
-
updatedAt?:
|
|
2861
|
+
createdAt?: string | undefined;
|
|
2862
|
+
updatedAt?: string | undefined;
|
|
2863
2863
|
location?: string | undefined;
|
|
2864
2864
|
donationsDisabled?: boolean | undefined;
|
|
2865
2865
|
image?: {
|
|
@@ -2990,8 +2990,8 @@ declare const zEventReg: z.ZodObject<{
|
|
|
2990
2990
|
createMethod: z.ZodOptional<z.ZodString>;
|
|
2991
2991
|
_id: z.ZodString;
|
|
2992
2992
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
2993
|
-
createdAt: z.ZodOptional<z.
|
|
2994
|
-
updatedAt: z.ZodOptional<z.
|
|
2993
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2994
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2995
2995
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2996
2996
|
paymentAmount: number;
|
|
2997
2997
|
firstName: string;
|
|
@@ -3014,8 +3014,8 @@ declare const zEventReg: z.ZodObject<{
|
|
|
3014
3014
|
donation?: number | undefined;
|
|
3015
3015
|
createMethod?: string | undefined;
|
|
3016
3016
|
editedBy?: string | undefined;
|
|
3017
|
-
createdAt?:
|
|
3018
|
-
updatedAt?:
|
|
3017
|
+
createdAt?: string | undefined;
|
|
3018
|
+
updatedAt?: string | undefined;
|
|
3019
3019
|
}, {
|
|
3020
3020
|
paymentAmount: number;
|
|
3021
3021
|
firstName: string;
|
|
@@ -3038,8 +3038,8 @@ declare const zEventReg: z.ZodObject<{
|
|
|
3038
3038
|
donation?: number | undefined;
|
|
3039
3039
|
createMethod?: string | undefined;
|
|
3040
3040
|
editedBy?: string | undefined;
|
|
3041
|
-
createdAt?:
|
|
3042
|
-
updatedAt?:
|
|
3041
|
+
createdAt?: string | undefined;
|
|
3042
|
+
updatedAt?: string | undefined;
|
|
3043
3043
|
}>;
|
|
3044
3044
|
declare const zEventRegResponse: z.ZodObject<{
|
|
3045
3045
|
paymentAmount: z.ZodNumber;
|
|
@@ -3055,8 +3055,8 @@ declare const zEventRegResponse: z.ZodObject<{
|
|
|
3055
3055
|
notes: z.ZodOptional<z.ZodString>;
|
|
3056
3056
|
_id: z.ZodString;
|
|
3057
3057
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
3058
|
-
createdAt: z.ZodOptional<z.
|
|
3059
|
-
updatedAt: z.ZodOptional<z.
|
|
3058
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
3059
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
3060
3060
|
agaId: z.ZodString;
|
|
3061
3061
|
tournamentId: z.ZodString;
|
|
3062
3062
|
donation: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3071,8 +3071,8 @@ declare const zEventRegResponse: z.ZodObject<{
|
|
|
3071
3071
|
lastBuyableDate: z.ZodOptional<z.ZodDate>;
|
|
3072
3072
|
_id: z.ZodString;
|
|
3073
3073
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
3074
|
-
createdAt: z.ZodOptional<z.
|
|
3075
|
-
updatedAt: z.ZodOptional<z.
|
|
3074
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
3075
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
3076
3076
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
3077
3077
|
_id: string;
|
|
3078
3078
|
name: string;
|
|
@@ -3081,8 +3081,8 @@ declare const zEventRegResponse: z.ZodObject<{
|
|
|
3081
3081
|
isNotBuyable?: boolean | undefined;
|
|
3082
3082
|
lastBuyableDate?: Date | undefined;
|
|
3083
3083
|
editedBy?: string | undefined;
|
|
3084
|
-
createdAt?:
|
|
3085
|
-
updatedAt?:
|
|
3084
|
+
createdAt?: string | undefined;
|
|
3085
|
+
updatedAt?: string | undefined;
|
|
3086
3086
|
}, {
|
|
3087
3087
|
_id: string;
|
|
3088
3088
|
name: string;
|
|
@@ -3091,8 +3091,8 @@ declare const zEventRegResponse: z.ZodObject<{
|
|
|
3091
3091
|
isNotBuyable?: boolean | undefined;
|
|
3092
3092
|
lastBuyableDate?: Date | undefined;
|
|
3093
3093
|
editedBy?: string | undefined;
|
|
3094
|
-
createdAt?:
|
|
3095
|
-
updatedAt?:
|
|
3094
|
+
createdAt?: string | undefined;
|
|
3095
|
+
updatedAt?: string | undefined;
|
|
3096
3096
|
}>;
|
|
3097
3097
|
}, "strip", z.ZodTypeAny, {
|
|
3098
3098
|
amount: number;
|
|
@@ -3104,8 +3104,8 @@ declare const zEventRegResponse: z.ZodObject<{
|
|
|
3104
3104
|
isNotBuyable?: boolean | undefined;
|
|
3105
3105
|
lastBuyableDate?: Date | undefined;
|
|
3106
3106
|
editedBy?: string | undefined;
|
|
3107
|
-
createdAt?:
|
|
3108
|
-
updatedAt?:
|
|
3107
|
+
createdAt?: string | undefined;
|
|
3108
|
+
updatedAt?: string | undefined;
|
|
3109
3109
|
};
|
|
3110
3110
|
}, {
|
|
3111
3111
|
amount: number;
|
|
@@ -3117,8 +3117,8 @@ declare const zEventRegResponse: z.ZodObject<{
|
|
|
3117
3117
|
isNotBuyable?: boolean | undefined;
|
|
3118
3118
|
lastBuyableDate?: Date | undefined;
|
|
3119
3119
|
editedBy?: string | undefined;
|
|
3120
|
-
createdAt?:
|
|
3121
|
-
updatedAt?:
|
|
3120
|
+
createdAt?: string | undefined;
|
|
3121
|
+
updatedAt?: string | undefined;
|
|
3122
3122
|
};
|
|
3123
3123
|
}>, "many">;
|
|
3124
3124
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
@@ -3138,8 +3138,8 @@ declare const zEventRegResponse: z.ZodObject<{
|
|
|
3138
3138
|
isNotBuyable?: boolean | undefined;
|
|
3139
3139
|
lastBuyableDate?: Date | undefined;
|
|
3140
3140
|
editedBy?: string | undefined;
|
|
3141
|
-
createdAt?:
|
|
3142
|
-
updatedAt?:
|
|
3141
|
+
createdAt?: string | undefined;
|
|
3142
|
+
updatedAt?: string | undefined;
|
|
3143
3143
|
};
|
|
3144
3144
|
}[];
|
|
3145
3145
|
agaId: string;
|
|
@@ -3151,8 +3151,8 @@ declare const zEventRegResponse: z.ZodObject<{
|
|
|
3151
3151
|
address?: string | undefined;
|
|
3152
3152
|
notes?: string | undefined;
|
|
3153
3153
|
editedBy?: string | undefined;
|
|
3154
|
-
createdAt?:
|
|
3155
|
-
updatedAt?:
|
|
3154
|
+
createdAt?: string | undefined;
|
|
3155
|
+
updatedAt?: string | undefined;
|
|
3156
3156
|
donation?: number | undefined;
|
|
3157
3157
|
createMethod?: string | undefined;
|
|
3158
3158
|
}, {
|
|
@@ -3172,8 +3172,8 @@ declare const zEventRegResponse: z.ZodObject<{
|
|
|
3172
3172
|
isNotBuyable?: boolean | undefined;
|
|
3173
3173
|
lastBuyableDate?: Date | undefined;
|
|
3174
3174
|
editedBy?: string | undefined;
|
|
3175
|
-
createdAt?:
|
|
3176
|
-
updatedAt?:
|
|
3175
|
+
createdAt?: string | undefined;
|
|
3176
|
+
updatedAt?: string | undefined;
|
|
3177
3177
|
};
|
|
3178
3178
|
}[];
|
|
3179
3179
|
agaId: string;
|
|
@@ -3185,8 +3185,8 @@ declare const zEventRegResponse: z.ZodObject<{
|
|
|
3185
3185
|
address?: string | undefined;
|
|
3186
3186
|
notes?: string | undefined;
|
|
3187
3187
|
editedBy?: string | undefined;
|
|
3188
|
-
createdAt?:
|
|
3189
|
-
updatedAt?:
|
|
3188
|
+
createdAt?: string | undefined;
|
|
3189
|
+
updatedAt?: string | undefined;
|
|
3190
3190
|
donation?: number | undefined;
|
|
3191
3191
|
createMethod?: string | undefined;
|
|
3192
3192
|
}>;
|
|
@@ -3217,8 +3217,8 @@ declare const zEventTicketRegResponse: z.ZodObject<{
|
|
|
3217
3217
|
lastBuyableDate: z.ZodOptional<z.ZodDate>;
|
|
3218
3218
|
_id: z.ZodString;
|
|
3219
3219
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
3220
|
-
createdAt: z.ZodOptional<z.
|
|
3221
|
-
updatedAt: z.ZodOptional<z.
|
|
3220
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
3221
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
3222
3222
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
3223
3223
|
_id: string;
|
|
3224
3224
|
name: string;
|
|
@@ -3227,8 +3227,8 @@ declare const zEventTicketRegResponse: z.ZodObject<{
|
|
|
3227
3227
|
isNotBuyable?: boolean | undefined;
|
|
3228
3228
|
lastBuyableDate?: Date | undefined;
|
|
3229
3229
|
editedBy?: string | undefined;
|
|
3230
|
-
createdAt?:
|
|
3231
|
-
updatedAt?:
|
|
3230
|
+
createdAt?: string | undefined;
|
|
3231
|
+
updatedAt?: string | undefined;
|
|
3232
3232
|
}, {
|
|
3233
3233
|
_id: string;
|
|
3234
3234
|
name: string;
|
|
@@ -3237,8 +3237,8 @@ declare const zEventTicketRegResponse: z.ZodObject<{
|
|
|
3237
3237
|
isNotBuyable?: boolean | undefined;
|
|
3238
3238
|
lastBuyableDate?: Date | undefined;
|
|
3239
3239
|
editedBy?: string | undefined;
|
|
3240
|
-
createdAt?:
|
|
3241
|
-
updatedAt?:
|
|
3240
|
+
createdAt?: string | undefined;
|
|
3241
|
+
updatedAt?: string | undefined;
|
|
3242
3242
|
}>;
|
|
3243
3243
|
}, "strip", z.ZodTypeAny, {
|
|
3244
3244
|
amount: number;
|
|
@@ -3250,8 +3250,8 @@ declare const zEventTicketRegResponse: z.ZodObject<{
|
|
|
3250
3250
|
isNotBuyable?: boolean | undefined;
|
|
3251
3251
|
lastBuyableDate?: Date | undefined;
|
|
3252
3252
|
editedBy?: string | undefined;
|
|
3253
|
-
createdAt?:
|
|
3254
|
-
updatedAt?:
|
|
3253
|
+
createdAt?: string | undefined;
|
|
3254
|
+
updatedAt?: string | undefined;
|
|
3255
3255
|
};
|
|
3256
3256
|
}, {
|
|
3257
3257
|
amount: number;
|
|
@@ -3263,8 +3263,8 @@ declare const zEventTicketRegResponse: z.ZodObject<{
|
|
|
3263
3263
|
isNotBuyable?: boolean | undefined;
|
|
3264
3264
|
lastBuyableDate?: Date | undefined;
|
|
3265
3265
|
editedBy?: string | undefined;
|
|
3266
|
-
createdAt?:
|
|
3267
|
-
updatedAt?:
|
|
3266
|
+
createdAt?: string | undefined;
|
|
3267
|
+
updatedAt?: string | undefined;
|
|
3268
3268
|
};
|
|
3269
3269
|
}>;
|
|
3270
3270
|
type EventTicketRegResponse = z.infer<typeof zEventTicketRegResponse>;
|
|
@@ -3309,8 +3309,8 @@ declare const zEventTicket: z.ZodObject<{
|
|
|
3309
3309
|
lastBuyableDate: z.ZodOptional<z.ZodDate>;
|
|
3310
3310
|
_id: z.ZodString;
|
|
3311
3311
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
3312
|
-
createdAt: z.ZodOptional<z.
|
|
3313
|
-
updatedAt: z.ZodOptional<z.
|
|
3312
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
3313
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
3314
3314
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
3315
3315
|
_id: string;
|
|
3316
3316
|
name: string;
|
|
@@ -3319,8 +3319,8 @@ declare const zEventTicket: z.ZodObject<{
|
|
|
3319
3319
|
isNotBuyable?: boolean | undefined;
|
|
3320
3320
|
lastBuyableDate?: Date | undefined;
|
|
3321
3321
|
editedBy?: string | undefined;
|
|
3322
|
-
createdAt?:
|
|
3323
|
-
updatedAt?:
|
|
3322
|
+
createdAt?: string | undefined;
|
|
3323
|
+
updatedAt?: string | undefined;
|
|
3324
3324
|
}, {
|
|
3325
3325
|
_id: string;
|
|
3326
3326
|
name: string;
|
|
@@ -3329,8 +3329,8 @@ declare const zEventTicket: z.ZodObject<{
|
|
|
3329
3329
|
isNotBuyable?: boolean | undefined;
|
|
3330
3330
|
lastBuyableDate?: Date | undefined;
|
|
3331
3331
|
editedBy?: string | undefined;
|
|
3332
|
-
createdAt?:
|
|
3333
|
-
updatedAt?:
|
|
3332
|
+
createdAt?: string | undefined;
|
|
3333
|
+
updatedAt?: string | undefined;
|
|
3334
3334
|
}>;
|
|
3335
3335
|
type BEventTicket = z.infer<typeof zBEventTicket>;
|
|
3336
3336
|
type EventTicket = z.infer<typeof zEventTicket>;
|