@nyig/models 0.6.1 → 0.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.mts CHANGED
@@ -293,14 +293,14 @@ declare const zAttendanceResponse: z.ZodObject<{
293
293
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
294
294
  shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
295
295
  profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
296
- firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
297
- lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
298
- address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
296
+ firstName: z.ZodString;
297
+ lastName: z.ZodString;
299
298
  rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
300
- agaId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
301
- participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
299
+ agaId: z.ZodString;
300
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
301
+ participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
302
302
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
303
- preferredEmail: z.ZodOptional<z.ZodString>;
303
+ preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
304
304
  phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
305
305
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
306
306
  } & {
@@ -309,32 +309,32 @@ declare const zAttendanceResponse: z.ZodObject<{
309
309
  createdAt: z.ZodOptional<z.ZodString>;
310
310
  updatedAt: z.ZodOptional<z.ZodString>;
311
311
  }, z.UnknownKeysParam, z.ZodTypeAny, {
312
+ firstName: string;
313
+ lastName: string;
312
314
  _id: string;
313
- firstName?: string | undefined;
314
- lastName?: string | undefined;
315
+ agaId: string;
315
316
  rank?: GoRank | undefined;
316
317
  address?: string | undefined;
317
318
  showOnWhoIsComing?: boolean | undefined;
318
- participateAs?: "adult" | "youth" | undefined;
319
+ participateAs?: "" | "adult" | "youth" | undefined;
319
320
  editedBy?: string | undefined;
320
321
  createdAt?: string | undefined;
321
322
  updatedAt?: string | undefined;
322
- agaId?: string | undefined;
323
323
  preferredEmail?: string | undefined;
324
324
  phoneNumber?: string | undefined;
325
325
  birthDate?: string | undefined;
326
326
  }, {
327
+ firstName: string;
328
+ lastName: string;
327
329
  _id: string;
328
- firstName?: string | undefined;
329
- lastName?: string | undefined;
330
+ agaId: string;
330
331
  rank?: GoRank | undefined;
331
332
  address?: string | undefined;
332
333
  showOnWhoIsComing?: boolean | undefined;
333
- participateAs?: "adult" | "youth" | undefined;
334
+ participateAs?: "" | "adult" | "youth" | undefined;
334
335
  editedBy?: string | undefined;
335
336
  createdAt?: string | undefined;
336
337
  updatedAt?: string | undefined;
337
- agaId?: string | undefined;
338
338
  preferredEmail?: string | undefined;
339
339
  phoneNumber?: string | undefined;
340
340
  birthDate?: string | undefined;
@@ -368,17 +368,17 @@ declare const zAttendanceResponse: z.ZodObject<{
368
368
  country?: string | undefined;
369
369
  shouldChangePassword?: boolean | undefined;
370
370
  profiles?: {
371
+ firstName: string;
372
+ lastName: string;
371
373
  _id: string;
372
- firstName?: string | undefined;
373
- lastName?: string | undefined;
374
+ agaId: string;
374
375
  rank?: GoRank | undefined;
375
376
  address?: string | undefined;
376
377
  showOnWhoIsComing?: boolean | undefined;
377
- participateAs?: "adult" | "youth" | undefined;
378
+ participateAs?: "" | "adult" | "youth" | undefined;
378
379
  editedBy?: string | undefined;
379
380
  createdAt?: string | undefined;
380
381
  updatedAt?: string | undefined;
381
- agaId?: string | undefined;
382
382
  preferredEmail?: string | undefined;
383
383
  phoneNumber?: string | undefined;
384
384
  birthDate?: string | undefined;
@@ -405,17 +405,17 @@ declare const zAttendanceResponse: z.ZodObject<{
405
405
  country?: string | undefined;
406
406
  shouldChangePassword?: boolean | undefined;
407
407
  profiles?: {
408
+ firstName: string;
409
+ lastName: string;
408
410
  _id: string;
409
- firstName?: string | undefined;
410
- lastName?: string | undefined;
411
+ agaId: string;
411
412
  rank?: GoRank | undefined;
412
413
  address?: string | undefined;
413
414
  showOnWhoIsComing?: boolean | undefined;
414
- participateAs?: "adult" | "youth" | undefined;
415
+ participateAs?: "" | "adult" | "youth" | undefined;
415
416
  editedBy?: string | undefined;
416
417
  createdAt?: string | undefined;
417
418
  updatedAt?: string | undefined;
418
- agaId?: string | undefined;
419
419
  preferredEmail?: string | undefined;
420
420
  phoneNumber?: string | undefined;
421
421
  birthDate?: string | undefined;
@@ -445,17 +445,17 @@ declare const zAttendanceResponse: z.ZodObject<{
445
445
  country?: string | undefined;
446
446
  shouldChangePassword?: boolean | undefined;
447
447
  profiles?: {
448
+ firstName: string;
449
+ lastName: string;
448
450
  _id: string;
449
- firstName?: string | undefined;
450
- lastName?: string | undefined;
451
+ agaId: string;
451
452
  rank?: GoRank | undefined;
452
453
  address?: string | undefined;
453
454
  showOnWhoIsComing?: boolean | undefined;
454
- participateAs?: "adult" | "youth" | undefined;
455
+ participateAs?: "" | "adult" | "youth" | undefined;
455
456
  editedBy?: string | undefined;
456
457
  createdAt?: string | undefined;
457
458
  updatedAt?: string | undefined;
458
- agaId?: string | undefined;
459
459
  preferredEmail?: string | undefined;
460
460
  phoneNumber?: string | undefined;
461
461
  birthDate?: string | undefined;
@@ -496,17 +496,17 @@ declare const zAttendanceResponse: z.ZodObject<{
496
496
  country?: string | undefined;
497
497
  shouldChangePassword?: boolean | undefined;
498
498
  profiles?: {
499
+ firstName: string;
500
+ lastName: string;
499
501
  _id: string;
500
- firstName?: string | undefined;
501
- lastName?: string | undefined;
502
+ agaId: string;
502
503
  rank?: GoRank | undefined;
503
504
  address?: string | undefined;
504
505
  showOnWhoIsComing?: boolean | undefined;
505
- participateAs?: "adult" | "youth" | undefined;
506
+ participateAs?: "" | "adult" | "youth" | undefined;
506
507
  editedBy?: string | undefined;
507
508
  createdAt?: string | undefined;
508
509
  updatedAt?: string | undefined;
509
- agaId?: string | undefined;
510
510
  preferredEmail?: string | undefined;
511
511
  phoneNumber?: string | undefined;
512
512
  birthDate?: string | undefined;
@@ -850,14 +850,14 @@ declare const zCampTrackerResponse: z.ZodObject<{
850
850
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
851
851
  shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
852
852
  profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
853
- firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
854
- lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
855
- address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
853
+ firstName: z.ZodString;
854
+ lastName: z.ZodString;
856
855
  rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
857
- agaId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
858
- participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
856
+ agaId: z.ZodString;
857
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
858
+ participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
859
859
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
860
- preferredEmail: z.ZodOptional<z.ZodString>;
860
+ preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
861
861
  phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
862
862
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
863
863
  } & {
@@ -866,32 +866,32 @@ declare const zCampTrackerResponse: z.ZodObject<{
866
866
  createdAt: z.ZodOptional<z.ZodString>;
867
867
  updatedAt: z.ZodOptional<z.ZodString>;
868
868
  }, z.UnknownKeysParam, z.ZodTypeAny, {
869
+ firstName: string;
870
+ lastName: string;
869
871
  _id: string;
870
- firstName?: string | undefined;
871
- lastName?: string | undefined;
872
+ agaId: string;
872
873
  rank?: GoRank | undefined;
873
874
  address?: string | undefined;
874
875
  showOnWhoIsComing?: boolean | undefined;
875
- participateAs?: "adult" | "youth" | undefined;
876
+ participateAs?: "" | "adult" | "youth" | undefined;
876
877
  editedBy?: string | undefined;
877
878
  createdAt?: string | undefined;
878
879
  updatedAt?: string | undefined;
879
- agaId?: string | undefined;
880
880
  preferredEmail?: string | undefined;
881
881
  phoneNumber?: string | undefined;
882
882
  birthDate?: string | undefined;
883
883
  }, {
884
+ firstName: string;
885
+ lastName: string;
884
886
  _id: string;
885
- firstName?: string | undefined;
886
- lastName?: string | undefined;
887
+ agaId: string;
887
888
  rank?: GoRank | undefined;
888
889
  address?: string | undefined;
889
890
  showOnWhoIsComing?: boolean | undefined;
890
- participateAs?: "adult" | "youth" | undefined;
891
+ participateAs?: "" | "adult" | "youth" | undefined;
891
892
  editedBy?: string | undefined;
892
893
  createdAt?: string | undefined;
893
894
  updatedAt?: string | undefined;
894
- agaId?: string | undefined;
895
895
  preferredEmail?: string | undefined;
896
896
  phoneNumber?: string | undefined;
897
897
  birthDate?: string | undefined;
@@ -930,17 +930,17 @@ declare const zCampTrackerResponse: z.ZodObject<{
930
930
  country?: string | undefined;
931
931
  shouldChangePassword?: boolean | undefined;
932
932
  profiles?: {
933
+ firstName: string;
934
+ lastName: string;
933
935
  _id: string;
934
- firstName?: string | undefined;
935
- lastName?: string | undefined;
936
+ agaId: string;
936
937
  rank?: GoRank | undefined;
937
938
  address?: string | undefined;
938
939
  showOnWhoIsComing?: boolean | undefined;
939
- participateAs?: "adult" | "youth" | undefined;
940
+ participateAs?: "" | "adult" | "youth" | undefined;
940
941
  editedBy?: string | undefined;
941
942
  createdAt?: string | undefined;
942
943
  updatedAt?: string | undefined;
943
- agaId?: string | undefined;
944
944
  preferredEmail?: string | undefined;
945
945
  phoneNumber?: string | undefined;
946
946
  birthDate?: string | undefined;
@@ -972,17 +972,17 @@ declare const zCampTrackerResponse: z.ZodObject<{
972
972
  country?: string | undefined;
973
973
  shouldChangePassword?: boolean | undefined;
974
974
  profiles?: {
975
+ firstName: string;
976
+ lastName: string;
975
977
  _id: string;
976
- firstName?: string | undefined;
977
- lastName?: string | undefined;
978
+ agaId: string;
978
979
  rank?: GoRank | undefined;
979
980
  address?: string | undefined;
980
981
  showOnWhoIsComing?: boolean | undefined;
981
- participateAs?: "adult" | "youth" | undefined;
982
+ participateAs?: "" | "adult" | "youth" | undefined;
982
983
  editedBy?: string | undefined;
983
984
  createdAt?: string | undefined;
984
985
  updatedAt?: string | undefined;
985
- agaId?: string | undefined;
986
986
  preferredEmail?: string | undefined;
987
987
  phoneNumber?: string | undefined;
988
988
  birthDate?: string | undefined;
@@ -1075,14 +1075,14 @@ declare const zCampTrackerResponse: z.ZodObject<{
1075
1075
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1076
1076
  shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
1077
1077
  profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
1078
- firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1079
- lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1080
- address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1078
+ firstName: z.ZodString;
1079
+ lastName: z.ZodString;
1081
1080
  rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
1082
- agaId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1083
- participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
1081
+ agaId: z.ZodString;
1082
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1083
+ participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
1084
1084
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
1085
- preferredEmail: z.ZodOptional<z.ZodString>;
1085
+ preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1086
1086
  phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1087
1087
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1088
1088
  } & {
@@ -1091,32 +1091,32 @@ declare const zCampTrackerResponse: z.ZodObject<{
1091
1091
  createdAt: z.ZodOptional<z.ZodString>;
1092
1092
  updatedAt: z.ZodOptional<z.ZodString>;
1093
1093
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1094
+ firstName: string;
1095
+ lastName: string;
1094
1096
  _id: string;
1095
- firstName?: string | undefined;
1096
- lastName?: string | undefined;
1097
+ agaId: string;
1097
1098
  rank?: GoRank | undefined;
1098
1099
  address?: string | undefined;
1099
1100
  showOnWhoIsComing?: boolean | undefined;
1100
- participateAs?: "adult" | "youth" | undefined;
1101
+ participateAs?: "" | "adult" | "youth" | undefined;
1101
1102
  editedBy?: string | undefined;
1102
1103
  createdAt?: string | undefined;
1103
1104
  updatedAt?: string | undefined;
1104
- agaId?: string | undefined;
1105
1105
  preferredEmail?: string | undefined;
1106
1106
  phoneNumber?: string | undefined;
1107
1107
  birthDate?: string | undefined;
1108
1108
  }, {
1109
+ firstName: string;
1110
+ lastName: string;
1109
1111
  _id: string;
1110
- firstName?: string | undefined;
1111
- lastName?: string | undefined;
1112
+ agaId: string;
1112
1113
  rank?: GoRank | undefined;
1113
1114
  address?: string | undefined;
1114
1115
  showOnWhoIsComing?: boolean | undefined;
1115
- participateAs?: "adult" | "youth" | undefined;
1116
+ participateAs?: "" | "adult" | "youth" | undefined;
1116
1117
  editedBy?: string | undefined;
1117
1118
  createdAt?: string | undefined;
1118
1119
  updatedAt?: string | undefined;
1119
- agaId?: string | undefined;
1120
1120
  preferredEmail?: string | undefined;
1121
1121
  phoneNumber?: string | undefined;
1122
1122
  birthDate?: string | undefined;
@@ -1150,17 +1150,17 @@ declare const zCampTrackerResponse: z.ZodObject<{
1150
1150
  country?: string | undefined;
1151
1151
  shouldChangePassword?: boolean | undefined;
1152
1152
  profiles?: {
1153
+ firstName: string;
1154
+ lastName: string;
1153
1155
  _id: string;
1154
- firstName?: string | undefined;
1155
- lastName?: string | undefined;
1156
+ agaId: string;
1156
1157
  rank?: GoRank | undefined;
1157
1158
  address?: string | undefined;
1158
1159
  showOnWhoIsComing?: boolean | undefined;
1159
- participateAs?: "adult" | "youth" | undefined;
1160
+ participateAs?: "" | "adult" | "youth" | undefined;
1160
1161
  editedBy?: string | undefined;
1161
1162
  createdAt?: string | undefined;
1162
1163
  updatedAt?: string | undefined;
1163
- agaId?: string | undefined;
1164
1164
  preferredEmail?: string | undefined;
1165
1165
  phoneNumber?: string | undefined;
1166
1166
  birthDate?: string | undefined;
@@ -1187,17 +1187,17 @@ declare const zCampTrackerResponse: z.ZodObject<{
1187
1187
  country?: string | undefined;
1188
1188
  shouldChangePassword?: boolean | undefined;
1189
1189
  profiles?: {
1190
+ firstName: string;
1191
+ lastName: string;
1190
1192
  _id: string;
1191
- firstName?: string | undefined;
1192
- lastName?: string | undefined;
1193
+ agaId: string;
1193
1194
  rank?: GoRank | undefined;
1194
1195
  address?: string | undefined;
1195
1196
  showOnWhoIsComing?: boolean | undefined;
1196
- participateAs?: "adult" | "youth" | undefined;
1197
+ participateAs?: "" | "adult" | "youth" | undefined;
1197
1198
  editedBy?: string | undefined;
1198
1199
  createdAt?: string | undefined;
1199
1200
  updatedAt?: string | undefined;
1200
- agaId?: string | undefined;
1201
1201
  preferredEmail?: string | undefined;
1202
1202
  phoneNumber?: string | undefined;
1203
1203
  birthDate?: string | undefined;
@@ -1227,17 +1227,17 @@ declare const zCampTrackerResponse: z.ZodObject<{
1227
1227
  country?: string | undefined;
1228
1228
  shouldChangePassword?: boolean | undefined;
1229
1229
  profiles?: {
1230
+ firstName: string;
1231
+ lastName: string;
1230
1232
  _id: string;
1231
- firstName?: string | undefined;
1232
- lastName?: string | undefined;
1233
+ agaId: string;
1233
1234
  rank?: GoRank | undefined;
1234
1235
  address?: string | undefined;
1235
1236
  showOnWhoIsComing?: boolean | undefined;
1236
- participateAs?: "adult" | "youth" | undefined;
1237
+ participateAs?: "" | "adult" | "youth" | undefined;
1237
1238
  editedBy?: string | undefined;
1238
1239
  createdAt?: string | undefined;
1239
1240
  updatedAt?: string | undefined;
1240
- agaId?: string | undefined;
1241
1241
  preferredEmail?: string | undefined;
1242
1242
  phoneNumber?: string | undefined;
1243
1243
  birthDate?: string | undefined;
@@ -1278,17 +1278,17 @@ declare const zCampTrackerResponse: z.ZodObject<{
1278
1278
  country?: string | undefined;
1279
1279
  shouldChangePassword?: boolean | undefined;
1280
1280
  profiles?: {
1281
+ firstName: string;
1282
+ lastName: string;
1281
1283
  _id: string;
1282
- firstName?: string | undefined;
1283
- lastName?: string | undefined;
1284
+ agaId: string;
1284
1285
  rank?: GoRank | undefined;
1285
1286
  address?: string | undefined;
1286
1287
  showOnWhoIsComing?: boolean | undefined;
1287
- participateAs?: "adult" | "youth" | undefined;
1288
+ participateAs?: "" | "adult" | "youth" | undefined;
1288
1289
  editedBy?: string | undefined;
1289
1290
  createdAt?: string | undefined;
1290
1291
  updatedAt?: string | undefined;
1291
- agaId?: string | undefined;
1292
1292
  preferredEmail?: string | undefined;
1293
1293
  phoneNumber?: string | undefined;
1294
1294
  birthDate?: string | undefined;
@@ -1346,17 +1346,17 @@ declare const zCampTrackerResponse: z.ZodObject<{
1346
1346
  country?: string | undefined;
1347
1347
  shouldChangePassword?: boolean | undefined;
1348
1348
  profiles?: {
1349
+ firstName: string;
1350
+ lastName: string;
1349
1351
  _id: string;
1350
- firstName?: string | undefined;
1351
- lastName?: string | undefined;
1352
+ agaId: string;
1352
1353
  rank?: GoRank | undefined;
1353
1354
  address?: string | undefined;
1354
1355
  showOnWhoIsComing?: boolean | undefined;
1355
- participateAs?: "adult" | "youth" | undefined;
1356
+ participateAs?: "" | "adult" | "youth" | undefined;
1356
1357
  editedBy?: string | undefined;
1357
1358
  createdAt?: string | undefined;
1358
1359
  updatedAt?: string | undefined;
1359
- agaId?: string | undefined;
1360
1360
  preferredEmail?: string | undefined;
1361
1361
  phoneNumber?: string | undefined;
1362
1362
  birthDate?: string | undefined;
@@ -1404,17 +1404,17 @@ declare const zCampTrackerResponse: z.ZodObject<{
1404
1404
  country?: string | undefined;
1405
1405
  shouldChangePassword?: boolean | undefined;
1406
1406
  profiles?: {
1407
+ firstName: string;
1408
+ lastName: string;
1407
1409
  _id: string;
1408
- firstName?: string | undefined;
1409
- lastName?: string | undefined;
1410
+ agaId: string;
1410
1411
  rank?: GoRank | undefined;
1411
1412
  address?: string | undefined;
1412
1413
  showOnWhoIsComing?: boolean | undefined;
1413
- participateAs?: "adult" | "youth" | undefined;
1414
+ participateAs?: "" | "adult" | "youth" | undefined;
1414
1415
  editedBy?: string | undefined;
1415
1416
  createdAt?: string | undefined;
1416
1417
  updatedAt?: string | undefined;
1417
- agaId?: string | undefined;
1418
1418
  preferredEmail?: string | undefined;
1419
1419
  phoneNumber?: string | undefined;
1420
1420
  birthDate?: string | undefined;
@@ -1478,17 +1478,17 @@ declare const zCampTrackerResponse: z.ZodObject<{
1478
1478
  country?: string | undefined;
1479
1479
  shouldChangePassword?: boolean | undefined;
1480
1480
  profiles?: {
1481
+ firstName: string;
1482
+ lastName: string;
1481
1483
  _id: string;
1482
- firstName?: string | undefined;
1483
- lastName?: string | undefined;
1484
+ agaId: string;
1484
1485
  rank?: GoRank | undefined;
1485
1486
  address?: string | undefined;
1486
1487
  showOnWhoIsComing?: boolean | undefined;
1487
- participateAs?: "adult" | "youth" | undefined;
1488
+ participateAs?: "" | "adult" | "youth" | undefined;
1488
1489
  editedBy?: string | undefined;
1489
1490
  createdAt?: string | undefined;
1490
1491
  updatedAt?: string | undefined;
1491
- agaId?: string | undefined;
1492
1492
  preferredEmail?: string | undefined;
1493
1493
  phoneNumber?: string | undefined;
1494
1494
  birthDate?: string | undefined;
@@ -1536,17 +1536,17 @@ declare const zCampTrackerResponse: z.ZodObject<{
1536
1536
  country?: string | undefined;
1537
1537
  shouldChangePassword?: boolean | undefined;
1538
1538
  profiles?: {
1539
+ firstName: string;
1540
+ lastName: string;
1539
1541
  _id: string;
1540
- firstName?: string | undefined;
1541
- lastName?: string | undefined;
1542
+ agaId: string;
1542
1543
  rank?: GoRank | undefined;
1543
1544
  address?: string | undefined;
1544
1545
  showOnWhoIsComing?: boolean | undefined;
1545
- participateAs?: "adult" | "youth" | undefined;
1546
+ participateAs?: "" | "adult" | "youth" | undefined;
1546
1547
  editedBy?: string | undefined;
1547
1548
  createdAt?: string | undefined;
1548
1549
  updatedAt?: string | undefined;
1549
- agaId?: string | undefined;
1550
1550
  preferredEmail?: string | undefined;
1551
1551
  phoneNumber?: string | undefined;
1552
1552
  birthDate?: string | undefined;
@@ -1775,14 +1775,14 @@ declare const zClassTrackerResponse: z.ZodObject<{
1775
1775
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1776
1776
  shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
1777
1777
  profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
1778
- firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1779
- lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1780
- address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1778
+ firstName: z.ZodString;
1779
+ lastName: z.ZodString;
1781
1780
  rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
1782
- agaId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1783
- participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
1781
+ agaId: z.ZodString;
1782
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1783
+ participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
1784
1784
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
1785
- preferredEmail: z.ZodOptional<z.ZodString>;
1785
+ preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1786
1786
  phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1787
1787
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1788
1788
  } & {
@@ -1791,32 +1791,32 @@ declare const zClassTrackerResponse: z.ZodObject<{
1791
1791
  createdAt: z.ZodOptional<z.ZodString>;
1792
1792
  updatedAt: z.ZodOptional<z.ZodString>;
1793
1793
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1794
+ firstName: string;
1795
+ lastName: string;
1794
1796
  _id: string;
1795
- firstName?: string | undefined;
1796
- lastName?: string | undefined;
1797
+ agaId: string;
1797
1798
  rank?: GoRank | undefined;
1798
1799
  address?: string | undefined;
1799
1800
  showOnWhoIsComing?: boolean | undefined;
1800
- participateAs?: "adult" | "youth" | undefined;
1801
+ participateAs?: "" | "adult" | "youth" | undefined;
1801
1802
  editedBy?: string | undefined;
1802
1803
  createdAt?: string | undefined;
1803
1804
  updatedAt?: string | undefined;
1804
- agaId?: string | undefined;
1805
1805
  preferredEmail?: string | undefined;
1806
1806
  phoneNumber?: string | undefined;
1807
1807
  birthDate?: string | undefined;
1808
1808
  }, {
1809
+ firstName: string;
1810
+ lastName: string;
1809
1811
  _id: string;
1810
- firstName?: string | undefined;
1811
- lastName?: string | undefined;
1812
+ agaId: string;
1812
1813
  rank?: GoRank | undefined;
1813
1814
  address?: string | undefined;
1814
1815
  showOnWhoIsComing?: boolean | undefined;
1815
- participateAs?: "adult" | "youth" | undefined;
1816
+ participateAs?: "" | "adult" | "youth" | undefined;
1816
1817
  editedBy?: string | undefined;
1817
1818
  createdAt?: string | undefined;
1818
1819
  updatedAt?: string | undefined;
1819
- agaId?: string | undefined;
1820
1820
  preferredEmail?: string | undefined;
1821
1821
  phoneNumber?: string | undefined;
1822
1822
  birthDate?: string | undefined;
@@ -1855,17 +1855,17 @@ declare const zClassTrackerResponse: z.ZodObject<{
1855
1855
  country?: string | undefined;
1856
1856
  shouldChangePassword?: boolean | undefined;
1857
1857
  profiles?: {
1858
+ firstName: string;
1859
+ lastName: string;
1858
1860
  _id: string;
1859
- firstName?: string | undefined;
1860
- lastName?: string | undefined;
1861
+ agaId: string;
1861
1862
  rank?: GoRank | undefined;
1862
1863
  address?: string | undefined;
1863
1864
  showOnWhoIsComing?: boolean | undefined;
1864
- participateAs?: "adult" | "youth" | undefined;
1865
+ participateAs?: "" | "adult" | "youth" | undefined;
1865
1866
  editedBy?: string | undefined;
1866
1867
  createdAt?: string | undefined;
1867
1868
  updatedAt?: string | undefined;
1868
- agaId?: string | undefined;
1869
1869
  preferredEmail?: string | undefined;
1870
1870
  phoneNumber?: string | undefined;
1871
1871
  birthDate?: string | undefined;
@@ -1897,17 +1897,17 @@ declare const zClassTrackerResponse: z.ZodObject<{
1897
1897
  country?: string | undefined;
1898
1898
  shouldChangePassword?: boolean | undefined;
1899
1899
  profiles?: {
1900
+ firstName: string;
1901
+ lastName: string;
1900
1902
  _id: string;
1901
- firstName?: string | undefined;
1902
- lastName?: string | undefined;
1903
+ agaId: string;
1903
1904
  rank?: GoRank | undefined;
1904
1905
  address?: string | undefined;
1905
1906
  showOnWhoIsComing?: boolean | undefined;
1906
- participateAs?: "adult" | "youth" | undefined;
1907
+ participateAs?: "" | "adult" | "youth" | undefined;
1907
1908
  editedBy?: string | undefined;
1908
1909
  createdAt?: string | undefined;
1909
1910
  updatedAt?: string | undefined;
1910
- agaId?: string | undefined;
1911
1911
  preferredEmail?: string | undefined;
1912
1912
  phoneNumber?: string | undefined;
1913
1913
  birthDate?: string | undefined;
@@ -1943,14 +1943,14 @@ declare const zClassTrackerResponse: z.ZodObject<{
1943
1943
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1944
1944
  shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
1945
1945
  profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
1946
- firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1947
- lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1948
- address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1946
+ firstName: z.ZodString;
1947
+ lastName: z.ZodString;
1949
1948
  rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
1950
- agaId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1951
- participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
1949
+ agaId: z.ZodString;
1950
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1951
+ participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
1952
1952
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
1953
- preferredEmail: z.ZodOptional<z.ZodString>;
1953
+ preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1954
1954
  phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1955
1955
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
1956
1956
  } & {
@@ -1959,32 +1959,32 @@ declare const zClassTrackerResponse: z.ZodObject<{
1959
1959
  createdAt: z.ZodOptional<z.ZodString>;
1960
1960
  updatedAt: z.ZodOptional<z.ZodString>;
1961
1961
  }, z.UnknownKeysParam, z.ZodTypeAny, {
1962
+ firstName: string;
1963
+ lastName: string;
1962
1964
  _id: string;
1963
- firstName?: string | undefined;
1964
- lastName?: string | undefined;
1965
+ agaId: string;
1965
1966
  rank?: GoRank | undefined;
1966
1967
  address?: string | undefined;
1967
1968
  showOnWhoIsComing?: boolean | undefined;
1968
- participateAs?: "adult" | "youth" | undefined;
1969
+ participateAs?: "" | "adult" | "youth" | undefined;
1969
1970
  editedBy?: string | undefined;
1970
1971
  createdAt?: string | undefined;
1971
1972
  updatedAt?: string | undefined;
1972
- agaId?: string | undefined;
1973
1973
  preferredEmail?: string | undefined;
1974
1974
  phoneNumber?: string | undefined;
1975
1975
  birthDate?: string | undefined;
1976
1976
  }, {
1977
+ firstName: string;
1978
+ lastName: string;
1977
1979
  _id: string;
1978
- firstName?: string | undefined;
1979
- lastName?: string | undefined;
1980
+ agaId: string;
1980
1981
  rank?: GoRank | undefined;
1981
1982
  address?: string | undefined;
1982
1983
  showOnWhoIsComing?: boolean | undefined;
1983
- participateAs?: "adult" | "youth" | undefined;
1984
+ participateAs?: "" | "adult" | "youth" | undefined;
1984
1985
  editedBy?: string | undefined;
1985
1986
  createdAt?: string | undefined;
1986
1987
  updatedAt?: string | undefined;
1987
- agaId?: string | undefined;
1988
1988
  preferredEmail?: string | undefined;
1989
1989
  phoneNumber?: string | undefined;
1990
1990
  birthDate?: string | undefined;
@@ -2018,17 +2018,17 @@ declare const zClassTrackerResponse: z.ZodObject<{
2018
2018
  country?: string | undefined;
2019
2019
  shouldChangePassword?: boolean | undefined;
2020
2020
  profiles?: {
2021
+ firstName: string;
2022
+ lastName: string;
2021
2023
  _id: string;
2022
- firstName?: string | undefined;
2023
- lastName?: string | undefined;
2024
+ agaId: string;
2024
2025
  rank?: GoRank | undefined;
2025
2026
  address?: string | undefined;
2026
2027
  showOnWhoIsComing?: boolean | undefined;
2027
- participateAs?: "adult" | "youth" | undefined;
2028
+ participateAs?: "" | "adult" | "youth" | undefined;
2028
2029
  editedBy?: string | undefined;
2029
2030
  createdAt?: string | undefined;
2030
2031
  updatedAt?: string | undefined;
2031
- agaId?: string | undefined;
2032
2032
  preferredEmail?: string | undefined;
2033
2033
  phoneNumber?: string | undefined;
2034
2034
  birthDate?: string | undefined;
@@ -2055,17 +2055,17 @@ declare const zClassTrackerResponse: z.ZodObject<{
2055
2055
  country?: string | undefined;
2056
2056
  shouldChangePassword?: boolean | undefined;
2057
2057
  profiles?: {
2058
+ firstName: string;
2059
+ lastName: string;
2058
2060
  _id: string;
2059
- firstName?: string | undefined;
2060
- lastName?: string | undefined;
2061
+ agaId: string;
2061
2062
  rank?: GoRank | undefined;
2062
2063
  address?: string | undefined;
2063
2064
  showOnWhoIsComing?: boolean | undefined;
2064
- participateAs?: "adult" | "youth" | undefined;
2065
+ participateAs?: "" | "adult" | "youth" | undefined;
2065
2066
  editedBy?: string | undefined;
2066
2067
  createdAt?: string | undefined;
2067
2068
  updatedAt?: string | undefined;
2068
- agaId?: string | undefined;
2069
2069
  preferredEmail?: string | undefined;
2070
2070
  phoneNumber?: string | undefined;
2071
2071
  birthDate?: string | undefined;
@@ -2095,17 +2095,17 @@ declare const zClassTrackerResponse: z.ZodObject<{
2095
2095
  country?: string | undefined;
2096
2096
  shouldChangePassword?: boolean | undefined;
2097
2097
  profiles?: {
2098
+ firstName: string;
2099
+ lastName: string;
2098
2100
  _id: string;
2099
- firstName?: string | undefined;
2100
- lastName?: string | undefined;
2101
+ agaId: string;
2101
2102
  rank?: GoRank | undefined;
2102
2103
  address?: string | undefined;
2103
2104
  showOnWhoIsComing?: boolean | undefined;
2104
- participateAs?: "adult" | "youth" | undefined;
2105
+ participateAs?: "" | "adult" | "youth" | undefined;
2105
2106
  editedBy?: string | undefined;
2106
2107
  createdAt?: string | undefined;
2107
2108
  updatedAt?: string | undefined;
2108
- agaId?: string | undefined;
2109
2109
  preferredEmail?: string | undefined;
2110
2110
  phoneNumber?: string | undefined;
2111
2111
  birthDate?: string | undefined;
@@ -2149,17 +2149,17 @@ declare const zClassTrackerResponse: z.ZodObject<{
2149
2149
  country?: string | undefined;
2150
2150
  shouldChangePassword?: boolean | undefined;
2151
2151
  profiles?: {
2152
+ firstName: string;
2153
+ lastName: string;
2152
2154
  _id: string;
2153
- firstName?: string | undefined;
2154
- lastName?: string | undefined;
2155
+ agaId: string;
2155
2156
  rank?: GoRank | undefined;
2156
2157
  address?: string | undefined;
2157
2158
  showOnWhoIsComing?: boolean | undefined;
2158
- participateAs?: "adult" | "youth" | undefined;
2159
+ participateAs?: "" | "adult" | "youth" | undefined;
2159
2160
  editedBy?: string | undefined;
2160
2161
  createdAt?: string | undefined;
2161
2162
  updatedAt?: string | undefined;
2162
- agaId?: string | undefined;
2163
2163
  preferredEmail?: string | undefined;
2164
2164
  phoneNumber?: string | undefined;
2165
2165
  birthDate?: string | undefined;
@@ -2203,17 +2203,17 @@ declare const zClassTrackerResponse: z.ZodObject<{
2203
2203
  country?: string | undefined;
2204
2204
  shouldChangePassword?: boolean | undefined;
2205
2205
  profiles?: {
2206
+ firstName: string;
2207
+ lastName: string;
2206
2208
  _id: string;
2207
- firstName?: string | undefined;
2208
- lastName?: string | undefined;
2209
+ agaId: string;
2209
2210
  rank?: GoRank | undefined;
2210
2211
  address?: string | undefined;
2211
2212
  showOnWhoIsComing?: boolean | undefined;
2212
- participateAs?: "adult" | "youth" | undefined;
2213
+ participateAs?: "" | "adult" | "youth" | undefined;
2213
2214
  editedBy?: string | undefined;
2214
2215
  createdAt?: string | undefined;
2215
2216
  updatedAt?: string | undefined;
2216
- agaId?: string | undefined;
2217
2217
  preferredEmail?: string | undefined;
2218
2218
  phoneNumber?: string | undefined;
2219
2219
  birthDate?: string | undefined;
@@ -2257,17 +2257,17 @@ declare const zClassTrackerResponse: z.ZodObject<{
2257
2257
  country?: string | undefined;
2258
2258
  shouldChangePassword?: boolean | undefined;
2259
2259
  profiles?: {
2260
+ firstName: string;
2261
+ lastName: string;
2260
2262
  _id: string;
2261
- firstName?: string | undefined;
2262
- lastName?: string | undefined;
2263
+ agaId: string;
2263
2264
  rank?: GoRank | undefined;
2264
2265
  address?: string | undefined;
2265
2266
  showOnWhoIsComing?: boolean | undefined;
2266
- participateAs?: "adult" | "youth" | undefined;
2267
+ participateAs?: "" | "adult" | "youth" | undefined;
2267
2268
  editedBy?: string | undefined;
2268
2269
  createdAt?: string | undefined;
2269
2270
  updatedAt?: string | undefined;
2270
- agaId?: string | undefined;
2271
2271
  preferredEmail?: string | undefined;
2272
2272
  phoneNumber?: string | undefined;
2273
2273
  birthDate?: string | undefined;
@@ -2916,14 +2916,14 @@ declare const zGroupTrackerResponse: z.ZodObject<{
2916
2916
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2917
2917
  shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
2918
2918
  profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
2919
- firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2920
- lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2921
- address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2919
+ firstName: z.ZodString;
2920
+ lastName: z.ZodString;
2922
2921
  rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
2923
- agaId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2924
- participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
2922
+ agaId: z.ZodString;
2923
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2924
+ participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
2925
2925
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
2926
- preferredEmail: z.ZodOptional<z.ZodString>;
2926
+ preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2927
2927
  phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2928
2928
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2929
2929
  } & {
@@ -2932,32 +2932,32 @@ declare const zGroupTrackerResponse: z.ZodObject<{
2932
2932
  createdAt: z.ZodOptional<z.ZodString>;
2933
2933
  updatedAt: z.ZodOptional<z.ZodString>;
2934
2934
  }, z.UnknownKeysParam, z.ZodTypeAny, {
2935
+ firstName: string;
2936
+ lastName: string;
2935
2937
  _id: string;
2936
- firstName?: string | undefined;
2937
- lastName?: string | undefined;
2938
+ agaId: string;
2938
2939
  rank?: GoRank | undefined;
2939
2940
  address?: string | undefined;
2940
2941
  showOnWhoIsComing?: boolean | undefined;
2941
- participateAs?: "adult" | "youth" | undefined;
2942
+ participateAs?: "" | "adult" | "youth" | undefined;
2942
2943
  editedBy?: string | undefined;
2943
2944
  createdAt?: string | undefined;
2944
2945
  updatedAt?: string | undefined;
2945
- agaId?: string | undefined;
2946
2946
  preferredEmail?: string | undefined;
2947
2947
  phoneNumber?: string | undefined;
2948
2948
  birthDate?: string | undefined;
2949
2949
  }, {
2950
+ firstName: string;
2951
+ lastName: string;
2950
2952
  _id: string;
2951
- firstName?: string | undefined;
2952
- lastName?: string | undefined;
2953
+ agaId: string;
2953
2954
  rank?: GoRank | undefined;
2954
2955
  address?: string | undefined;
2955
2956
  showOnWhoIsComing?: boolean | undefined;
2956
- participateAs?: "adult" | "youth" | undefined;
2957
+ participateAs?: "" | "adult" | "youth" | undefined;
2957
2958
  editedBy?: string | undefined;
2958
2959
  createdAt?: string | undefined;
2959
2960
  updatedAt?: string | undefined;
2960
- agaId?: string | undefined;
2961
2961
  preferredEmail?: string | undefined;
2962
2962
  phoneNumber?: string | undefined;
2963
2963
  birthDate?: string | undefined;
@@ -2996,17 +2996,17 @@ declare const zGroupTrackerResponse: z.ZodObject<{
2996
2996
  country?: string | undefined;
2997
2997
  shouldChangePassword?: boolean | undefined;
2998
2998
  profiles?: {
2999
+ firstName: string;
3000
+ lastName: string;
2999
3001
  _id: string;
3000
- firstName?: string | undefined;
3001
- lastName?: string | undefined;
3002
+ agaId: string;
3002
3003
  rank?: GoRank | undefined;
3003
3004
  address?: string | undefined;
3004
3005
  showOnWhoIsComing?: boolean | undefined;
3005
- participateAs?: "adult" | "youth" | undefined;
3006
+ participateAs?: "" | "adult" | "youth" | undefined;
3006
3007
  editedBy?: string | undefined;
3007
3008
  createdAt?: string | undefined;
3008
3009
  updatedAt?: string | undefined;
3009
- agaId?: string | undefined;
3010
3010
  preferredEmail?: string | undefined;
3011
3011
  phoneNumber?: string | undefined;
3012
3012
  birthDate?: string | undefined;
@@ -3038,17 +3038,17 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3038
3038
  country?: string | undefined;
3039
3039
  shouldChangePassword?: boolean | undefined;
3040
3040
  profiles?: {
3041
+ firstName: string;
3042
+ lastName: string;
3041
3043
  _id: string;
3042
- firstName?: string | undefined;
3043
- lastName?: string | undefined;
3044
+ agaId: string;
3044
3045
  rank?: GoRank | undefined;
3045
3046
  address?: string | undefined;
3046
3047
  showOnWhoIsComing?: boolean | undefined;
3047
- participateAs?: "adult" | "youth" | undefined;
3048
+ participateAs?: "" | "adult" | "youth" | undefined;
3048
3049
  editedBy?: string | undefined;
3049
3050
  createdAt?: string | undefined;
3050
3051
  updatedAt?: string | undefined;
3051
- agaId?: string | undefined;
3052
3052
  preferredEmail?: string | undefined;
3053
3053
  phoneNumber?: string | undefined;
3054
3054
  birthDate?: string | undefined;
@@ -3141,14 +3141,14 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3141
3141
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
3142
3142
  shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
3143
3143
  profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
3144
- firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
3145
- lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
3146
- address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
3144
+ firstName: z.ZodString;
3145
+ lastName: z.ZodString;
3147
3146
  rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
3148
- agaId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
3149
- participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
3147
+ agaId: z.ZodString;
3148
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
3149
+ participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
3150
3150
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
3151
- preferredEmail: z.ZodOptional<z.ZodString>;
3151
+ preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
3152
3152
  phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
3153
3153
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
3154
3154
  } & {
@@ -3157,32 +3157,32 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3157
3157
  createdAt: z.ZodOptional<z.ZodString>;
3158
3158
  updatedAt: z.ZodOptional<z.ZodString>;
3159
3159
  }, z.UnknownKeysParam, z.ZodTypeAny, {
3160
+ firstName: string;
3161
+ lastName: string;
3160
3162
  _id: string;
3161
- firstName?: string | undefined;
3162
- lastName?: string | undefined;
3163
+ agaId: string;
3163
3164
  rank?: GoRank | undefined;
3164
3165
  address?: string | undefined;
3165
3166
  showOnWhoIsComing?: boolean | undefined;
3166
- participateAs?: "adult" | "youth" | undefined;
3167
+ participateAs?: "" | "adult" | "youth" | undefined;
3167
3168
  editedBy?: string | undefined;
3168
3169
  createdAt?: string | undefined;
3169
3170
  updatedAt?: string | undefined;
3170
- agaId?: string | undefined;
3171
3171
  preferredEmail?: string | undefined;
3172
3172
  phoneNumber?: string | undefined;
3173
3173
  birthDate?: string | undefined;
3174
3174
  }, {
3175
+ firstName: string;
3176
+ lastName: string;
3175
3177
  _id: string;
3176
- firstName?: string | undefined;
3177
- lastName?: string | undefined;
3178
+ agaId: string;
3178
3179
  rank?: GoRank | undefined;
3179
3180
  address?: string | undefined;
3180
3181
  showOnWhoIsComing?: boolean | undefined;
3181
- participateAs?: "adult" | "youth" | undefined;
3182
+ participateAs?: "" | "adult" | "youth" | undefined;
3182
3183
  editedBy?: string | undefined;
3183
3184
  createdAt?: string | undefined;
3184
3185
  updatedAt?: string | undefined;
3185
- agaId?: string | undefined;
3186
3186
  preferredEmail?: string | undefined;
3187
3187
  phoneNumber?: string | undefined;
3188
3188
  birthDate?: string | undefined;
@@ -3216,17 +3216,17 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3216
3216
  country?: string | undefined;
3217
3217
  shouldChangePassword?: boolean | undefined;
3218
3218
  profiles?: {
3219
+ firstName: string;
3220
+ lastName: string;
3219
3221
  _id: string;
3220
- firstName?: string | undefined;
3221
- lastName?: string | undefined;
3222
+ agaId: string;
3222
3223
  rank?: GoRank | undefined;
3223
3224
  address?: string | undefined;
3224
3225
  showOnWhoIsComing?: boolean | undefined;
3225
- participateAs?: "adult" | "youth" | undefined;
3226
+ participateAs?: "" | "adult" | "youth" | undefined;
3226
3227
  editedBy?: string | undefined;
3227
3228
  createdAt?: string | undefined;
3228
3229
  updatedAt?: string | undefined;
3229
- agaId?: string | undefined;
3230
3230
  preferredEmail?: string | undefined;
3231
3231
  phoneNumber?: string | undefined;
3232
3232
  birthDate?: string | undefined;
@@ -3253,17 +3253,17 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3253
3253
  country?: string | undefined;
3254
3254
  shouldChangePassword?: boolean | undefined;
3255
3255
  profiles?: {
3256
+ firstName: string;
3257
+ lastName: string;
3256
3258
  _id: string;
3257
- firstName?: string | undefined;
3258
- lastName?: string | undefined;
3259
+ agaId: string;
3259
3260
  rank?: GoRank | undefined;
3260
3261
  address?: string | undefined;
3261
3262
  showOnWhoIsComing?: boolean | undefined;
3262
- participateAs?: "adult" | "youth" | undefined;
3263
+ participateAs?: "" | "adult" | "youth" | undefined;
3263
3264
  editedBy?: string | undefined;
3264
3265
  createdAt?: string | undefined;
3265
3266
  updatedAt?: string | undefined;
3266
- agaId?: string | undefined;
3267
3267
  preferredEmail?: string | undefined;
3268
3268
  phoneNumber?: string | undefined;
3269
3269
  birthDate?: string | undefined;
@@ -3293,17 +3293,17 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3293
3293
  country?: string | undefined;
3294
3294
  shouldChangePassword?: boolean | undefined;
3295
3295
  profiles?: {
3296
+ firstName: string;
3297
+ lastName: string;
3296
3298
  _id: string;
3297
- firstName?: string | undefined;
3298
- lastName?: string | undefined;
3299
+ agaId: string;
3299
3300
  rank?: GoRank | undefined;
3300
3301
  address?: string | undefined;
3301
3302
  showOnWhoIsComing?: boolean | undefined;
3302
- participateAs?: "adult" | "youth" | undefined;
3303
+ participateAs?: "" | "adult" | "youth" | undefined;
3303
3304
  editedBy?: string | undefined;
3304
3305
  createdAt?: string | undefined;
3305
3306
  updatedAt?: string | undefined;
3306
- agaId?: string | undefined;
3307
3307
  preferredEmail?: string | undefined;
3308
3308
  phoneNumber?: string | undefined;
3309
3309
  birthDate?: string | undefined;
@@ -3344,17 +3344,17 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3344
3344
  country?: string | undefined;
3345
3345
  shouldChangePassword?: boolean | undefined;
3346
3346
  profiles?: {
3347
+ firstName: string;
3348
+ lastName: string;
3347
3349
  _id: string;
3348
- firstName?: string | undefined;
3349
- lastName?: string | undefined;
3350
+ agaId: string;
3350
3351
  rank?: GoRank | undefined;
3351
3352
  address?: string | undefined;
3352
3353
  showOnWhoIsComing?: boolean | undefined;
3353
- participateAs?: "adult" | "youth" | undefined;
3354
+ participateAs?: "" | "adult" | "youth" | undefined;
3354
3355
  editedBy?: string | undefined;
3355
3356
  createdAt?: string | undefined;
3356
3357
  updatedAt?: string | undefined;
3357
- agaId?: string | undefined;
3358
3358
  preferredEmail?: string | undefined;
3359
3359
  phoneNumber?: string | undefined;
3360
3360
  birthDate?: string | undefined;
@@ -3427,17 +3427,17 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3427
3427
  country?: string | undefined;
3428
3428
  shouldChangePassword?: boolean | undefined;
3429
3429
  profiles?: {
3430
+ firstName: string;
3431
+ lastName: string;
3430
3432
  _id: string;
3431
- firstName?: string | undefined;
3432
- lastName?: string | undefined;
3433
+ agaId: string;
3433
3434
  rank?: GoRank | undefined;
3434
3435
  address?: string | undefined;
3435
3436
  showOnWhoIsComing?: boolean | undefined;
3436
- participateAs?: "adult" | "youth" | undefined;
3437
+ participateAs?: "" | "adult" | "youth" | undefined;
3437
3438
  editedBy?: string | undefined;
3438
3439
  createdAt?: string | undefined;
3439
3440
  updatedAt?: string | undefined;
3440
- agaId?: string | undefined;
3441
3441
  preferredEmail?: string | undefined;
3442
3442
  phoneNumber?: string | undefined;
3443
3443
  birthDate?: string | undefined;
@@ -3477,17 +3477,17 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3477
3477
  country?: string | undefined;
3478
3478
  shouldChangePassword?: boolean | undefined;
3479
3479
  profiles?: {
3480
+ firstName: string;
3481
+ lastName: string;
3480
3482
  _id: string;
3481
- firstName?: string | undefined;
3482
- lastName?: string | undefined;
3483
+ agaId: string;
3483
3484
  rank?: GoRank | undefined;
3484
3485
  address?: string | undefined;
3485
3486
  showOnWhoIsComing?: boolean | undefined;
3486
- participateAs?: "adult" | "youth" | undefined;
3487
+ participateAs?: "" | "adult" | "youth" | undefined;
3487
3488
  editedBy?: string | undefined;
3488
3489
  createdAt?: string | undefined;
3489
3490
  updatedAt?: string | undefined;
3490
- agaId?: string | undefined;
3491
3491
  preferredEmail?: string | undefined;
3492
3492
  phoneNumber?: string | undefined;
3493
3493
  birthDate?: string | undefined;
@@ -3566,17 +3566,17 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3566
3566
  country?: string | undefined;
3567
3567
  shouldChangePassword?: boolean | undefined;
3568
3568
  profiles?: {
3569
+ firstName: string;
3570
+ lastName: string;
3569
3571
  _id: string;
3570
- firstName?: string | undefined;
3571
- lastName?: string | undefined;
3572
+ agaId: string;
3572
3573
  rank?: GoRank | undefined;
3573
3574
  address?: string | undefined;
3574
3575
  showOnWhoIsComing?: boolean | undefined;
3575
- participateAs?: "adult" | "youth" | undefined;
3576
+ participateAs?: "" | "adult" | "youth" | undefined;
3576
3577
  editedBy?: string | undefined;
3577
3578
  createdAt?: string | undefined;
3578
3579
  updatedAt?: string | undefined;
3579
- agaId?: string | undefined;
3580
3580
  preferredEmail?: string | undefined;
3581
3581
  phoneNumber?: string | undefined;
3582
3582
  birthDate?: string | undefined;
@@ -3616,17 +3616,17 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3616
3616
  country?: string | undefined;
3617
3617
  shouldChangePassword?: boolean | undefined;
3618
3618
  profiles?: {
3619
+ firstName: string;
3620
+ lastName: string;
3619
3621
  _id: string;
3620
- firstName?: string | undefined;
3621
- lastName?: string | undefined;
3622
+ agaId: string;
3622
3623
  rank?: GoRank | undefined;
3623
3624
  address?: string | undefined;
3624
3625
  showOnWhoIsComing?: boolean | undefined;
3625
- participateAs?: "adult" | "youth" | undefined;
3626
+ participateAs?: "" | "adult" | "youth" | undefined;
3626
3627
  editedBy?: string | undefined;
3627
3628
  createdAt?: string | undefined;
3628
3629
  updatedAt?: string | undefined;
3629
- agaId?: string | undefined;
3630
3630
  preferredEmail?: string | undefined;
3631
3631
  phoneNumber?: string | undefined;
3632
3632
  birthDate?: string | undefined;
@@ -4223,14 +4223,14 @@ declare const zInvoicePackageResponse: z.ZodObject<{
4223
4223
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4224
4224
  shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
4225
4225
  profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
4226
- firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4227
- lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4228
- address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4226
+ firstName: z.ZodString;
4227
+ lastName: z.ZodString;
4229
4228
  rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
4230
- agaId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4231
- participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
4229
+ agaId: z.ZodString;
4230
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4231
+ participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
4232
4232
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
4233
- preferredEmail: z.ZodOptional<z.ZodString>;
4233
+ preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4234
4234
  phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4235
4235
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4236
4236
  } & {
@@ -4239,32 +4239,32 @@ declare const zInvoicePackageResponse: z.ZodObject<{
4239
4239
  createdAt: z.ZodOptional<z.ZodString>;
4240
4240
  updatedAt: z.ZodOptional<z.ZodString>;
4241
4241
  }, z.UnknownKeysParam, z.ZodTypeAny, {
4242
+ firstName: string;
4243
+ lastName: string;
4242
4244
  _id: string;
4243
- firstName?: string | undefined;
4244
- lastName?: string | undefined;
4245
+ agaId: string;
4245
4246
  rank?: GoRank | undefined;
4246
4247
  address?: string | undefined;
4247
4248
  showOnWhoIsComing?: boolean | undefined;
4248
- participateAs?: "adult" | "youth" | undefined;
4249
+ participateAs?: "" | "adult" | "youth" | undefined;
4249
4250
  editedBy?: string | undefined;
4250
4251
  createdAt?: string | undefined;
4251
4252
  updatedAt?: string | undefined;
4252
- agaId?: string | undefined;
4253
4253
  preferredEmail?: string | undefined;
4254
4254
  phoneNumber?: string | undefined;
4255
4255
  birthDate?: string | undefined;
4256
4256
  }, {
4257
+ firstName: string;
4258
+ lastName: string;
4257
4259
  _id: string;
4258
- firstName?: string | undefined;
4259
- lastName?: string | undefined;
4260
+ agaId: string;
4260
4261
  rank?: GoRank | undefined;
4261
4262
  address?: string | undefined;
4262
4263
  showOnWhoIsComing?: boolean | undefined;
4263
- participateAs?: "adult" | "youth" | undefined;
4264
+ participateAs?: "" | "adult" | "youth" | undefined;
4264
4265
  editedBy?: string | undefined;
4265
4266
  createdAt?: string | undefined;
4266
4267
  updatedAt?: string | undefined;
4267
- agaId?: string | undefined;
4268
4268
  preferredEmail?: string | undefined;
4269
4269
  phoneNumber?: string | undefined;
4270
4270
  birthDate?: string | undefined;
@@ -4298,17 +4298,17 @@ declare const zInvoicePackageResponse: z.ZodObject<{
4298
4298
  country?: string | undefined;
4299
4299
  shouldChangePassword?: boolean | undefined;
4300
4300
  profiles?: {
4301
+ firstName: string;
4302
+ lastName: string;
4301
4303
  _id: string;
4302
- firstName?: string | undefined;
4303
- lastName?: string | undefined;
4304
+ agaId: string;
4304
4305
  rank?: GoRank | undefined;
4305
4306
  address?: string | undefined;
4306
4307
  showOnWhoIsComing?: boolean | undefined;
4307
- participateAs?: "adult" | "youth" | undefined;
4308
+ participateAs?: "" | "adult" | "youth" | undefined;
4308
4309
  editedBy?: string | undefined;
4309
4310
  createdAt?: string | undefined;
4310
4311
  updatedAt?: string | undefined;
4311
- agaId?: string | undefined;
4312
4312
  preferredEmail?: string | undefined;
4313
4313
  phoneNumber?: string | undefined;
4314
4314
  birthDate?: string | undefined;
@@ -4335,17 +4335,17 @@ declare const zInvoicePackageResponse: z.ZodObject<{
4335
4335
  country?: string | undefined;
4336
4336
  shouldChangePassword?: boolean | undefined;
4337
4337
  profiles?: {
4338
+ firstName: string;
4339
+ lastName: string;
4338
4340
  _id: string;
4339
- firstName?: string | undefined;
4340
- lastName?: string | undefined;
4341
+ agaId: string;
4341
4342
  rank?: GoRank | undefined;
4342
4343
  address?: string | undefined;
4343
4344
  showOnWhoIsComing?: boolean | undefined;
4344
- participateAs?: "adult" | "youth" | undefined;
4345
+ participateAs?: "" | "adult" | "youth" | undefined;
4345
4346
  editedBy?: string | undefined;
4346
4347
  createdAt?: string | undefined;
4347
4348
  updatedAt?: string | undefined;
4348
- agaId?: string | undefined;
4349
4349
  preferredEmail?: string | undefined;
4350
4350
  phoneNumber?: string | undefined;
4351
4351
  birthDate?: string | undefined;
@@ -4374,17 +4374,17 @@ declare const zInvoicePackageResponse: z.ZodObject<{
4374
4374
  country?: string | undefined;
4375
4375
  shouldChangePassword?: boolean | undefined;
4376
4376
  profiles?: {
4377
+ firstName: string;
4378
+ lastName: string;
4377
4379
  _id: string;
4378
- firstName?: string | undefined;
4379
- lastName?: string | undefined;
4380
+ agaId: string;
4380
4381
  rank?: GoRank | undefined;
4381
4382
  address?: string | undefined;
4382
4383
  showOnWhoIsComing?: boolean | undefined;
4383
- participateAs?: "adult" | "youth" | undefined;
4384
+ participateAs?: "" | "adult" | "youth" | undefined;
4384
4385
  editedBy?: string | undefined;
4385
4386
  createdAt?: string | undefined;
4386
4387
  updatedAt?: string | undefined;
4387
- agaId?: string | undefined;
4388
4388
  preferredEmail?: string | undefined;
4389
4389
  phoneNumber?: string | undefined;
4390
4390
  birthDate?: string | undefined;
@@ -4418,17 +4418,17 @@ declare const zInvoicePackageResponse: z.ZodObject<{
4418
4418
  country?: string | undefined;
4419
4419
  shouldChangePassword?: boolean | undefined;
4420
4420
  profiles?: {
4421
+ firstName: string;
4422
+ lastName: string;
4421
4423
  _id: string;
4422
- firstName?: string | undefined;
4423
- lastName?: string | undefined;
4424
+ agaId: string;
4424
4425
  rank?: GoRank | undefined;
4425
4426
  address?: string | undefined;
4426
4427
  showOnWhoIsComing?: boolean | undefined;
4427
- participateAs?: "adult" | "youth" | undefined;
4428
+ participateAs?: "" | "adult" | "youth" | undefined;
4428
4429
  editedBy?: string | undefined;
4429
4430
  createdAt?: string | undefined;
4430
4431
  updatedAt?: string | undefined;
4431
- agaId?: string | undefined;
4432
4432
  preferredEmail?: string | undefined;
4433
4433
  phoneNumber?: string | undefined;
4434
4434
  birthDate?: string | undefined;
@@ -4691,14 +4691,14 @@ declare const zInvoiceResponse: z.ZodObject<{
4691
4691
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4692
4692
  shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
4693
4693
  profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
4694
- firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4695
- lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4696
- address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4694
+ firstName: z.ZodString;
4695
+ lastName: z.ZodString;
4697
4696
  rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
4698
- agaId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4699
- participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
4697
+ agaId: z.ZodString;
4698
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4699
+ participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
4700
4700
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
4701
- preferredEmail: z.ZodOptional<z.ZodString>;
4701
+ preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4702
4702
  phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4703
4703
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4704
4704
  } & {
@@ -4707,32 +4707,32 @@ declare const zInvoiceResponse: z.ZodObject<{
4707
4707
  createdAt: z.ZodOptional<z.ZodString>;
4708
4708
  updatedAt: z.ZodOptional<z.ZodString>;
4709
4709
  }, z.UnknownKeysParam, z.ZodTypeAny, {
4710
+ firstName: string;
4711
+ lastName: string;
4710
4712
  _id: string;
4711
- firstName?: string | undefined;
4712
- lastName?: string | undefined;
4713
+ agaId: string;
4713
4714
  rank?: GoRank | undefined;
4714
4715
  address?: string | undefined;
4715
4716
  showOnWhoIsComing?: boolean | undefined;
4716
- participateAs?: "adult" | "youth" | undefined;
4717
+ participateAs?: "" | "adult" | "youth" | undefined;
4717
4718
  editedBy?: string | undefined;
4718
4719
  createdAt?: string | undefined;
4719
4720
  updatedAt?: string | undefined;
4720
- agaId?: string | undefined;
4721
4721
  preferredEmail?: string | undefined;
4722
4722
  phoneNumber?: string | undefined;
4723
4723
  birthDate?: string | undefined;
4724
4724
  }, {
4725
+ firstName: string;
4726
+ lastName: string;
4725
4727
  _id: string;
4726
- firstName?: string | undefined;
4727
- lastName?: string | undefined;
4728
+ agaId: string;
4728
4729
  rank?: GoRank | undefined;
4729
4730
  address?: string | undefined;
4730
4731
  showOnWhoIsComing?: boolean | undefined;
4731
- participateAs?: "adult" | "youth" | undefined;
4732
+ participateAs?: "" | "adult" | "youth" | undefined;
4732
4733
  editedBy?: string | undefined;
4733
4734
  createdAt?: string | undefined;
4734
4735
  updatedAt?: string | undefined;
4735
- agaId?: string | undefined;
4736
4736
  preferredEmail?: string | undefined;
4737
4737
  phoneNumber?: string | undefined;
4738
4738
  birthDate?: string | undefined;
@@ -4771,17 +4771,17 @@ declare const zInvoiceResponse: z.ZodObject<{
4771
4771
  country?: string | undefined;
4772
4772
  shouldChangePassword?: boolean | undefined;
4773
4773
  profiles?: {
4774
+ firstName: string;
4775
+ lastName: string;
4774
4776
  _id: string;
4775
- firstName?: string | undefined;
4776
- lastName?: string | undefined;
4777
+ agaId: string;
4777
4778
  rank?: GoRank | undefined;
4778
4779
  address?: string | undefined;
4779
4780
  showOnWhoIsComing?: boolean | undefined;
4780
- participateAs?: "adult" | "youth" | undefined;
4781
+ participateAs?: "" | "adult" | "youth" | undefined;
4781
4782
  editedBy?: string | undefined;
4782
4783
  createdAt?: string | undefined;
4783
4784
  updatedAt?: string | undefined;
4784
- agaId?: string | undefined;
4785
4785
  preferredEmail?: string | undefined;
4786
4786
  phoneNumber?: string | undefined;
4787
4787
  birthDate?: string | undefined;
@@ -4813,17 +4813,17 @@ declare const zInvoiceResponse: z.ZodObject<{
4813
4813
  country?: string | undefined;
4814
4814
  shouldChangePassword?: boolean | undefined;
4815
4815
  profiles?: {
4816
+ firstName: string;
4817
+ lastName: string;
4816
4818
  _id: string;
4817
- firstName?: string | undefined;
4818
- lastName?: string | undefined;
4819
+ agaId: string;
4819
4820
  rank?: GoRank | undefined;
4820
4821
  address?: string | undefined;
4821
4822
  showOnWhoIsComing?: boolean | undefined;
4822
- participateAs?: "adult" | "youth" | undefined;
4823
+ participateAs?: "" | "adult" | "youth" | undefined;
4823
4824
  editedBy?: string | undefined;
4824
4825
  createdAt?: string | undefined;
4825
4826
  updatedAt?: string | undefined;
4826
- agaId?: string | undefined;
4827
4827
  preferredEmail?: string | undefined;
4828
4828
  phoneNumber?: string | undefined;
4829
4829
  birthDate?: string | undefined;
@@ -4859,14 +4859,14 @@ declare const zInvoiceResponse: z.ZodObject<{
4859
4859
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4860
4860
  shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
4861
4861
  profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
4862
- firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4863
- lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4864
- address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4862
+ firstName: z.ZodString;
4863
+ lastName: z.ZodString;
4865
4864
  rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
4866
- agaId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4867
- participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
4865
+ agaId: z.ZodString;
4866
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4867
+ participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
4868
4868
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
4869
- preferredEmail: z.ZodOptional<z.ZodString>;
4869
+ preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4870
4870
  phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4871
4871
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
4872
4872
  } & {
@@ -4875,32 +4875,32 @@ declare const zInvoiceResponse: z.ZodObject<{
4875
4875
  createdAt: z.ZodOptional<z.ZodString>;
4876
4876
  updatedAt: z.ZodOptional<z.ZodString>;
4877
4877
  }, z.UnknownKeysParam, z.ZodTypeAny, {
4878
+ firstName: string;
4879
+ lastName: string;
4878
4880
  _id: string;
4879
- firstName?: string | undefined;
4880
- lastName?: string | undefined;
4881
+ agaId: string;
4881
4882
  rank?: GoRank | undefined;
4882
4883
  address?: string | undefined;
4883
4884
  showOnWhoIsComing?: boolean | undefined;
4884
- participateAs?: "adult" | "youth" | undefined;
4885
+ participateAs?: "" | "adult" | "youth" | undefined;
4885
4886
  editedBy?: string | undefined;
4886
4887
  createdAt?: string | undefined;
4887
4888
  updatedAt?: string | undefined;
4888
- agaId?: string | undefined;
4889
4889
  preferredEmail?: string | undefined;
4890
4890
  phoneNumber?: string | undefined;
4891
4891
  birthDate?: string | undefined;
4892
4892
  }, {
4893
+ firstName: string;
4894
+ lastName: string;
4893
4895
  _id: string;
4894
- firstName?: string | undefined;
4895
- lastName?: string | undefined;
4896
+ agaId: string;
4896
4897
  rank?: GoRank | undefined;
4897
4898
  address?: string | undefined;
4898
4899
  showOnWhoIsComing?: boolean | undefined;
4899
- participateAs?: "adult" | "youth" | undefined;
4900
+ participateAs?: "" | "adult" | "youth" | undefined;
4900
4901
  editedBy?: string | undefined;
4901
4902
  createdAt?: string | undefined;
4902
4903
  updatedAt?: string | undefined;
4903
- agaId?: string | undefined;
4904
4904
  preferredEmail?: string | undefined;
4905
4905
  phoneNumber?: string | undefined;
4906
4906
  birthDate?: string | undefined;
@@ -4939,17 +4939,17 @@ declare const zInvoiceResponse: z.ZodObject<{
4939
4939
  country?: string | undefined;
4940
4940
  shouldChangePassword?: boolean | undefined;
4941
4941
  profiles?: {
4942
+ firstName: string;
4943
+ lastName: string;
4942
4944
  _id: string;
4943
- firstName?: string | undefined;
4944
- lastName?: string | undefined;
4945
+ agaId: string;
4945
4946
  rank?: GoRank | undefined;
4946
4947
  address?: string | undefined;
4947
4948
  showOnWhoIsComing?: boolean | undefined;
4948
- participateAs?: "adult" | "youth" | undefined;
4949
+ participateAs?: "" | "adult" | "youth" | undefined;
4949
4950
  editedBy?: string | undefined;
4950
4951
  createdAt?: string | undefined;
4951
4952
  updatedAt?: string | undefined;
4952
- agaId?: string | undefined;
4953
4953
  preferredEmail?: string | undefined;
4954
4954
  phoneNumber?: string | undefined;
4955
4955
  birthDate?: string | undefined;
@@ -4981,17 +4981,17 @@ declare const zInvoiceResponse: z.ZodObject<{
4981
4981
  country?: string | undefined;
4982
4982
  shouldChangePassword?: boolean | undefined;
4983
4983
  profiles?: {
4984
+ firstName: string;
4985
+ lastName: string;
4984
4986
  _id: string;
4985
- firstName?: string | undefined;
4986
- lastName?: string | undefined;
4987
+ agaId: string;
4987
4988
  rank?: GoRank | undefined;
4988
4989
  address?: string | undefined;
4989
4990
  showOnWhoIsComing?: boolean | undefined;
4990
- participateAs?: "adult" | "youth" | undefined;
4991
+ participateAs?: "" | "adult" | "youth" | undefined;
4991
4992
  editedBy?: string | undefined;
4992
4993
  createdAt?: string | undefined;
4993
4994
  updatedAt?: string | undefined;
4994
- agaId?: string | undefined;
4995
4995
  preferredEmail?: string | undefined;
4996
4996
  phoneNumber?: string | undefined;
4997
4997
  birthDate?: string | undefined;
@@ -5042,14 +5042,14 @@ declare const zInvoiceResponse: z.ZodObject<{
5042
5042
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
5043
5043
  shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
5044
5044
  profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
5045
- firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
5046
- lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
5047
- address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
5045
+ firstName: z.ZodString;
5046
+ lastName: z.ZodString;
5048
5047
  rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
5049
- agaId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
5050
- participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
5048
+ agaId: z.ZodString;
5049
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
5050
+ participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
5051
5051
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
5052
- preferredEmail: z.ZodOptional<z.ZodString>;
5052
+ preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
5053
5053
  phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
5054
5054
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
5055
5055
  } & {
@@ -5058,32 +5058,32 @@ declare const zInvoiceResponse: z.ZodObject<{
5058
5058
  createdAt: z.ZodOptional<z.ZodString>;
5059
5059
  updatedAt: z.ZodOptional<z.ZodString>;
5060
5060
  }, z.UnknownKeysParam, z.ZodTypeAny, {
5061
+ firstName: string;
5062
+ lastName: string;
5061
5063
  _id: string;
5062
- firstName?: string | undefined;
5063
- lastName?: string | undefined;
5064
+ agaId: string;
5064
5065
  rank?: GoRank | undefined;
5065
5066
  address?: string | undefined;
5066
5067
  showOnWhoIsComing?: boolean | undefined;
5067
- participateAs?: "adult" | "youth" | undefined;
5068
+ participateAs?: "" | "adult" | "youth" | undefined;
5068
5069
  editedBy?: string | undefined;
5069
5070
  createdAt?: string | undefined;
5070
5071
  updatedAt?: string | undefined;
5071
- agaId?: string | undefined;
5072
5072
  preferredEmail?: string | undefined;
5073
5073
  phoneNumber?: string | undefined;
5074
5074
  birthDate?: string | undefined;
5075
5075
  }, {
5076
+ firstName: string;
5077
+ lastName: string;
5076
5078
  _id: string;
5077
- firstName?: string | undefined;
5078
- lastName?: string | undefined;
5079
+ agaId: string;
5079
5080
  rank?: GoRank | undefined;
5080
5081
  address?: string | undefined;
5081
5082
  showOnWhoIsComing?: boolean | undefined;
5082
- participateAs?: "adult" | "youth" | undefined;
5083
+ participateAs?: "" | "adult" | "youth" | undefined;
5083
5084
  editedBy?: string | undefined;
5084
5085
  createdAt?: string | undefined;
5085
5086
  updatedAt?: string | undefined;
5086
- agaId?: string | undefined;
5087
5087
  preferredEmail?: string | undefined;
5088
5088
  phoneNumber?: string | undefined;
5089
5089
  birthDate?: string | undefined;
@@ -5117,17 +5117,17 @@ declare const zInvoiceResponse: z.ZodObject<{
5117
5117
  country?: string | undefined;
5118
5118
  shouldChangePassword?: boolean | undefined;
5119
5119
  profiles?: {
5120
+ firstName: string;
5121
+ lastName: string;
5120
5122
  _id: string;
5121
- firstName?: string | undefined;
5122
- lastName?: string | undefined;
5123
+ agaId: string;
5123
5124
  rank?: GoRank | undefined;
5124
5125
  address?: string | undefined;
5125
5126
  showOnWhoIsComing?: boolean | undefined;
5126
- participateAs?: "adult" | "youth" | undefined;
5127
+ participateAs?: "" | "adult" | "youth" | undefined;
5127
5128
  editedBy?: string | undefined;
5128
5129
  createdAt?: string | undefined;
5129
5130
  updatedAt?: string | undefined;
5130
- agaId?: string | undefined;
5131
5131
  preferredEmail?: string | undefined;
5132
5132
  phoneNumber?: string | undefined;
5133
5133
  birthDate?: string | undefined;
@@ -5154,17 +5154,17 @@ declare const zInvoiceResponse: z.ZodObject<{
5154
5154
  country?: string | undefined;
5155
5155
  shouldChangePassword?: boolean | undefined;
5156
5156
  profiles?: {
5157
+ firstName: string;
5158
+ lastName: string;
5157
5159
  _id: string;
5158
- firstName?: string | undefined;
5159
- lastName?: string | undefined;
5160
+ agaId: string;
5160
5161
  rank?: GoRank | undefined;
5161
5162
  address?: string | undefined;
5162
5163
  showOnWhoIsComing?: boolean | undefined;
5163
- participateAs?: "adult" | "youth" | undefined;
5164
+ participateAs?: "" | "adult" | "youth" | undefined;
5164
5165
  editedBy?: string | undefined;
5165
5166
  createdAt?: string | undefined;
5166
5167
  updatedAt?: string | undefined;
5167
- agaId?: string | undefined;
5168
5168
  preferredEmail?: string | undefined;
5169
5169
  phoneNumber?: string | undefined;
5170
5170
  birthDate?: string | undefined;
@@ -5193,17 +5193,17 @@ declare const zInvoiceResponse: z.ZodObject<{
5193
5193
  country?: string | undefined;
5194
5194
  shouldChangePassword?: boolean | undefined;
5195
5195
  profiles?: {
5196
+ firstName: string;
5197
+ lastName: string;
5196
5198
  _id: string;
5197
- firstName?: string | undefined;
5198
- lastName?: string | undefined;
5199
+ agaId: string;
5199
5200
  rank?: GoRank | undefined;
5200
5201
  address?: string | undefined;
5201
5202
  showOnWhoIsComing?: boolean | undefined;
5202
- participateAs?: "adult" | "youth" | undefined;
5203
+ participateAs?: "" | "adult" | "youth" | undefined;
5203
5204
  editedBy?: string | undefined;
5204
5205
  createdAt?: string | undefined;
5205
5206
  updatedAt?: string | undefined;
5206
- agaId?: string | undefined;
5207
5207
  preferredEmail?: string | undefined;
5208
5208
  phoneNumber?: string | undefined;
5209
5209
  birthDate?: string | undefined;
@@ -5237,17 +5237,17 @@ declare const zInvoiceResponse: z.ZodObject<{
5237
5237
  country?: string | undefined;
5238
5238
  shouldChangePassword?: boolean | undefined;
5239
5239
  profiles?: {
5240
+ firstName: string;
5241
+ lastName: string;
5240
5242
  _id: string;
5241
- firstName?: string | undefined;
5242
- lastName?: string | undefined;
5243
+ agaId: string;
5243
5244
  rank?: GoRank | undefined;
5244
5245
  address?: string | undefined;
5245
5246
  showOnWhoIsComing?: boolean | undefined;
5246
- participateAs?: "adult" | "youth" | undefined;
5247
+ participateAs?: "" | "adult" | "youth" | undefined;
5247
5248
  editedBy?: string | undefined;
5248
5249
  createdAt?: string | undefined;
5249
5250
  updatedAt?: string | undefined;
5250
- agaId?: string | undefined;
5251
5251
  preferredEmail?: string | undefined;
5252
5252
  phoneNumber?: string | undefined;
5253
5253
  birthDate?: string | undefined;
@@ -5285,17 +5285,17 @@ declare const zInvoiceResponse: z.ZodObject<{
5285
5285
  country?: string | undefined;
5286
5286
  shouldChangePassword?: boolean | undefined;
5287
5287
  profiles?: {
5288
+ firstName: string;
5289
+ lastName: string;
5288
5290
  _id: string;
5289
- firstName?: string | undefined;
5290
- lastName?: string | undefined;
5291
+ agaId: string;
5291
5292
  rank?: GoRank | undefined;
5292
5293
  address?: string | undefined;
5293
5294
  showOnWhoIsComing?: boolean | undefined;
5294
- participateAs?: "adult" | "youth" | undefined;
5295
+ participateAs?: "" | "adult" | "youth" | undefined;
5295
5296
  editedBy?: string | undefined;
5296
5297
  createdAt?: string | undefined;
5297
5298
  updatedAt?: string | undefined;
5298
- agaId?: string | undefined;
5299
5299
  preferredEmail?: string | undefined;
5300
5300
  phoneNumber?: string | undefined;
5301
5301
  birthDate?: string | undefined;
@@ -5333,17 +5333,17 @@ declare const zInvoiceResponse: z.ZodObject<{
5333
5333
  country?: string | undefined;
5334
5334
  shouldChangePassword?: boolean | undefined;
5335
5335
  profiles?: {
5336
+ firstName: string;
5337
+ lastName: string;
5336
5338
  _id: string;
5337
- firstName?: string | undefined;
5338
- lastName?: string | undefined;
5339
+ agaId: string;
5339
5340
  rank?: GoRank | undefined;
5340
5341
  address?: string | undefined;
5341
5342
  showOnWhoIsComing?: boolean | undefined;
5342
- participateAs?: "adult" | "youth" | undefined;
5343
+ participateAs?: "" | "adult" | "youth" | undefined;
5343
5344
  editedBy?: string | undefined;
5344
5345
  createdAt?: string | undefined;
5345
5346
  updatedAt?: string | undefined;
5346
- agaId?: string | undefined;
5347
5347
  preferredEmail?: string | undefined;
5348
5348
  phoneNumber?: string | undefined;
5349
5349
  birthDate?: string | undefined;
@@ -5379,17 +5379,17 @@ declare const zInvoiceResponse: z.ZodObject<{
5379
5379
  country?: string | undefined;
5380
5380
  shouldChangePassword?: boolean | undefined;
5381
5381
  profiles?: {
5382
+ firstName: string;
5383
+ lastName: string;
5382
5384
  _id: string;
5383
- firstName?: string | undefined;
5384
- lastName?: string | undefined;
5385
+ agaId: string;
5385
5386
  rank?: GoRank | undefined;
5386
5387
  address?: string | undefined;
5387
5388
  showOnWhoIsComing?: boolean | undefined;
5388
- participateAs?: "adult" | "youth" | undefined;
5389
+ participateAs?: "" | "adult" | "youth" | undefined;
5389
5390
  editedBy?: string | undefined;
5390
5391
  createdAt?: string | undefined;
5391
5392
  updatedAt?: string | undefined;
5392
- agaId?: string | undefined;
5393
5393
  preferredEmail?: string | undefined;
5394
5394
  phoneNumber?: string | undefined;
5395
5395
  birthDate?: string | undefined;
@@ -5432,17 +5432,17 @@ declare const zInvoiceResponse: z.ZodObject<{
5432
5432
  country?: string | undefined;
5433
5433
  shouldChangePassword?: boolean | undefined;
5434
5434
  profiles?: {
5435
+ firstName: string;
5436
+ lastName: string;
5435
5437
  _id: string;
5436
- firstName?: string | undefined;
5437
- lastName?: string | undefined;
5438
+ agaId: string;
5438
5439
  rank?: GoRank | undefined;
5439
5440
  address?: string | undefined;
5440
5441
  showOnWhoIsComing?: boolean | undefined;
5441
- participateAs?: "adult" | "youth" | undefined;
5442
+ participateAs?: "" | "adult" | "youth" | undefined;
5442
5443
  editedBy?: string | undefined;
5443
5444
  createdAt?: string | undefined;
5444
5445
  updatedAt?: string | undefined;
5445
- agaId?: string | undefined;
5446
5446
  preferredEmail?: string | undefined;
5447
5447
  phoneNumber?: string | undefined;
5448
5448
  birthDate?: string | undefined;
@@ -5480,17 +5480,17 @@ declare const zInvoiceResponse: z.ZodObject<{
5480
5480
  country?: string | undefined;
5481
5481
  shouldChangePassword?: boolean | undefined;
5482
5482
  profiles?: {
5483
+ firstName: string;
5484
+ lastName: string;
5483
5485
  _id: string;
5484
- firstName?: string | undefined;
5485
- lastName?: string | undefined;
5486
+ agaId: string;
5486
5487
  rank?: GoRank | undefined;
5487
5488
  address?: string | undefined;
5488
5489
  showOnWhoIsComing?: boolean | undefined;
5489
- participateAs?: "adult" | "youth" | undefined;
5490
+ participateAs?: "" | "adult" | "youth" | undefined;
5490
5491
  editedBy?: string | undefined;
5491
5492
  createdAt?: string | undefined;
5492
5493
  updatedAt?: string | undefined;
5493
- agaId?: string | undefined;
5494
5494
  preferredEmail?: string | undefined;
5495
5495
  phoneNumber?: string | undefined;
5496
5496
  birthDate?: string | undefined;
@@ -5526,17 +5526,17 @@ declare const zInvoiceResponse: z.ZodObject<{
5526
5526
  country?: string | undefined;
5527
5527
  shouldChangePassword?: boolean | undefined;
5528
5528
  profiles?: {
5529
+ firstName: string;
5530
+ lastName: string;
5529
5531
  _id: string;
5530
- firstName?: string | undefined;
5531
- lastName?: string | undefined;
5532
+ agaId: string;
5532
5533
  rank?: GoRank | undefined;
5533
5534
  address?: string | undefined;
5534
5535
  showOnWhoIsComing?: boolean | undefined;
5535
- participateAs?: "adult" | "youth" | undefined;
5536
+ participateAs?: "" | "adult" | "youth" | undefined;
5536
5537
  editedBy?: string | undefined;
5537
5538
  createdAt?: string | undefined;
5538
5539
  updatedAt?: string | undefined;
5539
- agaId?: string | undefined;
5540
5540
  preferredEmail?: string | undefined;
5541
5541
  phoneNumber?: string | undefined;
5542
5542
  birthDate?: string | undefined;
@@ -5971,14 +5971,14 @@ declare const zReportTicketResponse: z.ZodObject<{
5971
5971
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
5972
5972
  shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
5973
5973
  profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
5974
- firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
5975
- lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
5976
- address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
5974
+ firstName: z.ZodString;
5975
+ lastName: z.ZodString;
5977
5976
  rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
5978
- agaId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
5979
- participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
5977
+ agaId: z.ZodString;
5978
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
5979
+ participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
5980
5980
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
5981
- preferredEmail: z.ZodOptional<z.ZodString>;
5981
+ preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
5982
5982
  phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
5983
5983
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
5984
5984
  } & {
@@ -5987,32 +5987,32 @@ declare const zReportTicketResponse: z.ZodObject<{
5987
5987
  createdAt: z.ZodOptional<z.ZodString>;
5988
5988
  updatedAt: z.ZodOptional<z.ZodString>;
5989
5989
  }, z.UnknownKeysParam, z.ZodTypeAny, {
5990
+ firstName: string;
5991
+ lastName: string;
5990
5992
  _id: string;
5991
- firstName?: string | undefined;
5992
- lastName?: string | undefined;
5993
+ agaId: string;
5993
5994
  rank?: GoRank | undefined;
5994
5995
  address?: string | undefined;
5995
5996
  showOnWhoIsComing?: boolean | undefined;
5996
- participateAs?: "adult" | "youth" | undefined;
5997
+ participateAs?: "" | "adult" | "youth" | undefined;
5997
5998
  editedBy?: string | undefined;
5998
5999
  createdAt?: string | undefined;
5999
6000
  updatedAt?: string | undefined;
6000
- agaId?: string | undefined;
6001
6001
  preferredEmail?: string | undefined;
6002
6002
  phoneNumber?: string | undefined;
6003
6003
  birthDate?: string | undefined;
6004
6004
  }, {
6005
+ firstName: string;
6006
+ lastName: string;
6005
6007
  _id: string;
6006
- firstName?: string | undefined;
6007
- lastName?: string | undefined;
6008
+ agaId: string;
6008
6009
  rank?: GoRank | undefined;
6009
6010
  address?: string | undefined;
6010
6011
  showOnWhoIsComing?: boolean | undefined;
6011
- participateAs?: "adult" | "youth" | undefined;
6012
+ participateAs?: "" | "adult" | "youth" | undefined;
6012
6013
  editedBy?: string | undefined;
6013
6014
  createdAt?: string | undefined;
6014
6015
  updatedAt?: string | undefined;
6015
- agaId?: string | undefined;
6016
6016
  preferredEmail?: string | undefined;
6017
6017
  phoneNumber?: string | undefined;
6018
6018
  birthDate?: string | undefined;
@@ -6042,17 +6042,17 @@ declare const zReportTicketResponse: z.ZodObject<{
6042
6042
  country?: string | undefined;
6043
6043
  shouldChangePassword?: boolean | undefined;
6044
6044
  profiles?: {
6045
+ firstName: string;
6046
+ lastName: string;
6045
6047
  _id: string;
6046
- firstName?: string | undefined;
6047
- lastName?: string | undefined;
6048
+ agaId: string;
6048
6049
  rank?: GoRank | undefined;
6049
6050
  address?: string | undefined;
6050
6051
  showOnWhoIsComing?: boolean | undefined;
6051
- participateAs?: "adult" | "youth" | undefined;
6052
+ participateAs?: "" | "adult" | "youth" | undefined;
6052
6053
  editedBy?: string | undefined;
6053
6054
  createdAt?: string | undefined;
6054
6055
  updatedAt?: string | undefined;
6055
- agaId?: string | undefined;
6056
6056
  preferredEmail?: string | undefined;
6057
6057
  phoneNumber?: string | undefined;
6058
6058
  birthDate?: string | undefined;
@@ -6077,17 +6077,17 @@ declare const zReportTicketResponse: z.ZodObject<{
6077
6077
  country?: string | undefined;
6078
6078
  shouldChangePassword?: boolean | undefined;
6079
6079
  profiles?: {
6080
+ firstName: string;
6081
+ lastName: string;
6080
6082
  _id: string;
6081
- firstName?: string | undefined;
6082
- lastName?: string | undefined;
6083
+ agaId: string;
6083
6084
  rank?: GoRank | undefined;
6084
6085
  address?: string | undefined;
6085
6086
  showOnWhoIsComing?: boolean | undefined;
6086
- participateAs?: "adult" | "youth" | undefined;
6087
+ participateAs?: "" | "adult" | "youth" | undefined;
6087
6088
  editedBy?: string | undefined;
6088
6089
  createdAt?: string | undefined;
6089
6090
  updatedAt?: string | undefined;
6090
- agaId?: string | undefined;
6091
6091
  preferredEmail?: string | undefined;
6092
6092
  phoneNumber?: string | undefined;
6093
6093
  birthDate?: string | undefined;
@@ -6117,14 +6117,14 @@ declare const zReportTicketResponse: z.ZodObject<{
6117
6117
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
6118
6118
  shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
6119
6119
  profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
6120
- firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
6121
- lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
6122
- address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
6120
+ firstName: z.ZodString;
6121
+ lastName: z.ZodString;
6123
6122
  rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
6124
- agaId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
6125
- participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
6123
+ agaId: z.ZodString;
6124
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
6125
+ participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
6126
6126
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
6127
- preferredEmail: z.ZodOptional<z.ZodString>;
6127
+ preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
6128
6128
  phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
6129
6129
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
6130
6130
  } & {
@@ -6133,32 +6133,32 @@ declare const zReportTicketResponse: z.ZodObject<{
6133
6133
  createdAt: z.ZodOptional<z.ZodString>;
6134
6134
  updatedAt: z.ZodOptional<z.ZodString>;
6135
6135
  }, z.UnknownKeysParam, z.ZodTypeAny, {
6136
+ firstName: string;
6137
+ lastName: string;
6136
6138
  _id: string;
6137
- firstName?: string | undefined;
6138
- lastName?: string | undefined;
6139
+ agaId: string;
6139
6140
  rank?: GoRank | undefined;
6140
6141
  address?: string | undefined;
6141
6142
  showOnWhoIsComing?: boolean | undefined;
6142
- participateAs?: "adult" | "youth" | undefined;
6143
+ participateAs?: "" | "adult" | "youth" | undefined;
6143
6144
  editedBy?: string | undefined;
6144
6145
  createdAt?: string | undefined;
6145
6146
  updatedAt?: string | undefined;
6146
- agaId?: string | undefined;
6147
6147
  preferredEmail?: string | undefined;
6148
6148
  phoneNumber?: string | undefined;
6149
6149
  birthDate?: string | undefined;
6150
6150
  }, {
6151
+ firstName: string;
6152
+ lastName: string;
6151
6153
  _id: string;
6152
- firstName?: string | undefined;
6153
- lastName?: string | undefined;
6154
+ agaId: string;
6154
6155
  rank?: GoRank | undefined;
6155
6156
  address?: string | undefined;
6156
6157
  showOnWhoIsComing?: boolean | undefined;
6157
- participateAs?: "adult" | "youth" | undefined;
6158
+ participateAs?: "" | "adult" | "youth" | undefined;
6158
6159
  editedBy?: string | undefined;
6159
6160
  createdAt?: string | undefined;
6160
6161
  updatedAt?: string | undefined;
6161
- agaId?: string | undefined;
6162
6162
  preferredEmail?: string | undefined;
6163
6163
  phoneNumber?: string | undefined;
6164
6164
  birthDate?: string | undefined;
@@ -6188,17 +6188,17 @@ declare const zReportTicketResponse: z.ZodObject<{
6188
6188
  country?: string | undefined;
6189
6189
  shouldChangePassword?: boolean | undefined;
6190
6190
  profiles?: {
6191
+ firstName: string;
6192
+ lastName: string;
6191
6193
  _id: string;
6192
- firstName?: string | undefined;
6193
- lastName?: string | undefined;
6194
+ agaId: string;
6194
6195
  rank?: GoRank | undefined;
6195
6196
  address?: string | undefined;
6196
6197
  showOnWhoIsComing?: boolean | undefined;
6197
- participateAs?: "adult" | "youth" | undefined;
6198
+ participateAs?: "" | "adult" | "youth" | undefined;
6198
6199
  editedBy?: string | undefined;
6199
6200
  createdAt?: string | undefined;
6200
6201
  updatedAt?: string | undefined;
6201
- agaId?: string | undefined;
6202
6202
  preferredEmail?: string | undefined;
6203
6203
  phoneNumber?: string | undefined;
6204
6204
  birthDate?: string | undefined;
@@ -6223,17 +6223,17 @@ declare const zReportTicketResponse: z.ZodObject<{
6223
6223
  country?: string | undefined;
6224
6224
  shouldChangePassword?: boolean | undefined;
6225
6225
  profiles?: {
6226
+ firstName: string;
6227
+ lastName: string;
6226
6228
  _id: string;
6227
- firstName?: string | undefined;
6228
- lastName?: string | undefined;
6229
+ agaId: string;
6229
6230
  rank?: GoRank | undefined;
6230
6231
  address?: string | undefined;
6231
6232
  showOnWhoIsComing?: boolean | undefined;
6232
- participateAs?: "adult" | "youth" | undefined;
6233
+ participateAs?: "" | "adult" | "youth" | undefined;
6233
6234
  editedBy?: string | undefined;
6234
6235
  createdAt?: string | undefined;
6235
6236
  updatedAt?: string | undefined;
6236
- agaId?: string | undefined;
6237
6237
  preferredEmail?: string | undefined;
6238
6238
  phoneNumber?: string | undefined;
6239
6239
  birthDate?: string | undefined;
@@ -6264,17 +6264,17 @@ declare const zReportTicketResponse: z.ZodObject<{
6264
6264
  country?: string | undefined;
6265
6265
  shouldChangePassword?: boolean | undefined;
6266
6266
  profiles?: {
6267
+ firstName: string;
6268
+ lastName: string;
6267
6269
  _id: string;
6268
- firstName?: string | undefined;
6269
- lastName?: string | undefined;
6270
+ agaId: string;
6270
6271
  rank?: GoRank | undefined;
6271
6272
  address?: string | undefined;
6272
6273
  showOnWhoIsComing?: boolean | undefined;
6273
- participateAs?: "adult" | "youth" | undefined;
6274
+ participateAs?: "" | "adult" | "youth" | undefined;
6274
6275
  editedBy?: string | undefined;
6275
6276
  createdAt?: string | undefined;
6276
6277
  updatedAt?: string | undefined;
6277
- agaId?: string | undefined;
6278
6278
  preferredEmail?: string | undefined;
6279
6279
  phoneNumber?: string | undefined;
6280
6280
  birthDate?: string | undefined;
@@ -6303,17 +6303,17 @@ declare const zReportTicketResponse: z.ZodObject<{
6303
6303
  country?: string | undefined;
6304
6304
  shouldChangePassword?: boolean | undefined;
6305
6305
  profiles?: {
6306
+ firstName: string;
6307
+ lastName: string;
6306
6308
  _id: string;
6307
- firstName?: string | undefined;
6308
- lastName?: string | undefined;
6309
+ agaId: string;
6309
6310
  rank?: GoRank | undefined;
6310
6311
  address?: string | undefined;
6311
6312
  showOnWhoIsComing?: boolean | undefined;
6312
- participateAs?: "adult" | "youth" | undefined;
6313
+ participateAs?: "" | "adult" | "youth" | undefined;
6313
6314
  editedBy?: string | undefined;
6314
6315
  createdAt?: string | undefined;
6315
6316
  updatedAt?: string | undefined;
6316
- agaId?: string | undefined;
6317
6317
  preferredEmail?: string | undefined;
6318
6318
  phoneNumber?: string | undefined;
6319
6319
  birthDate?: string | undefined;
@@ -6344,17 +6344,17 @@ declare const zReportTicketResponse: z.ZodObject<{
6344
6344
  country?: string | undefined;
6345
6345
  shouldChangePassword?: boolean | undefined;
6346
6346
  profiles?: {
6347
+ firstName: string;
6348
+ lastName: string;
6347
6349
  _id: string;
6348
- firstName?: string | undefined;
6349
- lastName?: string | undefined;
6350
+ agaId: string;
6350
6351
  rank?: GoRank | undefined;
6351
6352
  address?: string | undefined;
6352
6353
  showOnWhoIsComing?: boolean | undefined;
6353
- participateAs?: "adult" | "youth" | undefined;
6354
+ participateAs?: "" | "adult" | "youth" | undefined;
6354
6355
  editedBy?: string | undefined;
6355
6356
  createdAt?: string | undefined;
6356
6357
  updatedAt?: string | undefined;
6357
- agaId?: string | undefined;
6358
6358
  preferredEmail?: string | undefined;
6359
6359
  phoneNumber?: string | undefined;
6360
6360
  birthDate?: string | undefined;
@@ -6383,17 +6383,17 @@ declare const zReportTicketResponse: z.ZodObject<{
6383
6383
  country?: string | undefined;
6384
6384
  shouldChangePassword?: boolean | undefined;
6385
6385
  profiles?: {
6386
+ firstName: string;
6387
+ lastName: string;
6386
6388
  _id: string;
6387
- firstName?: string | undefined;
6388
- lastName?: string | undefined;
6389
+ agaId: string;
6389
6390
  rank?: GoRank | undefined;
6390
6391
  address?: string | undefined;
6391
6392
  showOnWhoIsComing?: boolean | undefined;
6392
- participateAs?: "adult" | "youth" | undefined;
6393
+ participateAs?: "" | "adult" | "youth" | undefined;
6393
6394
  editedBy?: string | undefined;
6394
6395
  createdAt?: string | undefined;
6395
6396
  updatedAt?: string | undefined;
6396
- agaId?: string | undefined;
6397
6397
  preferredEmail?: string | undefined;
6398
6398
  phoneNumber?: string | undefined;
6399
6399
  birthDate?: string | undefined;
@@ -7657,14 +7657,14 @@ declare const zBUser: z.ZodObject<{
7657
7657
  * UserProfile Object storing user preferences
7658
7658
  */
7659
7659
  profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
7660
- firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7661
- lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7662
- address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7660
+ firstName: z.ZodString;
7661
+ lastName: z.ZodString;
7663
7662
  rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
7664
- agaId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7665
- participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
7663
+ agaId: z.ZodString;
7664
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7665
+ participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
7666
7666
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
7667
- preferredEmail: z.ZodOptional<z.ZodString>;
7667
+ preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7668
7668
  phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7669
7669
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7670
7670
  } & {
@@ -7673,32 +7673,32 @@ declare const zBUser: z.ZodObject<{
7673
7673
  createdAt: z.ZodOptional<z.ZodString>;
7674
7674
  updatedAt: z.ZodOptional<z.ZodString>;
7675
7675
  }, z.UnknownKeysParam, z.ZodTypeAny, {
7676
+ firstName: string;
7677
+ lastName: string;
7676
7678
  _id: string;
7677
- firstName?: string | undefined;
7678
- lastName?: string | undefined;
7679
+ agaId: string;
7679
7680
  rank?: GoRank | undefined;
7680
7681
  address?: string | undefined;
7681
7682
  showOnWhoIsComing?: boolean | undefined;
7682
- participateAs?: "adult" | "youth" | undefined;
7683
+ participateAs?: "" | "adult" | "youth" | undefined;
7683
7684
  editedBy?: string | undefined;
7684
7685
  createdAt?: string | undefined;
7685
7686
  updatedAt?: string | undefined;
7686
- agaId?: string | undefined;
7687
7687
  preferredEmail?: string | undefined;
7688
7688
  phoneNumber?: string | undefined;
7689
7689
  birthDate?: string | undefined;
7690
7690
  }, {
7691
+ firstName: string;
7692
+ lastName: string;
7691
7693
  _id: string;
7692
- firstName?: string | undefined;
7693
- lastName?: string | undefined;
7694
+ agaId: string;
7694
7695
  rank?: GoRank | undefined;
7695
7696
  address?: string | undefined;
7696
7697
  showOnWhoIsComing?: boolean | undefined;
7697
- participateAs?: "adult" | "youth" | undefined;
7698
+ participateAs?: "" | "adult" | "youth" | undefined;
7698
7699
  editedBy?: string | undefined;
7699
7700
  createdAt?: string | undefined;
7700
7701
  updatedAt?: string | undefined;
7701
- agaId?: string | undefined;
7702
7702
  preferredEmail?: string | undefined;
7703
7703
  phoneNumber?: string | undefined;
7704
7704
  birthDate?: string | undefined;
@@ -7719,17 +7719,17 @@ declare const zBUser: z.ZodObject<{
7719
7719
  country?: string | undefined;
7720
7720
  shouldChangePassword?: boolean | undefined;
7721
7721
  profiles?: {
7722
+ firstName: string;
7723
+ lastName: string;
7722
7724
  _id: string;
7723
- firstName?: string | undefined;
7724
- lastName?: string | undefined;
7725
+ agaId: string;
7725
7726
  rank?: GoRank | undefined;
7726
7727
  address?: string | undefined;
7727
7728
  showOnWhoIsComing?: boolean | undefined;
7728
- participateAs?: "adult" | "youth" | undefined;
7729
+ participateAs?: "" | "adult" | "youth" | undefined;
7729
7730
  editedBy?: string | undefined;
7730
7731
  createdAt?: string | undefined;
7731
7732
  updatedAt?: string | undefined;
7732
- agaId?: string | undefined;
7733
7733
  preferredEmail?: string | undefined;
7734
7734
  phoneNumber?: string | undefined;
7735
7735
  birthDate?: string | undefined;
@@ -7750,17 +7750,17 @@ declare const zBUser: z.ZodObject<{
7750
7750
  country?: string | undefined;
7751
7751
  shouldChangePassword?: boolean | undefined;
7752
7752
  profiles?: {
7753
+ firstName: string;
7754
+ lastName: string;
7753
7755
  _id: string;
7754
- firstName?: string | undefined;
7755
- lastName?: string | undefined;
7756
+ agaId: string;
7756
7757
  rank?: GoRank | undefined;
7757
7758
  address?: string | undefined;
7758
7759
  showOnWhoIsComing?: boolean | undefined;
7759
- participateAs?: "adult" | "youth" | undefined;
7760
+ participateAs?: "" | "adult" | "youth" | undefined;
7760
7761
  editedBy?: string | undefined;
7761
7762
  createdAt?: string | undefined;
7762
7763
  updatedAt?: string | undefined;
7763
- agaId?: string | undefined;
7764
7764
  preferredEmail?: string | undefined;
7765
7765
  phoneNumber?: string | undefined;
7766
7766
  birthDate?: string | undefined;
@@ -7796,14 +7796,14 @@ declare const zUser: z.ZodObject<{
7796
7796
  * UserProfile Object storing user preferences
7797
7797
  */
7798
7798
  profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
7799
- firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7800
- lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7801
- address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7799
+ firstName: z.ZodString;
7800
+ lastName: z.ZodString;
7802
7801
  rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
7803
- agaId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7804
- participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
7802
+ agaId: z.ZodString;
7803
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7804
+ participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
7805
7805
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
7806
- preferredEmail: z.ZodOptional<z.ZodString>;
7806
+ preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7807
7807
  phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7808
7808
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7809
7809
  } & {
@@ -7812,32 +7812,32 @@ declare const zUser: z.ZodObject<{
7812
7812
  createdAt: z.ZodOptional<z.ZodString>;
7813
7813
  updatedAt: z.ZodOptional<z.ZodString>;
7814
7814
  }, z.UnknownKeysParam, z.ZodTypeAny, {
7815
+ firstName: string;
7816
+ lastName: string;
7815
7817
  _id: string;
7816
- firstName?: string | undefined;
7817
- lastName?: string | undefined;
7818
+ agaId: string;
7818
7819
  rank?: GoRank | undefined;
7819
7820
  address?: string | undefined;
7820
7821
  showOnWhoIsComing?: boolean | undefined;
7821
- participateAs?: "adult" | "youth" | undefined;
7822
+ participateAs?: "" | "adult" | "youth" | undefined;
7822
7823
  editedBy?: string | undefined;
7823
7824
  createdAt?: string | undefined;
7824
7825
  updatedAt?: string | undefined;
7825
- agaId?: string | undefined;
7826
7826
  preferredEmail?: string | undefined;
7827
7827
  phoneNumber?: string | undefined;
7828
7828
  birthDate?: string | undefined;
7829
7829
  }, {
7830
+ firstName: string;
7831
+ lastName: string;
7830
7832
  _id: string;
7831
- firstName?: string | undefined;
7832
- lastName?: string | undefined;
7833
+ agaId: string;
7833
7834
  rank?: GoRank | undefined;
7834
7835
  address?: string | undefined;
7835
7836
  showOnWhoIsComing?: boolean | undefined;
7836
- participateAs?: "adult" | "youth" | undefined;
7837
+ participateAs?: "" | "adult" | "youth" | undefined;
7837
7838
  editedBy?: string | undefined;
7838
7839
  createdAt?: string | undefined;
7839
7840
  updatedAt?: string | undefined;
7840
- agaId?: string | undefined;
7841
7841
  preferredEmail?: string | undefined;
7842
7842
  phoneNumber?: string | undefined;
7843
7843
  birthDate?: string | undefined;
@@ -7867,17 +7867,17 @@ declare const zUser: z.ZodObject<{
7867
7867
  country?: string | undefined;
7868
7868
  shouldChangePassword?: boolean | undefined;
7869
7869
  profiles?: {
7870
+ firstName: string;
7871
+ lastName: string;
7870
7872
  _id: string;
7871
- firstName?: string | undefined;
7872
- lastName?: string | undefined;
7873
+ agaId: string;
7873
7874
  rank?: GoRank | undefined;
7874
7875
  address?: string | undefined;
7875
7876
  showOnWhoIsComing?: boolean | undefined;
7876
- participateAs?: "adult" | "youth" | undefined;
7877
+ participateAs?: "" | "adult" | "youth" | undefined;
7877
7878
  editedBy?: string | undefined;
7878
7879
  createdAt?: string | undefined;
7879
7880
  updatedAt?: string | undefined;
7880
- agaId?: string | undefined;
7881
7881
  preferredEmail?: string | undefined;
7882
7882
  phoneNumber?: string | undefined;
7883
7883
  birthDate?: string | undefined;
@@ -7902,17 +7902,17 @@ declare const zUser: z.ZodObject<{
7902
7902
  country?: string | undefined;
7903
7903
  shouldChangePassword?: boolean | undefined;
7904
7904
  profiles?: {
7905
+ firstName: string;
7906
+ lastName: string;
7905
7907
  _id: string;
7906
- firstName?: string | undefined;
7907
- lastName?: string | undefined;
7908
+ agaId: string;
7908
7909
  rank?: GoRank | undefined;
7909
7910
  address?: string | undefined;
7910
7911
  showOnWhoIsComing?: boolean | undefined;
7911
- participateAs?: "adult" | "youth" | undefined;
7912
+ participateAs?: "" | "adult" | "youth" | undefined;
7912
7913
  editedBy?: string | undefined;
7913
7914
  createdAt?: string | undefined;
7914
7915
  updatedAt?: string | undefined;
7915
- agaId?: string | undefined;
7916
7916
  preferredEmail?: string | undefined;
7917
7917
  phoneNumber?: string | undefined;
7918
7918
  birthDate?: string | undefined;
@@ -7922,48 +7922,48 @@ type BUser = z.infer<typeof zBUser>;
7922
7922
  type User = z.infer<typeof zUser>;
7923
7923
 
7924
7924
  declare const zBUserProfile: z.ZodObject<{
7925
- firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7926
- lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7927
- address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7925
+ firstName: z.ZodString;
7926
+ lastName: z.ZodString;
7928
7927
  rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
7929
- agaId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7930
- participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
7928
+ agaId: z.ZodString;
7929
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7930
+ participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
7931
7931
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
7932
- preferredEmail: z.ZodOptional<z.ZodString>;
7932
+ preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7933
7933
  phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7934
7934
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7935
7935
  }, "strip", z.ZodTypeAny, {
7936
- firstName?: string | undefined;
7937
- lastName?: string | undefined;
7936
+ firstName: string;
7937
+ lastName: string;
7938
+ agaId: string;
7938
7939
  rank?: GoRank | undefined;
7939
7940
  address?: string | undefined;
7940
7941
  showOnWhoIsComing?: boolean | undefined;
7941
- participateAs?: "adult" | "youth" | undefined;
7942
- agaId?: string | undefined;
7942
+ participateAs?: "" | "adult" | "youth" | undefined;
7943
7943
  preferredEmail?: string | undefined;
7944
7944
  phoneNumber?: string | undefined;
7945
7945
  birthDate?: string | undefined;
7946
7946
  }, {
7947
- firstName?: string | undefined;
7948
- lastName?: string | undefined;
7947
+ firstName: string;
7948
+ lastName: string;
7949
+ agaId: string;
7949
7950
  rank?: GoRank | undefined;
7950
7951
  address?: string | undefined;
7951
7952
  showOnWhoIsComing?: boolean | undefined;
7952
- participateAs?: "adult" | "youth" | undefined;
7953
- agaId?: string | undefined;
7953
+ participateAs?: "" | "adult" | "youth" | undefined;
7954
7954
  preferredEmail?: string | undefined;
7955
7955
  phoneNumber?: string | undefined;
7956
7956
  birthDate?: string | undefined;
7957
7957
  }>;
7958
7958
  declare const zUserProfile: z.ZodObject<{
7959
- firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7960
- lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7961
- address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7959
+ firstName: z.ZodString;
7960
+ lastName: z.ZodString;
7962
7961
  rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
7963
- agaId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7964
- participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
7962
+ agaId: z.ZodString;
7963
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7964
+ participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
7965
7965
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
7966
- preferredEmail: z.ZodOptional<z.ZodString>;
7966
+ preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7967
7967
  phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7968
7968
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
7969
7969
  } & {
@@ -7972,32 +7972,32 @@ declare const zUserProfile: z.ZodObject<{
7972
7972
  createdAt: z.ZodOptional<z.ZodString>;
7973
7973
  updatedAt: z.ZodOptional<z.ZodString>;
7974
7974
  }, z.UnknownKeysParam, z.ZodTypeAny, {
7975
+ firstName: string;
7976
+ lastName: string;
7975
7977
  _id: string;
7976
- firstName?: string | undefined;
7977
- lastName?: string | undefined;
7978
+ agaId: string;
7978
7979
  rank?: GoRank | undefined;
7979
7980
  address?: string | undefined;
7980
7981
  showOnWhoIsComing?: boolean | undefined;
7981
- participateAs?: "adult" | "youth" | undefined;
7982
+ participateAs?: "" | "adult" | "youth" | undefined;
7982
7983
  editedBy?: string | undefined;
7983
7984
  createdAt?: string | undefined;
7984
7985
  updatedAt?: string | undefined;
7985
- agaId?: string | undefined;
7986
7986
  preferredEmail?: string | undefined;
7987
7987
  phoneNumber?: string | undefined;
7988
7988
  birthDate?: string | undefined;
7989
7989
  }, {
7990
+ firstName: string;
7991
+ lastName: string;
7990
7992
  _id: string;
7991
- firstName?: string | undefined;
7992
- lastName?: string | undefined;
7993
+ agaId: string;
7993
7994
  rank?: GoRank | undefined;
7994
7995
  address?: string | undefined;
7995
7996
  showOnWhoIsComing?: boolean | undefined;
7996
- participateAs?: "adult" | "youth" | undefined;
7997
+ participateAs?: "" | "adult" | "youth" | undefined;
7997
7998
  editedBy?: string | undefined;
7998
7999
  createdAt?: string | undefined;
7999
8000
  updatedAt?: string | undefined;
8000
- agaId?: string | undefined;
8001
8001
  preferredEmail?: string | undefined;
8002
8002
  phoneNumber?: string | undefined;
8003
8003
  birthDate?: string | undefined;
@@ -8048,14 +8048,14 @@ declare const zBStudent: z.ZodObject<{
8048
8048
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8049
8049
  shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
8050
8050
  profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
8051
- firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8052
- lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8053
- address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8051
+ firstName: z.ZodString;
8052
+ lastName: z.ZodString;
8054
8053
  rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
8055
- agaId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8056
- participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
8054
+ agaId: z.ZodString;
8055
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8056
+ participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
8057
8057
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
8058
- preferredEmail: z.ZodOptional<z.ZodString>;
8058
+ preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8059
8059
  phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8060
8060
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8061
8061
  } & {
@@ -8064,32 +8064,32 @@ declare const zBStudent: z.ZodObject<{
8064
8064
  createdAt: z.ZodOptional<z.ZodString>;
8065
8065
  updatedAt: z.ZodOptional<z.ZodString>;
8066
8066
  }, z.UnknownKeysParam, z.ZodTypeAny, {
8067
+ firstName: string;
8068
+ lastName: string;
8067
8069
  _id: string;
8068
- firstName?: string | undefined;
8069
- lastName?: string | undefined;
8070
+ agaId: string;
8070
8071
  rank?: GoRank | undefined;
8071
8072
  address?: string | undefined;
8072
8073
  showOnWhoIsComing?: boolean | undefined;
8073
- participateAs?: "adult" | "youth" | undefined;
8074
+ participateAs?: "" | "adult" | "youth" | undefined;
8074
8075
  editedBy?: string | undefined;
8075
8076
  createdAt?: string | undefined;
8076
8077
  updatedAt?: string | undefined;
8077
- agaId?: string | undefined;
8078
8078
  preferredEmail?: string | undefined;
8079
8079
  phoneNumber?: string | undefined;
8080
8080
  birthDate?: string | undefined;
8081
8081
  }, {
8082
+ firstName: string;
8083
+ lastName: string;
8082
8084
  _id: string;
8083
- firstName?: string | undefined;
8084
- lastName?: string | undefined;
8085
+ agaId: string;
8085
8086
  rank?: GoRank | undefined;
8086
8087
  address?: string | undefined;
8087
8088
  showOnWhoIsComing?: boolean | undefined;
8088
- participateAs?: "adult" | "youth" | undefined;
8089
+ participateAs?: "" | "adult" | "youth" | undefined;
8089
8090
  editedBy?: string | undefined;
8090
8091
  createdAt?: string | undefined;
8091
8092
  updatedAt?: string | undefined;
8092
- agaId?: string | undefined;
8093
8093
  preferredEmail?: string | undefined;
8094
8094
  phoneNumber?: string | undefined;
8095
8095
  birthDate?: string | undefined;
@@ -8114,17 +8114,17 @@ declare const zBStudent: z.ZodObject<{
8114
8114
  country?: string | undefined;
8115
8115
  shouldChangePassword?: boolean | undefined;
8116
8116
  profiles?: {
8117
+ firstName: string;
8118
+ lastName: string;
8117
8119
  _id: string;
8118
- firstName?: string | undefined;
8119
- lastName?: string | undefined;
8120
+ agaId: string;
8120
8121
  rank?: GoRank | undefined;
8121
8122
  address?: string | undefined;
8122
8123
  showOnWhoIsComing?: boolean | undefined;
8123
- participateAs?: "adult" | "youth" | undefined;
8124
+ participateAs?: "" | "adult" | "youth" | undefined;
8124
8125
  editedBy?: string | undefined;
8125
8126
  createdAt?: string | undefined;
8126
8127
  updatedAt?: string | undefined;
8127
- agaId?: string | undefined;
8128
8128
  preferredEmail?: string | undefined;
8129
8129
  phoneNumber?: string | undefined;
8130
8130
  birthDate?: string | undefined;
@@ -8147,17 +8147,17 @@ declare const zBStudent: z.ZodObject<{
8147
8147
  country?: string | undefined;
8148
8148
  shouldChangePassword?: boolean | undefined;
8149
8149
  profiles?: {
8150
+ firstName: string;
8151
+ lastName: string;
8150
8152
  _id: string;
8151
- firstName?: string | undefined;
8152
- lastName?: string | undefined;
8153
+ agaId: string;
8153
8154
  rank?: GoRank | undefined;
8154
8155
  address?: string | undefined;
8155
8156
  showOnWhoIsComing?: boolean | undefined;
8156
- participateAs?: "adult" | "youth" | undefined;
8157
+ participateAs?: "" | "adult" | "youth" | undefined;
8157
8158
  editedBy?: string | undefined;
8158
8159
  createdAt?: string | undefined;
8159
8160
  updatedAt?: string | undefined;
8160
- agaId?: string | undefined;
8161
8161
  preferredEmail?: string | undefined;
8162
8162
  phoneNumber?: string | undefined;
8163
8163
  birthDate?: string | undefined;
@@ -8188,14 +8188,14 @@ declare const zStudent: z.ZodObject<{
8188
8188
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8189
8189
  shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
8190
8190
  profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
8191
- firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8192
- lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8193
- address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8191
+ firstName: z.ZodString;
8192
+ lastName: z.ZodString;
8194
8193
  rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
8195
- agaId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8196
- participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
8194
+ agaId: z.ZodString;
8195
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8196
+ participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
8197
8197
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
8198
- preferredEmail: z.ZodOptional<z.ZodString>;
8198
+ preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8199
8199
  phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8200
8200
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8201
8201
  } & {
@@ -8204,32 +8204,32 @@ declare const zStudent: z.ZodObject<{
8204
8204
  createdAt: z.ZodOptional<z.ZodString>;
8205
8205
  updatedAt: z.ZodOptional<z.ZodString>;
8206
8206
  }, z.UnknownKeysParam, z.ZodTypeAny, {
8207
+ firstName: string;
8208
+ lastName: string;
8207
8209
  _id: string;
8208
- firstName?: string | undefined;
8209
- lastName?: string | undefined;
8210
+ agaId: string;
8210
8211
  rank?: GoRank | undefined;
8211
8212
  address?: string | undefined;
8212
8213
  showOnWhoIsComing?: boolean | undefined;
8213
- participateAs?: "adult" | "youth" | undefined;
8214
+ participateAs?: "" | "adult" | "youth" | undefined;
8214
8215
  editedBy?: string | undefined;
8215
8216
  createdAt?: string | undefined;
8216
8217
  updatedAt?: string | undefined;
8217
- agaId?: string | undefined;
8218
8218
  preferredEmail?: string | undefined;
8219
8219
  phoneNumber?: string | undefined;
8220
8220
  birthDate?: string | undefined;
8221
8221
  }, {
8222
+ firstName: string;
8223
+ lastName: string;
8222
8224
  _id: string;
8223
- firstName?: string | undefined;
8224
- lastName?: string | undefined;
8225
+ agaId: string;
8225
8226
  rank?: GoRank | undefined;
8226
8227
  address?: string | undefined;
8227
8228
  showOnWhoIsComing?: boolean | undefined;
8228
- participateAs?: "adult" | "youth" | undefined;
8229
+ participateAs?: "" | "adult" | "youth" | undefined;
8229
8230
  editedBy?: string | undefined;
8230
8231
  createdAt?: string | undefined;
8231
8232
  updatedAt?: string | undefined;
8232
- agaId?: string | undefined;
8233
8233
  preferredEmail?: string | undefined;
8234
8234
  phoneNumber?: string | undefined;
8235
8235
  birthDate?: string | undefined;
@@ -8263,17 +8263,17 @@ declare const zStudent: z.ZodObject<{
8263
8263
  country?: string | undefined;
8264
8264
  shouldChangePassword?: boolean | undefined;
8265
8265
  profiles?: {
8266
+ firstName: string;
8267
+ lastName: string;
8266
8268
  _id: string;
8267
- firstName?: string | undefined;
8268
- lastName?: string | undefined;
8269
+ agaId: string;
8269
8270
  rank?: GoRank | undefined;
8270
8271
  address?: string | undefined;
8271
8272
  showOnWhoIsComing?: boolean | undefined;
8272
- participateAs?: "adult" | "youth" | undefined;
8273
+ participateAs?: "" | "adult" | "youth" | undefined;
8273
8274
  editedBy?: string | undefined;
8274
8275
  createdAt?: string | undefined;
8275
8276
  updatedAt?: string | undefined;
8276
- agaId?: string | undefined;
8277
8277
  preferredEmail?: string | undefined;
8278
8278
  phoneNumber?: string | undefined;
8279
8279
  birthDate?: string | undefined;
@@ -8300,17 +8300,17 @@ declare const zStudent: z.ZodObject<{
8300
8300
  country?: string | undefined;
8301
8301
  shouldChangePassword?: boolean | undefined;
8302
8302
  profiles?: {
8303
+ firstName: string;
8304
+ lastName: string;
8303
8305
  _id: string;
8304
- firstName?: string | undefined;
8305
- lastName?: string | undefined;
8306
+ agaId: string;
8306
8307
  rank?: GoRank | undefined;
8307
8308
  address?: string | undefined;
8308
8309
  showOnWhoIsComing?: boolean | undefined;
8309
- participateAs?: "adult" | "youth" | undefined;
8310
+ participateAs?: "" | "adult" | "youth" | undefined;
8310
8311
  editedBy?: string | undefined;
8311
8312
  createdAt?: string | undefined;
8312
8313
  updatedAt?: string | undefined;
8313
- agaId?: string | undefined;
8314
8314
  preferredEmail?: string | undefined;
8315
8315
  phoneNumber?: string | undefined;
8316
8316
  birthDate?: string | undefined;
@@ -8344,14 +8344,14 @@ declare const zBTeacher: z.ZodObject<{
8344
8344
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8345
8345
  shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
8346
8346
  profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
8347
- firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8348
- lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8349
- address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8347
+ firstName: z.ZodString;
8348
+ lastName: z.ZodString;
8350
8349
  rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
8351
- agaId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8352
- participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
8350
+ agaId: z.ZodString;
8351
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8352
+ participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
8353
8353
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
8354
- preferredEmail: z.ZodOptional<z.ZodString>;
8354
+ preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8355
8355
  phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8356
8356
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8357
8357
  } & {
@@ -8360,32 +8360,32 @@ declare const zBTeacher: z.ZodObject<{
8360
8360
  createdAt: z.ZodOptional<z.ZodString>;
8361
8361
  updatedAt: z.ZodOptional<z.ZodString>;
8362
8362
  }, z.UnknownKeysParam, z.ZodTypeAny, {
8363
+ firstName: string;
8364
+ lastName: string;
8363
8365
  _id: string;
8364
- firstName?: string | undefined;
8365
- lastName?: string | undefined;
8366
+ agaId: string;
8366
8367
  rank?: GoRank | undefined;
8367
8368
  address?: string | undefined;
8368
8369
  showOnWhoIsComing?: boolean | undefined;
8369
- participateAs?: "adult" | "youth" | undefined;
8370
+ participateAs?: "" | "adult" | "youth" | undefined;
8370
8371
  editedBy?: string | undefined;
8371
8372
  createdAt?: string | undefined;
8372
8373
  updatedAt?: string | undefined;
8373
- agaId?: string | undefined;
8374
8374
  preferredEmail?: string | undefined;
8375
8375
  phoneNumber?: string | undefined;
8376
8376
  birthDate?: string | undefined;
8377
8377
  }, {
8378
+ firstName: string;
8379
+ lastName: string;
8378
8380
  _id: string;
8379
- firstName?: string | undefined;
8380
- lastName?: string | undefined;
8381
+ agaId: string;
8381
8382
  rank?: GoRank | undefined;
8382
8383
  address?: string | undefined;
8383
8384
  showOnWhoIsComing?: boolean | undefined;
8384
- participateAs?: "adult" | "youth" | undefined;
8385
+ participateAs?: "" | "adult" | "youth" | undefined;
8385
8386
  editedBy?: string | undefined;
8386
8387
  createdAt?: string | undefined;
8387
8388
  updatedAt?: string | undefined;
8388
- agaId?: string | undefined;
8389
8389
  preferredEmail?: string | undefined;
8390
8390
  phoneNumber?: string | undefined;
8391
8391
  birthDate?: string | undefined;
@@ -8443,17 +8443,17 @@ declare const zBTeacher: z.ZodObject<{
8443
8443
  country?: string | undefined;
8444
8444
  shouldChangePassword?: boolean | undefined;
8445
8445
  profiles?: {
8446
+ firstName: string;
8447
+ lastName: string;
8446
8448
  _id: string;
8447
- firstName?: string | undefined;
8448
- lastName?: string | undefined;
8449
+ agaId: string;
8449
8450
  rank?: GoRank | undefined;
8450
8451
  address?: string | undefined;
8451
8452
  showOnWhoIsComing?: boolean | undefined;
8452
- participateAs?: "adult" | "youth" | undefined;
8453
+ participateAs?: "" | "adult" | "youth" | undefined;
8453
8454
  editedBy?: string | undefined;
8454
8455
  createdAt?: string | undefined;
8455
8456
  updatedAt?: string | undefined;
8456
- agaId?: string | undefined;
8457
8457
  preferredEmail?: string | undefined;
8458
8458
  phoneNumber?: string | undefined;
8459
8459
  birthDate?: string | undefined;
@@ -8481,17 +8481,17 @@ declare const zBTeacher: z.ZodObject<{
8481
8481
  country?: string | undefined;
8482
8482
  shouldChangePassword?: boolean | undefined;
8483
8483
  profiles?: {
8484
+ firstName: string;
8485
+ lastName: string;
8484
8486
  _id: string;
8485
- firstName?: string | undefined;
8486
- lastName?: string | undefined;
8487
+ agaId: string;
8487
8488
  rank?: GoRank | undefined;
8488
8489
  address?: string | undefined;
8489
8490
  showOnWhoIsComing?: boolean | undefined;
8490
- participateAs?: "adult" | "youth" | undefined;
8491
+ participateAs?: "" | "adult" | "youth" | undefined;
8491
8492
  editedBy?: string | undefined;
8492
8493
  createdAt?: string | undefined;
8493
8494
  updatedAt?: string | undefined;
8494
- agaId?: string | undefined;
8495
8495
  preferredEmail?: string | undefined;
8496
8496
  phoneNumber?: string | undefined;
8497
8497
  birthDate?: string | undefined;
@@ -8527,14 +8527,14 @@ declare const zTeacher: z.ZodObject<{
8527
8527
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8528
8528
  shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
8529
8529
  profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
8530
- firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8531
- lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8532
- address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8530
+ firstName: z.ZodString;
8531
+ lastName: z.ZodString;
8533
8532
  rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
8534
- agaId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8535
- participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
8533
+ agaId: z.ZodString;
8534
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8535
+ participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
8536
8536
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
8537
- preferredEmail: z.ZodOptional<z.ZodString>;
8537
+ preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8538
8538
  phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8539
8539
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8540
8540
  } & {
@@ -8543,32 +8543,32 @@ declare const zTeacher: z.ZodObject<{
8543
8543
  createdAt: z.ZodOptional<z.ZodString>;
8544
8544
  updatedAt: z.ZodOptional<z.ZodString>;
8545
8545
  }, z.UnknownKeysParam, z.ZodTypeAny, {
8546
+ firstName: string;
8547
+ lastName: string;
8546
8548
  _id: string;
8547
- firstName?: string | undefined;
8548
- lastName?: string | undefined;
8549
+ agaId: string;
8549
8550
  rank?: GoRank | undefined;
8550
8551
  address?: string | undefined;
8551
8552
  showOnWhoIsComing?: boolean | undefined;
8552
- participateAs?: "adult" | "youth" | undefined;
8553
+ participateAs?: "" | "adult" | "youth" | undefined;
8553
8554
  editedBy?: string | undefined;
8554
8555
  createdAt?: string | undefined;
8555
8556
  updatedAt?: string | undefined;
8556
- agaId?: string | undefined;
8557
8557
  preferredEmail?: string | undefined;
8558
8558
  phoneNumber?: string | undefined;
8559
8559
  birthDate?: string | undefined;
8560
8560
  }, {
8561
+ firstName: string;
8562
+ lastName: string;
8561
8563
  _id: string;
8562
- firstName?: string | undefined;
8563
- lastName?: string | undefined;
8564
+ agaId: string;
8564
8565
  rank?: GoRank | undefined;
8565
8566
  address?: string | undefined;
8566
8567
  showOnWhoIsComing?: boolean | undefined;
8567
- participateAs?: "adult" | "youth" | undefined;
8568
+ participateAs?: "" | "adult" | "youth" | undefined;
8568
8569
  editedBy?: string | undefined;
8569
8570
  createdAt?: string | undefined;
8570
8571
  updatedAt?: string | undefined;
8571
- agaId?: string | undefined;
8572
8572
  preferredEmail?: string | undefined;
8573
8573
  phoneNumber?: string | undefined;
8574
8574
  birthDate?: string | undefined;
@@ -8635,17 +8635,17 @@ declare const zTeacher: z.ZodObject<{
8635
8635
  country?: string | undefined;
8636
8636
  shouldChangePassword?: boolean | undefined;
8637
8637
  profiles?: {
8638
+ firstName: string;
8639
+ lastName: string;
8638
8640
  _id: string;
8639
- firstName?: string | undefined;
8640
- lastName?: string | undefined;
8641
+ agaId: string;
8641
8642
  rank?: GoRank | undefined;
8642
8643
  address?: string | undefined;
8643
8644
  showOnWhoIsComing?: boolean | undefined;
8644
- participateAs?: "adult" | "youth" | undefined;
8645
+ participateAs?: "" | "adult" | "youth" | undefined;
8645
8646
  editedBy?: string | undefined;
8646
8647
  createdAt?: string | undefined;
8647
8648
  updatedAt?: string | undefined;
8648
- agaId?: string | undefined;
8649
8649
  preferredEmail?: string | undefined;
8650
8650
  phoneNumber?: string | undefined;
8651
8651
  birthDate?: string | undefined;
@@ -8677,17 +8677,17 @@ declare const zTeacher: z.ZodObject<{
8677
8677
  country?: string | undefined;
8678
8678
  shouldChangePassword?: boolean | undefined;
8679
8679
  profiles?: {
8680
+ firstName: string;
8681
+ lastName: string;
8680
8682
  _id: string;
8681
- firstName?: string | undefined;
8682
- lastName?: string | undefined;
8683
+ agaId: string;
8683
8684
  rank?: GoRank | undefined;
8684
8685
  address?: string | undefined;
8685
8686
  showOnWhoIsComing?: boolean | undefined;
8686
- participateAs?: "adult" | "youth" | undefined;
8687
+ participateAs?: "" | "adult" | "youth" | undefined;
8687
8688
  editedBy?: string | undefined;
8688
8689
  createdAt?: string | undefined;
8689
8690
  updatedAt?: string | undefined;
8690
- agaId?: string | undefined;
8691
8691
  preferredEmail?: string | undefined;
8692
8692
  phoneNumber?: string | undefined;
8693
8693
  birthDate?: string | undefined;
@@ -8723,14 +8723,14 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
8723
8723
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8724
8724
  shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
8725
8725
  profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
8726
- firstName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8727
- lastName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8728
- address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8726
+ firstName: z.ZodString;
8727
+ lastName: z.ZodString;
8729
8728
  rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
8730
- agaId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8731
- participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
8729
+ agaId: z.ZodString;
8730
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8731
+ participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
8732
8732
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
8733
- preferredEmail: z.ZodOptional<z.ZodString>;
8733
+ preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8734
8734
  phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8735
8735
  birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
8736
8736
  } & {
@@ -8739,32 +8739,32 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
8739
8739
  createdAt: z.ZodOptional<z.ZodString>;
8740
8740
  updatedAt: z.ZodOptional<z.ZodString>;
8741
8741
  }, z.UnknownKeysParam, z.ZodTypeAny, {
8742
+ firstName: string;
8743
+ lastName: string;
8742
8744
  _id: string;
8743
- firstName?: string | undefined;
8744
- lastName?: string | undefined;
8745
+ agaId: string;
8745
8746
  rank?: GoRank | undefined;
8746
8747
  address?: string | undefined;
8747
8748
  showOnWhoIsComing?: boolean | undefined;
8748
- participateAs?: "adult" | "youth" | undefined;
8749
+ participateAs?: "" | "adult" | "youth" | undefined;
8749
8750
  editedBy?: string | undefined;
8750
8751
  createdAt?: string | undefined;
8751
8752
  updatedAt?: string | undefined;
8752
- agaId?: string | undefined;
8753
8753
  preferredEmail?: string | undefined;
8754
8754
  phoneNumber?: string | undefined;
8755
8755
  birthDate?: string | undefined;
8756
8756
  }, {
8757
+ firstName: string;
8758
+ lastName: string;
8757
8759
  _id: string;
8758
- firstName?: string | undefined;
8759
- lastName?: string | undefined;
8760
+ agaId: string;
8760
8761
  rank?: GoRank | undefined;
8761
8762
  address?: string | undefined;
8762
8763
  showOnWhoIsComing?: boolean | undefined;
8763
- participateAs?: "adult" | "youth" | undefined;
8764
+ participateAs?: "" | "adult" | "youth" | undefined;
8764
8765
  editedBy?: string | undefined;
8765
8766
  createdAt?: string | undefined;
8766
8767
  updatedAt?: string | undefined;
8767
- agaId?: string | undefined;
8768
8768
  preferredEmail?: string | undefined;
8769
8769
  phoneNumber?: string | undefined;
8770
8770
  birthDate?: string | undefined;
@@ -8825,17 +8825,17 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
8825
8825
  country?: string | undefined;
8826
8826
  shouldChangePassword?: boolean | undefined;
8827
8827
  profiles?: {
8828
+ firstName: string;
8829
+ lastName: string;
8828
8830
  _id: string;
8829
- firstName?: string | undefined;
8830
- lastName?: string | undefined;
8831
+ agaId: string;
8831
8832
  rank?: GoRank | undefined;
8832
8833
  address?: string | undefined;
8833
8834
  showOnWhoIsComing?: boolean | undefined;
8834
- participateAs?: "adult" | "youth" | undefined;
8835
+ participateAs?: "" | "adult" | "youth" | undefined;
8835
8836
  editedBy?: string | undefined;
8836
8837
  createdAt?: string | undefined;
8837
8838
  updatedAt?: string | undefined;
8838
- agaId?: string | undefined;
8839
8839
  preferredEmail?: string | undefined;
8840
8840
  phoneNumber?: string | undefined;
8841
8841
  birthDate?: string | undefined;
@@ -8859,17 +8859,17 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
8859
8859
  country?: string | undefined;
8860
8860
  shouldChangePassword?: boolean | undefined;
8861
8861
  profiles?: {
8862
+ firstName: string;
8863
+ lastName: string;
8862
8864
  _id: string;
8863
- firstName?: string | undefined;
8864
- lastName?: string | undefined;
8865
+ agaId: string;
8865
8866
  rank?: GoRank | undefined;
8866
8867
  address?: string | undefined;
8867
8868
  showOnWhoIsComing?: boolean | undefined;
8868
- participateAs?: "adult" | "youth" | undefined;
8869
+ participateAs?: "" | "adult" | "youth" | undefined;
8869
8870
  editedBy?: string | undefined;
8870
8871
  createdAt?: string | undefined;
8871
8872
  updatedAt?: string | undefined;
8872
- agaId?: string | undefined;
8873
8873
  preferredEmail?: string | undefined;
8874
8874
  phoneNumber?: string | undefined;
8875
8875
  birthDate?: string | undefined;