@nyig/models 0.6.4 → 0.6.6
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 +145 -221
- package/index.d.ts +145 -221
- package/index.js +104 -91
- package/index.mjs +104 -91
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -48,6 +48,7 @@ declare const zBUserInfo: z.ZodObject<{
|
|
|
48
48
|
showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
|
|
49
49
|
participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
|
|
50
50
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
|
51
|
+
profileId: z.ZodOptional<z.ZodString>;
|
|
51
52
|
}, "strip", z.ZodTypeAny, {
|
|
52
53
|
firstName: string;
|
|
53
54
|
lastName: string;
|
|
@@ -62,6 +63,7 @@ declare const zBUserInfo: z.ZodObject<{
|
|
|
62
63
|
showOnWhoIsComing?: boolean | undefined;
|
|
63
64
|
participateAs?: "adult" | "youth" | undefined;
|
|
64
65
|
dateOfBirth?: string | undefined;
|
|
66
|
+
profileId?: string | undefined;
|
|
65
67
|
}, {
|
|
66
68
|
firstName: string;
|
|
67
69
|
lastName: string;
|
|
@@ -76,6 +78,7 @@ declare const zBUserInfo: z.ZodObject<{
|
|
|
76
78
|
showOnWhoIsComing?: boolean | undefined;
|
|
77
79
|
participateAs?: "adult" | "youth" | undefined;
|
|
78
80
|
dateOfBirth?: string | undefined;
|
|
81
|
+
profileId?: string | undefined;
|
|
79
82
|
}>;
|
|
80
83
|
type BUserInfo = z.infer<typeof zBUserInfo>;
|
|
81
84
|
|
|
@@ -271,8 +274,6 @@ declare const zAttendanceResponse: z.ZodObject<{
|
|
|
271
274
|
} & {
|
|
272
275
|
student: z.ZodObject<{
|
|
273
276
|
name: z.ZodString;
|
|
274
|
-
username: z.ZodOptional<z.ZodString>;
|
|
275
|
-
password: z.ZodOptional<z.ZodString>;
|
|
276
277
|
roles: z.ZodOptional<z.ZodObject<{
|
|
277
278
|
user: z.ZodNumber;
|
|
278
279
|
admin: z.ZodOptional<z.ZodNumber>;
|
|
@@ -358,8 +359,6 @@ declare const zAttendanceResponse: z.ZodObject<{
|
|
|
358
359
|
updatedAt?: string | undefined;
|
|
359
360
|
phoneNumber?: string | undefined;
|
|
360
361
|
birthDate?: string | undefined;
|
|
361
|
-
username?: string | undefined;
|
|
362
|
-
password?: string | undefined;
|
|
363
362
|
roles?: {
|
|
364
363
|
user: number;
|
|
365
364
|
admin?: number | undefined;
|
|
@@ -395,8 +394,6 @@ declare const zAttendanceResponse: z.ZodObject<{
|
|
|
395
394
|
updatedAt?: string | undefined;
|
|
396
395
|
phoneNumber?: string | undefined;
|
|
397
396
|
birthDate?: string | undefined;
|
|
398
|
-
username?: string | undefined;
|
|
399
|
-
password?: string | undefined;
|
|
400
397
|
roles?: {
|
|
401
398
|
user: number;
|
|
402
399
|
admin?: number | undefined;
|
|
@@ -435,8 +432,6 @@ declare const zAttendanceResponse: z.ZodObject<{
|
|
|
435
432
|
updatedAt?: string | undefined;
|
|
436
433
|
phoneNumber?: string | undefined;
|
|
437
434
|
birthDate?: string | undefined;
|
|
438
|
-
username?: string | undefined;
|
|
439
|
-
password?: string | undefined;
|
|
440
435
|
roles?: {
|
|
441
436
|
user: number;
|
|
442
437
|
admin?: number | undefined;
|
|
@@ -486,8 +481,6 @@ declare const zAttendanceResponse: z.ZodObject<{
|
|
|
486
481
|
updatedAt?: string | undefined;
|
|
487
482
|
phoneNumber?: string | undefined;
|
|
488
483
|
birthDate?: string | undefined;
|
|
489
|
-
username?: string | undefined;
|
|
490
|
-
password?: string | undefined;
|
|
491
484
|
roles?: {
|
|
492
485
|
user: number;
|
|
493
486
|
admin?: number | undefined;
|
|
@@ -785,7 +778,8 @@ declare const zCampTrackerResponse: z.ZodObject<{
|
|
|
785
778
|
duration: z.ZodNumber;
|
|
786
779
|
price: z.ZodNumber;
|
|
787
780
|
description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
788
|
-
nyigSchool: z.ZodNativeEnum<typeof NYIGSchool
|
|
781
|
+
nyigSchool: z.ZodOptional<z.ZodNativeEnum<typeof NYIGSchool>>;
|
|
782
|
+
schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
|
|
789
783
|
recLevel: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
790
784
|
halfCampTuition: z.ZodOptional<z.ZodNumber>;
|
|
791
785
|
fullCampTuition: z.ZodOptional<z.ZodNumber>;
|
|
@@ -801,11 +795,12 @@ declare const zCampTrackerResponse: z.ZodObject<{
|
|
|
801
795
|
category: CourseCategory;
|
|
802
796
|
duration: number;
|
|
803
797
|
price: number;
|
|
804
|
-
nyigSchool: NYIGSchool;
|
|
805
798
|
editedBy?: string | undefined;
|
|
806
799
|
createdAt?: string | undefined;
|
|
807
800
|
updatedAt?: string | undefined;
|
|
808
801
|
description?: string | undefined;
|
|
802
|
+
nyigSchool?: NYIGSchool | undefined;
|
|
803
|
+
schools?: NYIGSchool[] | undefined;
|
|
809
804
|
recLevel?: string | undefined;
|
|
810
805
|
halfCampTuition?: number | undefined;
|
|
811
806
|
fullCampTuition?: number | undefined;
|
|
@@ -816,11 +811,12 @@ declare const zCampTrackerResponse: z.ZodObject<{
|
|
|
816
811
|
category: CourseCategory;
|
|
817
812
|
duration: number;
|
|
818
813
|
price: number;
|
|
819
|
-
nyigSchool: NYIGSchool;
|
|
820
814
|
editedBy?: string | undefined;
|
|
821
815
|
createdAt?: string | undefined;
|
|
822
816
|
updatedAt?: string | undefined;
|
|
823
817
|
description?: string | undefined;
|
|
818
|
+
nyigSchool?: NYIGSchool | undefined;
|
|
819
|
+
schools?: NYIGSchool[] | undefined;
|
|
824
820
|
recLevel?: string | undefined;
|
|
825
821
|
halfCampTuition?: number | undefined;
|
|
826
822
|
fullCampTuition?: number | undefined;
|
|
@@ -828,8 +824,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
|
|
|
828
824
|
}>;
|
|
829
825
|
teachers: z.ZodArray<z.ZodObject<{
|
|
830
826
|
name: z.ZodString;
|
|
831
|
-
username: z.ZodOptional<z.ZodString>;
|
|
832
|
-
password: z.ZodOptional<z.ZodString>;
|
|
833
827
|
roles: z.ZodOptional<z.ZodObject<{
|
|
834
828
|
user: z.ZodNumber;
|
|
835
829
|
admin: z.ZodOptional<z.ZodNumber>;
|
|
@@ -904,6 +898,7 @@ declare const zCampTrackerResponse: z.ZodObject<{
|
|
|
904
898
|
bio: z.ZodOptional<z.ZodString>;
|
|
905
899
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
906
900
|
available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
|
|
901
|
+
schools: z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">;
|
|
907
902
|
} & {
|
|
908
903
|
_id: z.ZodString;
|
|
909
904
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
@@ -913,6 +908,7 @@ declare const zCampTrackerResponse: z.ZodObject<{
|
|
|
913
908
|
rank: GoRank;
|
|
914
909
|
_id: string;
|
|
915
910
|
name: string;
|
|
911
|
+
schools: NYIGSchool[];
|
|
916
912
|
email?: string | undefined;
|
|
917
913
|
address?: string | undefined;
|
|
918
914
|
editedBy?: string | undefined;
|
|
@@ -920,8 +916,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
|
|
|
920
916
|
updatedAt?: string | undefined;
|
|
921
917
|
phoneNumber?: string | undefined;
|
|
922
918
|
birthDate?: string | undefined;
|
|
923
|
-
username?: string | undefined;
|
|
924
|
-
password?: string | undefined;
|
|
925
919
|
roles?: {
|
|
926
920
|
user: number;
|
|
927
921
|
admin?: number | undefined;
|
|
@@ -955,6 +949,7 @@ declare const zCampTrackerResponse: z.ZodObject<{
|
|
|
955
949
|
rank: GoRank;
|
|
956
950
|
_id: string;
|
|
957
951
|
name: string;
|
|
952
|
+
schools: NYIGSchool[];
|
|
958
953
|
email?: string | undefined;
|
|
959
954
|
address?: string | undefined;
|
|
960
955
|
editedBy?: string | undefined;
|
|
@@ -962,8 +957,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
|
|
|
962
957
|
updatedAt?: string | undefined;
|
|
963
958
|
phoneNumber?: string | undefined;
|
|
964
959
|
birthDate?: string | undefined;
|
|
965
|
-
username?: string | undefined;
|
|
966
|
-
password?: string | undefined;
|
|
967
960
|
roles?: {
|
|
968
961
|
user: number;
|
|
969
962
|
admin?: number | undefined;
|
|
@@ -1053,8 +1046,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
|
|
|
1053
1046
|
} & {
|
|
1054
1047
|
student: z.ZodObject<{
|
|
1055
1048
|
name: z.ZodString;
|
|
1056
|
-
username: z.ZodOptional<z.ZodString>;
|
|
1057
|
-
password: z.ZodOptional<z.ZodString>;
|
|
1058
1049
|
roles: z.ZodOptional<z.ZodObject<{
|
|
1059
1050
|
user: z.ZodNumber;
|
|
1060
1051
|
admin: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1140,8 +1131,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
|
|
|
1140
1131
|
updatedAt?: string | undefined;
|
|
1141
1132
|
phoneNumber?: string | undefined;
|
|
1142
1133
|
birthDate?: string | undefined;
|
|
1143
|
-
username?: string | undefined;
|
|
1144
|
-
password?: string | undefined;
|
|
1145
1134
|
roles?: {
|
|
1146
1135
|
user: number;
|
|
1147
1136
|
admin?: number | undefined;
|
|
@@ -1177,8 +1166,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
|
|
|
1177
1166
|
updatedAt?: string | undefined;
|
|
1178
1167
|
phoneNumber?: string | undefined;
|
|
1179
1168
|
birthDate?: string | undefined;
|
|
1180
|
-
username?: string | undefined;
|
|
1181
|
-
password?: string | undefined;
|
|
1182
1169
|
roles?: {
|
|
1183
1170
|
user: number;
|
|
1184
1171
|
admin?: number | undefined;
|
|
@@ -1217,8 +1204,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
|
|
|
1217
1204
|
updatedAt?: string | undefined;
|
|
1218
1205
|
phoneNumber?: string | undefined;
|
|
1219
1206
|
birthDate?: string | undefined;
|
|
1220
|
-
username?: string | undefined;
|
|
1221
|
-
password?: string | undefined;
|
|
1222
1207
|
roles?: {
|
|
1223
1208
|
user: number;
|
|
1224
1209
|
admin?: number | undefined;
|
|
@@ -1268,8 +1253,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
|
|
|
1268
1253
|
updatedAt?: string | undefined;
|
|
1269
1254
|
phoneNumber?: string | undefined;
|
|
1270
1255
|
birthDate?: string | undefined;
|
|
1271
|
-
username?: string | undefined;
|
|
1272
|
-
password?: string | undefined;
|
|
1273
1256
|
roles?: {
|
|
1274
1257
|
user: number;
|
|
1275
1258
|
admin?: number | undefined;
|
|
@@ -1315,11 +1298,12 @@ declare const zCampTrackerResponse: z.ZodObject<{
|
|
|
1315
1298
|
category: CourseCategory;
|
|
1316
1299
|
duration: number;
|
|
1317
1300
|
price: number;
|
|
1318
|
-
nyigSchool: NYIGSchool;
|
|
1319
1301
|
editedBy?: string | undefined;
|
|
1320
1302
|
createdAt?: string | undefined;
|
|
1321
1303
|
updatedAt?: string | undefined;
|
|
1322
1304
|
description?: string | undefined;
|
|
1305
|
+
nyigSchool?: NYIGSchool | undefined;
|
|
1306
|
+
schools?: NYIGSchool[] | undefined;
|
|
1323
1307
|
recLevel?: string | undefined;
|
|
1324
1308
|
halfCampTuition?: number | undefined;
|
|
1325
1309
|
fullCampTuition?: number | undefined;
|
|
@@ -1329,6 +1313,7 @@ declare const zCampTrackerResponse: z.ZodObject<{
|
|
|
1329
1313
|
rank: GoRank;
|
|
1330
1314
|
_id: string;
|
|
1331
1315
|
name: string;
|
|
1316
|
+
schools: NYIGSchool[];
|
|
1332
1317
|
email?: string | undefined;
|
|
1333
1318
|
address?: string | undefined;
|
|
1334
1319
|
editedBy?: string | undefined;
|
|
@@ -1336,8 +1321,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
|
|
|
1336
1321
|
updatedAt?: string | undefined;
|
|
1337
1322
|
phoneNumber?: string | undefined;
|
|
1338
1323
|
birthDate?: string | undefined;
|
|
1339
|
-
username?: string | undefined;
|
|
1340
|
-
password?: string | undefined;
|
|
1341
1324
|
roles?: {
|
|
1342
1325
|
user: number;
|
|
1343
1326
|
admin?: number | undefined;
|
|
@@ -1394,8 +1377,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
|
|
|
1394
1377
|
updatedAt?: string | undefined;
|
|
1395
1378
|
phoneNumber?: string | undefined;
|
|
1396
1379
|
birthDate?: string | undefined;
|
|
1397
|
-
username?: string | undefined;
|
|
1398
|
-
password?: string | undefined;
|
|
1399
1380
|
roles?: {
|
|
1400
1381
|
user: number;
|
|
1401
1382
|
admin?: number | undefined;
|
|
@@ -1447,11 +1428,12 @@ declare const zCampTrackerResponse: z.ZodObject<{
|
|
|
1447
1428
|
category: CourseCategory;
|
|
1448
1429
|
duration: number;
|
|
1449
1430
|
price: number;
|
|
1450
|
-
nyigSchool: NYIGSchool;
|
|
1451
1431
|
editedBy?: string | undefined;
|
|
1452
1432
|
createdAt?: string | undefined;
|
|
1453
1433
|
updatedAt?: string | undefined;
|
|
1454
1434
|
description?: string | undefined;
|
|
1435
|
+
nyigSchool?: NYIGSchool | undefined;
|
|
1436
|
+
schools?: NYIGSchool[] | undefined;
|
|
1455
1437
|
recLevel?: string | undefined;
|
|
1456
1438
|
halfCampTuition?: number | undefined;
|
|
1457
1439
|
fullCampTuition?: number | undefined;
|
|
@@ -1461,6 +1443,7 @@ declare const zCampTrackerResponse: z.ZodObject<{
|
|
|
1461
1443
|
rank: GoRank;
|
|
1462
1444
|
_id: string;
|
|
1463
1445
|
name: string;
|
|
1446
|
+
schools: NYIGSchool[];
|
|
1464
1447
|
email?: string | undefined;
|
|
1465
1448
|
address?: string | undefined;
|
|
1466
1449
|
editedBy?: string | undefined;
|
|
@@ -1468,8 +1451,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
|
|
|
1468
1451
|
updatedAt?: string | undefined;
|
|
1469
1452
|
phoneNumber?: string | undefined;
|
|
1470
1453
|
birthDate?: string | undefined;
|
|
1471
|
-
username?: string | undefined;
|
|
1472
|
-
password?: string | undefined;
|
|
1473
1454
|
roles?: {
|
|
1474
1455
|
user: number;
|
|
1475
1456
|
admin?: number | undefined;
|
|
@@ -1526,8 +1507,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
|
|
|
1526
1507
|
updatedAt?: string | undefined;
|
|
1527
1508
|
phoneNumber?: string | undefined;
|
|
1528
1509
|
birthDate?: string | undefined;
|
|
1529
|
-
username?: string | undefined;
|
|
1530
|
-
password?: string | undefined;
|
|
1531
1510
|
roles?: {
|
|
1532
1511
|
user: number;
|
|
1533
1512
|
admin?: number | undefined;
|
|
@@ -1710,7 +1689,8 @@ declare const zClassTrackerResponse: z.ZodObject<{
|
|
|
1710
1689
|
duration: z.ZodNumber;
|
|
1711
1690
|
price: z.ZodNumber;
|
|
1712
1691
|
description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1713
|
-
nyigSchool: z.ZodNativeEnum<typeof NYIGSchool
|
|
1692
|
+
nyigSchool: z.ZodOptional<z.ZodNativeEnum<typeof NYIGSchool>>;
|
|
1693
|
+
schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
|
|
1714
1694
|
recLevel: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
1715
1695
|
halfCampTuition: z.ZodOptional<z.ZodNumber>;
|
|
1716
1696
|
fullCampTuition: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1726,11 +1706,12 @@ declare const zClassTrackerResponse: z.ZodObject<{
|
|
|
1726
1706
|
category: CourseCategory;
|
|
1727
1707
|
duration: number;
|
|
1728
1708
|
price: number;
|
|
1729
|
-
nyigSchool: NYIGSchool;
|
|
1730
1709
|
editedBy?: string | undefined;
|
|
1731
1710
|
createdAt?: string | undefined;
|
|
1732
1711
|
updatedAt?: string | undefined;
|
|
1733
1712
|
description?: string | undefined;
|
|
1713
|
+
nyigSchool?: NYIGSchool | undefined;
|
|
1714
|
+
schools?: NYIGSchool[] | undefined;
|
|
1734
1715
|
recLevel?: string | undefined;
|
|
1735
1716
|
halfCampTuition?: number | undefined;
|
|
1736
1717
|
fullCampTuition?: number | undefined;
|
|
@@ -1741,11 +1722,12 @@ declare const zClassTrackerResponse: z.ZodObject<{
|
|
|
1741
1722
|
category: CourseCategory;
|
|
1742
1723
|
duration: number;
|
|
1743
1724
|
price: number;
|
|
1744
|
-
nyigSchool: NYIGSchool;
|
|
1745
1725
|
editedBy?: string | undefined;
|
|
1746
1726
|
createdAt?: string | undefined;
|
|
1747
1727
|
updatedAt?: string | undefined;
|
|
1748
1728
|
description?: string | undefined;
|
|
1729
|
+
nyigSchool?: NYIGSchool | undefined;
|
|
1730
|
+
schools?: NYIGSchool[] | undefined;
|
|
1749
1731
|
recLevel?: string | undefined;
|
|
1750
1732
|
halfCampTuition?: number | undefined;
|
|
1751
1733
|
fullCampTuition?: number | undefined;
|
|
@@ -1753,8 +1735,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
|
|
|
1753
1735
|
}>;
|
|
1754
1736
|
teacher: z.ZodObject<{
|
|
1755
1737
|
name: z.ZodString;
|
|
1756
|
-
username: z.ZodOptional<z.ZodString>;
|
|
1757
|
-
password: z.ZodOptional<z.ZodString>;
|
|
1758
1738
|
roles: z.ZodOptional<z.ZodObject<{
|
|
1759
1739
|
user: z.ZodNumber;
|
|
1760
1740
|
admin: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1829,6 +1809,7 @@ declare const zClassTrackerResponse: z.ZodObject<{
|
|
|
1829
1809
|
bio: z.ZodOptional<z.ZodString>;
|
|
1830
1810
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
1831
1811
|
available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
|
|
1812
|
+
schools: z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">;
|
|
1832
1813
|
} & {
|
|
1833
1814
|
_id: z.ZodString;
|
|
1834
1815
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
@@ -1838,6 +1819,7 @@ declare const zClassTrackerResponse: z.ZodObject<{
|
|
|
1838
1819
|
rank: GoRank;
|
|
1839
1820
|
_id: string;
|
|
1840
1821
|
name: string;
|
|
1822
|
+
schools: NYIGSchool[];
|
|
1841
1823
|
email?: string | undefined;
|
|
1842
1824
|
address?: string | undefined;
|
|
1843
1825
|
editedBy?: string | undefined;
|
|
@@ -1845,8 +1827,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
|
|
|
1845
1827
|
updatedAt?: string | undefined;
|
|
1846
1828
|
phoneNumber?: string | undefined;
|
|
1847
1829
|
birthDate?: string | undefined;
|
|
1848
|
-
username?: string | undefined;
|
|
1849
|
-
password?: string | undefined;
|
|
1850
1830
|
roles?: {
|
|
1851
1831
|
user: number;
|
|
1852
1832
|
admin?: number | undefined;
|
|
@@ -1880,6 +1860,7 @@ declare const zClassTrackerResponse: z.ZodObject<{
|
|
|
1880
1860
|
rank: GoRank;
|
|
1881
1861
|
_id: string;
|
|
1882
1862
|
name: string;
|
|
1863
|
+
schools: NYIGSchool[];
|
|
1883
1864
|
email?: string | undefined;
|
|
1884
1865
|
address?: string | undefined;
|
|
1885
1866
|
editedBy?: string | undefined;
|
|
@@ -1887,8 +1868,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
|
|
|
1887
1868
|
updatedAt?: string | undefined;
|
|
1888
1869
|
phoneNumber?: string | undefined;
|
|
1889
1870
|
birthDate?: string | undefined;
|
|
1890
|
-
username?: string | undefined;
|
|
1891
|
-
password?: string | undefined;
|
|
1892
1871
|
roles?: {
|
|
1893
1872
|
user: number;
|
|
1894
1873
|
admin?: number | undefined;
|
|
@@ -1921,8 +1900,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
|
|
|
1921
1900
|
}>;
|
|
1922
1901
|
student: z.ZodObject<{
|
|
1923
1902
|
name: z.ZodString;
|
|
1924
|
-
username: z.ZodOptional<z.ZodString>;
|
|
1925
|
-
password: z.ZodOptional<z.ZodString>;
|
|
1926
1903
|
roles: z.ZodOptional<z.ZodObject<{
|
|
1927
1904
|
user: z.ZodNumber;
|
|
1928
1905
|
admin: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2008,8 +1985,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
|
|
|
2008
1985
|
updatedAt?: string | undefined;
|
|
2009
1986
|
phoneNumber?: string | undefined;
|
|
2010
1987
|
birthDate?: string | undefined;
|
|
2011
|
-
username?: string | undefined;
|
|
2012
|
-
password?: string | undefined;
|
|
2013
1988
|
roles?: {
|
|
2014
1989
|
user: number;
|
|
2015
1990
|
admin?: number | undefined;
|
|
@@ -2045,8 +2020,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
|
|
|
2045
2020
|
updatedAt?: string | undefined;
|
|
2046
2021
|
phoneNumber?: string | undefined;
|
|
2047
2022
|
birthDate?: string | undefined;
|
|
2048
|
-
username?: string | undefined;
|
|
2049
|
-
password?: string | undefined;
|
|
2050
2023
|
roles?: {
|
|
2051
2024
|
user: number;
|
|
2052
2025
|
admin?: number | undefined;
|
|
@@ -2085,8 +2058,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
|
|
|
2085
2058
|
updatedAt?: string | undefined;
|
|
2086
2059
|
phoneNumber?: string | undefined;
|
|
2087
2060
|
birthDate?: string | undefined;
|
|
2088
|
-
username?: string | undefined;
|
|
2089
|
-
password?: string | undefined;
|
|
2090
2061
|
roles?: {
|
|
2091
2062
|
user: number;
|
|
2092
2063
|
admin?: number | undefined;
|
|
@@ -2118,11 +2089,12 @@ declare const zClassTrackerResponse: z.ZodObject<{
|
|
|
2118
2089
|
category: CourseCategory;
|
|
2119
2090
|
duration: number;
|
|
2120
2091
|
price: number;
|
|
2121
|
-
nyigSchool: NYIGSchool;
|
|
2122
2092
|
editedBy?: string | undefined;
|
|
2123
2093
|
createdAt?: string | undefined;
|
|
2124
2094
|
updatedAt?: string | undefined;
|
|
2125
2095
|
description?: string | undefined;
|
|
2096
|
+
nyigSchool?: NYIGSchool | undefined;
|
|
2097
|
+
schools?: NYIGSchool[] | undefined;
|
|
2126
2098
|
recLevel?: string | undefined;
|
|
2127
2099
|
halfCampTuition?: number | undefined;
|
|
2128
2100
|
fullCampTuition?: number | undefined;
|
|
@@ -2132,6 +2104,7 @@ declare const zClassTrackerResponse: z.ZodObject<{
|
|
|
2132
2104
|
rank: GoRank;
|
|
2133
2105
|
_id: string;
|
|
2134
2106
|
name: string;
|
|
2107
|
+
schools: NYIGSchool[];
|
|
2135
2108
|
email?: string | undefined;
|
|
2136
2109
|
address?: string | undefined;
|
|
2137
2110
|
editedBy?: string | undefined;
|
|
@@ -2139,8 +2112,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
|
|
|
2139
2112
|
updatedAt?: string | undefined;
|
|
2140
2113
|
phoneNumber?: string | undefined;
|
|
2141
2114
|
birthDate?: string | undefined;
|
|
2142
|
-
username?: string | undefined;
|
|
2143
|
-
password?: string | undefined;
|
|
2144
2115
|
roles?: {
|
|
2145
2116
|
user: number;
|
|
2146
2117
|
admin?: number | undefined;
|
|
@@ -2193,8 +2164,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
|
|
|
2193
2164
|
updatedAt?: string | undefined;
|
|
2194
2165
|
phoneNumber?: string | undefined;
|
|
2195
2166
|
birthDate?: string | undefined;
|
|
2196
|
-
username?: string | undefined;
|
|
2197
|
-
password?: string | undefined;
|
|
2198
2167
|
roles?: {
|
|
2199
2168
|
user: number;
|
|
2200
2169
|
admin?: number | undefined;
|
|
@@ -2226,11 +2195,12 @@ declare const zClassTrackerResponse: z.ZodObject<{
|
|
|
2226
2195
|
category: CourseCategory;
|
|
2227
2196
|
duration: number;
|
|
2228
2197
|
price: number;
|
|
2229
|
-
nyigSchool: NYIGSchool;
|
|
2230
2198
|
editedBy?: string | undefined;
|
|
2231
2199
|
createdAt?: string | undefined;
|
|
2232
2200
|
updatedAt?: string | undefined;
|
|
2233
2201
|
description?: string | undefined;
|
|
2202
|
+
nyigSchool?: NYIGSchool | undefined;
|
|
2203
|
+
schools?: NYIGSchool[] | undefined;
|
|
2234
2204
|
recLevel?: string | undefined;
|
|
2235
2205
|
halfCampTuition?: number | undefined;
|
|
2236
2206
|
fullCampTuition?: number | undefined;
|
|
@@ -2240,6 +2210,7 @@ declare const zClassTrackerResponse: z.ZodObject<{
|
|
|
2240
2210
|
rank: GoRank;
|
|
2241
2211
|
_id: string;
|
|
2242
2212
|
name: string;
|
|
2213
|
+
schools: NYIGSchool[];
|
|
2243
2214
|
email?: string | undefined;
|
|
2244
2215
|
address?: string | undefined;
|
|
2245
2216
|
editedBy?: string | undefined;
|
|
@@ -2247,8 +2218,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
|
|
|
2247
2218
|
updatedAt?: string | undefined;
|
|
2248
2219
|
phoneNumber?: string | undefined;
|
|
2249
2220
|
birthDate?: string | undefined;
|
|
2250
|
-
username?: string | undefined;
|
|
2251
|
-
password?: string | undefined;
|
|
2252
2221
|
roles?: {
|
|
2253
2222
|
user: number;
|
|
2254
2223
|
admin?: number | undefined;
|
|
@@ -2375,7 +2344,8 @@ declare enum CourseCategory {
|
|
|
2375
2344
|
|
|
2376
2345
|
declare enum NYIGSchool {
|
|
2377
2346
|
MANHATTAN = "Manhattan",
|
|
2378
|
-
LITTLENECK = "Little Neck"
|
|
2347
|
+
LITTLENECK = "Little Neck",
|
|
2348
|
+
ONLINE = "Online"
|
|
2379
2349
|
}
|
|
2380
2350
|
|
|
2381
2351
|
declare const zBCourse: z.ZodObject<{
|
|
@@ -2391,9 +2361,14 @@ declare const zBCourse: z.ZodObject<{
|
|
|
2391
2361
|
price: z.ZodNumber;
|
|
2392
2362
|
description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
2393
2363
|
/**
|
|
2394
|
-
* NYIG School
|
|
2364
|
+
* NYIG School location
|
|
2365
|
+
* @deprecated
|
|
2366
|
+
*/
|
|
2367
|
+
nyigSchool: z.ZodOptional<z.ZodNativeEnum<typeof NYIGSchool>>;
|
|
2368
|
+
/**
|
|
2369
|
+
* NYIG School locations the course is offered at
|
|
2395
2370
|
*/
|
|
2396
|
-
|
|
2371
|
+
schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
|
|
2397
2372
|
/**
|
|
2398
2373
|
* Recommended level before taking this course
|
|
2399
2374
|
*/
|
|
@@ -2412,8 +2387,9 @@ declare const zBCourse: z.ZodObject<{
|
|
|
2412
2387
|
category: CourseCategory;
|
|
2413
2388
|
duration: number;
|
|
2414
2389
|
price: number;
|
|
2415
|
-
nyigSchool: NYIGSchool;
|
|
2416
2390
|
description?: string | undefined;
|
|
2391
|
+
nyigSchool?: NYIGSchool | undefined;
|
|
2392
|
+
schools?: NYIGSchool[] | undefined;
|
|
2417
2393
|
recLevel?: string | undefined;
|
|
2418
2394
|
halfCampTuition?: number | undefined;
|
|
2419
2395
|
fullCampTuition?: number | undefined;
|
|
@@ -2423,8 +2399,9 @@ declare const zBCourse: z.ZodObject<{
|
|
|
2423
2399
|
category: CourseCategory;
|
|
2424
2400
|
duration: number;
|
|
2425
2401
|
price: number;
|
|
2426
|
-
nyigSchool: NYIGSchool;
|
|
2427
2402
|
description?: string | undefined;
|
|
2403
|
+
nyigSchool?: NYIGSchool | undefined;
|
|
2404
|
+
schools?: NYIGSchool[] | undefined;
|
|
2428
2405
|
recLevel?: string | undefined;
|
|
2429
2406
|
halfCampTuition?: number | undefined;
|
|
2430
2407
|
fullCampTuition?: number | undefined;
|
|
@@ -2443,9 +2420,14 @@ declare const zCourse: z.ZodObject<{
|
|
|
2443
2420
|
price: z.ZodNumber;
|
|
2444
2421
|
description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
2445
2422
|
/**
|
|
2446
|
-
* NYIG School
|
|
2423
|
+
* NYIG School location
|
|
2424
|
+
* @deprecated
|
|
2425
|
+
*/
|
|
2426
|
+
nyigSchool: z.ZodOptional<z.ZodNativeEnum<typeof NYIGSchool>>;
|
|
2427
|
+
/**
|
|
2428
|
+
* NYIG School locations the course is offered at
|
|
2447
2429
|
*/
|
|
2448
|
-
|
|
2430
|
+
schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
|
|
2449
2431
|
/**
|
|
2450
2432
|
* Recommended level before taking this course
|
|
2451
2433
|
*/
|
|
@@ -2470,11 +2452,12 @@ declare const zCourse: z.ZodObject<{
|
|
|
2470
2452
|
category: CourseCategory;
|
|
2471
2453
|
duration: number;
|
|
2472
2454
|
price: number;
|
|
2473
|
-
nyigSchool: NYIGSchool;
|
|
2474
2455
|
editedBy?: string | undefined;
|
|
2475
2456
|
createdAt?: string | undefined;
|
|
2476
2457
|
updatedAt?: string | undefined;
|
|
2477
2458
|
description?: string | undefined;
|
|
2459
|
+
nyigSchool?: NYIGSchool | undefined;
|
|
2460
|
+
schools?: NYIGSchool[] | undefined;
|
|
2478
2461
|
recLevel?: string | undefined;
|
|
2479
2462
|
halfCampTuition?: number | undefined;
|
|
2480
2463
|
fullCampTuition?: number | undefined;
|
|
@@ -2485,11 +2468,12 @@ declare const zCourse: z.ZodObject<{
|
|
|
2485
2468
|
category: CourseCategory;
|
|
2486
2469
|
duration: number;
|
|
2487
2470
|
price: number;
|
|
2488
|
-
nyigSchool: NYIGSchool;
|
|
2489
2471
|
editedBy?: string | undefined;
|
|
2490
2472
|
createdAt?: string | undefined;
|
|
2491
2473
|
updatedAt?: string | undefined;
|
|
2492
2474
|
description?: string | undefined;
|
|
2475
|
+
nyigSchool?: NYIGSchool | undefined;
|
|
2476
|
+
schools?: NYIGSchool[] | undefined;
|
|
2493
2477
|
recLevel?: string | undefined;
|
|
2494
2478
|
halfCampTuition?: number | undefined;
|
|
2495
2479
|
fullCampTuition?: number | undefined;
|
|
@@ -2850,7 +2834,8 @@ declare const zGroupTrackerResponse: z.ZodObject<{
|
|
|
2850
2834
|
duration: z.ZodNumber;
|
|
2851
2835
|
price: z.ZodNumber;
|
|
2852
2836
|
description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
2853
|
-
nyigSchool: z.ZodNativeEnum<typeof NYIGSchool
|
|
2837
|
+
nyigSchool: z.ZodOptional<z.ZodNativeEnum<typeof NYIGSchool>>;
|
|
2838
|
+
schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
|
|
2854
2839
|
recLevel: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
2855
2840
|
halfCampTuition: z.ZodOptional<z.ZodNumber>;
|
|
2856
2841
|
fullCampTuition: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2866,11 +2851,12 @@ declare const zGroupTrackerResponse: z.ZodObject<{
|
|
|
2866
2851
|
category: CourseCategory;
|
|
2867
2852
|
duration: number;
|
|
2868
2853
|
price: number;
|
|
2869
|
-
nyigSchool: NYIGSchool;
|
|
2870
2854
|
editedBy?: string | undefined;
|
|
2871
2855
|
createdAt?: string | undefined;
|
|
2872
2856
|
updatedAt?: string | undefined;
|
|
2873
2857
|
description?: string | undefined;
|
|
2858
|
+
nyigSchool?: NYIGSchool | undefined;
|
|
2859
|
+
schools?: NYIGSchool[] | undefined;
|
|
2874
2860
|
recLevel?: string | undefined;
|
|
2875
2861
|
halfCampTuition?: number | undefined;
|
|
2876
2862
|
fullCampTuition?: number | undefined;
|
|
@@ -2881,11 +2867,12 @@ declare const zGroupTrackerResponse: z.ZodObject<{
|
|
|
2881
2867
|
category: CourseCategory;
|
|
2882
2868
|
duration: number;
|
|
2883
2869
|
price: number;
|
|
2884
|
-
nyigSchool: NYIGSchool;
|
|
2885
2870
|
editedBy?: string | undefined;
|
|
2886
2871
|
createdAt?: string | undefined;
|
|
2887
2872
|
updatedAt?: string | undefined;
|
|
2888
2873
|
description?: string | undefined;
|
|
2874
|
+
nyigSchool?: NYIGSchool | undefined;
|
|
2875
|
+
schools?: NYIGSchool[] | undefined;
|
|
2889
2876
|
recLevel?: string | undefined;
|
|
2890
2877
|
halfCampTuition?: number | undefined;
|
|
2891
2878
|
fullCampTuition?: number | undefined;
|
|
@@ -2893,8 +2880,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
|
|
|
2893
2880
|
}>;
|
|
2894
2881
|
teacher: z.ZodObject<{
|
|
2895
2882
|
name: z.ZodString;
|
|
2896
|
-
username: z.ZodOptional<z.ZodString>;
|
|
2897
|
-
password: z.ZodOptional<z.ZodString>;
|
|
2898
2883
|
roles: z.ZodOptional<z.ZodObject<{
|
|
2899
2884
|
user: z.ZodNumber;
|
|
2900
2885
|
admin: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2969,6 +2954,7 @@ declare const zGroupTrackerResponse: z.ZodObject<{
|
|
|
2969
2954
|
bio: z.ZodOptional<z.ZodString>;
|
|
2970
2955
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
2971
2956
|
available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
|
|
2957
|
+
schools: z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">;
|
|
2972
2958
|
} & {
|
|
2973
2959
|
_id: z.ZodString;
|
|
2974
2960
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
@@ -2978,6 +2964,7 @@ declare const zGroupTrackerResponse: z.ZodObject<{
|
|
|
2978
2964
|
rank: GoRank;
|
|
2979
2965
|
_id: string;
|
|
2980
2966
|
name: string;
|
|
2967
|
+
schools: NYIGSchool[];
|
|
2981
2968
|
email?: string | undefined;
|
|
2982
2969
|
address?: string | undefined;
|
|
2983
2970
|
editedBy?: string | undefined;
|
|
@@ -2985,8 +2972,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
|
|
|
2985
2972
|
updatedAt?: string | undefined;
|
|
2986
2973
|
phoneNumber?: string | undefined;
|
|
2987
2974
|
birthDate?: string | undefined;
|
|
2988
|
-
username?: string | undefined;
|
|
2989
|
-
password?: string | undefined;
|
|
2990
2975
|
roles?: {
|
|
2991
2976
|
user: number;
|
|
2992
2977
|
admin?: number | undefined;
|
|
@@ -3020,6 +3005,7 @@ declare const zGroupTrackerResponse: z.ZodObject<{
|
|
|
3020
3005
|
rank: GoRank;
|
|
3021
3006
|
_id: string;
|
|
3022
3007
|
name: string;
|
|
3008
|
+
schools: NYIGSchool[];
|
|
3023
3009
|
email?: string | undefined;
|
|
3024
3010
|
address?: string | undefined;
|
|
3025
3011
|
editedBy?: string | undefined;
|
|
@@ -3027,8 +3013,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
|
|
|
3027
3013
|
updatedAt?: string | undefined;
|
|
3028
3014
|
phoneNumber?: string | undefined;
|
|
3029
3015
|
birthDate?: string | undefined;
|
|
3030
|
-
username?: string | undefined;
|
|
3031
|
-
password?: string | undefined;
|
|
3032
3016
|
roles?: {
|
|
3033
3017
|
user: number;
|
|
3034
3018
|
admin?: number | undefined;
|
|
@@ -3118,8 +3102,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
|
|
|
3118
3102
|
} & {
|
|
3119
3103
|
student: z.ZodObject<{
|
|
3120
3104
|
name: z.ZodString;
|
|
3121
|
-
username: z.ZodOptional<z.ZodString>;
|
|
3122
|
-
password: z.ZodOptional<z.ZodString>;
|
|
3123
3105
|
roles: z.ZodOptional<z.ZodObject<{
|
|
3124
3106
|
user: z.ZodNumber;
|
|
3125
3107
|
admin: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3205,8 +3187,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
|
|
|
3205
3187
|
updatedAt?: string | undefined;
|
|
3206
3188
|
phoneNumber?: string | undefined;
|
|
3207
3189
|
birthDate?: string | undefined;
|
|
3208
|
-
username?: string | undefined;
|
|
3209
|
-
password?: string | undefined;
|
|
3210
3190
|
roles?: {
|
|
3211
3191
|
user: number;
|
|
3212
3192
|
admin?: number | undefined;
|
|
@@ -3242,8 +3222,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
|
|
|
3242
3222
|
updatedAt?: string | undefined;
|
|
3243
3223
|
phoneNumber?: string | undefined;
|
|
3244
3224
|
birthDate?: string | undefined;
|
|
3245
|
-
username?: string | undefined;
|
|
3246
|
-
password?: string | undefined;
|
|
3247
3225
|
roles?: {
|
|
3248
3226
|
user: number;
|
|
3249
3227
|
admin?: number | undefined;
|
|
@@ -3282,8 +3260,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
|
|
|
3282
3260
|
updatedAt?: string | undefined;
|
|
3283
3261
|
phoneNumber?: string | undefined;
|
|
3284
3262
|
birthDate?: string | undefined;
|
|
3285
|
-
username?: string | undefined;
|
|
3286
|
-
password?: string | undefined;
|
|
3287
3263
|
roles?: {
|
|
3288
3264
|
user: number;
|
|
3289
3265
|
admin?: number | undefined;
|
|
@@ -3333,8 +3309,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
|
|
|
3333
3309
|
updatedAt?: string | undefined;
|
|
3334
3310
|
phoneNumber?: string | undefined;
|
|
3335
3311
|
birthDate?: string | undefined;
|
|
3336
|
-
username?: string | undefined;
|
|
3337
|
-
password?: string | undefined;
|
|
3338
3312
|
roles?: {
|
|
3339
3313
|
user: number;
|
|
3340
3314
|
admin?: number | undefined;
|
|
@@ -3380,11 +3354,12 @@ declare const zGroupTrackerResponse: z.ZodObject<{
|
|
|
3380
3354
|
category: CourseCategory;
|
|
3381
3355
|
duration: number;
|
|
3382
3356
|
price: number;
|
|
3383
|
-
nyigSchool: NYIGSchool;
|
|
3384
3357
|
editedBy?: string | undefined;
|
|
3385
3358
|
createdAt?: string | undefined;
|
|
3386
3359
|
updatedAt?: string | undefined;
|
|
3387
3360
|
description?: string | undefined;
|
|
3361
|
+
nyigSchool?: NYIGSchool | undefined;
|
|
3362
|
+
schools?: NYIGSchool[] | undefined;
|
|
3388
3363
|
recLevel?: string | undefined;
|
|
3389
3364
|
halfCampTuition?: number | undefined;
|
|
3390
3365
|
fullCampTuition?: number | undefined;
|
|
@@ -3416,8 +3391,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
|
|
|
3416
3391
|
updatedAt?: string | undefined;
|
|
3417
3392
|
phoneNumber?: string | undefined;
|
|
3418
3393
|
birthDate?: string | undefined;
|
|
3419
|
-
username?: string | undefined;
|
|
3420
|
-
password?: string | undefined;
|
|
3421
3394
|
roles?: {
|
|
3422
3395
|
user: number;
|
|
3423
3396
|
admin?: number | undefined;
|
|
@@ -3459,6 +3432,7 @@ declare const zGroupTrackerResponse: z.ZodObject<{
|
|
|
3459
3432
|
rank: GoRank;
|
|
3460
3433
|
_id: string;
|
|
3461
3434
|
name: string;
|
|
3435
|
+
schools: NYIGSchool[];
|
|
3462
3436
|
email?: string | undefined;
|
|
3463
3437
|
address?: string | undefined;
|
|
3464
3438
|
editedBy?: string | undefined;
|
|
@@ -3466,8 +3440,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
|
|
|
3466
3440
|
updatedAt?: string | undefined;
|
|
3467
3441
|
phoneNumber?: string | undefined;
|
|
3468
3442
|
birthDate?: string | undefined;
|
|
3469
|
-
username?: string | undefined;
|
|
3470
|
-
password?: string | undefined;
|
|
3471
3443
|
roles?: {
|
|
3472
3444
|
user: number;
|
|
3473
3445
|
admin?: number | undefined;
|
|
@@ -3519,11 +3491,12 @@ declare const zGroupTrackerResponse: z.ZodObject<{
|
|
|
3519
3491
|
category: CourseCategory;
|
|
3520
3492
|
duration: number;
|
|
3521
3493
|
price: number;
|
|
3522
|
-
nyigSchool: NYIGSchool;
|
|
3523
3494
|
editedBy?: string | undefined;
|
|
3524
3495
|
createdAt?: string | undefined;
|
|
3525
3496
|
updatedAt?: string | undefined;
|
|
3526
3497
|
description?: string | undefined;
|
|
3498
|
+
nyigSchool?: NYIGSchool | undefined;
|
|
3499
|
+
schools?: NYIGSchool[] | undefined;
|
|
3527
3500
|
recLevel?: string | undefined;
|
|
3528
3501
|
halfCampTuition?: number | undefined;
|
|
3529
3502
|
fullCampTuition?: number | undefined;
|
|
@@ -3555,8 +3528,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
|
|
|
3555
3528
|
updatedAt?: string | undefined;
|
|
3556
3529
|
phoneNumber?: string | undefined;
|
|
3557
3530
|
birthDate?: string | undefined;
|
|
3558
|
-
username?: string | undefined;
|
|
3559
|
-
password?: string | undefined;
|
|
3560
3531
|
roles?: {
|
|
3561
3532
|
user: number;
|
|
3562
3533
|
admin?: number | undefined;
|
|
@@ -3598,6 +3569,7 @@ declare const zGroupTrackerResponse: z.ZodObject<{
|
|
|
3598
3569
|
rank: GoRank;
|
|
3599
3570
|
_id: string;
|
|
3600
3571
|
name: string;
|
|
3572
|
+
schools: NYIGSchool[];
|
|
3601
3573
|
email?: string | undefined;
|
|
3602
3574
|
address?: string | undefined;
|
|
3603
3575
|
editedBy?: string | undefined;
|
|
@@ -3605,8 +3577,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
|
|
|
3605
3577
|
updatedAt?: string | undefined;
|
|
3606
3578
|
phoneNumber?: string | undefined;
|
|
3607
3579
|
birthDate?: string | undefined;
|
|
3608
|
-
username?: string | undefined;
|
|
3609
|
-
password?: string | undefined;
|
|
3610
3580
|
roles?: {
|
|
3611
3581
|
user: number;
|
|
3612
3582
|
admin?: number | undefined;
|
|
@@ -3693,6 +3663,7 @@ declare const zBCampBooking: z.ZodObject<{
|
|
|
3693
3663
|
showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
|
|
3694
3664
|
participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
|
|
3695
3665
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
|
3666
|
+
profileId: z.ZodOptional<z.ZodString>;
|
|
3696
3667
|
} & {
|
|
3697
3668
|
paymentAmount: z.ZodNumber;
|
|
3698
3669
|
paymentReceived: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3717,6 +3688,7 @@ declare const zBCampBooking: z.ZodObject<{
|
|
|
3717
3688
|
showOnWhoIsComing?: boolean | undefined;
|
|
3718
3689
|
participateAs?: "adult" | "youth" | undefined;
|
|
3719
3690
|
dateOfBirth?: string | undefined;
|
|
3691
|
+
profileId?: string | undefined;
|
|
3720
3692
|
shipping?: boolean | undefined;
|
|
3721
3693
|
ctId?: string | undefined;
|
|
3722
3694
|
}, {
|
|
@@ -3739,6 +3711,7 @@ declare const zBCampBooking: z.ZodObject<{
|
|
|
3739
3711
|
showOnWhoIsComing?: boolean | undefined;
|
|
3740
3712
|
participateAs?: "adult" | "youth" | undefined;
|
|
3741
3713
|
dateOfBirth?: string | undefined;
|
|
3714
|
+
profileId?: string | undefined;
|
|
3742
3715
|
shipping?: boolean | undefined;
|
|
3743
3716
|
ctId?: string | undefined;
|
|
3744
3717
|
}>;
|
|
@@ -3762,6 +3735,7 @@ declare const zCampBooking: z.ZodObject<{
|
|
|
3762
3735
|
showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
|
|
3763
3736
|
participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
|
|
3764
3737
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
|
3738
|
+
profileId: z.ZodOptional<z.ZodString>;
|
|
3765
3739
|
} & {
|
|
3766
3740
|
paymentAmount: z.ZodNumber;
|
|
3767
3741
|
paymentReceived: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3792,6 +3766,7 @@ declare const zCampBooking: z.ZodObject<{
|
|
|
3792
3766
|
showOnWhoIsComing?: boolean | undefined;
|
|
3793
3767
|
participateAs?: "adult" | "youth" | undefined;
|
|
3794
3768
|
dateOfBirth?: string | undefined;
|
|
3769
|
+
profileId?: string | undefined;
|
|
3795
3770
|
shipping?: boolean | undefined;
|
|
3796
3771
|
editedBy?: string | undefined;
|
|
3797
3772
|
createdAt?: string | undefined;
|
|
@@ -3818,6 +3793,7 @@ declare const zCampBooking: z.ZodObject<{
|
|
|
3818
3793
|
showOnWhoIsComing?: boolean | undefined;
|
|
3819
3794
|
participateAs?: "adult" | "youth" | undefined;
|
|
3820
3795
|
dateOfBirth?: string | undefined;
|
|
3796
|
+
profileId?: string | undefined;
|
|
3821
3797
|
shipping?: boolean | undefined;
|
|
3822
3798
|
editedBy?: string | undefined;
|
|
3823
3799
|
createdAt?: string | undefined;
|
|
@@ -3847,6 +3823,7 @@ declare const zBGroupBooking: z.ZodObject<{
|
|
|
3847
3823
|
showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
|
|
3848
3824
|
participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
|
|
3849
3825
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
|
3826
|
+
profileId: z.ZodOptional<z.ZodString>;
|
|
3850
3827
|
} & {
|
|
3851
3828
|
paymentAmount: z.ZodNumber;
|
|
3852
3829
|
paymentReceived: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3869,6 +3846,7 @@ declare const zBGroupBooking: z.ZodObject<{
|
|
|
3869
3846
|
showOnWhoIsComing?: boolean | undefined;
|
|
3870
3847
|
participateAs?: "adult" | "youth" | undefined;
|
|
3871
3848
|
dateOfBirth?: string | undefined;
|
|
3849
|
+
profileId?: string | undefined;
|
|
3872
3850
|
shipping?: boolean | undefined;
|
|
3873
3851
|
gtId?: string | undefined;
|
|
3874
3852
|
isTrial?: boolean | undefined;
|
|
@@ -3891,6 +3869,7 @@ declare const zBGroupBooking: z.ZodObject<{
|
|
|
3891
3869
|
showOnWhoIsComing?: boolean | undefined;
|
|
3892
3870
|
participateAs?: "adult" | "youth" | undefined;
|
|
3893
3871
|
dateOfBirth?: string | undefined;
|
|
3872
|
+
profileId?: string | undefined;
|
|
3894
3873
|
shipping?: boolean | undefined;
|
|
3895
3874
|
gtId?: string | undefined;
|
|
3896
3875
|
isTrial?: boolean | undefined;
|
|
@@ -3916,6 +3895,7 @@ declare const zGroupBooking: z.ZodObject<{
|
|
|
3916
3895
|
showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
|
|
3917
3896
|
participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
|
|
3918
3897
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
|
3898
|
+
profileId: z.ZodOptional<z.ZodString>;
|
|
3919
3899
|
} & {
|
|
3920
3900
|
paymentAmount: z.ZodNumber;
|
|
3921
3901
|
paymentReceived: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3944,6 +3924,7 @@ declare const zGroupBooking: z.ZodObject<{
|
|
|
3944
3924
|
showOnWhoIsComing?: boolean | undefined;
|
|
3945
3925
|
participateAs?: "adult" | "youth" | undefined;
|
|
3946
3926
|
dateOfBirth?: string | undefined;
|
|
3927
|
+
profileId?: string | undefined;
|
|
3947
3928
|
shipping?: boolean | undefined;
|
|
3948
3929
|
editedBy?: string | undefined;
|
|
3949
3930
|
createdAt?: string | undefined;
|
|
@@ -3970,6 +3951,7 @@ declare const zGroupBooking: z.ZodObject<{
|
|
|
3970
3951
|
showOnWhoIsComing?: boolean | undefined;
|
|
3971
3952
|
participateAs?: "adult" | "youth" | undefined;
|
|
3972
3953
|
dateOfBirth?: string | undefined;
|
|
3954
|
+
profileId?: string | undefined;
|
|
3973
3955
|
shipping?: boolean | undefined;
|
|
3974
3956
|
editedBy?: string | undefined;
|
|
3975
3957
|
createdAt?: string | undefined;
|
|
@@ -3999,6 +3981,7 @@ declare const zBPrivateBooking: z.ZodObject<{
|
|
|
3999
3981
|
showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
|
|
4000
3982
|
participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
|
|
4001
3983
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
|
3984
|
+
profileId: z.ZodOptional<z.ZodString>;
|
|
4002
3985
|
} & {
|
|
4003
3986
|
paymentAmount: z.ZodNumber;
|
|
4004
3987
|
paymentReceived: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4022,6 +4005,7 @@ declare const zBPrivateBooking: z.ZodObject<{
|
|
|
4022
4005
|
showOnWhoIsComing?: boolean | undefined;
|
|
4023
4006
|
participateAs?: "adult" | "youth" | undefined;
|
|
4024
4007
|
dateOfBirth?: string | undefined;
|
|
4008
|
+
profileId?: string | undefined;
|
|
4025
4009
|
classDate?: string | undefined;
|
|
4026
4010
|
}, {
|
|
4027
4011
|
paymentAmount: number;
|
|
@@ -4042,6 +4026,7 @@ declare const zBPrivateBooking: z.ZodObject<{
|
|
|
4042
4026
|
showOnWhoIsComing?: boolean | undefined;
|
|
4043
4027
|
participateAs?: "adult" | "youth" | undefined;
|
|
4044
4028
|
dateOfBirth?: string | undefined;
|
|
4029
|
+
profileId?: string | undefined;
|
|
4045
4030
|
classDate?: string | undefined;
|
|
4046
4031
|
}>;
|
|
4047
4032
|
declare const zPrivateBooking: z.ZodObject<{
|
|
@@ -4062,6 +4047,7 @@ declare const zPrivateBooking: z.ZodObject<{
|
|
|
4062
4047
|
showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
|
|
4063
4048
|
participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
|
|
4064
4049
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
|
4050
|
+
profileId: z.ZodOptional<z.ZodString>;
|
|
4065
4051
|
} & {
|
|
4066
4052
|
paymentAmount: z.ZodNumber;
|
|
4067
4053
|
paymentReceived: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4091,6 +4077,7 @@ declare const zPrivateBooking: z.ZodObject<{
|
|
|
4091
4077
|
showOnWhoIsComing?: boolean | undefined;
|
|
4092
4078
|
participateAs?: "adult" | "youth" | undefined;
|
|
4093
4079
|
dateOfBirth?: string | undefined;
|
|
4080
|
+
profileId?: string | undefined;
|
|
4094
4081
|
editedBy?: string | undefined;
|
|
4095
4082
|
createdAt?: string | undefined;
|
|
4096
4083
|
updatedAt?: string | undefined;
|
|
@@ -4115,6 +4102,7 @@ declare const zPrivateBooking: z.ZodObject<{
|
|
|
4115
4102
|
showOnWhoIsComing?: boolean | undefined;
|
|
4116
4103
|
participateAs?: "adult" | "youth" | undefined;
|
|
4117
4104
|
dateOfBirth?: string | undefined;
|
|
4105
|
+
profileId?: string | undefined;
|
|
4118
4106
|
editedBy?: string | undefined;
|
|
4119
4107
|
createdAt?: string | undefined;
|
|
4120
4108
|
updatedAt?: string | undefined;
|
|
@@ -4200,8 +4188,6 @@ declare const zInvoicePackageResponse: z.ZodObject<{
|
|
|
4200
4188
|
} & {
|
|
4201
4189
|
student: z.ZodObject<{
|
|
4202
4190
|
name: z.ZodString;
|
|
4203
|
-
username: z.ZodOptional<z.ZodString>;
|
|
4204
|
-
password: z.ZodOptional<z.ZodString>;
|
|
4205
4191
|
roles: z.ZodOptional<z.ZodObject<{
|
|
4206
4192
|
user: z.ZodNumber;
|
|
4207
4193
|
admin: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4287,8 +4273,6 @@ declare const zInvoicePackageResponse: z.ZodObject<{
|
|
|
4287
4273
|
updatedAt?: string | undefined;
|
|
4288
4274
|
phoneNumber?: string | undefined;
|
|
4289
4275
|
birthDate?: string | undefined;
|
|
4290
|
-
username?: string | undefined;
|
|
4291
|
-
password?: string | undefined;
|
|
4292
4276
|
roles?: {
|
|
4293
4277
|
user: number;
|
|
4294
4278
|
admin?: number | undefined;
|
|
@@ -4324,8 +4308,6 @@ declare const zInvoicePackageResponse: z.ZodObject<{
|
|
|
4324
4308
|
updatedAt?: string | undefined;
|
|
4325
4309
|
phoneNumber?: string | undefined;
|
|
4326
4310
|
birthDate?: string | undefined;
|
|
4327
|
-
username?: string | undefined;
|
|
4328
|
-
password?: string | undefined;
|
|
4329
4311
|
roles?: {
|
|
4330
4312
|
user: number;
|
|
4331
4313
|
admin?: number | undefined;
|
|
@@ -4363,8 +4345,6 @@ declare const zInvoicePackageResponse: z.ZodObject<{
|
|
|
4363
4345
|
updatedAt?: string | undefined;
|
|
4364
4346
|
phoneNumber?: string | undefined;
|
|
4365
4347
|
birthDate?: string | undefined;
|
|
4366
|
-
username?: string | undefined;
|
|
4367
|
-
password?: string | undefined;
|
|
4368
4348
|
roles?: {
|
|
4369
4349
|
user: number;
|
|
4370
4350
|
admin?: number | undefined;
|
|
@@ -4407,8 +4387,6 @@ declare const zInvoicePackageResponse: z.ZodObject<{
|
|
|
4407
4387
|
updatedAt?: string | undefined;
|
|
4408
4388
|
phoneNumber?: string | undefined;
|
|
4409
4389
|
birthDate?: string | undefined;
|
|
4410
|
-
username?: string | undefined;
|
|
4411
|
-
password?: string | undefined;
|
|
4412
4390
|
roles?: {
|
|
4413
4391
|
user: number;
|
|
4414
4392
|
admin?: number | undefined;
|
|
@@ -4668,8 +4646,6 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
4668
4646
|
} & {
|
|
4669
4647
|
createdBy: z.ZodObject<{
|
|
4670
4648
|
name: z.ZodString;
|
|
4671
|
-
username: z.ZodOptional<z.ZodString>;
|
|
4672
|
-
password: z.ZodOptional<z.ZodString>;
|
|
4673
4649
|
roles: z.ZodOptional<z.ZodObject<{
|
|
4674
4650
|
user: z.ZodNumber;
|
|
4675
4651
|
admin: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4744,6 +4720,7 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
4744
4720
|
bio: z.ZodOptional<z.ZodString>;
|
|
4745
4721
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
4746
4722
|
available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
|
|
4723
|
+
schools: z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">;
|
|
4747
4724
|
} & {
|
|
4748
4725
|
_id: z.ZodString;
|
|
4749
4726
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
@@ -4753,6 +4730,7 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
4753
4730
|
rank: GoRank;
|
|
4754
4731
|
_id: string;
|
|
4755
4732
|
name: string;
|
|
4733
|
+
schools: NYIGSchool[];
|
|
4756
4734
|
email?: string | undefined;
|
|
4757
4735
|
address?: string | undefined;
|
|
4758
4736
|
editedBy?: string | undefined;
|
|
@@ -4760,8 +4738,6 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
4760
4738
|
updatedAt?: string | undefined;
|
|
4761
4739
|
phoneNumber?: string | undefined;
|
|
4762
4740
|
birthDate?: string | undefined;
|
|
4763
|
-
username?: string | undefined;
|
|
4764
|
-
password?: string | undefined;
|
|
4765
4741
|
roles?: {
|
|
4766
4742
|
user: number;
|
|
4767
4743
|
admin?: number | undefined;
|
|
@@ -4795,6 +4771,7 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
4795
4771
|
rank: GoRank;
|
|
4796
4772
|
_id: string;
|
|
4797
4773
|
name: string;
|
|
4774
|
+
schools: NYIGSchool[];
|
|
4798
4775
|
email?: string | undefined;
|
|
4799
4776
|
address?: string | undefined;
|
|
4800
4777
|
editedBy?: string | undefined;
|
|
@@ -4802,8 +4779,6 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
4802
4779
|
updatedAt?: string | undefined;
|
|
4803
4780
|
phoneNumber?: string | undefined;
|
|
4804
4781
|
birthDate?: string | undefined;
|
|
4805
|
-
username?: string | undefined;
|
|
4806
|
-
password?: string | undefined;
|
|
4807
4782
|
roles?: {
|
|
4808
4783
|
user: number;
|
|
4809
4784
|
admin?: number | undefined;
|
|
@@ -4836,8 +4811,6 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
4836
4811
|
}>;
|
|
4837
4812
|
editedBy: z.ZodOptional<z.ZodObject<{
|
|
4838
4813
|
name: z.ZodString;
|
|
4839
|
-
username: z.ZodOptional<z.ZodString>;
|
|
4840
|
-
password: z.ZodOptional<z.ZodString>;
|
|
4841
4814
|
roles: z.ZodOptional<z.ZodObject<{
|
|
4842
4815
|
user: z.ZodNumber;
|
|
4843
4816
|
admin: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4912,6 +4885,7 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
4912
4885
|
bio: z.ZodOptional<z.ZodString>;
|
|
4913
4886
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
4914
4887
|
available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
|
|
4888
|
+
schools: z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">;
|
|
4915
4889
|
} & {
|
|
4916
4890
|
_id: z.ZodString;
|
|
4917
4891
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
@@ -4921,6 +4895,7 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
4921
4895
|
rank: GoRank;
|
|
4922
4896
|
_id: string;
|
|
4923
4897
|
name: string;
|
|
4898
|
+
schools: NYIGSchool[];
|
|
4924
4899
|
email?: string | undefined;
|
|
4925
4900
|
address?: string | undefined;
|
|
4926
4901
|
editedBy?: string | undefined;
|
|
@@ -4928,8 +4903,6 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
4928
4903
|
updatedAt?: string | undefined;
|
|
4929
4904
|
phoneNumber?: string | undefined;
|
|
4930
4905
|
birthDate?: string | undefined;
|
|
4931
|
-
username?: string | undefined;
|
|
4932
|
-
password?: string | undefined;
|
|
4933
4906
|
roles?: {
|
|
4934
4907
|
user: number;
|
|
4935
4908
|
admin?: number | undefined;
|
|
@@ -4963,6 +4936,7 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
4963
4936
|
rank: GoRank;
|
|
4964
4937
|
_id: string;
|
|
4965
4938
|
name: string;
|
|
4939
|
+
schools: NYIGSchool[];
|
|
4966
4940
|
email?: string | undefined;
|
|
4967
4941
|
address?: string | undefined;
|
|
4968
4942
|
editedBy?: string | undefined;
|
|
@@ -4970,8 +4944,6 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
4970
4944
|
updatedAt?: string | undefined;
|
|
4971
4945
|
phoneNumber?: string | undefined;
|
|
4972
4946
|
birthDate?: string | undefined;
|
|
4973
|
-
username?: string | undefined;
|
|
4974
|
-
password?: string | undefined;
|
|
4975
4947
|
roles?: {
|
|
4976
4948
|
user: number;
|
|
4977
4949
|
admin?: number | undefined;
|
|
@@ -5019,8 +4991,6 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
5019
4991
|
} & {
|
|
5020
4992
|
student: z.ZodObject<{
|
|
5021
4993
|
name: z.ZodString;
|
|
5022
|
-
username: z.ZodOptional<z.ZodString>;
|
|
5023
|
-
password: z.ZodOptional<z.ZodString>;
|
|
5024
4994
|
roles: z.ZodOptional<z.ZodObject<{
|
|
5025
4995
|
user: z.ZodNumber;
|
|
5026
4996
|
admin: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5106,8 +5076,6 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
5106
5076
|
updatedAt?: string | undefined;
|
|
5107
5077
|
phoneNumber?: string | undefined;
|
|
5108
5078
|
birthDate?: string | undefined;
|
|
5109
|
-
username?: string | undefined;
|
|
5110
|
-
password?: string | undefined;
|
|
5111
5079
|
roles?: {
|
|
5112
5080
|
user: number;
|
|
5113
5081
|
admin?: number | undefined;
|
|
@@ -5143,8 +5111,6 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
5143
5111
|
updatedAt?: string | undefined;
|
|
5144
5112
|
phoneNumber?: string | undefined;
|
|
5145
5113
|
birthDate?: string | undefined;
|
|
5146
|
-
username?: string | undefined;
|
|
5147
|
-
password?: string | undefined;
|
|
5148
5114
|
roles?: {
|
|
5149
5115
|
user: number;
|
|
5150
5116
|
admin?: number | undefined;
|
|
@@ -5182,8 +5148,6 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
5182
5148
|
updatedAt?: string | undefined;
|
|
5183
5149
|
phoneNumber?: string | undefined;
|
|
5184
5150
|
birthDate?: string | undefined;
|
|
5185
|
-
username?: string | undefined;
|
|
5186
|
-
password?: string | undefined;
|
|
5187
5151
|
roles?: {
|
|
5188
5152
|
user: number;
|
|
5189
5153
|
admin?: number | undefined;
|
|
@@ -5226,8 +5190,6 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
5226
5190
|
updatedAt?: string | undefined;
|
|
5227
5191
|
phoneNumber?: string | undefined;
|
|
5228
5192
|
birthDate?: string | undefined;
|
|
5229
|
-
username?: string | undefined;
|
|
5230
|
-
password?: string | undefined;
|
|
5231
5193
|
roles?: {
|
|
5232
5194
|
user: number;
|
|
5233
5195
|
admin?: number | undefined;
|
|
@@ -5274,8 +5236,6 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
5274
5236
|
updatedAt?: string | undefined;
|
|
5275
5237
|
phoneNumber?: string | undefined;
|
|
5276
5238
|
birthDate?: string | undefined;
|
|
5277
|
-
username?: string | undefined;
|
|
5278
|
-
password?: string | undefined;
|
|
5279
5239
|
roles?: {
|
|
5280
5240
|
user: number;
|
|
5281
5241
|
admin?: number | undefined;
|
|
@@ -5315,6 +5275,7 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
5315
5275
|
rank: GoRank;
|
|
5316
5276
|
_id: string;
|
|
5317
5277
|
name: string;
|
|
5278
|
+
schools: NYIGSchool[];
|
|
5318
5279
|
email?: string | undefined;
|
|
5319
5280
|
address?: string | undefined;
|
|
5320
5281
|
editedBy?: string | undefined;
|
|
@@ -5322,8 +5283,6 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
5322
5283
|
updatedAt?: string | undefined;
|
|
5323
5284
|
phoneNumber?: string | undefined;
|
|
5324
5285
|
birthDate?: string | undefined;
|
|
5325
|
-
username?: string | undefined;
|
|
5326
|
-
password?: string | undefined;
|
|
5327
5286
|
roles?: {
|
|
5328
5287
|
user: number;
|
|
5329
5288
|
admin?: number | undefined;
|
|
@@ -5361,6 +5320,7 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
5361
5320
|
rank: GoRank;
|
|
5362
5321
|
_id: string;
|
|
5363
5322
|
name: string;
|
|
5323
|
+
schools: NYIGSchool[];
|
|
5364
5324
|
email?: string | undefined;
|
|
5365
5325
|
address?: string | undefined;
|
|
5366
5326
|
editedBy?: string | undefined;
|
|
@@ -5368,8 +5328,6 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
5368
5328
|
updatedAt?: string | undefined;
|
|
5369
5329
|
phoneNumber?: string | undefined;
|
|
5370
5330
|
birthDate?: string | undefined;
|
|
5371
|
-
username?: string | undefined;
|
|
5372
|
-
password?: string | undefined;
|
|
5373
5331
|
roles?: {
|
|
5374
5332
|
user: number;
|
|
5375
5333
|
admin?: number | undefined;
|
|
@@ -5421,8 +5379,6 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
5421
5379
|
updatedAt?: string | undefined;
|
|
5422
5380
|
phoneNumber?: string | undefined;
|
|
5423
5381
|
birthDate?: string | undefined;
|
|
5424
|
-
username?: string | undefined;
|
|
5425
|
-
password?: string | undefined;
|
|
5426
5382
|
roles?: {
|
|
5427
5383
|
user: number;
|
|
5428
5384
|
admin?: number | undefined;
|
|
@@ -5462,6 +5418,7 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
5462
5418
|
rank: GoRank;
|
|
5463
5419
|
_id: string;
|
|
5464
5420
|
name: string;
|
|
5421
|
+
schools: NYIGSchool[];
|
|
5465
5422
|
email?: string | undefined;
|
|
5466
5423
|
address?: string | undefined;
|
|
5467
5424
|
editedBy?: string | undefined;
|
|
@@ -5469,8 +5426,6 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
5469
5426
|
updatedAt?: string | undefined;
|
|
5470
5427
|
phoneNumber?: string | undefined;
|
|
5471
5428
|
birthDate?: string | undefined;
|
|
5472
|
-
username?: string | undefined;
|
|
5473
|
-
password?: string | undefined;
|
|
5474
5429
|
roles?: {
|
|
5475
5430
|
user: number;
|
|
5476
5431
|
admin?: number | undefined;
|
|
@@ -5508,6 +5463,7 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
5508
5463
|
rank: GoRank;
|
|
5509
5464
|
_id: string;
|
|
5510
5465
|
name: string;
|
|
5466
|
+
schools: NYIGSchool[];
|
|
5511
5467
|
email?: string | undefined;
|
|
5512
5468
|
address?: string | undefined;
|
|
5513
5469
|
editedBy?: string | undefined;
|
|
@@ -5515,8 +5471,6 @@ declare const zInvoiceResponse: z.ZodObject<{
|
|
|
5515
5471
|
updatedAt?: string | undefined;
|
|
5516
5472
|
phoneNumber?: string | undefined;
|
|
5517
5473
|
birthDate?: string | undefined;
|
|
5518
|
-
username?: string | undefined;
|
|
5519
|
-
password?: string | undefined;
|
|
5520
5474
|
roles?: {
|
|
5521
5475
|
user: number;
|
|
5522
5476
|
admin?: number | undefined;
|
|
@@ -5830,15 +5784,15 @@ declare const zCourseTable: z.ZodObject<{
|
|
|
5830
5784
|
tuition: z.ZodString;
|
|
5831
5785
|
}, "strip", z.ZodTypeAny, {
|
|
5832
5786
|
name: string;
|
|
5833
|
-
tuition: string;
|
|
5834
5787
|
duration: number;
|
|
5788
|
+
tuition: string;
|
|
5835
5789
|
id: string;
|
|
5836
5790
|
dateAndTime: string;
|
|
5837
5791
|
recommendedLevel: string;
|
|
5838
5792
|
}, {
|
|
5839
5793
|
name: string;
|
|
5840
|
-
tuition: string;
|
|
5841
5794
|
duration: number;
|
|
5795
|
+
tuition: string;
|
|
5842
5796
|
id: string;
|
|
5843
5797
|
dateAndTime: string;
|
|
5844
5798
|
recommendedLevel: string;
|
|
@@ -5894,14 +5848,14 @@ declare const zBReportTicket: z.ZodObject<{
|
|
|
5894
5848
|
description: z.ZodString;
|
|
5895
5849
|
}, "strip", z.ZodTypeAny, {
|
|
5896
5850
|
status: TicketStatus;
|
|
5897
|
-
title: string;
|
|
5898
5851
|
description: string;
|
|
5852
|
+
title: string;
|
|
5899
5853
|
requester: string;
|
|
5900
5854
|
resolver?: string | undefined;
|
|
5901
5855
|
}, {
|
|
5902
5856
|
status: TicketStatus;
|
|
5903
|
-
title: string;
|
|
5904
5857
|
description: string;
|
|
5858
|
+
title: string;
|
|
5905
5859
|
requester: string;
|
|
5906
5860
|
resolver?: string | undefined;
|
|
5907
5861
|
}>;
|
|
@@ -5919,8 +5873,8 @@ declare const zReportTicket: z.ZodObject<{
|
|
|
5919
5873
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
5920
5874
|
status: TicketStatus;
|
|
5921
5875
|
_id: string;
|
|
5922
|
-
title: string;
|
|
5923
5876
|
description: string;
|
|
5877
|
+
title: string;
|
|
5924
5878
|
requester: string;
|
|
5925
5879
|
editedBy?: string | undefined;
|
|
5926
5880
|
createdAt?: string | undefined;
|
|
@@ -5929,8 +5883,8 @@ declare const zReportTicket: z.ZodObject<{
|
|
|
5929
5883
|
}, {
|
|
5930
5884
|
status: TicketStatus;
|
|
5931
5885
|
_id: string;
|
|
5932
|
-
title: string;
|
|
5933
5886
|
description: string;
|
|
5887
|
+
title: string;
|
|
5934
5888
|
requester: string;
|
|
5935
5889
|
editedBy?: string | undefined;
|
|
5936
5890
|
createdAt?: string | undefined;
|
|
@@ -5948,8 +5902,6 @@ declare const zReportTicketResponse: z.ZodObject<{
|
|
|
5948
5902
|
} & {
|
|
5949
5903
|
requester: z.ZodObject<{
|
|
5950
5904
|
name: z.ZodString;
|
|
5951
|
-
username: z.ZodOptional<z.ZodString>;
|
|
5952
|
-
password: z.ZodOptional<z.ZodString>;
|
|
5953
5905
|
roles: z.ZodOptional<z.ZodObject<{
|
|
5954
5906
|
user: z.ZodNumber;
|
|
5955
5907
|
admin: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6031,8 +5983,6 @@ declare const zReportTicketResponse: z.ZodObject<{
|
|
|
6031
5983
|
updatedAt?: string | undefined;
|
|
6032
5984
|
phoneNumber?: string | undefined;
|
|
6033
5985
|
birthDate?: string | undefined;
|
|
6034
|
-
username?: string | undefined;
|
|
6035
|
-
password?: string | undefined;
|
|
6036
5986
|
roles?: {
|
|
6037
5987
|
user: number;
|
|
6038
5988
|
admin?: number | undefined;
|
|
@@ -6066,8 +6016,6 @@ declare const zReportTicketResponse: z.ZodObject<{
|
|
|
6066
6016
|
updatedAt?: string | undefined;
|
|
6067
6017
|
phoneNumber?: string | undefined;
|
|
6068
6018
|
birthDate?: string | undefined;
|
|
6069
|
-
username?: string | undefined;
|
|
6070
|
-
password?: string | undefined;
|
|
6071
6019
|
roles?: {
|
|
6072
6020
|
user: number;
|
|
6073
6021
|
admin?: number | undefined;
|
|
@@ -6094,8 +6042,6 @@ declare const zReportTicketResponse: z.ZodObject<{
|
|
|
6094
6042
|
}>;
|
|
6095
6043
|
resolver: z.ZodOptional<z.ZodObject<{
|
|
6096
6044
|
name: z.ZodString;
|
|
6097
|
-
username: z.ZodOptional<z.ZodString>;
|
|
6098
|
-
password: z.ZodOptional<z.ZodString>;
|
|
6099
6045
|
roles: z.ZodOptional<z.ZodObject<{
|
|
6100
6046
|
user: z.ZodNumber;
|
|
6101
6047
|
admin: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6177,8 +6123,6 @@ declare const zReportTicketResponse: z.ZodObject<{
|
|
|
6177
6123
|
updatedAt?: string | undefined;
|
|
6178
6124
|
phoneNumber?: string | undefined;
|
|
6179
6125
|
birthDate?: string | undefined;
|
|
6180
|
-
username?: string | undefined;
|
|
6181
|
-
password?: string | undefined;
|
|
6182
6126
|
roles?: {
|
|
6183
6127
|
user: number;
|
|
6184
6128
|
admin?: number | undefined;
|
|
@@ -6212,8 +6156,6 @@ declare const zReportTicketResponse: z.ZodObject<{
|
|
|
6212
6156
|
updatedAt?: string | undefined;
|
|
6213
6157
|
phoneNumber?: string | undefined;
|
|
6214
6158
|
birthDate?: string | undefined;
|
|
6215
|
-
username?: string | undefined;
|
|
6216
|
-
password?: string | undefined;
|
|
6217
6159
|
roles?: {
|
|
6218
6160
|
user: number;
|
|
6219
6161
|
admin?: number | undefined;
|
|
@@ -6241,8 +6183,8 @@ declare const zReportTicketResponse: z.ZodObject<{
|
|
|
6241
6183
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
6242
6184
|
status: TicketStatus;
|
|
6243
6185
|
_id: string;
|
|
6244
|
-
title: string;
|
|
6245
6186
|
description: string;
|
|
6187
|
+
title: string;
|
|
6246
6188
|
requester: {
|
|
6247
6189
|
_id: string;
|
|
6248
6190
|
name: string;
|
|
@@ -6253,8 +6195,6 @@ declare const zReportTicketResponse: z.ZodObject<{
|
|
|
6253
6195
|
updatedAt?: string | undefined;
|
|
6254
6196
|
phoneNumber?: string | undefined;
|
|
6255
6197
|
birthDate?: string | undefined;
|
|
6256
|
-
username?: string | undefined;
|
|
6257
|
-
password?: string | undefined;
|
|
6258
6198
|
roles?: {
|
|
6259
6199
|
user: number;
|
|
6260
6200
|
admin?: number | undefined;
|
|
@@ -6292,8 +6232,6 @@ declare const zReportTicketResponse: z.ZodObject<{
|
|
|
6292
6232
|
updatedAt?: string | undefined;
|
|
6293
6233
|
phoneNumber?: string | undefined;
|
|
6294
6234
|
birthDate?: string | undefined;
|
|
6295
|
-
username?: string | undefined;
|
|
6296
|
-
password?: string | undefined;
|
|
6297
6235
|
roles?: {
|
|
6298
6236
|
user: number;
|
|
6299
6237
|
admin?: number | undefined;
|
|
@@ -6321,8 +6259,8 @@ declare const zReportTicketResponse: z.ZodObject<{
|
|
|
6321
6259
|
}, {
|
|
6322
6260
|
status: TicketStatus;
|
|
6323
6261
|
_id: string;
|
|
6324
|
-
title: string;
|
|
6325
6262
|
description: string;
|
|
6263
|
+
title: string;
|
|
6326
6264
|
requester: {
|
|
6327
6265
|
_id: string;
|
|
6328
6266
|
name: string;
|
|
@@ -6333,8 +6271,6 @@ declare const zReportTicketResponse: z.ZodObject<{
|
|
|
6333
6271
|
updatedAt?: string | undefined;
|
|
6334
6272
|
phoneNumber?: string | undefined;
|
|
6335
6273
|
birthDate?: string | undefined;
|
|
6336
|
-
username?: string | undefined;
|
|
6337
|
-
password?: string | undefined;
|
|
6338
6274
|
roles?: {
|
|
6339
6275
|
user: number;
|
|
6340
6276
|
admin?: number | undefined;
|
|
@@ -6372,8 +6308,6 @@ declare const zReportTicketResponse: z.ZodObject<{
|
|
|
6372
6308
|
updatedAt?: string | undefined;
|
|
6373
6309
|
phoneNumber?: string | undefined;
|
|
6374
6310
|
birthDate?: string | undefined;
|
|
6375
|
-
username?: string | undefined;
|
|
6376
|
-
password?: string | undefined;
|
|
6377
6311
|
roles?: {
|
|
6378
6312
|
user: number;
|
|
6379
6313
|
admin?: number | undefined;
|
|
@@ -6575,8 +6509,8 @@ declare const zBEventConfig: z.ZodObject<{
|
|
|
6575
6509
|
width: number;
|
|
6576
6510
|
}>>;
|
|
6577
6511
|
}, "strip", z.ZodTypeAny, {
|
|
6578
|
-
title: string;
|
|
6579
6512
|
description: string;
|
|
6513
|
+
title: string;
|
|
6580
6514
|
url: string;
|
|
6581
6515
|
shortTitle: string;
|
|
6582
6516
|
tStart: Date;
|
|
@@ -6597,8 +6531,8 @@ declare const zBEventConfig: z.ZodObject<{
|
|
|
6597
6531
|
width: number;
|
|
6598
6532
|
} | undefined;
|
|
6599
6533
|
}, {
|
|
6600
|
-
title: string;
|
|
6601
6534
|
description: string;
|
|
6535
|
+
title: string;
|
|
6602
6536
|
url: string;
|
|
6603
6537
|
shortTitle: string;
|
|
6604
6538
|
tStart: Date;
|
|
@@ -6714,8 +6648,8 @@ declare const zEventConfig: z.ZodObject<{
|
|
|
6714
6648
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
6715
6649
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
6716
6650
|
_id: string;
|
|
6717
|
-
title: string;
|
|
6718
6651
|
description: string;
|
|
6652
|
+
title: string;
|
|
6719
6653
|
url: string;
|
|
6720
6654
|
shortTitle: string;
|
|
6721
6655
|
tStart: Date;
|
|
@@ -6740,8 +6674,8 @@ declare const zEventConfig: z.ZodObject<{
|
|
|
6740
6674
|
} | undefined;
|
|
6741
6675
|
}, {
|
|
6742
6676
|
_id: string;
|
|
6743
|
-
title: string;
|
|
6744
6677
|
description: string;
|
|
6678
|
+
title: string;
|
|
6745
6679
|
url: string;
|
|
6746
6680
|
shortTitle: string;
|
|
6747
6681
|
tStart: Date;
|
|
@@ -6836,8 +6770,8 @@ declare const zEventConfigResponse: z.ZodObject<{
|
|
|
6836
6770
|
}>, "many">;
|
|
6837
6771
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
6838
6772
|
_id: string;
|
|
6839
|
-
title: string;
|
|
6840
6773
|
description: string;
|
|
6774
|
+
title: string;
|
|
6841
6775
|
url: string;
|
|
6842
6776
|
shortTitle: string;
|
|
6843
6777
|
tStart: Date;
|
|
@@ -6873,8 +6807,8 @@ declare const zEventConfigResponse: z.ZodObject<{
|
|
|
6873
6807
|
} | undefined;
|
|
6874
6808
|
}, {
|
|
6875
6809
|
_id: string;
|
|
6876
|
-
title: string;
|
|
6877
6810
|
description: string;
|
|
6811
|
+
title: string;
|
|
6878
6812
|
url: string;
|
|
6879
6813
|
shortTitle: string;
|
|
6880
6814
|
tStart: Date;
|
|
@@ -6960,6 +6894,7 @@ declare const zBEventReg: z.ZodObject<{
|
|
|
6960
6894
|
showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
|
|
6961
6895
|
participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
|
|
6962
6896
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
|
6897
|
+
profileId: z.ZodOptional<z.ZodString>;
|
|
6963
6898
|
} & {
|
|
6964
6899
|
paymentAmount: z.ZodNumber;
|
|
6965
6900
|
paymentReceived: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6987,6 +6922,7 @@ declare const zBEventReg: z.ZodObject<{
|
|
|
6987
6922
|
showOnWhoIsComing?: boolean | undefined;
|
|
6988
6923
|
participateAs?: "adult" | "youth" | undefined;
|
|
6989
6924
|
dateOfBirth?: string | undefined;
|
|
6925
|
+
profileId?: string | undefined;
|
|
6990
6926
|
donation?: number | undefined;
|
|
6991
6927
|
createMethod?: string | undefined;
|
|
6992
6928
|
}, {
|
|
@@ -7012,6 +6948,7 @@ declare const zBEventReg: z.ZodObject<{
|
|
|
7012
6948
|
showOnWhoIsComing?: boolean | undefined;
|
|
7013
6949
|
participateAs?: "adult" | "youth" | undefined;
|
|
7014
6950
|
dateOfBirth?: string | undefined;
|
|
6951
|
+
profileId?: string | undefined;
|
|
7015
6952
|
donation?: number | undefined;
|
|
7016
6953
|
createMethod?: string | undefined;
|
|
7017
6954
|
}>;
|
|
@@ -7050,6 +6987,7 @@ declare const zEventReg: z.ZodObject<{
|
|
|
7050
6987
|
showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
|
|
7051
6988
|
participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
|
|
7052
6989
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
|
6990
|
+
profileId: z.ZodOptional<z.ZodString>;
|
|
7053
6991
|
} & {
|
|
7054
6992
|
paymentAmount: z.ZodNumber;
|
|
7055
6993
|
paymentReceived: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7083,6 +7021,7 @@ declare const zEventReg: z.ZodObject<{
|
|
|
7083
7021
|
showOnWhoIsComing?: boolean | undefined;
|
|
7084
7022
|
participateAs?: "adult" | "youth" | undefined;
|
|
7085
7023
|
dateOfBirth?: string | undefined;
|
|
7024
|
+
profileId?: string | undefined;
|
|
7086
7025
|
editedBy?: string | undefined;
|
|
7087
7026
|
createdAt?: string | undefined;
|
|
7088
7027
|
updatedAt?: string | undefined;
|
|
@@ -7112,6 +7051,7 @@ declare const zEventReg: z.ZodObject<{
|
|
|
7112
7051
|
showOnWhoIsComing?: boolean | undefined;
|
|
7113
7052
|
participateAs?: "adult" | "youth" | undefined;
|
|
7114
7053
|
dateOfBirth?: string | undefined;
|
|
7054
|
+
profileId?: string | undefined;
|
|
7115
7055
|
editedBy?: string | undefined;
|
|
7116
7056
|
createdAt?: string | undefined;
|
|
7117
7057
|
updatedAt?: string | undefined;
|
|
@@ -7136,6 +7076,7 @@ declare const zEventRegResponse: z.ZodObject<{
|
|
|
7136
7076
|
showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
|
|
7137
7077
|
participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
|
|
7138
7078
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
|
7079
|
+
profileId: z.ZodOptional<z.ZodString>;
|
|
7139
7080
|
paymentAmount: z.ZodNumber;
|
|
7140
7081
|
paymentReceived: z.ZodOptional<z.ZodBoolean>;
|
|
7141
7082
|
expireAt: z.ZodOptional<z.ZodDate>;
|
|
@@ -7246,6 +7187,7 @@ declare const zEventRegResponse: z.ZodObject<{
|
|
|
7246
7187
|
showOnWhoIsComing?: boolean | undefined;
|
|
7247
7188
|
participateAs?: "adult" | "youth" | undefined;
|
|
7248
7189
|
dateOfBirth?: string | undefined;
|
|
7190
|
+
profileId?: string | undefined;
|
|
7249
7191
|
editedBy?: string | undefined;
|
|
7250
7192
|
createdAt?: string | undefined;
|
|
7251
7193
|
updatedAt?: string | undefined;
|
|
@@ -7286,6 +7228,7 @@ declare const zEventRegResponse: z.ZodObject<{
|
|
|
7286
7228
|
showOnWhoIsComing?: boolean | undefined;
|
|
7287
7229
|
participateAs?: "adult" | "youth" | undefined;
|
|
7288
7230
|
dateOfBirth?: string | undefined;
|
|
7231
|
+
profileId?: string | undefined;
|
|
7289
7232
|
editedBy?: string | undefined;
|
|
7290
7233
|
createdAt?: string | undefined;
|
|
7291
7234
|
updatedAt?: string | undefined;
|
|
@@ -7515,8 +7458,6 @@ declare enum GoRank {
|
|
|
7515
7458
|
|
|
7516
7459
|
declare const zBUser: z.ZodObject<{
|
|
7517
7460
|
name: z.ZodString;
|
|
7518
|
-
username: z.ZodOptional<z.ZodString>;
|
|
7519
|
-
password: z.ZodOptional<z.ZodString>;
|
|
7520
7461
|
roles: z.ZodOptional<z.ZodObject<{
|
|
7521
7462
|
user: z.ZodNumber;
|
|
7522
7463
|
admin: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7595,8 +7536,6 @@ declare const zBUser: z.ZodObject<{
|
|
|
7595
7536
|
address?: string | undefined;
|
|
7596
7537
|
phoneNumber?: string | undefined;
|
|
7597
7538
|
birthDate?: string | undefined;
|
|
7598
|
-
username?: string | undefined;
|
|
7599
|
-
password?: string | undefined;
|
|
7600
7539
|
roles?: {
|
|
7601
7540
|
user: number;
|
|
7602
7541
|
admin?: number | undefined;
|
|
@@ -7626,8 +7565,6 @@ declare const zBUser: z.ZodObject<{
|
|
|
7626
7565
|
address?: string | undefined;
|
|
7627
7566
|
phoneNumber?: string | undefined;
|
|
7628
7567
|
birthDate?: string | undefined;
|
|
7629
|
-
username?: string | undefined;
|
|
7630
|
-
password?: string | undefined;
|
|
7631
7568
|
roles?: {
|
|
7632
7569
|
user: number;
|
|
7633
7570
|
admin?: number | undefined;
|
|
@@ -7654,8 +7591,6 @@ declare const zBUser: z.ZodObject<{
|
|
|
7654
7591
|
}>;
|
|
7655
7592
|
declare const zUser: z.ZodObject<{
|
|
7656
7593
|
name: z.ZodString;
|
|
7657
|
-
username: z.ZodOptional<z.ZodString>;
|
|
7658
|
-
password: z.ZodOptional<z.ZodString>;
|
|
7659
7594
|
roles: z.ZodOptional<z.ZodObject<{
|
|
7660
7595
|
user: z.ZodNumber;
|
|
7661
7596
|
admin: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7743,8 +7678,6 @@ declare const zUser: z.ZodObject<{
|
|
|
7743
7678
|
updatedAt?: string | undefined;
|
|
7744
7679
|
phoneNumber?: string | undefined;
|
|
7745
7680
|
birthDate?: string | undefined;
|
|
7746
|
-
username?: string | undefined;
|
|
7747
|
-
password?: string | undefined;
|
|
7748
7681
|
roles?: {
|
|
7749
7682
|
user: number;
|
|
7750
7683
|
admin?: number | undefined;
|
|
@@ -7778,8 +7711,6 @@ declare const zUser: z.ZodObject<{
|
|
|
7778
7711
|
updatedAt?: string | undefined;
|
|
7779
7712
|
phoneNumber?: string | undefined;
|
|
7780
7713
|
birthDate?: string | undefined;
|
|
7781
|
-
username?: string | undefined;
|
|
7782
|
-
password?: string | undefined;
|
|
7783
7714
|
roles?: {
|
|
7784
7715
|
user: number;
|
|
7785
7716
|
admin?: number | undefined;
|
|
@@ -7912,8 +7843,6 @@ type UserRoles = z.infer<typeof zUserRoles>;
|
|
|
7912
7843
|
|
|
7913
7844
|
declare const zBStudent: z.ZodObject<{
|
|
7914
7845
|
name: z.ZodString;
|
|
7915
|
-
username: z.ZodOptional<z.ZodString>;
|
|
7916
|
-
password: z.ZodOptional<z.ZodString>;
|
|
7917
7846
|
roles: z.ZodOptional<z.ZodObject<{
|
|
7918
7847
|
user: z.ZodNumber;
|
|
7919
7848
|
admin: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7990,8 +7919,6 @@ declare const zBStudent: z.ZodObject<{
|
|
|
7990
7919
|
address?: string | undefined;
|
|
7991
7920
|
phoneNumber?: string | undefined;
|
|
7992
7921
|
birthDate?: string | undefined;
|
|
7993
|
-
username?: string | undefined;
|
|
7994
|
-
password?: string | undefined;
|
|
7995
7922
|
roles?: {
|
|
7996
7923
|
user: number;
|
|
7997
7924
|
admin?: number | undefined;
|
|
@@ -8023,8 +7950,6 @@ declare const zBStudent: z.ZodObject<{
|
|
|
8023
7950
|
address?: string | undefined;
|
|
8024
7951
|
phoneNumber?: string | undefined;
|
|
8025
7952
|
birthDate?: string | undefined;
|
|
8026
|
-
username?: string | undefined;
|
|
8027
|
-
password?: string | undefined;
|
|
8028
7953
|
roles?: {
|
|
8029
7954
|
user: number;
|
|
8030
7955
|
admin?: number | undefined;
|
|
@@ -8052,8 +7977,6 @@ declare const zBStudent: z.ZodObject<{
|
|
|
8052
7977
|
}>;
|
|
8053
7978
|
declare const zStudent: z.ZodObject<{
|
|
8054
7979
|
name: z.ZodString;
|
|
8055
|
-
username: z.ZodOptional<z.ZodString>;
|
|
8056
|
-
password: z.ZodOptional<z.ZodString>;
|
|
8057
7980
|
roles: z.ZodOptional<z.ZodObject<{
|
|
8058
7981
|
user: z.ZodNumber;
|
|
8059
7982
|
admin: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8139,8 +8062,6 @@ declare const zStudent: z.ZodObject<{
|
|
|
8139
8062
|
updatedAt?: string | undefined;
|
|
8140
8063
|
phoneNumber?: string | undefined;
|
|
8141
8064
|
birthDate?: string | undefined;
|
|
8142
|
-
username?: string | undefined;
|
|
8143
|
-
password?: string | undefined;
|
|
8144
8065
|
roles?: {
|
|
8145
8066
|
user: number;
|
|
8146
8067
|
admin?: number | undefined;
|
|
@@ -8176,8 +8097,6 @@ declare const zStudent: z.ZodObject<{
|
|
|
8176
8097
|
updatedAt?: string | undefined;
|
|
8177
8098
|
phoneNumber?: string | undefined;
|
|
8178
8099
|
birthDate?: string | undefined;
|
|
8179
|
-
username?: string | undefined;
|
|
8180
|
-
password?: string | undefined;
|
|
8181
8100
|
roles?: {
|
|
8182
8101
|
user: number;
|
|
8183
8102
|
admin?: number | undefined;
|
|
@@ -8208,8 +8127,6 @@ type Student = z.infer<typeof zStudent>;
|
|
|
8208
8127
|
|
|
8209
8128
|
declare const zBTeacher: z.ZodObject<{
|
|
8210
8129
|
name: z.ZodString;
|
|
8211
|
-
username: z.ZodOptional<z.ZodString>;
|
|
8212
|
-
password: z.ZodOptional<z.ZodString>;
|
|
8213
8130
|
roles: z.ZodOptional<z.ZodObject<{
|
|
8214
8131
|
user: z.ZodNumber;
|
|
8215
8132
|
admin: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8312,15 +8229,19 @@ declare const zBTeacher: z.ZodObject<{
|
|
|
8312
8229
|
* ]
|
|
8313
8230
|
*/
|
|
8314
8231
|
available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
|
|
8232
|
+
/**
|
|
8233
|
+
* Schools the teacher is affiliated with
|
|
8234
|
+
* Required for showing on the aurora "about" page
|
|
8235
|
+
*/
|
|
8236
|
+
schools: z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">;
|
|
8315
8237
|
}, "strip", z.ZodTypeAny, {
|
|
8316
8238
|
rank: GoRank;
|
|
8317
8239
|
name: string;
|
|
8240
|
+
schools: NYIGSchool[];
|
|
8318
8241
|
email?: string | undefined;
|
|
8319
8242
|
address?: string | undefined;
|
|
8320
8243
|
phoneNumber?: string | undefined;
|
|
8321
8244
|
birthDate?: string | undefined;
|
|
8322
|
-
username?: string | undefined;
|
|
8323
|
-
password?: string | undefined;
|
|
8324
8245
|
roles?: {
|
|
8325
8246
|
user: number;
|
|
8326
8247
|
admin?: number | undefined;
|
|
@@ -8353,12 +8274,11 @@ declare const zBTeacher: z.ZodObject<{
|
|
|
8353
8274
|
}, {
|
|
8354
8275
|
rank: GoRank;
|
|
8355
8276
|
name: string;
|
|
8277
|
+
schools: NYIGSchool[];
|
|
8356
8278
|
email?: string | undefined;
|
|
8357
8279
|
address?: string | undefined;
|
|
8358
8280
|
phoneNumber?: string | undefined;
|
|
8359
8281
|
birthDate?: string | undefined;
|
|
8360
|
-
username?: string | undefined;
|
|
8361
|
-
password?: string | undefined;
|
|
8362
8282
|
roles?: {
|
|
8363
8283
|
user: number;
|
|
8364
8284
|
admin?: number | undefined;
|
|
@@ -8391,8 +8311,6 @@ declare const zBTeacher: z.ZodObject<{
|
|
|
8391
8311
|
}>;
|
|
8392
8312
|
declare const zTeacher: z.ZodObject<{
|
|
8393
8313
|
name: z.ZodString;
|
|
8394
|
-
username: z.ZodOptional<z.ZodString>;
|
|
8395
|
-
password: z.ZodOptional<z.ZodString>;
|
|
8396
8314
|
roles: z.ZodOptional<z.ZodObject<{
|
|
8397
8315
|
user: z.ZodNumber;
|
|
8398
8316
|
admin: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8495,6 +8413,11 @@ declare const zTeacher: z.ZodObject<{
|
|
|
8495
8413
|
* ]
|
|
8496
8414
|
*/
|
|
8497
8415
|
available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
|
|
8416
|
+
/**
|
|
8417
|
+
* Schools the teacher is affiliated with
|
|
8418
|
+
* Required for showing on the aurora "about" page
|
|
8419
|
+
*/
|
|
8420
|
+
schools: z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">;
|
|
8498
8421
|
} & {
|
|
8499
8422
|
_id: z.ZodString;
|
|
8500
8423
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
@@ -8504,6 +8427,7 @@ declare const zTeacher: z.ZodObject<{
|
|
|
8504
8427
|
rank: GoRank;
|
|
8505
8428
|
_id: string;
|
|
8506
8429
|
name: string;
|
|
8430
|
+
schools: NYIGSchool[];
|
|
8507
8431
|
email?: string | undefined;
|
|
8508
8432
|
address?: string | undefined;
|
|
8509
8433
|
editedBy?: string | undefined;
|
|
@@ -8511,8 +8435,6 @@ declare const zTeacher: z.ZodObject<{
|
|
|
8511
8435
|
updatedAt?: string | undefined;
|
|
8512
8436
|
phoneNumber?: string | undefined;
|
|
8513
8437
|
birthDate?: string | undefined;
|
|
8514
|
-
username?: string | undefined;
|
|
8515
|
-
password?: string | undefined;
|
|
8516
8438
|
roles?: {
|
|
8517
8439
|
user: number;
|
|
8518
8440
|
admin?: number | undefined;
|
|
@@ -8546,6 +8468,7 @@ declare const zTeacher: z.ZodObject<{
|
|
|
8546
8468
|
rank: GoRank;
|
|
8547
8469
|
_id: string;
|
|
8548
8470
|
name: string;
|
|
8471
|
+
schools: NYIGSchool[];
|
|
8549
8472
|
email?: string | undefined;
|
|
8550
8473
|
address?: string | undefined;
|
|
8551
8474
|
editedBy?: string | undefined;
|
|
@@ -8553,8 +8476,6 @@ declare const zTeacher: z.ZodObject<{
|
|
|
8553
8476
|
updatedAt?: string | undefined;
|
|
8554
8477
|
phoneNumber?: string | undefined;
|
|
8555
8478
|
birthDate?: string | undefined;
|
|
8556
|
-
username?: string | undefined;
|
|
8557
|
-
password?: string | undefined;
|
|
8558
8479
|
roles?: {
|
|
8559
8480
|
user: number;
|
|
8560
8481
|
admin?: number | undefined;
|
|
@@ -8587,8 +8508,6 @@ declare const zTeacher: z.ZodObject<{
|
|
|
8587
8508
|
}>;
|
|
8588
8509
|
declare const zTeacherResponse: z.ZodObject<Omit<{
|
|
8589
8510
|
name: z.ZodString;
|
|
8590
|
-
username: z.ZodOptional<z.ZodString>;
|
|
8591
|
-
password: z.ZodOptional<z.ZodString>;
|
|
8592
8511
|
roles: z.ZodOptional<z.ZodObject<{
|
|
8593
8512
|
user: z.ZodNumber;
|
|
8594
8513
|
admin: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8691,23 +8610,28 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
|
|
|
8691
8610
|
* ]
|
|
8692
8611
|
*/
|
|
8693
8612
|
available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
|
|
8613
|
+
/**
|
|
8614
|
+
* Schools the teacher is affiliated with
|
|
8615
|
+
* Required for showing on the aurora "about" page
|
|
8616
|
+
*/
|
|
8617
|
+
schools: z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">;
|
|
8694
8618
|
} & {
|
|
8695
8619
|
_id: z.ZodString;
|
|
8696
8620
|
editedBy: z.ZodOptional<z.ZodString>;
|
|
8697
8621
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8698
8622
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8699
|
-
}, "editedBy" | "createdAt" | "updatedAt" | "
|
|
8623
|
+
}, "editedBy" | "createdAt" | "updatedAt" | "roles"> & {
|
|
8700
8624
|
role: z.ZodNumber;
|
|
8701
8625
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
8702
8626
|
rank: GoRank;
|
|
8703
8627
|
_id: string;
|
|
8704
8628
|
name: string;
|
|
8629
|
+
schools: NYIGSchool[];
|
|
8705
8630
|
role: number;
|
|
8706
8631
|
email?: string | undefined;
|
|
8707
8632
|
address?: string | undefined;
|
|
8708
8633
|
phoneNumber?: string | undefined;
|
|
8709
8634
|
birthDate?: string | undefined;
|
|
8710
|
-
username?: string | undefined;
|
|
8711
8635
|
country?: string | undefined;
|
|
8712
8636
|
shouldChangePassword?: boolean | undefined;
|
|
8713
8637
|
profiles?: {
|
|
@@ -8736,12 +8660,12 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
|
|
|
8736
8660
|
rank: GoRank;
|
|
8737
8661
|
_id: string;
|
|
8738
8662
|
name: string;
|
|
8663
|
+
schools: NYIGSchool[];
|
|
8739
8664
|
role: number;
|
|
8740
8665
|
email?: string | undefined;
|
|
8741
8666
|
address?: string | undefined;
|
|
8742
8667
|
phoneNumber?: string | undefined;
|
|
8743
8668
|
birthDate?: string | undefined;
|
|
8744
|
-
username?: string | undefined;
|
|
8745
8669
|
country?: string | undefined;
|
|
8746
8670
|
shouldChangePassword?: boolean | undefined;
|
|
8747
8671
|
profiles?: {
|