rategame-shared 1.1.300 → 1.1.302
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/dist/schemas/chat.d.ts +20 -0
- package/dist/schemas/game.d.ts +80 -0
- package/dist/schemas/list.d.ts +20 -0
- package/dist/schemas/moderation.d.ts +16 -0
- package/dist/schemas/rating.d.ts +12 -0
- package/dist/schemas/stadium.d.ts +16 -0
- package/dist/schemas/user.d.ts +20 -0
- package/dist/schemas/user.js +2 -0
- package/dist/schemas/userEvent.d.ts +12 -0
- package/dist/schemas/voting.d.ts +36 -0
- package/package.json +1 -1
package/dist/schemas/game.d.ts
CHANGED
|
@@ -3917,6 +3917,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
3917
3917
|
acceptedPushNotifications: z.ZodBoolean;
|
|
3918
3918
|
badge: z.ZodOptional<z.ZodString>;
|
|
3919
3919
|
registrationStep: z.ZodOptional<z.ZodNumber>;
|
|
3920
|
+
hasRatedGames: z.ZodOptional<z.ZodBoolean>;
|
|
3920
3921
|
selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3921
3922
|
selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3922
3923
|
lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3956,6 +3957,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
3956
3957
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
3957
3958
|
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
3958
3959
|
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
3960
|
+
threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
|
|
3959
3961
|
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
3960
3962
|
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
3961
3963
|
topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>>;
|
|
@@ -3998,6 +4000,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
3998
4000
|
listLikes?: boolean | undefined;
|
|
3999
4001
|
eventLikes?: boolean | undefined;
|
|
4000
4002
|
commentLikes?: boolean | undefined;
|
|
4003
|
+
threadActivityNotifications?: boolean | undefined;
|
|
4001
4004
|
trendingGames?: boolean | undefined;
|
|
4002
4005
|
gameChanges?: {
|
|
4003
4006
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -4024,6 +4027,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4024
4027
|
listLikes?: boolean | undefined;
|
|
4025
4028
|
eventLikes?: boolean | undefined;
|
|
4026
4029
|
commentLikes?: boolean | undefined;
|
|
4030
|
+
threadActivityNotifications?: boolean | undefined;
|
|
4027
4031
|
trendingGames?: boolean | undefined;
|
|
4028
4032
|
gameChanges?: {
|
|
4029
4033
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -6395,6 +6399,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6395
6399
|
acceptedPushNotifications: z.ZodBoolean;
|
|
6396
6400
|
badge: z.ZodOptional<z.ZodString>;
|
|
6397
6401
|
registrationStep: z.ZodOptional<z.ZodNumber>;
|
|
6402
|
+
hasRatedGames: z.ZodOptional<z.ZodBoolean>;
|
|
6398
6403
|
selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6399
6404
|
selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6400
6405
|
lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6434,6 +6439,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6434
6439
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
6435
6440
|
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
6436
6441
|
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
6442
|
+
threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
|
|
6437
6443
|
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
6438
6444
|
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
6439
6445
|
topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>>;
|
|
@@ -6476,6 +6482,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6476
6482
|
listLikes?: boolean | undefined;
|
|
6477
6483
|
eventLikes?: boolean | undefined;
|
|
6478
6484
|
commentLikes?: boolean | undefined;
|
|
6485
|
+
threadActivityNotifications?: boolean | undefined;
|
|
6479
6486
|
trendingGames?: boolean | undefined;
|
|
6480
6487
|
gameChanges?: {
|
|
6481
6488
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -6502,6 +6509,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6502
6509
|
listLikes?: boolean | undefined;
|
|
6503
6510
|
eventLikes?: boolean | undefined;
|
|
6504
6511
|
commentLikes?: boolean | undefined;
|
|
6512
|
+
threadActivityNotifications?: boolean | undefined;
|
|
6505
6513
|
trendingGames?: boolean | undefined;
|
|
6506
6514
|
gameChanges?: {
|
|
6507
6515
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -8934,6 +8942,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8934
8942
|
acceptedPushNotifications: z.ZodBoolean;
|
|
8935
8943
|
badge: z.ZodOptional<z.ZodString>;
|
|
8936
8944
|
registrationStep: z.ZodOptional<z.ZodNumber>;
|
|
8945
|
+
hasRatedGames: z.ZodOptional<z.ZodBoolean>;
|
|
8937
8946
|
selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8938
8947
|
selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8939
8948
|
lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8973,6 +8982,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8973
8982
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
8974
8983
|
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
8975
8984
|
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
8985
|
+
threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
|
|
8976
8986
|
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
8977
8987
|
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
8978
8988
|
topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>>;
|
|
@@ -9015,6 +9025,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9015
9025
|
listLikes?: boolean | undefined;
|
|
9016
9026
|
eventLikes?: boolean | undefined;
|
|
9017
9027
|
commentLikes?: boolean | undefined;
|
|
9028
|
+
threadActivityNotifications?: boolean | undefined;
|
|
9018
9029
|
trendingGames?: boolean | undefined;
|
|
9019
9030
|
gameChanges?: {
|
|
9020
9031
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -9041,6 +9052,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9041
9052
|
listLikes?: boolean | undefined;
|
|
9042
9053
|
eventLikes?: boolean | undefined;
|
|
9043
9054
|
commentLikes?: boolean | undefined;
|
|
9055
|
+
threadActivityNotifications?: boolean | undefined;
|
|
9044
9056
|
trendingGames?: boolean | undefined;
|
|
9045
9057
|
gameChanges?: {
|
|
9046
9058
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -11481,6 +11493,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11481
11493
|
acceptedPushNotifications: z.ZodBoolean;
|
|
11482
11494
|
badge: z.ZodOptional<z.ZodString>;
|
|
11483
11495
|
registrationStep: z.ZodOptional<z.ZodNumber>;
|
|
11496
|
+
hasRatedGames: z.ZodOptional<z.ZodBoolean>;
|
|
11484
11497
|
selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11485
11498
|
selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11486
11499
|
lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -11520,6 +11533,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11520
11533
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
11521
11534
|
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
11522
11535
|
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
11536
|
+
threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
|
|
11523
11537
|
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
11524
11538
|
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
11525
11539
|
topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>>;
|
|
@@ -11562,6 +11576,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11562
11576
|
listLikes?: boolean | undefined;
|
|
11563
11577
|
eventLikes?: boolean | undefined;
|
|
11564
11578
|
commentLikes?: boolean | undefined;
|
|
11579
|
+
threadActivityNotifications?: boolean | undefined;
|
|
11565
11580
|
trendingGames?: boolean | undefined;
|
|
11566
11581
|
gameChanges?: {
|
|
11567
11582
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -11588,6 +11603,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11588
11603
|
listLikes?: boolean | undefined;
|
|
11589
11604
|
eventLikes?: boolean | undefined;
|
|
11590
11605
|
commentLikes?: boolean | undefined;
|
|
11606
|
+
threadActivityNotifications?: boolean | undefined;
|
|
11591
11607
|
trendingGames?: boolean | undefined;
|
|
11592
11608
|
gameChanges?: {
|
|
11593
11609
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -14113,6 +14129,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14113
14129
|
acceptedPushNotifications: z.ZodBoolean;
|
|
14114
14130
|
badge: z.ZodOptional<z.ZodString>;
|
|
14115
14131
|
registrationStep: z.ZodOptional<z.ZodNumber>;
|
|
14132
|
+
hasRatedGames: z.ZodOptional<z.ZodBoolean>;
|
|
14116
14133
|
selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
14117
14134
|
selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
14118
14135
|
lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -14152,6 +14169,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14152
14169
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
14153
14170
|
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
14154
14171
|
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
14172
|
+
threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
|
|
14155
14173
|
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
14156
14174
|
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
14157
14175
|
topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>>;
|
|
@@ -14194,6 +14212,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14194
14212
|
listLikes?: boolean | undefined;
|
|
14195
14213
|
eventLikes?: boolean | undefined;
|
|
14196
14214
|
commentLikes?: boolean | undefined;
|
|
14215
|
+
threadActivityNotifications?: boolean | undefined;
|
|
14197
14216
|
trendingGames?: boolean | undefined;
|
|
14198
14217
|
gameChanges?: {
|
|
14199
14218
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -14220,6 +14239,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
14220
14239
|
listLikes?: boolean | undefined;
|
|
14221
14240
|
eventLikes?: boolean | undefined;
|
|
14222
14241
|
commentLikes?: boolean | undefined;
|
|
14242
|
+
threadActivityNotifications?: boolean | undefined;
|
|
14223
14243
|
trendingGames?: boolean | undefined;
|
|
14224
14244
|
gameChanges?: {
|
|
14225
14245
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -16716,6 +16736,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
16716
16736
|
acceptedPushNotifications: z.ZodBoolean;
|
|
16717
16737
|
badge: z.ZodOptional<z.ZodString>;
|
|
16718
16738
|
registrationStep: z.ZodOptional<z.ZodNumber>;
|
|
16739
|
+
hasRatedGames: z.ZodOptional<z.ZodBoolean>;
|
|
16719
16740
|
selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
16720
16741
|
selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
16721
16742
|
lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16755,6 +16776,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
16755
16776
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
16756
16777
|
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
16757
16778
|
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
16779
|
+
threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
|
|
16758
16780
|
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
16759
16781
|
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
16760
16782
|
topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>>;
|
|
@@ -16797,6 +16819,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
16797
16819
|
listLikes?: boolean | undefined;
|
|
16798
16820
|
eventLikes?: boolean | undefined;
|
|
16799
16821
|
commentLikes?: boolean | undefined;
|
|
16822
|
+
threadActivityNotifications?: boolean | undefined;
|
|
16800
16823
|
trendingGames?: boolean | undefined;
|
|
16801
16824
|
gameChanges?: {
|
|
16802
16825
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -16823,6 +16846,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
16823
16846
|
listLikes?: boolean | undefined;
|
|
16824
16847
|
eventLikes?: boolean | undefined;
|
|
16825
16848
|
commentLikes?: boolean | undefined;
|
|
16849
|
+
threadActivityNotifications?: boolean | undefined;
|
|
16826
16850
|
trendingGames?: boolean | undefined;
|
|
16827
16851
|
gameChanges?: {
|
|
16828
16852
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -19301,6 +19325,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19301
19325
|
acceptedPushNotifications: z.ZodBoolean;
|
|
19302
19326
|
badge: z.ZodOptional<z.ZodString>;
|
|
19303
19327
|
registrationStep: z.ZodOptional<z.ZodNumber>;
|
|
19328
|
+
hasRatedGames: z.ZodOptional<z.ZodBoolean>;
|
|
19304
19329
|
selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
19305
19330
|
selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
19306
19331
|
lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -19340,6 +19365,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19340
19365
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
19341
19366
|
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
19342
19367
|
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
19368
|
+
threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
|
|
19343
19369
|
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
19344
19370
|
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
19345
19371
|
topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>>;
|
|
@@ -19382,6 +19408,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19382
19408
|
listLikes?: boolean | undefined;
|
|
19383
19409
|
eventLikes?: boolean | undefined;
|
|
19384
19410
|
commentLikes?: boolean | undefined;
|
|
19411
|
+
threadActivityNotifications?: boolean | undefined;
|
|
19385
19412
|
trendingGames?: boolean | undefined;
|
|
19386
19413
|
gameChanges?: {
|
|
19387
19414
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -19408,6 +19435,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19408
19435
|
listLikes?: boolean | undefined;
|
|
19409
19436
|
eventLikes?: boolean | undefined;
|
|
19410
19437
|
commentLikes?: boolean | undefined;
|
|
19438
|
+
threadActivityNotifications?: boolean | undefined;
|
|
19411
19439
|
trendingGames?: boolean | undefined;
|
|
19412
19440
|
gameChanges?: {
|
|
19413
19441
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -21799,6 +21827,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
21799
21827
|
acceptedPushNotifications: z.ZodBoolean;
|
|
21800
21828
|
badge: z.ZodOptional<z.ZodString>;
|
|
21801
21829
|
registrationStep: z.ZodOptional<z.ZodNumber>;
|
|
21830
|
+
hasRatedGames: z.ZodOptional<z.ZodBoolean>;
|
|
21802
21831
|
selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
21803
21832
|
selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
21804
21833
|
lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -21838,6 +21867,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
21838
21867
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
21839
21868
|
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
21840
21869
|
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
21870
|
+
threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
|
|
21841
21871
|
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
21842
21872
|
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
21843
21873
|
topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>>;
|
|
@@ -21880,6 +21910,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
21880
21910
|
listLikes?: boolean | undefined;
|
|
21881
21911
|
eventLikes?: boolean | undefined;
|
|
21882
21912
|
commentLikes?: boolean | undefined;
|
|
21913
|
+
threadActivityNotifications?: boolean | undefined;
|
|
21883
21914
|
trendingGames?: boolean | undefined;
|
|
21884
21915
|
gameChanges?: {
|
|
21885
21916
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -21906,6 +21937,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
21906
21937
|
listLikes?: boolean | undefined;
|
|
21907
21938
|
eventLikes?: boolean | undefined;
|
|
21908
21939
|
commentLikes?: boolean | undefined;
|
|
21940
|
+
threadActivityNotifications?: boolean | undefined;
|
|
21909
21941
|
trendingGames?: boolean | undefined;
|
|
21910
21942
|
gameChanges?: {
|
|
21911
21943
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -24324,6 +24356,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24324
24356
|
acceptedPushNotifications: z.ZodBoolean;
|
|
24325
24357
|
badge: z.ZodOptional<z.ZodString>;
|
|
24326
24358
|
registrationStep: z.ZodOptional<z.ZodNumber>;
|
|
24359
|
+
hasRatedGames: z.ZodOptional<z.ZodBoolean>;
|
|
24327
24360
|
selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
24328
24361
|
selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
24329
24362
|
lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -24363,6 +24396,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24363
24396
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
24364
24397
|
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
24365
24398
|
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
24399
|
+
threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
|
|
24366
24400
|
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
24367
24401
|
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
24368
24402
|
topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>>;
|
|
@@ -24405,6 +24439,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24405
24439
|
listLikes?: boolean | undefined;
|
|
24406
24440
|
eventLikes?: boolean | undefined;
|
|
24407
24441
|
commentLikes?: boolean | undefined;
|
|
24442
|
+
threadActivityNotifications?: boolean | undefined;
|
|
24408
24443
|
trendingGames?: boolean | undefined;
|
|
24409
24444
|
gameChanges?: {
|
|
24410
24445
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -24431,6 +24466,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
24431
24466
|
listLikes?: boolean | undefined;
|
|
24432
24467
|
eventLikes?: boolean | undefined;
|
|
24433
24468
|
commentLikes?: boolean | undefined;
|
|
24469
|
+
threadActivityNotifications?: boolean | undefined;
|
|
24434
24470
|
trendingGames?: boolean | undefined;
|
|
24435
24471
|
gameChanges?: {
|
|
24436
24472
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -26870,6 +26906,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26870
26906
|
acceptedPushNotifications: z.ZodBoolean;
|
|
26871
26907
|
badge: z.ZodOptional<z.ZodString>;
|
|
26872
26908
|
registrationStep: z.ZodOptional<z.ZodNumber>;
|
|
26909
|
+
hasRatedGames: z.ZodOptional<z.ZodBoolean>;
|
|
26873
26910
|
selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
26874
26911
|
selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
26875
26912
|
lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -26909,6 +26946,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26909
26946
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
26910
26947
|
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
26911
26948
|
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
26949
|
+
threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
|
|
26912
26950
|
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
26913
26951
|
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
26914
26952
|
topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>>;
|
|
@@ -26951,6 +26989,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26951
26989
|
listLikes?: boolean | undefined;
|
|
26952
26990
|
eventLikes?: boolean | undefined;
|
|
26953
26991
|
commentLikes?: boolean | undefined;
|
|
26992
|
+
threadActivityNotifications?: boolean | undefined;
|
|
26954
26993
|
trendingGames?: boolean | undefined;
|
|
26955
26994
|
gameChanges?: {
|
|
26956
26995
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -26977,6 +27016,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26977
27016
|
listLikes?: boolean | undefined;
|
|
26978
27017
|
eventLikes?: boolean | undefined;
|
|
26979
27018
|
commentLikes?: boolean | undefined;
|
|
27019
|
+
threadActivityNotifications?: boolean | undefined;
|
|
26980
27020
|
trendingGames?: boolean | undefined;
|
|
26981
27021
|
gameChanges?: {
|
|
26982
27022
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -29501,6 +29541,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29501
29541
|
acceptedPushNotifications: z.ZodBoolean;
|
|
29502
29542
|
badge: z.ZodOptional<z.ZodString>;
|
|
29503
29543
|
registrationStep: z.ZodOptional<z.ZodNumber>;
|
|
29544
|
+
hasRatedGames: z.ZodOptional<z.ZodBoolean>;
|
|
29504
29545
|
selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
29505
29546
|
selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
29506
29547
|
lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -29540,6 +29581,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29540
29581
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
29541
29582
|
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
29542
29583
|
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
29584
|
+
threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
|
|
29543
29585
|
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
29544
29586
|
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
29545
29587
|
topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>>;
|
|
@@ -29582,6 +29624,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29582
29624
|
listLikes?: boolean | undefined;
|
|
29583
29625
|
eventLikes?: boolean | undefined;
|
|
29584
29626
|
commentLikes?: boolean | undefined;
|
|
29627
|
+
threadActivityNotifications?: boolean | undefined;
|
|
29585
29628
|
trendingGames?: boolean | undefined;
|
|
29586
29629
|
gameChanges?: {
|
|
29587
29630
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -29608,6 +29651,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
29608
29651
|
listLikes?: boolean | undefined;
|
|
29609
29652
|
eventLikes?: boolean | undefined;
|
|
29610
29653
|
commentLikes?: boolean | undefined;
|
|
29654
|
+
threadActivityNotifications?: boolean | undefined;
|
|
29611
29655
|
trendingGames?: boolean | undefined;
|
|
29612
29656
|
gameChanges?: {
|
|
29613
29657
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -32103,6 +32147,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
32103
32147
|
acceptedPushNotifications: z.ZodBoolean;
|
|
32104
32148
|
badge: z.ZodOptional<z.ZodString>;
|
|
32105
32149
|
registrationStep: z.ZodOptional<z.ZodNumber>;
|
|
32150
|
+
hasRatedGames: z.ZodOptional<z.ZodBoolean>;
|
|
32106
32151
|
selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
32107
32152
|
selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
32108
32153
|
lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -32142,6 +32187,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
32142
32187
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
32143
32188
|
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
32144
32189
|
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
32190
|
+
threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
|
|
32145
32191
|
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
32146
32192
|
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
32147
32193
|
topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>>;
|
|
@@ -32184,6 +32230,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
32184
32230
|
listLikes?: boolean | undefined;
|
|
32185
32231
|
eventLikes?: boolean | undefined;
|
|
32186
32232
|
commentLikes?: boolean | undefined;
|
|
32233
|
+
threadActivityNotifications?: boolean | undefined;
|
|
32187
32234
|
trendingGames?: boolean | undefined;
|
|
32188
32235
|
gameChanges?: {
|
|
32189
32236
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -32210,6 +32257,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
32210
32257
|
listLikes?: boolean | undefined;
|
|
32211
32258
|
eventLikes?: boolean | undefined;
|
|
32212
32259
|
commentLikes?: boolean | undefined;
|
|
32260
|
+
threadActivityNotifications?: boolean | undefined;
|
|
32213
32261
|
trendingGames?: boolean | undefined;
|
|
32214
32262
|
gameChanges?: {
|
|
32215
32263
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -34687,6 +34735,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
34687
34735
|
acceptedPushNotifications: z.ZodBoolean;
|
|
34688
34736
|
badge: z.ZodOptional<z.ZodString>;
|
|
34689
34737
|
registrationStep: z.ZodOptional<z.ZodNumber>;
|
|
34738
|
+
hasRatedGames: z.ZodOptional<z.ZodBoolean>;
|
|
34690
34739
|
selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
34691
34740
|
selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
34692
34741
|
lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -34726,6 +34775,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
34726
34775
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
34727
34776
|
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
34728
34777
|
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
34778
|
+
threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
|
|
34729
34779
|
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
34730
34780
|
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
34731
34781
|
topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>>;
|
|
@@ -34768,6 +34818,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
34768
34818
|
listLikes?: boolean | undefined;
|
|
34769
34819
|
eventLikes?: boolean | undefined;
|
|
34770
34820
|
commentLikes?: boolean | undefined;
|
|
34821
|
+
threadActivityNotifications?: boolean | undefined;
|
|
34771
34822
|
trendingGames?: boolean | undefined;
|
|
34772
34823
|
gameChanges?: {
|
|
34773
34824
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -34794,6 +34845,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
34794
34845
|
listLikes?: boolean | undefined;
|
|
34795
34846
|
eventLikes?: boolean | undefined;
|
|
34796
34847
|
commentLikes?: boolean | undefined;
|
|
34848
|
+
threadActivityNotifications?: boolean | undefined;
|
|
34797
34849
|
trendingGames?: boolean | undefined;
|
|
34798
34850
|
gameChanges?: {
|
|
34799
34851
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -37235,6 +37287,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
37235
37287
|
acceptedPushNotifications: z.ZodBoolean;
|
|
37236
37288
|
badge: z.ZodOptional<z.ZodString>;
|
|
37237
37289
|
registrationStep: z.ZodOptional<z.ZodNumber>;
|
|
37290
|
+
hasRatedGames: z.ZodOptional<z.ZodBoolean>;
|
|
37238
37291
|
selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
37239
37292
|
selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
37240
37293
|
lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -37274,6 +37327,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
37274
37327
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
37275
37328
|
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
37276
37329
|
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
37330
|
+
threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
|
|
37277
37331
|
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
37278
37332
|
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
37279
37333
|
topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>>;
|
|
@@ -37316,6 +37370,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
37316
37370
|
listLikes?: boolean | undefined;
|
|
37317
37371
|
eventLikes?: boolean | undefined;
|
|
37318
37372
|
commentLikes?: boolean | undefined;
|
|
37373
|
+
threadActivityNotifications?: boolean | undefined;
|
|
37319
37374
|
trendingGames?: boolean | undefined;
|
|
37320
37375
|
gameChanges?: {
|
|
37321
37376
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -37342,6 +37397,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
37342
37397
|
listLikes?: boolean | undefined;
|
|
37343
37398
|
eventLikes?: boolean | undefined;
|
|
37344
37399
|
commentLikes?: boolean | undefined;
|
|
37400
|
+
threadActivityNotifications?: boolean | undefined;
|
|
37345
37401
|
trendingGames?: boolean | undefined;
|
|
37346
37402
|
gameChanges?: {
|
|
37347
37403
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -39760,6 +39816,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
39760
39816
|
acceptedPushNotifications: z.ZodBoolean;
|
|
39761
39817
|
badge: z.ZodOptional<z.ZodString>;
|
|
39762
39818
|
registrationStep: z.ZodOptional<z.ZodNumber>;
|
|
39819
|
+
hasRatedGames: z.ZodOptional<z.ZodBoolean>;
|
|
39763
39820
|
selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
39764
39821
|
selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
39765
39822
|
lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -39799,6 +39856,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
39799
39856
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
39800
39857
|
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
39801
39858
|
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
39859
|
+
threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
|
|
39802
39860
|
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
39803
39861
|
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
39804
39862
|
topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>>;
|
|
@@ -39841,6 +39899,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
39841
39899
|
listLikes?: boolean | undefined;
|
|
39842
39900
|
eventLikes?: boolean | undefined;
|
|
39843
39901
|
commentLikes?: boolean | undefined;
|
|
39902
|
+
threadActivityNotifications?: boolean | undefined;
|
|
39844
39903
|
trendingGames?: boolean | undefined;
|
|
39845
39904
|
gameChanges?: {
|
|
39846
39905
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -39867,6 +39926,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
39867
39926
|
listLikes?: boolean | undefined;
|
|
39868
39927
|
eventLikes?: boolean | undefined;
|
|
39869
39928
|
commentLikes?: boolean | undefined;
|
|
39929
|
+
threadActivityNotifications?: boolean | undefined;
|
|
39870
39930
|
trendingGames?: boolean | undefined;
|
|
39871
39931
|
gameChanges?: {
|
|
39872
39932
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -42306,6 +42366,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42306
42366
|
acceptedPushNotifications: z.ZodBoolean;
|
|
42307
42367
|
badge: z.ZodOptional<z.ZodString>;
|
|
42308
42368
|
registrationStep: z.ZodOptional<z.ZodNumber>;
|
|
42369
|
+
hasRatedGames: z.ZodOptional<z.ZodBoolean>;
|
|
42309
42370
|
selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
42310
42371
|
selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
42311
42372
|
lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -42345,6 +42406,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42345
42406
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
42346
42407
|
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
42347
42408
|
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
42409
|
+
threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
|
|
42348
42410
|
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
42349
42411
|
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
42350
42412
|
topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>>;
|
|
@@ -42387,6 +42449,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42387
42449
|
listLikes?: boolean | undefined;
|
|
42388
42450
|
eventLikes?: boolean | undefined;
|
|
42389
42451
|
commentLikes?: boolean | undefined;
|
|
42452
|
+
threadActivityNotifications?: boolean | undefined;
|
|
42390
42453
|
trendingGames?: boolean | undefined;
|
|
42391
42454
|
gameChanges?: {
|
|
42392
42455
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -42413,6 +42476,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
42413
42476
|
listLikes?: boolean | undefined;
|
|
42414
42477
|
eventLikes?: boolean | undefined;
|
|
42415
42478
|
commentLikes?: boolean | undefined;
|
|
42479
|
+
threadActivityNotifications?: boolean | undefined;
|
|
42416
42480
|
trendingGames?: boolean | undefined;
|
|
42417
42481
|
gameChanges?: {
|
|
42418
42482
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -44937,6 +45001,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44937
45001
|
acceptedPushNotifications: z.ZodBoolean;
|
|
44938
45002
|
badge: z.ZodOptional<z.ZodString>;
|
|
44939
45003
|
registrationStep: z.ZodOptional<z.ZodNumber>;
|
|
45004
|
+
hasRatedGames: z.ZodOptional<z.ZodBoolean>;
|
|
44940
45005
|
selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
44941
45006
|
selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
44942
45007
|
lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -44976,6 +45041,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
44976
45041
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
44977
45042
|
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
44978
45043
|
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
45044
|
+
threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
|
|
44979
45045
|
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
44980
45046
|
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
44981
45047
|
topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>>;
|
|
@@ -45018,6 +45084,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45018
45084
|
listLikes?: boolean | undefined;
|
|
45019
45085
|
eventLikes?: boolean | undefined;
|
|
45020
45086
|
commentLikes?: boolean | undefined;
|
|
45087
|
+
threadActivityNotifications?: boolean | undefined;
|
|
45021
45088
|
trendingGames?: boolean | undefined;
|
|
45022
45089
|
gameChanges?: {
|
|
45023
45090
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -45044,6 +45111,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45044
45111
|
listLikes?: boolean | undefined;
|
|
45045
45112
|
eventLikes?: boolean | undefined;
|
|
45046
45113
|
commentLikes?: boolean | undefined;
|
|
45114
|
+
threadActivityNotifications?: boolean | undefined;
|
|
45047
45115
|
trendingGames?: boolean | undefined;
|
|
45048
45116
|
gameChanges?: {
|
|
45049
45117
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -47539,6 +47607,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47539
47607
|
acceptedPushNotifications: z.ZodBoolean;
|
|
47540
47608
|
badge: z.ZodOptional<z.ZodString>;
|
|
47541
47609
|
registrationStep: z.ZodOptional<z.ZodNumber>;
|
|
47610
|
+
hasRatedGames: z.ZodOptional<z.ZodBoolean>;
|
|
47542
47611
|
selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
47543
47612
|
selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
47544
47613
|
lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -47578,6 +47647,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47578
47647
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
47579
47648
|
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
47580
47649
|
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
47650
|
+
threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
|
|
47581
47651
|
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
47582
47652
|
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
47583
47653
|
topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>>;
|
|
@@ -47620,6 +47690,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47620
47690
|
listLikes?: boolean | undefined;
|
|
47621
47691
|
eventLikes?: boolean | undefined;
|
|
47622
47692
|
commentLikes?: boolean | undefined;
|
|
47693
|
+
threadActivityNotifications?: boolean | undefined;
|
|
47623
47694
|
trendingGames?: boolean | undefined;
|
|
47624
47695
|
gameChanges?: {
|
|
47625
47696
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -47646,6 +47717,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
47646
47717
|
listLikes?: boolean | undefined;
|
|
47647
47718
|
eventLikes?: boolean | undefined;
|
|
47648
47719
|
commentLikes?: boolean | undefined;
|
|
47720
|
+
threadActivityNotifications?: boolean | undefined;
|
|
47649
47721
|
trendingGames?: boolean | undefined;
|
|
47650
47722
|
gameChanges?: {
|
|
47651
47723
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -50123,6 +50195,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
50123
50195
|
acceptedPushNotifications: z.ZodBoolean;
|
|
50124
50196
|
badge: z.ZodOptional<z.ZodString>;
|
|
50125
50197
|
registrationStep: z.ZodOptional<z.ZodNumber>;
|
|
50198
|
+
hasRatedGames: z.ZodOptional<z.ZodBoolean>;
|
|
50126
50199
|
selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
50127
50200
|
selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
50128
50201
|
lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -50162,6 +50235,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
50162
50235
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
50163
50236
|
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
50164
50237
|
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
50238
|
+
threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
|
|
50165
50239
|
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
50166
50240
|
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
50167
50241
|
topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>>;
|
|
@@ -50204,6 +50278,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
50204
50278
|
listLikes?: boolean | undefined;
|
|
50205
50279
|
eventLikes?: boolean | undefined;
|
|
50206
50280
|
commentLikes?: boolean | undefined;
|
|
50281
|
+
threadActivityNotifications?: boolean | undefined;
|
|
50207
50282
|
trendingGames?: boolean | undefined;
|
|
50208
50283
|
gameChanges?: {
|
|
50209
50284
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -50230,6 +50305,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
50230
50305
|
listLikes?: boolean | undefined;
|
|
50231
50306
|
eventLikes?: boolean | undefined;
|
|
50232
50307
|
commentLikes?: boolean | undefined;
|
|
50308
|
+
threadActivityNotifications?: boolean | undefined;
|
|
50233
50309
|
trendingGames?: boolean | undefined;
|
|
50234
50310
|
gameChanges?: {
|
|
50235
50311
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -51552,6 +51628,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51552
51628
|
acceptedPushNotifications: z.ZodBoolean;
|
|
51553
51629
|
badge: z.ZodOptional<z.ZodString>;
|
|
51554
51630
|
registrationStep: z.ZodOptional<z.ZodNumber>;
|
|
51631
|
+
hasRatedGames: z.ZodOptional<z.ZodBoolean>;
|
|
51555
51632
|
selectedLeagues: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
51556
51633
|
selectedTeams: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
51557
51634
|
lockedGameMessageSeen: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -51591,6 +51668,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51591
51668
|
listLikes: z.ZodOptional<z.ZodBoolean>;
|
|
51592
51669
|
eventLikes: z.ZodOptional<z.ZodBoolean>;
|
|
51593
51670
|
commentLikes: z.ZodOptional<z.ZodBoolean>;
|
|
51671
|
+
threadActivityNotifications: z.ZodOptional<z.ZodBoolean>;
|
|
51594
51672
|
trendingGames: z.ZodOptional<z.ZodBoolean>;
|
|
51595
51673
|
gameChanges: z.ZodOptional<z.ZodObject<{
|
|
51596
51674
|
topRatedGameChanges: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"16hr">, z.ZodLiteral<"Today">, z.ZodLiteral<"Last 3 Days">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>>;
|
|
@@ -51633,6 +51711,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51633
51711
|
listLikes?: boolean | undefined;
|
|
51634
51712
|
eventLikes?: boolean | undefined;
|
|
51635
51713
|
commentLikes?: boolean | undefined;
|
|
51714
|
+
threadActivityNotifications?: boolean | undefined;
|
|
51636
51715
|
trendingGames?: boolean | undefined;
|
|
51637
51716
|
gameChanges?: {
|
|
51638
51717
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
@@ -51659,6 +51738,7 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
51659
51738
|
listLikes?: boolean | undefined;
|
|
51660
51739
|
eventLikes?: boolean | undefined;
|
|
51661
51740
|
commentLikes?: boolean | undefined;
|
|
51741
|
+
threadActivityNotifications?: boolean | undefined;
|
|
51662
51742
|
trendingGames?: boolean | undefined;
|
|
51663
51743
|
gameChanges?: {
|
|
51664
51744
|
topRatedGameChanges?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|