rategame-shared 1.1.316 → 1.1.318
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/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/models/content.d.ts +3 -0
- package/dist/models/content.js +2 -0
- package/dist/schemas/chat.d.ts +15 -0
- package/dist/schemas/content.d.ts +19 -0
- package/dist/schemas/content.js +11 -0
- package/dist/schemas/game.d.ts +60 -0
- package/dist/schemas/list.d.ts +15 -0
- package/dist/schemas/moderation.d.ts +12 -0
- package/dist/schemas/rating.d.ts +9 -0
- package/dist/schemas/stadium.d.ts +12 -0
- package/dist/schemas/user.d.ts +13 -0
- package/dist/schemas/user.js +4 -0
- package/dist/schemas/userEvent.d.ts +9 -0
- package/dist/schemas/voting.d.ts +27 -0
- package/package.json +1 -1
package/dist/schemas/list.d.ts
CHANGED
|
@@ -721,6 +721,7 @@ export declare const listSchema: z.ZodObject<{
|
|
|
721
721
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
722
722
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
723
723
|
}>>;
|
|
724
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
724
725
|
}, "strip", z.ZodTypeAny, {
|
|
725
726
|
allGames?: boolean | undefined;
|
|
726
727
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -748,6 +749,7 @@ export declare const listSchema: z.ZodObject<{
|
|
|
748
749
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
749
750
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
750
751
|
} | undefined;
|
|
752
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
751
753
|
}, {
|
|
752
754
|
allGames?: boolean | undefined;
|
|
753
755
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -775,6 +777,7 @@ export declare const listSchema: z.ZodObject<{
|
|
|
775
777
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
776
778
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
777
779
|
} | undefined;
|
|
780
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
778
781
|
}>>;
|
|
779
782
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
780
783
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -1867,6 +1870,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
|
|
|
1867
1870
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1868
1871
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1869
1872
|
}>>;
|
|
1873
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
1870
1874
|
}, "strip", z.ZodTypeAny, {
|
|
1871
1875
|
allGames?: boolean | undefined;
|
|
1872
1876
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -1894,6 +1898,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
|
|
|
1894
1898
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1895
1899
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1896
1900
|
} | undefined;
|
|
1901
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
1897
1902
|
}, {
|
|
1898
1903
|
allGames?: boolean | undefined;
|
|
1899
1904
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -1921,6 +1926,7 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
|
|
|
1921
1926
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1922
1927
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1923
1928
|
} | undefined;
|
|
1929
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
1924
1930
|
}>>;
|
|
1925
1931
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1926
1932
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -3005,6 +3011,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
3005
3011
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3006
3012
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3007
3013
|
}>>;
|
|
3014
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
3008
3015
|
}, "strip", z.ZodTypeAny, {
|
|
3009
3016
|
allGames?: boolean | undefined;
|
|
3010
3017
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -3032,6 +3039,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
3032
3039
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3033
3040
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3034
3041
|
} | undefined;
|
|
3042
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
3035
3043
|
}, {
|
|
3036
3044
|
allGames?: boolean | undefined;
|
|
3037
3045
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -3059,6 +3067,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
3059
3067
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3060
3068
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3061
3069
|
} | undefined;
|
|
3070
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
3062
3071
|
}>>;
|
|
3063
3072
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3064
3073
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -4103,6 +4112,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
4103
4112
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4104
4113
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4105
4114
|
}>>;
|
|
4115
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
4106
4116
|
}, "strip", z.ZodTypeAny, {
|
|
4107
4117
|
allGames?: boolean | undefined;
|
|
4108
4118
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -4130,6 +4140,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
4130
4140
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4131
4141
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4132
4142
|
} | undefined;
|
|
4143
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
4133
4144
|
}, {
|
|
4134
4145
|
allGames?: boolean | undefined;
|
|
4135
4146
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -4157,6 +4168,7 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
4157
4168
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4158
4169
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4159
4170
|
} | undefined;
|
|
4171
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
4160
4172
|
}>>;
|
|
4161
4173
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4162
4174
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -5246,6 +5258,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
|
|
|
5246
5258
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5247
5259
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5248
5260
|
}>>;
|
|
5261
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
5249
5262
|
}, "strip", z.ZodTypeAny, {
|
|
5250
5263
|
allGames?: boolean | undefined;
|
|
5251
5264
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -5273,6 +5286,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
|
|
|
5273
5286
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5274
5287
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5275
5288
|
} | undefined;
|
|
5289
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
5276
5290
|
}, {
|
|
5277
5291
|
allGames?: boolean | undefined;
|
|
5278
5292
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -5300,6 +5314,7 @@ export declare const listCommentLikeSchema: z.ZodObject<{
|
|
|
5300
5314
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5301
5315
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5302
5316
|
} | undefined;
|
|
5317
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
5303
5318
|
}>>;
|
|
5304
5319
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
5305
5320
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -734,6 +734,7 @@ export declare const banInfoSchema: z.ZodObject<{
|
|
|
734
734
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
735
735
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
736
736
|
}>>;
|
|
737
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
737
738
|
}, "strip", z.ZodTypeAny, {
|
|
738
739
|
allGames?: boolean | undefined;
|
|
739
740
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -761,6 +762,7 @@ export declare const banInfoSchema: z.ZodObject<{
|
|
|
761
762
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
762
763
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
763
764
|
} | undefined;
|
|
765
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
764
766
|
}, {
|
|
765
767
|
allGames?: boolean | undefined;
|
|
766
768
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -788,6 +790,7 @@ export declare const banInfoSchema: z.ZodObject<{
|
|
|
788
790
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
789
791
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
790
792
|
} | undefined;
|
|
793
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
791
794
|
}>>;
|
|
792
795
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
793
796
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -1859,6 +1862,7 @@ export declare const bannedUserSchema: z.ZodObject<{
|
|
|
1859
1862
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1860
1863
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1861
1864
|
}>>;
|
|
1865
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
1862
1866
|
}, "strip", z.ZodTypeAny, {
|
|
1863
1867
|
allGames?: boolean | undefined;
|
|
1864
1868
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -1886,6 +1890,7 @@ export declare const bannedUserSchema: z.ZodObject<{
|
|
|
1886
1890
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1887
1891
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1888
1892
|
} | undefined;
|
|
1893
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
1889
1894
|
}, {
|
|
1890
1895
|
allGames?: boolean | undefined;
|
|
1891
1896
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -1913,6 +1918,7 @@ export declare const bannedUserSchema: z.ZodObject<{
|
|
|
1913
1918
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1914
1919
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1915
1920
|
} | undefined;
|
|
1921
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
1916
1922
|
}>>;
|
|
1917
1923
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1918
1924
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -3020,6 +3026,7 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
|
|
|
3020
3026
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3021
3027
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3022
3028
|
}>>;
|
|
3029
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
3023
3030
|
}, "strip", z.ZodTypeAny, {
|
|
3024
3031
|
allGames?: boolean | undefined;
|
|
3025
3032
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -3047,6 +3054,7 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
|
|
|
3047
3054
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3048
3055
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3049
3056
|
} | undefined;
|
|
3057
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
3050
3058
|
}, {
|
|
3051
3059
|
allGames?: boolean | undefined;
|
|
3052
3060
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -3074,6 +3082,7 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
|
|
|
3074
3082
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3075
3083
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3076
3084
|
} | undefined;
|
|
3085
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
3077
3086
|
}>>;
|
|
3078
3087
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3079
3088
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -4225,6 +4234,7 @@ export declare const banStatusResponseSchema: z.ZodObject<{
|
|
|
4225
4234
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4226
4235
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4227
4236
|
}>>;
|
|
4237
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
4228
4238
|
}, "strip", z.ZodTypeAny, {
|
|
4229
4239
|
allGames?: boolean | undefined;
|
|
4230
4240
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -4252,6 +4262,7 @@ export declare const banStatusResponseSchema: z.ZodObject<{
|
|
|
4252
4262
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4253
4263
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4254
4264
|
} | undefined;
|
|
4265
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
4255
4266
|
}, {
|
|
4256
4267
|
allGames?: boolean | undefined;
|
|
4257
4268
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -4279,6 +4290,7 @@ export declare const banStatusResponseSchema: z.ZodObject<{
|
|
|
4279
4290
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4280
4291
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4281
4292
|
} | undefined;
|
|
4293
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
4282
4294
|
}>>;
|
|
4283
4295
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4284
4296
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
package/dist/schemas/rating.d.ts
CHANGED
|
@@ -1650,6 +1650,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1650
1650
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1651
1651
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1652
1652
|
}>>;
|
|
1653
|
+
playerTopLists: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">, import("zod").ZodLiteral<"monthly">]>>>;
|
|
1653
1654
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1654
1655
|
allGames?: boolean | undefined;
|
|
1655
1656
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -1677,6 +1678,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1677
1678
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1678
1679
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1679
1680
|
} | undefined;
|
|
1681
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
1680
1682
|
}, {
|
|
1681
1683
|
allGames?: boolean | undefined;
|
|
1682
1684
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -1704,6 +1706,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1704
1706
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1705
1707
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1706
1708
|
} | undefined;
|
|
1709
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
1707
1710
|
}>>;
|
|
1708
1711
|
spoilersEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1709
1712
|
viewedChangelogs: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
@@ -2748,6 +2751,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
2748
2751
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2749
2752
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2750
2753
|
}>>;
|
|
2754
|
+
playerTopLists: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">, import("zod").ZodLiteral<"monthly">]>>>;
|
|
2751
2755
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2752
2756
|
allGames?: boolean | undefined;
|
|
2753
2757
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -2775,6 +2779,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
2775
2779
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2776
2780
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2777
2781
|
} | undefined;
|
|
2782
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
2778
2783
|
}, {
|
|
2779
2784
|
allGames?: boolean | undefined;
|
|
2780
2785
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -2802,6 +2807,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
2802
2807
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2803
2808
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2804
2809
|
} | undefined;
|
|
2810
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
2805
2811
|
}>>;
|
|
2806
2812
|
spoilersEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2807
2813
|
viewedChangelogs: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
@@ -3917,6 +3923,7 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
|
|
|
3917
3923
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3918
3924
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3919
3925
|
}>>;
|
|
3926
|
+
playerTopLists: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">, import("zod").ZodLiteral<"monthly">]>>>;
|
|
3920
3927
|
}, "strip", import("zod").ZodTypeAny, {
|
|
3921
3928
|
allGames?: boolean | undefined;
|
|
3922
3929
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -3944,6 +3951,7 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
|
|
|
3944
3951
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3945
3952
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3946
3953
|
} | undefined;
|
|
3954
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
3947
3955
|
}, {
|
|
3948
3956
|
allGames?: boolean | undefined;
|
|
3949
3957
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -3971,6 +3979,7 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
|
|
|
3971
3979
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3972
3980
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3973
3981
|
} | undefined;
|
|
3982
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
3974
3983
|
}>>;
|
|
3975
3984
|
spoilersEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3976
3985
|
viewedChangelogs: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
@@ -971,6 +971,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
971
971
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
972
972
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
973
973
|
}>>;
|
|
974
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
974
975
|
}, "strip", z.ZodTypeAny, {
|
|
975
976
|
allGames?: boolean | undefined;
|
|
976
977
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -998,6 +999,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
998
999
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
999
1000
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1000
1001
|
} | undefined;
|
|
1002
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
1001
1003
|
}, {
|
|
1002
1004
|
allGames?: boolean | undefined;
|
|
1003
1005
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -1025,6 +1027,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1025
1027
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1026
1028
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1027
1029
|
} | undefined;
|
|
1030
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
1028
1031
|
}>>;
|
|
1029
1032
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1030
1033
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -2610,6 +2613,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
2610
2613
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2611
2614
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2612
2615
|
}>>;
|
|
2616
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
2613
2617
|
}, "strip", z.ZodTypeAny, {
|
|
2614
2618
|
allGames?: boolean | undefined;
|
|
2615
2619
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -2637,6 +2641,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
2637
2641
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2638
2642
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2639
2643
|
} | undefined;
|
|
2644
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
2640
2645
|
}, {
|
|
2641
2646
|
allGames?: boolean | undefined;
|
|
2642
2647
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -2664,6 +2669,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
2664
2669
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2665
2670
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2666
2671
|
} | undefined;
|
|
2672
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
2667
2673
|
}>>;
|
|
2668
2674
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2669
2675
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -4308,6 +4314,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
4308
4314
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4309
4315
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4310
4316
|
}>>;
|
|
4317
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
4311
4318
|
}, "strip", z.ZodTypeAny, {
|
|
4312
4319
|
allGames?: boolean | undefined;
|
|
4313
4320
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -4335,6 +4342,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
4335
4342
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4336
4343
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4337
4344
|
} | undefined;
|
|
4345
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
4338
4346
|
}, {
|
|
4339
4347
|
allGames?: boolean | undefined;
|
|
4340
4348
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -4362,6 +4370,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
4362
4370
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4363
4371
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4364
4372
|
} | undefined;
|
|
4373
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
4365
4374
|
}>>;
|
|
4366
4375
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4367
4376
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -5406,6 +5415,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
5406
5415
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5407
5416
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5408
5417
|
}>>;
|
|
5418
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
5409
5419
|
}, "strip", z.ZodTypeAny, {
|
|
5410
5420
|
allGames?: boolean | undefined;
|
|
5411
5421
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -5433,6 +5443,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
5433
5443
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5434
5444
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5435
5445
|
} | undefined;
|
|
5446
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
5436
5447
|
}, {
|
|
5437
5448
|
allGames?: boolean | undefined;
|
|
5438
5449
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -5460,6 +5471,7 @@ export declare const stadiumThreadCommentSchema: z.ZodObject<{
|
|
|
5460
5471
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5461
5472
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5462
5473
|
} | undefined;
|
|
5474
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
5463
5475
|
}>>;
|
|
5464
5476
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
5465
5477
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
package/dist/schemas/user.d.ts
CHANGED
|
@@ -940,6 +940,7 @@ export declare const userSchema: z.ZodObject<{
|
|
|
940
940
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
941
941
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
942
942
|
}>>;
|
|
943
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
943
944
|
}, "strip", z.ZodTypeAny, {
|
|
944
945
|
allGames?: boolean | undefined;
|
|
945
946
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -967,6 +968,7 @@ export declare const userSchema: z.ZodObject<{
|
|
|
967
968
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
968
969
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
969
970
|
} | undefined;
|
|
971
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
970
972
|
}, {
|
|
971
973
|
allGames?: boolean | undefined;
|
|
972
974
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -994,6 +996,7 @@ export declare const userSchema: z.ZodObject<{
|
|
|
994
996
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
995
997
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
996
998
|
} | undefined;
|
|
999
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
997
1000
|
}>>;
|
|
998
1001
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
999
1002
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -1483,6 +1486,7 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1483
1486
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1484
1487
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1485
1488
|
} | undefined;
|
|
1489
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
1486
1490
|
} | undefined;
|
|
1487
1491
|
spoilersEnabled?: boolean | undefined;
|
|
1488
1492
|
viewedChangelogs?: Record<string, boolean> | undefined;
|
|
@@ -1753,6 +1757,7 @@ export declare const userSchema: z.ZodObject<{
|
|
|
1753
1757
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1754
1758
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1755
1759
|
} | undefined;
|
|
1760
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
1756
1761
|
} | undefined;
|
|
1757
1762
|
spoilersEnabled?: boolean | undefined;
|
|
1758
1763
|
viewedChangelogs?: Record<string, boolean> | undefined;
|
|
@@ -2563,6 +2568,7 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
2563
2568
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2564
2569
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2565
2570
|
}>>;
|
|
2571
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
2566
2572
|
}, "strip", z.ZodTypeAny, {
|
|
2567
2573
|
allGames?: boolean | undefined;
|
|
2568
2574
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -2590,6 +2596,7 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
2590
2596
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2591
2597
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2592
2598
|
} | undefined;
|
|
2599
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
2593
2600
|
}, {
|
|
2594
2601
|
allGames?: boolean | undefined;
|
|
2595
2602
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -2617,6 +2624,7 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
2617
2624
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2618
2625
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2619
2626
|
} | undefined;
|
|
2627
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
2620
2628
|
}>>;
|
|
2621
2629
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2622
2630
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -3095,6 +3103,7 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
3095
3103
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3096
3104
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3097
3105
|
} | undefined;
|
|
3106
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
3098
3107
|
} | undefined;
|
|
3099
3108
|
spoilersEnabled?: boolean | undefined;
|
|
3100
3109
|
viewedChangelogs?: Record<string, boolean> | undefined;
|
|
@@ -3354,6 +3363,7 @@ export declare const createUserSchema: z.ZodObject<Omit<{
|
|
|
3354
3363
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3355
3364
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3356
3365
|
} | undefined;
|
|
3366
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
3357
3367
|
} | undefined;
|
|
3358
3368
|
spoilersEnabled?: boolean | undefined;
|
|
3359
3369
|
viewedChangelogs?: Record<string, boolean> | undefined;
|
|
@@ -4164,6 +4174,7 @@ export declare const reducedUserSchema: z.ZodObject<Pick<{
|
|
|
4164
4174
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4165
4175
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4166
4176
|
}>>;
|
|
4177
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
4167
4178
|
}, "strip", z.ZodTypeAny, {
|
|
4168
4179
|
allGames?: boolean | undefined;
|
|
4169
4180
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -4191,6 +4202,7 @@ export declare const reducedUserSchema: z.ZodObject<Pick<{
|
|
|
4191
4202
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4192
4203
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4193
4204
|
} | undefined;
|
|
4205
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
4194
4206
|
}, {
|
|
4195
4207
|
allGames?: boolean | undefined;
|
|
4196
4208
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -4218,6 +4230,7 @@ export declare const reducedUserSchema: z.ZodObject<Pick<{
|
|
|
4218
4230
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4219
4231
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4220
4232
|
} | undefined;
|
|
4233
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
4221
4234
|
}>>;
|
|
4222
4235
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4223
4236
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
package/dist/schemas/user.js
CHANGED
|
@@ -217,6 +217,10 @@ exports.userSchema = (0, zod_1.object)({
|
|
|
217
217
|
worstRated: sharedTypes_1.timeFilterSchema.optional().nullable(),
|
|
218
218
|
})
|
|
219
219
|
.optional(),
|
|
220
|
+
playerTopLists: zod_1.z
|
|
221
|
+
.union([(0, zod_1.literal)("daily"), (0, zod_1.literal)("weekly"), (0, zod_1.literal)("monthly")])
|
|
222
|
+
.optional()
|
|
223
|
+
.nullable(),
|
|
220
224
|
}).optional(),
|
|
221
225
|
spoilersEnabled: (0, zod_1.boolean)().optional(),
|
|
222
226
|
viewedChangelogs: (0, zod_1.record)((0, zod_1.boolean)()).optional(),
|