rategame-shared 1.1.316 → 1.1.317
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 +15 -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/chat.d.ts
CHANGED
|
@@ -721,6 +721,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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>>;
|
|
@@ -1822,6 +1825,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1822
1825
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1823
1826
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1824
1827
|
}>>;
|
|
1828
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
1825
1829
|
}, "strip", z.ZodTypeAny, {
|
|
1826
1830
|
allGames?: boolean | undefined;
|
|
1827
1831
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -1849,6 +1853,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1849
1853
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1850
1854
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1851
1855
|
} | undefined;
|
|
1856
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
1852
1857
|
}, {
|
|
1853
1858
|
allGames?: boolean | undefined;
|
|
1854
1859
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -1876,6 +1881,7 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1876
1881
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1877
1882
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
1878
1883
|
} | undefined;
|
|
1884
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
1879
1885
|
}>>;
|
|
1880
1886
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1881
1887
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -2979,6 +2985,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2979
2985
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2980
2986
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
2981
2987
|
}>>;
|
|
2988
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
2982
2989
|
}, "strip", z.ZodTypeAny, {
|
|
2983
2990
|
allGames?: boolean | undefined;
|
|
2984
2991
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -3006,6 +3013,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3006
3013
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3007
3014
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3008
3015
|
} | undefined;
|
|
3016
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
3009
3017
|
}, {
|
|
3010
3018
|
allGames?: boolean | undefined;
|
|
3011
3019
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -3033,6 +3041,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3033
3041
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3034
3042
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
3035
3043
|
} | undefined;
|
|
3044
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
3036
3045
|
}>>;
|
|
3037
3046
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3038
3047
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -4079,6 +4088,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
4079
4088
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4080
4089
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4081
4090
|
}>>;
|
|
4091
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
4082
4092
|
}, "strip", z.ZodTypeAny, {
|
|
4083
4093
|
allGames?: boolean | undefined;
|
|
4084
4094
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -4106,6 +4116,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
4106
4116
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4107
4117
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4108
4118
|
} | undefined;
|
|
4119
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
4109
4120
|
}, {
|
|
4110
4121
|
allGames?: boolean | undefined;
|
|
4111
4122
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -4133,6 +4144,7 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
4133
4144
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4134
4145
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
4135
4146
|
} | undefined;
|
|
4147
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
4136
4148
|
}>>;
|
|
4137
4149
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4138
4150
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -5231,6 +5243,7 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
5231
5243
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5232
5244
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5233
5245
|
}>>;
|
|
5246
|
+
playerTopLists: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">, z.ZodLiteral<"monthly">]>>>;
|
|
5234
5247
|
}, "strip", z.ZodTypeAny, {
|
|
5235
5248
|
allGames?: boolean | undefined;
|
|
5236
5249
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -5258,6 +5271,7 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
5258
5271
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5259
5272
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5260
5273
|
} | undefined;
|
|
5274
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
5261
5275
|
}, {
|
|
5262
5276
|
allGames?: boolean | undefined;
|
|
5263
5277
|
favoriteLeagues?: boolean | undefined;
|
|
@@ -5285,6 +5299,7 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
5285
5299
|
mostRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5286
5300
|
worstRated?: "16hr" | "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "2025" | "2024" | "All" | "All Time" | "12h" | "daily" | "weekly" | null | undefined;
|
|
5287
5301
|
} | undefined;
|
|
5302
|
+
playerTopLists?: "daily" | "weekly" | "monthly" | null | undefined;
|
|
5288
5303
|
}>>;
|
|
5289
5304
|
spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
5290
5305
|
viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|