rategame-shared 1.1.252 → 1.1.254
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 +115 -0
- package/dist/schemas/game.d.ts +460 -0
- package/dist/schemas/list.d.ts +115 -0
- package/dist/schemas/moderation.d.ts +92 -0
- package/dist/schemas/rating.d.ts +69 -0
- package/dist/schemas/user.d.ts +105 -0
- package/dist/schemas/user.js +9 -0
- package/dist/schemas/userEvent.d.ts +69 -0
- package/dist/schemas/voting.d.ts +69 -0
- package/package.json +1 -1
package/dist/schemas/chat.d.ts
CHANGED
|
@@ -903,6 +903,29 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
903
903
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
904
904
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
905
905
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
906
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
907
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
908
|
+
profilePicture: z.ZodBoolean;
|
|
909
|
+
bio: z.ZodBoolean;
|
|
910
|
+
favoriteTeam: z.ZodBoolean;
|
|
911
|
+
pinnedRatings: z.ZodBoolean;
|
|
912
|
+
favoriteGames: z.ZodBoolean;
|
|
913
|
+
gradientColor: z.ZodBoolean;
|
|
914
|
+
}, "strip", z.ZodTypeAny, {
|
|
915
|
+
bio: boolean;
|
|
916
|
+
profilePicture: boolean;
|
|
917
|
+
favoriteTeam: boolean;
|
|
918
|
+
pinnedRatings: boolean;
|
|
919
|
+
favoriteGames: boolean;
|
|
920
|
+
gradientColor: boolean;
|
|
921
|
+
}, {
|
|
922
|
+
bio: boolean;
|
|
923
|
+
profilePicture: boolean;
|
|
924
|
+
favoriteTeam: boolean;
|
|
925
|
+
pinnedRatings: boolean;
|
|
926
|
+
favoriteGames: boolean;
|
|
927
|
+
gradientColor: boolean;
|
|
928
|
+
}>>;
|
|
906
929
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
907
930
|
id: string;
|
|
908
931
|
email: string;
|
|
@@ -1820,6 +1843,29 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1820
1843
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
1821
1844
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
1822
1845
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
1846
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
1847
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
1848
|
+
profilePicture: z.ZodBoolean;
|
|
1849
|
+
bio: z.ZodBoolean;
|
|
1850
|
+
favoriteTeam: z.ZodBoolean;
|
|
1851
|
+
pinnedRatings: z.ZodBoolean;
|
|
1852
|
+
favoriteGames: z.ZodBoolean;
|
|
1853
|
+
gradientColor: z.ZodBoolean;
|
|
1854
|
+
}, "strip", z.ZodTypeAny, {
|
|
1855
|
+
bio: boolean;
|
|
1856
|
+
profilePicture: boolean;
|
|
1857
|
+
favoriteTeam: boolean;
|
|
1858
|
+
pinnedRatings: boolean;
|
|
1859
|
+
favoriteGames: boolean;
|
|
1860
|
+
gradientColor: boolean;
|
|
1861
|
+
}, {
|
|
1862
|
+
bio: boolean;
|
|
1863
|
+
profilePicture: boolean;
|
|
1864
|
+
favoriteTeam: boolean;
|
|
1865
|
+
pinnedRatings: boolean;
|
|
1866
|
+
favoriteGames: boolean;
|
|
1867
|
+
gradientColor: boolean;
|
|
1868
|
+
}>>;
|
|
1823
1869
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
1824
1870
|
id: string;
|
|
1825
1871
|
email: string;
|
|
@@ -2793,6 +2839,29 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2793
2839
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
2794
2840
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
2795
2841
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
2842
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
2843
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
2844
|
+
profilePicture: z.ZodBoolean;
|
|
2845
|
+
bio: z.ZodBoolean;
|
|
2846
|
+
favoriteTeam: z.ZodBoolean;
|
|
2847
|
+
pinnedRatings: z.ZodBoolean;
|
|
2848
|
+
favoriteGames: z.ZodBoolean;
|
|
2849
|
+
gradientColor: z.ZodBoolean;
|
|
2850
|
+
}, "strip", z.ZodTypeAny, {
|
|
2851
|
+
bio: boolean;
|
|
2852
|
+
profilePicture: boolean;
|
|
2853
|
+
favoriteTeam: boolean;
|
|
2854
|
+
pinnedRatings: boolean;
|
|
2855
|
+
favoriteGames: boolean;
|
|
2856
|
+
gradientColor: boolean;
|
|
2857
|
+
}, {
|
|
2858
|
+
bio: boolean;
|
|
2859
|
+
profilePicture: boolean;
|
|
2860
|
+
favoriteTeam: boolean;
|
|
2861
|
+
pinnedRatings: boolean;
|
|
2862
|
+
favoriteGames: boolean;
|
|
2863
|
+
gradientColor: boolean;
|
|
2864
|
+
}>>;
|
|
2796
2865
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
2797
2866
|
id: string;
|
|
2798
2867
|
email: string;
|
|
@@ -3709,6 +3778,29 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3709
3778
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
3710
3779
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
3711
3780
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
3781
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
3782
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
3783
|
+
profilePicture: z.ZodBoolean;
|
|
3784
|
+
bio: z.ZodBoolean;
|
|
3785
|
+
favoriteTeam: z.ZodBoolean;
|
|
3786
|
+
pinnedRatings: z.ZodBoolean;
|
|
3787
|
+
favoriteGames: z.ZodBoolean;
|
|
3788
|
+
gradientColor: z.ZodBoolean;
|
|
3789
|
+
}, "strip", z.ZodTypeAny, {
|
|
3790
|
+
bio: boolean;
|
|
3791
|
+
profilePicture: boolean;
|
|
3792
|
+
favoriteTeam: boolean;
|
|
3793
|
+
pinnedRatings: boolean;
|
|
3794
|
+
favoriteGames: boolean;
|
|
3795
|
+
gradientColor: boolean;
|
|
3796
|
+
}, {
|
|
3797
|
+
bio: boolean;
|
|
3798
|
+
profilePicture: boolean;
|
|
3799
|
+
favoriteTeam: boolean;
|
|
3800
|
+
pinnedRatings: boolean;
|
|
3801
|
+
favoriteGames: boolean;
|
|
3802
|
+
gradientColor: boolean;
|
|
3803
|
+
}>>;
|
|
3712
3804
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
3713
3805
|
id: string;
|
|
3714
3806
|
email: string;
|
|
@@ -4677,6 +4769,29 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
4677
4769
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
4678
4770
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
4679
4771
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
4772
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
4773
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
4774
|
+
profilePicture: z.ZodBoolean;
|
|
4775
|
+
bio: z.ZodBoolean;
|
|
4776
|
+
favoriteTeam: z.ZodBoolean;
|
|
4777
|
+
pinnedRatings: z.ZodBoolean;
|
|
4778
|
+
favoriteGames: z.ZodBoolean;
|
|
4779
|
+
gradientColor: z.ZodBoolean;
|
|
4780
|
+
}, "strip", z.ZodTypeAny, {
|
|
4781
|
+
bio: boolean;
|
|
4782
|
+
profilePicture: boolean;
|
|
4783
|
+
favoriteTeam: boolean;
|
|
4784
|
+
pinnedRatings: boolean;
|
|
4785
|
+
favoriteGames: boolean;
|
|
4786
|
+
gradientColor: boolean;
|
|
4787
|
+
}, {
|
|
4788
|
+
bio: boolean;
|
|
4789
|
+
profilePicture: boolean;
|
|
4790
|
+
favoriteTeam: boolean;
|
|
4791
|
+
pinnedRatings: boolean;
|
|
4792
|
+
favoriteGames: boolean;
|
|
4793
|
+
gradientColor: boolean;
|
|
4794
|
+
}>>;
|
|
4680
4795
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
4681
4796
|
id: string;
|
|
4682
4797
|
email: string;
|