@nyig/models 0.2.39 → 0.2.41

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.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.ZodDate>;
138
- updatedAt: z.ZodOptional<z.ZodDate>;
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?: Date | undefined;
152
- updatedAt?: Date | undefined;
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?: Date | undefined;
166
- updatedAt?: Date | undefined;
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.ZodDate>;
213
- updatedAt: z.ZodOptional<z.ZodDate>;
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?: Date | undefined;
225
- updatedAt?: Date | undefined;
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?: Date | undefined;
237
- updatedAt?: Date | undefined;
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.ZodDate>;
325
- updatedAt: z.ZodOptional<z.ZodDate>;
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?: Date | undefined;
344
- updatedAt?: Date | undefined;
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?: Date | undefined;
363
- updatedAt?: Date | undefined;
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.ZodDate>;
448
- updatedAt: z.ZodOptional<z.ZodDate>;
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?: Date | undefined;
462
- updatedAt?: Date | undefined;
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?: Date | undefined;
476
- updatedAt?: Date | undefined;
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.ZodDate>;
568
- updatedAt: z.ZodOptional<z.ZodDate>;
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?: Date | undefined;
586
- updatedAt?: Date | undefined;
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?: Date | undefined;
604
- updatedAt?: Date | undefined;
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.ZodDate>;
693
- updatedAt: z.ZodOptional<z.ZodDate>;
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?: Date | undefined;
714
- updatedAt?: Date | undefined;
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?: Date | undefined;
735
- updatedAt?: Date | undefined;
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.ZodDate>;
812
- updatedAt: z.ZodOptional<z.ZodDate>;
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?: Date | undefined;
833
- updatedAt?: Date | undefined;
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?: Date | undefined;
854
- updatedAt?: Date | undefined;
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.ZodDate>;
923
- updatedAt: z.ZodOptional<z.ZodDate>;
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?: Date | undefined;
942
- updatedAt?: Date | undefined;
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?: Date | undefined;
961
- updatedAt?: Date | undefined;
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.ZodDate>;
1054
- updatedAt: z.ZodOptional<z.ZodDate>;
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?: Date | undefined;
1068
- updatedAt?: Date | undefined;
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?: Date | undefined;
1082
- updatedAt?: Date | undefined;
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.ZodDate>;
1090
- updatedAt: z.ZodOptional<z.ZodDate>;
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?: Date | undefined;
1108
- updatedAt?: Date | undefined;
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?: Date | undefined;
1124
- updatedAt?: Date | undefined;
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.ZodDate>;
1139
- updatedAt: z.ZodOptional<z.ZodDate>;
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?: Date | undefined;
1160
- updatedAt?: Date | undefined;
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?: Date | undefined;
1179
- updatedAt?: Date | undefined;
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.ZodDate>;
1291
- updatedAt: z.ZodOptional<z.ZodDate>;
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?: Date | undefined;
1309
- updatedAt?: Date | undefined;
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?: Date | undefined;
1325
- updatedAt?: Date | undefined;
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?: Date | undefined;
1343
- updatedAt?: Date | undefined;
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?: Date | undefined;
1366
- updatedAt?: Date | undefined;
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.ZodDate>;
1521
- updatedAt: z.ZodOptional<z.ZodDate>;
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?: Date | undefined;
1545
- updatedAt?: Date | undefined;
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?: Date | undefined;
1569
- updatedAt?: Date | undefined;
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.ZodDate>;
1578
- updatedAt: z.ZodOptional<z.ZodDate>;
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.ZodDate>;
1597
- updatedAt: z.ZodOptional<z.ZodDate>;
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?: Date | undefined;
1618
- updatedAt?: Date | undefined;
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?: Date | undefined;
1637
- updatedAt?: Date | undefined;
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.ZodDate>;
1655
- updatedAt: z.ZodOptional<z.ZodDate>;
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?: Date | undefined;
1676
- updatedAt?: Date | undefined;
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?: Date | undefined;
1695
- updatedAt?: Date | undefined;
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.ZodDate>;
1727
- updatedAt: z.ZodOptional<z.ZodDate>;
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?: Date | undefined;
1745
- updatedAt?: Date | undefined;
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?: Date | undefined;
1761
- updatedAt?: Date | undefined;
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?: Date | undefined;
1779
- updatedAt?: Date | undefined;
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?: Date | undefined;
1802
- updatedAt?: Date | undefined;
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?: Date | undefined;
1829
- updatedAt?: Date | undefined;
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?: Date | undefined;
1856
- updatedAt?: Date | undefined;
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?: Date | undefined;
1873
- updatedAt?: Date | undefined;
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?: Date | undefined;
1883
- updatedAt?: Date | undefined;
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?: Date | undefined;
1907
- updatedAt?: Date | undefined;
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?: Date | undefined;
1934
- updatedAt?: Date | undefined;
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?: Date | undefined;
1951
- updatedAt?: Date | undefined;
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?: Date | undefined;
1961
- updatedAt?: Date | undefined;
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.ZodDate>;
2063
- updatedAt: z.ZodOptional<z.ZodDate>;
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?: Date | undefined;
2076
- updatedAt?: Date | undefined;
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?: Date | undefined;
2089
- updatedAt?: Date | undefined;
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.ZodDate>;
2095
- updatedAt: z.ZodOptional<z.ZodDate>;
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.ZodDate>;
2119
- updatedAt: z.ZodOptional<z.ZodDate>;
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?: Date | undefined;
2140
- updatedAt?: Date | undefined;
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?: Date | undefined;
2159
- updatedAt?: Date | undefined;
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?: Date | undefined;
2181
- updatedAt?: Date | undefined;
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?: Date | undefined;
2201
- updatedAt?: Date | undefined;
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?: Date | undefined;
2213
- updatedAt?: Date | undefined;
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?: Date | undefined;
2233
- updatedAt?: Date | undefined;
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.ZodDate>;
2368
- updatedAt: z.ZodOptional<z.ZodDate>;
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?: Date | undefined;
2378
- updatedAt?: Date | undefined;
2377
+ createdAt?: string | undefined;
2378
+ updatedAt?: string | undefined;
2379
2379
  }, {
2380
2380
  status: TicketStatus;
2381
2381
  _id: string;
@@ -2384,11 +2384,143 @@ declare const zReportTicket: z.ZodObject<{
2384
2384
  requester: string;
2385
2385
  resolver?: string | undefined;
2386
2386
  editedBy?: string | undefined;
2387
- createdAt?: Date | undefined;
2388
- updatedAt?: Date | undefined;
2387
+ createdAt?: string | undefined;
2388
+ updatedAt?: string | undefined;
2389
+ }>;
2390
+ declare const zReportTicketResponse: z.ZodObject<{
2391
+ status: z.ZodNativeEnum<typeof TicketStatus>;
2392
+ _id: z.ZodString;
2393
+ editedBy: z.ZodOptional<z.ZodString>;
2394
+ createdAt: z.ZodOptional<z.ZodString>;
2395
+ updatedAt: z.ZodOptional<z.ZodString>;
2396
+ title: z.ZodString;
2397
+ description: z.ZodString;
2398
+ requester: z.ZodObject<{
2399
+ name: z.ZodString;
2400
+ username: z.ZodOptional<z.ZodString>;
2401
+ password: z.ZodOptional<z.ZodString>;
2402
+ roles: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
2403
+ email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2404
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2405
+ country: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2406
+ phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2407
+ birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2408
+ }, "strip", z.ZodTypeAny, {
2409
+ name: string;
2410
+ username?: string | undefined;
2411
+ password?: string | undefined;
2412
+ roles?: number[] | undefined;
2413
+ email?: string | undefined;
2414
+ address?: string | undefined;
2415
+ country?: string | undefined;
2416
+ phoneNumber?: string | undefined;
2417
+ birthDate?: string | undefined;
2418
+ }, {
2419
+ name: string;
2420
+ username?: string | undefined;
2421
+ password?: string | undefined;
2422
+ roles?: number[] | undefined;
2423
+ email?: string | undefined;
2424
+ address?: string | undefined;
2425
+ country?: string | undefined;
2426
+ phoneNumber?: string | undefined;
2427
+ birthDate?: string | undefined;
2428
+ }>;
2429
+ resolver: z.ZodOptional<z.ZodObject<{
2430
+ name: z.ZodString;
2431
+ username: z.ZodOptional<z.ZodString>;
2432
+ password: z.ZodOptional<z.ZodString>;
2433
+ roles: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
2434
+ email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2435
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2436
+ country: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2437
+ phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2438
+ birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2439
+ }, "strip", z.ZodTypeAny, {
2440
+ name: string;
2441
+ username?: string | undefined;
2442
+ password?: string | undefined;
2443
+ roles?: number[] | undefined;
2444
+ email?: string | undefined;
2445
+ address?: string | undefined;
2446
+ country?: string | undefined;
2447
+ phoneNumber?: string | undefined;
2448
+ birthDate?: string | undefined;
2449
+ }, {
2450
+ name: string;
2451
+ username?: string | undefined;
2452
+ password?: string | undefined;
2453
+ roles?: number[] | undefined;
2454
+ email?: string | undefined;
2455
+ address?: string | undefined;
2456
+ country?: string | undefined;
2457
+ phoneNumber?: string | undefined;
2458
+ birthDate?: string | undefined;
2459
+ }>>;
2460
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
2461
+ status: TicketStatus;
2462
+ _id: string;
2463
+ title: string;
2464
+ description: string;
2465
+ requester: {
2466
+ name: string;
2467
+ username?: string | undefined;
2468
+ password?: string | undefined;
2469
+ roles?: number[] | undefined;
2470
+ email?: string | undefined;
2471
+ address?: string | undefined;
2472
+ country?: string | undefined;
2473
+ phoneNumber?: string | undefined;
2474
+ birthDate?: string | undefined;
2475
+ };
2476
+ editedBy?: string | undefined;
2477
+ createdAt?: string | undefined;
2478
+ updatedAt?: string | undefined;
2479
+ resolver?: {
2480
+ name: string;
2481
+ username?: string | undefined;
2482
+ password?: string | undefined;
2483
+ roles?: number[] | undefined;
2484
+ email?: string | undefined;
2485
+ address?: string | undefined;
2486
+ country?: string | undefined;
2487
+ phoneNumber?: string | undefined;
2488
+ birthDate?: string | undefined;
2489
+ } | undefined;
2490
+ }, {
2491
+ status: TicketStatus;
2492
+ _id: string;
2493
+ title: string;
2494
+ description: string;
2495
+ requester: {
2496
+ name: string;
2497
+ username?: string | undefined;
2498
+ password?: string | undefined;
2499
+ roles?: number[] | undefined;
2500
+ email?: string | undefined;
2501
+ address?: string | undefined;
2502
+ country?: string | undefined;
2503
+ phoneNumber?: string | undefined;
2504
+ birthDate?: string | undefined;
2505
+ };
2506
+ editedBy?: string | undefined;
2507
+ createdAt?: string | undefined;
2508
+ updatedAt?: string | undefined;
2509
+ resolver?: {
2510
+ name: string;
2511
+ username?: string | undefined;
2512
+ password?: string | undefined;
2513
+ roles?: number[] | undefined;
2514
+ email?: string | undefined;
2515
+ address?: string | undefined;
2516
+ country?: string | undefined;
2517
+ phoneNumber?: string | undefined;
2518
+ birthDate?: string | undefined;
2519
+ } | undefined;
2389
2520
  }>;
2390
2521
  type BReportTicket = z.infer<typeof zBReportTicket>;
2391
2522
  type ReportTicket = z.infer<typeof zReportTicket>;
2523
+ type ReportTicketResponse = z.infer<typeof zReportTicketResponse>;
2392
2524
 
2393
2525
  declare enum Season {
2394
2526
  FALL = "fall",
@@ -2433,8 +2565,8 @@ declare const zSemester: z.ZodObject<{
2433
2565
  importantDates: z.ZodArray<z.ZodString, "many">;
2434
2566
  _id: z.ZodString;
2435
2567
  editedBy: z.ZodOptional<z.ZodString>;
2436
- createdAt: z.ZodOptional<z.ZodDate>;
2437
- updatedAt: z.ZodOptional<z.ZodDate>;
2568
+ createdAt: z.ZodOptional<z.ZodString>;
2569
+ updatedAt: z.ZodOptional<z.ZodString>;
2438
2570
  }, z.UnknownKeysParam, z.ZodTypeAny, {
2439
2571
  _id: string;
2440
2572
  season: Season;
@@ -2444,8 +2576,8 @@ declare const zSemester: z.ZodObject<{
2444
2576
  blackoutDates: Date[];
2445
2577
  importantDates: string[];
2446
2578
  editedBy?: string | undefined;
2447
- createdAt?: Date | undefined;
2448
- updatedAt?: Date | undefined;
2579
+ createdAt?: string | undefined;
2580
+ updatedAt?: string | undefined;
2449
2581
  }, {
2450
2582
  _id: string;
2451
2583
  season: Season;
@@ -2455,8 +2587,8 @@ declare const zSemester: z.ZodObject<{
2455
2587
  blackoutDates: Date[];
2456
2588
  importantDates: string[];
2457
2589
  editedBy?: string | undefined;
2458
- createdAt?: Date | undefined;
2459
- updatedAt?: Date | undefined;
2590
+ createdAt?: string | undefined;
2591
+ updatedAt?: string | undefined;
2460
2592
  }>;
2461
2593
  type BSemester = z.infer<typeof zBSemester>;
2462
2594
  type Semester = z.infer<typeof zSemester>;
@@ -2649,8 +2781,8 @@ declare const zEventConfig: z.ZodObject<{
2649
2781
  }>>;
2650
2782
  _id: z.ZodString;
2651
2783
  editedBy: z.ZodOptional<z.ZodString>;
2652
- createdAt: z.ZodOptional<z.ZodDate>;
2653
- updatedAt: z.ZodOptional<z.ZodDate>;
2784
+ createdAt: z.ZodOptional<z.ZodString>;
2785
+ updatedAt: z.ZodOptional<z.ZodString>;
2654
2786
  }, z.UnknownKeysParam, z.ZodTypeAny, {
2655
2787
  _id: string;
2656
2788
  title: string;
@@ -2678,8 +2810,8 @@ declare const zEventConfig: z.ZodObject<{
2678
2810
  width: number;
2679
2811
  } | undefined;
2680
2812
  editedBy?: string | undefined;
2681
- createdAt?: Date | undefined;
2682
- updatedAt?: Date | undefined;
2813
+ createdAt?: string | undefined;
2814
+ updatedAt?: string | undefined;
2683
2815
  }, {
2684
2816
  _id: string;
2685
2817
  title: string;
@@ -2707,14 +2839,14 @@ declare const zEventConfig: z.ZodObject<{
2707
2839
  width: number;
2708
2840
  } | undefined;
2709
2841
  editedBy?: string | undefined;
2710
- createdAt?: Date | undefined;
2711
- updatedAt?: Date | undefined;
2842
+ createdAt?: string | undefined;
2843
+ updatedAt?: string | undefined;
2712
2844
  }>;
2713
2845
  declare const zEventConfigResponse: z.ZodObject<{
2714
2846
  _id: z.ZodString;
2715
2847
  editedBy: z.ZodOptional<z.ZodString>;
2716
- createdAt: z.ZodOptional<z.ZodDate>;
2717
- updatedAt: z.ZodOptional<z.ZodDate>;
2848
+ createdAt: z.ZodOptional<z.ZodString>;
2849
+ updatedAt: z.ZodOptional<z.ZodString>;
2718
2850
  title: z.ZodString;
2719
2851
  description: z.ZodString;
2720
2852
  url: z.ZodString;
@@ -2766,8 +2898,8 @@ declare const zEventConfigResponse: z.ZodObject<{
2766
2898
  lastBuyableDate: z.ZodOptional<z.ZodDate>;
2767
2899
  _id: z.ZodString;
2768
2900
  editedBy: z.ZodOptional<z.ZodString>;
2769
- createdAt: z.ZodOptional<z.ZodDate>;
2770
- updatedAt: z.ZodOptional<z.ZodDate>;
2901
+ createdAt: z.ZodOptional<z.ZodString>;
2902
+ updatedAt: z.ZodOptional<z.ZodString>;
2771
2903
  }, z.UnknownKeysParam, z.ZodTypeAny, {
2772
2904
  _id: string;
2773
2905
  name: string;
@@ -2776,8 +2908,8 @@ declare const zEventConfigResponse: z.ZodObject<{
2776
2908
  isNotBuyable?: boolean | undefined;
2777
2909
  lastBuyableDate?: Date | undefined;
2778
2910
  editedBy?: string | undefined;
2779
- createdAt?: Date | undefined;
2780
- updatedAt?: Date | undefined;
2911
+ createdAt?: string | undefined;
2912
+ updatedAt?: string | undefined;
2781
2913
  }, {
2782
2914
  _id: string;
2783
2915
  name: string;
@@ -2786,8 +2918,8 @@ declare const zEventConfigResponse: z.ZodObject<{
2786
2918
  isNotBuyable?: boolean | undefined;
2787
2919
  lastBuyableDate?: Date | undefined;
2788
2920
  editedBy?: string | undefined;
2789
- createdAt?: Date | undefined;
2790
- updatedAt?: Date | undefined;
2921
+ createdAt?: string | undefined;
2922
+ updatedAt?: string | undefined;
2791
2923
  }>, "many">;
2792
2924
  }, z.UnknownKeysParam, z.ZodTypeAny, {
2793
2925
  _id: string;
@@ -2814,13 +2946,13 @@ declare const zEventConfigResponse: z.ZodObject<{
2814
2946
  isNotBuyable?: boolean | undefined;
2815
2947
  lastBuyableDate?: Date | undefined;
2816
2948
  editedBy?: string | undefined;
2817
- createdAt?: Date | undefined;
2818
- updatedAt?: Date | undefined;
2949
+ createdAt?: string | undefined;
2950
+ updatedAt?: string | undefined;
2819
2951
  }[];
2820
2952
  canRegister: boolean;
2821
2953
  editedBy?: string | undefined;
2822
- createdAt?: Date | undefined;
2823
- updatedAt?: Date | undefined;
2954
+ createdAt?: string | undefined;
2955
+ updatedAt?: string | undefined;
2824
2956
  location?: string | undefined;
2825
2957
  donationsDisabled?: boolean | undefined;
2826
2958
  image?: {
@@ -2853,13 +2985,13 @@ declare const zEventConfigResponse: z.ZodObject<{
2853
2985
  isNotBuyable?: boolean | undefined;
2854
2986
  lastBuyableDate?: Date | undefined;
2855
2987
  editedBy?: string | undefined;
2856
- createdAt?: Date | undefined;
2857
- updatedAt?: Date | undefined;
2988
+ createdAt?: string | undefined;
2989
+ updatedAt?: string | undefined;
2858
2990
  }[];
2859
2991
  canRegister: boolean;
2860
2992
  editedBy?: string | undefined;
2861
- createdAt?: Date | undefined;
2862
- updatedAt?: Date | undefined;
2993
+ createdAt?: string | undefined;
2994
+ updatedAt?: string | undefined;
2863
2995
  location?: string | undefined;
2864
2996
  donationsDisabled?: boolean | undefined;
2865
2997
  image?: {
@@ -2990,8 +3122,8 @@ declare const zEventReg: z.ZodObject<{
2990
3122
  createMethod: z.ZodOptional<z.ZodString>;
2991
3123
  _id: z.ZodString;
2992
3124
  editedBy: z.ZodOptional<z.ZodString>;
2993
- createdAt: z.ZodOptional<z.ZodDate>;
2994
- updatedAt: z.ZodOptional<z.ZodDate>;
3125
+ createdAt: z.ZodOptional<z.ZodString>;
3126
+ updatedAt: z.ZodOptional<z.ZodString>;
2995
3127
  }, z.UnknownKeysParam, z.ZodTypeAny, {
2996
3128
  paymentAmount: number;
2997
3129
  firstName: string;
@@ -3014,8 +3146,8 @@ declare const zEventReg: z.ZodObject<{
3014
3146
  donation?: number | undefined;
3015
3147
  createMethod?: string | undefined;
3016
3148
  editedBy?: string | undefined;
3017
- createdAt?: Date | undefined;
3018
- updatedAt?: Date | undefined;
3149
+ createdAt?: string | undefined;
3150
+ updatedAt?: string | undefined;
3019
3151
  }, {
3020
3152
  paymentAmount: number;
3021
3153
  firstName: string;
@@ -3038,8 +3170,8 @@ declare const zEventReg: z.ZodObject<{
3038
3170
  donation?: number | undefined;
3039
3171
  createMethod?: string | undefined;
3040
3172
  editedBy?: string | undefined;
3041
- createdAt?: Date | undefined;
3042
- updatedAt?: Date | undefined;
3173
+ createdAt?: string | undefined;
3174
+ updatedAt?: string | undefined;
3043
3175
  }>;
3044
3176
  declare const zEventRegResponse: z.ZodObject<{
3045
3177
  paymentAmount: z.ZodNumber;
@@ -3055,8 +3187,8 @@ declare const zEventRegResponse: z.ZodObject<{
3055
3187
  notes: z.ZodOptional<z.ZodString>;
3056
3188
  _id: z.ZodString;
3057
3189
  editedBy: z.ZodOptional<z.ZodString>;
3058
- createdAt: z.ZodOptional<z.ZodDate>;
3059
- updatedAt: z.ZodOptional<z.ZodDate>;
3190
+ createdAt: z.ZodOptional<z.ZodString>;
3191
+ updatedAt: z.ZodOptional<z.ZodString>;
3060
3192
  agaId: z.ZodString;
3061
3193
  tournamentId: z.ZodString;
3062
3194
  donation: z.ZodOptional<z.ZodNumber>;
@@ -3071,8 +3203,8 @@ declare const zEventRegResponse: z.ZodObject<{
3071
3203
  lastBuyableDate: z.ZodOptional<z.ZodDate>;
3072
3204
  _id: z.ZodString;
3073
3205
  editedBy: z.ZodOptional<z.ZodString>;
3074
- createdAt: z.ZodOptional<z.ZodDate>;
3075
- updatedAt: z.ZodOptional<z.ZodDate>;
3206
+ createdAt: z.ZodOptional<z.ZodString>;
3207
+ updatedAt: z.ZodOptional<z.ZodString>;
3076
3208
  }, z.UnknownKeysParam, z.ZodTypeAny, {
3077
3209
  _id: string;
3078
3210
  name: string;
@@ -3081,8 +3213,8 @@ declare const zEventRegResponse: z.ZodObject<{
3081
3213
  isNotBuyable?: boolean | undefined;
3082
3214
  lastBuyableDate?: Date | undefined;
3083
3215
  editedBy?: string | undefined;
3084
- createdAt?: Date | undefined;
3085
- updatedAt?: Date | undefined;
3216
+ createdAt?: string | undefined;
3217
+ updatedAt?: string | undefined;
3086
3218
  }, {
3087
3219
  _id: string;
3088
3220
  name: string;
@@ -3091,8 +3223,8 @@ declare const zEventRegResponse: z.ZodObject<{
3091
3223
  isNotBuyable?: boolean | undefined;
3092
3224
  lastBuyableDate?: Date | undefined;
3093
3225
  editedBy?: string | undefined;
3094
- createdAt?: Date | undefined;
3095
- updatedAt?: Date | undefined;
3226
+ createdAt?: string | undefined;
3227
+ updatedAt?: string | undefined;
3096
3228
  }>;
3097
3229
  }, "strip", z.ZodTypeAny, {
3098
3230
  amount: number;
@@ -3104,8 +3236,8 @@ declare const zEventRegResponse: z.ZodObject<{
3104
3236
  isNotBuyable?: boolean | undefined;
3105
3237
  lastBuyableDate?: Date | undefined;
3106
3238
  editedBy?: string | undefined;
3107
- createdAt?: Date | undefined;
3108
- updatedAt?: Date | undefined;
3239
+ createdAt?: string | undefined;
3240
+ updatedAt?: string | undefined;
3109
3241
  };
3110
3242
  }, {
3111
3243
  amount: number;
@@ -3117,8 +3249,8 @@ declare const zEventRegResponse: z.ZodObject<{
3117
3249
  isNotBuyable?: boolean | undefined;
3118
3250
  lastBuyableDate?: Date | undefined;
3119
3251
  editedBy?: string | undefined;
3120
- createdAt?: Date | undefined;
3121
- updatedAt?: Date | undefined;
3252
+ createdAt?: string | undefined;
3253
+ updatedAt?: string | undefined;
3122
3254
  };
3123
3255
  }>, "many">;
3124
3256
  }, z.UnknownKeysParam, z.ZodTypeAny, {
@@ -3138,8 +3270,8 @@ declare const zEventRegResponse: z.ZodObject<{
3138
3270
  isNotBuyable?: boolean | undefined;
3139
3271
  lastBuyableDate?: Date | undefined;
3140
3272
  editedBy?: string | undefined;
3141
- createdAt?: Date | undefined;
3142
- updatedAt?: Date | undefined;
3273
+ createdAt?: string | undefined;
3274
+ updatedAt?: string | undefined;
3143
3275
  };
3144
3276
  }[];
3145
3277
  agaId: string;
@@ -3151,8 +3283,8 @@ declare const zEventRegResponse: z.ZodObject<{
3151
3283
  address?: string | undefined;
3152
3284
  notes?: string | undefined;
3153
3285
  editedBy?: string | undefined;
3154
- createdAt?: Date | undefined;
3155
- updatedAt?: Date | undefined;
3286
+ createdAt?: string | undefined;
3287
+ updatedAt?: string | undefined;
3156
3288
  donation?: number | undefined;
3157
3289
  createMethod?: string | undefined;
3158
3290
  }, {
@@ -3172,8 +3304,8 @@ declare const zEventRegResponse: z.ZodObject<{
3172
3304
  isNotBuyable?: boolean | undefined;
3173
3305
  lastBuyableDate?: Date | undefined;
3174
3306
  editedBy?: string | undefined;
3175
- createdAt?: Date | undefined;
3176
- updatedAt?: Date | undefined;
3307
+ createdAt?: string | undefined;
3308
+ updatedAt?: string | undefined;
3177
3309
  };
3178
3310
  }[];
3179
3311
  agaId: string;
@@ -3185,8 +3317,8 @@ declare const zEventRegResponse: z.ZodObject<{
3185
3317
  address?: string | undefined;
3186
3318
  notes?: string | undefined;
3187
3319
  editedBy?: string | undefined;
3188
- createdAt?: Date | undefined;
3189
- updatedAt?: Date | undefined;
3320
+ createdAt?: string | undefined;
3321
+ updatedAt?: string | undefined;
3190
3322
  donation?: number | undefined;
3191
3323
  createMethod?: string | undefined;
3192
3324
  }>;
@@ -3217,8 +3349,8 @@ declare const zEventTicketRegResponse: z.ZodObject<{
3217
3349
  lastBuyableDate: z.ZodOptional<z.ZodDate>;
3218
3350
  _id: z.ZodString;
3219
3351
  editedBy: z.ZodOptional<z.ZodString>;
3220
- createdAt: z.ZodOptional<z.ZodDate>;
3221
- updatedAt: z.ZodOptional<z.ZodDate>;
3352
+ createdAt: z.ZodOptional<z.ZodString>;
3353
+ updatedAt: z.ZodOptional<z.ZodString>;
3222
3354
  }, z.UnknownKeysParam, z.ZodTypeAny, {
3223
3355
  _id: string;
3224
3356
  name: string;
@@ -3227,8 +3359,8 @@ declare const zEventTicketRegResponse: z.ZodObject<{
3227
3359
  isNotBuyable?: boolean | undefined;
3228
3360
  lastBuyableDate?: Date | undefined;
3229
3361
  editedBy?: string | undefined;
3230
- createdAt?: Date | undefined;
3231
- updatedAt?: Date | undefined;
3362
+ createdAt?: string | undefined;
3363
+ updatedAt?: string | undefined;
3232
3364
  }, {
3233
3365
  _id: string;
3234
3366
  name: string;
@@ -3237,8 +3369,8 @@ declare const zEventTicketRegResponse: z.ZodObject<{
3237
3369
  isNotBuyable?: boolean | undefined;
3238
3370
  lastBuyableDate?: Date | undefined;
3239
3371
  editedBy?: string | undefined;
3240
- createdAt?: Date | undefined;
3241
- updatedAt?: Date | undefined;
3372
+ createdAt?: string | undefined;
3373
+ updatedAt?: string | undefined;
3242
3374
  }>;
3243
3375
  }, "strip", z.ZodTypeAny, {
3244
3376
  amount: number;
@@ -3250,8 +3382,8 @@ declare const zEventTicketRegResponse: z.ZodObject<{
3250
3382
  isNotBuyable?: boolean | undefined;
3251
3383
  lastBuyableDate?: Date | undefined;
3252
3384
  editedBy?: string | undefined;
3253
- createdAt?: Date | undefined;
3254
- updatedAt?: Date | undefined;
3385
+ createdAt?: string | undefined;
3386
+ updatedAt?: string | undefined;
3255
3387
  };
3256
3388
  }, {
3257
3389
  amount: number;
@@ -3263,8 +3395,8 @@ declare const zEventTicketRegResponse: z.ZodObject<{
3263
3395
  isNotBuyable?: boolean | undefined;
3264
3396
  lastBuyableDate?: Date | undefined;
3265
3397
  editedBy?: string | undefined;
3266
- createdAt?: Date | undefined;
3267
- updatedAt?: Date | undefined;
3398
+ createdAt?: string | undefined;
3399
+ updatedAt?: string | undefined;
3268
3400
  };
3269
3401
  }>;
3270
3402
  type EventTicketRegResponse = z.infer<typeof zEventTicketRegResponse>;
@@ -3309,8 +3441,8 @@ declare const zEventTicket: z.ZodObject<{
3309
3441
  lastBuyableDate: z.ZodOptional<z.ZodDate>;
3310
3442
  _id: z.ZodString;
3311
3443
  editedBy: z.ZodOptional<z.ZodString>;
3312
- createdAt: z.ZodOptional<z.ZodDate>;
3313
- updatedAt: z.ZodOptional<z.ZodDate>;
3444
+ createdAt: z.ZodOptional<z.ZodString>;
3445
+ updatedAt: z.ZodOptional<z.ZodString>;
3314
3446
  }, z.UnknownKeysParam, z.ZodTypeAny, {
3315
3447
  _id: string;
3316
3448
  name: string;
@@ -3319,8 +3451,8 @@ declare const zEventTicket: z.ZodObject<{
3319
3451
  isNotBuyable?: boolean | undefined;
3320
3452
  lastBuyableDate?: Date | undefined;
3321
3453
  editedBy?: string | undefined;
3322
- createdAt?: Date | undefined;
3323
- updatedAt?: Date | undefined;
3454
+ createdAt?: string | undefined;
3455
+ updatedAt?: string | undefined;
3324
3456
  }, {
3325
3457
  _id: string;
3326
3458
  name: string;
@@ -3329,10 +3461,10 @@ declare const zEventTicket: z.ZodObject<{
3329
3461
  isNotBuyable?: boolean | undefined;
3330
3462
  lastBuyableDate?: Date | undefined;
3331
3463
  editedBy?: string | undefined;
3332
- createdAt?: Date | undefined;
3333
- updatedAt?: Date | undefined;
3464
+ createdAt?: string | undefined;
3465
+ updatedAt?: string | undefined;
3334
3466
  }>;
3335
3467
  type BEventTicket = z.infer<typeof zBEventTicket>;
3336
3468
  type EventTicket = z.infer<typeof zEventTicket>;
3337
3469
 
3338
- export { AgeGroup, AttendState, type Attendance, type AuroraCourses, type BAttendance, type BCampBooking, type BCampTracker, type BClassTracker, type BCourse, type BEventConfig, type BEventReg, type BEventTicket, type BGroupBooking, type BGroupTracker, type BInvoice, type BPaymentInfo, type BPrivateBooking, type BReportTicket, type BSemester, type BTeacherPayment, type BUser, type BUserInfo, BookingType, type CampBooking, CampOption, type CampTracker, type ClassTracker, type Course, CourseCategory, type CourseTable, type DetailsTable, type Discount, type EventConfig, type EventConfigResponse, type EventReg, type EventRegResponse, type EventTicket, type EventTicketReg, type EventTicketRegResponse, GoRank, type GroupBooking, type GroupTracker, type ImageDef, type Invoice, type InvoiceItem, type InvoicePackage, type InvoicePackageResponse, type InvoiceResponse, type NYIGMission, NYIGSchool, type PaymentIntent, PaymentMethod, type PrivateBooking, type ReportTicket, type ScheduleData, type ScheduleTable, Season, type Semester, type Student, type Teacher, type TeacherDisplay, type TeacherPayment, type TeacherPaymentResponse, type TeacherPaymentRow, TicketStatus, type Tuition, type User, type UserRoles, zAttendance, zBAttendance, zBCampBooking, zBCampTracker, zBClassTracker, zBCourse, zBEventConfig, zBEventReg, zBEventTicket, zBGroupBooking, zBGroupTracker, zBInvoice, zBPaymentInfo, zBPrivateBooking, zBReportTicket, zBSemester, zBTeacherPayment, zBUser, zBUserInfo, zCampBooking, zCampTracker, zClassTracker, zCourse, zCourseTable, zDetailsTable, zDiscount, zEventConfig, zEventConfigResponse, zEventReg, zEventRegResponse, zEventTicket, zEventTicketReg, zEventTicketRegResponse, zGroupBooking, zGroupTracker, zImageDef, zInvoice, zInvoiceItem, zInvoicePackage, zInvoicePackageResponse, zInvoiceResponse, zPrivateBooking, zReportTicket, zScheduleData, zScheduleTable, zSemester, zStudent, zTeacher, zTeacherDisplay, zTeacherPayment, zTeacherPaymentResponse, zTeacherPaymentRow, zTuition, zUser, zUserRoles };
3470
+ export { AgeGroup, AttendState, type Attendance, type AuroraCourses, type BAttendance, type BCampBooking, type BCampTracker, type BClassTracker, type BCourse, type BEventConfig, type BEventReg, type BEventTicket, type BGroupBooking, type BGroupTracker, type BInvoice, type BPaymentInfo, type BPrivateBooking, type BReportTicket, type BSemester, type BTeacherPayment, type BUser, type BUserInfo, BookingType, type CampBooking, CampOption, type CampTracker, type ClassTracker, type Course, CourseCategory, type CourseTable, type DetailsTable, type Discount, type EventConfig, type EventConfigResponse, type EventReg, type EventRegResponse, type EventTicket, type EventTicketReg, type EventTicketRegResponse, GoRank, type GroupBooking, type GroupTracker, type ImageDef, type Invoice, type InvoiceItem, type InvoicePackage, type InvoicePackageResponse, type InvoiceResponse, type NYIGMission, NYIGSchool, type PaymentIntent, PaymentMethod, type PrivateBooking, type ReportTicket, type ReportTicketResponse, type ScheduleData, type ScheduleTable, Season, type Semester, type Student, type Teacher, type TeacherDisplay, type TeacherPayment, type TeacherPaymentResponse, type TeacherPaymentRow, TicketStatus, type Tuition, type User, type UserRoles, zAttendance, zBAttendance, zBCampBooking, zBCampTracker, zBClassTracker, zBCourse, zBEventConfig, zBEventReg, zBEventTicket, zBGroupBooking, zBGroupTracker, zBInvoice, zBPaymentInfo, zBPrivateBooking, zBReportTicket, zBSemester, zBTeacherPayment, zBUser, zBUserInfo, zCampBooking, zCampTracker, zClassTracker, zCourse, zCourseTable, zDetailsTable, zDiscount, zEventConfig, zEventConfigResponse, zEventReg, zEventRegResponse, zEventTicket, zEventTicketReg, zEventTicketRegResponse, zGroupBooking, zGroupTracker, zImageDef, zInvoice, zInvoiceItem, zInvoicePackage, zInvoicePackageResponse, zInvoiceResponse, zPrivateBooking, zReportTicket, zReportTicketResponse, zScheduleData, zScheduleTable, zSemester, zStudent, zTeacher, zTeacherDisplay, zTeacherPayment, zTeacherPaymentResponse, zTeacherPaymentRow, zTuition, zUser, zUserRoles };