@nyig/models 0.6.5 → 0.6.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.mts CHANGED
@@ -48,6 +48,7 @@ declare const zBUserInfo: z.ZodObject<{
48
48
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
49
49
  participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
50
50
  dateOfBirth: z.ZodOptional<z.ZodString>;
51
+ profileId: z.ZodOptional<z.ZodString>;
51
52
  }, "strip", z.ZodTypeAny, {
52
53
  firstName: string;
53
54
  lastName: string;
@@ -62,6 +63,7 @@ declare const zBUserInfo: z.ZodObject<{
62
63
  showOnWhoIsComing?: boolean | undefined;
63
64
  participateAs?: "adult" | "youth" | undefined;
64
65
  dateOfBirth?: string | undefined;
66
+ profileId?: string | undefined;
65
67
  }, {
66
68
  firstName: string;
67
69
  lastName: string;
@@ -76,6 +78,7 @@ declare const zBUserInfo: z.ZodObject<{
76
78
  showOnWhoIsComing?: boolean | undefined;
77
79
  participateAs?: "adult" | "youth" | undefined;
78
80
  dateOfBirth?: string | undefined;
81
+ profileId?: string | undefined;
79
82
  }>;
80
83
  type BUserInfo = z.infer<typeof zBUserInfo>;
81
84
 
@@ -895,7 +898,7 @@ declare const zCampTrackerResponse: z.ZodObject<{
895
898
  bio: z.ZodOptional<z.ZodString>;
896
899
  imageUrl: z.ZodOptional<z.ZodString>;
897
900
  available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
898
- schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
901
+ schools: z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">;
899
902
  } & {
900
903
  _id: z.ZodString;
901
904
  editedBy: z.ZodOptional<z.ZodString>;
@@ -905,6 +908,7 @@ declare const zCampTrackerResponse: z.ZodObject<{
905
908
  rank: GoRank;
906
909
  _id: string;
907
910
  name: string;
911
+ schools: NYIGSchool[];
908
912
  email?: string | undefined;
909
913
  address?: string | undefined;
910
914
  editedBy?: string | undefined;
@@ -935,7 +939,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
935
939
  phoneNumber?: string | undefined;
936
940
  birthDate?: string | undefined;
937
941
  }[] | undefined;
938
- schools?: NYIGSchool[] | undefined;
939
942
  isInactive?: boolean | undefined;
940
943
  doesNotTeachPrivateLessons?: boolean | undefined;
941
944
  title?: string | undefined;
@@ -946,6 +949,7 @@ declare const zCampTrackerResponse: z.ZodObject<{
946
949
  rank: GoRank;
947
950
  _id: string;
948
951
  name: string;
952
+ schools: NYIGSchool[];
949
953
  email?: string | undefined;
950
954
  address?: string | undefined;
951
955
  editedBy?: string | undefined;
@@ -976,7 +980,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
976
980
  phoneNumber?: string | undefined;
977
981
  birthDate?: string | undefined;
978
982
  }[] | undefined;
979
- schools?: NYIGSchool[] | undefined;
980
983
  isInactive?: boolean | undefined;
981
984
  doesNotTeachPrivateLessons?: boolean | undefined;
982
985
  title?: string | undefined;
@@ -1310,6 +1313,7 @@ declare const zCampTrackerResponse: z.ZodObject<{
1310
1313
  rank: GoRank;
1311
1314
  _id: string;
1312
1315
  name: string;
1316
+ schools: NYIGSchool[];
1313
1317
  email?: string | undefined;
1314
1318
  address?: string | undefined;
1315
1319
  editedBy?: string | undefined;
@@ -1340,7 +1344,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
1340
1344
  phoneNumber?: string | undefined;
1341
1345
  birthDate?: string | undefined;
1342
1346
  }[] | undefined;
1343
- schools?: NYIGSchool[] | undefined;
1344
1347
  isInactive?: boolean | undefined;
1345
1348
  doesNotTeachPrivateLessons?: boolean | undefined;
1346
1349
  title?: string | undefined;
@@ -1440,6 +1443,7 @@ declare const zCampTrackerResponse: z.ZodObject<{
1440
1443
  rank: GoRank;
1441
1444
  _id: string;
1442
1445
  name: string;
1446
+ schools: NYIGSchool[];
1443
1447
  email?: string | undefined;
1444
1448
  address?: string | undefined;
1445
1449
  editedBy?: string | undefined;
@@ -1470,7 +1474,6 @@ declare const zCampTrackerResponse: z.ZodObject<{
1470
1474
  phoneNumber?: string | undefined;
1471
1475
  birthDate?: string | undefined;
1472
1476
  }[] | undefined;
1473
- schools?: NYIGSchool[] | undefined;
1474
1477
  isInactive?: boolean | undefined;
1475
1478
  doesNotTeachPrivateLessons?: boolean | undefined;
1476
1479
  title?: string | undefined;
@@ -1806,7 +1809,7 @@ declare const zClassTrackerResponse: z.ZodObject<{
1806
1809
  bio: z.ZodOptional<z.ZodString>;
1807
1810
  imageUrl: z.ZodOptional<z.ZodString>;
1808
1811
  available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
1809
- schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
1812
+ schools: z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">;
1810
1813
  } & {
1811
1814
  _id: z.ZodString;
1812
1815
  editedBy: z.ZodOptional<z.ZodString>;
@@ -1816,6 +1819,7 @@ declare const zClassTrackerResponse: z.ZodObject<{
1816
1819
  rank: GoRank;
1817
1820
  _id: string;
1818
1821
  name: string;
1822
+ schools: NYIGSchool[];
1819
1823
  email?: string | undefined;
1820
1824
  address?: string | undefined;
1821
1825
  editedBy?: string | undefined;
@@ -1846,7 +1850,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
1846
1850
  phoneNumber?: string | undefined;
1847
1851
  birthDate?: string | undefined;
1848
1852
  }[] | undefined;
1849
- schools?: NYIGSchool[] | undefined;
1850
1853
  isInactive?: boolean | undefined;
1851
1854
  doesNotTeachPrivateLessons?: boolean | undefined;
1852
1855
  title?: string | undefined;
@@ -1857,6 +1860,7 @@ declare const zClassTrackerResponse: z.ZodObject<{
1857
1860
  rank: GoRank;
1858
1861
  _id: string;
1859
1862
  name: string;
1863
+ schools: NYIGSchool[];
1860
1864
  email?: string | undefined;
1861
1865
  address?: string | undefined;
1862
1866
  editedBy?: string | undefined;
@@ -1887,7 +1891,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
1887
1891
  phoneNumber?: string | undefined;
1888
1892
  birthDate?: string | undefined;
1889
1893
  }[] | undefined;
1890
- schools?: NYIGSchool[] | undefined;
1891
1894
  isInactive?: boolean | undefined;
1892
1895
  doesNotTeachPrivateLessons?: boolean | undefined;
1893
1896
  title?: string | undefined;
@@ -2101,6 +2104,7 @@ declare const zClassTrackerResponse: z.ZodObject<{
2101
2104
  rank: GoRank;
2102
2105
  _id: string;
2103
2106
  name: string;
2107
+ schools: NYIGSchool[];
2104
2108
  email?: string | undefined;
2105
2109
  address?: string | undefined;
2106
2110
  editedBy?: string | undefined;
@@ -2131,7 +2135,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
2131
2135
  phoneNumber?: string | undefined;
2132
2136
  birthDate?: string | undefined;
2133
2137
  }[] | undefined;
2134
- schools?: NYIGSchool[] | undefined;
2135
2138
  isInactive?: boolean | undefined;
2136
2139
  doesNotTeachPrivateLessons?: boolean | undefined;
2137
2140
  title?: string | undefined;
@@ -2207,6 +2210,7 @@ declare const zClassTrackerResponse: z.ZodObject<{
2207
2210
  rank: GoRank;
2208
2211
  _id: string;
2209
2212
  name: string;
2213
+ schools: NYIGSchool[];
2210
2214
  email?: string | undefined;
2211
2215
  address?: string | undefined;
2212
2216
  editedBy?: string | undefined;
@@ -2237,7 +2241,6 @@ declare const zClassTrackerResponse: z.ZodObject<{
2237
2241
  phoneNumber?: string | undefined;
2238
2242
  birthDate?: string | undefined;
2239
2243
  }[] | undefined;
2240
- schools?: NYIGSchool[] | undefined;
2241
2244
  isInactive?: boolean | undefined;
2242
2245
  doesNotTeachPrivateLessons?: boolean | undefined;
2243
2246
  title?: string | undefined;
@@ -2951,7 +2954,7 @@ declare const zGroupTrackerResponse: z.ZodObject<{
2951
2954
  bio: z.ZodOptional<z.ZodString>;
2952
2955
  imageUrl: z.ZodOptional<z.ZodString>;
2953
2956
  available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
2954
- schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
2957
+ schools: z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">;
2955
2958
  } & {
2956
2959
  _id: z.ZodString;
2957
2960
  editedBy: z.ZodOptional<z.ZodString>;
@@ -2961,6 +2964,7 @@ declare const zGroupTrackerResponse: z.ZodObject<{
2961
2964
  rank: GoRank;
2962
2965
  _id: string;
2963
2966
  name: string;
2967
+ schools: NYIGSchool[];
2964
2968
  email?: string | undefined;
2965
2969
  address?: string | undefined;
2966
2970
  editedBy?: string | undefined;
@@ -2991,7 +2995,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
2991
2995
  phoneNumber?: string | undefined;
2992
2996
  birthDate?: string | undefined;
2993
2997
  }[] | undefined;
2994
- schools?: NYIGSchool[] | undefined;
2995
2998
  isInactive?: boolean | undefined;
2996
2999
  doesNotTeachPrivateLessons?: boolean | undefined;
2997
3000
  title?: string | undefined;
@@ -3002,6 +3005,7 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3002
3005
  rank: GoRank;
3003
3006
  _id: string;
3004
3007
  name: string;
3008
+ schools: NYIGSchool[];
3005
3009
  email?: string | undefined;
3006
3010
  address?: string | undefined;
3007
3011
  editedBy?: string | undefined;
@@ -3032,7 +3036,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3032
3036
  phoneNumber?: string | undefined;
3033
3037
  birthDate?: string | undefined;
3034
3038
  }[] | undefined;
3035
- schools?: NYIGSchool[] | undefined;
3036
3039
  isInactive?: boolean | undefined;
3037
3040
  doesNotTeachPrivateLessons?: boolean | undefined;
3038
3041
  title?: string | undefined;
@@ -3429,6 +3432,7 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3429
3432
  rank: GoRank;
3430
3433
  _id: string;
3431
3434
  name: string;
3435
+ schools: NYIGSchool[];
3432
3436
  email?: string | undefined;
3433
3437
  address?: string | undefined;
3434
3438
  editedBy?: string | undefined;
@@ -3459,7 +3463,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3459
3463
  phoneNumber?: string | undefined;
3460
3464
  birthDate?: string | undefined;
3461
3465
  }[] | undefined;
3462
- schools?: NYIGSchool[] | undefined;
3463
3466
  isInactive?: boolean | undefined;
3464
3467
  doesNotTeachPrivateLessons?: boolean | undefined;
3465
3468
  title?: string | undefined;
@@ -3566,6 +3569,7 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3566
3569
  rank: GoRank;
3567
3570
  _id: string;
3568
3571
  name: string;
3572
+ schools: NYIGSchool[];
3569
3573
  email?: string | undefined;
3570
3574
  address?: string | undefined;
3571
3575
  editedBy?: string | undefined;
@@ -3596,7 +3600,6 @@ declare const zGroupTrackerResponse: z.ZodObject<{
3596
3600
  phoneNumber?: string | undefined;
3597
3601
  birthDate?: string | undefined;
3598
3602
  }[] | undefined;
3599
- schools?: NYIGSchool[] | undefined;
3600
3603
  isInactive?: boolean | undefined;
3601
3604
  doesNotTeachPrivateLessons?: boolean | undefined;
3602
3605
  title?: string | undefined;
@@ -3660,6 +3663,7 @@ declare const zBCampBooking: z.ZodObject<{
3660
3663
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
3661
3664
  participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
3662
3665
  dateOfBirth: z.ZodOptional<z.ZodString>;
3666
+ profileId: z.ZodOptional<z.ZodString>;
3663
3667
  } & {
3664
3668
  paymentAmount: z.ZodNumber;
3665
3669
  paymentReceived: z.ZodOptional<z.ZodBoolean>;
@@ -3684,6 +3688,7 @@ declare const zBCampBooking: z.ZodObject<{
3684
3688
  showOnWhoIsComing?: boolean | undefined;
3685
3689
  participateAs?: "adult" | "youth" | undefined;
3686
3690
  dateOfBirth?: string | undefined;
3691
+ profileId?: string | undefined;
3687
3692
  shipping?: boolean | undefined;
3688
3693
  ctId?: string | undefined;
3689
3694
  }, {
@@ -3706,6 +3711,7 @@ declare const zBCampBooking: z.ZodObject<{
3706
3711
  showOnWhoIsComing?: boolean | undefined;
3707
3712
  participateAs?: "adult" | "youth" | undefined;
3708
3713
  dateOfBirth?: string | undefined;
3714
+ profileId?: string | undefined;
3709
3715
  shipping?: boolean | undefined;
3710
3716
  ctId?: string | undefined;
3711
3717
  }>;
@@ -3729,6 +3735,7 @@ declare const zCampBooking: z.ZodObject<{
3729
3735
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
3730
3736
  participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
3731
3737
  dateOfBirth: z.ZodOptional<z.ZodString>;
3738
+ profileId: z.ZodOptional<z.ZodString>;
3732
3739
  } & {
3733
3740
  paymentAmount: z.ZodNumber;
3734
3741
  paymentReceived: z.ZodOptional<z.ZodBoolean>;
@@ -3759,6 +3766,7 @@ declare const zCampBooking: z.ZodObject<{
3759
3766
  showOnWhoIsComing?: boolean | undefined;
3760
3767
  participateAs?: "adult" | "youth" | undefined;
3761
3768
  dateOfBirth?: string | undefined;
3769
+ profileId?: string | undefined;
3762
3770
  shipping?: boolean | undefined;
3763
3771
  editedBy?: string | undefined;
3764
3772
  createdAt?: string | undefined;
@@ -3785,6 +3793,7 @@ declare const zCampBooking: z.ZodObject<{
3785
3793
  showOnWhoIsComing?: boolean | undefined;
3786
3794
  participateAs?: "adult" | "youth" | undefined;
3787
3795
  dateOfBirth?: string | undefined;
3796
+ profileId?: string | undefined;
3788
3797
  shipping?: boolean | undefined;
3789
3798
  editedBy?: string | undefined;
3790
3799
  createdAt?: string | undefined;
@@ -3814,6 +3823,7 @@ declare const zBGroupBooking: z.ZodObject<{
3814
3823
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
3815
3824
  participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
3816
3825
  dateOfBirth: z.ZodOptional<z.ZodString>;
3826
+ profileId: z.ZodOptional<z.ZodString>;
3817
3827
  } & {
3818
3828
  paymentAmount: z.ZodNumber;
3819
3829
  paymentReceived: z.ZodOptional<z.ZodBoolean>;
@@ -3836,6 +3846,7 @@ declare const zBGroupBooking: z.ZodObject<{
3836
3846
  showOnWhoIsComing?: boolean | undefined;
3837
3847
  participateAs?: "adult" | "youth" | undefined;
3838
3848
  dateOfBirth?: string | undefined;
3849
+ profileId?: string | undefined;
3839
3850
  shipping?: boolean | undefined;
3840
3851
  gtId?: string | undefined;
3841
3852
  isTrial?: boolean | undefined;
@@ -3858,6 +3869,7 @@ declare const zBGroupBooking: z.ZodObject<{
3858
3869
  showOnWhoIsComing?: boolean | undefined;
3859
3870
  participateAs?: "adult" | "youth" | undefined;
3860
3871
  dateOfBirth?: string | undefined;
3872
+ profileId?: string | undefined;
3861
3873
  shipping?: boolean | undefined;
3862
3874
  gtId?: string | undefined;
3863
3875
  isTrial?: boolean | undefined;
@@ -3883,6 +3895,7 @@ declare const zGroupBooking: z.ZodObject<{
3883
3895
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
3884
3896
  participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
3885
3897
  dateOfBirth: z.ZodOptional<z.ZodString>;
3898
+ profileId: z.ZodOptional<z.ZodString>;
3886
3899
  } & {
3887
3900
  paymentAmount: z.ZodNumber;
3888
3901
  paymentReceived: z.ZodOptional<z.ZodBoolean>;
@@ -3911,6 +3924,7 @@ declare const zGroupBooking: z.ZodObject<{
3911
3924
  showOnWhoIsComing?: boolean | undefined;
3912
3925
  participateAs?: "adult" | "youth" | undefined;
3913
3926
  dateOfBirth?: string | undefined;
3927
+ profileId?: string | undefined;
3914
3928
  shipping?: boolean | undefined;
3915
3929
  editedBy?: string | undefined;
3916
3930
  createdAt?: string | undefined;
@@ -3937,6 +3951,7 @@ declare const zGroupBooking: z.ZodObject<{
3937
3951
  showOnWhoIsComing?: boolean | undefined;
3938
3952
  participateAs?: "adult" | "youth" | undefined;
3939
3953
  dateOfBirth?: string | undefined;
3954
+ profileId?: string | undefined;
3940
3955
  shipping?: boolean | undefined;
3941
3956
  editedBy?: string | undefined;
3942
3957
  createdAt?: string | undefined;
@@ -3966,6 +3981,7 @@ declare const zBPrivateBooking: z.ZodObject<{
3966
3981
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
3967
3982
  participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
3968
3983
  dateOfBirth: z.ZodOptional<z.ZodString>;
3984
+ profileId: z.ZodOptional<z.ZodString>;
3969
3985
  } & {
3970
3986
  paymentAmount: z.ZodNumber;
3971
3987
  paymentReceived: z.ZodOptional<z.ZodBoolean>;
@@ -3989,6 +4005,7 @@ declare const zBPrivateBooking: z.ZodObject<{
3989
4005
  showOnWhoIsComing?: boolean | undefined;
3990
4006
  participateAs?: "adult" | "youth" | undefined;
3991
4007
  dateOfBirth?: string | undefined;
4008
+ profileId?: string | undefined;
3992
4009
  classDate?: string | undefined;
3993
4010
  }, {
3994
4011
  paymentAmount: number;
@@ -4009,6 +4026,7 @@ declare const zBPrivateBooking: z.ZodObject<{
4009
4026
  showOnWhoIsComing?: boolean | undefined;
4010
4027
  participateAs?: "adult" | "youth" | undefined;
4011
4028
  dateOfBirth?: string | undefined;
4029
+ profileId?: string | undefined;
4012
4030
  classDate?: string | undefined;
4013
4031
  }>;
4014
4032
  declare const zPrivateBooking: z.ZodObject<{
@@ -4029,6 +4047,7 @@ declare const zPrivateBooking: z.ZodObject<{
4029
4047
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
4030
4048
  participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
4031
4049
  dateOfBirth: z.ZodOptional<z.ZodString>;
4050
+ profileId: z.ZodOptional<z.ZodString>;
4032
4051
  } & {
4033
4052
  paymentAmount: z.ZodNumber;
4034
4053
  paymentReceived: z.ZodOptional<z.ZodBoolean>;
@@ -4058,6 +4077,7 @@ declare const zPrivateBooking: z.ZodObject<{
4058
4077
  showOnWhoIsComing?: boolean | undefined;
4059
4078
  participateAs?: "adult" | "youth" | undefined;
4060
4079
  dateOfBirth?: string | undefined;
4080
+ profileId?: string | undefined;
4061
4081
  editedBy?: string | undefined;
4062
4082
  createdAt?: string | undefined;
4063
4083
  updatedAt?: string | undefined;
@@ -4082,6 +4102,7 @@ declare const zPrivateBooking: z.ZodObject<{
4082
4102
  showOnWhoIsComing?: boolean | undefined;
4083
4103
  participateAs?: "adult" | "youth" | undefined;
4084
4104
  dateOfBirth?: string | undefined;
4105
+ profileId?: string | undefined;
4085
4106
  editedBy?: string | undefined;
4086
4107
  createdAt?: string | undefined;
4087
4108
  updatedAt?: string | undefined;
@@ -4699,7 +4720,7 @@ declare const zInvoiceResponse: z.ZodObject<{
4699
4720
  bio: z.ZodOptional<z.ZodString>;
4700
4721
  imageUrl: z.ZodOptional<z.ZodString>;
4701
4722
  available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
4702
- schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
4723
+ schools: z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">;
4703
4724
  } & {
4704
4725
  _id: z.ZodString;
4705
4726
  editedBy: z.ZodOptional<z.ZodString>;
@@ -4709,6 +4730,7 @@ declare const zInvoiceResponse: z.ZodObject<{
4709
4730
  rank: GoRank;
4710
4731
  _id: string;
4711
4732
  name: string;
4733
+ schools: NYIGSchool[];
4712
4734
  email?: string | undefined;
4713
4735
  address?: string | undefined;
4714
4736
  editedBy?: string | undefined;
@@ -4739,7 +4761,6 @@ declare const zInvoiceResponse: z.ZodObject<{
4739
4761
  phoneNumber?: string | undefined;
4740
4762
  birthDate?: string | undefined;
4741
4763
  }[] | undefined;
4742
- schools?: NYIGSchool[] | undefined;
4743
4764
  isInactive?: boolean | undefined;
4744
4765
  doesNotTeachPrivateLessons?: boolean | undefined;
4745
4766
  title?: string | undefined;
@@ -4750,6 +4771,7 @@ declare const zInvoiceResponse: z.ZodObject<{
4750
4771
  rank: GoRank;
4751
4772
  _id: string;
4752
4773
  name: string;
4774
+ schools: NYIGSchool[];
4753
4775
  email?: string | undefined;
4754
4776
  address?: string | undefined;
4755
4777
  editedBy?: string | undefined;
@@ -4780,7 +4802,6 @@ declare const zInvoiceResponse: z.ZodObject<{
4780
4802
  phoneNumber?: string | undefined;
4781
4803
  birthDate?: string | undefined;
4782
4804
  }[] | undefined;
4783
- schools?: NYIGSchool[] | undefined;
4784
4805
  isInactive?: boolean | undefined;
4785
4806
  doesNotTeachPrivateLessons?: boolean | undefined;
4786
4807
  title?: string | undefined;
@@ -4864,7 +4885,7 @@ declare const zInvoiceResponse: z.ZodObject<{
4864
4885
  bio: z.ZodOptional<z.ZodString>;
4865
4886
  imageUrl: z.ZodOptional<z.ZodString>;
4866
4887
  available: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">, "many">>;
4867
- schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
4888
+ schools: z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">;
4868
4889
  } & {
4869
4890
  _id: z.ZodString;
4870
4891
  editedBy: z.ZodOptional<z.ZodString>;
@@ -4874,6 +4895,7 @@ declare const zInvoiceResponse: z.ZodObject<{
4874
4895
  rank: GoRank;
4875
4896
  _id: string;
4876
4897
  name: string;
4898
+ schools: NYIGSchool[];
4877
4899
  email?: string | undefined;
4878
4900
  address?: string | undefined;
4879
4901
  editedBy?: string | undefined;
@@ -4904,7 +4926,6 @@ declare const zInvoiceResponse: z.ZodObject<{
4904
4926
  phoneNumber?: string | undefined;
4905
4927
  birthDate?: string | undefined;
4906
4928
  }[] | undefined;
4907
- schools?: NYIGSchool[] | undefined;
4908
4929
  isInactive?: boolean | undefined;
4909
4930
  doesNotTeachPrivateLessons?: boolean | undefined;
4910
4931
  title?: string | undefined;
@@ -4915,6 +4936,7 @@ declare const zInvoiceResponse: z.ZodObject<{
4915
4936
  rank: GoRank;
4916
4937
  _id: string;
4917
4938
  name: string;
4939
+ schools: NYIGSchool[];
4918
4940
  email?: string | undefined;
4919
4941
  address?: string | undefined;
4920
4942
  editedBy?: string | undefined;
@@ -4945,7 +4967,6 @@ declare const zInvoiceResponse: z.ZodObject<{
4945
4967
  phoneNumber?: string | undefined;
4946
4968
  birthDate?: string | undefined;
4947
4969
  }[] | undefined;
4948
- schools?: NYIGSchool[] | undefined;
4949
4970
  isInactive?: boolean | undefined;
4950
4971
  doesNotTeachPrivateLessons?: boolean | undefined;
4951
4972
  title?: string | undefined;
@@ -5254,6 +5275,7 @@ declare const zInvoiceResponse: z.ZodObject<{
5254
5275
  rank: GoRank;
5255
5276
  _id: string;
5256
5277
  name: string;
5278
+ schools: NYIGSchool[];
5257
5279
  email?: string | undefined;
5258
5280
  address?: string | undefined;
5259
5281
  editedBy?: string | undefined;
@@ -5284,7 +5306,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5284
5306
  phoneNumber?: string | undefined;
5285
5307
  birthDate?: string | undefined;
5286
5308
  }[] | undefined;
5287
- schools?: NYIGSchool[] | undefined;
5288
5309
  isInactive?: boolean | undefined;
5289
5310
  doesNotTeachPrivateLessons?: boolean | undefined;
5290
5311
  title?: string | undefined;
@@ -5299,6 +5320,7 @@ declare const zInvoiceResponse: z.ZodObject<{
5299
5320
  rank: GoRank;
5300
5321
  _id: string;
5301
5322
  name: string;
5323
+ schools: NYIGSchool[];
5302
5324
  email?: string | undefined;
5303
5325
  address?: string | undefined;
5304
5326
  editedBy?: string | undefined;
@@ -5329,7 +5351,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5329
5351
  phoneNumber?: string | undefined;
5330
5352
  birthDate?: string | undefined;
5331
5353
  }[] | undefined;
5332
- schools?: NYIGSchool[] | undefined;
5333
5354
  isInactive?: boolean | undefined;
5334
5355
  doesNotTeachPrivateLessons?: boolean | undefined;
5335
5356
  title?: string | undefined;
@@ -5397,6 +5418,7 @@ declare const zInvoiceResponse: z.ZodObject<{
5397
5418
  rank: GoRank;
5398
5419
  _id: string;
5399
5420
  name: string;
5421
+ schools: NYIGSchool[];
5400
5422
  email?: string | undefined;
5401
5423
  address?: string | undefined;
5402
5424
  editedBy?: string | undefined;
@@ -5427,7 +5449,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5427
5449
  phoneNumber?: string | undefined;
5428
5450
  birthDate?: string | undefined;
5429
5451
  }[] | undefined;
5430
- schools?: NYIGSchool[] | undefined;
5431
5452
  isInactive?: boolean | undefined;
5432
5453
  doesNotTeachPrivateLessons?: boolean | undefined;
5433
5454
  title?: string | undefined;
@@ -5442,6 +5463,7 @@ declare const zInvoiceResponse: z.ZodObject<{
5442
5463
  rank: GoRank;
5443
5464
  _id: string;
5444
5465
  name: string;
5466
+ schools: NYIGSchool[];
5445
5467
  email?: string | undefined;
5446
5468
  address?: string | undefined;
5447
5469
  editedBy?: string | undefined;
@@ -5472,7 +5494,6 @@ declare const zInvoiceResponse: z.ZodObject<{
5472
5494
  phoneNumber?: string | undefined;
5473
5495
  birthDate?: string | undefined;
5474
5496
  }[] | undefined;
5475
- schools?: NYIGSchool[] | undefined;
5476
5497
  isInactive?: boolean | undefined;
5477
5498
  doesNotTeachPrivateLessons?: boolean | undefined;
5478
5499
  title?: string | undefined;
@@ -6873,6 +6894,7 @@ declare const zBEventReg: z.ZodObject<{
6873
6894
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
6874
6895
  participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
6875
6896
  dateOfBirth: z.ZodOptional<z.ZodString>;
6897
+ profileId: z.ZodOptional<z.ZodString>;
6876
6898
  } & {
6877
6899
  paymentAmount: z.ZodNumber;
6878
6900
  paymentReceived: z.ZodOptional<z.ZodBoolean>;
@@ -6900,6 +6922,7 @@ declare const zBEventReg: z.ZodObject<{
6900
6922
  showOnWhoIsComing?: boolean | undefined;
6901
6923
  participateAs?: "adult" | "youth" | undefined;
6902
6924
  dateOfBirth?: string | undefined;
6925
+ profileId?: string | undefined;
6903
6926
  donation?: number | undefined;
6904
6927
  createMethod?: string | undefined;
6905
6928
  }, {
@@ -6925,6 +6948,7 @@ declare const zBEventReg: z.ZodObject<{
6925
6948
  showOnWhoIsComing?: boolean | undefined;
6926
6949
  participateAs?: "adult" | "youth" | undefined;
6927
6950
  dateOfBirth?: string | undefined;
6951
+ profileId?: string | undefined;
6928
6952
  donation?: number | undefined;
6929
6953
  createMethod?: string | undefined;
6930
6954
  }>;
@@ -6963,6 +6987,7 @@ declare const zEventReg: z.ZodObject<{
6963
6987
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
6964
6988
  participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
6965
6989
  dateOfBirth: z.ZodOptional<z.ZodString>;
6990
+ profileId: z.ZodOptional<z.ZodString>;
6966
6991
  } & {
6967
6992
  paymentAmount: z.ZodNumber;
6968
6993
  paymentReceived: z.ZodOptional<z.ZodBoolean>;
@@ -6996,6 +7021,7 @@ declare const zEventReg: z.ZodObject<{
6996
7021
  showOnWhoIsComing?: boolean | undefined;
6997
7022
  participateAs?: "adult" | "youth" | undefined;
6998
7023
  dateOfBirth?: string | undefined;
7024
+ profileId?: string | undefined;
6999
7025
  editedBy?: string | undefined;
7000
7026
  createdAt?: string | undefined;
7001
7027
  updatedAt?: string | undefined;
@@ -7025,6 +7051,7 @@ declare const zEventReg: z.ZodObject<{
7025
7051
  showOnWhoIsComing?: boolean | undefined;
7026
7052
  participateAs?: "adult" | "youth" | undefined;
7027
7053
  dateOfBirth?: string | undefined;
7054
+ profileId?: string | undefined;
7028
7055
  editedBy?: string | undefined;
7029
7056
  createdAt?: string | undefined;
7030
7057
  updatedAt?: string | undefined;
@@ -7049,6 +7076,7 @@ declare const zEventRegResponse: z.ZodObject<{
7049
7076
  showOnWhoIsComing: z.ZodOptional<z.ZodBoolean>;
7050
7077
  participateAs: z.ZodOptional<z.ZodEnum<["adult", "youth"]>>;
7051
7078
  dateOfBirth: z.ZodOptional<z.ZodString>;
7079
+ profileId: z.ZodOptional<z.ZodString>;
7052
7080
  paymentAmount: z.ZodNumber;
7053
7081
  paymentReceived: z.ZodOptional<z.ZodBoolean>;
7054
7082
  expireAt: z.ZodOptional<z.ZodDate>;
@@ -7159,6 +7187,7 @@ declare const zEventRegResponse: z.ZodObject<{
7159
7187
  showOnWhoIsComing?: boolean | undefined;
7160
7188
  participateAs?: "adult" | "youth" | undefined;
7161
7189
  dateOfBirth?: string | undefined;
7190
+ profileId?: string | undefined;
7162
7191
  editedBy?: string | undefined;
7163
7192
  createdAt?: string | undefined;
7164
7193
  updatedAt?: string | undefined;
@@ -7199,6 +7228,7 @@ declare const zEventRegResponse: z.ZodObject<{
7199
7228
  showOnWhoIsComing?: boolean | undefined;
7200
7229
  participateAs?: "adult" | "youth" | undefined;
7201
7230
  dateOfBirth?: string | undefined;
7231
+ profileId?: string | undefined;
7202
7232
  editedBy?: string | undefined;
7203
7233
  createdAt?: string | undefined;
7204
7234
  updatedAt?: string | undefined;
@@ -8203,10 +8233,11 @@ declare const zBTeacher: z.ZodObject<{
8203
8233
  * Schools the teacher is affiliated with
8204
8234
  * Required for showing on the aurora "about" page
8205
8235
  */
8206
- schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
8236
+ schools: z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">;
8207
8237
  }, "strip", z.ZodTypeAny, {
8208
8238
  rank: GoRank;
8209
8239
  name: string;
8240
+ schools: NYIGSchool[];
8210
8241
  email?: string | undefined;
8211
8242
  address?: string | undefined;
8212
8243
  phoneNumber?: string | undefined;
@@ -8234,7 +8265,6 @@ declare const zBTeacher: z.ZodObject<{
8234
8265
  phoneNumber?: string | undefined;
8235
8266
  birthDate?: string | undefined;
8236
8267
  }[] | undefined;
8237
- schools?: NYIGSchool[] | undefined;
8238
8268
  isInactive?: boolean | undefined;
8239
8269
  doesNotTeachPrivateLessons?: boolean | undefined;
8240
8270
  title?: string | undefined;
@@ -8244,6 +8274,7 @@ declare const zBTeacher: z.ZodObject<{
8244
8274
  }, {
8245
8275
  rank: GoRank;
8246
8276
  name: string;
8277
+ schools: NYIGSchool[];
8247
8278
  email?: string | undefined;
8248
8279
  address?: string | undefined;
8249
8280
  phoneNumber?: string | undefined;
@@ -8271,7 +8302,6 @@ declare const zBTeacher: z.ZodObject<{
8271
8302
  phoneNumber?: string | undefined;
8272
8303
  birthDate?: string | undefined;
8273
8304
  }[] | undefined;
8274
- schools?: NYIGSchool[] | undefined;
8275
8305
  isInactive?: boolean | undefined;
8276
8306
  doesNotTeachPrivateLessons?: boolean | undefined;
8277
8307
  title?: string | undefined;
@@ -8387,7 +8417,7 @@ declare const zTeacher: z.ZodObject<{
8387
8417
  * Schools the teacher is affiliated with
8388
8418
  * Required for showing on the aurora "about" page
8389
8419
  */
8390
- schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
8420
+ schools: z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">;
8391
8421
  } & {
8392
8422
  _id: z.ZodString;
8393
8423
  editedBy: z.ZodOptional<z.ZodString>;
@@ -8397,6 +8427,7 @@ declare const zTeacher: z.ZodObject<{
8397
8427
  rank: GoRank;
8398
8428
  _id: string;
8399
8429
  name: string;
8430
+ schools: NYIGSchool[];
8400
8431
  email?: string | undefined;
8401
8432
  address?: string | undefined;
8402
8433
  editedBy?: string | undefined;
@@ -8427,7 +8458,6 @@ declare const zTeacher: z.ZodObject<{
8427
8458
  phoneNumber?: string | undefined;
8428
8459
  birthDate?: string | undefined;
8429
8460
  }[] | undefined;
8430
- schools?: NYIGSchool[] | undefined;
8431
8461
  isInactive?: boolean | undefined;
8432
8462
  doesNotTeachPrivateLessons?: boolean | undefined;
8433
8463
  title?: string | undefined;
@@ -8438,6 +8468,7 @@ declare const zTeacher: z.ZodObject<{
8438
8468
  rank: GoRank;
8439
8469
  _id: string;
8440
8470
  name: string;
8471
+ schools: NYIGSchool[];
8441
8472
  email?: string | undefined;
8442
8473
  address?: string | undefined;
8443
8474
  editedBy?: string | undefined;
@@ -8468,7 +8499,6 @@ declare const zTeacher: z.ZodObject<{
8468
8499
  phoneNumber?: string | undefined;
8469
8500
  birthDate?: string | undefined;
8470
8501
  }[] | undefined;
8471
- schools?: NYIGSchool[] | undefined;
8472
8502
  isInactive?: boolean | undefined;
8473
8503
  doesNotTeachPrivateLessons?: boolean | undefined;
8474
8504
  title?: string | undefined;
@@ -8584,7 +8614,7 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
8584
8614
  * Schools the teacher is affiliated with
8585
8615
  * Required for showing on the aurora "about" page
8586
8616
  */
8587
- schools: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">>;
8617
+ schools: z.ZodArray<z.ZodNativeEnum<typeof NYIGSchool>, "many">;
8588
8618
  } & {
8589
8619
  _id: z.ZodString;
8590
8620
  editedBy: z.ZodOptional<z.ZodString>;
@@ -8596,6 +8626,7 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
8596
8626
  rank: GoRank;
8597
8627
  _id: string;
8598
8628
  name: string;
8629
+ schools: NYIGSchool[];
8599
8630
  role: number;
8600
8631
  email?: string | undefined;
8601
8632
  address?: string | undefined;
@@ -8619,7 +8650,6 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
8619
8650
  phoneNumber?: string | undefined;
8620
8651
  birthDate?: string | undefined;
8621
8652
  }[] | undefined;
8622
- schools?: NYIGSchool[] | undefined;
8623
8653
  isInactive?: boolean | undefined;
8624
8654
  doesNotTeachPrivateLessons?: boolean | undefined;
8625
8655
  title?: string | undefined;
@@ -8630,6 +8660,7 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
8630
8660
  rank: GoRank;
8631
8661
  _id: string;
8632
8662
  name: string;
8663
+ schools: NYIGSchool[];
8633
8664
  role: number;
8634
8665
  email?: string | undefined;
8635
8666
  address?: string | undefined;
@@ -8653,7 +8684,6 @@ declare const zTeacherResponse: z.ZodObject<Omit<{
8653
8684
  phoneNumber?: string | undefined;
8654
8685
  birthDate?: string | undefined;
8655
8686
  }[] | undefined;
8656
- schools?: NYIGSchool[] | undefined;
8657
8687
  isInactive?: boolean | undefined;
8658
8688
  doesNotTeachPrivateLessons?: boolean | undefined;
8659
8689
  title?: string | undefined;
@@ -8713,4 +8743,43 @@ type ChangePasswordRequest = z.infer<typeof zChangePasswordRequest>;
8713
8743
  type LoginRequest = z.infer<typeof zLoginRequest>;
8714
8744
  type LoginResponse = z.infer<typeof zLoginResponse>;
8715
8745
 
8716
- 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 };
8746
+ declare const zBProduct: z.ZodObject<{
8747
+ name: z.ZodString;
8748
+ price: z.ZodNumber;
8749
+ editedBy: z.ZodOptional<z.ZodString>;
8750
+ }, "strip", z.ZodTypeAny, {
8751
+ name: string;
8752
+ price: number;
8753
+ editedBy?: string | undefined;
8754
+ }, {
8755
+ name: string;
8756
+ price: number;
8757
+ editedBy?: string | undefined;
8758
+ }>;
8759
+ declare const zProduct: z.ZodObject<{
8760
+ name: z.ZodString;
8761
+ price: z.ZodNumber;
8762
+ } & {
8763
+ _id: z.ZodString;
8764
+ editedBy: z.ZodOptional<z.ZodString>;
8765
+ createdAt: z.ZodOptional<z.ZodString>;
8766
+ updatedAt: z.ZodOptional<z.ZodString>;
8767
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
8768
+ _id: string;
8769
+ name: string;
8770
+ price: number;
8771
+ editedBy?: string | undefined;
8772
+ createdAt?: string | undefined;
8773
+ updatedAt?: string | undefined;
8774
+ }, {
8775
+ _id: string;
8776
+ name: string;
8777
+ price: number;
8778
+ editedBy?: string | undefined;
8779
+ createdAt?: string | undefined;
8780
+ updatedAt?: string | undefined;
8781
+ }>;
8782
+ type BProduct = z.infer<typeof zBProduct>;
8783
+ type Product = z.infer<typeof zProduct>;
8784
+
8785
+ 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 BProduct, 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 Product, 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, zBProduct, 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 };