@nyig/models 0.3.13 → 0.3.15
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 +901 -136
- package/index.d.ts +901 -136
- package/index.js +209 -177
- package/index.mjs +207 -176
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -1166,7 +1166,57 @@ declare const zBCampTracker: z.ZodObject<{
|
|
|
1166
1166
|
/**
|
|
1167
1167
|
* attendances are tracked by week for camps
|
|
1168
1168
|
*/
|
|
1169
|
-
attendances: z.ZodArray<z.
|
|
1169
|
+
attendances: z.ZodArray<z.ZodObject<{
|
|
1170
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
1171
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1172
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1173
|
+
student: z.ZodString;
|
|
1174
|
+
states: z.ZodArray<z.ZodNativeEnum<typeof AttendState>, "many">;
|
|
1175
|
+
tuition: z.ZodOptional<z.ZodObject<{
|
|
1176
|
+
primary: z.ZodNumber;
|
|
1177
|
+
textbook: z.ZodOptional<z.ZodBoolean>;
|
|
1178
|
+
shipping: z.ZodOptional<z.ZodBoolean>;
|
|
1179
|
+
}, "strip", z.ZodTypeAny, {
|
|
1180
|
+
primary: number;
|
|
1181
|
+
textbook?: boolean | undefined;
|
|
1182
|
+
shipping?: boolean | undefined;
|
|
1183
|
+
}, {
|
|
1184
|
+
primary: number;
|
|
1185
|
+
textbook?: boolean | undefined;
|
|
1186
|
+
shipping?: boolean | undefined;
|
|
1187
|
+
}>>;
|
|
1188
|
+
paid: z.ZodOptional<z.ZodBoolean>;
|
|
1189
|
+
campOption: z.ZodOptional<z.ZodNativeEnum<typeof CampOption>>;
|
|
1190
|
+
_id: z.ZodOptional<z.ZodString>;
|
|
1191
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1192
|
+
student: string;
|
|
1193
|
+
states: AttendState[];
|
|
1194
|
+
editedBy?: string | undefined;
|
|
1195
|
+
createdAt?: string | undefined;
|
|
1196
|
+
updatedAt?: string | undefined;
|
|
1197
|
+
tuition?: {
|
|
1198
|
+
primary: number;
|
|
1199
|
+
textbook?: boolean | undefined;
|
|
1200
|
+
shipping?: boolean | undefined;
|
|
1201
|
+
} | undefined;
|
|
1202
|
+
paid?: boolean | undefined;
|
|
1203
|
+
campOption?: CampOption | undefined;
|
|
1204
|
+
_id?: string | undefined;
|
|
1205
|
+
}, {
|
|
1206
|
+
student: string;
|
|
1207
|
+
states: AttendState[];
|
|
1208
|
+
editedBy?: string | undefined;
|
|
1209
|
+
createdAt?: string | undefined;
|
|
1210
|
+
updatedAt?: string | undefined;
|
|
1211
|
+
tuition?: {
|
|
1212
|
+
primary: number;
|
|
1213
|
+
textbook?: boolean | undefined;
|
|
1214
|
+
shipping?: boolean | undefined;
|
|
1215
|
+
} | undefined;
|
|
1216
|
+
paid?: boolean | undefined;
|
|
1217
|
+
campOption?: CampOption | undefined;
|
|
1218
|
+
_id?: string | undefined;
|
|
1219
|
+
}>, "many">;
|
|
1170
1220
|
publicDescription: z.ZodOptional<z.ZodString>;
|
|
1171
1221
|
isNonPublic: z.ZodOptional<z.ZodBoolean>;
|
|
1172
1222
|
notes: z.ZodOptional<z.ZodString>;
|
|
@@ -1175,7 +1225,21 @@ declare const zBCampTracker: z.ZodObject<{
|
|
|
1175
1225
|
teacher: string;
|
|
1176
1226
|
semester: string;
|
|
1177
1227
|
occurrences: string[];
|
|
1178
|
-
attendances:
|
|
1228
|
+
attendances: {
|
|
1229
|
+
student: string;
|
|
1230
|
+
states: AttendState[];
|
|
1231
|
+
editedBy?: string | undefined;
|
|
1232
|
+
createdAt?: string | undefined;
|
|
1233
|
+
updatedAt?: string | undefined;
|
|
1234
|
+
tuition?: {
|
|
1235
|
+
primary: number;
|
|
1236
|
+
textbook?: boolean | undefined;
|
|
1237
|
+
shipping?: boolean | undefined;
|
|
1238
|
+
} | undefined;
|
|
1239
|
+
paid?: boolean | undefined;
|
|
1240
|
+
campOption?: CampOption | undefined;
|
|
1241
|
+
_id?: string | undefined;
|
|
1242
|
+
}[];
|
|
1179
1243
|
publicDescription?: string | undefined;
|
|
1180
1244
|
isNonPublic?: boolean | undefined;
|
|
1181
1245
|
notes?: string | undefined;
|
|
@@ -1184,7 +1248,21 @@ declare const zBCampTracker: z.ZodObject<{
|
|
|
1184
1248
|
teacher: string;
|
|
1185
1249
|
semester: string;
|
|
1186
1250
|
occurrences: string[];
|
|
1187
|
-
attendances:
|
|
1251
|
+
attendances: {
|
|
1252
|
+
student: string;
|
|
1253
|
+
states: AttendState[];
|
|
1254
|
+
editedBy?: string | undefined;
|
|
1255
|
+
createdAt?: string | undefined;
|
|
1256
|
+
updatedAt?: string | undefined;
|
|
1257
|
+
tuition?: {
|
|
1258
|
+
primary: number;
|
|
1259
|
+
textbook?: boolean | undefined;
|
|
1260
|
+
shipping?: boolean | undefined;
|
|
1261
|
+
} | undefined;
|
|
1262
|
+
paid?: boolean | undefined;
|
|
1263
|
+
campOption?: CampOption | undefined;
|
|
1264
|
+
_id?: string | undefined;
|
|
1265
|
+
}[];
|
|
1188
1266
|
publicDescription?: string | undefined;
|
|
1189
1267
|
isNonPublic?: boolean | undefined;
|
|
1190
1268
|
notes?: string | undefined;
|
|
@@ -1195,52 +1273,6 @@ declare const zCampTracker: z.ZodObject<{
|
|
|
1195
1273
|
teacher: z.ZodString;
|
|
1196
1274
|
semester: z.ZodString;
|
|
1197
1275
|
occurrences: z.ZodArray<z.ZodString, "many">;
|
|
1198
|
-
attendances: z.ZodArray<z.ZodString, "many">;
|
|
1199
|
-
publicDescription: z.ZodOptional<z.ZodString>;
|
|
1200
|
-
isNonPublic: z.ZodOptional<z.ZodBoolean>;
|
|
1201
|
-
_id: z.ZodString;
|
|
1202
|
-
editedBy: z.ZodOptional<z.ZodString>;
|
|
1203
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
1204
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1205
|
-
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1206
|
-
_id: string;
|
|
1207
|
-
course: string;
|
|
1208
|
-
teacher: string;
|
|
1209
|
-
semester: string;
|
|
1210
|
-
occurrences: string[];
|
|
1211
|
-
attendances: string[];
|
|
1212
|
-
notes?: string | undefined;
|
|
1213
|
-
publicDescription?: string | undefined;
|
|
1214
|
-
isNonPublic?: boolean | undefined;
|
|
1215
|
-
editedBy?: string | undefined;
|
|
1216
|
-
createdAt?: string | undefined;
|
|
1217
|
-
updatedAt?: string | undefined;
|
|
1218
|
-
}, {
|
|
1219
|
-
_id: string;
|
|
1220
|
-
course: string;
|
|
1221
|
-
teacher: string;
|
|
1222
|
-
semester: string;
|
|
1223
|
-
occurrences: string[];
|
|
1224
|
-
attendances: string[];
|
|
1225
|
-
notes?: string | undefined;
|
|
1226
|
-
publicDescription?: string | undefined;
|
|
1227
|
-
isNonPublic?: boolean | undefined;
|
|
1228
|
-
editedBy?: string | undefined;
|
|
1229
|
-
createdAt?: string | undefined;
|
|
1230
|
-
updatedAt?: string | undefined;
|
|
1231
|
-
}>;
|
|
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>;
|
|
1238
|
-
course: z.ZodString;
|
|
1239
|
-
teacher: z.ZodString;
|
|
1240
|
-
semester: z.ZodString;
|
|
1241
|
-
occurrences: z.ZodArray<z.ZodString, "many">;
|
|
1242
|
-
publicDescription: z.ZodOptional<z.ZodString>;
|
|
1243
|
-
isNonPublic: z.ZodOptional<z.ZodBoolean>;
|
|
1244
1276
|
attendances: z.ZodArray<z.ZodObject<{
|
|
1245
1277
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
1246
1278
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
@@ -1292,6 +1324,12 @@ declare const zCampTrackerRequest: z.ZodObject<{
|
|
|
1292
1324
|
campOption?: CampOption | undefined;
|
|
1293
1325
|
_id?: string | undefined;
|
|
1294
1326
|
}>, "many">;
|
|
1327
|
+
publicDescription: z.ZodOptional<z.ZodString>;
|
|
1328
|
+
isNonPublic: z.ZodOptional<z.ZodBoolean>;
|
|
1329
|
+
_id: z.ZodString;
|
|
1330
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
1331
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1332
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1295
1333
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
1296
1334
|
_id: string;
|
|
1297
1335
|
course: string;
|
|
@@ -1314,11 +1352,11 @@ declare const zCampTrackerRequest: z.ZodObject<{
|
|
|
1314
1352
|
_id?: string | undefined;
|
|
1315
1353
|
}[];
|
|
1316
1354
|
notes?: string | undefined;
|
|
1355
|
+
publicDescription?: string | undefined;
|
|
1356
|
+
isNonPublic?: boolean | undefined;
|
|
1317
1357
|
editedBy?: string | undefined;
|
|
1318
1358
|
createdAt?: string | undefined;
|
|
1319
1359
|
updatedAt?: string | undefined;
|
|
1320
|
-
publicDescription?: string | undefined;
|
|
1321
|
-
isNonPublic?: boolean | undefined;
|
|
1322
1360
|
}, {
|
|
1323
1361
|
_id: string;
|
|
1324
1362
|
course: string;
|
|
@@ -1341,11 +1379,11 @@ declare const zCampTrackerRequest: z.ZodObject<{
|
|
|
1341
1379
|
_id?: string | undefined;
|
|
1342
1380
|
}[];
|
|
1343
1381
|
notes?: string | undefined;
|
|
1382
|
+
publicDescription?: string | undefined;
|
|
1383
|
+
isNonPublic?: boolean | undefined;
|
|
1344
1384
|
editedBy?: string | undefined;
|
|
1345
1385
|
createdAt?: string | undefined;
|
|
1346
1386
|
updatedAt?: string | undefined;
|
|
1347
|
-
publicDescription?: string | undefined;
|
|
1348
|
-
isNonPublic?: boolean | undefined;
|
|
1349
1387
|
}>;
|
|
1350
1388
|
declare const zCampTrackerResponse: z.ZodObject<{
|
|
1351
1389
|
notes: z.ZodOptional<z.ZodString>;
|
|
@@ -1880,9 +1918,36 @@ declare const zCampTrackerResponse: z.ZodObject<{
|
|
|
1880
1918
|
}>;
|
|
1881
1919
|
type BCampTracker = z.infer<typeof zBCampTracker>;
|
|
1882
1920
|
type CampTracker = z.infer<typeof zCampTracker>;
|
|
1883
|
-
type CampTrackerRequest = z.infer<typeof zCampTrackerRequest>;
|
|
1884
1921
|
type CampTrackerResponse = z.infer<typeof zCampTrackerResponse>;
|
|
1885
1922
|
|
|
1923
|
+
declare enum DayOfWeek {
|
|
1924
|
+
SUNDAY = 0,
|
|
1925
|
+
MONDAY = 1,
|
|
1926
|
+
TUESDAY = 2,
|
|
1927
|
+
WEDNESDAY = 3,
|
|
1928
|
+
THURSDAY = 4,
|
|
1929
|
+
FRIDAY = 5,
|
|
1930
|
+
SATURDAY = 6
|
|
1931
|
+
}
|
|
1932
|
+
|
|
1933
|
+
declare const zClassTimesInput: z.ZodObject<{
|
|
1934
|
+
startDate: z.ZodDate;
|
|
1935
|
+
freq: z.ZodNumber;
|
|
1936
|
+
daysOfWeek: z.ZodArray<z.ZodNativeEnum<typeof DayOfWeek>, "many">;
|
|
1937
|
+
numberOfClasses: z.ZodNumber;
|
|
1938
|
+
}, "strip", z.ZodTypeAny, {
|
|
1939
|
+
startDate: Date;
|
|
1940
|
+
freq: number;
|
|
1941
|
+
daysOfWeek: DayOfWeek[];
|
|
1942
|
+
numberOfClasses: number;
|
|
1943
|
+
}, {
|
|
1944
|
+
startDate: Date;
|
|
1945
|
+
freq: number;
|
|
1946
|
+
daysOfWeek: DayOfWeek[];
|
|
1947
|
+
numberOfClasses: number;
|
|
1948
|
+
}>;
|
|
1949
|
+
|
|
1950
|
+
type ClassTimesInput = z.infer<typeof zClassTimesInput>;
|
|
1886
1951
|
declare const zBClassTracker: z.ZodObject<{
|
|
1887
1952
|
course: z.ZodString;
|
|
1888
1953
|
teacher: z.ZodString;
|
|
@@ -1896,19 +1961,6 @@ declare const zBClassTracker: z.ZodObject<{
|
|
|
1896
1961
|
/**
|
|
1897
1962
|
* @deprecated This field is no longer used
|
|
1898
1963
|
*/
|
|
1899
|
-
tuition: z.ZodOptional<z.ZodObject<{
|
|
1900
|
-
primary: z.ZodNumber;
|
|
1901
|
-
textbook: z.ZodOptional<z.ZodBoolean>;
|
|
1902
|
-
shipping: z.ZodOptional<z.ZodBoolean>;
|
|
1903
|
-
}, "strip", z.ZodTypeAny, {
|
|
1904
|
-
primary: number;
|
|
1905
|
-
textbook?: boolean | undefined;
|
|
1906
|
-
shipping?: boolean | undefined;
|
|
1907
|
-
}, {
|
|
1908
|
-
primary: number;
|
|
1909
|
-
textbook?: boolean | undefined;
|
|
1910
|
-
shipping?: boolean | undefined;
|
|
1911
|
-
}>>;
|
|
1912
1964
|
paid: z.ZodOptional<z.ZodBoolean>;
|
|
1913
1965
|
paused: z.ZodOptional<z.ZodBoolean>;
|
|
1914
1966
|
notes: z.ZodOptional<z.ZodString>;
|
|
@@ -1919,11 +1971,6 @@ declare const zBClassTracker: z.ZodObject<{
|
|
|
1919
1971
|
classTimes: Date[];
|
|
1920
1972
|
completedList: boolean[];
|
|
1921
1973
|
completed?: boolean | undefined;
|
|
1922
|
-
tuition?: {
|
|
1923
|
-
primary: number;
|
|
1924
|
-
textbook?: boolean | undefined;
|
|
1925
|
-
shipping?: boolean | undefined;
|
|
1926
|
-
} | undefined;
|
|
1927
1974
|
paid?: boolean | undefined;
|
|
1928
1975
|
paused?: boolean | undefined;
|
|
1929
1976
|
notes?: string | undefined;
|
|
@@ -1934,11 +1981,6 @@ declare const zBClassTracker: z.ZodObject<{
|
|
|
1934
1981
|
classTimes: Date[];
|
|
1935
1982
|
completedList: boolean[];
|
|
1936
1983
|
completed?: boolean | undefined;
|
|
1937
|
-
tuition?: {
|
|
1938
|
-
primary: number;
|
|
1939
|
-
textbook?: boolean | undefined;
|
|
1940
|
-
shipping?: boolean | undefined;
|
|
1941
|
-
} | undefined;
|
|
1942
1984
|
paid?: boolean | undefined;
|
|
1943
1985
|
paused?: boolean | undefined;
|
|
1944
1986
|
notes?: string | undefined;
|
|
@@ -1946,19 +1988,6 @@ declare const zBClassTracker: z.ZodObject<{
|
|
|
1946
1988
|
declare const zClassTracker: z.ZodObject<{
|
|
1947
1989
|
notes: z.ZodOptional<z.ZodString>;
|
|
1948
1990
|
student: z.ZodString;
|
|
1949
|
-
tuition: z.ZodOptional<z.ZodObject<{
|
|
1950
|
-
primary: z.ZodNumber;
|
|
1951
|
-
textbook: z.ZodOptional<z.ZodBoolean>;
|
|
1952
|
-
shipping: z.ZodOptional<z.ZodBoolean>;
|
|
1953
|
-
}, "strip", z.ZodTypeAny, {
|
|
1954
|
-
primary: number;
|
|
1955
|
-
textbook?: boolean | undefined;
|
|
1956
|
-
shipping?: boolean | undefined;
|
|
1957
|
-
}, {
|
|
1958
|
-
primary: number;
|
|
1959
|
-
textbook?: boolean | undefined;
|
|
1960
|
-
shipping?: boolean | undefined;
|
|
1961
|
-
}>>;
|
|
1962
1991
|
paid: z.ZodOptional<z.ZodBoolean>;
|
|
1963
1992
|
course: z.ZodString;
|
|
1964
1993
|
teacher: z.ZodString;
|
|
@@ -1978,11 +2007,6 @@ declare const zClassTracker: z.ZodObject<{
|
|
|
1978
2007
|
classTimes: Date[];
|
|
1979
2008
|
completedList: boolean[];
|
|
1980
2009
|
notes?: string | undefined;
|
|
1981
|
-
tuition?: {
|
|
1982
|
-
primary: number;
|
|
1983
|
-
textbook?: boolean | undefined;
|
|
1984
|
-
shipping?: boolean | undefined;
|
|
1985
|
-
} | undefined;
|
|
1986
2010
|
paid?: boolean | undefined;
|
|
1987
2011
|
completed?: boolean | undefined;
|
|
1988
2012
|
paused?: boolean | undefined;
|
|
@@ -1997,11 +2021,6 @@ declare const zClassTracker: z.ZodObject<{
|
|
|
1997
2021
|
classTimes: Date[];
|
|
1998
2022
|
completedList: boolean[];
|
|
1999
2023
|
notes?: string | undefined;
|
|
2000
|
-
tuition?: {
|
|
2001
|
-
primary: number;
|
|
2002
|
-
textbook?: boolean | undefined;
|
|
2003
|
-
shipping?: boolean | undefined;
|
|
2004
|
-
} | undefined;
|
|
2005
2024
|
paid?: boolean | undefined;
|
|
2006
2025
|
completed?: boolean | undefined;
|
|
2007
2026
|
paused?: boolean | undefined;
|
|
@@ -2015,19 +2034,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
|
|
|
2015
2034
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
2016
2035
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
2017
2036
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2018
|
-
tuition: z.ZodOptional<z.ZodObject<{
|
|
2019
|
-
primary: z.ZodNumber;
|
|
2020
|
-
textbook: z.ZodOptional<z.ZodBoolean>;
|
|
2021
|
-
shipping: z.ZodOptional<z.ZodBoolean>;
|
|
2022
|
-
}, "strip", z.ZodTypeAny, {
|
|
2023
|
-
primary: number;
|
|
2024
|
-
textbook?: boolean | undefined;
|
|
2025
|
-
shipping?: boolean | undefined;
|
|
2026
|
-
}, {
|
|
2027
|
-
primary: number;
|
|
2028
|
-
textbook?: boolean | undefined;
|
|
2029
|
-
shipping?: boolean | undefined;
|
|
2030
|
-
}>>;
|
|
2031
2037
|
paid: z.ZodOptional<z.ZodBoolean>;
|
|
2032
2038
|
classTimes: z.ZodArray<z.ZodDate, "many">;
|
|
2033
2039
|
completedList: z.ZodArray<z.ZodBoolean, "many">;
|
|
@@ -2303,11 +2309,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
|
|
|
2303
2309
|
editedBy?: string | undefined;
|
|
2304
2310
|
createdAt?: string | undefined;
|
|
2305
2311
|
updatedAt?: string | undefined;
|
|
2306
|
-
tuition?: {
|
|
2307
|
-
primary: number;
|
|
2308
|
-
textbook?: boolean | undefined;
|
|
2309
|
-
shipping?: boolean | undefined;
|
|
2310
|
-
} | undefined;
|
|
2311
2312
|
paid?: boolean | undefined;
|
|
2312
2313
|
completed?: boolean | undefined;
|
|
2313
2314
|
paused?: boolean | undefined;
|
|
@@ -2382,15 +2383,70 @@ declare const zClassTrackerResponse: z.ZodObject<{
|
|
|
2382
2383
|
editedBy?: string | undefined;
|
|
2383
2384
|
createdAt?: string | undefined;
|
|
2384
2385
|
updatedAt?: string | undefined;
|
|
2385
|
-
tuition?: {
|
|
2386
|
-
primary: number;
|
|
2387
|
-
textbook?: boolean | undefined;
|
|
2388
|
-
shipping?: boolean | undefined;
|
|
2389
|
-
} | undefined;
|
|
2390
2386
|
paid?: boolean | undefined;
|
|
2391
2387
|
completed?: boolean | undefined;
|
|
2392
2388
|
paused?: boolean | undefined;
|
|
2393
2389
|
}>;
|
|
2390
|
+
declare const zTrackerCreate: z.ZodObject<{
|
|
2391
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
2392
|
+
student: z.ZodString;
|
|
2393
|
+
paid: z.ZodOptional<z.ZodBoolean>;
|
|
2394
|
+
course: z.ZodString;
|
|
2395
|
+
teacher: z.ZodString;
|
|
2396
|
+
classTimes: z.ZodArray<z.ZodDate, "many">;
|
|
2397
|
+
completedList: z.ZodArray<z.ZodBoolean, "many">;
|
|
2398
|
+
completed: z.ZodOptional<z.ZodBoolean>;
|
|
2399
|
+
paused: z.ZodOptional<z.ZodBoolean>;
|
|
2400
|
+
classTimesInput: z.ZodObject<{
|
|
2401
|
+
startDate: z.ZodDate;
|
|
2402
|
+
freq: z.ZodNumber;
|
|
2403
|
+
daysOfWeek: z.ZodArray<z.ZodNativeEnum<typeof DayOfWeek>, "many">;
|
|
2404
|
+
numberOfClasses: z.ZodNumber;
|
|
2405
|
+
}, "strip", z.ZodTypeAny, {
|
|
2406
|
+
startDate: Date;
|
|
2407
|
+
freq: number;
|
|
2408
|
+
daysOfWeek: DayOfWeek[];
|
|
2409
|
+
numberOfClasses: number;
|
|
2410
|
+
}, {
|
|
2411
|
+
startDate: Date;
|
|
2412
|
+
freq: number;
|
|
2413
|
+
daysOfWeek: DayOfWeek[];
|
|
2414
|
+
numberOfClasses: number;
|
|
2415
|
+
}>;
|
|
2416
|
+
}, "strip", z.ZodTypeAny, {
|
|
2417
|
+
student: string;
|
|
2418
|
+
course: string;
|
|
2419
|
+
teacher: string;
|
|
2420
|
+
classTimes: Date[];
|
|
2421
|
+
completedList: boolean[];
|
|
2422
|
+
classTimesInput: {
|
|
2423
|
+
startDate: Date;
|
|
2424
|
+
freq: number;
|
|
2425
|
+
daysOfWeek: DayOfWeek[];
|
|
2426
|
+
numberOfClasses: number;
|
|
2427
|
+
};
|
|
2428
|
+
notes?: string | undefined;
|
|
2429
|
+
paid?: boolean | undefined;
|
|
2430
|
+
completed?: boolean | undefined;
|
|
2431
|
+
paused?: boolean | undefined;
|
|
2432
|
+
}, {
|
|
2433
|
+
student: string;
|
|
2434
|
+
course: string;
|
|
2435
|
+
teacher: string;
|
|
2436
|
+
classTimes: Date[];
|
|
2437
|
+
completedList: boolean[];
|
|
2438
|
+
classTimesInput: {
|
|
2439
|
+
startDate: Date;
|
|
2440
|
+
freq: number;
|
|
2441
|
+
daysOfWeek: DayOfWeek[];
|
|
2442
|
+
numberOfClasses: number;
|
|
2443
|
+
};
|
|
2444
|
+
notes?: string | undefined;
|
|
2445
|
+
paid?: boolean | undefined;
|
|
2446
|
+
completed?: boolean | undefined;
|
|
2447
|
+
paused?: boolean | undefined;
|
|
2448
|
+
}>;
|
|
2449
|
+
type TrackerCreate = z.infer<typeof zTrackerCreate>;
|
|
2394
2450
|
type BClassTracker = z.infer<typeof zBClassTracker>;
|
|
2395
2451
|
type ClassTracker = z.infer<typeof zClassTracker>;
|
|
2396
2452
|
type ClassTrackerResponse = z.infer<typeof zClassTrackerResponse>;
|
|
@@ -2412,11 +2468,61 @@ declare const zBGroupTracker: z.ZodObject<{
|
|
|
2412
2468
|
/**
|
|
2413
2469
|
* occurrences are tracked by week for Groups
|
|
2414
2470
|
*/
|
|
2415
|
-
occurrences: z.ZodArray<z.
|
|
2471
|
+
occurrences: z.ZodArray<z.ZodString, "many">;
|
|
2416
2472
|
/**
|
|
2417
2473
|
* attendances are tracked by week for Groups
|
|
2418
2474
|
*/
|
|
2419
|
-
attendances: z.ZodArray<z.
|
|
2475
|
+
attendances: z.ZodArray<z.ZodObject<{
|
|
2476
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
2477
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2478
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2479
|
+
student: z.ZodString;
|
|
2480
|
+
states: z.ZodArray<z.ZodNativeEnum<typeof AttendState>, "many">;
|
|
2481
|
+
tuition: z.ZodOptional<z.ZodObject<{
|
|
2482
|
+
primary: z.ZodNumber;
|
|
2483
|
+
textbook: z.ZodOptional<z.ZodBoolean>;
|
|
2484
|
+
shipping: z.ZodOptional<z.ZodBoolean>;
|
|
2485
|
+
}, "strip", z.ZodTypeAny, {
|
|
2486
|
+
primary: number;
|
|
2487
|
+
textbook?: boolean | undefined;
|
|
2488
|
+
shipping?: boolean | undefined;
|
|
2489
|
+
}, {
|
|
2490
|
+
primary: number;
|
|
2491
|
+
textbook?: boolean | undefined;
|
|
2492
|
+
shipping?: boolean | undefined;
|
|
2493
|
+
}>>;
|
|
2494
|
+
paid: z.ZodOptional<z.ZodBoolean>;
|
|
2495
|
+
campOption: z.ZodOptional<z.ZodNativeEnum<typeof CampOption>>;
|
|
2496
|
+
_id: z.ZodOptional<z.ZodString>;
|
|
2497
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2498
|
+
student: string;
|
|
2499
|
+
states: AttendState[];
|
|
2500
|
+
editedBy?: string | undefined;
|
|
2501
|
+
createdAt?: string | undefined;
|
|
2502
|
+
updatedAt?: string | undefined;
|
|
2503
|
+
tuition?: {
|
|
2504
|
+
primary: number;
|
|
2505
|
+
textbook?: boolean | undefined;
|
|
2506
|
+
shipping?: boolean | undefined;
|
|
2507
|
+
} | undefined;
|
|
2508
|
+
paid?: boolean | undefined;
|
|
2509
|
+
campOption?: CampOption | undefined;
|
|
2510
|
+
_id?: string | undefined;
|
|
2511
|
+
}, {
|
|
2512
|
+
student: string;
|
|
2513
|
+
states: AttendState[];
|
|
2514
|
+
editedBy?: string | undefined;
|
|
2515
|
+
createdAt?: string | undefined;
|
|
2516
|
+
updatedAt?: string | undefined;
|
|
2517
|
+
tuition?: {
|
|
2518
|
+
primary: number;
|
|
2519
|
+
textbook?: boolean | undefined;
|
|
2520
|
+
shipping?: boolean | undefined;
|
|
2521
|
+
} | undefined;
|
|
2522
|
+
paid?: boolean | undefined;
|
|
2523
|
+
campOption?: CampOption | undefined;
|
|
2524
|
+
_id?: string | undefined;
|
|
2525
|
+
}>, "many">;
|
|
2420
2526
|
/**
|
|
2421
2527
|
* public-facing ID of the course instance, e.g., 101
|
|
2422
2528
|
*/
|
|
@@ -2434,8 +2540,22 @@ declare const zBGroupTracker: z.ZodObject<{
|
|
|
2434
2540
|
course: string;
|
|
2435
2541
|
teacher: string;
|
|
2436
2542
|
semester: string;
|
|
2437
|
-
occurrences:
|
|
2438
|
-
attendances:
|
|
2543
|
+
occurrences: string[];
|
|
2544
|
+
attendances: {
|
|
2545
|
+
student: string;
|
|
2546
|
+
states: AttendState[];
|
|
2547
|
+
editedBy?: string | undefined;
|
|
2548
|
+
createdAt?: string | undefined;
|
|
2549
|
+
updatedAt?: string | undefined;
|
|
2550
|
+
tuition?: {
|
|
2551
|
+
primary: number;
|
|
2552
|
+
textbook?: boolean | undefined;
|
|
2553
|
+
shipping?: boolean | undefined;
|
|
2554
|
+
} | undefined;
|
|
2555
|
+
paid?: boolean | undefined;
|
|
2556
|
+
campOption?: CampOption | undefined;
|
|
2557
|
+
_id?: string | undefined;
|
|
2558
|
+
}[];
|
|
2439
2559
|
scheduleData: {
|
|
2440
2560
|
startTime: string;
|
|
2441
2561
|
dayOfWeek: number;
|
|
@@ -2448,8 +2568,22 @@ declare const zBGroupTracker: z.ZodObject<{
|
|
|
2448
2568
|
course: string;
|
|
2449
2569
|
teacher: string;
|
|
2450
2570
|
semester: string;
|
|
2451
|
-
occurrences:
|
|
2452
|
-
attendances:
|
|
2571
|
+
occurrences: string[];
|
|
2572
|
+
attendances: {
|
|
2573
|
+
student: string;
|
|
2574
|
+
states: AttendState[];
|
|
2575
|
+
editedBy?: string | undefined;
|
|
2576
|
+
createdAt?: string | undefined;
|
|
2577
|
+
updatedAt?: string | undefined;
|
|
2578
|
+
tuition?: {
|
|
2579
|
+
primary: number;
|
|
2580
|
+
textbook?: boolean | undefined;
|
|
2581
|
+
shipping?: boolean | undefined;
|
|
2582
|
+
} | undefined;
|
|
2583
|
+
paid?: boolean | undefined;
|
|
2584
|
+
campOption?: CampOption | undefined;
|
|
2585
|
+
_id?: string | undefined;
|
|
2586
|
+
}[];
|
|
2453
2587
|
scheduleData: {
|
|
2454
2588
|
startTime: string;
|
|
2455
2589
|
dayOfWeek: number;
|
|
@@ -2464,8 +2598,58 @@ declare const zGroupTracker: z.ZodObject<{
|
|
|
2464
2598
|
course: z.ZodString;
|
|
2465
2599
|
teacher: z.ZodString;
|
|
2466
2600
|
semester: z.ZodString;
|
|
2467
|
-
occurrences: z.ZodArray<z.
|
|
2468
|
-
attendances: z.ZodArray<z.
|
|
2601
|
+
occurrences: z.ZodArray<z.ZodString, "many">;
|
|
2602
|
+
attendances: z.ZodArray<z.ZodObject<{
|
|
2603
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
2604
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2605
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2606
|
+
student: z.ZodString;
|
|
2607
|
+
states: z.ZodArray<z.ZodNativeEnum<typeof AttendState>, "many">;
|
|
2608
|
+
tuition: z.ZodOptional<z.ZodObject<{
|
|
2609
|
+
primary: z.ZodNumber;
|
|
2610
|
+
textbook: z.ZodOptional<z.ZodBoolean>;
|
|
2611
|
+
shipping: z.ZodOptional<z.ZodBoolean>;
|
|
2612
|
+
}, "strip", z.ZodTypeAny, {
|
|
2613
|
+
primary: number;
|
|
2614
|
+
textbook?: boolean | undefined;
|
|
2615
|
+
shipping?: boolean | undefined;
|
|
2616
|
+
}, {
|
|
2617
|
+
primary: number;
|
|
2618
|
+
textbook?: boolean | undefined;
|
|
2619
|
+
shipping?: boolean | undefined;
|
|
2620
|
+
}>>;
|
|
2621
|
+
paid: z.ZodOptional<z.ZodBoolean>;
|
|
2622
|
+
campOption: z.ZodOptional<z.ZodNativeEnum<typeof CampOption>>;
|
|
2623
|
+
_id: z.ZodOptional<z.ZodString>;
|
|
2624
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2625
|
+
student: string;
|
|
2626
|
+
states: AttendState[];
|
|
2627
|
+
editedBy?: string | undefined;
|
|
2628
|
+
createdAt?: string | undefined;
|
|
2629
|
+
updatedAt?: string | undefined;
|
|
2630
|
+
tuition?: {
|
|
2631
|
+
primary: number;
|
|
2632
|
+
textbook?: boolean | undefined;
|
|
2633
|
+
shipping?: boolean | undefined;
|
|
2634
|
+
} | undefined;
|
|
2635
|
+
paid?: boolean | undefined;
|
|
2636
|
+
campOption?: CampOption | undefined;
|
|
2637
|
+
_id?: string | undefined;
|
|
2638
|
+
}, {
|
|
2639
|
+
student: string;
|
|
2640
|
+
states: AttendState[];
|
|
2641
|
+
editedBy?: string | undefined;
|
|
2642
|
+
createdAt?: string | undefined;
|
|
2643
|
+
updatedAt?: string | undefined;
|
|
2644
|
+
tuition?: {
|
|
2645
|
+
primary: number;
|
|
2646
|
+
textbook?: boolean | undefined;
|
|
2647
|
+
shipping?: boolean | undefined;
|
|
2648
|
+
} | undefined;
|
|
2649
|
+
paid?: boolean | undefined;
|
|
2650
|
+
campOption?: CampOption | undefined;
|
|
2651
|
+
_id?: string | undefined;
|
|
2652
|
+
}>, "many">;
|
|
2469
2653
|
isNonPublic: z.ZodOptional<z.ZodBoolean>;
|
|
2470
2654
|
scheduleData: z.ZodObject<{
|
|
2471
2655
|
startTime: z.ZodString;
|
|
@@ -2488,8 +2672,22 @@ declare const zGroupTracker: z.ZodObject<{
|
|
|
2488
2672
|
course: string;
|
|
2489
2673
|
teacher: string;
|
|
2490
2674
|
semester: string;
|
|
2491
|
-
occurrences:
|
|
2492
|
-
attendances:
|
|
2675
|
+
occurrences: string[];
|
|
2676
|
+
attendances: {
|
|
2677
|
+
student: string;
|
|
2678
|
+
states: AttendState[];
|
|
2679
|
+
editedBy?: string | undefined;
|
|
2680
|
+
createdAt?: string | undefined;
|
|
2681
|
+
updatedAt?: string | undefined;
|
|
2682
|
+
tuition?: {
|
|
2683
|
+
primary: number;
|
|
2684
|
+
textbook?: boolean | undefined;
|
|
2685
|
+
shipping?: boolean | undefined;
|
|
2686
|
+
} | undefined;
|
|
2687
|
+
paid?: boolean | undefined;
|
|
2688
|
+
campOption?: CampOption | undefined;
|
|
2689
|
+
_id?: string | undefined;
|
|
2690
|
+
}[];
|
|
2493
2691
|
scheduleData: {
|
|
2494
2692
|
startTime: string;
|
|
2495
2693
|
dayOfWeek: number;
|
|
@@ -2506,8 +2704,22 @@ declare const zGroupTracker: z.ZodObject<{
|
|
|
2506
2704
|
course: string;
|
|
2507
2705
|
teacher: string;
|
|
2508
2706
|
semester: string;
|
|
2509
|
-
occurrences:
|
|
2510
|
-
attendances:
|
|
2707
|
+
occurrences: string[];
|
|
2708
|
+
attendances: {
|
|
2709
|
+
student: string;
|
|
2710
|
+
states: AttendState[];
|
|
2711
|
+
editedBy?: string | undefined;
|
|
2712
|
+
createdAt?: string | undefined;
|
|
2713
|
+
updatedAt?: string | undefined;
|
|
2714
|
+
tuition?: {
|
|
2715
|
+
primary: number;
|
|
2716
|
+
textbook?: boolean | undefined;
|
|
2717
|
+
shipping?: boolean | undefined;
|
|
2718
|
+
} | undefined;
|
|
2719
|
+
paid?: boolean | undefined;
|
|
2720
|
+
campOption?: CampOption | undefined;
|
|
2721
|
+
_id?: string | undefined;
|
|
2722
|
+
}[];
|
|
2511
2723
|
scheduleData: {
|
|
2512
2724
|
startTime: string;
|
|
2513
2725
|
dayOfWeek: number;
|
|
@@ -2520,8 +2732,561 @@ declare const zGroupTracker: z.ZodObject<{
|
|
|
2520
2732
|
createdAt?: string | undefined;
|
|
2521
2733
|
updatedAt?: string | undefined;
|
|
2522
2734
|
}>;
|
|
2735
|
+
declare const zGroupTrackerResponse: z.ZodObject<{
|
|
2736
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
2737
|
+
_id: z.ZodString;
|
|
2738
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
2739
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2740
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2741
|
+
occurrences: z.ZodArray<z.ZodString, "many">;
|
|
2742
|
+
isNonPublic: z.ZodOptional<z.ZodBoolean>;
|
|
2743
|
+
scheduleData: z.ZodObject<{
|
|
2744
|
+
startTime: z.ZodString;
|
|
2745
|
+
dayOfWeek: z.ZodNumber;
|
|
2746
|
+
}, "strip", z.ZodTypeAny, {
|
|
2747
|
+
startTime: string;
|
|
2748
|
+
dayOfWeek: number;
|
|
2749
|
+
}, {
|
|
2750
|
+
startTime: string;
|
|
2751
|
+
dayOfWeek: number;
|
|
2752
|
+
}>;
|
|
2753
|
+
courseId: z.ZodOptional<z.ZodString>;
|
|
2754
|
+
ageGroup: z.ZodOptional<z.ZodNativeEnum<typeof AgeGroup>>;
|
|
2755
|
+
course: z.ZodObject<{
|
|
2756
|
+
name: z.ZodString;
|
|
2757
|
+
category: z.ZodNativeEnum<typeof CourseCategory>;
|
|
2758
|
+
duration: z.ZodNumber;
|
|
2759
|
+
price: z.ZodNumber;
|
|
2760
|
+
description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
2761
|
+
nyigSchool: z.ZodNativeEnum<typeof NYIGSchool>;
|
|
2762
|
+
recLevel: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
2763
|
+
halfCampTuition: z.ZodOptional<z.ZodNumber>;
|
|
2764
|
+
fullCampTuition: z.ZodOptional<z.ZodNumber>;
|
|
2765
|
+
superadminOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2766
|
+
_id: z.ZodString;
|
|
2767
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
2768
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2769
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2770
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2771
|
+
_id: string;
|
|
2772
|
+
name: string;
|
|
2773
|
+
category: CourseCategory;
|
|
2774
|
+
duration: number;
|
|
2775
|
+
price: number;
|
|
2776
|
+
nyigSchool: NYIGSchool;
|
|
2777
|
+
description?: string | undefined;
|
|
2778
|
+
recLevel?: string | undefined;
|
|
2779
|
+
halfCampTuition?: number | undefined;
|
|
2780
|
+
fullCampTuition?: number | undefined;
|
|
2781
|
+
superadminOnly?: boolean | undefined;
|
|
2782
|
+
editedBy?: string | undefined;
|
|
2783
|
+
createdAt?: string | undefined;
|
|
2784
|
+
updatedAt?: string | undefined;
|
|
2785
|
+
}, {
|
|
2786
|
+
_id: string;
|
|
2787
|
+
name: string;
|
|
2788
|
+
category: CourseCategory;
|
|
2789
|
+
duration: number;
|
|
2790
|
+
price: number;
|
|
2791
|
+
nyigSchool: NYIGSchool;
|
|
2792
|
+
description?: string | undefined;
|
|
2793
|
+
recLevel?: string | undefined;
|
|
2794
|
+
halfCampTuition?: number | undefined;
|
|
2795
|
+
fullCampTuition?: number | undefined;
|
|
2796
|
+
superadminOnly?: boolean | undefined;
|
|
2797
|
+
editedBy?: string | undefined;
|
|
2798
|
+
createdAt?: string | undefined;
|
|
2799
|
+
updatedAt?: string | undefined;
|
|
2800
|
+
}>;
|
|
2801
|
+
teacher: z.ZodObject<{
|
|
2802
|
+
rank: z.ZodNativeEnum<typeof GoRank>;
|
|
2803
|
+
email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
2804
|
+
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
2805
|
+
name: z.ZodString;
|
|
2806
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2807
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2808
|
+
roles: z.ZodOptional<z.ZodObject<{
|
|
2809
|
+
user: z.ZodNumber;
|
|
2810
|
+
admin: z.ZodOptional<z.ZodNumber>;
|
|
2811
|
+
superadmin: z.ZodOptional<z.ZodNumber>;
|
|
2812
|
+
}, "strip", z.ZodTypeAny, {
|
|
2813
|
+
user: number;
|
|
2814
|
+
admin?: number | undefined;
|
|
2815
|
+
superadmin?: number | undefined;
|
|
2816
|
+
}, {
|
|
2817
|
+
user: number;
|
|
2818
|
+
admin?: number | undefined;
|
|
2819
|
+
superadmin?: number | undefined;
|
|
2820
|
+
}>>;
|
|
2821
|
+
country: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
2822
|
+
phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
2823
|
+
birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
2824
|
+
shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
|
|
2825
|
+
isInactive: z.ZodOptional<z.ZodBoolean>;
|
|
2826
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2827
|
+
bio: z.ZodOptional<z.ZodString>;
|
|
2828
|
+
available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
|
|
2829
|
+
_id: z.ZodString;
|
|
2830
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
2831
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2832
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2833
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2834
|
+
rank: GoRank;
|
|
2835
|
+
_id: string;
|
|
2836
|
+
name: string;
|
|
2837
|
+
email?: string | undefined;
|
|
2838
|
+
address?: string | undefined;
|
|
2839
|
+
username?: string | undefined;
|
|
2840
|
+
password?: string | undefined;
|
|
2841
|
+
roles?: {
|
|
2842
|
+
user: number;
|
|
2843
|
+
admin?: number | undefined;
|
|
2844
|
+
superadmin?: number | undefined;
|
|
2845
|
+
} | undefined;
|
|
2846
|
+
country?: string | undefined;
|
|
2847
|
+
phoneNumber?: string | undefined;
|
|
2848
|
+
birthDate?: string | undefined;
|
|
2849
|
+
shouldChangePassword?: boolean | undefined;
|
|
2850
|
+
isInactive?: boolean | undefined;
|
|
2851
|
+
title?: string | undefined;
|
|
2852
|
+
bio?: string | undefined;
|
|
2853
|
+
available?: number[][][] | undefined;
|
|
2854
|
+
editedBy?: string | undefined;
|
|
2855
|
+
createdAt?: string | undefined;
|
|
2856
|
+
updatedAt?: string | undefined;
|
|
2857
|
+
}, {
|
|
2858
|
+
rank: GoRank;
|
|
2859
|
+
_id: string;
|
|
2860
|
+
name: string;
|
|
2861
|
+
email?: string | undefined;
|
|
2862
|
+
address?: string | undefined;
|
|
2863
|
+
username?: string | undefined;
|
|
2864
|
+
password?: string | undefined;
|
|
2865
|
+
roles?: {
|
|
2866
|
+
user: number;
|
|
2867
|
+
admin?: number | undefined;
|
|
2868
|
+
superadmin?: number | undefined;
|
|
2869
|
+
} | undefined;
|
|
2870
|
+
country?: string | undefined;
|
|
2871
|
+
phoneNumber?: string | undefined;
|
|
2872
|
+
birthDate?: string | undefined;
|
|
2873
|
+
shouldChangePassword?: boolean | undefined;
|
|
2874
|
+
isInactive?: boolean | undefined;
|
|
2875
|
+
title?: string | undefined;
|
|
2876
|
+
bio?: string | undefined;
|
|
2877
|
+
available?: number[][][] | undefined;
|
|
2878
|
+
editedBy?: string | undefined;
|
|
2879
|
+
createdAt?: string | undefined;
|
|
2880
|
+
updatedAt?: string | undefined;
|
|
2881
|
+
}>;
|
|
2882
|
+
semester: z.ZodObject<{
|
|
2883
|
+
season: z.ZodNativeEnum<typeof Season>;
|
|
2884
|
+
year: z.ZodNumber;
|
|
2885
|
+
startDate: z.ZodDate;
|
|
2886
|
+
endDate: z.ZodDate;
|
|
2887
|
+
blackoutDates: z.ZodArray<z.ZodDate, "many">;
|
|
2888
|
+
importantDates: z.ZodArray<z.ZodString, "many">;
|
|
2889
|
+
_id: z.ZodString;
|
|
2890
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
2891
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2892
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2893
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2894
|
+
_id: string;
|
|
2895
|
+
season: Season;
|
|
2896
|
+
year: number;
|
|
2897
|
+
startDate: Date;
|
|
2898
|
+
endDate: Date;
|
|
2899
|
+
blackoutDates: Date[];
|
|
2900
|
+
importantDates: string[];
|
|
2901
|
+
editedBy?: string | undefined;
|
|
2902
|
+
createdAt?: string | undefined;
|
|
2903
|
+
updatedAt?: string | undefined;
|
|
2904
|
+
}, {
|
|
2905
|
+
_id: string;
|
|
2906
|
+
season: Season;
|
|
2907
|
+
year: number;
|
|
2908
|
+
startDate: Date;
|
|
2909
|
+
endDate: Date;
|
|
2910
|
+
blackoutDates: Date[];
|
|
2911
|
+
importantDates: string[];
|
|
2912
|
+
editedBy?: string | undefined;
|
|
2913
|
+
createdAt?: string | undefined;
|
|
2914
|
+
updatedAt?: string | undefined;
|
|
2915
|
+
}>;
|
|
2916
|
+
attendances: z.ZodArray<z.ZodObject<{
|
|
2917
|
+
_id: z.ZodString;
|
|
2918
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
2919
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2920
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2921
|
+
states: z.ZodArray<z.ZodNativeEnum<typeof AttendState>, "many">;
|
|
2922
|
+
tuition: z.ZodOptional<z.ZodObject<{
|
|
2923
|
+
primary: z.ZodNumber;
|
|
2924
|
+
textbook: z.ZodOptional<z.ZodBoolean>;
|
|
2925
|
+
shipping: z.ZodOptional<z.ZodBoolean>;
|
|
2926
|
+
}, "strip", z.ZodTypeAny, {
|
|
2927
|
+
primary: number;
|
|
2928
|
+
textbook?: boolean | undefined;
|
|
2929
|
+
shipping?: boolean | undefined;
|
|
2930
|
+
}, {
|
|
2931
|
+
primary: number;
|
|
2932
|
+
textbook?: boolean | undefined;
|
|
2933
|
+
shipping?: boolean | undefined;
|
|
2934
|
+
}>>;
|
|
2935
|
+
paid: z.ZodOptional<z.ZodBoolean>;
|
|
2936
|
+
campOption: z.ZodOptional<z.ZodNativeEnum<typeof CampOption>>;
|
|
2937
|
+
student: z.ZodObject<{
|
|
2938
|
+
rank: z.ZodNativeEnum<typeof GoRank>;
|
|
2939
|
+
email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
2940
|
+
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
2941
|
+
name: z.ZodString;
|
|
2942
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2943
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2944
|
+
roles: z.ZodOptional<z.ZodObject<{
|
|
2945
|
+
user: z.ZodNumber;
|
|
2946
|
+
admin: z.ZodOptional<z.ZodNumber>;
|
|
2947
|
+
superadmin: z.ZodOptional<z.ZodNumber>;
|
|
2948
|
+
}, "strip", z.ZodTypeAny, {
|
|
2949
|
+
user: number;
|
|
2950
|
+
admin?: number | undefined;
|
|
2951
|
+
superadmin?: number | undefined;
|
|
2952
|
+
}, {
|
|
2953
|
+
user: number;
|
|
2954
|
+
admin?: number | undefined;
|
|
2955
|
+
superadmin?: number | undefined;
|
|
2956
|
+
}>>;
|
|
2957
|
+
country: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
2958
|
+
phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
2959
|
+
birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
2960
|
+
shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
|
|
2961
|
+
guardian: z.ZodOptional<z.ZodString>;
|
|
2962
|
+
_id: z.ZodString;
|
|
2963
|
+
editedBy: z.ZodOptional<z.ZodString>;
|
|
2964
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
2965
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
2966
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2967
|
+
rank: GoRank;
|
|
2968
|
+
_id: string;
|
|
2969
|
+
name: string;
|
|
2970
|
+
email?: string | undefined;
|
|
2971
|
+
address?: string | undefined;
|
|
2972
|
+
username?: string | undefined;
|
|
2973
|
+
password?: string | undefined;
|
|
2974
|
+
roles?: {
|
|
2975
|
+
user: number;
|
|
2976
|
+
admin?: number | undefined;
|
|
2977
|
+
superadmin?: number | undefined;
|
|
2978
|
+
} | undefined;
|
|
2979
|
+
country?: string | undefined;
|
|
2980
|
+
phoneNumber?: string | undefined;
|
|
2981
|
+
birthDate?: string | undefined;
|
|
2982
|
+
shouldChangePassword?: boolean | undefined;
|
|
2983
|
+
guardian?: string | undefined;
|
|
2984
|
+
editedBy?: string | undefined;
|
|
2985
|
+
createdAt?: string | undefined;
|
|
2986
|
+
updatedAt?: string | undefined;
|
|
2987
|
+
}, {
|
|
2988
|
+
rank: GoRank;
|
|
2989
|
+
_id: string;
|
|
2990
|
+
name: string;
|
|
2991
|
+
email?: string | undefined;
|
|
2992
|
+
address?: string | undefined;
|
|
2993
|
+
username?: string | undefined;
|
|
2994
|
+
password?: string | undefined;
|
|
2995
|
+
roles?: {
|
|
2996
|
+
user: number;
|
|
2997
|
+
admin?: number | undefined;
|
|
2998
|
+
superadmin?: number | undefined;
|
|
2999
|
+
} | undefined;
|
|
3000
|
+
country?: string | undefined;
|
|
3001
|
+
phoneNumber?: string | undefined;
|
|
3002
|
+
birthDate?: string | undefined;
|
|
3003
|
+
shouldChangePassword?: boolean | undefined;
|
|
3004
|
+
guardian?: string | undefined;
|
|
3005
|
+
editedBy?: string | undefined;
|
|
3006
|
+
createdAt?: string | undefined;
|
|
3007
|
+
updatedAt?: string | undefined;
|
|
3008
|
+
}>;
|
|
3009
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
3010
|
+
_id: string;
|
|
3011
|
+
student: {
|
|
3012
|
+
rank: GoRank;
|
|
3013
|
+
_id: string;
|
|
3014
|
+
name: string;
|
|
3015
|
+
email?: string | undefined;
|
|
3016
|
+
address?: string | undefined;
|
|
3017
|
+
username?: string | undefined;
|
|
3018
|
+
password?: string | undefined;
|
|
3019
|
+
roles?: {
|
|
3020
|
+
user: number;
|
|
3021
|
+
admin?: number | undefined;
|
|
3022
|
+
superadmin?: number | undefined;
|
|
3023
|
+
} | undefined;
|
|
3024
|
+
country?: string | undefined;
|
|
3025
|
+
phoneNumber?: string | undefined;
|
|
3026
|
+
birthDate?: string | undefined;
|
|
3027
|
+
shouldChangePassword?: boolean | undefined;
|
|
3028
|
+
guardian?: string | undefined;
|
|
3029
|
+
editedBy?: string | undefined;
|
|
3030
|
+
createdAt?: string | undefined;
|
|
3031
|
+
updatedAt?: string | undefined;
|
|
3032
|
+
};
|
|
3033
|
+
states: AttendState[];
|
|
3034
|
+
editedBy?: string | undefined;
|
|
3035
|
+
createdAt?: string | undefined;
|
|
3036
|
+
updatedAt?: string | undefined;
|
|
3037
|
+
tuition?: {
|
|
3038
|
+
primary: number;
|
|
3039
|
+
textbook?: boolean | undefined;
|
|
3040
|
+
shipping?: boolean | undefined;
|
|
3041
|
+
} | undefined;
|
|
3042
|
+
paid?: boolean | undefined;
|
|
3043
|
+
campOption?: CampOption | undefined;
|
|
3044
|
+
}, {
|
|
3045
|
+
_id: string;
|
|
3046
|
+
student: {
|
|
3047
|
+
rank: GoRank;
|
|
3048
|
+
_id: string;
|
|
3049
|
+
name: string;
|
|
3050
|
+
email?: string | undefined;
|
|
3051
|
+
address?: string | undefined;
|
|
3052
|
+
username?: string | undefined;
|
|
3053
|
+
password?: string | undefined;
|
|
3054
|
+
roles?: {
|
|
3055
|
+
user: number;
|
|
3056
|
+
admin?: number | undefined;
|
|
3057
|
+
superadmin?: number | undefined;
|
|
3058
|
+
} | undefined;
|
|
3059
|
+
country?: string | undefined;
|
|
3060
|
+
phoneNumber?: string | undefined;
|
|
3061
|
+
birthDate?: string | undefined;
|
|
3062
|
+
shouldChangePassword?: boolean | undefined;
|
|
3063
|
+
guardian?: string | undefined;
|
|
3064
|
+
editedBy?: string | undefined;
|
|
3065
|
+
createdAt?: string | undefined;
|
|
3066
|
+
updatedAt?: string | undefined;
|
|
3067
|
+
};
|
|
3068
|
+
states: AttendState[];
|
|
3069
|
+
editedBy?: string | undefined;
|
|
3070
|
+
createdAt?: string | undefined;
|
|
3071
|
+
updatedAt?: string | undefined;
|
|
3072
|
+
tuition?: {
|
|
3073
|
+
primary: number;
|
|
3074
|
+
textbook?: boolean | undefined;
|
|
3075
|
+
shipping?: boolean | undefined;
|
|
3076
|
+
} | undefined;
|
|
3077
|
+
paid?: boolean | undefined;
|
|
3078
|
+
campOption?: CampOption | undefined;
|
|
3079
|
+
}>, "many">;
|
|
3080
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
3081
|
+
_id: string;
|
|
3082
|
+
course: {
|
|
3083
|
+
_id: string;
|
|
3084
|
+
name: string;
|
|
3085
|
+
category: CourseCategory;
|
|
3086
|
+
duration: number;
|
|
3087
|
+
price: number;
|
|
3088
|
+
nyigSchool: NYIGSchool;
|
|
3089
|
+
description?: string | undefined;
|
|
3090
|
+
recLevel?: string | undefined;
|
|
3091
|
+
halfCampTuition?: number | undefined;
|
|
3092
|
+
fullCampTuition?: number | undefined;
|
|
3093
|
+
superadminOnly?: boolean | undefined;
|
|
3094
|
+
editedBy?: string | undefined;
|
|
3095
|
+
createdAt?: string | undefined;
|
|
3096
|
+
updatedAt?: string | undefined;
|
|
3097
|
+
};
|
|
3098
|
+
teacher: {
|
|
3099
|
+
rank: GoRank;
|
|
3100
|
+
_id: string;
|
|
3101
|
+
name: string;
|
|
3102
|
+
email?: string | undefined;
|
|
3103
|
+
address?: string | undefined;
|
|
3104
|
+
username?: string | undefined;
|
|
3105
|
+
password?: string | undefined;
|
|
3106
|
+
roles?: {
|
|
3107
|
+
user: number;
|
|
3108
|
+
admin?: number | undefined;
|
|
3109
|
+
superadmin?: number | undefined;
|
|
3110
|
+
} | undefined;
|
|
3111
|
+
country?: string | undefined;
|
|
3112
|
+
phoneNumber?: string | undefined;
|
|
3113
|
+
birthDate?: string | undefined;
|
|
3114
|
+
shouldChangePassword?: boolean | undefined;
|
|
3115
|
+
isInactive?: boolean | undefined;
|
|
3116
|
+
title?: string | undefined;
|
|
3117
|
+
bio?: string | undefined;
|
|
3118
|
+
available?: number[][][] | undefined;
|
|
3119
|
+
editedBy?: string | undefined;
|
|
3120
|
+
createdAt?: string | undefined;
|
|
3121
|
+
updatedAt?: string | undefined;
|
|
3122
|
+
};
|
|
3123
|
+
semester: {
|
|
3124
|
+
_id: string;
|
|
3125
|
+
season: Season;
|
|
3126
|
+
year: number;
|
|
3127
|
+
startDate: Date;
|
|
3128
|
+
endDate: Date;
|
|
3129
|
+
blackoutDates: Date[];
|
|
3130
|
+
importantDates: string[];
|
|
3131
|
+
editedBy?: string | undefined;
|
|
3132
|
+
createdAt?: string | undefined;
|
|
3133
|
+
updatedAt?: string | undefined;
|
|
3134
|
+
};
|
|
3135
|
+
occurrences: string[];
|
|
3136
|
+
attendances: {
|
|
3137
|
+
_id: string;
|
|
3138
|
+
student: {
|
|
3139
|
+
rank: GoRank;
|
|
3140
|
+
_id: string;
|
|
3141
|
+
name: string;
|
|
3142
|
+
email?: string | undefined;
|
|
3143
|
+
address?: string | undefined;
|
|
3144
|
+
username?: string | undefined;
|
|
3145
|
+
password?: string | undefined;
|
|
3146
|
+
roles?: {
|
|
3147
|
+
user: number;
|
|
3148
|
+
admin?: number | undefined;
|
|
3149
|
+
superadmin?: number | undefined;
|
|
3150
|
+
} | undefined;
|
|
3151
|
+
country?: string | undefined;
|
|
3152
|
+
phoneNumber?: string | undefined;
|
|
3153
|
+
birthDate?: string | undefined;
|
|
3154
|
+
shouldChangePassword?: boolean | undefined;
|
|
3155
|
+
guardian?: string | undefined;
|
|
3156
|
+
editedBy?: string | undefined;
|
|
3157
|
+
createdAt?: string | undefined;
|
|
3158
|
+
updatedAt?: string | undefined;
|
|
3159
|
+
};
|
|
3160
|
+
states: AttendState[];
|
|
3161
|
+
editedBy?: string | undefined;
|
|
3162
|
+
createdAt?: string | undefined;
|
|
3163
|
+
updatedAt?: string | undefined;
|
|
3164
|
+
tuition?: {
|
|
3165
|
+
primary: number;
|
|
3166
|
+
textbook?: boolean | undefined;
|
|
3167
|
+
shipping?: boolean | undefined;
|
|
3168
|
+
} | undefined;
|
|
3169
|
+
paid?: boolean | undefined;
|
|
3170
|
+
campOption?: CampOption | undefined;
|
|
3171
|
+
}[];
|
|
3172
|
+
scheduleData: {
|
|
3173
|
+
startTime: string;
|
|
3174
|
+
dayOfWeek: number;
|
|
3175
|
+
};
|
|
3176
|
+
notes?: string | undefined;
|
|
3177
|
+
editedBy?: string | undefined;
|
|
3178
|
+
createdAt?: string | undefined;
|
|
3179
|
+
updatedAt?: string | undefined;
|
|
3180
|
+
isNonPublic?: boolean | undefined;
|
|
3181
|
+
courseId?: string | undefined;
|
|
3182
|
+
ageGroup?: AgeGroup | undefined;
|
|
3183
|
+
}, {
|
|
3184
|
+
_id: string;
|
|
3185
|
+
course: {
|
|
3186
|
+
_id: string;
|
|
3187
|
+
name: string;
|
|
3188
|
+
category: CourseCategory;
|
|
3189
|
+
duration: number;
|
|
3190
|
+
price: number;
|
|
3191
|
+
nyigSchool: NYIGSchool;
|
|
3192
|
+
description?: string | undefined;
|
|
3193
|
+
recLevel?: string | undefined;
|
|
3194
|
+
halfCampTuition?: number | undefined;
|
|
3195
|
+
fullCampTuition?: number | undefined;
|
|
3196
|
+
superadminOnly?: boolean | undefined;
|
|
3197
|
+
editedBy?: string | undefined;
|
|
3198
|
+
createdAt?: string | undefined;
|
|
3199
|
+
updatedAt?: string | undefined;
|
|
3200
|
+
};
|
|
3201
|
+
teacher: {
|
|
3202
|
+
rank: GoRank;
|
|
3203
|
+
_id: string;
|
|
3204
|
+
name: string;
|
|
3205
|
+
email?: string | undefined;
|
|
3206
|
+
address?: string | undefined;
|
|
3207
|
+
username?: string | undefined;
|
|
3208
|
+
password?: string | undefined;
|
|
3209
|
+
roles?: {
|
|
3210
|
+
user: number;
|
|
3211
|
+
admin?: number | undefined;
|
|
3212
|
+
superadmin?: number | undefined;
|
|
3213
|
+
} | undefined;
|
|
3214
|
+
country?: string | undefined;
|
|
3215
|
+
phoneNumber?: string | undefined;
|
|
3216
|
+
birthDate?: string | undefined;
|
|
3217
|
+
shouldChangePassword?: boolean | undefined;
|
|
3218
|
+
isInactive?: boolean | undefined;
|
|
3219
|
+
title?: string | undefined;
|
|
3220
|
+
bio?: string | undefined;
|
|
3221
|
+
available?: number[][][] | undefined;
|
|
3222
|
+
editedBy?: string | undefined;
|
|
3223
|
+
createdAt?: string | undefined;
|
|
3224
|
+
updatedAt?: string | undefined;
|
|
3225
|
+
};
|
|
3226
|
+
semester: {
|
|
3227
|
+
_id: string;
|
|
3228
|
+
season: Season;
|
|
3229
|
+
year: number;
|
|
3230
|
+
startDate: Date;
|
|
3231
|
+
endDate: Date;
|
|
3232
|
+
blackoutDates: Date[];
|
|
3233
|
+
importantDates: string[];
|
|
3234
|
+
editedBy?: string | undefined;
|
|
3235
|
+
createdAt?: string | undefined;
|
|
3236
|
+
updatedAt?: string | undefined;
|
|
3237
|
+
};
|
|
3238
|
+
occurrences: string[];
|
|
3239
|
+
attendances: {
|
|
3240
|
+
_id: string;
|
|
3241
|
+
student: {
|
|
3242
|
+
rank: GoRank;
|
|
3243
|
+
_id: string;
|
|
3244
|
+
name: string;
|
|
3245
|
+
email?: string | undefined;
|
|
3246
|
+
address?: string | undefined;
|
|
3247
|
+
username?: string | undefined;
|
|
3248
|
+
password?: string | undefined;
|
|
3249
|
+
roles?: {
|
|
3250
|
+
user: number;
|
|
3251
|
+
admin?: number | undefined;
|
|
3252
|
+
superadmin?: number | undefined;
|
|
3253
|
+
} | undefined;
|
|
3254
|
+
country?: string | undefined;
|
|
3255
|
+
phoneNumber?: string | undefined;
|
|
3256
|
+
birthDate?: string | undefined;
|
|
3257
|
+
shouldChangePassword?: boolean | undefined;
|
|
3258
|
+
guardian?: string | undefined;
|
|
3259
|
+
editedBy?: string | undefined;
|
|
3260
|
+
createdAt?: string | undefined;
|
|
3261
|
+
updatedAt?: string | undefined;
|
|
3262
|
+
};
|
|
3263
|
+
states: AttendState[];
|
|
3264
|
+
editedBy?: string | undefined;
|
|
3265
|
+
createdAt?: string | undefined;
|
|
3266
|
+
updatedAt?: string | undefined;
|
|
3267
|
+
tuition?: {
|
|
3268
|
+
primary: number;
|
|
3269
|
+
textbook?: boolean | undefined;
|
|
3270
|
+
shipping?: boolean | undefined;
|
|
3271
|
+
} | undefined;
|
|
3272
|
+
paid?: boolean | undefined;
|
|
3273
|
+
campOption?: CampOption | undefined;
|
|
3274
|
+
}[];
|
|
3275
|
+
scheduleData: {
|
|
3276
|
+
startTime: string;
|
|
3277
|
+
dayOfWeek: number;
|
|
3278
|
+
};
|
|
3279
|
+
notes?: string | undefined;
|
|
3280
|
+
editedBy?: string | undefined;
|
|
3281
|
+
createdAt?: string | undefined;
|
|
3282
|
+
updatedAt?: string | undefined;
|
|
3283
|
+
isNonPublic?: boolean | undefined;
|
|
3284
|
+
courseId?: string | undefined;
|
|
3285
|
+
ageGroup?: AgeGroup | undefined;
|
|
3286
|
+
}>;
|
|
2523
3287
|
type BGroupTracker = z.infer<typeof zBGroupTracker>;
|
|
2524
3288
|
type GroupTracker = z.infer<typeof zGroupTracker>;
|
|
3289
|
+
type GroupTrackerResponse = z.infer<typeof zGroupTrackerResponse>;
|
|
2525
3290
|
|
|
2526
3291
|
declare const zScheduleData: z.ZodObject<{
|
|
2527
3292
|
startTime: z.ZodString;
|
|
@@ -5358,4 +6123,4 @@ declare const zEventTicket: z.ZodObject<{
|
|
|
5358
6123
|
type BEventTicket = z.infer<typeof zBEventTicket>;
|
|
5359
6124
|
type EventTicket = z.infer<typeof zEventTicket>;
|
|
5360
6125
|
|
|
5361
|
-
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
|
|
6126
|
+
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 CampTrackerResponse, type ChangePasswordRequest, type ClassTimesInput, 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 GroupTrackerResponse, 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 TrackerCreate, 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, zCampTrackerResponse, zChangePasswordRequest, zClassTracker, zClassTrackerResponse, zCourse, zCourseTable, zCreateAdminAccountRequest, zDetailsTable, zDiscount, zEventConfig, zEventConfigResponse, zEventReg, zEventRegResponse, zEventTicket, zEventTicketReg, zEventTicketRegResponse, zGroupBooking, zGroupTracker, zGroupTrackerResponse, zImageDef, zInvoice, zInvoiceItem, zInvoicePackage, zInvoicePackageResponse, zInvoiceResponse, zLoginRequest, zLoginResponse, zPrivateBooking, zReportTicket, zReportTicketResponse, zScheduleData, zScheduleTable, zSemester, zStudent, zTeacher, zTeacherDisplay, zTeacherPayment, zTeacherPaymentResponse, zTeacherPaymentRow, zTrackerCreate, zTuition, zUser, zUserRoles };
|