@nyig/models 0.6.4 → 0.6.5

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.
Files changed (5) hide show
  1. package/index.d.mts +115 -221
  2. package/index.d.ts +115 -221
  3. package/index.js +101 -90
  4. package/index.mjs +101 -90
  5. package/package.json +1 -1
package/index.d.mts CHANGED
@@ -271,8 +271,6 @@ declare const zAttendanceResponse: z.ZodObject<{
271
271
  } & {
272
272
  student: z.ZodObject<{
273
273
  name: z.ZodString;
274
- username: z.ZodOptional<z.ZodString>;
275
- password: z.ZodOptional<z.ZodString>;
276
274
  roles: z.ZodOptional<z.ZodObject<{
277
275
  user: z.ZodNumber;
278
276
  admin: z.ZodOptional<z.ZodNumber>;
@@ -358,8 +356,6 @@ declare const zAttendanceResponse: z.ZodObject<{
358
356
  updatedAt?: string | undefined;
359
357
  phoneNumber?: string | undefined;
360
358
  birthDate?: string | undefined;
361
- username?: string | undefined;
362
- password?: string | undefined;
363
359
  roles?: {
364
360
  user: number;
365
361
  admin?: number | undefined;
@@ -395,8 +391,6 @@ declare const zAttendanceResponse: z.ZodObject<{
395
391
  updatedAt?: string | undefined;
396
392
  phoneNumber?: string | undefined;
397
393
  birthDate?: string | undefined;
398
- username?: string | undefined;
399
- password?: string | undefined;
400
394
  roles?: {
401
395
  user: number;
402
396
  admin?: number | undefined;
@@ -435,8 +429,6 @@ declare const zAttendanceResponse: z.ZodObject<{
435
429
  updatedAt?: string | undefined;
436
430
  phoneNumber?: string | undefined;
437
431
  birthDate?: string | undefined;
438
- username?: string | undefined;
439
- password?: string | undefined;
440
432
  roles?: {
441
433
  user: number;
442
434
  admin?: number | undefined;
@@ -486,8 +478,6 @@ declare const zAttendanceResponse: z.ZodObject<{
486
478
  updatedAt?: string | undefined;
487
479
  phoneNumber?: string | undefined;
488
480
  birthDate?: string | undefined;
489
- username?: string | undefined;
490
- password?: string | undefined;
491
481
  roles?: {
492
482
  user: number;
493
483
  admin?: number | undefined;
@@ -785,7 +775,8 @@ declare const zCampTrackerResponse: z.ZodObject<{
785
775
  duration: z.ZodNumber;
786
776
  price: z.ZodNumber;
787
777
  description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
788
- nyigSchool: z.ZodNativeEnum<typeof NYIGSchool>;
778
+ nyigSchool: z.ZodOptional<z.ZodNativeEnum<typeof NYIGSchool>>;
779
+ schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
789
780
  recLevel: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
790
781
  halfCampTuition: z.ZodOptional<z.ZodNumber>;
791
782
  fullCampTuition: z.ZodOptional<z.ZodNumber>;
@@ -801,11 +792,12 @@ declare const zCampTrackerResponse: z.ZodObject<{
801
792
  category: CourseCategory;
802
793
  duration: number;
803
794
  price: number;
804
- nyigSchool: NYIGSchool;
805
795
  editedBy?: string | undefined;
806
796
  createdAt?: string | undefined;
807
797
  updatedAt?: string | undefined;
808
798
  description?: string | undefined;
799
+ nyigSchool?: NYIGSchool | undefined;
800
+ schools?: NYIGSchool[] | undefined;
809
801
  recLevel?: string | undefined;
810
802
  halfCampTuition?: number | undefined;
811
803
  fullCampTuition?: number | undefined;
@@ -816,11 +808,12 @@ declare const zCampTrackerResponse: z.ZodObject<{
816
808
  category: CourseCategory;
817
809
  duration: number;
818
810
  price: number;
819
- nyigSchool: NYIGSchool;
820
811
  editedBy?: string | undefined;
821
812
  createdAt?: string | undefined;
822
813
  updatedAt?: string | undefined;
823
814
  description?: string | undefined;
815
+ nyigSchool?: NYIGSchool | undefined;
816
+ schools?: NYIGSchool[] | undefined;
824
817
  recLevel?: string | undefined;
825
818
  halfCampTuition?: number | undefined;
826
819
  fullCampTuition?: number | undefined;
@@ -828,8 +821,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
828
821
  }>;
829
822
  teachers: z.ZodArray<z.ZodObject<{
830
823
  name: z.ZodString;
831
- username: z.ZodOptional<z.ZodString>;
832
- password: z.ZodOptional<z.ZodString>;
833
824
  roles: z.ZodOptional<z.ZodObject<{
834
825
  user: z.ZodNumber;
835
826
  admin: z.ZodOptional<z.ZodNumber>;
@@ -904,6 +895,7 @@ declare const zCampTrackerResponse: z.ZodObject<{
904
895
  bio: z.ZodOptional<z.ZodString>;
905
896
  imageUrl: z.ZodOptional<z.ZodString>;
906
897
  available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
898
+ schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
907
899
  } & {
908
900
  _id: z.ZodString;
909
901
  editedBy: z.ZodOptional<z.ZodString>;
@@ -920,8 +912,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
920
912
  updatedAt?: string | undefined;
921
913
  phoneNumber?: string | undefined;
922
914
  birthDate?: string | undefined;
923
- username?: string | undefined;
924
- password?: string | undefined;
925
915
  roles?: {
926
916
  user: number;
927
917
  admin?: number | undefined;
@@ -945,6 +935,7 @@ declare const zCampTrackerResponse: z.ZodObject<{
945
935
  phoneNumber?: string | undefined;
946
936
  birthDate?: string | undefined;
947
937
  }[] | undefined;
938
+ schools?: NYIGSchool[] | undefined;
948
939
  isInactive?: boolean | undefined;
949
940
  doesNotTeachPrivateLessons?: boolean | undefined;
950
941
  title?: string | undefined;
@@ -962,8 +953,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
962
953
  updatedAt?: string | undefined;
963
954
  phoneNumber?: string | undefined;
964
955
  birthDate?: string | undefined;
965
- username?: string | undefined;
966
- password?: string | undefined;
967
956
  roles?: {
968
957
  user: number;
969
958
  admin?: number | undefined;
@@ -987,6 +976,7 @@ declare const zCampTrackerResponse: z.ZodObject<{
987
976
  phoneNumber?: string | undefined;
988
977
  birthDate?: string | undefined;
989
978
  }[] | undefined;
979
+ schools?: NYIGSchool[] | undefined;
990
980
  isInactive?: boolean | undefined;
991
981
  doesNotTeachPrivateLessons?: boolean | undefined;
992
982
  title?: string | undefined;
@@ -1053,8 +1043,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
1053
1043
  } & {
1054
1044
  student: z.ZodObject<{
1055
1045
  name: z.ZodString;
1056
- username: z.ZodOptional<z.ZodString>;
1057
- password: z.ZodOptional<z.ZodString>;
1058
1046
  roles: z.ZodOptional<z.ZodObject<{
1059
1047
  user: z.ZodNumber;
1060
1048
  admin: z.ZodOptional<z.ZodNumber>;
@@ -1140,8 +1128,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
1140
1128
  updatedAt?: string | undefined;
1141
1129
  phoneNumber?: string | undefined;
1142
1130
  birthDate?: string | undefined;
1143
- username?: string | undefined;
1144
- password?: string | undefined;
1145
1131
  roles?: {
1146
1132
  user: number;
1147
1133
  admin?: number | undefined;
@@ -1177,8 +1163,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
1177
1163
  updatedAt?: string | undefined;
1178
1164
  phoneNumber?: string | undefined;
1179
1165
  birthDate?: string | undefined;
1180
- username?: string | undefined;
1181
- password?: string | undefined;
1182
1166
  roles?: {
1183
1167
  user: number;
1184
1168
  admin?: number | undefined;
@@ -1217,8 +1201,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
1217
1201
  updatedAt?: string | undefined;
1218
1202
  phoneNumber?: string | undefined;
1219
1203
  birthDate?: string | undefined;
1220
- username?: string | undefined;
1221
- password?: string | undefined;
1222
1204
  roles?: {
1223
1205
  user: number;
1224
1206
  admin?: number | undefined;
@@ -1268,8 +1250,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
1268
1250
  updatedAt?: string | undefined;
1269
1251
  phoneNumber?: string | undefined;
1270
1252
  birthDate?: string | undefined;
1271
- username?: string | undefined;
1272
- password?: string | undefined;
1273
1253
  roles?: {
1274
1254
  user: number;
1275
1255
  admin?: number | undefined;
@@ -1315,11 +1295,12 @@ declare const zCampTrackerResponse: z.ZodObject<{
1315
1295
  category: CourseCategory;
1316
1296
  duration: number;
1317
1297
  price: number;
1318
- nyigSchool: NYIGSchool;
1319
1298
  editedBy?: string | undefined;
1320
1299
  createdAt?: string | undefined;
1321
1300
  updatedAt?: string | undefined;
1322
1301
  description?: string | undefined;
1302
+ nyigSchool?: NYIGSchool | undefined;
1303
+ schools?: NYIGSchool[] | undefined;
1323
1304
  recLevel?: string | undefined;
1324
1305
  halfCampTuition?: number | undefined;
1325
1306
  fullCampTuition?: number | undefined;
@@ -1336,8 +1317,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
1336
1317
  updatedAt?: string | undefined;
1337
1318
  phoneNumber?: string | undefined;
1338
1319
  birthDate?: string | undefined;
1339
- username?: string | undefined;
1340
- password?: string | undefined;
1341
1320
  roles?: {
1342
1321
  user: number;
1343
1322
  admin?: number | undefined;
@@ -1361,6 +1340,7 @@ declare const zCampTrackerResponse: z.ZodObject<{
1361
1340
  phoneNumber?: string | undefined;
1362
1341
  birthDate?: string | undefined;
1363
1342
  }[] | undefined;
1343
+ schools?: NYIGSchool[] | undefined;
1364
1344
  isInactive?: boolean | undefined;
1365
1345
  doesNotTeachPrivateLessons?: boolean | undefined;
1366
1346
  title?: string | undefined;
@@ -1394,8 +1374,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
1394
1374
  updatedAt?: string | undefined;
1395
1375
  phoneNumber?: string | undefined;
1396
1376
  birthDate?: string | undefined;
1397
- username?: string | undefined;
1398
- password?: string | undefined;
1399
1377
  roles?: {
1400
1378
  user: number;
1401
1379
  admin?: number | undefined;
@@ -1447,11 +1425,12 @@ declare const zCampTrackerResponse: z.ZodObject<{
1447
1425
  category: CourseCategory;
1448
1426
  duration: number;
1449
1427
  price: number;
1450
- nyigSchool: NYIGSchool;
1451
1428
  editedBy?: string | undefined;
1452
1429
  createdAt?: string | undefined;
1453
1430
  updatedAt?: string | undefined;
1454
1431
  description?: string | undefined;
1432
+ nyigSchool?: NYIGSchool | undefined;
1433
+ schools?: NYIGSchool[] | undefined;
1455
1434
  recLevel?: string | undefined;
1456
1435
  halfCampTuition?: number | undefined;
1457
1436
  fullCampTuition?: number | undefined;
@@ -1468,8 +1447,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
1468
1447
  updatedAt?: string | undefined;
1469
1448
  phoneNumber?: string | undefined;
1470
1449
  birthDate?: string | undefined;
1471
- username?: string | undefined;
1472
- password?: string | undefined;
1473
1450
  roles?: {
1474
1451
  user: number;
1475
1452
  admin?: number | undefined;
@@ -1493,6 +1470,7 @@ declare const zCampTrackerResponse: z.ZodObject<{
1493
1470
  phoneNumber?: string | undefined;
1494
1471
  birthDate?: string | undefined;
1495
1472
  }[] | undefined;
1473
+ schools?: NYIGSchool[] | undefined;
1496
1474
  isInactive?: boolean | undefined;
1497
1475
  doesNotTeachPrivateLessons?: boolean | undefined;
1498
1476
  title?: string | undefined;
@@ -1526,8 +1504,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
1526
1504
  updatedAt?: string | undefined;
1527
1505
  phoneNumber?: string | undefined;
1528
1506
  birthDate?: string | undefined;
1529
- username?: string | undefined;
1530
- password?: string | undefined;
1531
1507
  roles?: {
1532
1508
  user: number;
1533
1509
  admin?: number | undefined;
@@ -1710,7 +1686,8 @@ declare const zClassTrackerResponse: z.ZodObject<{
1710
1686
  duration: z.ZodNumber;
1711
1687
  price: z.ZodNumber;
1712
1688
  description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1713
- nyigSchool: z.ZodNativeEnum<typeof NYIGSchool>;
1689
+ nyigSchool: z.ZodOptional<z.ZodNativeEnum<typeof NYIGSchool>>;
1690
+ schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
1714
1691
  recLevel: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1715
1692
  halfCampTuition: z.ZodOptional<z.ZodNumber>;
1716
1693
  fullCampTuition: z.ZodOptional<z.ZodNumber>;
@@ -1726,11 +1703,12 @@ declare const zClassTrackerResponse: z.ZodObject<{
1726
1703
  category: CourseCategory;
1727
1704
  duration: number;
1728
1705
  price: number;
1729
- nyigSchool: NYIGSchool;
1730
1706
  editedBy?: string | undefined;
1731
1707
  createdAt?: string | undefined;
1732
1708
  updatedAt?: string | undefined;
1733
1709
  description?: string | undefined;
1710
+ nyigSchool?: NYIGSchool | undefined;
1711
+ schools?: NYIGSchool[] | undefined;
1734
1712
  recLevel?: string | undefined;
1735
1713
  halfCampTuition?: number | undefined;
1736
1714
  fullCampTuition?: number | undefined;
@@ -1741,11 +1719,12 @@ declare const zClassTrackerResponse: z.ZodObject<{
1741
1719
  category: CourseCategory;
1742
1720
  duration: number;
1743
1721
  price: number;
1744
- nyigSchool: NYIGSchool;
1745
1722
  editedBy?: string | undefined;
1746
1723
  createdAt?: string | undefined;
1747
1724
  updatedAt?: string | undefined;
1748
1725
  description?: string | undefined;
1726
+ nyigSchool?: NYIGSchool | undefined;
1727
+ schools?: NYIGSchool[] | undefined;
1749
1728
  recLevel?: string | undefined;
1750
1729
  halfCampTuition?: number | undefined;
1751
1730
  fullCampTuition?: number | undefined;
@@ -1753,8 +1732,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
1753
1732
  }>;
1754
1733
  teacher: z.ZodObject<{
1755
1734
  name: z.ZodString;
1756
- username: z.ZodOptional<z.ZodString>;
1757
- password: z.ZodOptional<z.ZodString>;
1758
1735
  roles: z.ZodOptional<z.ZodObject<{
1759
1736
  user: z.ZodNumber;
1760
1737
  admin: z.ZodOptional<z.ZodNumber>;
@@ -1829,6 +1806,7 @@ declare const zClassTrackerResponse: z.ZodObject<{
1829
1806
  bio: z.ZodOptional<z.ZodString>;
1830
1807
  imageUrl: z.ZodOptional<z.ZodString>;
1831
1808
  available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
1809
+ schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
1832
1810
  } & {
1833
1811
  _id: z.ZodString;
1834
1812
  editedBy: z.ZodOptional<z.ZodString>;
@@ -1845,8 +1823,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
1845
1823
  updatedAt?: string | undefined;
1846
1824
  phoneNumber?: string | undefined;
1847
1825
  birthDate?: string | undefined;
1848
- username?: string | undefined;
1849
- password?: string | undefined;
1850
1826
  roles?: {
1851
1827
  user: number;
1852
1828
  admin?: number | undefined;
@@ -1870,6 +1846,7 @@ declare const zClassTrackerResponse: z.ZodObject<{
1870
1846
  phoneNumber?: string | undefined;
1871
1847
  birthDate?: string | undefined;
1872
1848
  }[] | undefined;
1849
+ schools?: NYIGSchool[] | undefined;
1873
1850
  isInactive?: boolean | undefined;
1874
1851
  doesNotTeachPrivateLessons?: boolean | undefined;
1875
1852
  title?: string | undefined;
@@ -1887,8 +1864,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
1887
1864
  updatedAt?: string | undefined;
1888
1865
  phoneNumber?: string | undefined;
1889
1866
  birthDate?: string | undefined;
1890
- username?: string | undefined;
1891
- password?: string | undefined;
1892
1867
  roles?: {
1893
1868
  user: number;
1894
1869
  admin?: number | undefined;
@@ -1912,6 +1887,7 @@ declare const zClassTrackerResponse: z.ZodObject<{
1912
1887
  phoneNumber?: string | undefined;
1913
1888
  birthDate?: string | undefined;
1914
1889
  }[] | undefined;
1890
+ schools?: NYIGSchool[] | undefined;
1915
1891
  isInactive?: boolean | undefined;
1916
1892
  doesNotTeachPrivateLessons?: boolean | undefined;
1917
1893
  title?: string | undefined;
@@ -1921,8 +1897,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
1921
1897
  }>;
1922
1898
  student: z.ZodObject<{
1923
1899
  name: z.ZodString;
1924
- username: z.ZodOptional<z.ZodString>;
1925
- password: z.ZodOptional<z.ZodString>;
1926
1900
  roles: z.ZodOptional<z.ZodObject<{
1927
1901
  user: z.ZodNumber;
1928
1902
  admin: z.ZodOptional<z.ZodNumber>;
@@ -2008,8 +1982,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
2008
1982
  updatedAt?: string | undefined;
2009
1983
  phoneNumber?: string | undefined;
2010
1984
  birthDate?: string | undefined;
2011
- username?: string | undefined;
2012
- password?: string | undefined;
2013
1985
  roles?: {
2014
1986
  user: number;
2015
1987
  admin?: number | undefined;
@@ -2045,8 +2017,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
2045
2017
  updatedAt?: string | undefined;
2046
2018
  phoneNumber?: string | undefined;
2047
2019
  birthDate?: string | undefined;
2048
- username?: string | undefined;
2049
- password?: string | undefined;
2050
2020
  roles?: {
2051
2021
  user: number;
2052
2022
  admin?: number | undefined;
@@ -2085,8 +2055,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
2085
2055
  updatedAt?: string | undefined;
2086
2056
  phoneNumber?: string | undefined;
2087
2057
  birthDate?: string | undefined;
2088
- username?: string | undefined;
2089
- password?: string | undefined;
2090
2058
  roles?: {
2091
2059
  user: number;
2092
2060
  admin?: number | undefined;
@@ -2118,11 +2086,12 @@ declare const zClassTrackerResponse: z.ZodObject<{
2118
2086
  category: CourseCategory;
2119
2087
  duration: number;
2120
2088
  price: number;
2121
- nyigSchool: NYIGSchool;
2122
2089
  editedBy?: string | undefined;
2123
2090
  createdAt?: string | undefined;
2124
2091
  updatedAt?: string | undefined;
2125
2092
  description?: string | undefined;
2093
+ nyigSchool?: NYIGSchool | undefined;
2094
+ schools?: NYIGSchool[] | undefined;
2126
2095
  recLevel?: string | undefined;
2127
2096
  halfCampTuition?: number | undefined;
2128
2097
  fullCampTuition?: number | undefined;
@@ -2139,8 +2108,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
2139
2108
  updatedAt?: string | undefined;
2140
2109
  phoneNumber?: string | undefined;
2141
2110
  birthDate?: string | undefined;
2142
- username?: string | undefined;
2143
- password?: string | undefined;
2144
2111
  roles?: {
2145
2112
  user: number;
2146
2113
  admin?: number | undefined;
@@ -2164,6 +2131,7 @@ declare const zClassTrackerResponse: z.ZodObject<{
2164
2131
  phoneNumber?: string | undefined;
2165
2132
  birthDate?: string | undefined;
2166
2133
  }[] | undefined;
2134
+ schools?: NYIGSchool[] | undefined;
2167
2135
  isInactive?: boolean | undefined;
2168
2136
  doesNotTeachPrivateLessons?: boolean | undefined;
2169
2137
  title?: string | undefined;
@@ -2193,8 +2161,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
2193
2161
  updatedAt?: string | undefined;
2194
2162
  phoneNumber?: string | undefined;
2195
2163
  birthDate?: string | undefined;
2196
- username?: string | undefined;
2197
- password?: string | undefined;
2198
2164
  roles?: {
2199
2165
  user: number;
2200
2166
  admin?: number | undefined;
@@ -2226,11 +2192,12 @@ declare const zClassTrackerResponse: z.ZodObject<{
2226
2192
  category: CourseCategory;
2227
2193
  duration: number;
2228
2194
  price: number;
2229
- nyigSchool: NYIGSchool;
2230
2195
  editedBy?: string | undefined;
2231
2196
  createdAt?: string | undefined;
2232
2197
  updatedAt?: string | undefined;
2233
2198
  description?: string | undefined;
2199
+ nyigSchool?: NYIGSchool | undefined;
2200
+ schools?: NYIGSchool[] | undefined;
2234
2201
  recLevel?: string | undefined;
2235
2202
  halfCampTuition?: number | undefined;
2236
2203
  fullCampTuition?: number | undefined;
@@ -2247,8 +2214,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
2247
2214
  updatedAt?: string | undefined;
2248
2215
  phoneNumber?: string | undefined;
2249
2216
  birthDate?: string | undefined;
2250
- username?: string | undefined;
2251
- password?: string | undefined;
2252
2217
  roles?: {
2253
2218
  user: number;
2254
2219
  admin?: number | undefined;
@@ -2272,6 +2237,7 @@ declare const zClassTrackerResponse: z.ZodObject<{
2272
2237
  phoneNumber?: string | undefined;
2273
2238
  birthDate?: string | undefined;
2274
2239
  }[] | undefined;
2240
+ schools?: NYIGSchool[] | undefined;
2275
2241
  isInactive?: boolean | undefined;
2276
2242
  doesNotTeachPrivateLessons?: boolean | undefined;
2277
2243
  title?: string | undefined;
@@ -2375,7 +2341,8 @@ declare enum CourseCategory {
2375
2341
 
2376
2342
  declare enum NYIGSchool {
2377
2343
  MANHATTAN = "Manhattan",
2378
- LITTLENECK = "Little Neck"
2344
+ LITTLENECK = "Little Neck",
2345
+ ONLINE = "Online"
2379
2346
  }
2380
2347
 
2381
2348
  declare const zBCourse: z.ZodObject<{
@@ -2391,9 +2358,14 @@ declare const zBCourse: z.ZodObject<{
2391
2358
  price: z.ZodNumber;
2392
2359
  description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2393
2360
  /**
2394
- * NYIG School locations
2361
+ * NYIG School location
2362
+ * @deprecated
2363
+ */
2364
+ nyigSchool: z.ZodOptional<z.ZodNativeEnum<typeof NYIGSchool>>;
2365
+ /**
2366
+ * NYIG School locations the course is offered at
2395
2367
  */
2396
- nyigSchool: z.ZodNativeEnum<typeof NYIGSchool>;
2368
+ schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
2397
2369
  /**
2398
2370
  * Recommended level before taking this course
2399
2371
  */
@@ -2412,8 +2384,9 @@ declare const zBCourse: z.ZodObject<{
2412
2384
  category: CourseCategory;
2413
2385
  duration: number;
2414
2386
  price: number;
2415
- nyigSchool: NYIGSchool;
2416
2387
  description?: string | undefined;
2388
+ nyigSchool?: NYIGSchool | undefined;
2389
+ schools?: NYIGSchool[] | undefined;
2417
2390
  recLevel?: string | undefined;
2418
2391
  halfCampTuition?: number | undefined;
2419
2392
  fullCampTuition?: number | undefined;
@@ -2423,8 +2396,9 @@ declare const zBCourse: z.ZodObject<{
2423
2396
  category: CourseCategory;
2424
2397
  duration: number;
2425
2398
  price: number;
2426
- nyigSchool: NYIGSchool;
2427
2399
  description?: string | undefined;
2400
+ nyigSchool?: NYIGSchool | undefined;
2401
+ schools?: NYIGSchool[] | undefined;
2428
2402
  recLevel?: string | undefined;
2429
2403
  halfCampTuition?: number | undefined;
2430
2404
  fullCampTuition?: number | undefined;
@@ -2443,9 +2417,14 @@ declare const zCourse: z.ZodObject<{
2443
2417
  price: z.ZodNumber;
2444
2418
  description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2445
2419
  /**
2446
- * NYIG School locations
2420
+ * NYIG School location
2421
+ * @deprecated
2422
+ */
2423
+ nyigSchool: z.ZodOptional<z.ZodNativeEnum<typeof NYIGSchool>>;
2424
+ /**
2425
+ * NYIG School locations the course is offered at
2447
2426
  */
2448
- nyigSchool: z.ZodNativeEnum<typeof NYIGSchool>;
2427
+ schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
2449
2428
  /**
2450
2429
  * Recommended level before taking this course
2451
2430
  */
@@ -2470,11 +2449,12 @@ declare const zCourse: z.ZodObject<{
2470
2449
  category: CourseCategory;
2471
2450
  duration: number;
2472
2451
  price: number;
2473
- nyigSchool: NYIGSchool;
2474
2452
  editedBy?: string | undefined;
2475
2453
  createdAt?: string | undefined;
2476
2454
  updatedAt?: string | undefined;
2477
2455
  description?: string | undefined;
2456
+ nyigSchool?: NYIGSchool | undefined;
2457
+ schools?: NYIGSchool[] | undefined;
2478
2458
  recLevel?: string | undefined;
2479
2459
  halfCampTuition?: number | undefined;
2480
2460
  fullCampTuition?: number | undefined;
@@ -2485,11 +2465,12 @@ declare const zCourse: z.ZodObject<{
2485
2465
  category: CourseCategory;
2486
2466
  duration: number;
2487
2467
  price: number;
2488
- nyigSchool: NYIGSchool;
2489
2468
  editedBy?: string | undefined;
2490
2469
  createdAt?: string | undefined;
2491
2470
  updatedAt?: string | undefined;
2492
2471
  description?: string | undefined;
2472
+ nyigSchool?: NYIGSchool | undefined;
2473
+ schools?: NYIGSchool[] | undefined;
2493
2474
  recLevel?: string | undefined;
2494
2475
  halfCampTuition?: number | undefined;
2495
2476
  fullCampTuition?: number | undefined;
@@ -2850,7 +2831,8 @@ declare const zGroupTrackerResponse: z.ZodObject<{
2850
2831
  duration: z.ZodNumber;
2851
2832
  price: z.ZodNumber;
2852
2833
  description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2853
- nyigSchool: z.ZodNativeEnum<typeof NYIGSchool>;
2834
+ nyigSchool: z.ZodOptional<z.ZodNativeEnum<typeof NYIGSchool>>;
2835
+ schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
2854
2836
  recLevel: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2855
2837
  halfCampTuition: z.ZodOptional<z.ZodNumber>;
2856
2838
  fullCampTuition: z.ZodOptional<z.ZodNumber>;
@@ -2866,11 +2848,12 @@ declare const zGroupTrackerResponse: z.ZodObject<{
2866
2848
  category: CourseCategory;
2867
2849
  duration: number;
2868
2850
  price: number;
2869
- nyigSchool: NYIGSchool;
2870
2851
  editedBy?: string | undefined;
2871
2852
  createdAt?: string | undefined;
2872
2853
  updatedAt?: string | undefined;
2873
2854
  description?: string | undefined;
2855
+ nyigSchool?: NYIGSchool | undefined;
2856
+ schools?: NYIGSchool[] | undefined;
2874
2857
  recLevel?: string | undefined;
2875
2858
  halfCampTuition?: number | undefined;
2876
2859
  fullCampTuition?: number | undefined;
@@ -2881,11 +2864,12 @@ declare const zGroupTrackerResponse: z.ZodObject<{
2881
2864
  category: CourseCategory;
2882
2865
  duration: number;
2883
2866
  price: number;
2884
- nyigSchool: NYIGSchool;
2885
2867
  editedBy?: string | undefined;
2886
2868
  createdAt?: string | undefined;
2887
2869
  updatedAt?: string | undefined;
2888
2870
  description?: string | undefined;
2871
+ nyigSchool?: NYIGSchool | undefined;
2872
+ schools?: NYIGSchool[] | undefined;
2889
2873
  recLevel?: string | undefined;
2890
2874
  halfCampTuition?: number | undefined;
2891
2875
  fullCampTuition?: number | undefined;
@@ -2893,8 +2877,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
2893
2877
  }>;
2894
2878
  teacher: z.ZodObject<{
2895
2879
  name: z.ZodString;
2896
- username: z.ZodOptional<z.ZodString>;
2897
- password: z.ZodOptional<z.ZodString>;
2898
2880
  roles: z.ZodOptional<z.ZodObject<{
2899
2881
  user: z.ZodNumber;
2900
2882
  admin: z.ZodOptional<z.ZodNumber>;
@@ -2969,6 +2951,7 @@ declare const zGroupTrackerResponse: z.ZodObject<{
2969
2951
  bio: z.ZodOptional<z.ZodString>;
2970
2952
  imageUrl: z.ZodOptional<z.ZodString>;
2971
2953
  available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
2954
+ schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
2972
2955
  } & {
2973
2956
  _id: z.ZodString;
2974
2957
  editedBy: z.ZodOptional<z.ZodString>;
@@ -2985,8 +2968,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
2985
2968
  updatedAt?: string | undefined;
2986
2969
  phoneNumber?: string | undefined;
2987
2970
  birthDate?: string | undefined;
2988
- username?: string | undefined;
2989
- password?: string | undefined;
2990
2971
  roles?: {
2991
2972
  user: number;
2992
2973
  admin?: number | undefined;
@@ -3010,6 +2991,7 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3010
2991
  phoneNumber?: string | undefined;
3011
2992
  birthDate?: string | undefined;
3012
2993
  }[] | undefined;
2994
+ schools?: NYIGSchool[] | undefined;
3013
2995
  isInactive?: boolean | undefined;
3014
2996
  doesNotTeachPrivateLessons?: boolean | undefined;
3015
2997
  title?: string | undefined;
@@ -3027,8 +3009,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3027
3009
  updatedAt?: string | undefined;
3028
3010
  phoneNumber?: string | undefined;
3029
3011
  birthDate?: string | undefined;
3030
- username?: string | undefined;
3031
- password?: string | undefined;
3032
3012
  roles?: {
3033
3013
  user: number;
3034
3014
  admin?: number | undefined;
@@ -3052,6 +3032,7 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3052
3032
  phoneNumber?: string | undefined;
3053
3033
  birthDate?: string | undefined;
3054
3034
  }[] | undefined;
3035
+ schools?: NYIGSchool[] | undefined;
3055
3036
  isInactive?: boolean | undefined;
3056
3037
  doesNotTeachPrivateLessons?: boolean | undefined;
3057
3038
  title?: string | undefined;
@@ -3118,8 +3099,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3118
3099
  } & {
3119
3100
  student: z.ZodObject<{
3120
3101
  name: z.ZodString;
3121
- username: z.ZodOptional<z.ZodString>;
3122
- password: z.ZodOptional<z.ZodString>;
3123
3102
  roles: z.ZodOptional<z.ZodObject<{
3124
3103
  user: z.ZodNumber;
3125
3104
  admin: z.ZodOptional<z.ZodNumber>;
@@ -3205,8 +3184,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3205
3184
  updatedAt?: string | undefined;
3206
3185
  phoneNumber?: string | undefined;
3207
3186
  birthDate?: string | undefined;
3208
- username?: string | undefined;
3209
- password?: string | undefined;
3210
3187
  roles?: {
3211
3188
  user: number;
3212
3189
  admin?: number | undefined;
@@ -3242,8 +3219,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3242
3219
  updatedAt?: string | undefined;
3243
3220
  phoneNumber?: string | undefined;
3244
3221
  birthDate?: string | undefined;
3245
- username?: string | undefined;
3246
- password?: string | undefined;
3247
3222
  roles?: {
3248
3223
  user: number;
3249
3224
  admin?: number | undefined;
@@ -3282,8 +3257,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3282
3257
  updatedAt?: string | undefined;
3283
3258
  phoneNumber?: string | undefined;
3284
3259
  birthDate?: string | undefined;
3285
- username?: string | undefined;
3286
- password?: string | undefined;
3287
3260
  roles?: {
3288
3261
  user: number;
3289
3262
  admin?: number | undefined;
@@ -3333,8 +3306,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3333
3306
  updatedAt?: string | undefined;
3334
3307
  phoneNumber?: string | undefined;
3335
3308
  birthDate?: string | undefined;
3336
- username?: string | undefined;
3337
- password?: string | undefined;
3338
3309
  roles?: {
3339
3310
  user: number;
3340
3311
  admin?: number | undefined;
@@ -3380,11 +3351,12 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3380
3351
  category: CourseCategory;
3381
3352
  duration: number;
3382
3353
  price: number;
3383
- nyigSchool: NYIGSchool;
3384
3354
  editedBy?: string | undefined;
3385
3355
  createdAt?: string | undefined;
3386
3356
  updatedAt?: string | undefined;
3387
3357
  description?: string | undefined;
3358
+ nyigSchool?: NYIGSchool | undefined;
3359
+ schools?: NYIGSchool[] | undefined;
3388
3360
  recLevel?: string | undefined;
3389
3361
  halfCampTuition?: number | undefined;
3390
3362
  fullCampTuition?: number | undefined;
@@ -3416,8 +3388,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3416
3388
  updatedAt?: string | undefined;
3417
3389
  phoneNumber?: string | undefined;
3418
3390
  birthDate?: string | undefined;
3419
- username?: string | undefined;
3420
- password?: string | undefined;
3421
3391
  roles?: {
3422
3392
  user: number;
3423
3393
  admin?: number | undefined;
@@ -3466,8 +3436,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3466
3436
  updatedAt?: string | undefined;
3467
3437
  phoneNumber?: string | undefined;
3468
3438
  birthDate?: string | undefined;
3469
- username?: string | undefined;
3470
- password?: string | undefined;
3471
3439
  roles?: {
3472
3440
  user: number;
3473
3441
  admin?: number | undefined;
@@ -3491,6 +3459,7 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3491
3459
  phoneNumber?: string | undefined;
3492
3460
  birthDate?: string | undefined;
3493
3461
  }[] | undefined;
3462
+ schools?: NYIGSchool[] | undefined;
3494
3463
  isInactive?: boolean | undefined;
3495
3464
  doesNotTeachPrivateLessons?: boolean | undefined;
3496
3465
  title?: string | undefined;
@@ -3519,11 +3488,12 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3519
3488
  category: CourseCategory;
3520
3489
  duration: number;
3521
3490
  price: number;
3522
- nyigSchool: NYIGSchool;
3523
3491
  editedBy?: string | undefined;
3524
3492
  createdAt?: string | undefined;
3525
3493
  updatedAt?: string | undefined;
3526
3494
  description?: string | undefined;
3495
+ nyigSchool?: NYIGSchool | undefined;
3496
+ schools?: NYIGSchool[] | undefined;
3527
3497
  recLevel?: string | undefined;
3528
3498
  halfCampTuition?: number | undefined;
3529
3499
  fullCampTuition?: number | undefined;
@@ -3555,8 +3525,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3555
3525
  updatedAt?: string | undefined;
3556
3526
  phoneNumber?: string | undefined;
3557
3527
  birthDate?: string | undefined;
3558
- username?: string | undefined;
3559
- password?: string | undefined;
3560
3528
  roles?: {
3561
3529
  user: number;
3562
3530
  admin?: number | undefined;
@@ -3605,8 +3573,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3605
3573
  updatedAt?: string | undefined;
3606
3574
  phoneNumber?: string | undefined;
3607
3575
  birthDate?: string | undefined;
3608
- username?: string | undefined;
3609
- password?: string | undefined;
3610
3576
  roles?: {
3611
3577
  user: number;
3612
3578
  admin?: number | undefined;
@@ -3630,6 +3596,7 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3630
3596
  phoneNumber?: string | undefined;
3631
3597
  birthDate?: string | undefined;
3632
3598
  }[] | undefined;
3599
+ schools?: NYIGSchool[] | undefined;
3633
3600
  isInactive?: boolean | undefined;
3634
3601
  doesNotTeachPrivateLessons?: boolean | undefined;
3635
3602
  title?: string | undefined;
@@ -4200,8 +4167,6 @@ declare const zInvoicePackageResponse: z.ZodObject<{
4200
4167
  } & {
4201
4168
  student: z.ZodObject<{
4202
4169
  name: z.ZodString;
4203
- username: z.ZodOptional<z.ZodString>;
4204
- password: z.ZodOptional<z.ZodString>;
4205
4170
  roles: z.ZodOptional<z.ZodObject<{
4206
4171
  user: z.ZodNumber;
4207
4172
  admin: z.ZodOptional<z.ZodNumber>;
@@ -4287,8 +4252,6 @@ declare const zInvoicePackageResponse: z.ZodObject<{
4287
4252
  updatedAt?: string | undefined;
4288
4253
  phoneNumber?: string | undefined;
4289
4254
  birthDate?: string | undefined;
4290
- username?: string | undefined;
4291
- password?: string | undefined;
4292
4255
  roles?: {
4293
4256
  user: number;
4294
4257
  admin?: number | undefined;
@@ -4324,8 +4287,6 @@ declare const zInvoicePackageResponse: z.ZodObject<{
4324
4287
  updatedAt?: string | undefined;
4325
4288
  phoneNumber?: string | undefined;
4326
4289
  birthDate?: string | undefined;
4327
- username?: string | undefined;
4328
- password?: string | undefined;
4329
4290
  roles?: {
4330
4291
  user: number;
4331
4292
  admin?: number | undefined;
@@ -4363,8 +4324,6 @@ declare const zInvoicePackageResponse: z.ZodObject<{
4363
4324
  updatedAt?: string | undefined;
4364
4325
  phoneNumber?: string | undefined;
4365
4326
  birthDate?: string | undefined;
4366
- username?: string | undefined;
4367
- password?: string | undefined;
4368
4327
  roles?: {
4369
4328
  user: number;
4370
4329
  admin?: number | undefined;
@@ -4407,8 +4366,6 @@ declare const zInvoicePackageResponse: z.ZodObject<{
4407
4366
  updatedAt?: string | undefined;
4408
4367
  phoneNumber?: string | undefined;
4409
4368
  birthDate?: string | undefined;
4410
- username?: string | undefined;
4411
- password?: string | undefined;
4412
4369
  roles?: {
4413
4370
  user: number;
4414
4371
  admin?: number | undefined;
@@ -4668,8 +4625,6 @@ declare const zInvoiceResponse: z.ZodObject<{
4668
4625
  } & {
4669
4626
  createdBy: z.ZodObject<{
4670
4627
  name: z.ZodString;
4671
- username: z.ZodOptional<z.ZodString>;
4672
- password: z.ZodOptional<z.ZodString>;
4673
4628
  roles: z.ZodOptional<z.ZodObject<{
4674
4629
  user: z.ZodNumber;
4675
4630
  admin: z.ZodOptional<z.ZodNumber>;
@@ -4744,6 +4699,7 @@ declare const zInvoiceResponse: z.ZodObject<{
4744
4699
  bio: z.ZodOptional<z.ZodString>;
4745
4700
  imageUrl: z.ZodOptional<z.ZodString>;
4746
4701
  available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
4702
+ schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
4747
4703
  } & {
4748
4704
  _id: z.ZodString;
4749
4705
  editedBy: z.ZodOptional<z.ZodString>;
@@ -4760,8 +4716,6 @@ declare const zInvoiceResponse: z.ZodObject<{
4760
4716
  updatedAt?: string | undefined;
4761
4717
  phoneNumber?: string | undefined;
4762
4718
  birthDate?: string | undefined;
4763
- username?: string | undefined;
4764
- password?: string | undefined;
4765
4719
  roles?: {
4766
4720
  user: number;
4767
4721
  admin?: number | undefined;
@@ -4785,6 +4739,7 @@ declare const zInvoiceResponse: z.ZodObject<{
4785
4739
  phoneNumber?: string | undefined;
4786
4740
  birthDate?: string | undefined;
4787
4741
  }[] | undefined;
4742
+ schools?: NYIGSchool[] | undefined;
4788
4743
  isInactive?: boolean | undefined;
4789
4744
  doesNotTeachPrivateLessons?: boolean | undefined;
4790
4745
  title?: string | undefined;
@@ -4802,8 +4757,6 @@ declare const zInvoiceResponse: z.ZodObject<{
4802
4757
  updatedAt?: string | undefined;
4803
4758
  phoneNumber?: string | undefined;
4804
4759
  birthDate?: string | undefined;
4805
- username?: string | undefined;
4806
- password?: string | undefined;
4807
4760
  roles?: {
4808
4761
  user: number;
4809
4762
  admin?: number | undefined;
@@ -4827,6 +4780,7 @@ declare const zInvoiceResponse: z.ZodObject<{
4827
4780
  phoneNumber?: string | undefined;
4828
4781
  birthDate?: string | undefined;
4829
4782
  }[] | undefined;
4783
+ schools?: NYIGSchool[] | undefined;
4830
4784
  isInactive?: boolean | undefined;
4831
4785
  doesNotTeachPrivateLessons?: boolean | undefined;
4832
4786
  title?: string | undefined;
@@ -4836,8 +4790,6 @@ declare const zInvoiceResponse: z.ZodObject<{
4836
4790
  }>;
4837
4791
  editedBy: z.ZodOptional<z.ZodObject<{
4838
4792
  name: z.ZodString;
4839
- username: z.ZodOptional<z.ZodString>;
4840
- password: z.ZodOptional<z.ZodString>;
4841
4793
  roles: z.ZodOptional<z.ZodObject<{
4842
4794
  user: z.ZodNumber;
4843
4795
  admin: z.ZodOptional<z.ZodNumber>;
@@ -4912,6 +4864,7 @@ declare const zInvoiceResponse: z.ZodObject<{
4912
4864
  bio: z.ZodOptional<z.ZodString>;
4913
4865
  imageUrl: z.ZodOptional<z.ZodString>;
4914
4866
  available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
4867
+ schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
4915
4868
  } & {
4916
4869
  _id: z.ZodString;
4917
4870
  editedBy: z.ZodOptional<z.ZodString>;
@@ -4928,8 +4881,6 @@ declare const zInvoiceResponse: z.ZodObject<{
4928
4881
  updatedAt?: string | undefined;
4929
4882
  phoneNumber?: string | undefined;
4930
4883
  birthDate?: string | undefined;
4931
- username?: string | undefined;
4932
- password?: string | undefined;
4933
4884
  roles?: {
4934
4885
  user: number;
4935
4886
  admin?: number | undefined;
@@ -4953,6 +4904,7 @@ declare const zInvoiceResponse: z.ZodObject<{
4953
4904
  phoneNumber?: string | undefined;
4954
4905
  birthDate?: string | undefined;
4955
4906
  }[] | undefined;
4907
+ schools?: NYIGSchool[] | undefined;
4956
4908
  isInactive?: boolean | undefined;
4957
4909
  doesNotTeachPrivateLessons?: boolean | undefined;
4958
4910
  title?: string | undefined;
@@ -4970,8 +4922,6 @@ declare const zInvoiceResponse: z.ZodObject<{
4970
4922
  updatedAt?: string | undefined;
4971
4923
  phoneNumber?: string | undefined;
4972
4924
  birthDate?: string | undefined;
4973
- username?: string | undefined;
4974
- password?: string | undefined;
4975
4925
  roles?: {
4976
4926
  user: number;
4977
4927
  admin?: number | undefined;
@@ -4995,6 +4945,7 @@ declare const zInvoiceResponse: z.ZodObject<{
4995
4945
  phoneNumber?: string | undefined;
4996
4946
  birthDate?: string | undefined;
4997
4947
  }[] | undefined;
4948
+ schools?: NYIGSchool[] | undefined;
4998
4949
  isInactive?: boolean | undefined;
4999
4950
  doesNotTeachPrivateLessons?: boolean | undefined;
5000
4951
  title?: string | undefined;
@@ -5019,8 +4970,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5019
4970
  } & {
5020
4971
  student: z.ZodObject<{
5021
4972
  name: z.ZodString;
5022
- username: z.ZodOptional<z.ZodString>;
5023
- password: z.ZodOptional<z.ZodString>;
5024
4973
  roles: z.ZodOptional<z.ZodObject<{
5025
4974
  user: z.ZodNumber;
5026
4975
  admin: z.ZodOptional<z.ZodNumber>;
@@ -5106,8 +5055,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5106
5055
  updatedAt?: string | undefined;
5107
5056
  phoneNumber?: string | undefined;
5108
5057
  birthDate?: string | undefined;
5109
- username?: string | undefined;
5110
- password?: string | undefined;
5111
5058
  roles?: {
5112
5059
  user: number;
5113
5060
  admin?: number | undefined;
@@ -5143,8 +5090,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5143
5090
  updatedAt?: string | undefined;
5144
5091
  phoneNumber?: string | undefined;
5145
5092
  birthDate?: string | undefined;
5146
- username?: string | undefined;
5147
- password?: string | undefined;
5148
5093
  roles?: {
5149
5094
  user: number;
5150
5095
  admin?: number | undefined;
@@ -5182,8 +5127,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5182
5127
  updatedAt?: string | undefined;
5183
5128
  phoneNumber?: string | undefined;
5184
5129
  birthDate?: string | undefined;
5185
- username?: string | undefined;
5186
- password?: string | undefined;
5187
5130
  roles?: {
5188
5131
  user: number;
5189
5132
  admin?: number | undefined;
@@ -5226,8 +5169,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5226
5169
  updatedAt?: string | undefined;
5227
5170
  phoneNumber?: string | undefined;
5228
5171
  birthDate?: string | undefined;
5229
- username?: string | undefined;
5230
- password?: string | undefined;
5231
5172
  roles?: {
5232
5173
  user: number;
5233
5174
  admin?: number | undefined;
@@ -5274,8 +5215,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5274
5215
  updatedAt?: string | undefined;
5275
5216
  phoneNumber?: string | undefined;
5276
5217
  birthDate?: string | undefined;
5277
- username?: string | undefined;
5278
- password?: string | undefined;
5279
5218
  roles?: {
5280
5219
  user: number;
5281
5220
  admin?: number | undefined;
@@ -5322,8 +5261,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5322
5261
  updatedAt?: string | undefined;
5323
5262
  phoneNumber?: string | undefined;
5324
5263
  birthDate?: string | undefined;
5325
- username?: string | undefined;
5326
- password?: string | undefined;
5327
5264
  roles?: {
5328
5265
  user: number;
5329
5266
  admin?: number | undefined;
@@ -5347,6 +5284,7 @@ declare const zInvoiceResponse: z.ZodObject<{
5347
5284
  phoneNumber?: string | undefined;
5348
5285
  birthDate?: string | undefined;
5349
5286
  }[] | undefined;
5287
+ schools?: NYIGSchool[] | undefined;
5350
5288
  isInactive?: boolean | undefined;
5351
5289
  doesNotTeachPrivateLessons?: boolean | undefined;
5352
5290
  title?: string | undefined;
@@ -5368,8 +5306,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5368
5306
  updatedAt?: string | undefined;
5369
5307
  phoneNumber?: string | undefined;
5370
5308
  birthDate?: string | undefined;
5371
- username?: string | undefined;
5372
- password?: string | undefined;
5373
5309
  roles?: {
5374
5310
  user: number;
5375
5311
  admin?: number | undefined;
@@ -5393,6 +5329,7 @@ declare const zInvoiceResponse: z.ZodObject<{
5393
5329
  phoneNumber?: string | undefined;
5394
5330
  birthDate?: string | undefined;
5395
5331
  }[] | undefined;
5332
+ schools?: NYIGSchool[] | undefined;
5396
5333
  isInactive?: boolean | undefined;
5397
5334
  doesNotTeachPrivateLessons?: boolean | undefined;
5398
5335
  title?: string | undefined;
@@ -5421,8 +5358,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5421
5358
  updatedAt?: string | undefined;
5422
5359
  phoneNumber?: string | undefined;
5423
5360
  birthDate?: string | undefined;
5424
- username?: string | undefined;
5425
- password?: string | undefined;
5426
5361
  roles?: {
5427
5362
  user: number;
5428
5363
  admin?: number | undefined;
@@ -5469,8 +5404,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5469
5404
  updatedAt?: string | undefined;
5470
5405
  phoneNumber?: string | undefined;
5471
5406
  birthDate?: string | undefined;
5472
- username?: string | undefined;
5473
- password?: string | undefined;
5474
5407
  roles?: {
5475
5408
  user: number;
5476
5409
  admin?: number | undefined;
@@ -5494,6 +5427,7 @@ declare const zInvoiceResponse: z.ZodObject<{
5494
5427
  phoneNumber?: string | undefined;
5495
5428
  birthDate?: string | undefined;
5496
5429
  }[] | undefined;
5430
+ schools?: NYIGSchool[] | undefined;
5497
5431
  isInactive?: boolean | undefined;
5498
5432
  doesNotTeachPrivateLessons?: boolean | undefined;
5499
5433
  title?: string | undefined;
@@ -5515,8 +5449,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5515
5449
  updatedAt?: string | undefined;
5516
5450
  phoneNumber?: string | undefined;
5517
5451
  birthDate?: string | undefined;
5518
- username?: string | undefined;
5519
- password?: string | undefined;
5520
5452
  roles?: {
5521
5453
  user: number;
5522
5454
  admin?: number | undefined;
@@ -5540,6 +5472,7 @@ declare const zInvoiceResponse: z.ZodObject<{
5540
5472
  phoneNumber?: string | undefined;
5541
5473
  birthDate?: string | undefined;
5542
5474
  }[] | undefined;
5475
+ schools?: NYIGSchool[] | undefined;
5543
5476
  isInactive?: boolean | undefined;
5544
5477
  doesNotTeachPrivateLessons?: boolean | undefined;
5545
5478
  title?: string | undefined;
@@ -5830,15 +5763,15 @@ declare const zCourseTable: z.ZodObject<{
5830
5763
  tuition: z.ZodString;
5831
5764
  }, "strip", z.ZodTypeAny, {
5832
5765
  name: string;
5833
- tuition: string;
5834
5766
  duration: number;
5767
+ tuition: string;
5835
5768
  id: string;
5836
5769
  dateAndTime: string;
5837
5770
  recommendedLevel: string;
5838
5771
  }, {
5839
5772
  name: string;
5840
- tuition: string;
5841
5773
  duration: number;
5774
+ tuition: string;
5842
5775
  id: string;
5843
5776
  dateAndTime: string;
5844
5777
  recommendedLevel: string;
@@ -5894,14 +5827,14 @@ declare const zBReportTicket: z.ZodObject<{
5894
5827
  description: z.ZodString;
5895
5828
  }, "strip", z.ZodTypeAny, {
5896
5829
  status: TicketStatus;
5897
- title: string;
5898
5830
  description: string;
5831
+ title: string;
5899
5832
  requester: string;
5900
5833
  resolver?: string | undefined;
5901
5834
  }, {
5902
5835
  status: TicketStatus;
5903
- title: string;
5904
5836
  description: string;
5837
+ title: string;
5905
5838
  requester: string;
5906
5839
  resolver?: string | undefined;
5907
5840
  }>;
@@ -5919,8 +5852,8 @@ declare const zReportTicket: z.ZodObject<{
5919
5852
  }, z.UnknownKeysParam, z.ZodTypeAny, {
5920
5853
  status: TicketStatus;
5921
5854
  _id: string;
5922
- title: string;
5923
5855
  description: string;
5856
+ title: string;
5924
5857
  requester: string;
5925
5858
  editedBy?: string | undefined;
5926
5859
  createdAt?: string | undefined;
@@ -5929,8 +5862,8 @@ declare const zReportTicket: z.ZodObject<{
5929
5862
  }, {
5930
5863
  status: TicketStatus;
5931
5864
  _id: string;
5932
- title: string;
5933
5865
  description: string;
5866
+ title: string;
5934
5867
  requester: string;
5935
5868
  editedBy?: string | undefined;
5936
5869
  createdAt?: string | undefined;
@@ -5948,8 +5881,6 @@ declare const zReportTicketResponse: z.ZodObject<{
5948
5881
  } & {
5949
5882
  requester: z.ZodObject<{
5950
5883
  name: z.ZodString;
5951
- username: z.ZodOptional<z.ZodString>;
5952
- password: z.ZodOptional<z.ZodString>;
5953
5884
  roles: z.ZodOptional<z.ZodObject<{
5954
5885
  user: z.ZodNumber;
5955
5886
  admin: z.ZodOptional<z.ZodNumber>;
@@ -6031,8 +5962,6 @@ declare const zReportTicketResponse: z.ZodObject<{
6031
5962
  updatedAt?: string | undefined;
6032
5963
  phoneNumber?: string | undefined;
6033
5964
  birthDate?: string | undefined;
6034
- username?: string | undefined;
6035
- password?: string | undefined;
6036
5965
  roles?: {
6037
5966
  user: number;
6038
5967
  admin?: number | undefined;
@@ -6066,8 +5995,6 @@ declare const zReportTicketResponse: z.ZodObject<{
6066
5995
  updatedAt?: string | undefined;
6067
5996
  phoneNumber?: string | undefined;
6068
5997
  birthDate?: string | undefined;
6069
- username?: string | undefined;
6070
- password?: string | undefined;
6071
5998
  roles?: {
6072
5999
  user: number;
6073
6000
  admin?: number | undefined;
@@ -6094,8 +6021,6 @@ declare const zReportTicketResponse: z.ZodObject<{
6094
6021
  }>;
6095
6022
  resolver: z.ZodOptional<z.ZodObject<{
6096
6023
  name: z.ZodString;
6097
- username: z.ZodOptional<z.ZodString>;
6098
- password: z.ZodOptional<z.ZodString>;
6099
6024
  roles: z.ZodOptional<z.ZodObject<{
6100
6025
  user: z.ZodNumber;
6101
6026
  admin: z.ZodOptional<z.ZodNumber>;
@@ -6177,8 +6102,6 @@ declare const zReportTicketResponse: z.ZodObject<{
6177
6102
  updatedAt?: string | undefined;
6178
6103
  phoneNumber?: string | undefined;
6179
6104
  birthDate?: string | undefined;
6180
- username?: string | undefined;
6181
- password?: string | undefined;
6182
6105
  roles?: {
6183
6106
  user: number;
6184
6107
  admin?: number | undefined;
@@ -6212,8 +6135,6 @@ declare const zReportTicketResponse: z.ZodObject<{
6212
6135
  updatedAt?: string | undefined;
6213
6136
  phoneNumber?: string | undefined;
6214
6137
  birthDate?: string | undefined;
6215
- username?: string | undefined;
6216
- password?: string | undefined;
6217
6138
  roles?: {
6218
6139
  user: number;
6219
6140
  admin?: number | undefined;
@@ -6241,8 +6162,8 @@ declare const zReportTicketResponse: z.ZodObject<{
6241
6162
  }, z.UnknownKeysParam, z.ZodTypeAny, {
6242
6163
  status: TicketStatus;
6243
6164
  _id: string;
6244
- title: string;
6245
6165
  description: string;
6166
+ title: string;
6246
6167
  requester: {
6247
6168
  _id: string;
6248
6169
  name: string;
@@ -6253,8 +6174,6 @@ declare const zReportTicketResponse: z.ZodObject<{
6253
6174
  updatedAt?: string | undefined;
6254
6175
  phoneNumber?: string | undefined;
6255
6176
  birthDate?: string | undefined;
6256
- username?: string | undefined;
6257
- password?: string | undefined;
6258
6177
  roles?: {
6259
6178
  user: number;
6260
6179
  admin?: number | undefined;
@@ -6292,8 +6211,6 @@ declare const zReportTicketResponse: z.ZodObject<{
6292
6211
  updatedAt?: string | undefined;
6293
6212
  phoneNumber?: string | undefined;
6294
6213
  birthDate?: string | undefined;
6295
- username?: string | undefined;
6296
- password?: string | undefined;
6297
6214
  roles?: {
6298
6215
  user: number;
6299
6216
  admin?: number | undefined;
@@ -6321,8 +6238,8 @@ declare const zReportTicketResponse: z.ZodObject<{
6321
6238
  }, {
6322
6239
  status: TicketStatus;
6323
6240
  _id: string;
6324
- title: string;
6325
6241
  description: string;
6242
+ title: string;
6326
6243
  requester: {
6327
6244
  _id: string;
6328
6245
  name: string;
@@ -6333,8 +6250,6 @@ declare const zReportTicketResponse: z.ZodObject<{
6333
6250
  updatedAt?: string | undefined;
6334
6251
  phoneNumber?: string | undefined;
6335
6252
  birthDate?: string | undefined;
6336
- username?: string | undefined;
6337
- password?: string | undefined;
6338
6253
  roles?: {
6339
6254
  user: number;
6340
6255
  admin?: number | undefined;
@@ -6372,8 +6287,6 @@ declare const zReportTicketResponse: z.ZodObject<{
6372
6287
  updatedAt?: string | undefined;
6373
6288
  phoneNumber?: string | undefined;
6374
6289
  birthDate?: string | undefined;
6375
- username?: string | undefined;
6376
- password?: string | undefined;
6377
6290
  roles?: {
6378
6291
  user: number;
6379
6292
  admin?: number | undefined;
@@ -6575,8 +6488,8 @@ declare const zBEventConfig: z.ZodObject<{
6575
6488
  width: number;
6576
6489
  }>>;
6577
6490
  }, "strip", z.ZodTypeAny, {
6578
- title: string;
6579
6491
  description: string;
6492
+ title: string;
6580
6493
  url: string;
6581
6494
  shortTitle: string;
6582
6495
  tStart: Date;
@@ -6597,8 +6510,8 @@ declare const zBEventConfig: z.ZodObject<{
6597
6510
  width: number;
6598
6511
  } | undefined;
6599
6512
  }, {
6600
- title: string;
6601
6513
  description: string;
6514
+ title: string;
6602
6515
  url: string;
6603
6516
  shortTitle: string;
6604
6517
  tStart: Date;
@@ -6714,8 +6627,8 @@ declare const zEventConfig: z.ZodObject<{
6714
6627
  updatedAt: z.ZodOptional<z.ZodString>;
6715
6628
  }, z.UnknownKeysParam, z.ZodTypeAny, {
6716
6629
  _id: string;
6717
- title: string;
6718
6630
  description: string;
6631
+ title: string;
6719
6632
  url: string;
6720
6633
  shortTitle: string;
6721
6634
  tStart: Date;
@@ -6740,8 +6653,8 @@ declare const zEventConfig: z.ZodObject<{
6740
6653
  } | undefined;
6741
6654
  }, {
6742
6655
  _id: string;
6743
- title: string;
6744
6656
  description: string;
6657
+ title: string;
6745
6658
  url: string;
6746
6659
  shortTitle: string;
6747
6660
  tStart: Date;
@@ -6836,8 +6749,8 @@ declare const zEventConfigResponse: z.ZodObject<{
6836
6749
  }>, "many">;
6837
6750
  }, z.UnknownKeysParam, z.ZodTypeAny, {
6838
6751
  _id: string;
6839
- title: string;
6840
6752
  description: string;
6753
+ title: string;
6841
6754
  url: string;
6842
6755
  shortTitle: string;
6843
6756
  tStart: Date;
@@ -6873,8 +6786,8 @@ declare const zEventConfigResponse: z.ZodObject<{
6873
6786
  } | undefined;
6874
6787
  }, {
6875
6788
  _id: string;
6876
- title: string;
6877
6789
  description: string;
6790
+ title: string;
6878
6791
  url: string;
6879
6792
  shortTitle: string;
6880
6793
  tStart: Date;
@@ -7515,8 +7428,6 @@ declare enum GoRank {
7515
7428
 
7516
7429
  declare const zBUser: z.ZodObject<{
7517
7430
  name: z.ZodString;
7518
- username: z.ZodOptional<z.ZodString>;
7519
- password: z.ZodOptional<z.ZodString>;
7520
7431
  roles: z.ZodOptional<z.ZodObject<{
7521
7432
  user: z.ZodNumber;
7522
7433
  admin: z.ZodOptional<z.ZodNumber>;
@@ -7595,8 +7506,6 @@ declare const zBUser: z.ZodObject<{
7595
7506
  address?: string | undefined;
7596
7507
  phoneNumber?: string | undefined;
7597
7508
  birthDate?: string | undefined;
7598
- username?: string | undefined;
7599
- password?: string | undefined;
7600
7509
  roles?: {
7601
7510
  user: number;
7602
7511
  admin?: number | undefined;
@@ -7626,8 +7535,6 @@ declare const zBUser: z.ZodObject<{
7626
7535
  address?: string | undefined;
7627
7536
  phoneNumber?: string | undefined;
7628
7537
  birthDate?: string | undefined;
7629
- username?: string | undefined;
7630
- password?: string | undefined;
7631
7538
  roles?: {
7632
7539
  user: number;
7633
7540
  admin?: number | undefined;
@@ -7654,8 +7561,6 @@ declare const zBUser: z.ZodObject<{
7654
7561
  }>;
7655
7562
  declare const zUser: z.ZodObject<{
7656
7563
  name: z.ZodString;
7657
- username: z.ZodOptional<z.ZodString>;
7658
- password: z.ZodOptional<z.ZodString>;
7659
7564
  roles: z.ZodOptional<z.ZodObject<{
7660
7565
  user: z.ZodNumber;
7661
7566
  admin: z.ZodOptional<z.ZodNumber>;
@@ -7743,8 +7648,6 @@ declare const zUser: z.ZodObject<{
7743
7648
  updatedAt?: string | undefined;
7744
7649
  phoneNumber?: string | undefined;
7745
7650
  birthDate?: string | undefined;
7746
- username?: string | undefined;
7747
- password?: string | undefined;
7748
7651
  roles?: {
7749
7652
  user: number;
7750
7653
  admin?: number | undefined;
@@ -7778,8 +7681,6 @@ declare const zUser: z.ZodObject<{
7778
7681
  updatedAt?: string | undefined;
7779
7682
  phoneNumber?: string | undefined;
7780
7683
  birthDate?: string | undefined;
7781
- username?: string | undefined;
7782
- password?: string | undefined;
7783
7684
  roles?: {
7784
7685
  user: number;
7785
7686
  admin?: number | undefined;
@@ -7912,8 +7813,6 @@ type UserRoles = z.infer<typeof zUserRoles>;
7912
7813
 
7913
7814
  declare const zBStudent: z.ZodObject<{
7914
7815
  name: z.ZodString;
7915
- username: z.ZodOptional<z.ZodString>;
7916
- password: z.ZodOptional<z.ZodString>;
7917
7816
  roles: z.ZodOptional<z.ZodObject<{
7918
7817
  user: z.ZodNumber;
7919
7818
  admin: z.ZodOptional<z.ZodNumber>;
@@ -7990,8 +7889,6 @@ declare const zBStudent: z.ZodObject<{
7990
7889
  address?: string | undefined;
7991
7890
  phoneNumber?: string | undefined;
7992
7891
  birthDate?: string | undefined;
7993
- username?: string | undefined;
7994
- password?: string | undefined;
7995
7892
  roles?: {
7996
7893
  user: number;
7997
7894
  admin?: number | undefined;
@@ -8023,8 +7920,6 @@ declare const zBStudent: z.ZodObject<{
8023
7920
  address?: string | undefined;
8024
7921
  phoneNumber?: string | undefined;
8025
7922
  birthDate?: string | undefined;
8026
- username?: string | undefined;
8027
- password?: string | undefined;
8028
7923
  roles?: {
8029
7924
  user: number;
8030
7925
  admin?: number | undefined;
@@ -8052,8 +7947,6 @@ declare const zBStudent: z.ZodObject<{
8052
7947
  }>;
8053
7948
  declare const zStudent: z.ZodObject<{
8054
7949
  name: z.ZodString;
8055
- username: z.ZodOptional<z.ZodString>;
8056
- password: z.ZodOptional<z.ZodString>;
8057
7950
  roles: z.ZodOptional<z.ZodObject<{
8058
7951
  user: z.ZodNumber;
8059
7952
  admin: z.ZodOptional<z.ZodNumber>;
@@ -8139,8 +8032,6 @@ declare const zStudent: z.ZodObject<{
8139
8032
  updatedAt?: string | undefined;
8140
8033
  phoneNumber?: string | undefined;
8141
8034
  birthDate?: string | undefined;
8142
- username?: string | undefined;
8143
- password?: string | undefined;
8144
8035
  roles?: {
8145
8036
  user: number;
8146
8037
  admin?: number | undefined;
@@ -8176,8 +8067,6 @@ declare const zStudent: z.ZodObject<{
8176
8067
  updatedAt?: string | undefined;
8177
8068
  phoneNumber?: string | undefined;
8178
8069
  birthDate?: string | undefined;
8179
- username?: string | undefined;
8180
- password?: string | undefined;
8181
8070
  roles?: {
8182
8071
  user: number;
8183
8072
  admin?: number | undefined;
@@ -8208,8 +8097,6 @@ type Student = z.infer<typeof zStudent>;
8208
8097
 
8209
8098
  declare const zBTeacher: z.ZodObject<{
8210
8099
  name: z.ZodString;
8211
- username: z.ZodOptional<z.ZodString>;
8212
- password: z.ZodOptional<z.ZodString>;
8213
8100
  roles: z.ZodOptional<z.ZodObject<{
8214
8101
  user: z.ZodNumber;
8215
8102
  admin: z.ZodOptional<z.ZodNumber>;
@@ -8312,6 +8199,11 @@ declare const zBTeacher: z.ZodObject<{
8312
8199
  * ]
8313
8200
  */
8314
8201
  available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
8202
+ /**
8203
+ * Schools the teacher is affiliated with
8204
+ * Required for showing on the aurora "about" page
8205
+ */
8206
+ schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
8315
8207
  }, "strip", z.ZodTypeAny, {
8316
8208
  rank: GoRank;
8317
8209
  name: string;
@@ -8319,8 +8211,6 @@ declare const zBTeacher: z.ZodObject<{
8319
8211
  address?: string | undefined;
8320
8212
  phoneNumber?: string | undefined;
8321
8213
  birthDate?: string | undefined;
8322
- username?: string | undefined;
8323
- password?: string | undefined;
8324
8214
  roles?: {
8325
8215
  user: number;
8326
8216
  admin?: number | undefined;
@@ -8344,6 +8234,7 @@ declare const zBTeacher: z.ZodObject<{
8344
8234
  phoneNumber?: string | undefined;
8345
8235
  birthDate?: string | undefined;
8346
8236
  }[] | undefined;
8237
+ schools?: NYIGSchool[] | undefined;
8347
8238
  isInactive?: boolean | undefined;
8348
8239
  doesNotTeachPrivateLessons?: boolean | undefined;
8349
8240
  title?: string | undefined;
@@ -8357,8 +8248,6 @@ declare const zBTeacher: z.ZodObject<{
8357
8248
  address?: string | undefined;
8358
8249
  phoneNumber?: string | undefined;
8359
8250
  birthDate?: string | undefined;
8360
- username?: string | undefined;
8361
- password?: string | undefined;
8362
8251
  roles?: {
8363
8252
  user: number;
8364
8253
  admin?: number | undefined;
@@ -8382,6 +8271,7 @@ declare const zBTeacher: z.ZodObject<{
8382
8271
  phoneNumber?: string | undefined;
8383
8272
  birthDate?: string | undefined;
8384
8273
  }[] | undefined;
8274
+ schools?: NYIGSchool[] | undefined;
8385
8275
  isInactive?: boolean | undefined;
8386
8276
  doesNotTeachPrivateLessons?: boolean | undefined;
8387
8277
  title?: string | undefined;
@@ -8391,8 +8281,6 @@ declare const zBTeacher: z.ZodObject<{
8391
8281
  }>;
8392
8282
  declare const zTeacher: z.ZodObject<{
8393
8283
  name: z.ZodString;
8394
- username: z.ZodOptional<z.ZodString>;
8395
- password: z.ZodOptional<z.ZodString>;
8396
8284
  roles: z.ZodOptional<z.ZodObject<{
8397
8285
  user: z.ZodNumber;
8398
8286
  admin: z.ZodOptional<z.ZodNumber>;
@@ -8495,6 +8383,11 @@ declare const zTeacher: z.ZodObject<{
8495
8383
  * ]
8496
8384
  */
8497
8385
  available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
8386
+ /**
8387
+ * Schools the teacher is affiliated with
8388
+ * Required for showing on the aurora "about" page
8389
+ */
8390
+ schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
8498
8391
  } & {
8499
8392
  _id: z.ZodString;
8500
8393
  editedBy: z.ZodOptional<z.ZodString>;
@@ -8511,8 +8404,6 @@ declare const zTeacher: z.ZodObject<{
8511
8404
  updatedAt?: string | undefined;
8512
8405
  phoneNumber?: string | undefined;
8513
8406
  birthDate?: string | undefined;
8514
- username?: string | undefined;
8515
- password?: string | undefined;
8516
8407
  roles?: {
8517
8408
  user: number;
8518
8409
  admin?: number | undefined;
@@ -8536,6 +8427,7 @@ declare const zTeacher: z.ZodObject<{
8536
8427
  phoneNumber?: string | undefined;
8537
8428
  birthDate?: string | undefined;
8538
8429
  }[] | undefined;
8430
+ schools?: NYIGSchool[] | undefined;
8539
8431
  isInactive?: boolean | undefined;
8540
8432
  doesNotTeachPrivateLessons?: boolean | undefined;
8541
8433
  title?: string | undefined;
@@ -8553,8 +8445,6 @@ declare const zTeacher: z.ZodObject<{
8553
8445
  updatedAt?: string | undefined;
8554
8446
  phoneNumber?: string | undefined;
8555
8447
  birthDate?: string | undefined;
8556
- username?: string | undefined;
8557
- password?: string | undefined;
8558
8448
  roles?: {
8559
8449
  user: number;
8560
8450
  admin?: number | undefined;
@@ -8578,6 +8468,7 @@ declare const zTeacher: z.ZodObject<{
8578
8468
  phoneNumber?: string | undefined;
8579
8469
  birthDate?: string | undefined;
8580
8470
  }[] | undefined;
8471
+ schools?: NYIGSchool[] | undefined;
8581
8472
  isInactive?: boolean | undefined;
8582
8473
  doesNotTeachPrivateLessons?: boolean | undefined;
8583
8474
  title?: string | undefined;
@@ -8587,8 +8478,6 @@ declare const zTeacher: z.ZodObject<{
8587
8478
  }>;
8588
8479
  declare const zTeacherResponse: z.ZodObject<Omit<{
8589
8480
  name: z.ZodString;
8590
- username: z.ZodOptional<z.ZodString>;
8591
- password: z.ZodOptional<z.ZodString>;
8592
8481
  roles: z.ZodOptional<z.ZodObject<{
8593
8482
  user: z.ZodNumber;
8594
8483
  admin: z.ZodOptional<z.ZodNumber>;
@@ -8691,12 +8580,17 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
8691
8580
  * ]
8692
8581
  */
8693
8582
  available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
8583
+ /**
8584
+ * Schools the teacher is affiliated with
8585
+ * Required for showing on the aurora "about" page
8586
+ */
8587
+ schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
8694
8588
  } & {
8695
8589
  _id: z.ZodString;
8696
8590
  editedBy: z.ZodOptional<z.ZodString>;
8697
8591
  createdAt: z.ZodOptional<z.ZodString>;
8698
8592
  updatedAt: z.ZodOptional<z.ZodString>;
8699
- }, "editedBy" | "createdAt" | "updatedAt" | "password" | "roles"> & {
8593
+ }, "editedBy" | "createdAt" | "updatedAt" | "roles"> & {
8700
8594
  role: z.ZodNumber;
8701
8595
  }, z.UnknownKeysParam, z.ZodTypeAny, {
8702
8596
  rank: GoRank;
@@ -8707,7 +8601,6 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
8707
8601
  address?: string | undefined;
8708
8602
  phoneNumber?: string | undefined;
8709
8603
  birthDate?: string | undefined;
8710
- username?: string | undefined;
8711
8604
  country?: string | undefined;
8712
8605
  shouldChangePassword?: boolean | undefined;
8713
8606
  profiles?: {
@@ -8726,6 +8619,7 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
8726
8619
  phoneNumber?: string | undefined;
8727
8620
  birthDate?: string | undefined;
8728
8621
  }[] | undefined;
8622
+ schools?: NYIGSchool[] | undefined;
8729
8623
  isInactive?: boolean | undefined;
8730
8624
  doesNotTeachPrivateLessons?: boolean | undefined;
8731
8625
  title?: string | undefined;
@@ -8741,7 +8635,6 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
8741
8635
  address?: string | undefined;
8742
8636
  phoneNumber?: string | undefined;
8743
8637
  birthDate?: string | undefined;
8744
- username?: string | undefined;
8745
8638
  country?: string | undefined;
8746
8639
  shouldChangePassword?: boolean | undefined;
8747
8640
  profiles?: {
@@ -8760,6 +8653,7 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
8760
8653
  phoneNumber?: string | undefined;
8761
8654
  birthDate?: string | undefined;
8762
8655
  }[] | undefined;
8656
+ schools?: NYIGSchool[] | undefined;
8763
8657
  isInactive?: boolean | undefined;
8764
8658
  doesNotTeachPrivateLessons?: boolean | undefined;
8765
8659
  title?: string | undefined;