@nyig/models 0.3.9 → 0.3.11
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 +1191 -260
- package/index.d.ts +1191 -260
- package/index.js +226 -199
- package/index.mjs +222 -199
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -744,6 +744,57 @@ declare const zAttendance: z.ZodObject<{
|
|
|
744
744
|
createdAt?: string | undefined;
|
|
745
745
|
updatedAt?: string | undefined;
|
|
746
746
|
}>;
|
|
747
|
+
declare const zAttendanceRequest: z.ZodObject<{
|
|
748
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
749
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
750
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
751
|
+
student: z.ZodString;
|
|
752
|
+
states: z.ZodArray<z.ZodNativeEnum<typeof AttendState>, "many">;
|
|
753
|
+
tuition: z.ZodOptional<z.ZodObject<{
|
|
754
|
+
primary: z.ZodNumber;
|
|
755
|
+
textbook: z.ZodOptional<z.ZodBoolean>;
|
|
756
|
+
shipping: z.ZodOptional<z.ZodBoolean>;
|
|
757
|
+
}, "strip", z.ZodTypeAny, {
|
|
758
|
+
primary: number;
|
|
759
|
+
textbook?: boolean | undefined;
|
|
760
|
+
shipping?: boolean | undefined;
|
|
761
|
+
}, {
|
|
762
|
+
primary: number;
|
|
763
|
+
textbook?: boolean | undefined;
|
|
764
|
+
shipping?: boolean | undefined;
|
|
765
|
+
}>>;
|
|
766
|
+
paid: z.ZodOptional<z.ZodBoolean>;
|
|
767
|
+
campOption: z.ZodOptional<z.ZodNativeEnum<typeof CampOption>>;
|
|
768
|
+
_id: z.ZodOptional<z.ZodString>;
|
|
769
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
770
|
+
student: string;
|
|
771
|
+
states: AttendState[];
|
|
772
|
+
editedBy?: string | undefined;
|
|
773
|
+
createdAt?: string | undefined;
|
|
774
|
+
updatedAt?: string | undefined;
|
|
775
|
+
tuition?: {
|
|
776
|
+
primary: number;
|
|
777
|
+
textbook?: boolean | undefined;
|
|
778
|
+
shipping?: boolean | undefined;
|
|
779
|
+
} | undefined;
|
|
780
|
+
paid?: boolean | undefined;
|
|
781
|
+
campOption?: CampOption | undefined;
|
|
782
|
+
_id?: string | undefined;
|
|
783
|
+
}, {
|
|
784
|
+
student: string;
|
|
785
|
+
states: AttendState[];
|
|
786
|
+
editedBy?: string | undefined;
|
|
787
|
+
createdAt?: string | undefined;
|
|
788
|
+
updatedAt?: string | undefined;
|
|
789
|
+
tuition?: {
|
|
790
|
+
primary: number;
|
|
791
|
+
textbook?: boolean | undefined;
|
|
792
|
+
shipping?: boolean | undefined;
|
|
793
|
+
} | undefined;
|
|
794
|
+
paid?: boolean | undefined;
|
|
795
|
+
campOption?: CampOption | undefined;
|
|
796
|
+
_id?: string | undefined;
|
|
797
|
+
}>;
|
|
747
798
|
declare const zAttendanceResponse: z.ZodObject<{
|
|
748
799
|
_id: z.ZodString;
|
|
749
800
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
@@ -910,8 +961,200 @@ declare const zAttendanceResponse: z.ZodObject<{
|
|
|
910
961
|
}>;
|
|
911
962
|
type BAttendance = z.infer<typeof zBAttendance>;
|
|
912
963
|
type Attendance = z.infer<typeof zAttendance>;
|
|
964
|
+
type AttendanceRequest = z.infer<typeof zAttendanceRequest>;
|
|
913
965
|
type AttendanceResponse = z.infer<typeof zAttendanceResponse>;
|
|
914
966
|
|
|
967
|
+
declare enum Season {
|
|
968
|
+
FALL = "fall",
|
|
969
|
+
SPRING = "spring",
|
|
970
|
+
SUMMER = "summer"
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
declare const zBSemester: z.ZodObject<{
|
|
974
|
+
season: z.ZodNativeEnum<typeof Season>;
|
|
975
|
+
year: z.ZodNumber;
|
|
976
|
+
startDate: z.ZodDate;
|
|
977
|
+
endDate: z.ZodDate;
|
|
978
|
+
/**
|
|
979
|
+
* Format: start, end, start, end, ...
|
|
980
|
+
*/
|
|
981
|
+
blackoutDates: z.ZodArray<z.ZodDate, "many">;
|
|
982
|
+
/**
|
|
983
|
+
* List of names of some break: date range
|
|
984
|
+
*/
|
|
985
|
+
importantDates: z.ZodArray<z.ZodString, "many">;
|
|
986
|
+
}, "strip", z.ZodTypeAny, {
|
|
987
|
+
season: Season;
|
|
988
|
+
year: number;
|
|
989
|
+
startDate: Date;
|
|
990
|
+
endDate: Date;
|
|
991
|
+
blackoutDates: Date[];
|
|
992
|
+
importantDates: string[];
|
|
993
|
+
}, {
|
|
994
|
+
season: Season;
|
|
995
|
+
year: number;
|
|
996
|
+
startDate: Date;
|
|
997
|
+
endDate: Date;
|
|
998
|
+
blackoutDates: Date[];
|
|
999
|
+
importantDates: string[];
|
|
1000
|
+
}>;
|
|
1001
|
+
declare const zSemester: z.ZodObject<{
|
|
1002
|
+
season: z.ZodNativeEnum<typeof Season>;
|
|
1003
|
+
year: z.ZodNumber;
|
|
1004
|
+
startDate: z.ZodDate;
|
|
1005
|
+
endDate: z.ZodDate;
|
|
1006
|
+
blackoutDates: z.ZodArray<z.ZodDate, "many">;
|
|
1007
|
+
importantDates: z.ZodArray<z.ZodString, "many">;
|
|
1008
|
+
_id: z.ZodString;
|
|
1009
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
1010
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1011
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1012
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1013
|
+
_id: string;
|
|
1014
|
+
season: Season;
|
|
1015
|
+
year: number;
|
|
1016
|
+
startDate: Date;
|
|
1017
|
+
endDate: Date;
|
|
1018
|
+
blackoutDates: Date[];
|
|
1019
|
+
importantDates: string[];
|
|
1020
|
+
editedBy?: string | undefined;
|
|
1021
|
+
createdAt?: string | undefined;
|
|
1022
|
+
updatedAt?: string | undefined;
|
|
1023
|
+
}, {
|
|
1024
|
+
_id: string;
|
|
1025
|
+
season: Season;
|
|
1026
|
+
year: number;
|
|
1027
|
+
startDate: Date;
|
|
1028
|
+
endDate: Date;
|
|
1029
|
+
blackoutDates: Date[];
|
|
1030
|
+
importantDates: string[];
|
|
1031
|
+
editedBy?: string | undefined;
|
|
1032
|
+
createdAt?: string | undefined;
|
|
1033
|
+
updatedAt?: string | undefined;
|
|
1034
|
+
}>;
|
|
1035
|
+
type BSemester = z.infer<typeof zBSemester>;
|
|
1036
|
+
type Semester = z.infer<typeof zSemester>;
|
|
1037
|
+
|
|
1038
|
+
declare enum AgeGroup {
|
|
1039
|
+
ADULT = "Adult",
|
|
1040
|
+
YOUTH = "Youth"
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
declare enum CourseCategory {
|
|
1044
|
+
GROUP = "group",
|
|
1045
|
+
PRIVATE = "private",
|
|
1046
|
+
SEMIPRIVATE = "semiprivate",
|
|
1047
|
+
CAMP = "camp",
|
|
1048
|
+
EVENT = "event"
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
declare enum NYIGSchool {
|
|
1052
|
+
MANHATTAN = "Manhattan",
|
|
1053
|
+
LITTLENECK = "Little Neck",
|
|
1054
|
+
ONLINE = "Online"
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
declare const zBCourse: z.ZodObject<{
|
|
1058
|
+
name: z.ZodString;
|
|
1059
|
+
category: z.ZodNativeEnum<typeof CourseCategory>;
|
|
1060
|
+
/**
|
|
1061
|
+
* @unit SECONDS - Duration of the course in seconds
|
|
1062
|
+
*/
|
|
1063
|
+
duration: z.ZodNumber;
|
|
1064
|
+
/**
|
|
1065
|
+
* @unit CENTS - Price of the course in cents
|
|
1066
|
+
*/
|
|
1067
|
+
price: z.ZodNumber;
|
|
1068
|
+
description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1069
|
+
/**
|
|
1070
|
+
* NYIG School locations
|
|
1071
|
+
*/
|
|
1072
|
+
nyigSchool: z.ZodNativeEnum<typeof NYIGSchool>;
|
|
1073
|
+
/**
|
|
1074
|
+
* Recommended level before taking this course
|
|
1075
|
+
*/
|
|
1076
|
+
recLevel: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1077
|
+
/**
|
|
1078
|
+
* Camp tuition for half-day option
|
|
1079
|
+
*/
|
|
1080
|
+
halfCampTuition: z.ZodOptional<z.ZodNumber>;
|
|
1081
|
+
/**
|
|
1082
|
+
* Camp tuition for full-day option
|
|
1083
|
+
*/
|
|
1084
|
+
fullCampTuition: z.ZodOptional<z.ZodNumber>;
|
|
1085
|
+
superadminOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1086
|
+
}, "strip", z.ZodTypeAny, {
|
|
1087
|
+
name: string;
|
|
1088
|
+
category: CourseCategory;
|
|
1089
|
+
duration: number;
|
|
1090
|
+
price: number;
|
|
1091
|
+
nyigSchool: NYIGSchool;
|
|
1092
|
+
description?: string | undefined;
|
|
1093
|
+
recLevel?: string | undefined;
|
|
1094
|
+
halfCampTuition?: number | undefined;
|
|
1095
|
+
fullCampTuition?: number | undefined;
|
|
1096
|
+
superadminOnly?: boolean | undefined;
|
|
1097
|
+
}, {
|
|
1098
|
+
name: string;
|
|
1099
|
+
category: CourseCategory;
|
|
1100
|
+
duration: number;
|
|
1101
|
+
price: number;
|
|
1102
|
+
nyigSchool: NYIGSchool;
|
|
1103
|
+
description?: string | undefined;
|
|
1104
|
+
recLevel?: string | undefined;
|
|
1105
|
+
halfCampTuition?: number | undefined;
|
|
1106
|
+
fullCampTuition?: number | undefined;
|
|
1107
|
+
superadminOnly?: boolean | undefined;
|
|
1108
|
+
}>;
|
|
1109
|
+
declare const zCourse: z.ZodObject<{
|
|
1110
|
+
name: z.ZodString;
|
|
1111
|
+
category: z.ZodNativeEnum<typeof CourseCategory>;
|
|
1112
|
+
duration: z.ZodNumber;
|
|
1113
|
+
price: z.ZodNumber;
|
|
1114
|
+
description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1115
|
+
nyigSchool: z.ZodNativeEnum<typeof NYIGSchool>;
|
|
1116
|
+
recLevel: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1117
|
+
halfCampTuition: z.ZodOptional<z.ZodNumber>;
|
|
1118
|
+
fullCampTuition: z.ZodOptional<z.ZodNumber>;
|
|
1119
|
+
superadminOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1120
|
+
_id: z.ZodString;
|
|
1121
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
1122
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1123
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1124
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1125
|
+
_id: string;
|
|
1126
|
+
name: string;
|
|
1127
|
+
category: CourseCategory;
|
|
1128
|
+
duration: number;
|
|
1129
|
+
price: number;
|
|
1130
|
+
nyigSchool: NYIGSchool;
|
|
1131
|
+
description?: string | undefined;
|
|
1132
|
+
recLevel?: string | undefined;
|
|
1133
|
+
halfCampTuition?: number | undefined;
|
|
1134
|
+
fullCampTuition?: number | undefined;
|
|
1135
|
+
superadminOnly?: boolean | undefined;
|
|
1136
|
+
editedBy?: string | undefined;
|
|
1137
|
+
createdAt?: string | undefined;
|
|
1138
|
+
updatedAt?: string | undefined;
|
|
1139
|
+
}, {
|
|
1140
|
+
_id: string;
|
|
1141
|
+
name: string;
|
|
1142
|
+
category: CourseCategory;
|
|
1143
|
+
duration: number;
|
|
1144
|
+
price: number;
|
|
1145
|
+
nyigSchool: NYIGSchool;
|
|
1146
|
+
description?: string | undefined;
|
|
1147
|
+
recLevel?: string | undefined;
|
|
1148
|
+
halfCampTuition?: number | undefined;
|
|
1149
|
+
fullCampTuition?: number | undefined;
|
|
1150
|
+
superadminOnly?: boolean | undefined;
|
|
1151
|
+
editedBy?: string | undefined;
|
|
1152
|
+
createdAt?: string | undefined;
|
|
1153
|
+
updatedAt?: string | undefined;
|
|
1154
|
+
}>;
|
|
1155
|
+
type BCourse = z.infer<typeof zBCourse>;
|
|
1156
|
+
type Course = z.infer<typeof zCourse>;
|
|
1157
|
+
|
|
915
1158
|
declare const zBCampTracker: z.ZodObject<{
|
|
916
1159
|
course: z.ZodString;
|
|
917
1160
|
teacher: z.ZodString;
|
|
@@ -986,21 +1229,517 @@ declare const zCampTracker: z.ZodObject<{
|
|
|
986
1229
|
createdAt?: string | undefined;
|
|
987
1230
|
updatedAt?: string | undefined;
|
|
988
1231
|
}>;
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
1232
|
+
declare const zCampTrackerRequest: z.ZodObject<{
|
|
1233
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
1234
|
+
_id: z.ZodString;
|
|
1235
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
1236
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1237
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
993
1238
|
course: z.ZodString;
|
|
994
1239
|
teacher: z.ZodString;
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1240
|
+
semester: z.ZodString;
|
|
1241
|
+
occurrences: z.ZodArray<z.ZodString, "many">;
|
|
1242
|
+
publicDescription: z.ZodOptional<z.ZodString>;
|
|
1243
|
+
isNonPublic: z.ZodOptional<z.ZodBoolean>;
|
|
1244
|
+
attendances: z.ZodObject<{
|
|
1245
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
1246
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1247
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1248
|
+
student: z.ZodString;
|
|
1249
|
+
states: z.ZodArray<z.ZodNativeEnum<typeof AttendState>, "many">;
|
|
1250
|
+
tuition: z.ZodOptional<z.ZodObject<{
|
|
1251
|
+
primary: z.ZodNumber;
|
|
1252
|
+
textbook: z.ZodOptional<z.ZodBoolean>;
|
|
1253
|
+
shipping: z.ZodOptional<z.ZodBoolean>;
|
|
1254
|
+
}, "strip", z.ZodTypeAny, {
|
|
1255
|
+
primary: number;
|
|
1256
|
+
textbook?: boolean | undefined;
|
|
1257
|
+
shipping?: boolean | undefined;
|
|
1258
|
+
}, {
|
|
1259
|
+
primary: number;
|
|
1260
|
+
textbook?: boolean | undefined;
|
|
1261
|
+
shipping?: boolean | undefined;
|
|
1262
|
+
}>>;
|
|
1263
|
+
paid: z.ZodOptional<z.ZodBoolean>;
|
|
1264
|
+
campOption: z.ZodOptional<z.ZodNativeEnum<typeof CampOption>>;
|
|
1265
|
+
_id: z.ZodOptional<z.ZodString>;
|
|
1266
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1267
|
+
student: string;
|
|
1268
|
+
states: AttendState[];
|
|
1269
|
+
editedBy?: string | undefined;
|
|
1270
|
+
createdAt?: string | undefined;
|
|
1271
|
+
updatedAt?: string | undefined;
|
|
1272
|
+
tuition?: {
|
|
1273
|
+
primary: number;
|
|
1274
|
+
textbook?: boolean | undefined;
|
|
1275
|
+
shipping?: boolean | undefined;
|
|
1276
|
+
} | undefined;
|
|
1277
|
+
paid?: boolean | undefined;
|
|
1278
|
+
campOption?: CampOption | undefined;
|
|
1279
|
+
_id?: string | undefined;
|
|
1280
|
+
}, {
|
|
1281
|
+
student: string;
|
|
1282
|
+
states: AttendState[];
|
|
1283
|
+
editedBy?: string | undefined;
|
|
1284
|
+
createdAt?: string | undefined;
|
|
1285
|
+
updatedAt?: string | undefined;
|
|
1286
|
+
tuition?: {
|
|
1287
|
+
primary: number;
|
|
1288
|
+
textbook?: boolean | undefined;
|
|
1289
|
+
shipping?: boolean | undefined;
|
|
1290
|
+
} | undefined;
|
|
1291
|
+
paid?: boolean | undefined;
|
|
1292
|
+
campOption?: CampOption | undefined;
|
|
1293
|
+
_id?: string | undefined;
|
|
1294
|
+
}>;
|
|
1295
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1296
|
+
_id: string;
|
|
1297
|
+
course: string;
|
|
1298
|
+
teacher: string;
|
|
1299
|
+
semester: string;
|
|
1300
|
+
occurrences: string[];
|
|
1301
|
+
attendances: {
|
|
1302
|
+
student: string;
|
|
1303
|
+
states: AttendState[];
|
|
1304
|
+
editedBy?: string | undefined;
|
|
1305
|
+
createdAt?: string | undefined;
|
|
1306
|
+
updatedAt?: string | undefined;
|
|
1307
|
+
tuition?: {
|
|
1308
|
+
primary: number;
|
|
1309
|
+
textbook?: boolean | undefined;
|
|
1310
|
+
shipping?: boolean | undefined;
|
|
1311
|
+
} | undefined;
|
|
1312
|
+
paid?: boolean | undefined;
|
|
1313
|
+
campOption?: CampOption | undefined;
|
|
1314
|
+
_id?: string | undefined;
|
|
1315
|
+
};
|
|
1316
|
+
notes?: string | undefined;
|
|
1317
|
+
editedBy?: string | undefined;
|
|
1318
|
+
createdAt?: string | undefined;
|
|
1319
|
+
updatedAt?: string | undefined;
|
|
1320
|
+
publicDescription?: string | undefined;
|
|
1321
|
+
isNonPublic?: boolean | undefined;
|
|
1322
|
+
}, {
|
|
1323
|
+
_id: string;
|
|
1324
|
+
course: string;
|
|
1325
|
+
teacher: string;
|
|
1326
|
+
semester: string;
|
|
1327
|
+
occurrences: string[];
|
|
1328
|
+
attendances: {
|
|
1329
|
+
student: string;
|
|
1330
|
+
states: AttendState[];
|
|
1331
|
+
editedBy?: string | undefined;
|
|
1332
|
+
createdAt?: string | undefined;
|
|
1333
|
+
updatedAt?: string | undefined;
|
|
1334
|
+
tuition?: {
|
|
1335
|
+
primary: number;
|
|
1336
|
+
textbook?: boolean | undefined;
|
|
1337
|
+
shipping?: boolean | undefined;
|
|
1338
|
+
} | undefined;
|
|
1339
|
+
paid?: boolean | undefined;
|
|
1340
|
+
campOption?: CampOption | undefined;
|
|
1341
|
+
_id?: string | undefined;
|
|
1342
|
+
};
|
|
1343
|
+
notes?: string | undefined;
|
|
1344
|
+
editedBy?: string | undefined;
|
|
1345
|
+
createdAt?: string | undefined;
|
|
1346
|
+
updatedAt?: string | undefined;
|
|
1347
|
+
publicDescription?: string | undefined;
|
|
1348
|
+
isNonPublic?: boolean | undefined;
|
|
1349
|
+
}>;
|
|
1350
|
+
declare const zCampTrackerResponse: z.ZodObject<{
|
|
1351
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
1352
|
+
_id: z.ZodString;
|
|
1353
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
1354
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1355
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1356
|
+
occurrences: z.ZodArray<z.ZodString, "many">;
|
|
1357
|
+
publicDescription: z.ZodOptional<z.ZodString>;
|
|
1358
|
+
isNonPublic: z.ZodOptional<z.ZodBoolean>;
|
|
1359
|
+
course: z.ZodObject<{
|
|
1360
|
+
name: z.ZodString;
|
|
1361
|
+
category: z.ZodNativeEnum<typeof CourseCategory>;
|
|
1362
|
+
duration: z.ZodNumber;
|
|
1363
|
+
price: z.ZodNumber;
|
|
1364
|
+
description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1365
|
+
nyigSchool: z.ZodNativeEnum<typeof NYIGSchool>;
|
|
1366
|
+
recLevel: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1367
|
+
halfCampTuition: z.ZodOptional<z.ZodNumber>;
|
|
1368
|
+
fullCampTuition: z.ZodOptional<z.ZodNumber>;
|
|
1369
|
+
superadminOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1370
|
+
_id: z.ZodString;
|
|
1371
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
1372
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1373
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1374
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1375
|
+
_id: string;
|
|
1376
|
+
name: string;
|
|
1377
|
+
category: CourseCategory;
|
|
1378
|
+
duration: number;
|
|
1379
|
+
price: number;
|
|
1380
|
+
nyigSchool: NYIGSchool;
|
|
1381
|
+
description?: string | undefined;
|
|
1382
|
+
recLevel?: string | undefined;
|
|
1383
|
+
halfCampTuition?: number | undefined;
|
|
1384
|
+
fullCampTuition?: number | undefined;
|
|
1385
|
+
superadminOnly?: boolean | undefined;
|
|
1386
|
+
editedBy?: string | undefined;
|
|
1387
|
+
createdAt?: string | undefined;
|
|
1388
|
+
updatedAt?: string | undefined;
|
|
1389
|
+
}, {
|
|
1390
|
+
_id: string;
|
|
1391
|
+
name: string;
|
|
1392
|
+
category: CourseCategory;
|
|
1393
|
+
duration: number;
|
|
1394
|
+
price: number;
|
|
1395
|
+
nyigSchool: NYIGSchool;
|
|
1396
|
+
description?: string | undefined;
|
|
1397
|
+
recLevel?: string | undefined;
|
|
1398
|
+
halfCampTuition?: number | undefined;
|
|
1399
|
+
fullCampTuition?: number | undefined;
|
|
1400
|
+
superadminOnly?: boolean | undefined;
|
|
1401
|
+
editedBy?: string | undefined;
|
|
1402
|
+
createdAt?: string | undefined;
|
|
1403
|
+
updatedAt?: string | undefined;
|
|
1404
|
+
}>;
|
|
1405
|
+
teacher: z.ZodObject<{
|
|
1406
|
+
rank: z.ZodNativeEnum<typeof GoRank>;
|
|
1407
|
+
email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1408
|
+
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1409
|
+
name: z.ZodString;
|
|
1410
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1411
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1412
|
+
roles: z.ZodOptional<z.ZodObject<{
|
|
1413
|
+
user: z.ZodNumber;
|
|
1414
|
+
admin: z.ZodOptional<z.ZodNumber>;
|
|
1415
|
+
superadmin: z.ZodOptional<z.ZodNumber>;
|
|
1416
|
+
}, "strip", z.ZodTypeAny, {
|
|
1417
|
+
user: number;
|
|
1418
|
+
admin?: number | undefined;
|
|
1419
|
+
superadmin?: number | undefined;
|
|
1420
|
+
}, {
|
|
1421
|
+
user: number;
|
|
1422
|
+
admin?: number | undefined;
|
|
1423
|
+
superadmin?: number | undefined;
|
|
1424
|
+
}>>;
|
|
1425
|
+
country: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1426
|
+
phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1427
|
+
birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1428
|
+
shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
|
|
1429
|
+
isInactive: z.ZodOptional<z.ZodBoolean>;
|
|
1430
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1431
|
+
bio: z.ZodOptional<z.ZodString>;
|
|
1432
|
+
available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
|
|
1433
|
+
_id: z.ZodString;
|
|
1434
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
1435
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1436
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1437
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1438
|
+
rank: GoRank;
|
|
1439
|
+
_id: string;
|
|
1440
|
+
name: string;
|
|
1441
|
+
email?: string | undefined;
|
|
1442
|
+
address?: string | undefined;
|
|
1443
|
+
username?: string | undefined;
|
|
1444
|
+
password?: string | undefined;
|
|
1445
|
+
roles?: {
|
|
1446
|
+
user: number;
|
|
1447
|
+
admin?: number | undefined;
|
|
1448
|
+
superadmin?: number | undefined;
|
|
1449
|
+
} | undefined;
|
|
1450
|
+
country?: string | undefined;
|
|
1451
|
+
phoneNumber?: string | undefined;
|
|
1452
|
+
birthDate?: string | undefined;
|
|
1453
|
+
shouldChangePassword?: boolean | undefined;
|
|
1454
|
+
isInactive?: boolean | undefined;
|
|
1455
|
+
title?: string | undefined;
|
|
1456
|
+
bio?: string | undefined;
|
|
1457
|
+
available?: number[][][] | undefined;
|
|
1458
|
+
editedBy?: string | undefined;
|
|
1459
|
+
createdAt?: string | undefined;
|
|
1460
|
+
updatedAt?: string | undefined;
|
|
1461
|
+
}, {
|
|
1462
|
+
rank: GoRank;
|
|
1463
|
+
_id: string;
|
|
1464
|
+
name: string;
|
|
1465
|
+
email?: string | undefined;
|
|
1466
|
+
address?: string | undefined;
|
|
1467
|
+
username?: string | undefined;
|
|
1468
|
+
password?: string | undefined;
|
|
1469
|
+
roles?: {
|
|
1470
|
+
user: number;
|
|
1471
|
+
admin?: number | undefined;
|
|
1472
|
+
superadmin?: number | undefined;
|
|
1473
|
+
} | undefined;
|
|
1474
|
+
country?: string | undefined;
|
|
1475
|
+
phoneNumber?: string | undefined;
|
|
1476
|
+
birthDate?: string | undefined;
|
|
1477
|
+
shouldChangePassword?: boolean | undefined;
|
|
1478
|
+
isInactive?: boolean | undefined;
|
|
1479
|
+
title?: string | undefined;
|
|
1480
|
+
bio?: string | undefined;
|
|
1481
|
+
available?: number[][][] | undefined;
|
|
1482
|
+
editedBy?: string | undefined;
|
|
1483
|
+
createdAt?: string | undefined;
|
|
1484
|
+
updatedAt?: string | undefined;
|
|
1485
|
+
}>;
|
|
1486
|
+
semester: z.ZodObject<{
|
|
1487
|
+
season: z.ZodNativeEnum<typeof Season>;
|
|
1488
|
+
year: z.ZodNumber;
|
|
1489
|
+
startDate: z.ZodDate;
|
|
1490
|
+
endDate: z.ZodDate;
|
|
1491
|
+
blackoutDates: z.ZodArray<z.ZodDate, "many">;
|
|
1492
|
+
importantDates: z.ZodArray<z.ZodString, "many">;
|
|
1493
|
+
_id: z.ZodString;
|
|
1494
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
1495
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1496
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1497
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1498
|
+
_id: string;
|
|
1499
|
+
season: Season;
|
|
1500
|
+
year: number;
|
|
1501
|
+
startDate: Date;
|
|
1502
|
+
endDate: Date;
|
|
1503
|
+
blackoutDates: Date[];
|
|
1504
|
+
importantDates: string[];
|
|
1505
|
+
editedBy?: string | undefined;
|
|
1506
|
+
createdAt?: string | undefined;
|
|
1507
|
+
updatedAt?: string | undefined;
|
|
1508
|
+
}, {
|
|
1509
|
+
_id: string;
|
|
1510
|
+
season: Season;
|
|
1511
|
+
year: number;
|
|
1512
|
+
startDate: Date;
|
|
1513
|
+
endDate: Date;
|
|
1514
|
+
blackoutDates: Date[];
|
|
1515
|
+
importantDates: string[];
|
|
1516
|
+
editedBy?: string | undefined;
|
|
1517
|
+
createdAt?: string | undefined;
|
|
1518
|
+
updatedAt?: string | undefined;
|
|
1519
|
+
}>;
|
|
1520
|
+
attendances: z.ZodArray<z.ZodObject<{
|
|
1521
|
+
student: z.ZodString;
|
|
1522
|
+
states: z.ZodArray<z.ZodNativeEnum<typeof AttendState>, "many">;
|
|
1523
|
+
tuition: z.ZodOptional<z.ZodObject<{
|
|
1524
|
+
primary: z.ZodNumber;
|
|
1525
|
+
textbook: z.ZodOptional<z.ZodBoolean>;
|
|
1526
|
+
shipping: z.ZodOptional<z.ZodBoolean>;
|
|
1527
|
+
}, "strip", z.ZodTypeAny, {
|
|
1528
|
+
primary: number;
|
|
1529
|
+
textbook?: boolean | undefined;
|
|
1530
|
+
shipping?: boolean | undefined;
|
|
1531
|
+
}, {
|
|
1532
|
+
primary: number;
|
|
1533
|
+
textbook?: boolean | undefined;
|
|
1534
|
+
shipping?: boolean | undefined;
|
|
1535
|
+
}>>;
|
|
1536
|
+
paid: z.ZodOptional<z.ZodBoolean>;
|
|
1537
|
+
campOption: z.ZodOptional<z.ZodNativeEnum<typeof CampOption>>;
|
|
1538
|
+
_id: z.ZodString;
|
|
1539
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
1540
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1541
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1542
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1543
|
+
_id: string;
|
|
1544
|
+
student: string;
|
|
1545
|
+
states: AttendState[];
|
|
1546
|
+
tuition?: {
|
|
1547
|
+
primary: number;
|
|
1548
|
+
textbook?: boolean | undefined;
|
|
1549
|
+
shipping?: boolean | undefined;
|
|
1550
|
+
} | undefined;
|
|
1551
|
+
paid?: boolean | undefined;
|
|
1552
|
+
campOption?: CampOption | undefined;
|
|
1553
|
+
editedBy?: string | undefined;
|
|
1554
|
+
createdAt?: string | undefined;
|
|
1555
|
+
updatedAt?: string | undefined;
|
|
1556
|
+
}, {
|
|
1557
|
+
_id: string;
|
|
1558
|
+
student: string;
|
|
1559
|
+
states: AttendState[];
|
|
1560
|
+
tuition?: {
|
|
1561
|
+
primary: number;
|
|
1562
|
+
textbook?: boolean | undefined;
|
|
1563
|
+
shipping?: boolean | undefined;
|
|
1564
|
+
} | undefined;
|
|
1565
|
+
paid?: boolean | undefined;
|
|
1566
|
+
campOption?: CampOption | undefined;
|
|
1567
|
+
editedBy?: string | undefined;
|
|
1568
|
+
createdAt?: string | undefined;
|
|
1569
|
+
updatedAt?: string | undefined;
|
|
1570
|
+
}>, "many">;
|
|
1571
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1572
|
+
_id: string;
|
|
1573
|
+
course: {
|
|
1574
|
+
_id: string;
|
|
1575
|
+
name: string;
|
|
1576
|
+
category: CourseCategory;
|
|
1577
|
+
duration: number;
|
|
1578
|
+
price: number;
|
|
1579
|
+
nyigSchool: NYIGSchool;
|
|
1580
|
+
description?: string | undefined;
|
|
1581
|
+
recLevel?: string | undefined;
|
|
1582
|
+
halfCampTuition?: number | undefined;
|
|
1583
|
+
fullCampTuition?: number | undefined;
|
|
1584
|
+
superadminOnly?: boolean | undefined;
|
|
1585
|
+
editedBy?: string | undefined;
|
|
1586
|
+
createdAt?: string | undefined;
|
|
1587
|
+
updatedAt?: string | undefined;
|
|
1588
|
+
};
|
|
1589
|
+
teacher: {
|
|
1590
|
+
rank: GoRank;
|
|
1591
|
+
_id: string;
|
|
1592
|
+
name: string;
|
|
1593
|
+
email?: string | undefined;
|
|
1594
|
+
address?: string | undefined;
|
|
1595
|
+
username?: string | undefined;
|
|
1596
|
+
password?: string | undefined;
|
|
1597
|
+
roles?: {
|
|
1598
|
+
user: number;
|
|
1599
|
+
admin?: number | undefined;
|
|
1600
|
+
superadmin?: number | undefined;
|
|
1601
|
+
} | undefined;
|
|
1602
|
+
country?: string | undefined;
|
|
1603
|
+
phoneNumber?: string | undefined;
|
|
1604
|
+
birthDate?: string | undefined;
|
|
1605
|
+
shouldChangePassword?: boolean | undefined;
|
|
1606
|
+
isInactive?: boolean | undefined;
|
|
1607
|
+
title?: string | undefined;
|
|
1608
|
+
bio?: string | undefined;
|
|
1609
|
+
available?: number[][][] | undefined;
|
|
1610
|
+
editedBy?: string | undefined;
|
|
1611
|
+
createdAt?: string | undefined;
|
|
1612
|
+
updatedAt?: string | undefined;
|
|
1613
|
+
};
|
|
1614
|
+
semester: {
|
|
1615
|
+
_id: string;
|
|
1616
|
+
season: Season;
|
|
1617
|
+
year: number;
|
|
1618
|
+
startDate: Date;
|
|
1619
|
+
endDate: Date;
|
|
1620
|
+
blackoutDates: Date[];
|
|
1621
|
+
importantDates: string[];
|
|
1622
|
+
editedBy?: string | undefined;
|
|
1623
|
+
createdAt?: string | undefined;
|
|
1624
|
+
updatedAt?: string | undefined;
|
|
1625
|
+
};
|
|
1626
|
+
occurrences: string[];
|
|
1627
|
+
attendances: {
|
|
1628
|
+
_id: string;
|
|
1629
|
+
student: string;
|
|
1630
|
+
states: AttendState[];
|
|
1631
|
+
tuition?: {
|
|
1632
|
+
primary: number;
|
|
1633
|
+
textbook?: boolean | undefined;
|
|
1634
|
+
shipping?: boolean | undefined;
|
|
1635
|
+
} | undefined;
|
|
1636
|
+
paid?: boolean | undefined;
|
|
1637
|
+
campOption?: CampOption | undefined;
|
|
1638
|
+
editedBy?: string | undefined;
|
|
1639
|
+
createdAt?: string | undefined;
|
|
1640
|
+
updatedAt?: string | undefined;
|
|
1641
|
+
}[];
|
|
1642
|
+
notes?: string | undefined;
|
|
1643
|
+
editedBy?: string | undefined;
|
|
1644
|
+
createdAt?: string | undefined;
|
|
1645
|
+
updatedAt?: string | undefined;
|
|
1646
|
+
publicDescription?: string | undefined;
|
|
1647
|
+
isNonPublic?: boolean | undefined;
|
|
1648
|
+
}, {
|
|
1649
|
+
_id: string;
|
|
1650
|
+
course: {
|
|
1651
|
+
_id: string;
|
|
1652
|
+
name: string;
|
|
1653
|
+
category: CourseCategory;
|
|
1654
|
+
duration: number;
|
|
1655
|
+
price: number;
|
|
1656
|
+
nyigSchool: NYIGSchool;
|
|
1657
|
+
description?: string | undefined;
|
|
1658
|
+
recLevel?: string | undefined;
|
|
1659
|
+
halfCampTuition?: number | undefined;
|
|
1660
|
+
fullCampTuition?: number | undefined;
|
|
1661
|
+
superadminOnly?: boolean | undefined;
|
|
1662
|
+
editedBy?: string | undefined;
|
|
1663
|
+
createdAt?: string | undefined;
|
|
1664
|
+
updatedAt?: string | undefined;
|
|
1665
|
+
};
|
|
1666
|
+
teacher: {
|
|
1667
|
+
rank: GoRank;
|
|
1668
|
+
_id: string;
|
|
1669
|
+
name: string;
|
|
1670
|
+
email?: string | undefined;
|
|
1671
|
+
address?: string | undefined;
|
|
1672
|
+
username?: string | undefined;
|
|
1673
|
+
password?: string | undefined;
|
|
1674
|
+
roles?: {
|
|
1675
|
+
user: number;
|
|
1676
|
+
admin?: number | undefined;
|
|
1677
|
+
superadmin?: number | undefined;
|
|
1678
|
+
} | undefined;
|
|
1679
|
+
country?: string | undefined;
|
|
1680
|
+
phoneNumber?: string | undefined;
|
|
1681
|
+
birthDate?: string | undefined;
|
|
1682
|
+
shouldChangePassword?: boolean | undefined;
|
|
1683
|
+
isInactive?: boolean | undefined;
|
|
1684
|
+
title?: string | undefined;
|
|
1685
|
+
bio?: string | undefined;
|
|
1686
|
+
available?: number[][][] | undefined;
|
|
1687
|
+
editedBy?: string | undefined;
|
|
1688
|
+
createdAt?: string | undefined;
|
|
1689
|
+
updatedAt?: string | undefined;
|
|
1690
|
+
};
|
|
1691
|
+
semester: {
|
|
1692
|
+
_id: string;
|
|
1693
|
+
season: Season;
|
|
1694
|
+
year: number;
|
|
1695
|
+
startDate: Date;
|
|
1696
|
+
endDate: Date;
|
|
1697
|
+
blackoutDates: Date[];
|
|
1698
|
+
importantDates: string[];
|
|
1699
|
+
editedBy?: string | undefined;
|
|
1700
|
+
createdAt?: string | undefined;
|
|
1701
|
+
updatedAt?: string | undefined;
|
|
1702
|
+
};
|
|
1703
|
+
occurrences: string[];
|
|
1704
|
+
attendances: {
|
|
1705
|
+
_id: string;
|
|
1706
|
+
student: string;
|
|
1707
|
+
states: AttendState[];
|
|
1708
|
+
tuition?: {
|
|
1709
|
+
primary: number;
|
|
1710
|
+
textbook?: boolean | undefined;
|
|
1711
|
+
shipping?: boolean | undefined;
|
|
1712
|
+
} | undefined;
|
|
1713
|
+
paid?: boolean | undefined;
|
|
1714
|
+
campOption?: CampOption | undefined;
|
|
1715
|
+
editedBy?: string | undefined;
|
|
1716
|
+
createdAt?: string | undefined;
|
|
1717
|
+
updatedAt?: string | undefined;
|
|
1718
|
+
}[];
|
|
1719
|
+
notes?: string | undefined;
|
|
1720
|
+
editedBy?: string | undefined;
|
|
1721
|
+
createdAt?: string | undefined;
|
|
1722
|
+
updatedAt?: string | undefined;
|
|
1723
|
+
publicDescription?: string | undefined;
|
|
1724
|
+
isNonPublic?: boolean | undefined;
|
|
1725
|
+
}>;
|
|
1726
|
+
type BCampTracker = z.infer<typeof zBCampTracker>;
|
|
1727
|
+
type CampTracker = z.infer<typeof zCampTracker>;
|
|
1728
|
+
type CampTrackerRequest = z.infer<typeof zCampTrackerRequest>;
|
|
1729
|
+
type CampTrackerResponse = z.infer<typeof zCampTrackerResponse>;
|
|
1730
|
+
|
|
1731
|
+
declare const zBClassTracker: z.ZodObject<{
|
|
1732
|
+
course: z.ZodString;
|
|
1733
|
+
teacher: z.ZodString;
|
|
1734
|
+
student: z.ZodString;
|
|
1735
|
+
classTimes: z.ZodArray<z.ZodDate, "many">;
|
|
1736
|
+
completedList: z.ZodArray<z.ZodBoolean, "many">;
|
|
1737
|
+
/**
|
|
1738
|
+
* Virtual mongoose field when all values in completedList is true
|
|
1739
|
+
*/
|
|
1740
|
+
completed: z.ZodOptional<z.ZodBoolean>;
|
|
1741
|
+
/**
|
|
1742
|
+
* @deprecated This field is no longer used
|
|
1004
1743
|
*/
|
|
1005
1744
|
tuition: z.ZodOptional<z.ZodObject<{
|
|
1006
1745
|
primary: z.ZodNumber;
|
|
@@ -1061,29 +1800,354 @@ declare const zClassTracker: z.ZodObject<{
|
|
|
1061
1800
|
textbook?: boolean | undefined;
|
|
1062
1801
|
shipping?: boolean | undefined;
|
|
1063
1802
|
}, {
|
|
1064
|
-
primary: number;
|
|
1065
|
-
textbook?: boolean | undefined;
|
|
1066
|
-
shipping?: boolean | undefined;
|
|
1067
|
-
}>>;
|
|
1068
|
-
paid: z.ZodOptional<z.ZodBoolean>;
|
|
1069
|
-
course: z.ZodString;
|
|
1070
|
-
teacher: z.ZodString;
|
|
1071
|
-
classTimes: z.ZodArray<z.ZodDate, "many">;
|
|
1072
|
-
completedList: z.ZodArray<z.ZodBoolean, "many">;
|
|
1073
|
-
completed: z.ZodOptional<z.ZodBoolean>;
|
|
1074
|
-
paused: z.ZodOptional<z.ZodBoolean>;
|
|
1075
|
-
_id: z.ZodString;
|
|
1076
|
-
editedBy: z.ZodOptional<z.ZodString>;
|
|
1077
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
1078
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1803
|
+
primary: number;
|
|
1804
|
+
textbook?: boolean | undefined;
|
|
1805
|
+
shipping?: boolean | undefined;
|
|
1806
|
+
}>>;
|
|
1807
|
+
paid: z.ZodOptional<z.ZodBoolean>;
|
|
1808
|
+
course: z.ZodString;
|
|
1809
|
+
teacher: z.ZodString;
|
|
1810
|
+
classTimes: z.ZodArray<z.ZodDate, "many">;
|
|
1811
|
+
completedList: z.ZodArray<z.ZodBoolean, "many">;
|
|
1812
|
+
completed: z.ZodOptional<z.ZodBoolean>;
|
|
1813
|
+
paused: z.ZodOptional<z.ZodBoolean>;
|
|
1814
|
+
_id: z.ZodString;
|
|
1815
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
1816
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1817
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1818
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1819
|
+
_id: string;
|
|
1820
|
+
student: string;
|
|
1821
|
+
course: string;
|
|
1822
|
+
teacher: string;
|
|
1823
|
+
classTimes: Date[];
|
|
1824
|
+
completedList: boolean[];
|
|
1825
|
+
notes?: string | undefined;
|
|
1826
|
+
tuition?: {
|
|
1827
|
+
primary: number;
|
|
1828
|
+
textbook?: boolean | undefined;
|
|
1829
|
+
shipping?: boolean | undefined;
|
|
1830
|
+
} | undefined;
|
|
1831
|
+
paid?: boolean | undefined;
|
|
1832
|
+
completed?: boolean | undefined;
|
|
1833
|
+
paused?: boolean | undefined;
|
|
1834
|
+
editedBy?: string | undefined;
|
|
1835
|
+
createdAt?: string | undefined;
|
|
1836
|
+
updatedAt?: string | undefined;
|
|
1837
|
+
}, {
|
|
1838
|
+
_id: string;
|
|
1839
|
+
student: string;
|
|
1840
|
+
course: string;
|
|
1841
|
+
teacher: string;
|
|
1842
|
+
classTimes: Date[];
|
|
1843
|
+
completedList: boolean[];
|
|
1844
|
+
notes?: string | undefined;
|
|
1845
|
+
tuition?: {
|
|
1846
|
+
primary: number;
|
|
1847
|
+
textbook?: boolean | undefined;
|
|
1848
|
+
shipping?: boolean | undefined;
|
|
1849
|
+
} | undefined;
|
|
1850
|
+
paid?: boolean | undefined;
|
|
1851
|
+
completed?: boolean | undefined;
|
|
1852
|
+
paused?: boolean | undefined;
|
|
1853
|
+
editedBy?: string | undefined;
|
|
1854
|
+
createdAt?: string | undefined;
|
|
1855
|
+
updatedAt?: string | undefined;
|
|
1856
|
+
}>;
|
|
1857
|
+
declare const zClassTrackerResponse: z.ZodObject<{
|
|
1858
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
1859
|
+
_id: z.ZodString;
|
|
1860
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
1861
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1862
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1863
|
+
tuition: z.ZodOptional<z.ZodObject<{
|
|
1864
|
+
primary: z.ZodNumber;
|
|
1865
|
+
textbook: z.ZodOptional<z.ZodBoolean>;
|
|
1866
|
+
shipping: z.ZodOptional<z.ZodBoolean>;
|
|
1867
|
+
}, "strip", z.ZodTypeAny, {
|
|
1868
|
+
primary: number;
|
|
1869
|
+
textbook?: boolean | undefined;
|
|
1870
|
+
shipping?: boolean | undefined;
|
|
1871
|
+
}, {
|
|
1872
|
+
primary: number;
|
|
1873
|
+
textbook?: boolean | undefined;
|
|
1874
|
+
shipping?: boolean | undefined;
|
|
1875
|
+
}>>;
|
|
1876
|
+
paid: z.ZodOptional<z.ZodBoolean>;
|
|
1877
|
+
classTimes: z.ZodArray<z.ZodDate, "many">;
|
|
1878
|
+
completedList: z.ZodArray<z.ZodBoolean, "many">;
|
|
1879
|
+
completed: z.ZodOptional<z.ZodBoolean>;
|
|
1880
|
+
paused: z.ZodOptional<z.ZodBoolean>;
|
|
1881
|
+
course: z.ZodObject<{
|
|
1882
|
+
name: z.ZodString;
|
|
1883
|
+
category: z.ZodNativeEnum<typeof CourseCategory>;
|
|
1884
|
+
duration: z.ZodNumber;
|
|
1885
|
+
price: z.ZodNumber;
|
|
1886
|
+
description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1887
|
+
nyigSchool: z.ZodNativeEnum<typeof NYIGSchool>;
|
|
1888
|
+
recLevel: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1889
|
+
halfCampTuition: z.ZodOptional<z.ZodNumber>;
|
|
1890
|
+
fullCampTuition: z.ZodOptional<z.ZodNumber>;
|
|
1891
|
+
superadminOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1892
|
+
_id: z.ZodString;
|
|
1893
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
1894
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1895
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1896
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1897
|
+
_id: string;
|
|
1898
|
+
name: string;
|
|
1899
|
+
category: CourseCategory;
|
|
1900
|
+
duration: number;
|
|
1901
|
+
price: number;
|
|
1902
|
+
nyigSchool: NYIGSchool;
|
|
1903
|
+
description?: string | undefined;
|
|
1904
|
+
recLevel?: string | undefined;
|
|
1905
|
+
halfCampTuition?: number | undefined;
|
|
1906
|
+
fullCampTuition?: number | undefined;
|
|
1907
|
+
superadminOnly?: boolean | undefined;
|
|
1908
|
+
editedBy?: string | undefined;
|
|
1909
|
+
createdAt?: string | undefined;
|
|
1910
|
+
updatedAt?: string | undefined;
|
|
1911
|
+
}, {
|
|
1912
|
+
_id: string;
|
|
1913
|
+
name: string;
|
|
1914
|
+
category: CourseCategory;
|
|
1915
|
+
duration: number;
|
|
1916
|
+
price: number;
|
|
1917
|
+
nyigSchool: NYIGSchool;
|
|
1918
|
+
description?: string | undefined;
|
|
1919
|
+
recLevel?: string | undefined;
|
|
1920
|
+
halfCampTuition?: number | undefined;
|
|
1921
|
+
fullCampTuition?: number | undefined;
|
|
1922
|
+
superadminOnly?: boolean | undefined;
|
|
1923
|
+
editedBy?: string | undefined;
|
|
1924
|
+
createdAt?: string | undefined;
|
|
1925
|
+
updatedAt?: string | undefined;
|
|
1926
|
+
}>;
|
|
1927
|
+
teacher: z.ZodObject<{
|
|
1928
|
+
rank: z.ZodNativeEnum<typeof GoRank>;
|
|
1929
|
+
email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1930
|
+
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1931
|
+
name: z.ZodString;
|
|
1932
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1933
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1934
|
+
roles: z.ZodOptional<z.ZodObject<{
|
|
1935
|
+
user: z.ZodNumber;
|
|
1936
|
+
admin: z.ZodOptional<z.ZodNumber>;
|
|
1937
|
+
superadmin: z.ZodOptional<z.ZodNumber>;
|
|
1938
|
+
}, "strip", z.ZodTypeAny, {
|
|
1939
|
+
user: number;
|
|
1940
|
+
admin?: number | undefined;
|
|
1941
|
+
superadmin?: number | undefined;
|
|
1942
|
+
}, {
|
|
1943
|
+
user: number;
|
|
1944
|
+
admin?: number | undefined;
|
|
1945
|
+
superadmin?: number | undefined;
|
|
1946
|
+
}>>;
|
|
1947
|
+
country: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1948
|
+
phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1949
|
+
birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1950
|
+
shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
|
|
1951
|
+
isInactive: z.ZodOptional<z.ZodBoolean>;
|
|
1952
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1953
|
+
bio: z.ZodOptional<z.ZodString>;
|
|
1954
|
+
available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
|
|
1955
|
+
_id: z.ZodString;
|
|
1956
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
1957
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1958
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1959
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1960
|
+
rank: GoRank;
|
|
1961
|
+
_id: string;
|
|
1962
|
+
name: string;
|
|
1963
|
+
email?: string | undefined;
|
|
1964
|
+
address?: string | undefined;
|
|
1965
|
+
username?: string | undefined;
|
|
1966
|
+
password?: string | undefined;
|
|
1967
|
+
roles?: {
|
|
1968
|
+
user: number;
|
|
1969
|
+
admin?: number | undefined;
|
|
1970
|
+
superadmin?: number | undefined;
|
|
1971
|
+
} | undefined;
|
|
1972
|
+
country?: string | undefined;
|
|
1973
|
+
phoneNumber?: string | undefined;
|
|
1974
|
+
birthDate?: string | undefined;
|
|
1975
|
+
shouldChangePassword?: boolean | undefined;
|
|
1976
|
+
isInactive?: boolean | undefined;
|
|
1977
|
+
title?: string | undefined;
|
|
1978
|
+
bio?: string | undefined;
|
|
1979
|
+
available?: number[][][] | undefined;
|
|
1980
|
+
editedBy?: string | undefined;
|
|
1981
|
+
createdAt?: string | undefined;
|
|
1982
|
+
updatedAt?: string | undefined;
|
|
1983
|
+
}, {
|
|
1984
|
+
rank: GoRank;
|
|
1985
|
+
_id: string;
|
|
1986
|
+
name: string;
|
|
1987
|
+
email?: string | undefined;
|
|
1988
|
+
address?: string | undefined;
|
|
1989
|
+
username?: string | undefined;
|
|
1990
|
+
password?: string | undefined;
|
|
1991
|
+
roles?: {
|
|
1992
|
+
user: number;
|
|
1993
|
+
admin?: number | undefined;
|
|
1994
|
+
superadmin?: number | undefined;
|
|
1995
|
+
} | undefined;
|
|
1996
|
+
country?: string | undefined;
|
|
1997
|
+
phoneNumber?: string | undefined;
|
|
1998
|
+
birthDate?: string | undefined;
|
|
1999
|
+
shouldChangePassword?: boolean | undefined;
|
|
2000
|
+
isInactive?: boolean | undefined;
|
|
2001
|
+
title?: string | undefined;
|
|
2002
|
+
bio?: string | undefined;
|
|
2003
|
+
available?: number[][][] | undefined;
|
|
2004
|
+
editedBy?: string | undefined;
|
|
2005
|
+
createdAt?: string | undefined;
|
|
2006
|
+
updatedAt?: string | undefined;
|
|
2007
|
+
}>;
|
|
2008
|
+
student: z.ZodObject<{
|
|
2009
|
+
rank: z.ZodNativeEnum<typeof GoRank>;
|
|
2010
|
+
email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
2011
|
+
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
2012
|
+
name: z.ZodString;
|
|
2013
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2014
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2015
|
+
roles: z.ZodOptional<z.ZodObject<{
|
|
2016
|
+
user: z.ZodNumber;
|
|
2017
|
+
admin: z.ZodOptional<z.ZodNumber>;
|
|
2018
|
+
superadmin: z.ZodOptional<z.ZodNumber>;
|
|
2019
|
+
}, "strip", z.ZodTypeAny, {
|
|
2020
|
+
user: number;
|
|
2021
|
+
admin?: number | undefined;
|
|
2022
|
+
superadmin?: number | undefined;
|
|
2023
|
+
}, {
|
|
2024
|
+
user: number;
|
|
2025
|
+
admin?: number | undefined;
|
|
2026
|
+
superadmin?: number | undefined;
|
|
2027
|
+
}>>;
|
|
2028
|
+
country: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
2029
|
+
phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
2030
|
+
birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
2031
|
+
shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
|
|
2032
|
+
guardian: z.ZodOptional<z.ZodString>;
|
|
2033
|
+
_id: z.ZodString;
|
|
2034
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
2035
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2036
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2037
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2038
|
+
rank: GoRank;
|
|
2039
|
+
_id: string;
|
|
2040
|
+
name: string;
|
|
2041
|
+
email?: string | undefined;
|
|
2042
|
+
address?: string | undefined;
|
|
2043
|
+
username?: string | undefined;
|
|
2044
|
+
password?: string | undefined;
|
|
2045
|
+
roles?: {
|
|
2046
|
+
user: number;
|
|
2047
|
+
admin?: number | undefined;
|
|
2048
|
+
superadmin?: number | undefined;
|
|
2049
|
+
} | undefined;
|
|
2050
|
+
country?: string | undefined;
|
|
2051
|
+
phoneNumber?: string | undefined;
|
|
2052
|
+
birthDate?: string | undefined;
|
|
2053
|
+
shouldChangePassword?: boolean | undefined;
|
|
2054
|
+
guardian?: string | undefined;
|
|
2055
|
+
editedBy?: string | undefined;
|
|
2056
|
+
createdAt?: string | undefined;
|
|
2057
|
+
updatedAt?: string | undefined;
|
|
2058
|
+
}, {
|
|
2059
|
+
rank: GoRank;
|
|
2060
|
+
_id: string;
|
|
2061
|
+
name: string;
|
|
2062
|
+
email?: string | undefined;
|
|
2063
|
+
address?: string | undefined;
|
|
2064
|
+
username?: string | undefined;
|
|
2065
|
+
password?: string | undefined;
|
|
2066
|
+
roles?: {
|
|
2067
|
+
user: number;
|
|
2068
|
+
admin?: number | undefined;
|
|
2069
|
+
superadmin?: number | undefined;
|
|
2070
|
+
} | undefined;
|
|
2071
|
+
country?: string | undefined;
|
|
2072
|
+
phoneNumber?: string | undefined;
|
|
2073
|
+
birthDate?: string | undefined;
|
|
2074
|
+
shouldChangePassword?: boolean | undefined;
|
|
2075
|
+
guardian?: string | undefined;
|
|
2076
|
+
editedBy?: string | undefined;
|
|
2077
|
+
createdAt?: string | undefined;
|
|
2078
|
+
updatedAt?: string | undefined;
|
|
2079
|
+
}>;
|
|
1079
2080
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1080
2081
|
_id: string;
|
|
1081
|
-
student:
|
|
1082
|
-
|
|
1083
|
-
|
|
2082
|
+
student: {
|
|
2083
|
+
rank: GoRank;
|
|
2084
|
+
_id: string;
|
|
2085
|
+
name: string;
|
|
2086
|
+
email?: string | undefined;
|
|
2087
|
+
address?: string | undefined;
|
|
2088
|
+
username?: string | undefined;
|
|
2089
|
+
password?: string | undefined;
|
|
2090
|
+
roles?: {
|
|
2091
|
+
user: number;
|
|
2092
|
+
admin?: number | undefined;
|
|
2093
|
+
superadmin?: number | undefined;
|
|
2094
|
+
} | undefined;
|
|
2095
|
+
country?: string | undefined;
|
|
2096
|
+
phoneNumber?: string | undefined;
|
|
2097
|
+
birthDate?: string | undefined;
|
|
2098
|
+
shouldChangePassword?: boolean | undefined;
|
|
2099
|
+
guardian?: string | undefined;
|
|
2100
|
+
editedBy?: string | undefined;
|
|
2101
|
+
createdAt?: string | undefined;
|
|
2102
|
+
updatedAt?: string | undefined;
|
|
2103
|
+
};
|
|
2104
|
+
course: {
|
|
2105
|
+
_id: string;
|
|
2106
|
+
name: string;
|
|
2107
|
+
category: CourseCategory;
|
|
2108
|
+
duration: number;
|
|
2109
|
+
price: number;
|
|
2110
|
+
nyigSchool: NYIGSchool;
|
|
2111
|
+
description?: string | undefined;
|
|
2112
|
+
recLevel?: string | undefined;
|
|
2113
|
+
halfCampTuition?: number | undefined;
|
|
2114
|
+
fullCampTuition?: number | undefined;
|
|
2115
|
+
superadminOnly?: boolean | undefined;
|
|
2116
|
+
editedBy?: string | undefined;
|
|
2117
|
+
createdAt?: string | undefined;
|
|
2118
|
+
updatedAt?: string | undefined;
|
|
2119
|
+
};
|
|
2120
|
+
teacher: {
|
|
2121
|
+
rank: GoRank;
|
|
2122
|
+
_id: string;
|
|
2123
|
+
name: string;
|
|
2124
|
+
email?: string | undefined;
|
|
2125
|
+
address?: string | undefined;
|
|
2126
|
+
username?: string | undefined;
|
|
2127
|
+
password?: string | undefined;
|
|
2128
|
+
roles?: {
|
|
2129
|
+
user: number;
|
|
2130
|
+
admin?: number | undefined;
|
|
2131
|
+
superadmin?: number | undefined;
|
|
2132
|
+
} | undefined;
|
|
2133
|
+
country?: string | undefined;
|
|
2134
|
+
phoneNumber?: string | undefined;
|
|
2135
|
+
birthDate?: string | undefined;
|
|
2136
|
+
shouldChangePassword?: boolean | undefined;
|
|
2137
|
+
isInactive?: boolean | undefined;
|
|
2138
|
+
title?: string | undefined;
|
|
2139
|
+
bio?: string | undefined;
|
|
2140
|
+
available?: number[][][] | undefined;
|
|
2141
|
+
editedBy?: string | undefined;
|
|
2142
|
+
createdAt?: string | undefined;
|
|
2143
|
+
updatedAt?: string | undefined;
|
|
2144
|
+
};
|
|
1084
2145
|
classTimes: Date[];
|
|
1085
2146
|
completedList: boolean[];
|
|
1086
2147
|
notes?: string | undefined;
|
|
2148
|
+
editedBy?: string | undefined;
|
|
2149
|
+
createdAt?: string | undefined;
|
|
2150
|
+
updatedAt?: string | undefined;
|
|
1087
2151
|
tuition?: {
|
|
1088
2152
|
primary: number;
|
|
1089
2153
|
textbook?: boolean | undefined;
|
|
@@ -1092,17 +2156,77 @@ declare const zClassTracker: z.ZodObject<{
|
|
|
1092
2156
|
paid?: boolean | undefined;
|
|
1093
2157
|
completed?: boolean | undefined;
|
|
1094
2158
|
paused?: boolean | undefined;
|
|
1095
|
-
editedBy?: string | undefined;
|
|
1096
|
-
createdAt?: string | undefined;
|
|
1097
|
-
updatedAt?: string | undefined;
|
|
1098
2159
|
}, {
|
|
1099
2160
|
_id: string;
|
|
1100
|
-
student:
|
|
1101
|
-
|
|
1102
|
-
|
|
2161
|
+
student: {
|
|
2162
|
+
rank: GoRank;
|
|
2163
|
+
_id: string;
|
|
2164
|
+
name: string;
|
|
2165
|
+
email?: string | undefined;
|
|
2166
|
+
address?: string | undefined;
|
|
2167
|
+
username?: string | undefined;
|
|
2168
|
+
password?: string | undefined;
|
|
2169
|
+
roles?: {
|
|
2170
|
+
user: number;
|
|
2171
|
+
admin?: number | undefined;
|
|
2172
|
+
superadmin?: number | undefined;
|
|
2173
|
+
} | undefined;
|
|
2174
|
+
country?: string | undefined;
|
|
2175
|
+
phoneNumber?: string | undefined;
|
|
2176
|
+
birthDate?: string | undefined;
|
|
2177
|
+
shouldChangePassword?: boolean | undefined;
|
|
2178
|
+
guardian?: string | undefined;
|
|
2179
|
+
editedBy?: string | undefined;
|
|
2180
|
+
createdAt?: string | undefined;
|
|
2181
|
+
updatedAt?: string | undefined;
|
|
2182
|
+
};
|
|
2183
|
+
course: {
|
|
2184
|
+
_id: string;
|
|
2185
|
+
name: string;
|
|
2186
|
+
category: CourseCategory;
|
|
2187
|
+
duration: number;
|
|
2188
|
+
price: number;
|
|
2189
|
+
nyigSchool: NYIGSchool;
|
|
2190
|
+
description?: string | undefined;
|
|
2191
|
+
recLevel?: string | undefined;
|
|
2192
|
+
halfCampTuition?: number | undefined;
|
|
2193
|
+
fullCampTuition?: number | undefined;
|
|
2194
|
+
superadminOnly?: boolean | undefined;
|
|
2195
|
+
editedBy?: string | undefined;
|
|
2196
|
+
createdAt?: string | undefined;
|
|
2197
|
+
updatedAt?: string | undefined;
|
|
2198
|
+
};
|
|
2199
|
+
teacher: {
|
|
2200
|
+
rank: GoRank;
|
|
2201
|
+
_id: string;
|
|
2202
|
+
name: string;
|
|
2203
|
+
email?: string | undefined;
|
|
2204
|
+
address?: string | undefined;
|
|
2205
|
+
username?: string | undefined;
|
|
2206
|
+
password?: string | undefined;
|
|
2207
|
+
roles?: {
|
|
2208
|
+
user: number;
|
|
2209
|
+
admin?: number | undefined;
|
|
2210
|
+
superadmin?: number | undefined;
|
|
2211
|
+
} | undefined;
|
|
2212
|
+
country?: string | undefined;
|
|
2213
|
+
phoneNumber?: string | undefined;
|
|
2214
|
+
birthDate?: string | undefined;
|
|
2215
|
+
shouldChangePassword?: boolean | undefined;
|
|
2216
|
+
isInactive?: boolean | undefined;
|
|
2217
|
+
title?: string | undefined;
|
|
2218
|
+
bio?: string | undefined;
|
|
2219
|
+
available?: number[][][] | undefined;
|
|
2220
|
+
editedBy?: string | undefined;
|
|
2221
|
+
createdAt?: string | undefined;
|
|
2222
|
+
updatedAt?: string | undefined;
|
|
2223
|
+
};
|
|
1103
2224
|
classTimes: Date[];
|
|
1104
2225
|
completedList: boolean[];
|
|
1105
2226
|
notes?: string | undefined;
|
|
2227
|
+
editedBy?: string | undefined;
|
|
2228
|
+
createdAt?: string | undefined;
|
|
2229
|
+
updatedAt?: string | undefined;
|
|
1106
2230
|
tuition?: {
|
|
1107
2231
|
primary: number;
|
|
1108
2232
|
textbook?: boolean | undefined;
|
|
@@ -1111,132 +2235,10 @@ declare const zClassTracker: z.ZodObject<{
|
|
|
1111
2235
|
paid?: boolean | undefined;
|
|
1112
2236
|
completed?: boolean | undefined;
|
|
1113
2237
|
paused?: boolean | undefined;
|
|
1114
|
-
editedBy?: string | undefined;
|
|
1115
|
-
createdAt?: string | undefined;
|
|
1116
|
-
updatedAt?: string | undefined;
|
|
1117
2238
|
}>;
|
|
1118
2239
|
type BClassTracker = z.infer<typeof zBClassTracker>;
|
|
1119
2240
|
type ClassTracker = z.infer<typeof zClassTracker>;
|
|
1120
|
-
|
|
1121
|
-
declare enum AgeGroup {
|
|
1122
|
-
ADULT = "Adult",
|
|
1123
|
-
YOUTH = "Youth"
|
|
1124
|
-
}
|
|
1125
|
-
|
|
1126
|
-
declare enum CourseCategory {
|
|
1127
|
-
GROUP = "group",
|
|
1128
|
-
PRIVATE = "private",
|
|
1129
|
-
SEMIPRIVATE = "semiprivate",
|
|
1130
|
-
CAMP = "camp",
|
|
1131
|
-
EVENT = "event"
|
|
1132
|
-
}
|
|
1133
|
-
|
|
1134
|
-
declare enum NYIGSchool {
|
|
1135
|
-
MANHATTAN = "Manhattan",
|
|
1136
|
-
LITTLENECK = "Little Neck",
|
|
1137
|
-
ONLINE = "Online"
|
|
1138
|
-
}
|
|
1139
|
-
|
|
1140
|
-
declare const zBCourse: z.ZodObject<{
|
|
1141
|
-
name: z.ZodString;
|
|
1142
|
-
category: z.ZodNativeEnum<typeof CourseCategory>;
|
|
1143
|
-
/**
|
|
1144
|
-
* @unit SECONDS - Duration of the course in seconds
|
|
1145
|
-
*/
|
|
1146
|
-
duration: z.ZodNumber;
|
|
1147
|
-
/**
|
|
1148
|
-
* @unit CENTS - Price of the course in cents
|
|
1149
|
-
*/
|
|
1150
|
-
price: z.ZodNumber;
|
|
1151
|
-
description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1152
|
-
/**
|
|
1153
|
-
* NYIG School locations
|
|
1154
|
-
*/
|
|
1155
|
-
nyigSchool: z.ZodNativeEnum<typeof NYIGSchool>;
|
|
1156
|
-
/**
|
|
1157
|
-
* Recommended level before taking this course
|
|
1158
|
-
*/
|
|
1159
|
-
recLevel: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1160
|
-
/**
|
|
1161
|
-
* Camp tuition for half-day option
|
|
1162
|
-
*/
|
|
1163
|
-
halfCampTuition: z.ZodOptional<z.ZodNumber>;
|
|
1164
|
-
/**
|
|
1165
|
-
* Camp tuition for full-day option
|
|
1166
|
-
*/
|
|
1167
|
-
fullCampTuition: z.ZodOptional<z.ZodNumber>;
|
|
1168
|
-
superadminOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1169
|
-
}, "strip", z.ZodTypeAny, {
|
|
1170
|
-
name: string;
|
|
1171
|
-
price: number;
|
|
1172
|
-
category: CourseCategory;
|
|
1173
|
-
duration: number;
|
|
1174
|
-
nyigSchool: NYIGSchool;
|
|
1175
|
-
description?: string | undefined;
|
|
1176
|
-
recLevel?: string | undefined;
|
|
1177
|
-
halfCampTuition?: number | undefined;
|
|
1178
|
-
fullCampTuition?: number | undefined;
|
|
1179
|
-
superadminOnly?: boolean | undefined;
|
|
1180
|
-
}, {
|
|
1181
|
-
name: string;
|
|
1182
|
-
price: number;
|
|
1183
|
-
category: CourseCategory;
|
|
1184
|
-
duration: number;
|
|
1185
|
-
nyigSchool: NYIGSchool;
|
|
1186
|
-
description?: string | undefined;
|
|
1187
|
-
recLevel?: string | undefined;
|
|
1188
|
-
halfCampTuition?: number | undefined;
|
|
1189
|
-
fullCampTuition?: number | undefined;
|
|
1190
|
-
superadminOnly?: boolean | undefined;
|
|
1191
|
-
}>;
|
|
1192
|
-
declare const zCourse: z.ZodObject<{
|
|
1193
|
-
name: z.ZodString;
|
|
1194
|
-
price: z.ZodNumber;
|
|
1195
|
-
category: z.ZodNativeEnum<typeof CourseCategory>;
|
|
1196
|
-
duration: z.ZodNumber;
|
|
1197
|
-
description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1198
|
-
nyigSchool: z.ZodNativeEnum<typeof NYIGSchool>;
|
|
1199
|
-
recLevel: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1200
|
-
halfCampTuition: z.ZodOptional<z.ZodNumber>;
|
|
1201
|
-
fullCampTuition: z.ZodOptional<z.ZodNumber>;
|
|
1202
|
-
superadminOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1203
|
-
_id: z.ZodString;
|
|
1204
|
-
editedBy: z.ZodOptional<z.ZodString>;
|
|
1205
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
1206
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1207
|
-
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1208
|
-
_id: string;
|
|
1209
|
-
name: string;
|
|
1210
|
-
price: number;
|
|
1211
|
-
category: CourseCategory;
|
|
1212
|
-
duration: number;
|
|
1213
|
-
nyigSchool: NYIGSchool;
|
|
1214
|
-
description?: string | undefined;
|
|
1215
|
-
recLevel?: string | undefined;
|
|
1216
|
-
halfCampTuition?: number | undefined;
|
|
1217
|
-
fullCampTuition?: number | undefined;
|
|
1218
|
-
superadminOnly?: boolean | undefined;
|
|
1219
|
-
editedBy?: string | undefined;
|
|
1220
|
-
createdAt?: string | undefined;
|
|
1221
|
-
updatedAt?: string | undefined;
|
|
1222
|
-
}, {
|
|
1223
|
-
_id: string;
|
|
1224
|
-
name: string;
|
|
1225
|
-
price: number;
|
|
1226
|
-
category: CourseCategory;
|
|
1227
|
-
duration: number;
|
|
1228
|
-
nyigSchool: NYIGSchool;
|
|
1229
|
-
description?: string | undefined;
|
|
1230
|
-
recLevel?: string | undefined;
|
|
1231
|
-
halfCampTuition?: number | undefined;
|
|
1232
|
-
fullCampTuition?: number | undefined;
|
|
1233
|
-
superadminOnly?: boolean | undefined;
|
|
1234
|
-
editedBy?: string | undefined;
|
|
1235
|
-
createdAt?: string | undefined;
|
|
1236
|
-
updatedAt?: string | undefined;
|
|
1237
|
-
}>;
|
|
1238
|
-
type BCourse = z.infer<typeof zBCourse>;
|
|
1239
|
-
type Course = z.infer<typeof zCourse>;
|
|
2241
|
+
type ClassTrackerResponse = z.infer<typeof zClassTrackerResponse>;
|
|
1240
2242
|
|
|
1241
2243
|
declare const zBGroupTracker: z.ZodObject<{
|
|
1242
2244
|
course: z.ZodString;
|
|
@@ -1745,12 +2747,12 @@ declare const zInvoiceItem: z.ZodObject<{
|
|
|
1745
2747
|
price: z.ZodNumber;
|
|
1746
2748
|
units: z.ZodNumber;
|
|
1747
2749
|
}, "strip", z.ZodTypeAny, {
|
|
1748
|
-
course: string;
|
|
1749
2750
|
price: number;
|
|
2751
|
+
course: string;
|
|
1750
2752
|
units: number;
|
|
1751
2753
|
}, {
|
|
1752
|
-
course: string;
|
|
1753
2754
|
price: number;
|
|
2755
|
+
course: string;
|
|
1754
2756
|
units: number;
|
|
1755
2757
|
}>;
|
|
1756
2758
|
declare const zInvoicePackage: z.ZodObject<{
|
|
@@ -1760,26 +2762,26 @@ declare const zInvoicePackage: z.ZodObject<{
|
|
|
1760
2762
|
price: z.ZodNumber;
|
|
1761
2763
|
units: z.ZodNumber;
|
|
1762
2764
|
}, "strip", z.ZodTypeAny, {
|
|
1763
|
-
course: string;
|
|
1764
2765
|
price: number;
|
|
2766
|
+
course: string;
|
|
1765
2767
|
units: number;
|
|
1766
2768
|
}, {
|
|
1767
|
-
course: string;
|
|
1768
2769
|
price: number;
|
|
2770
|
+
course: string;
|
|
1769
2771
|
units: number;
|
|
1770
2772
|
}>, "many">;
|
|
1771
2773
|
}, "strip", z.ZodTypeAny, {
|
|
1772
2774
|
student: string;
|
|
1773
2775
|
items: {
|
|
1774
|
-
course: string;
|
|
1775
2776
|
price: number;
|
|
2777
|
+
course: string;
|
|
1776
2778
|
units: number;
|
|
1777
2779
|
}[];
|
|
1778
2780
|
}, {
|
|
1779
2781
|
student: string;
|
|
1780
2782
|
items: {
|
|
1781
|
-
course: string;
|
|
1782
2783
|
price: number;
|
|
2784
|
+
course: string;
|
|
1783
2785
|
units: number;
|
|
1784
2786
|
}[];
|
|
1785
2787
|
}>;
|
|
@@ -1789,12 +2791,12 @@ declare const zInvoicePackageResponse: z.ZodObject<{
|
|
|
1789
2791
|
price: z.ZodNumber;
|
|
1790
2792
|
units: z.ZodNumber;
|
|
1791
2793
|
}, "strip", z.ZodTypeAny, {
|
|
1792
|
-
course: string;
|
|
1793
2794
|
price: number;
|
|
2795
|
+
course: string;
|
|
1794
2796
|
units: number;
|
|
1795
2797
|
}, {
|
|
1796
|
-
course: string;
|
|
1797
2798
|
price: number;
|
|
2799
|
+
course: string;
|
|
1798
2800
|
units: number;
|
|
1799
2801
|
}>, "many">;
|
|
1800
2802
|
student: z.ZodObject<{
|
|
@@ -1893,8 +2895,8 @@ declare const zInvoicePackageResponse: z.ZodObject<{
|
|
|
1893
2895
|
updatedAt?: string | undefined;
|
|
1894
2896
|
};
|
|
1895
2897
|
items: {
|
|
1896
|
-
course: string;
|
|
1897
2898
|
price: number;
|
|
2899
|
+
course: string;
|
|
1898
2900
|
units: number;
|
|
1899
2901
|
}[];
|
|
1900
2902
|
}, {
|
|
@@ -1921,8 +2923,8 @@ declare const zInvoicePackageResponse: z.ZodObject<{
|
|
|
1921
2923
|
updatedAt?: string | undefined;
|
|
1922
2924
|
};
|
|
1923
2925
|
items: {
|
|
1924
|
-
course: string;
|
|
1925
2926
|
price: number;
|
|
2927
|
+
course: string;
|
|
1926
2928
|
units: number;
|
|
1927
2929
|
}[];
|
|
1928
2930
|
}>;
|
|
@@ -1935,26 +2937,26 @@ declare const zBInvoice: z.ZodObject<{
|
|
|
1935
2937
|
price: z.ZodNumber;
|
|
1936
2938
|
units: z.ZodNumber;
|
|
1937
2939
|
}, "strip", z.ZodTypeAny, {
|
|
1938
|
-
course: string;
|
|
1939
2940
|
price: number;
|
|
2941
|
+
course: string;
|
|
1940
2942
|
units: number;
|
|
1941
2943
|
}, {
|
|
1942
|
-
course: string;
|
|
1943
2944
|
price: number;
|
|
2945
|
+
course: string;
|
|
1944
2946
|
units: number;
|
|
1945
2947
|
}>, "many">;
|
|
1946
2948
|
}, "strip", z.ZodTypeAny, {
|
|
1947
2949
|
student: string;
|
|
1948
2950
|
items: {
|
|
1949
|
-
course: string;
|
|
1950
2951
|
price: number;
|
|
2952
|
+
course: string;
|
|
1951
2953
|
units: number;
|
|
1952
2954
|
}[];
|
|
1953
2955
|
}, {
|
|
1954
2956
|
student: string;
|
|
1955
2957
|
items: {
|
|
1956
|
-
course: string;
|
|
1957
2958
|
price: number;
|
|
2959
|
+
course: string;
|
|
1958
2960
|
units: number;
|
|
1959
2961
|
}[];
|
|
1960
2962
|
}>, "many">;
|
|
@@ -1980,8 +2982,8 @@ declare const zBInvoice: z.ZodObject<{
|
|
|
1980
2982
|
packages: {
|
|
1981
2983
|
student: string;
|
|
1982
2984
|
items: {
|
|
1983
|
-
course: string;
|
|
1984
2985
|
price: number;
|
|
2986
|
+
course: string;
|
|
1985
2987
|
units: number;
|
|
1986
2988
|
}[];
|
|
1987
2989
|
}[];
|
|
@@ -2001,8 +3003,8 @@ declare const zBInvoice: z.ZodObject<{
|
|
|
2001
3003
|
packages: {
|
|
2002
3004
|
student: string;
|
|
2003
3005
|
items: {
|
|
2004
|
-
course: string;
|
|
2005
3006
|
price: number;
|
|
3007
|
+
course: string;
|
|
2006
3008
|
units: number;
|
|
2007
3009
|
}[];
|
|
2008
3010
|
}[];
|
|
@@ -2031,26 +3033,26 @@ declare const zInvoice: z.ZodObject<{
|
|
|
2031
3033
|
price: z.ZodNumber;
|
|
2032
3034
|
units: z.ZodNumber;
|
|
2033
3035
|
}, "strip", z.ZodTypeAny, {
|
|
2034
|
-
course: string;
|
|
2035
3036
|
price: number;
|
|
3037
|
+
course: string;
|
|
2036
3038
|
units: number;
|
|
2037
3039
|
}, {
|
|
2038
|
-
course: string;
|
|
2039
3040
|
price: number;
|
|
3041
|
+
course: string;
|
|
2040
3042
|
units: number;
|
|
2041
3043
|
}>, "many">;
|
|
2042
3044
|
}, "strip", z.ZodTypeAny, {
|
|
2043
3045
|
student: string;
|
|
2044
3046
|
items: {
|
|
2045
|
-
course: string;
|
|
2046
3047
|
price: number;
|
|
3048
|
+
course: string;
|
|
2047
3049
|
units: number;
|
|
2048
3050
|
}[];
|
|
2049
3051
|
}, {
|
|
2050
3052
|
student: string;
|
|
2051
3053
|
items: {
|
|
2052
|
-
course: string;
|
|
2053
3054
|
price: number;
|
|
3055
|
+
course: string;
|
|
2054
3056
|
units: number;
|
|
2055
3057
|
}[];
|
|
2056
3058
|
}>, "many">;
|
|
@@ -2077,8 +3079,8 @@ declare const zInvoice: z.ZodObject<{
|
|
|
2077
3079
|
packages: {
|
|
2078
3080
|
student: string;
|
|
2079
3081
|
items: {
|
|
2080
|
-
course: string;
|
|
2081
3082
|
price: number;
|
|
3083
|
+
course: string;
|
|
2082
3084
|
units: number;
|
|
2083
3085
|
}[];
|
|
2084
3086
|
}[];
|
|
@@ -2102,8 +3104,8 @@ declare const zInvoice: z.ZodObject<{
|
|
|
2102
3104
|
packages: {
|
|
2103
3105
|
student: string;
|
|
2104
3106
|
items: {
|
|
2105
|
-
course: string;
|
|
2106
3107
|
price: number;
|
|
3108
|
+
course: string;
|
|
2107
3109
|
units: number;
|
|
2108
3110
|
}[];
|
|
2109
3111
|
}[];
|
|
@@ -2311,12 +3313,12 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
2311
3313
|
price: z.ZodNumber;
|
|
2312
3314
|
units: z.ZodNumber;
|
|
2313
3315
|
}, "strip", z.ZodTypeAny, {
|
|
2314
|
-
course: string;
|
|
2315
3316
|
price: number;
|
|
3317
|
+
course: string;
|
|
2316
3318
|
units: number;
|
|
2317
3319
|
}, {
|
|
2318
|
-
course: string;
|
|
2319
3320
|
price: number;
|
|
3321
|
+
course: string;
|
|
2320
3322
|
units: number;
|
|
2321
3323
|
}>, "many">;
|
|
2322
3324
|
student: z.ZodObject<{
|
|
@@ -2415,8 +3417,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
2415
3417
|
updatedAt?: string | undefined;
|
|
2416
3418
|
};
|
|
2417
3419
|
items: {
|
|
2418
|
-
course: string;
|
|
2419
3420
|
price: number;
|
|
3421
|
+
course: string;
|
|
2420
3422
|
units: number;
|
|
2421
3423
|
}[];
|
|
2422
3424
|
}, {
|
|
@@ -2443,8 +3445,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
2443
3445
|
updatedAt?: string | undefined;
|
|
2444
3446
|
};
|
|
2445
3447
|
items: {
|
|
2446
|
-
course: string;
|
|
2447
3448
|
price: number;
|
|
3449
|
+
course: string;
|
|
2448
3450
|
units: number;
|
|
2449
3451
|
}[];
|
|
2450
3452
|
}>, "many">;
|
|
@@ -2475,8 +3477,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
2475
3477
|
updatedAt?: string | undefined;
|
|
2476
3478
|
};
|
|
2477
3479
|
items: {
|
|
2478
|
-
course: string;
|
|
2479
3480
|
price: number;
|
|
3481
|
+
course: string;
|
|
2480
3482
|
units: number;
|
|
2481
3483
|
}[];
|
|
2482
3484
|
}[];
|
|
@@ -2569,8 +3571,8 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
2569
3571
|
updatedAt?: string | undefined;
|
|
2570
3572
|
};
|
|
2571
3573
|
items: {
|
|
2572
|
-
course: string;
|
|
2573
3574
|
price: number;
|
|
3575
|
+
course: string;
|
|
2574
3576
|
units: number;
|
|
2575
3577
|
}[];
|
|
2576
3578
|
}[];
|
|
@@ -3327,77 +4329,6 @@ type BReportTicket = z.infer<typeof zBReportTicket>;
|
|
|
3327
4329
|
type ReportTicket = z.infer<typeof zReportTicket>;
|
|
3328
4330
|
type ReportTicketResponse = z.infer<typeof zReportTicketResponse>;
|
|
3329
4331
|
|
|
3330
|
-
declare enum Season {
|
|
3331
|
-
FALL = "fall",
|
|
3332
|
-
SPRING = "spring",
|
|
3333
|
-
SUMMER = "summer"
|
|
3334
|
-
}
|
|
3335
|
-
|
|
3336
|
-
declare const zBSemester: z.ZodObject<{
|
|
3337
|
-
season: z.ZodNativeEnum<typeof Season>;
|
|
3338
|
-
year: z.ZodNumber;
|
|
3339
|
-
startDate: z.ZodDate;
|
|
3340
|
-
endDate: z.ZodDate;
|
|
3341
|
-
/**
|
|
3342
|
-
* Format: start, end, start, end, ...
|
|
3343
|
-
*/
|
|
3344
|
-
blackoutDates: z.ZodArray<z.ZodDate, "many">;
|
|
3345
|
-
/**
|
|
3346
|
-
* List of names of some break: date range
|
|
3347
|
-
*/
|
|
3348
|
-
importantDates: z.ZodArray<z.ZodString, "many">;
|
|
3349
|
-
}, "strip", z.ZodTypeAny, {
|
|
3350
|
-
season: Season;
|
|
3351
|
-
year: number;
|
|
3352
|
-
startDate: Date;
|
|
3353
|
-
endDate: Date;
|
|
3354
|
-
blackoutDates: Date[];
|
|
3355
|
-
importantDates: string[];
|
|
3356
|
-
}, {
|
|
3357
|
-
season: Season;
|
|
3358
|
-
year: number;
|
|
3359
|
-
startDate: Date;
|
|
3360
|
-
endDate: Date;
|
|
3361
|
-
blackoutDates: Date[];
|
|
3362
|
-
importantDates: string[];
|
|
3363
|
-
}>;
|
|
3364
|
-
declare const zSemester: z.ZodObject<{
|
|
3365
|
-
season: z.ZodNativeEnum<typeof Season>;
|
|
3366
|
-
year: z.ZodNumber;
|
|
3367
|
-
startDate: z.ZodDate;
|
|
3368
|
-
endDate: z.ZodDate;
|
|
3369
|
-
blackoutDates: z.ZodArray<z.ZodDate, "many">;
|
|
3370
|
-
importantDates: z.ZodArray<z.ZodString, "many">;
|
|
3371
|
-
_id: z.ZodString;
|
|
3372
|
-
editedBy: z.ZodOptional<z.ZodString>;
|
|
3373
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
3374
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
3375
|
-
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
3376
|
-
_id: string;
|
|
3377
|
-
season: Season;
|
|
3378
|
-
year: number;
|
|
3379
|
-
startDate: Date;
|
|
3380
|
-
endDate: Date;
|
|
3381
|
-
blackoutDates: Date[];
|
|
3382
|
-
importantDates: string[];
|
|
3383
|
-
editedBy?: string | undefined;
|
|
3384
|
-
createdAt?: string | undefined;
|
|
3385
|
-
updatedAt?: string | undefined;
|
|
3386
|
-
}, {
|
|
3387
|
-
_id: string;
|
|
3388
|
-
season: Season;
|
|
3389
|
-
year: number;
|
|
3390
|
-
startDate: Date;
|
|
3391
|
-
endDate: Date;
|
|
3392
|
-
blackoutDates: Date[];
|
|
3393
|
-
importantDates: string[];
|
|
3394
|
-
editedBy?: string | undefined;
|
|
3395
|
-
createdAt?: string | undefined;
|
|
3396
|
-
updatedAt?: string | undefined;
|
|
3397
|
-
}>;
|
|
3398
|
-
type BSemester = z.infer<typeof zBSemester>;
|
|
3399
|
-
type Semester = z.infer<typeof zSemester>;
|
|
3400
|
-
|
|
3401
4332
|
declare const zBEventConfig: z.ZodObject<{
|
|
3402
4333
|
/**
|
|
3403
4334
|
* Location of the event
|
|
@@ -4272,4 +5203,4 @@ declare const zEventTicket: z.ZodObject<{
|
|
|
4272
5203
|
type BEventTicket = z.infer<typeof zBEventTicket>;
|
|
4273
5204
|
type EventTicket = z.infer<typeof zEventTicket>;
|
|
4274
5205
|
|
|
4275
|
-
export { AgeGroup, AttendState, type Attendance, type AttendanceResponse, 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 BStudent, type BTeacher, type BTeacherPayment, type BUser, type BUserInfo, BookingType, type CampBooking, CampOption, type CampTracker, type ChangePasswordRequest, type ClassTracker, type Course, CourseCategory, type CourseTable, type CreateAdminAccountRequest, 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 LoginRequest, type LoginResponse, type NYIGMission, NYIGSchool, type PaymentIntent, PaymentMethod, type PrivateBooking, type ReportTicket, type ReportTicketResponse, Role, type ScheduleData, type ScheduleTable, Season, type Semester, type Student, type Teacher, type TeacherDisplay, type TeacherPayment, type TeacherPaymentResponse, type TeacherPaymentRow, type TeacherResponse, TicketStatus, type Tuition, type User, type UserRoles, zAttendance, zAttendanceResponse, zBAttendance, zBCampBooking, zBCampTracker, zBClassTracker, zBCourse, zBEventConfig, zBEventReg, zBEventTicket, zBGroupBooking, zBGroupTracker, zBInvoice, zBPaymentInfo, zBPrivateBooking, zBReportTicket, zBSemester, zBStudent, zBTeacher, zBTeacherPayment, zBUser, zBUserInfo, zCampBooking, zCampTracker, zChangePasswordRequest, zClassTracker, zCourse, zCourseTable, zCreateAdminAccountRequest, zDetailsTable, zDiscount, zEventConfig, zEventConfigResponse, zEventReg, zEventRegResponse, zEventTicket, zEventTicketReg, zEventTicketRegResponse, zGroupBooking, zGroupTracker, zImageDef, zInvoice, zInvoiceItem, zInvoicePackage, zInvoicePackageResponse, zInvoiceResponse, zLoginRequest, zLoginResponse, zPrivateBooking, zReportTicket, zReportTicketResponse, zScheduleData, zScheduleTable, zSemester, zStudent, zTeacher, zTeacherDisplay, zTeacherPayment, zTeacherPaymentResponse, zTeacherPaymentRow, zTuition, zUser, zUserRoles };
|
|
5206
|
+
export { AgeGroup, AttendState, type Attendance, type AttendanceRequest, type AttendanceResponse, 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 BStudent, type BTeacher, type BTeacherPayment, type BUser, type BUserInfo, BookingType, type CampBooking, CampOption, type CampTracker, type CampTrackerRequest, type CampTrackerResponse, type ChangePasswordRequest, type ClassTracker, type ClassTrackerResponse, type Course, CourseCategory, type CourseTable, type CreateAdminAccountRequest, 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 LoginRequest, type LoginResponse, type NYIGMission, NYIGSchool, type PaymentIntent, PaymentMethod, type PrivateBooking, type ReportTicket, type ReportTicketResponse, Role, type ScheduleData, type ScheduleTable, Season, type Semester, type Student, type Teacher, type TeacherDisplay, type TeacherPayment, type TeacherPaymentResponse, type TeacherPaymentRow, type TeacherResponse, TicketStatus, type Tuition, type User, type UserRoles, zAttendance, zAttendanceRequest, zAttendanceResponse, zBAttendance, zBCampBooking, zBCampTracker, zBClassTracker, zBCourse, zBEventConfig, zBEventReg, zBEventTicket, zBGroupBooking, zBGroupTracker, zBInvoice, zBPaymentInfo, zBPrivateBooking, zBReportTicket, zBSemester, zBStudent, zBTeacher, zBTeacherPayment, zBUser, zBUserInfo, zCampBooking, zCampTracker, zCampTrackerRequest, zCampTrackerResponse, zChangePasswordRequest, zClassTracker, zClassTrackerResponse, zCourse, zCourseTable, zCreateAdminAccountRequest, zDetailsTable, zDiscount, zEventConfig, zEventConfigResponse, zEventReg, zEventRegResponse, zEventTicket, zEventTicketReg, zEventTicketRegResponse, zGroupBooking, zGroupTracker, zImageDef, zInvoice, zInvoiceItem, zInvoicePackage, zInvoicePackageResponse, zInvoiceResponse, zLoginRequest, zLoginResponse, zPrivateBooking, zReportTicket, zReportTicketResponse, zScheduleData, zScheduleTable, zSemester, zStudent, zTeacher, zTeacherDisplay, zTeacherPayment, zTeacherPaymentResponse, zTeacherPaymentRow, zTuition, zUser, zUserRoles };
|