@nyig/models 0.6.1 → 0.6.3
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 +623 -736
- package/index.d.ts +623 -736
- package/index.js +41 -57
- package/index.mjs +41 -55
- package/package.json +1 -1
package/index.d.ts
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.
|
|
297
|
-
lastName: z.
|
|
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.
|
|
301
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
854
|
-
lastName: z.
|
|
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.
|
|
858
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
1079
|
-
lastName: z.
|
|
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.
|
|
1083
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
1779
|
-
lastName: z.
|
|
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.
|
|
1783
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
1947
|
-
lastName: z.
|
|
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.
|
|
1951
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
2920
|
-
lastName: z.
|
|
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.
|
|
2924
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
3145
|
-
lastName: z.
|
|
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.
|
|
3149
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
4227
|
-
lastName: z.
|
|
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.
|
|
4231
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
4695
|
-
lastName: z.
|
|
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.
|
|
4699
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
4863
|
-
lastName: z.
|
|
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.
|
|
4867
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
5046
|
-
lastName: z.
|
|
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.
|
|
5050
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
5975
|
-
lastName: z.
|
|
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.
|
|
5979
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
6121
|
-
lastName: z.
|
|
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.
|
|
6125
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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;
|
|
@@ -6522,33 +6522,15 @@ declare const zBEventConfig: z.ZodObject<{
|
|
|
6522
6522
|
*/
|
|
6523
6523
|
description: z.ZodString;
|
|
6524
6524
|
/**
|
|
6525
|
-
*
|
|
6526
|
-
*
|
|
6525
|
+
* @deprecated
|
|
6526
|
+
* info in description field, kept for backwards compatibility
|
|
6527
6527
|
*/
|
|
6528
|
-
details: z.
|
|
6529
|
-
fields: z.ZodArray<z.ZodString, "many">;
|
|
6530
|
-
data: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodString>, "many">;
|
|
6531
|
-
}, "strip", z.ZodTypeAny, {
|
|
6532
|
-
fields: string[];
|
|
6533
|
-
data: Record<string, string>[];
|
|
6534
|
-
}, {
|
|
6535
|
-
fields: string[];
|
|
6536
|
-
data: Record<string, string>[];
|
|
6537
|
-
}>;
|
|
6528
|
+
details: z.ZodOptional<z.ZodAny>;
|
|
6538
6529
|
/**
|
|
6539
|
-
*
|
|
6540
|
-
*
|
|
6530
|
+
* @deprecated
|
|
6531
|
+
* info in description field, kept for backwards compatibility
|
|
6541
6532
|
*/
|
|
6542
|
-
schedule: z.
|
|
6543
|
-
fields: z.ZodArray<z.ZodString, "many">;
|
|
6544
|
-
data: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodRecord<z.ZodString, z.ZodString>, "many">>;
|
|
6545
|
-
}, "strip", z.ZodTypeAny, {
|
|
6546
|
-
fields: string[];
|
|
6547
|
-
data: Record<string, Record<string, string>[]>;
|
|
6548
|
-
}, {
|
|
6549
|
-
fields: string[];
|
|
6550
|
-
data: Record<string, Record<string, string>[]>;
|
|
6551
|
-
}>;
|
|
6533
|
+
schedule: z.ZodOptional<z.ZodAny>;
|
|
6552
6534
|
/**
|
|
6553
6535
|
* @optional description of the tickets step, shown in service
|
|
6554
6536
|
* when the customer is on step 1 of the booking page
|
|
@@ -6601,17 +6583,11 @@ declare const zBEventConfig: z.ZodObject<{
|
|
|
6601
6583
|
tStart: Date;
|
|
6602
6584
|
tEnd: Date;
|
|
6603
6585
|
shortDescription: string;
|
|
6604
|
-
details: {
|
|
6605
|
-
fields: string[];
|
|
6606
|
-
data: Record<string, string>[];
|
|
6607
|
-
};
|
|
6608
|
-
schedule: {
|
|
6609
|
-
fields: string[];
|
|
6610
|
-
data: Record<string, Record<string, string>[]>;
|
|
6611
|
-
};
|
|
6612
6586
|
tickets: string[];
|
|
6613
6587
|
canRegister: boolean;
|
|
6614
6588
|
location?: string | undefined;
|
|
6589
|
+
details?: any;
|
|
6590
|
+
schedule?: any;
|
|
6615
6591
|
ticketsStepDescription?: string | undefined;
|
|
6616
6592
|
participantStepDescription?: string | undefined;
|
|
6617
6593
|
youthOrAdult?: YouthOrAdult | undefined;
|
|
@@ -6629,17 +6605,11 @@ declare const zBEventConfig: z.ZodObject<{
|
|
|
6629
6605
|
tStart: Date;
|
|
6630
6606
|
tEnd: Date;
|
|
6631
6607
|
shortDescription: string;
|
|
6632
|
-
details: {
|
|
6633
|
-
fields: string[];
|
|
6634
|
-
data: Record<string, string>[];
|
|
6635
|
-
};
|
|
6636
|
-
schedule: {
|
|
6637
|
-
fields: string[];
|
|
6638
|
-
data: Record<string, Record<string, string>[]>;
|
|
6639
|
-
};
|
|
6640
6608
|
tickets: string[];
|
|
6641
6609
|
canRegister: boolean;
|
|
6642
6610
|
location?: string | undefined;
|
|
6611
|
+
details?: any;
|
|
6612
|
+
schedule?: any;
|
|
6643
6613
|
ticketsStepDescription?: string | undefined;
|
|
6644
6614
|
participantStepDescription?: string | undefined;
|
|
6645
6615
|
youthOrAdult?: YouthOrAdult | undefined;
|
|
@@ -6685,33 +6655,15 @@ declare const zEventConfig: z.ZodObject<{
|
|
|
6685
6655
|
*/
|
|
6686
6656
|
description: z.ZodString;
|
|
6687
6657
|
/**
|
|
6688
|
-
*
|
|
6689
|
-
*
|
|
6658
|
+
* @deprecated
|
|
6659
|
+
* info in description field, kept for backwards compatibility
|
|
6690
6660
|
*/
|
|
6691
|
-
details: z.
|
|
6692
|
-
fields: z.ZodArray<z.ZodString, "many">;
|
|
6693
|
-
data: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodString>, "many">;
|
|
6694
|
-
}, "strip", z.ZodTypeAny, {
|
|
6695
|
-
fields: string[];
|
|
6696
|
-
data: Record<string, string>[];
|
|
6697
|
-
}, {
|
|
6698
|
-
fields: string[];
|
|
6699
|
-
data: Record<string, string>[];
|
|
6700
|
-
}>;
|
|
6661
|
+
details: z.ZodOptional<z.ZodAny>;
|
|
6701
6662
|
/**
|
|
6702
|
-
*
|
|
6703
|
-
*
|
|
6663
|
+
* @deprecated
|
|
6664
|
+
* info in description field, kept for backwards compatibility
|
|
6704
6665
|
*/
|
|
6705
|
-
schedule: z.
|
|
6706
|
-
fields: z.ZodArray<z.ZodString, "many">;
|
|
6707
|
-
data: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodRecord<z.ZodString, z.ZodString>, "many">>;
|
|
6708
|
-
}, "strip", z.ZodTypeAny, {
|
|
6709
|
-
fields: string[];
|
|
6710
|
-
data: Record<string, Record<string, string>[]>;
|
|
6711
|
-
}, {
|
|
6712
|
-
fields: string[];
|
|
6713
|
-
data: Record<string, Record<string, string>[]>;
|
|
6714
|
-
}>;
|
|
6666
|
+
schedule: z.ZodOptional<z.ZodAny>;
|
|
6715
6667
|
/**
|
|
6716
6668
|
* @optional description of the tickets step, shown in service
|
|
6717
6669
|
* when the customer is on step 1 of the booking page
|
|
@@ -6770,20 +6722,14 @@ declare const zEventConfig: z.ZodObject<{
|
|
|
6770
6722
|
tStart: Date;
|
|
6771
6723
|
tEnd: Date;
|
|
6772
6724
|
shortDescription: string;
|
|
6773
|
-
details: {
|
|
6774
|
-
fields: string[];
|
|
6775
|
-
data: Record<string, string>[];
|
|
6776
|
-
};
|
|
6777
|
-
schedule: {
|
|
6778
|
-
fields: string[];
|
|
6779
|
-
data: Record<string, Record<string, string>[]>;
|
|
6780
|
-
};
|
|
6781
6725
|
tickets: string[];
|
|
6782
6726
|
canRegister: boolean;
|
|
6783
6727
|
editedBy?: string | undefined;
|
|
6784
6728
|
createdAt?: string | undefined;
|
|
6785
6729
|
updatedAt?: string | undefined;
|
|
6786
6730
|
location?: string | undefined;
|
|
6731
|
+
details?: any;
|
|
6732
|
+
schedule?: any;
|
|
6787
6733
|
ticketsStepDescription?: string | undefined;
|
|
6788
6734
|
participantStepDescription?: string | undefined;
|
|
6789
6735
|
youthOrAdult?: YouthOrAdult | undefined;
|
|
@@ -6802,20 +6748,14 @@ declare const zEventConfig: z.ZodObject<{
|
|
|
6802
6748
|
tStart: Date;
|
|
6803
6749
|
tEnd: Date;
|
|
6804
6750
|
shortDescription: string;
|
|
6805
|
-
details: {
|
|
6806
|
-
fields: string[];
|
|
6807
|
-
data: Record<string, string>[];
|
|
6808
|
-
};
|
|
6809
|
-
schedule: {
|
|
6810
|
-
fields: string[];
|
|
6811
|
-
data: Record<string, Record<string, string>[]>;
|
|
6812
|
-
};
|
|
6813
6751
|
tickets: string[];
|
|
6814
6752
|
canRegister: boolean;
|
|
6815
6753
|
editedBy?: string | undefined;
|
|
6816
6754
|
createdAt?: string | undefined;
|
|
6817
6755
|
updatedAt?: string | undefined;
|
|
6818
6756
|
location?: string | undefined;
|
|
6757
|
+
details?: any;
|
|
6758
|
+
schedule?: any;
|
|
6819
6759
|
ticketsStepDescription?: string | undefined;
|
|
6820
6760
|
participantStepDescription?: string | undefined;
|
|
6821
6761
|
youthOrAdult?: YouthOrAdult | undefined;
|
|
@@ -6835,26 +6775,8 @@ declare const zEventConfigResponse: z.ZodObject<{
|
|
|
6835
6775
|
tEnd: z.ZodDate;
|
|
6836
6776
|
shortDescription: z.ZodString;
|
|
6837
6777
|
description: z.ZodString;
|
|
6838
|
-
details: z.
|
|
6839
|
-
|
|
6840
|
-
data: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodString>, "many">;
|
|
6841
|
-
}, "strip", z.ZodTypeAny, {
|
|
6842
|
-
fields: string[];
|
|
6843
|
-
data: Record<string, string>[];
|
|
6844
|
-
}, {
|
|
6845
|
-
fields: string[];
|
|
6846
|
-
data: Record<string, string>[];
|
|
6847
|
-
}>;
|
|
6848
|
-
schedule: z.ZodObject<{
|
|
6849
|
-
fields: z.ZodArray<z.ZodString, "many">;
|
|
6850
|
-
data: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodRecord<z.ZodString, z.ZodString>, "many">>;
|
|
6851
|
-
}, "strip", z.ZodTypeAny, {
|
|
6852
|
-
fields: string[];
|
|
6853
|
-
data: Record<string, Record<string, string>[]>;
|
|
6854
|
-
}, {
|
|
6855
|
-
fields: string[];
|
|
6856
|
-
data: Record<string, Record<string, string>[]>;
|
|
6857
|
-
}>;
|
|
6778
|
+
details: z.ZodOptional<z.ZodAny>;
|
|
6779
|
+
schedule: z.ZodOptional<z.ZodAny>;
|
|
6858
6780
|
ticketsStepDescription: z.ZodOptional<z.ZodString>;
|
|
6859
6781
|
participantStepDescription: z.ZodOptional<z.ZodString>;
|
|
6860
6782
|
canRegister: z.ZodBoolean;
|
|
@@ -6922,14 +6844,6 @@ declare const zEventConfigResponse: z.ZodObject<{
|
|
|
6922
6844
|
tStart: Date;
|
|
6923
6845
|
tEnd: Date;
|
|
6924
6846
|
shortDescription: string;
|
|
6925
|
-
details: {
|
|
6926
|
-
fields: string[];
|
|
6927
|
-
data: Record<string, string>[];
|
|
6928
|
-
};
|
|
6929
|
-
schedule: {
|
|
6930
|
-
fields: string[];
|
|
6931
|
-
data: Record<string, Record<string, string>[]>;
|
|
6932
|
-
};
|
|
6933
6847
|
tickets: {
|
|
6934
6848
|
_id: string;
|
|
6935
6849
|
name: string;
|
|
@@ -6947,6 +6861,8 @@ declare const zEventConfigResponse: z.ZodObject<{
|
|
|
6947
6861
|
createdAt?: string | undefined;
|
|
6948
6862
|
updatedAt?: string | undefined;
|
|
6949
6863
|
location?: string | undefined;
|
|
6864
|
+
details?: any;
|
|
6865
|
+
schedule?: any;
|
|
6950
6866
|
ticketsStepDescription?: string | undefined;
|
|
6951
6867
|
participantStepDescription?: string | undefined;
|
|
6952
6868
|
youthOrAdult?: YouthOrAdult | undefined;
|
|
@@ -6965,14 +6881,6 @@ declare const zEventConfigResponse: z.ZodObject<{
|
|
|
6965
6881
|
tStart: Date;
|
|
6966
6882
|
tEnd: Date;
|
|
6967
6883
|
shortDescription: string;
|
|
6968
|
-
details: {
|
|
6969
|
-
fields: string[];
|
|
6970
|
-
data: Record<string, string>[];
|
|
6971
|
-
};
|
|
6972
|
-
schedule: {
|
|
6973
|
-
fields: string[];
|
|
6974
|
-
data: Record<string, Record<string, string>[]>;
|
|
6975
|
-
};
|
|
6976
6884
|
tickets: {
|
|
6977
6885
|
_id: string;
|
|
6978
6886
|
name: string;
|
|
@@ -6990,6 +6898,8 @@ declare const zEventConfigResponse: z.ZodObject<{
|
|
|
6990
6898
|
createdAt?: string | undefined;
|
|
6991
6899
|
updatedAt?: string | undefined;
|
|
6992
6900
|
location?: string | undefined;
|
|
6901
|
+
details?: any;
|
|
6902
|
+
schedule?: any;
|
|
6993
6903
|
ticketsStepDescription?: string | undefined;
|
|
6994
6904
|
participantStepDescription?: string | undefined;
|
|
6995
6905
|
youthOrAdult?: YouthOrAdult | undefined;
|
|
@@ -7016,29 +6926,6 @@ interface PublicEventConfigResponse extends EventConfigResponse {
|
|
|
7016
6926
|
};
|
|
7017
6927
|
}
|
|
7018
6928
|
|
|
7019
|
-
declare const zDetailsTable: z.ZodObject<{
|
|
7020
|
-
fields: z.ZodArray<z.ZodString, "many">;
|
|
7021
|
-
data: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodString>, "many">;
|
|
7022
|
-
}, "strip", z.ZodTypeAny, {
|
|
7023
|
-
fields: string[];
|
|
7024
|
-
data: Record<string, string>[];
|
|
7025
|
-
}, {
|
|
7026
|
-
fields: string[];
|
|
7027
|
-
data: Record<string, string>[];
|
|
7028
|
-
}>;
|
|
7029
|
-
declare const zScheduleTable: z.ZodObject<{
|
|
7030
|
-
fields: z.ZodArray<z.ZodString, "many">;
|
|
7031
|
-
data: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodRecord<z.ZodString, z.ZodString>, "many">>;
|
|
7032
|
-
}, "strip", z.ZodTypeAny, {
|
|
7033
|
-
fields: string[];
|
|
7034
|
-
data: Record<string, Record<string, string>[]>;
|
|
7035
|
-
}, {
|
|
7036
|
-
fields: string[];
|
|
7037
|
-
data: Record<string, Record<string, string>[]>;
|
|
7038
|
-
}>;
|
|
7039
|
-
type DetailsTable = z.infer<typeof zDetailsTable>;
|
|
7040
|
-
type ScheduleTable = z.infer<typeof zScheduleTable>;
|
|
7041
|
-
|
|
7042
6929
|
declare const zBEventReg: z.ZodObject<{
|
|
7043
6930
|
agaId: z.ZodString;
|
|
7044
6931
|
tournamentId: z.ZodString;
|
|
@@ -7657,14 +7544,14 @@ declare const zBUser: z.ZodObject<{
|
|
|
7657
7544
|
* UserProfile Object storing user preferences
|
|
7658
7545
|
*/
|
|
7659
7546
|
profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7660
|
-
firstName: z.
|
|
7661
|
-
lastName: z.
|
|
7662
|
-
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
7547
|
+
firstName: z.ZodString;
|
|
7548
|
+
lastName: z.ZodString;
|
|
7663
7549
|
rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
|
|
7664
|
-
agaId: z.
|
|
7665
|
-
|
|
7550
|
+
agaId: z.ZodString;
|
|
7551
|
+
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
7552
|
+
participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
|
|
7666
7553
|
showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
|
|
7667
|
-
preferredEmail: z.ZodOptional<z.ZodString
|
|
7554
|
+
preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
7668
7555
|
phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
7669
7556
|
birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
7670
7557
|
} & {
|
|
@@ -7673,32 +7560,32 @@ declare const zBUser: z.ZodObject<{
|
|
|
7673
7560
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7674
7561
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7675
7562
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
7563
|
+
firstName: string;
|
|
7564
|
+
lastName: string;
|
|
7676
7565
|
_id: string;
|
|
7677
|
-
|
|
7678
|
-
lastName?: string | undefined;
|
|
7566
|
+
agaId: string;
|
|
7679
7567
|
rank?: GoRank | undefined;
|
|
7680
7568
|
address?: string | undefined;
|
|
7681
7569
|
showOnWhoIsComing?: boolean | undefined;
|
|
7682
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
7570
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
7683
7571
|
editedBy?: string | undefined;
|
|
7684
7572
|
createdAt?: string | undefined;
|
|
7685
7573
|
updatedAt?: string | undefined;
|
|
7686
|
-
agaId?: string | undefined;
|
|
7687
7574
|
preferredEmail?: string | undefined;
|
|
7688
7575
|
phoneNumber?: string | undefined;
|
|
7689
7576
|
birthDate?: string | undefined;
|
|
7690
7577
|
}, {
|
|
7578
|
+
firstName: string;
|
|
7579
|
+
lastName: string;
|
|
7691
7580
|
_id: string;
|
|
7692
|
-
|
|
7693
|
-
lastName?: string | undefined;
|
|
7581
|
+
agaId: string;
|
|
7694
7582
|
rank?: GoRank | undefined;
|
|
7695
7583
|
address?: string | undefined;
|
|
7696
7584
|
showOnWhoIsComing?: boolean | undefined;
|
|
7697
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
7585
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
7698
7586
|
editedBy?: string | undefined;
|
|
7699
7587
|
createdAt?: string | undefined;
|
|
7700
7588
|
updatedAt?: string | undefined;
|
|
7701
|
-
agaId?: string | undefined;
|
|
7702
7589
|
preferredEmail?: string | undefined;
|
|
7703
7590
|
phoneNumber?: string | undefined;
|
|
7704
7591
|
birthDate?: string | undefined;
|
|
@@ -7719,17 +7606,17 @@ declare const zBUser: z.ZodObject<{
|
|
|
7719
7606
|
country?: string | undefined;
|
|
7720
7607
|
shouldChangePassword?: boolean | undefined;
|
|
7721
7608
|
profiles?: {
|
|
7609
|
+
firstName: string;
|
|
7610
|
+
lastName: string;
|
|
7722
7611
|
_id: string;
|
|
7723
|
-
|
|
7724
|
-
lastName?: string | undefined;
|
|
7612
|
+
agaId: string;
|
|
7725
7613
|
rank?: GoRank | undefined;
|
|
7726
7614
|
address?: string | undefined;
|
|
7727
7615
|
showOnWhoIsComing?: boolean | undefined;
|
|
7728
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
7616
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
7729
7617
|
editedBy?: string | undefined;
|
|
7730
7618
|
createdAt?: string | undefined;
|
|
7731
7619
|
updatedAt?: string | undefined;
|
|
7732
|
-
agaId?: string | undefined;
|
|
7733
7620
|
preferredEmail?: string | undefined;
|
|
7734
7621
|
phoneNumber?: string | undefined;
|
|
7735
7622
|
birthDate?: string | undefined;
|
|
@@ -7750,17 +7637,17 @@ declare const zBUser: z.ZodObject<{
|
|
|
7750
7637
|
country?: string | undefined;
|
|
7751
7638
|
shouldChangePassword?: boolean | undefined;
|
|
7752
7639
|
profiles?: {
|
|
7640
|
+
firstName: string;
|
|
7641
|
+
lastName: string;
|
|
7753
7642
|
_id: string;
|
|
7754
|
-
|
|
7755
|
-
lastName?: string | undefined;
|
|
7643
|
+
agaId: string;
|
|
7756
7644
|
rank?: GoRank | undefined;
|
|
7757
7645
|
address?: string | undefined;
|
|
7758
7646
|
showOnWhoIsComing?: boolean | undefined;
|
|
7759
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
7647
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
7760
7648
|
editedBy?: string | undefined;
|
|
7761
7649
|
createdAt?: string | undefined;
|
|
7762
7650
|
updatedAt?: string | undefined;
|
|
7763
|
-
agaId?: string | undefined;
|
|
7764
7651
|
preferredEmail?: string | undefined;
|
|
7765
7652
|
phoneNumber?: string | undefined;
|
|
7766
7653
|
birthDate?: string | undefined;
|
|
@@ -7796,14 +7683,14 @@ declare const zUser: z.ZodObject<{
|
|
|
7796
7683
|
* UserProfile Object storing user preferences
|
|
7797
7684
|
*/
|
|
7798
7685
|
profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7799
|
-
firstName: z.
|
|
7800
|
-
lastName: z.
|
|
7801
|
-
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
7686
|
+
firstName: z.ZodString;
|
|
7687
|
+
lastName: z.ZodString;
|
|
7802
7688
|
rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
|
|
7803
|
-
agaId: z.
|
|
7804
|
-
|
|
7689
|
+
agaId: z.ZodString;
|
|
7690
|
+
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
7691
|
+
participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
|
|
7805
7692
|
showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
|
|
7806
|
-
preferredEmail: z.ZodOptional<z.ZodString
|
|
7693
|
+
preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
7807
7694
|
phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
7808
7695
|
birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
7809
7696
|
} & {
|
|
@@ -7812,32 +7699,32 @@ declare const zUser: z.ZodObject<{
|
|
|
7812
7699
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7813
7700
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7814
7701
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
7702
|
+
firstName: string;
|
|
7703
|
+
lastName: string;
|
|
7815
7704
|
_id: string;
|
|
7816
|
-
|
|
7817
|
-
lastName?: string | undefined;
|
|
7705
|
+
agaId: string;
|
|
7818
7706
|
rank?: GoRank | undefined;
|
|
7819
7707
|
address?: string | undefined;
|
|
7820
7708
|
showOnWhoIsComing?: boolean | undefined;
|
|
7821
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
7709
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
7822
7710
|
editedBy?: string | undefined;
|
|
7823
7711
|
createdAt?: string | undefined;
|
|
7824
7712
|
updatedAt?: string | undefined;
|
|
7825
|
-
agaId?: string | undefined;
|
|
7826
7713
|
preferredEmail?: string | undefined;
|
|
7827
7714
|
phoneNumber?: string | undefined;
|
|
7828
7715
|
birthDate?: string | undefined;
|
|
7829
7716
|
}, {
|
|
7717
|
+
firstName: string;
|
|
7718
|
+
lastName: string;
|
|
7830
7719
|
_id: string;
|
|
7831
|
-
|
|
7832
|
-
lastName?: string | undefined;
|
|
7720
|
+
agaId: string;
|
|
7833
7721
|
rank?: GoRank | undefined;
|
|
7834
7722
|
address?: string | undefined;
|
|
7835
7723
|
showOnWhoIsComing?: boolean | undefined;
|
|
7836
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
7724
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
7837
7725
|
editedBy?: string | undefined;
|
|
7838
7726
|
createdAt?: string | undefined;
|
|
7839
7727
|
updatedAt?: string | undefined;
|
|
7840
|
-
agaId?: string | undefined;
|
|
7841
7728
|
preferredEmail?: string | undefined;
|
|
7842
7729
|
phoneNumber?: string | undefined;
|
|
7843
7730
|
birthDate?: string | undefined;
|
|
@@ -7867,17 +7754,17 @@ declare const zUser: z.ZodObject<{
|
|
|
7867
7754
|
country?: string | undefined;
|
|
7868
7755
|
shouldChangePassword?: boolean | undefined;
|
|
7869
7756
|
profiles?: {
|
|
7757
|
+
firstName: string;
|
|
7758
|
+
lastName: string;
|
|
7870
7759
|
_id: string;
|
|
7871
|
-
|
|
7872
|
-
lastName?: string | undefined;
|
|
7760
|
+
agaId: string;
|
|
7873
7761
|
rank?: GoRank | undefined;
|
|
7874
7762
|
address?: string | undefined;
|
|
7875
7763
|
showOnWhoIsComing?: boolean | undefined;
|
|
7876
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
7764
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
7877
7765
|
editedBy?: string | undefined;
|
|
7878
7766
|
createdAt?: string | undefined;
|
|
7879
7767
|
updatedAt?: string | undefined;
|
|
7880
|
-
agaId?: string | undefined;
|
|
7881
7768
|
preferredEmail?: string | undefined;
|
|
7882
7769
|
phoneNumber?: string | undefined;
|
|
7883
7770
|
birthDate?: string | undefined;
|
|
@@ -7902,17 +7789,17 @@ declare const zUser: z.ZodObject<{
|
|
|
7902
7789
|
country?: string | undefined;
|
|
7903
7790
|
shouldChangePassword?: boolean | undefined;
|
|
7904
7791
|
profiles?: {
|
|
7792
|
+
firstName: string;
|
|
7793
|
+
lastName: string;
|
|
7905
7794
|
_id: string;
|
|
7906
|
-
|
|
7907
|
-
lastName?: string | undefined;
|
|
7795
|
+
agaId: string;
|
|
7908
7796
|
rank?: GoRank | undefined;
|
|
7909
7797
|
address?: string | undefined;
|
|
7910
7798
|
showOnWhoIsComing?: boolean | undefined;
|
|
7911
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
7799
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
7912
7800
|
editedBy?: string | undefined;
|
|
7913
7801
|
createdAt?: string | undefined;
|
|
7914
7802
|
updatedAt?: string | undefined;
|
|
7915
|
-
agaId?: string | undefined;
|
|
7916
7803
|
preferredEmail?: string | undefined;
|
|
7917
7804
|
phoneNumber?: string | undefined;
|
|
7918
7805
|
birthDate?: string | undefined;
|
|
@@ -7922,48 +7809,48 @@ type BUser = z.infer<typeof zBUser>;
|
|
|
7922
7809
|
type User = z.infer<typeof zUser>;
|
|
7923
7810
|
|
|
7924
7811
|
declare const zBUserProfile: z.ZodObject<{
|
|
7925
|
-
firstName: z.
|
|
7926
|
-
lastName: z.
|
|
7927
|
-
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
7812
|
+
firstName: z.ZodString;
|
|
7813
|
+
lastName: z.ZodString;
|
|
7928
7814
|
rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
|
|
7929
|
-
agaId: z.
|
|
7930
|
-
|
|
7815
|
+
agaId: z.ZodString;
|
|
7816
|
+
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
7817
|
+
participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
|
|
7931
7818
|
showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
|
|
7932
|
-
preferredEmail: z.ZodOptional<z.ZodString
|
|
7819
|
+
preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
7933
7820
|
phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
7934
7821
|
birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
7935
7822
|
}, "strip", z.ZodTypeAny, {
|
|
7936
|
-
firstName
|
|
7937
|
-
lastName
|
|
7823
|
+
firstName: string;
|
|
7824
|
+
lastName: string;
|
|
7825
|
+
agaId: string;
|
|
7938
7826
|
rank?: GoRank | undefined;
|
|
7939
7827
|
address?: string | undefined;
|
|
7940
7828
|
showOnWhoIsComing?: boolean | undefined;
|
|
7941
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
7942
|
-
agaId?: string | undefined;
|
|
7829
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
7943
7830
|
preferredEmail?: string | undefined;
|
|
7944
7831
|
phoneNumber?: string | undefined;
|
|
7945
7832
|
birthDate?: string | undefined;
|
|
7946
7833
|
}, {
|
|
7947
|
-
firstName
|
|
7948
|
-
lastName
|
|
7834
|
+
firstName: string;
|
|
7835
|
+
lastName: string;
|
|
7836
|
+
agaId: string;
|
|
7949
7837
|
rank?: GoRank | undefined;
|
|
7950
7838
|
address?: string | undefined;
|
|
7951
7839
|
showOnWhoIsComing?: boolean | undefined;
|
|
7952
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
7953
|
-
agaId?: string | undefined;
|
|
7840
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
7954
7841
|
preferredEmail?: string | undefined;
|
|
7955
7842
|
phoneNumber?: string | undefined;
|
|
7956
7843
|
birthDate?: string | undefined;
|
|
7957
7844
|
}>;
|
|
7958
7845
|
declare const zUserProfile: z.ZodObject<{
|
|
7959
|
-
firstName: z.
|
|
7960
|
-
lastName: z.
|
|
7961
|
-
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
7846
|
+
firstName: z.ZodString;
|
|
7847
|
+
lastName: z.ZodString;
|
|
7962
7848
|
rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
|
|
7963
|
-
agaId: z.
|
|
7964
|
-
|
|
7849
|
+
agaId: z.ZodString;
|
|
7850
|
+
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
7851
|
+
participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
|
|
7965
7852
|
showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
|
|
7966
|
-
preferredEmail: z.ZodOptional<z.ZodString
|
|
7853
|
+
preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
7967
7854
|
phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
7968
7855
|
birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
7969
7856
|
} & {
|
|
@@ -7972,32 +7859,32 @@ declare const zUserProfile: z.ZodObject<{
|
|
|
7972
7859
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
7973
7860
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
7974
7861
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
7862
|
+
firstName: string;
|
|
7863
|
+
lastName: string;
|
|
7975
7864
|
_id: string;
|
|
7976
|
-
|
|
7977
|
-
lastName?: string | undefined;
|
|
7865
|
+
agaId: string;
|
|
7978
7866
|
rank?: GoRank | undefined;
|
|
7979
7867
|
address?: string | undefined;
|
|
7980
7868
|
showOnWhoIsComing?: boolean | undefined;
|
|
7981
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
7869
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
7982
7870
|
editedBy?: string | undefined;
|
|
7983
7871
|
createdAt?: string | undefined;
|
|
7984
7872
|
updatedAt?: string | undefined;
|
|
7985
|
-
agaId?: string | undefined;
|
|
7986
7873
|
preferredEmail?: string | undefined;
|
|
7987
7874
|
phoneNumber?: string | undefined;
|
|
7988
7875
|
birthDate?: string | undefined;
|
|
7989
7876
|
}, {
|
|
7877
|
+
firstName: string;
|
|
7878
|
+
lastName: string;
|
|
7990
7879
|
_id: string;
|
|
7991
|
-
|
|
7992
|
-
lastName?: string | undefined;
|
|
7880
|
+
agaId: string;
|
|
7993
7881
|
rank?: GoRank | undefined;
|
|
7994
7882
|
address?: string | undefined;
|
|
7995
7883
|
showOnWhoIsComing?: boolean | undefined;
|
|
7996
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
7884
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
7997
7885
|
editedBy?: string | undefined;
|
|
7998
7886
|
createdAt?: string | undefined;
|
|
7999
7887
|
updatedAt?: string | undefined;
|
|
8000
|
-
agaId?: string | undefined;
|
|
8001
7888
|
preferredEmail?: string | undefined;
|
|
8002
7889
|
phoneNumber?: string | undefined;
|
|
8003
7890
|
birthDate?: string | undefined;
|
|
@@ -8048,14 +7935,14 @@ declare const zBStudent: z.ZodObject<{
|
|
|
8048
7935
|
birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8049
7936
|
shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
|
|
8050
7937
|
profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8051
|
-
firstName: z.
|
|
8052
|
-
lastName: z.
|
|
8053
|
-
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
7938
|
+
firstName: z.ZodString;
|
|
7939
|
+
lastName: z.ZodString;
|
|
8054
7940
|
rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
|
|
8055
|
-
agaId: z.
|
|
8056
|
-
|
|
7941
|
+
agaId: z.ZodString;
|
|
7942
|
+
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
7943
|
+
participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
|
|
8057
7944
|
showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
|
|
8058
|
-
preferredEmail: z.ZodOptional<z.ZodString
|
|
7945
|
+
preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8059
7946
|
phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8060
7947
|
birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8061
7948
|
} & {
|
|
@@ -8064,32 +7951,32 @@ declare const zBStudent: z.ZodObject<{
|
|
|
8064
7951
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8065
7952
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8066
7953
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
7954
|
+
firstName: string;
|
|
7955
|
+
lastName: string;
|
|
8067
7956
|
_id: string;
|
|
8068
|
-
|
|
8069
|
-
lastName?: string | undefined;
|
|
7957
|
+
agaId: string;
|
|
8070
7958
|
rank?: GoRank | undefined;
|
|
8071
7959
|
address?: string | undefined;
|
|
8072
7960
|
showOnWhoIsComing?: boolean | undefined;
|
|
8073
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
7961
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
8074
7962
|
editedBy?: string | undefined;
|
|
8075
7963
|
createdAt?: string | undefined;
|
|
8076
7964
|
updatedAt?: string | undefined;
|
|
8077
|
-
agaId?: string | undefined;
|
|
8078
7965
|
preferredEmail?: string | undefined;
|
|
8079
7966
|
phoneNumber?: string | undefined;
|
|
8080
7967
|
birthDate?: string | undefined;
|
|
8081
7968
|
}, {
|
|
7969
|
+
firstName: string;
|
|
7970
|
+
lastName: string;
|
|
8082
7971
|
_id: string;
|
|
8083
|
-
|
|
8084
|
-
lastName?: string | undefined;
|
|
7972
|
+
agaId: string;
|
|
8085
7973
|
rank?: GoRank | undefined;
|
|
8086
7974
|
address?: string | undefined;
|
|
8087
7975
|
showOnWhoIsComing?: boolean | undefined;
|
|
8088
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
7976
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
8089
7977
|
editedBy?: string | undefined;
|
|
8090
7978
|
createdAt?: string | undefined;
|
|
8091
7979
|
updatedAt?: string | undefined;
|
|
8092
|
-
agaId?: string | undefined;
|
|
8093
7980
|
preferredEmail?: string | undefined;
|
|
8094
7981
|
phoneNumber?: string | undefined;
|
|
8095
7982
|
birthDate?: string | undefined;
|
|
@@ -8114,17 +8001,17 @@ declare const zBStudent: z.ZodObject<{
|
|
|
8114
8001
|
country?: string | undefined;
|
|
8115
8002
|
shouldChangePassword?: boolean | undefined;
|
|
8116
8003
|
profiles?: {
|
|
8004
|
+
firstName: string;
|
|
8005
|
+
lastName: string;
|
|
8117
8006
|
_id: string;
|
|
8118
|
-
|
|
8119
|
-
lastName?: string | undefined;
|
|
8007
|
+
agaId: string;
|
|
8120
8008
|
rank?: GoRank | undefined;
|
|
8121
8009
|
address?: string | undefined;
|
|
8122
8010
|
showOnWhoIsComing?: boolean | undefined;
|
|
8123
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
8011
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
8124
8012
|
editedBy?: string | undefined;
|
|
8125
8013
|
createdAt?: string | undefined;
|
|
8126
8014
|
updatedAt?: string | undefined;
|
|
8127
|
-
agaId?: string | undefined;
|
|
8128
8015
|
preferredEmail?: string | undefined;
|
|
8129
8016
|
phoneNumber?: string | undefined;
|
|
8130
8017
|
birthDate?: string | undefined;
|
|
@@ -8147,17 +8034,17 @@ declare const zBStudent: z.ZodObject<{
|
|
|
8147
8034
|
country?: string | undefined;
|
|
8148
8035
|
shouldChangePassword?: boolean | undefined;
|
|
8149
8036
|
profiles?: {
|
|
8037
|
+
firstName: string;
|
|
8038
|
+
lastName: string;
|
|
8150
8039
|
_id: string;
|
|
8151
|
-
|
|
8152
|
-
lastName?: string | undefined;
|
|
8040
|
+
agaId: string;
|
|
8153
8041
|
rank?: GoRank | undefined;
|
|
8154
8042
|
address?: string | undefined;
|
|
8155
8043
|
showOnWhoIsComing?: boolean | undefined;
|
|
8156
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
8044
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
8157
8045
|
editedBy?: string | undefined;
|
|
8158
8046
|
createdAt?: string | undefined;
|
|
8159
8047
|
updatedAt?: string | undefined;
|
|
8160
|
-
agaId?: string | undefined;
|
|
8161
8048
|
preferredEmail?: string | undefined;
|
|
8162
8049
|
phoneNumber?: string | undefined;
|
|
8163
8050
|
birthDate?: string | undefined;
|
|
@@ -8188,14 +8075,14 @@ declare const zStudent: z.ZodObject<{
|
|
|
8188
8075
|
birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8189
8076
|
shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
|
|
8190
8077
|
profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8191
|
-
firstName: z.
|
|
8192
|
-
lastName: z.
|
|
8193
|
-
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8078
|
+
firstName: z.ZodString;
|
|
8079
|
+
lastName: z.ZodString;
|
|
8194
8080
|
rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
|
|
8195
|
-
agaId: z.
|
|
8196
|
-
|
|
8081
|
+
agaId: z.ZodString;
|
|
8082
|
+
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8083
|
+
participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
|
|
8197
8084
|
showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
|
|
8198
|
-
preferredEmail: z.ZodOptional<z.ZodString
|
|
8085
|
+
preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8199
8086
|
phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8200
8087
|
birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8201
8088
|
} & {
|
|
@@ -8204,32 +8091,32 @@ declare const zStudent: z.ZodObject<{
|
|
|
8204
8091
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8205
8092
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8206
8093
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
8094
|
+
firstName: string;
|
|
8095
|
+
lastName: string;
|
|
8207
8096
|
_id: string;
|
|
8208
|
-
|
|
8209
|
-
lastName?: string | undefined;
|
|
8097
|
+
agaId: string;
|
|
8210
8098
|
rank?: GoRank | undefined;
|
|
8211
8099
|
address?: string | undefined;
|
|
8212
8100
|
showOnWhoIsComing?: boolean | undefined;
|
|
8213
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
8101
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
8214
8102
|
editedBy?: string | undefined;
|
|
8215
8103
|
createdAt?: string | undefined;
|
|
8216
8104
|
updatedAt?: string | undefined;
|
|
8217
|
-
agaId?: string | undefined;
|
|
8218
8105
|
preferredEmail?: string | undefined;
|
|
8219
8106
|
phoneNumber?: string | undefined;
|
|
8220
8107
|
birthDate?: string | undefined;
|
|
8221
8108
|
}, {
|
|
8109
|
+
firstName: string;
|
|
8110
|
+
lastName: string;
|
|
8222
8111
|
_id: string;
|
|
8223
|
-
|
|
8224
|
-
lastName?: string | undefined;
|
|
8112
|
+
agaId: string;
|
|
8225
8113
|
rank?: GoRank | undefined;
|
|
8226
8114
|
address?: string | undefined;
|
|
8227
8115
|
showOnWhoIsComing?: boolean | undefined;
|
|
8228
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
8116
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
8229
8117
|
editedBy?: string | undefined;
|
|
8230
8118
|
createdAt?: string | undefined;
|
|
8231
8119
|
updatedAt?: string | undefined;
|
|
8232
|
-
agaId?: string | undefined;
|
|
8233
8120
|
preferredEmail?: string | undefined;
|
|
8234
8121
|
phoneNumber?: string | undefined;
|
|
8235
8122
|
birthDate?: string | undefined;
|
|
@@ -8263,17 +8150,17 @@ declare const zStudent: z.ZodObject<{
|
|
|
8263
8150
|
country?: string | undefined;
|
|
8264
8151
|
shouldChangePassword?: boolean | undefined;
|
|
8265
8152
|
profiles?: {
|
|
8153
|
+
firstName: string;
|
|
8154
|
+
lastName: string;
|
|
8266
8155
|
_id: string;
|
|
8267
|
-
|
|
8268
|
-
lastName?: string | undefined;
|
|
8156
|
+
agaId: string;
|
|
8269
8157
|
rank?: GoRank | undefined;
|
|
8270
8158
|
address?: string | undefined;
|
|
8271
8159
|
showOnWhoIsComing?: boolean | undefined;
|
|
8272
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
8160
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
8273
8161
|
editedBy?: string | undefined;
|
|
8274
8162
|
createdAt?: string | undefined;
|
|
8275
8163
|
updatedAt?: string | undefined;
|
|
8276
|
-
agaId?: string | undefined;
|
|
8277
8164
|
preferredEmail?: string | undefined;
|
|
8278
8165
|
phoneNumber?: string | undefined;
|
|
8279
8166
|
birthDate?: string | undefined;
|
|
@@ -8300,17 +8187,17 @@ declare const zStudent: z.ZodObject<{
|
|
|
8300
8187
|
country?: string | undefined;
|
|
8301
8188
|
shouldChangePassword?: boolean | undefined;
|
|
8302
8189
|
profiles?: {
|
|
8190
|
+
firstName: string;
|
|
8191
|
+
lastName: string;
|
|
8303
8192
|
_id: string;
|
|
8304
|
-
|
|
8305
|
-
lastName?: string | undefined;
|
|
8193
|
+
agaId: string;
|
|
8306
8194
|
rank?: GoRank | undefined;
|
|
8307
8195
|
address?: string | undefined;
|
|
8308
8196
|
showOnWhoIsComing?: boolean | undefined;
|
|
8309
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
8197
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
8310
8198
|
editedBy?: string | undefined;
|
|
8311
8199
|
createdAt?: string | undefined;
|
|
8312
8200
|
updatedAt?: string | undefined;
|
|
8313
|
-
agaId?: string | undefined;
|
|
8314
8201
|
preferredEmail?: string | undefined;
|
|
8315
8202
|
phoneNumber?: string | undefined;
|
|
8316
8203
|
birthDate?: string | undefined;
|
|
@@ -8344,14 +8231,14 @@ declare const zBTeacher: z.ZodObject<{
|
|
|
8344
8231
|
birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8345
8232
|
shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
|
|
8346
8233
|
profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8347
|
-
firstName: z.
|
|
8348
|
-
lastName: z.
|
|
8349
|
-
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8234
|
+
firstName: z.ZodString;
|
|
8235
|
+
lastName: z.ZodString;
|
|
8350
8236
|
rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
|
|
8351
|
-
agaId: z.
|
|
8352
|
-
|
|
8237
|
+
agaId: z.ZodString;
|
|
8238
|
+
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8239
|
+
participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
|
|
8353
8240
|
showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
|
|
8354
|
-
preferredEmail: z.ZodOptional<z.ZodString
|
|
8241
|
+
preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8355
8242
|
phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8356
8243
|
birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8357
8244
|
} & {
|
|
@@ -8360,32 +8247,32 @@ declare const zBTeacher: z.ZodObject<{
|
|
|
8360
8247
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8361
8248
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8362
8249
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
8250
|
+
firstName: string;
|
|
8251
|
+
lastName: string;
|
|
8363
8252
|
_id: string;
|
|
8364
|
-
|
|
8365
|
-
lastName?: string | undefined;
|
|
8253
|
+
agaId: string;
|
|
8366
8254
|
rank?: GoRank | undefined;
|
|
8367
8255
|
address?: string | undefined;
|
|
8368
8256
|
showOnWhoIsComing?: boolean | undefined;
|
|
8369
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
8257
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
8370
8258
|
editedBy?: string | undefined;
|
|
8371
8259
|
createdAt?: string | undefined;
|
|
8372
8260
|
updatedAt?: string | undefined;
|
|
8373
|
-
agaId?: string | undefined;
|
|
8374
8261
|
preferredEmail?: string | undefined;
|
|
8375
8262
|
phoneNumber?: string | undefined;
|
|
8376
8263
|
birthDate?: string | undefined;
|
|
8377
8264
|
}, {
|
|
8265
|
+
firstName: string;
|
|
8266
|
+
lastName: string;
|
|
8378
8267
|
_id: string;
|
|
8379
|
-
|
|
8380
|
-
lastName?: string | undefined;
|
|
8268
|
+
agaId: string;
|
|
8381
8269
|
rank?: GoRank | undefined;
|
|
8382
8270
|
address?: string | undefined;
|
|
8383
8271
|
showOnWhoIsComing?: boolean | undefined;
|
|
8384
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
8272
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
8385
8273
|
editedBy?: string | undefined;
|
|
8386
8274
|
createdAt?: string | undefined;
|
|
8387
8275
|
updatedAt?: string | undefined;
|
|
8388
|
-
agaId?: string | undefined;
|
|
8389
8276
|
preferredEmail?: string | undefined;
|
|
8390
8277
|
phoneNumber?: string | undefined;
|
|
8391
8278
|
birthDate?: string | undefined;
|
|
@@ -8443,17 +8330,17 @@ declare const zBTeacher: z.ZodObject<{
|
|
|
8443
8330
|
country?: string | undefined;
|
|
8444
8331
|
shouldChangePassword?: boolean | undefined;
|
|
8445
8332
|
profiles?: {
|
|
8333
|
+
firstName: string;
|
|
8334
|
+
lastName: string;
|
|
8446
8335
|
_id: string;
|
|
8447
|
-
|
|
8448
|
-
lastName?: string | undefined;
|
|
8336
|
+
agaId: string;
|
|
8449
8337
|
rank?: GoRank | undefined;
|
|
8450
8338
|
address?: string | undefined;
|
|
8451
8339
|
showOnWhoIsComing?: boolean | undefined;
|
|
8452
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
8340
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
8453
8341
|
editedBy?: string | undefined;
|
|
8454
8342
|
createdAt?: string | undefined;
|
|
8455
8343
|
updatedAt?: string | undefined;
|
|
8456
|
-
agaId?: string | undefined;
|
|
8457
8344
|
preferredEmail?: string | undefined;
|
|
8458
8345
|
phoneNumber?: string | undefined;
|
|
8459
8346
|
birthDate?: string | undefined;
|
|
@@ -8481,17 +8368,17 @@ declare const zBTeacher: z.ZodObject<{
|
|
|
8481
8368
|
country?: string | undefined;
|
|
8482
8369
|
shouldChangePassword?: boolean | undefined;
|
|
8483
8370
|
profiles?: {
|
|
8371
|
+
firstName: string;
|
|
8372
|
+
lastName: string;
|
|
8484
8373
|
_id: string;
|
|
8485
|
-
|
|
8486
|
-
lastName?: string | undefined;
|
|
8374
|
+
agaId: string;
|
|
8487
8375
|
rank?: GoRank | undefined;
|
|
8488
8376
|
address?: string | undefined;
|
|
8489
8377
|
showOnWhoIsComing?: boolean | undefined;
|
|
8490
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
8378
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
8491
8379
|
editedBy?: string | undefined;
|
|
8492
8380
|
createdAt?: string | undefined;
|
|
8493
8381
|
updatedAt?: string | undefined;
|
|
8494
|
-
agaId?: string | undefined;
|
|
8495
8382
|
preferredEmail?: string | undefined;
|
|
8496
8383
|
phoneNumber?: string | undefined;
|
|
8497
8384
|
birthDate?: string | undefined;
|
|
@@ -8527,14 +8414,14 @@ declare const zTeacher: z.ZodObject<{
|
|
|
8527
8414
|
birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8528
8415
|
shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
|
|
8529
8416
|
profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8530
|
-
firstName: z.
|
|
8531
|
-
lastName: z.
|
|
8532
|
-
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8417
|
+
firstName: z.ZodString;
|
|
8418
|
+
lastName: z.ZodString;
|
|
8533
8419
|
rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
|
|
8534
|
-
agaId: z.
|
|
8535
|
-
|
|
8420
|
+
agaId: z.ZodString;
|
|
8421
|
+
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8422
|
+
participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
|
|
8536
8423
|
showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
|
|
8537
|
-
preferredEmail: z.ZodOptional<z.ZodString
|
|
8424
|
+
preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8538
8425
|
phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8539
8426
|
birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8540
8427
|
} & {
|
|
@@ -8543,32 +8430,32 @@ declare const zTeacher: z.ZodObject<{
|
|
|
8543
8430
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8544
8431
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8545
8432
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
8433
|
+
firstName: string;
|
|
8434
|
+
lastName: string;
|
|
8546
8435
|
_id: string;
|
|
8547
|
-
|
|
8548
|
-
lastName?: string | undefined;
|
|
8436
|
+
agaId: string;
|
|
8549
8437
|
rank?: GoRank | undefined;
|
|
8550
8438
|
address?: string | undefined;
|
|
8551
8439
|
showOnWhoIsComing?: boolean | undefined;
|
|
8552
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
8440
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
8553
8441
|
editedBy?: string | undefined;
|
|
8554
8442
|
createdAt?: string | undefined;
|
|
8555
8443
|
updatedAt?: string | undefined;
|
|
8556
|
-
agaId?: string | undefined;
|
|
8557
8444
|
preferredEmail?: string | undefined;
|
|
8558
8445
|
phoneNumber?: string | undefined;
|
|
8559
8446
|
birthDate?: string | undefined;
|
|
8560
8447
|
}, {
|
|
8448
|
+
firstName: string;
|
|
8449
|
+
lastName: string;
|
|
8561
8450
|
_id: string;
|
|
8562
|
-
|
|
8563
|
-
lastName?: string | undefined;
|
|
8451
|
+
agaId: string;
|
|
8564
8452
|
rank?: GoRank | undefined;
|
|
8565
8453
|
address?: string | undefined;
|
|
8566
8454
|
showOnWhoIsComing?: boolean | undefined;
|
|
8567
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
8455
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
8568
8456
|
editedBy?: string | undefined;
|
|
8569
8457
|
createdAt?: string | undefined;
|
|
8570
8458
|
updatedAt?: string | undefined;
|
|
8571
|
-
agaId?: string | undefined;
|
|
8572
8459
|
preferredEmail?: string | undefined;
|
|
8573
8460
|
phoneNumber?: string | undefined;
|
|
8574
8461
|
birthDate?: string | undefined;
|
|
@@ -8635,17 +8522,17 @@ declare const zTeacher: z.ZodObject<{
|
|
|
8635
8522
|
country?: string | undefined;
|
|
8636
8523
|
shouldChangePassword?: boolean | undefined;
|
|
8637
8524
|
profiles?: {
|
|
8525
|
+
firstName: string;
|
|
8526
|
+
lastName: string;
|
|
8638
8527
|
_id: string;
|
|
8639
|
-
|
|
8640
|
-
lastName?: string | undefined;
|
|
8528
|
+
agaId: string;
|
|
8641
8529
|
rank?: GoRank | undefined;
|
|
8642
8530
|
address?: string | undefined;
|
|
8643
8531
|
showOnWhoIsComing?: boolean | undefined;
|
|
8644
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
8532
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
8645
8533
|
editedBy?: string | undefined;
|
|
8646
8534
|
createdAt?: string | undefined;
|
|
8647
8535
|
updatedAt?: string | undefined;
|
|
8648
|
-
agaId?: string | undefined;
|
|
8649
8536
|
preferredEmail?: string | undefined;
|
|
8650
8537
|
phoneNumber?: string | undefined;
|
|
8651
8538
|
birthDate?: string | undefined;
|
|
@@ -8677,17 +8564,17 @@ declare const zTeacher: z.ZodObject<{
|
|
|
8677
8564
|
country?: string | undefined;
|
|
8678
8565
|
shouldChangePassword?: boolean | undefined;
|
|
8679
8566
|
profiles?: {
|
|
8567
|
+
firstName: string;
|
|
8568
|
+
lastName: string;
|
|
8680
8569
|
_id: string;
|
|
8681
|
-
|
|
8682
|
-
lastName?: string | undefined;
|
|
8570
|
+
agaId: string;
|
|
8683
8571
|
rank?: GoRank | undefined;
|
|
8684
8572
|
address?: string | undefined;
|
|
8685
8573
|
showOnWhoIsComing?: boolean | undefined;
|
|
8686
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
8574
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
8687
8575
|
editedBy?: string | undefined;
|
|
8688
8576
|
createdAt?: string | undefined;
|
|
8689
8577
|
updatedAt?: string | undefined;
|
|
8690
|
-
agaId?: string | undefined;
|
|
8691
8578
|
preferredEmail?: string | undefined;
|
|
8692
8579
|
phoneNumber?: string | undefined;
|
|
8693
8580
|
birthDate?: string | undefined;
|
|
@@ -8723,14 +8610,14 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
|
|
|
8723
8610
|
birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8724
8611
|
shouldChangePassword: z.ZodOptional<z.ZodBoolean>;
|
|
8725
8612
|
profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8726
|
-
firstName: z.
|
|
8727
|
-
lastName: z.
|
|
8728
|
-
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8613
|
+
firstName: z.ZodString;
|
|
8614
|
+
lastName: z.ZodString;
|
|
8729
8615
|
rank: z.ZodOptional<z.ZodNativeEnum<typeof GoRank>>;
|
|
8730
|
-
agaId: z.
|
|
8731
|
-
|
|
8616
|
+
agaId: z.ZodString;
|
|
8617
|
+
address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8618
|
+
participateAs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["adult", "youth"]>, z.ZodLiteral<"">]>>;
|
|
8732
8619
|
showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
|
|
8733
|
-
preferredEmail: z.ZodOptional<z.ZodString
|
|
8620
|
+
preferredEmail: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8734
8621
|
phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8735
8622
|
birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
|
|
8736
8623
|
} & {
|
|
@@ -8739,32 +8626,32 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
|
|
|
8739
8626
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
8740
8627
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
8741
8628
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
8629
|
+
firstName: string;
|
|
8630
|
+
lastName: string;
|
|
8742
8631
|
_id: string;
|
|
8743
|
-
|
|
8744
|
-
lastName?: string | undefined;
|
|
8632
|
+
agaId: string;
|
|
8745
8633
|
rank?: GoRank | undefined;
|
|
8746
8634
|
address?: string | undefined;
|
|
8747
8635
|
showOnWhoIsComing?: boolean | undefined;
|
|
8748
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
8636
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
8749
8637
|
editedBy?: string | undefined;
|
|
8750
8638
|
createdAt?: string | undefined;
|
|
8751
8639
|
updatedAt?: string | undefined;
|
|
8752
|
-
agaId?: string | undefined;
|
|
8753
8640
|
preferredEmail?: string | undefined;
|
|
8754
8641
|
phoneNumber?: string | undefined;
|
|
8755
8642
|
birthDate?: string | undefined;
|
|
8756
8643
|
}, {
|
|
8644
|
+
firstName: string;
|
|
8645
|
+
lastName: string;
|
|
8757
8646
|
_id: string;
|
|
8758
|
-
|
|
8759
|
-
lastName?: string | undefined;
|
|
8647
|
+
agaId: string;
|
|
8760
8648
|
rank?: GoRank | undefined;
|
|
8761
8649
|
address?: string | undefined;
|
|
8762
8650
|
showOnWhoIsComing?: boolean | undefined;
|
|
8763
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
8651
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
8764
8652
|
editedBy?: string | undefined;
|
|
8765
8653
|
createdAt?: string | undefined;
|
|
8766
8654
|
updatedAt?: string | undefined;
|
|
8767
|
-
agaId?: string | undefined;
|
|
8768
8655
|
preferredEmail?: string | undefined;
|
|
8769
8656
|
phoneNumber?: string | undefined;
|
|
8770
8657
|
birthDate?: string | undefined;
|
|
@@ -8825,17 +8712,17 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
|
|
|
8825
8712
|
country?: string | undefined;
|
|
8826
8713
|
shouldChangePassword?: boolean | undefined;
|
|
8827
8714
|
profiles?: {
|
|
8715
|
+
firstName: string;
|
|
8716
|
+
lastName: string;
|
|
8828
8717
|
_id: string;
|
|
8829
|
-
|
|
8830
|
-
lastName?: string | undefined;
|
|
8718
|
+
agaId: string;
|
|
8831
8719
|
rank?: GoRank | undefined;
|
|
8832
8720
|
address?: string | undefined;
|
|
8833
8721
|
showOnWhoIsComing?: boolean | undefined;
|
|
8834
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
8722
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
8835
8723
|
editedBy?: string | undefined;
|
|
8836
8724
|
createdAt?: string | undefined;
|
|
8837
8725
|
updatedAt?: string | undefined;
|
|
8838
|
-
agaId?: string | undefined;
|
|
8839
8726
|
preferredEmail?: string | undefined;
|
|
8840
8727
|
phoneNumber?: string | undefined;
|
|
8841
8728
|
birthDate?: string | undefined;
|
|
@@ -8859,17 +8746,17 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
|
|
|
8859
8746
|
country?: string | undefined;
|
|
8860
8747
|
shouldChangePassword?: boolean | undefined;
|
|
8861
8748
|
profiles?: {
|
|
8749
|
+
firstName: string;
|
|
8750
|
+
lastName: string;
|
|
8862
8751
|
_id: string;
|
|
8863
|
-
|
|
8864
|
-
lastName?: string | undefined;
|
|
8752
|
+
agaId: string;
|
|
8865
8753
|
rank?: GoRank | undefined;
|
|
8866
8754
|
address?: string | undefined;
|
|
8867
8755
|
showOnWhoIsComing?: boolean | undefined;
|
|
8868
|
-
participateAs?: "adult" | "youth" | undefined;
|
|
8756
|
+
participateAs?: "" | "adult" | "youth" | undefined;
|
|
8869
8757
|
editedBy?: string | undefined;
|
|
8870
8758
|
createdAt?: string | undefined;
|
|
8871
8759
|
updatedAt?: string | undefined;
|
|
8872
|
-
agaId?: string | undefined;
|
|
8873
8760
|
preferredEmail?: string | undefined;
|
|
8874
8761
|
phoneNumber?: string | undefined;
|
|
8875
8762
|
birthDate?: string | undefined;
|
|
@@ -8933,4 +8820,4 @@ type ChangePasswordRequest = z.infer<typeof zChangePasswordRequest>;
|
|
|
8933
8820
|
type LoginRequest = z.infer<typeof zLoginRequest>;
|
|
8934
8821
|
type LoginResponse = z.infer<typeof zLoginResponse>;
|
|
8935
8822
|
|
|
8936
|
-
export { AgeGroup, AttendState, type Attendance, type AttendanceRequest, type AttendanceResponse, type AuroraCourses, type BAttendance, type BCampBooking, type BCampTracker, type BClassTracker, type BCourse, type BEventConfig, type BEventReg, type BEventTicket, type BGroupBooking, type BGroupTracker, type BInvoice, type BPaymentInfo, type BPrivateBooking, type BReportTicket, type BSemester, type BStudent, type BTeacher, type BTeacherPayment, type BUser, type BUserInfo, BookingType, type CampBooking, CampOption, type CampTracker, type CampTrackerResponse, type ChangePasswordRequest, type ClassTimesInput, type ClassTracker, type ClassTrackerResponse, type Course, CourseCategory, type CourseTable, type CreateAdminAccountRequest, DayOfWeek, type
|
|
8823
|
+
export { AgeGroup, AttendState, type Attendance, type AttendanceRequest, type AttendanceResponse, type AuroraCourses, type BAttendance, type BCampBooking, type BCampTracker, type BClassTracker, type BCourse, type BEventConfig, type BEventReg, type BEventTicket, type BGroupBooking, type BGroupTracker, type BInvoice, type BPaymentInfo, type BPrivateBooking, type BReportTicket, type BSemester, type BStudent, type BTeacher, type BTeacherPayment, type BUser, type BUserInfo, BookingType, type CampBooking, CampOption, type CampTracker, type CampTrackerResponse, type ChangePasswordRequest, type ClassTimesInput, type ClassTracker, type ClassTrackerResponse, type Course, CourseCategory, type CourseTable, type CreateAdminAccountRequest, DayOfWeek, type Discount, type EventConfig, type EventConfigResponse, type EventReg, type EventRegResponse, type EventTicket, type EventTicketReg, type EventTicketRegResponse, FeesInCents, GoRank, type GroupBooking, type GroupTracker, type GroupTrackerResponse, HearAboutUs, type ImageDef, type Invoice, type InvoiceItem, type InvoicePackage, type InvoicePackageResponse, type InvoiceResponse, type LoginRequest, type LoginResponse, type NYIGMission, NYIGSchool, type PaymentIntent, PaymentMethod, type PrivateBooking, type PublicEventConfigResponse, type ReportTicket, type ReportTicketResponse, Role, type ScheduleData, Season, type Semester, type Student, type Teacher, type TeacherDisplay, type TeacherPayment, type TeacherPaymentResponse, type TeacherPaymentRow, type TeacherResponse, TicketStatus, type TrackerCreate, type Tuition, type User, type UserProfile, type UserRoles, YouthOrAdult, zAttendance, zAttendanceRequest, zAttendanceResponse, zBAttendance, zBCampBooking, zBCampTracker, zBClassTracker, zBCourse, zBEventConfig, zBEventReg, zBEventTicket, zBGroupBooking, zBGroupTracker, zBInvoice, zBPaymentInfo, zBPrivateBooking, zBReportTicket, zBSemester, zBStudent, zBTeacher, zBTeacherPayment, zBUser, zBUserInfo, zBUserProfile, zCampBooking, zCampTracker, zCampTrackerResponse, zChangePasswordRequest, zClassTracker, zClassTrackerResponse, zCourse, zCourseTable, zCreateAdminAccountRequest, zDayOfWeek, zDiscount, zEventConfig, zEventConfigResponse, zEventReg, zEventRegResponse, zEventTicket, zEventTicketReg, zEventTicketRegResponse, zGroupBooking, zGroupTracker, zGroupTrackerResponse, zImageDef, zInvoice, zInvoiceItem, zInvoicePackage, zInvoicePackageResponse, zInvoiceResponse, zLoginRequest, zLoginResponse, zPrivateBooking, zReportTicket, zReportTicketResponse, zScheduleData, zSemester, zStudent, zTeacher, zTeacherDisplay, zTeacherPayment, zTeacherPaymentResponse, zTeacherPaymentRow, zTrackerCreate, zTuition, zUser, zUserProfile, zUserRoles };
|