@nyig/models 0.6.3 → 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 +113 -220
  2. package/index.d.ts +113 -220
  3. package/index.js +101 -91
  4. package/index.mjs +101 -91
  5. package/package.json +1 -1
package/index.d.ts 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;
@@ -2392,9 +2358,14 @@ declare const zBCourse: z.ZodObject<{
2392
2358
  price: z.ZodNumber;
2393
2359
  description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2394
2360
  /**
2395
- * 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
2396
2367
  */
2397
- nyigSchool: z.ZodNativeEnum<typeof NYIGSchool>;
2368
+ schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
2398
2369
  /**
2399
2370
  * Recommended level before taking this course
2400
2371
  */
@@ -2413,8 +2384,9 @@ declare const zBCourse: z.ZodObject<{
2413
2384
  category: CourseCategory;
2414
2385
  duration: number;
2415
2386
  price: number;
2416
- nyigSchool: NYIGSchool;
2417
2387
  description?: string | undefined;
2388
+ nyigSchool?: NYIGSchool | undefined;
2389
+ schools?: NYIGSchool[] | undefined;
2418
2390
  recLevel?: string | undefined;
2419
2391
  halfCampTuition?: number | undefined;
2420
2392
  fullCampTuition?: number | undefined;
@@ -2424,8 +2396,9 @@ declare const zBCourse: z.ZodObject<{
2424
2396
  category: CourseCategory;
2425
2397
  duration: number;
2426
2398
  price: number;
2427
- nyigSchool: NYIGSchool;
2428
2399
  description?: string | undefined;
2400
+ nyigSchool?: NYIGSchool | undefined;
2401
+ schools?: NYIGSchool[] | undefined;
2429
2402
  recLevel?: string | undefined;
2430
2403
  halfCampTuition?: number | undefined;
2431
2404
  fullCampTuition?: number | undefined;
@@ -2444,9 +2417,14 @@ declare const zCourse: z.ZodObject<{
2444
2417
  price: z.ZodNumber;
2445
2418
  description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2446
2419
  /**
2447
- * 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
2448
2426
  */
2449
- nyigSchool: z.ZodNativeEnum<typeof NYIGSchool>;
2427
+ schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
2450
2428
  /**
2451
2429
  * Recommended level before taking this course
2452
2430
  */
@@ -2471,11 +2449,12 @@ declare const zCourse: z.ZodObject<{
2471
2449
  category: CourseCategory;
2472
2450
  duration: number;
2473
2451
  price: number;
2474
- nyigSchool: NYIGSchool;
2475
2452
  editedBy?: string | undefined;
2476
2453
  createdAt?: string | undefined;
2477
2454
  updatedAt?: string | undefined;
2478
2455
  description?: string | undefined;
2456
+ nyigSchool?: NYIGSchool | undefined;
2457
+ schools?: NYIGSchool[] | undefined;
2479
2458
  recLevel?: string | undefined;
2480
2459
  halfCampTuition?: number | undefined;
2481
2460
  fullCampTuition?: number | undefined;
@@ -2486,11 +2465,12 @@ declare const zCourse: z.ZodObject<{
2486
2465
  category: CourseCategory;
2487
2466
  duration: number;
2488
2467
  price: number;
2489
- nyigSchool: NYIGSchool;
2490
2468
  editedBy?: string | undefined;
2491
2469
  createdAt?: string | undefined;
2492
2470
  updatedAt?: string | undefined;
2493
2471
  description?: string | undefined;
2472
+ nyigSchool?: NYIGSchool | undefined;
2473
+ schools?: NYIGSchool[] | undefined;
2494
2474
  recLevel?: string | undefined;
2495
2475
  halfCampTuition?: number | undefined;
2496
2476
  fullCampTuition?: number | undefined;
@@ -2851,7 +2831,8 @@ declare const zGroupTrackerResponse: z.ZodObject<{
2851
2831
  duration: z.ZodNumber;
2852
2832
  price: z.ZodNumber;
2853
2833
  description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2854
- nyigSchool: z.ZodNativeEnum<typeof NYIGSchool>;
2834
+ nyigSchool: z.ZodOptional<z.ZodNativeEnum<typeof NYIGSchool>>;
2835
+ schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
2855
2836
  recLevel: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2856
2837
  halfCampTuition: z.ZodOptional<z.ZodNumber>;
2857
2838
  fullCampTuition: z.ZodOptional<z.ZodNumber>;
@@ -2867,11 +2848,12 @@ declare const zGroupTrackerResponse: z.ZodObject<{
2867
2848
  category: CourseCategory;
2868
2849
  duration: number;
2869
2850
  price: number;
2870
- nyigSchool: NYIGSchool;
2871
2851
  editedBy?: string | undefined;
2872
2852
  createdAt?: string | undefined;
2873
2853
  updatedAt?: string | undefined;
2874
2854
  description?: string | undefined;
2855
+ nyigSchool?: NYIGSchool | undefined;
2856
+ schools?: NYIGSchool[] | undefined;
2875
2857
  recLevel?: string | undefined;
2876
2858
  halfCampTuition?: number | undefined;
2877
2859
  fullCampTuition?: number | undefined;
@@ -2882,11 +2864,12 @@ declare const zGroupTrackerResponse: z.ZodObject<{
2882
2864
  category: CourseCategory;
2883
2865
  duration: number;
2884
2866
  price: number;
2885
- nyigSchool: NYIGSchool;
2886
2867
  editedBy?: string | undefined;
2887
2868
  createdAt?: string | undefined;
2888
2869
  updatedAt?: string | undefined;
2889
2870
  description?: string | undefined;
2871
+ nyigSchool?: NYIGSchool | undefined;
2872
+ schools?: NYIGSchool[] | undefined;
2890
2873
  recLevel?: string | undefined;
2891
2874
  halfCampTuition?: number | undefined;
2892
2875
  fullCampTuition?: number | undefined;
@@ -2894,8 +2877,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
2894
2877
  }>;
2895
2878
  teacher: z.ZodObject<{
2896
2879
  name: z.ZodString;
2897
- username: z.ZodOptional<z.ZodString>;
2898
- password: z.ZodOptional<z.ZodString>;
2899
2880
  roles: z.ZodOptional<z.ZodObject<{
2900
2881
  user: z.ZodNumber;
2901
2882
  admin: z.ZodOptional<z.ZodNumber>;
@@ -2970,6 +2951,7 @@ declare const zGroupTrackerResponse: z.ZodObject<{
2970
2951
  bio: z.ZodOptional<z.ZodString>;
2971
2952
  imageUrl: z.ZodOptional<z.ZodString>;
2972
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">>;
2973
2955
  } & {
2974
2956
  _id: z.ZodString;
2975
2957
  editedBy: z.ZodOptional<z.ZodString>;
@@ -2986,8 +2968,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
2986
2968
  updatedAt?: string | undefined;
2987
2969
  phoneNumber?: string | undefined;
2988
2970
  birthDate?: string | undefined;
2989
- username?: string | undefined;
2990
- password?: string | undefined;
2991
2971
  roles?: {
2992
2972
  user: number;
2993
2973
  admin?: number | undefined;
@@ -3011,6 +2991,7 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3011
2991
  phoneNumber?: string | undefined;
3012
2992
  birthDate?: string | undefined;
3013
2993
  }[] | undefined;
2994
+ schools?: NYIGSchool[] | undefined;
3014
2995
  isInactive?: boolean | undefined;
3015
2996
  doesNotTeachPrivateLessons?: boolean | undefined;
3016
2997
  title?: string | undefined;
@@ -3028,8 +3009,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3028
3009
  updatedAt?: string | undefined;
3029
3010
  phoneNumber?: string | undefined;
3030
3011
  birthDate?: string | undefined;
3031
- username?: string | undefined;
3032
- password?: string | undefined;
3033
3012
  roles?: {
3034
3013
  user: number;
3035
3014
  admin?: number | undefined;
@@ -3053,6 +3032,7 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3053
3032
  phoneNumber?: string | undefined;
3054
3033
  birthDate?: string | undefined;
3055
3034
  }[] | undefined;
3035
+ schools?: NYIGSchool[] | undefined;
3056
3036
  isInactive?: boolean | undefined;
3057
3037
  doesNotTeachPrivateLessons?: boolean | undefined;
3058
3038
  title?: string | undefined;
@@ -3119,8 +3099,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3119
3099
  } & {
3120
3100
  student: z.ZodObject<{
3121
3101
  name: z.ZodString;
3122
- username: z.ZodOptional<z.ZodString>;
3123
- password: z.ZodOptional<z.ZodString>;
3124
3102
  roles: z.ZodOptional<z.ZodObject<{
3125
3103
  user: z.ZodNumber;
3126
3104
  admin: z.ZodOptional<z.ZodNumber>;
@@ -3206,8 +3184,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3206
3184
  updatedAt?: string | undefined;
3207
3185
  phoneNumber?: string | undefined;
3208
3186
  birthDate?: string | undefined;
3209
- username?: string | undefined;
3210
- password?: string | undefined;
3211
3187
  roles?: {
3212
3188
  user: number;
3213
3189
  admin?: number | undefined;
@@ -3243,8 +3219,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3243
3219
  updatedAt?: string | undefined;
3244
3220
  phoneNumber?: string | undefined;
3245
3221
  birthDate?: string | undefined;
3246
- username?: string | undefined;
3247
- password?: string | undefined;
3248
3222
  roles?: {
3249
3223
  user: number;
3250
3224
  admin?: number | undefined;
@@ -3283,8 +3257,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3283
3257
  updatedAt?: string | undefined;
3284
3258
  phoneNumber?: string | undefined;
3285
3259
  birthDate?: string | undefined;
3286
- username?: string | undefined;
3287
- password?: string | undefined;
3288
3260
  roles?: {
3289
3261
  user: number;
3290
3262
  admin?: number | undefined;
@@ -3334,8 +3306,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3334
3306
  updatedAt?: string | undefined;
3335
3307
  phoneNumber?: string | undefined;
3336
3308
  birthDate?: string | undefined;
3337
- username?: string | undefined;
3338
- password?: string | undefined;
3339
3309
  roles?: {
3340
3310
  user: number;
3341
3311
  admin?: number | undefined;
@@ -3381,11 +3351,12 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3381
3351
  category: CourseCategory;
3382
3352
  duration: number;
3383
3353
  price: number;
3384
- nyigSchool: NYIGSchool;
3385
3354
  editedBy?: string | undefined;
3386
3355
  createdAt?: string | undefined;
3387
3356
  updatedAt?: string | undefined;
3388
3357
  description?: string | undefined;
3358
+ nyigSchool?: NYIGSchool | undefined;
3359
+ schools?: NYIGSchool[] | undefined;
3389
3360
  recLevel?: string | undefined;
3390
3361
  halfCampTuition?: number | undefined;
3391
3362
  fullCampTuition?: number | undefined;
@@ -3417,8 +3388,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3417
3388
  updatedAt?: string | undefined;
3418
3389
  phoneNumber?: string | undefined;
3419
3390
  birthDate?: string | undefined;
3420
- username?: string | undefined;
3421
- password?: string | undefined;
3422
3391
  roles?: {
3423
3392
  user: number;
3424
3393
  admin?: number | undefined;
@@ -3467,8 +3436,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3467
3436
  updatedAt?: string | undefined;
3468
3437
  phoneNumber?: string | undefined;
3469
3438
  birthDate?: string | undefined;
3470
- username?: string | undefined;
3471
- password?: string | undefined;
3472
3439
  roles?: {
3473
3440
  user: number;
3474
3441
  admin?: number | undefined;
@@ -3492,6 +3459,7 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3492
3459
  phoneNumber?: string | undefined;
3493
3460
  birthDate?: string | undefined;
3494
3461
  }[] | undefined;
3462
+ schools?: NYIGSchool[] | undefined;
3495
3463
  isInactive?: boolean | undefined;
3496
3464
  doesNotTeachPrivateLessons?: boolean | undefined;
3497
3465
  title?: string | undefined;
@@ -3520,11 +3488,12 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3520
3488
  category: CourseCategory;
3521
3489
  duration: number;
3522
3490
  price: number;
3523
- nyigSchool: NYIGSchool;
3524
3491
  editedBy?: string | undefined;
3525
3492
  createdAt?: string | undefined;
3526
3493
  updatedAt?: string | undefined;
3527
3494
  description?: string | undefined;
3495
+ nyigSchool?: NYIGSchool | undefined;
3496
+ schools?: NYIGSchool[] | undefined;
3528
3497
  recLevel?: string | undefined;
3529
3498
  halfCampTuition?: number | undefined;
3530
3499
  fullCampTuition?: number | undefined;
@@ -3556,8 +3525,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3556
3525
  updatedAt?: string | undefined;
3557
3526
  phoneNumber?: string | undefined;
3558
3527
  birthDate?: string | undefined;
3559
- username?: string | undefined;
3560
- password?: string | undefined;
3561
3528
  roles?: {
3562
3529
  user: number;
3563
3530
  admin?: number | undefined;
@@ -3606,8 +3573,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3606
3573
  updatedAt?: string | undefined;
3607
3574
  phoneNumber?: string | undefined;
3608
3575
  birthDate?: string | undefined;
3609
- username?: string | undefined;
3610
- password?: string | undefined;
3611
3576
  roles?: {
3612
3577
  user: number;
3613
3578
  admin?: number | undefined;
@@ -3631,6 +3596,7 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3631
3596
  phoneNumber?: string | undefined;
3632
3597
  birthDate?: string | undefined;
3633
3598
  }[] | undefined;
3599
+ schools?: NYIGSchool[] | undefined;
3634
3600
  isInactive?: boolean | undefined;
3635
3601
  doesNotTeachPrivateLessons?: boolean | undefined;
3636
3602
  title?: string | undefined;
@@ -4201,8 +4167,6 @@ declare const zInvoicePackageResponse: z.ZodObject<{
4201
4167
  } & {
4202
4168
  student: z.ZodObject<{
4203
4169
  name: z.ZodString;
4204
- username: z.ZodOptional<z.ZodString>;
4205
- password: z.ZodOptional<z.ZodString>;
4206
4170
  roles: z.ZodOptional<z.ZodObject<{
4207
4171
  user: z.ZodNumber;
4208
4172
  admin: z.ZodOptional<z.ZodNumber>;
@@ -4288,8 +4252,6 @@ declare const zInvoicePackageResponse: z.ZodObject<{
4288
4252
  updatedAt?: string | undefined;
4289
4253
  phoneNumber?: string | undefined;
4290
4254
  birthDate?: string | undefined;
4291
- username?: string | undefined;
4292
- password?: string | undefined;
4293
4255
  roles?: {
4294
4256
  user: number;
4295
4257
  admin?: number | undefined;
@@ -4325,8 +4287,6 @@ declare const zInvoicePackageResponse: z.ZodObject<{
4325
4287
  updatedAt?: string | undefined;
4326
4288
  phoneNumber?: string | undefined;
4327
4289
  birthDate?: string | undefined;
4328
- username?: string | undefined;
4329
- password?: string | undefined;
4330
4290
  roles?: {
4331
4291
  user: number;
4332
4292
  admin?: number | undefined;
@@ -4364,8 +4324,6 @@ declare const zInvoicePackageResponse: z.ZodObject<{
4364
4324
  updatedAt?: string | undefined;
4365
4325
  phoneNumber?: string | undefined;
4366
4326
  birthDate?: string | undefined;
4367
- username?: string | undefined;
4368
- password?: string | undefined;
4369
4327
  roles?: {
4370
4328
  user: number;
4371
4329
  admin?: number | undefined;
@@ -4408,8 +4366,6 @@ declare const zInvoicePackageResponse: z.ZodObject<{
4408
4366
  updatedAt?: string | undefined;
4409
4367
  phoneNumber?: string | undefined;
4410
4368
  birthDate?: string | undefined;
4411
- username?: string | undefined;
4412
- password?: string | undefined;
4413
4369
  roles?: {
4414
4370
  user: number;
4415
4371
  admin?: number | undefined;
@@ -4669,8 +4625,6 @@ declare const zInvoiceResponse: z.ZodObject<{
4669
4625
  } & {
4670
4626
  createdBy: z.ZodObject<{
4671
4627
  name: z.ZodString;
4672
- username: z.ZodOptional<z.ZodString>;
4673
- password: z.ZodOptional<z.ZodString>;
4674
4628
  roles: z.ZodOptional<z.ZodObject<{
4675
4629
  user: z.ZodNumber;
4676
4630
  admin: z.ZodOptional<z.ZodNumber>;
@@ -4745,6 +4699,7 @@ declare const zInvoiceResponse: z.ZodObject<{
4745
4699
  bio: z.ZodOptional<z.ZodString>;
4746
4700
  imageUrl: z.ZodOptional<z.ZodString>;
4747
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">>;
4748
4703
  } & {
4749
4704
  _id: z.ZodString;
4750
4705
  editedBy: z.ZodOptional<z.ZodString>;
@@ -4761,8 +4716,6 @@ declare const zInvoiceResponse: z.ZodObject<{
4761
4716
  updatedAt?: string | undefined;
4762
4717
  phoneNumber?: string | undefined;
4763
4718
  birthDate?: string | undefined;
4764
- username?: string | undefined;
4765
- password?: string | undefined;
4766
4719
  roles?: {
4767
4720
  user: number;
4768
4721
  admin?: number | undefined;
@@ -4786,6 +4739,7 @@ declare const zInvoiceResponse: z.ZodObject<{
4786
4739
  phoneNumber?: string | undefined;
4787
4740
  birthDate?: string | undefined;
4788
4741
  }[] | undefined;
4742
+ schools?: NYIGSchool[] | undefined;
4789
4743
  isInactive?: boolean | undefined;
4790
4744
  doesNotTeachPrivateLessons?: boolean | undefined;
4791
4745
  title?: string | undefined;
@@ -4803,8 +4757,6 @@ declare const zInvoiceResponse: z.ZodObject<{
4803
4757
  updatedAt?: string | undefined;
4804
4758
  phoneNumber?: string | undefined;
4805
4759
  birthDate?: string | undefined;
4806
- username?: string | undefined;
4807
- password?: string | undefined;
4808
4760
  roles?: {
4809
4761
  user: number;
4810
4762
  admin?: number | undefined;
@@ -4828,6 +4780,7 @@ declare const zInvoiceResponse: z.ZodObject<{
4828
4780
  phoneNumber?: string | undefined;
4829
4781
  birthDate?: string | undefined;
4830
4782
  }[] | undefined;
4783
+ schools?: NYIGSchool[] | undefined;
4831
4784
  isInactive?: boolean | undefined;
4832
4785
  doesNotTeachPrivateLessons?: boolean | undefined;
4833
4786
  title?: string | undefined;
@@ -4837,8 +4790,6 @@ declare const zInvoiceResponse: z.ZodObject<{
4837
4790
  }>;
4838
4791
  editedBy: z.ZodOptional<z.ZodObject<{
4839
4792
  name: z.ZodString;
4840
- username: z.ZodOptional<z.ZodString>;
4841
- password: z.ZodOptional<z.ZodString>;
4842
4793
  roles: z.ZodOptional<z.ZodObject<{
4843
4794
  user: z.ZodNumber;
4844
4795
  admin: z.ZodOptional<z.ZodNumber>;
@@ -4913,6 +4864,7 @@ declare const zInvoiceResponse: z.ZodObject<{
4913
4864
  bio: z.ZodOptional<z.ZodString>;
4914
4865
  imageUrl: z.ZodOptional<z.ZodString>;
4915
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">>;
4916
4868
  } & {
4917
4869
  _id: z.ZodString;
4918
4870
  editedBy: z.ZodOptional<z.ZodString>;
@@ -4929,8 +4881,6 @@ declare const zInvoiceResponse: z.ZodObject<{
4929
4881
  updatedAt?: string | undefined;
4930
4882
  phoneNumber?: string | undefined;
4931
4883
  birthDate?: string | undefined;
4932
- username?: string | undefined;
4933
- password?: string | undefined;
4934
4884
  roles?: {
4935
4885
  user: number;
4936
4886
  admin?: number | undefined;
@@ -4954,6 +4904,7 @@ declare const zInvoiceResponse: z.ZodObject<{
4954
4904
  phoneNumber?: string | undefined;
4955
4905
  birthDate?: string | undefined;
4956
4906
  }[] | undefined;
4907
+ schools?: NYIGSchool[] | undefined;
4957
4908
  isInactive?: boolean | undefined;
4958
4909
  doesNotTeachPrivateLessons?: boolean | undefined;
4959
4910
  title?: string | undefined;
@@ -4971,8 +4922,6 @@ declare const zInvoiceResponse: z.ZodObject<{
4971
4922
  updatedAt?: string | undefined;
4972
4923
  phoneNumber?: string | undefined;
4973
4924
  birthDate?: string | undefined;
4974
- username?: string | undefined;
4975
- password?: string | undefined;
4976
4925
  roles?: {
4977
4926
  user: number;
4978
4927
  admin?: number | undefined;
@@ -4996,6 +4945,7 @@ declare const zInvoiceResponse: z.ZodObject<{
4996
4945
  phoneNumber?: string | undefined;
4997
4946
  birthDate?: string | undefined;
4998
4947
  }[] | undefined;
4948
+ schools?: NYIGSchool[] | undefined;
4999
4949
  isInactive?: boolean | undefined;
5000
4950
  doesNotTeachPrivateLessons?: boolean | undefined;
5001
4951
  title?: string | undefined;
@@ -5020,8 +4970,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5020
4970
  } & {
5021
4971
  student: z.ZodObject<{
5022
4972
  name: z.ZodString;
5023
- username: z.ZodOptional<z.ZodString>;
5024
- password: z.ZodOptional<z.ZodString>;
5025
4973
  roles: z.ZodOptional<z.ZodObject<{
5026
4974
  user: z.ZodNumber;
5027
4975
  admin: z.ZodOptional<z.ZodNumber>;
@@ -5107,8 +5055,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5107
5055
  updatedAt?: string | undefined;
5108
5056
  phoneNumber?: string | undefined;
5109
5057
  birthDate?: string | undefined;
5110
- username?: string | undefined;
5111
- password?: string | undefined;
5112
5058
  roles?: {
5113
5059
  user: number;
5114
5060
  admin?: number | undefined;
@@ -5144,8 +5090,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5144
5090
  updatedAt?: string | undefined;
5145
5091
  phoneNumber?: string | undefined;
5146
5092
  birthDate?: string | undefined;
5147
- username?: string | undefined;
5148
- password?: string | undefined;
5149
5093
  roles?: {
5150
5094
  user: number;
5151
5095
  admin?: number | undefined;
@@ -5183,8 +5127,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5183
5127
  updatedAt?: string | undefined;
5184
5128
  phoneNumber?: string | undefined;
5185
5129
  birthDate?: string | undefined;
5186
- username?: string | undefined;
5187
- password?: string | undefined;
5188
5130
  roles?: {
5189
5131
  user: number;
5190
5132
  admin?: number | undefined;
@@ -5227,8 +5169,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5227
5169
  updatedAt?: string | undefined;
5228
5170
  phoneNumber?: string | undefined;
5229
5171
  birthDate?: string | undefined;
5230
- username?: string | undefined;
5231
- password?: string | undefined;
5232
5172
  roles?: {
5233
5173
  user: number;
5234
5174
  admin?: number | undefined;
@@ -5275,8 +5215,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5275
5215
  updatedAt?: string | undefined;
5276
5216
  phoneNumber?: string | undefined;
5277
5217
  birthDate?: string | undefined;
5278
- username?: string | undefined;
5279
- password?: string | undefined;
5280
5218
  roles?: {
5281
5219
  user: number;
5282
5220
  admin?: number | undefined;
@@ -5323,8 +5261,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5323
5261
  updatedAt?: string | undefined;
5324
5262
  phoneNumber?: string | undefined;
5325
5263
  birthDate?: string | undefined;
5326
- username?: string | undefined;
5327
- password?: string | undefined;
5328
5264
  roles?: {
5329
5265
  user: number;
5330
5266
  admin?: number | undefined;
@@ -5348,6 +5284,7 @@ declare const zInvoiceResponse: z.ZodObject<{
5348
5284
  phoneNumber?: string | undefined;
5349
5285
  birthDate?: string | undefined;
5350
5286
  }[] | undefined;
5287
+ schools?: NYIGSchool[] | undefined;
5351
5288
  isInactive?: boolean | undefined;
5352
5289
  doesNotTeachPrivateLessons?: boolean | undefined;
5353
5290
  title?: string | undefined;
@@ -5369,8 +5306,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5369
5306
  updatedAt?: string | undefined;
5370
5307
  phoneNumber?: string | undefined;
5371
5308
  birthDate?: string | undefined;
5372
- username?: string | undefined;
5373
- password?: string | undefined;
5374
5309
  roles?: {
5375
5310
  user: number;
5376
5311
  admin?: number | undefined;
@@ -5394,6 +5329,7 @@ declare const zInvoiceResponse: z.ZodObject<{
5394
5329
  phoneNumber?: string | undefined;
5395
5330
  birthDate?: string | undefined;
5396
5331
  }[] | undefined;
5332
+ schools?: NYIGSchool[] | undefined;
5397
5333
  isInactive?: boolean | undefined;
5398
5334
  doesNotTeachPrivateLessons?: boolean | undefined;
5399
5335
  title?: string | undefined;
@@ -5422,8 +5358,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5422
5358
  updatedAt?: string | undefined;
5423
5359
  phoneNumber?: string | undefined;
5424
5360
  birthDate?: string | undefined;
5425
- username?: string | undefined;
5426
- password?: string | undefined;
5427
5361
  roles?: {
5428
5362
  user: number;
5429
5363
  admin?: number | undefined;
@@ -5470,8 +5404,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5470
5404
  updatedAt?: string | undefined;
5471
5405
  phoneNumber?: string | undefined;
5472
5406
  birthDate?: string | undefined;
5473
- username?: string | undefined;
5474
- password?: string | undefined;
5475
5407
  roles?: {
5476
5408
  user: number;
5477
5409
  admin?: number | undefined;
@@ -5495,6 +5427,7 @@ declare const zInvoiceResponse: z.ZodObject<{
5495
5427
  phoneNumber?: string | undefined;
5496
5428
  birthDate?: string | undefined;
5497
5429
  }[] | undefined;
5430
+ schools?: NYIGSchool[] | undefined;
5498
5431
  isInactive?: boolean | undefined;
5499
5432
  doesNotTeachPrivateLessons?: boolean | undefined;
5500
5433
  title?: string | undefined;
@@ -5516,8 +5449,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5516
5449
  updatedAt?: string | undefined;
5517
5450
  phoneNumber?: string | undefined;
5518
5451
  birthDate?: string | undefined;
5519
- username?: string | undefined;
5520
- password?: string | undefined;
5521
5452
  roles?: {
5522
5453
  user: number;
5523
5454
  admin?: number | undefined;
@@ -5541,6 +5472,7 @@ declare const zInvoiceResponse: z.ZodObject<{
5541
5472
  phoneNumber?: string | undefined;
5542
5473
  birthDate?: string | undefined;
5543
5474
  }[] | undefined;
5475
+ schools?: NYIGSchool[] | undefined;
5544
5476
  isInactive?: boolean | undefined;
5545
5477
  doesNotTeachPrivateLessons?: boolean | undefined;
5546
5478
  title?: string | undefined;
@@ -5831,15 +5763,15 @@ declare const zCourseTable: z.ZodObject<{
5831
5763
  tuition: z.ZodString;
5832
5764
  }, "strip", z.ZodTypeAny, {
5833
5765
  name: string;
5834
- tuition: string;
5835
5766
  duration: number;
5767
+ tuition: string;
5836
5768
  id: string;
5837
5769
  dateAndTime: string;
5838
5770
  recommendedLevel: string;
5839
5771
  }, {
5840
5772
  name: string;
5841
- tuition: string;
5842
5773
  duration: number;
5774
+ tuition: string;
5843
5775
  id: string;
5844
5776
  dateAndTime: string;
5845
5777
  recommendedLevel: string;
@@ -5895,14 +5827,14 @@ declare const zBReportTicket: z.ZodObject<{
5895
5827
  description: z.ZodString;
5896
5828
  }, "strip", z.ZodTypeAny, {
5897
5829
  status: TicketStatus;
5898
- title: string;
5899
5830
  description: string;
5831
+ title: string;
5900
5832
  requester: string;
5901
5833
  resolver?: string | undefined;
5902
5834
  }, {
5903
5835
  status: TicketStatus;
5904
- title: string;
5905
5836
  description: string;
5837
+ title: string;
5906
5838
  requester: string;
5907
5839
  resolver?: string | undefined;
5908
5840
  }>;
@@ -5920,8 +5852,8 @@ declare const zReportTicket: z.ZodObject<{
5920
5852
  }, z.UnknownKeysParam, z.ZodTypeAny, {
5921
5853
  status: TicketStatus;
5922
5854
  _id: string;
5923
- title: string;
5924
5855
  description: string;
5856
+ title: string;
5925
5857
  requester: string;
5926
5858
  editedBy?: string | undefined;
5927
5859
  createdAt?: string | undefined;
@@ -5930,8 +5862,8 @@ declare const zReportTicket: z.ZodObject<{
5930
5862
  }, {
5931
5863
  status: TicketStatus;
5932
5864
  _id: string;
5933
- title: string;
5934
5865
  description: string;
5866
+ title: string;
5935
5867
  requester: string;
5936
5868
  editedBy?: string | undefined;
5937
5869
  createdAt?: string | undefined;
@@ -5949,8 +5881,6 @@ declare const zReportTicketResponse: z.ZodObject<{
5949
5881
  } & {
5950
5882
  requester: z.ZodObject<{
5951
5883
  name: z.ZodString;
5952
- username: z.ZodOptional<z.ZodString>;
5953
- password: z.ZodOptional<z.ZodString>;
5954
5884
  roles: z.ZodOptional<z.ZodObject<{
5955
5885
  user: z.ZodNumber;
5956
5886
  admin: z.ZodOptional<z.ZodNumber>;
@@ -6032,8 +5962,6 @@ declare const zReportTicketResponse: z.ZodObject<{
6032
5962
  updatedAt?: string | undefined;
6033
5963
  phoneNumber?: string | undefined;
6034
5964
  birthDate?: string | undefined;
6035
- username?: string | undefined;
6036
- password?: string | undefined;
6037
5965
  roles?: {
6038
5966
  user: number;
6039
5967
  admin?: number | undefined;
@@ -6067,8 +5995,6 @@ declare const zReportTicketResponse: z.ZodObject<{
6067
5995
  updatedAt?: string | undefined;
6068
5996
  phoneNumber?: string | undefined;
6069
5997
  birthDate?: string | undefined;
6070
- username?: string | undefined;
6071
- password?: string | undefined;
6072
5998
  roles?: {
6073
5999
  user: number;
6074
6000
  admin?: number | undefined;
@@ -6095,8 +6021,6 @@ declare const zReportTicketResponse: z.ZodObject<{
6095
6021
  }>;
6096
6022
  resolver: z.ZodOptional<z.ZodObject<{
6097
6023
  name: z.ZodString;
6098
- username: z.ZodOptional<z.ZodString>;
6099
- password: z.ZodOptional<z.ZodString>;
6100
6024
  roles: z.ZodOptional<z.ZodObject<{
6101
6025
  user: z.ZodNumber;
6102
6026
  admin: z.ZodOptional<z.ZodNumber>;
@@ -6178,8 +6102,6 @@ declare const zReportTicketResponse: z.ZodObject<{
6178
6102
  updatedAt?: string | undefined;
6179
6103
  phoneNumber?: string | undefined;
6180
6104
  birthDate?: string | undefined;
6181
- username?: string | undefined;
6182
- password?: string | undefined;
6183
6105
  roles?: {
6184
6106
  user: number;
6185
6107
  admin?: number | undefined;
@@ -6213,8 +6135,6 @@ declare const zReportTicketResponse: z.ZodObject<{
6213
6135
  updatedAt?: string | undefined;
6214
6136
  phoneNumber?: string | undefined;
6215
6137
  birthDate?: string | undefined;
6216
- username?: string | undefined;
6217
- password?: string | undefined;
6218
6138
  roles?: {
6219
6139
  user: number;
6220
6140
  admin?: number | undefined;
@@ -6242,8 +6162,8 @@ declare const zReportTicketResponse: z.ZodObject<{
6242
6162
  }, z.UnknownKeysParam, z.ZodTypeAny, {
6243
6163
  status: TicketStatus;
6244
6164
  _id: string;
6245
- title: string;
6246
6165
  description: string;
6166
+ title: string;
6247
6167
  requester: {
6248
6168
  _id: string;
6249
6169
  name: string;
@@ -6254,8 +6174,6 @@ declare const zReportTicketResponse: z.ZodObject<{
6254
6174
  updatedAt?: string | undefined;
6255
6175
  phoneNumber?: string | undefined;
6256
6176
  birthDate?: string | undefined;
6257
- username?: string | undefined;
6258
- password?: string | undefined;
6259
6177
  roles?: {
6260
6178
  user: number;
6261
6179
  admin?: number | undefined;
@@ -6293,8 +6211,6 @@ declare const zReportTicketResponse: z.ZodObject<{
6293
6211
  updatedAt?: string | undefined;
6294
6212
  phoneNumber?: string | undefined;
6295
6213
  birthDate?: string | undefined;
6296
- username?: string | undefined;
6297
- password?: string | undefined;
6298
6214
  roles?: {
6299
6215
  user: number;
6300
6216
  admin?: number | undefined;
@@ -6322,8 +6238,8 @@ declare const zReportTicketResponse: z.ZodObject<{
6322
6238
  }, {
6323
6239
  status: TicketStatus;
6324
6240
  _id: string;
6325
- title: string;
6326
6241
  description: string;
6242
+ title: string;
6327
6243
  requester: {
6328
6244
  _id: string;
6329
6245
  name: string;
@@ -6334,8 +6250,6 @@ declare const zReportTicketResponse: z.ZodObject<{
6334
6250
  updatedAt?: string | undefined;
6335
6251
  phoneNumber?: string | undefined;
6336
6252
  birthDate?: string | undefined;
6337
- username?: string | undefined;
6338
- password?: string | undefined;
6339
6253
  roles?: {
6340
6254
  user: number;
6341
6255
  admin?: number | undefined;
@@ -6373,8 +6287,6 @@ declare const zReportTicketResponse: z.ZodObject<{
6373
6287
  updatedAt?: string | undefined;
6374
6288
  phoneNumber?: string | undefined;
6375
6289
  birthDate?: string | undefined;
6376
- username?: string | undefined;
6377
- password?: string | undefined;
6378
6290
  roles?: {
6379
6291
  user: number;
6380
6292
  admin?: number | undefined;
@@ -6576,8 +6488,8 @@ declare const zBEventConfig: z.ZodObject<{
6576
6488
  width: number;
6577
6489
  }>>;
6578
6490
  }, "strip", z.ZodTypeAny, {
6579
- title: string;
6580
6491
  description: string;
6492
+ title: string;
6581
6493
  url: string;
6582
6494
  shortTitle: string;
6583
6495
  tStart: Date;
@@ -6598,8 +6510,8 @@ declare const zBEventConfig: z.ZodObject<{
6598
6510
  width: number;
6599
6511
  } | undefined;
6600
6512
  }, {
6601
- title: string;
6602
6513
  description: string;
6514
+ title: string;
6603
6515
  url: string;
6604
6516
  shortTitle: string;
6605
6517
  tStart: Date;
@@ -6715,8 +6627,8 @@ declare const zEventConfig: z.ZodObject<{
6715
6627
  updatedAt: z.ZodOptional<z.ZodString>;
6716
6628
  }, z.UnknownKeysParam, z.ZodTypeAny, {
6717
6629
  _id: string;
6718
- title: string;
6719
6630
  description: string;
6631
+ title: string;
6720
6632
  url: string;
6721
6633
  shortTitle: string;
6722
6634
  tStart: Date;
@@ -6741,8 +6653,8 @@ declare const zEventConfig: z.ZodObject<{
6741
6653
  } | undefined;
6742
6654
  }, {
6743
6655
  _id: string;
6744
- title: string;
6745
6656
  description: string;
6657
+ title: string;
6746
6658
  url: string;
6747
6659
  shortTitle: string;
6748
6660
  tStart: Date;
@@ -6837,8 +6749,8 @@ declare const zEventConfigResponse: z.ZodObject<{
6837
6749
  }>, "many">;
6838
6750
  }, z.UnknownKeysParam, z.ZodTypeAny, {
6839
6751
  _id: string;
6840
- title: string;
6841
6752
  description: string;
6753
+ title: string;
6842
6754
  url: string;
6843
6755
  shortTitle: string;
6844
6756
  tStart: Date;
@@ -6874,8 +6786,8 @@ declare const zEventConfigResponse: z.ZodObject<{
6874
6786
  } | undefined;
6875
6787
  }, {
6876
6788
  _id: string;
6877
- title: string;
6878
6789
  description: string;
6790
+ title: string;
6879
6791
  url: string;
6880
6792
  shortTitle: string;
6881
6793
  tStart: Date;
@@ -7516,8 +7428,6 @@ declare enum GoRank {
7516
7428
 
7517
7429
  declare const zBUser: z.ZodObject<{
7518
7430
  name: z.ZodString;
7519
- username: z.ZodOptional<z.ZodString>;
7520
- password: z.ZodOptional<z.ZodString>;
7521
7431
  roles: z.ZodOptional<z.ZodObject<{
7522
7432
  user: z.ZodNumber;
7523
7433
  admin: z.ZodOptional<z.ZodNumber>;
@@ -7596,8 +7506,6 @@ declare const zBUser: z.ZodObject<{
7596
7506
  address?: string | undefined;
7597
7507
  phoneNumber?: string | undefined;
7598
7508
  birthDate?: string | undefined;
7599
- username?: string | undefined;
7600
- password?: string | undefined;
7601
7509
  roles?: {
7602
7510
  user: number;
7603
7511
  admin?: number | undefined;
@@ -7627,8 +7535,6 @@ declare const zBUser: z.ZodObject<{
7627
7535
  address?: string | undefined;
7628
7536
  phoneNumber?: string | undefined;
7629
7537
  birthDate?: string | undefined;
7630
- username?: string | undefined;
7631
- password?: string | undefined;
7632
7538
  roles?: {
7633
7539
  user: number;
7634
7540
  admin?: number | undefined;
@@ -7655,8 +7561,6 @@ declare const zBUser: z.ZodObject<{
7655
7561
  }>;
7656
7562
  declare const zUser: z.ZodObject<{
7657
7563
  name: z.ZodString;
7658
- username: z.ZodOptional<z.ZodString>;
7659
- password: z.ZodOptional<z.ZodString>;
7660
7564
  roles: z.ZodOptional<z.ZodObject<{
7661
7565
  user: z.ZodNumber;
7662
7566
  admin: z.ZodOptional<z.ZodNumber>;
@@ -7744,8 +7648,6 @@ declare const zUser: z.ZodObject<{
7744
7648
  updatedAt?: string | undefined;
7745
7649
  phoneNumber?: string | undefined;
7746
7650
  birthDate?: string | undefined;
7747
- username?: string | undefined;
7748
- password?: string | undefined;
7749
7651
  roles?: {
7750
7652
  user: number;
7751
7653
  admin?: number | undefined;
@@ -7779,8 +7681,6 @@ declare const zUser: z.ZodObject<{
7779
7681
  updatedAt?: string | undefined;
7780
7682
  phoneNumber?: string | undefined;
7781
7683
  birthDate?: string | undefined;
7782
- username?: string | undefined;
7783
- password?: string | undefined;
7784
7684
  roles?: {
7785
7685
  user: number;
7786
7686
  admin?: number | undefined;
@@ -7913,8 +7813,6 @@ type UserRoles = z.infer<typeof zUserRoles>;
7913
7813
 
7914
7814
  declare const zBStudent: z.ZodObject<{
7915
7815
  name: z.ZodString;
7916
- username: z.ZodOptional<z.ZodString>;
7917
- password: z.ZodOptional<z.ZodString>;
7918
7816
  roles: z.ZodOptional<z.ZodObject<{
7919
7817
  user: z.ZodNumber;
7920
7818
  admin: z.ZodOptional<z.ZodNumber>;
@@ -7991,8 +7889,6 @@ declare const zBStudent: z.ZodObject<{
7991
7889
  address?: string | undefined;
7992
7890
  phoneNumber?: string | undefined;
7993
7891
  birthDate?: string | undefined;
7994
- username?: string | undefined;
7995
- password?: string | undefined;
7996
7892
  roles?: {
7997
7893
  user: number;
7998
7894
  admin?: number | undefined;
@@ -8024,8 +7920,6 @@ declare const zBStudent: z.ZodObject<{
8024
7920
  address?: string | undefined;
8025
7921
  phoneNumber?: string | undefined;
8026
7922
  birthDate?: string | undefined;
8027
- username?: string | undefined;
8028
- password?: string | undefined;
8029
7923
  roles?: {
8030
7924
  user: number;
8031
7925
  admin?: number | undefined;
@@ -8053,8 +7947,6 @@ declare const zBStudent: z.ZodObject<{
8053
7947
  }>;
8054
7948
  declare const zStudent: z.ZodObject<{
8055
7949
  name: z.ZodString;
8056
- username: z.ZodOptional<z.ZodString>;
8057
- password: z.ZodOptional<z.ZodString>;
8058
7950
  roles: z.ZodOptional<z.ZodObject<{
8059
7951
  user: z.ZodNumber;
8060
7952
  admin: z.ZodOptional<z.ZodNumber>;
@@ -8140,8 +8032,6 @@ declare const zStudent: z.ZodObject<{
8140
8032
  updatedAt?: string | undefined;
8141
8033
  phoneNumber?: string | undefined;
8142
8034
  birthDate?: string | undefined;
8143
- username?: string | undefined;
8144
- password?: string | undefined;
8145
8035
  roles?: {
8146
8036
  user: number;
8147
8037
  admin?: number | undefined;
@@ -8177,8 +8067,6 @@ declare const zStudent: z.ZodObject<{
8177
8067
  updatedAt?: string | undefined;
8178
8068
  phoneNumber?: string | undefined;
8179
8069
  birthDate?: string | undefined;
8180
- username?: string | undefined;
8181
- password?: string | undefined;
8182
8070
  roles?: {
8183
8071
  user: number;
8184
8072
  admin?: number | undefined;
@@ -8209,8 +8097,6 @@ type Student = z.infer<typeof zStudent>;
8209
8097
 
8210
8098
  declare const zBTeacher: z.ZodObject<{
8211
8099
  name: z.ZodString;
8212
- username: z.ZodOptional<z.ZodString>;
8213
- password: z.ZodOptional<z.ZodString>;
8214
8100
  roles: z.ZodOptional<z.ZodObject<{
8215
8101
  user: z.ZodNumber;
8216
8102
  admin: z.ZodOptional<z.ZodNumber>;
@@ -8313,6 +8199,11 @@ declare const zBTeacher: z.ZodObject<{
8313
8199
  * ]
8314
8200
  */
8315
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">>;
8316
8207
  }, "strip", z.ZodTypeAny, {
8317
8208
  rank: GoRank;
8318
8209
  name: string;
@@ -8320,8 +8211,6 @@ declare const zBTeacher: z.ZodObject<{
8320
8211
  address?: string | undefined;
8321
8212
  phoneNumber?: string | undefined;
8322
8213
  birthDate?: string | undefined;
8323
- username?: string | undefined;
8324
- password?: string | undefined;
8325
8214
  roles?: {
8326
8215
  user: number;
8327
8216
  admin?: number | undefined;
@@ -8345,6 +8234,7 @@ declare const zBTeacher: z.ZodObject<{
8345
8234
  phoneNumber?: string | undefined;
8346
8235
  birthDate?: string | undefined;
8347
8236
  }[] | undefined;
8237
+ schools?: NYIGSchool[] | undefined;
8348
8238
  isInactive?: boolean | undefined;
8349
8239
  doesNotTeachPrivateLessons?: boolean | undefined;
8350
8240
  title?: string | undefined;
@@ -8358,8 +8248,6 @@ declare const zBTeacher: z.ZodObject<{
8358
8248
  address?: string | undefined;
8359
8249
  phoneNumber?: string | undefined;
8360
8250
  birthDate?: string | undefined;
8361
- username?: string | undefined;
8362
- password?: string | undefined;
8363
8251
  roles?: {
8364
8252
  user: number;
8365
8253
  admin?: number | undefined;
@@ -8383,6 +8271,7 @@ declare const zBTeacher: z.ZodObject<{
8383
8271
  phoneNumber?: string | undefined;
8384
8272
  birthDate?: string | undefined;
8385
8273
  }[] | undefined;
8274
+ schools?: NYIGSchool[] | undefined;
8386
8275
  isInactive?: boolean | undefined;
8387
8276
  doesNotTeachPrivateLessons?: boolean | undefined;
8388
8277
  title?: string | undefined;
@@ -8392,8 +8281,6 @@ declare const zBTeacher: z.ZodObject<{
8392
8281
  }>;
8393
8282
  declare const zTeacher: z.ZodObject<{
8394
8283
  name: z.ZodString;
8395
- username: z.ZodOptional<z.ZodString>;
8396
- password: z.ZodOptional<z.ZodString>;
8397
8284
  roles: z.ZodOptional<z.ZodObject<{
8398
8285
  user: z.ZodNumber;
8399
8286
  admin: z.ZodOptional<z.ZodNumber>;
@@ -8496,6 +8383,11 @@ declare const zTeacher: z.ZodObject<{
8496
8383
  * ]
8497
8384
  */
8498
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">>;
8499
8391
  } & {
8500
8392
  _id: z.ZodString;
8501
8393
  editedBy: z.ZodOptional<z.ZodString>;
@@ -8512,8 +8404,6 @@ declare const zTeacher: z.ZodObject<{
8512
8404
  updatedAt?: string | undefined;
8513
8405
  phoneNumber?: string | undefined;
8514
8406
  birthDate?: string | undefined;
8515
- username?: string | undefined;
8516
- password?: string | undefined;
8517
8407
  roles?: {
8518
8408
  user: number;
8519
8409
  admin?: number | undefined;
@@ -8537,6 +8427,7 @@ declare const zTeacher: z.ZodObject<{
8537
8427
  phoneNumber?: string | undefined;
8538
8428
  birthDate?: string | undefined;
8539
8429
  }[] | undefined;
8430
+ schools?: NYIGSchool[] | undefined;
8540
8431
  isInactive?: boolean | undefined;
8541
8432
  doesNotTeachPrivateLessons?: boolean | undefined;
8542
8433
  title?: string | undefined;
@@ -8554,8 +8445,6 @@ declare const zTeacher: z.ZodObject<{
8554
8445
  updatedAt?: string | undefined;
8555
8446
  phoneNumber?: string | undefined;
8556
8447
  birthDate?: string | undefined;
8557
- username?: string | undefined;
8558
- password?: string | undefined;
8559
8448
  roles?: {
8560
8449
  user: number;
8561
8450
  admin?: number | undefined;
@@ -8579,6 +8468,7 @@ declare const zTeacher: z.ZodObject<{
8579
8468
  phoneNumber?: string | undefined;
8580
8469
  birthDate?: string | undefined;
8581
8470
  }[] | undefined;
8471
+ schools?: NYIGSchool[] | undefined;
8582
8472
  isInactive?: boolean | undefined;
8583
8473
  doesNotTeachPrivateLessons?: boolean | undefined;
8584
8474
  title?: string | undefined;
@@ -8588,8 +8478,6 @@ declare const zTeacher: z.ZodObject<{
8588
8478
  }>;
8589
8479
  declare const zTeacherResponse: z.ZodObject<Omit<{
8590
8480
  name: z.ZodString;
8591
- username: z.ZodOptional<z.ZodString>;
8592
- password: z.ZodOptional<z.ZodString>;
8593
8481
  roles: z.ZodOptional<z.ZodObject<{
8594
8482
  user: z.ZodNumber;
8595
8483
  admin: z.ZodOptional<z.ZodNumber>;
@@ -8692,12 +8580,17 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
8692
8580
  * ]
8693
8581
  */
8694
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">>;
8695
8588
  } & {
8696
8589
  _id: z.ZodString;
8697
8590
  editedBy: z.ZodOptional<z.ZodString>;
8698
8591
  createdAt: z.ZodOptional<z.ZodString>;
8699
8592
  updatedAt: z.ZodOptional<z.ZodString>;
8700
- }, "editedBy" | "createdAt" | "updatedAt" | "password" | "roles"> & {
8593
+ }, "editedBy" | "createdAt" | "updatedAt" | "roles"> & {
8701
8594
  role: z.ZodNumber;
8702
8595
  }, z.UnknownKeysParam, z.ZodTypeAny, {
8703
8596
  rank: GoRank;
@@ -8708,7 +8601,6 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
8708
8601
  address?: string | undefined;
8709
8602
  phoneNumber?: string | undefined;
8710
8603
  birthDate?: string | undefined;
8711
- username?: string | undefined;
8712
8604
  country?: string | undefined;
8713
8605
  shouldChangePassword?: boolean | undefined;
8714
8606
  profiles?: {
@@ -8727,6 +8619,7 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
8727
8619
  phoneNumber?: string | undefined;
8728
8620
  birthDate?: string | undefined;
8729
8621
  }[] | undefined;
8622
+ schools?: NYIGSchool[] | undefined;
8730
8623
  isInactive?: boolean | undefined;
8731
8624
  doesNotTeachPrivateLessons?: boolean | undefined;
8732
8625
  title?: string | undefined;
@@ -8742,7 +8635,6 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
8742
8635
  address?: string | undefined;
8743
8636
  phoneNumber?: string | undefined;
8744
8637
  birthDate?: string | undefined;
8745
- username?: string | undefined;
8746
8638
  country?: string | undefined;
8747
8639
  shouldChangePassword?: boolean | undefined;
8748
8640
  profiles?: {
@@ -8761,6 +8653,7 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
8761
8653
  phoneNumber?: string | undefined;
8762
8654
  birthDate?: string | undefined;
8763
8655
  }[] | undefined;
8656
+ schools?: NYIGSchool[] | undefined;
8764
8657
  isInactive?: boolean | undefined;
8765
8658
  doesNotTeachPrivateLessons?: boolean | undefined;
8766
8659
  title?: string | undefined;