rategame-shared 1.1.252 → 1.1.253
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 +100 -0
- package/dist/schemas/game.d.ts +400 -0
- package/dist/schemas/list.d.ts +100 -0
- package/dist/schemas/moderation.d.ts +80 -0
- package/dist/schemas/rating.d.ts +60 -0
- package/dist/schemas/user.d.ts +92 -0
- package/dist/schemas/user.js +8 -0
- package/dist/schemas/userEvent.d.ts +60 -0
- package/dist/schemas/voting.d.ts +60 -0
- package/package.json +1 -1
package/dist/schemas/chat.d.ts
CHANGED
|
@@ -903,6 +903,26 @@ 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
|
+
gradientColor: z.ZodBoolean;
|
|
913
|
+
}, "strip", z.ZodTypeAny, {
|
|
914
|
+
bio: boolean;
|
|
915
|
+
profilePicture: boolean;
|
|
916
|
+
favoriteTeam: boolean;
|
|
917
|
+
pinnedRatings: boolean;
|
|
918
|
+
gradientColor: boolean;
|
|
919
|
+
}, {
|
|
920
|
+
bio: boolean;
|
|
921
|
+
profilePicture: boolean;
|
|
922
|
+
favoriteTeam: boolean;
|
|
923
|
+
pinnedRatings: boolean;
|
|
924
|
+
gradientColor: boolean;
|
|
925
|
+
}>>;
|
|
906
926
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
907
927
|
id: string;
|
|
908
928
|
email: string;
|
|
@@ -1820,6 +1840,26 @@ export declare const chatMessageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1820
1840
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
1821
1841
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
1822
1842
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
1843
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
1844
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
1845
|
+
profilePicture: z.ZodBoolean;
|
|
1846
|
+
bio: z.ZodBoolean;
|
|
1847
|
+
favoriteTeam: z.ZodBoolean;
|
|
1848
|
+
pinnedRatings: z.ZodBoolean;
|
|
1849
|
+
gradientColor: z.ZodBoolean;
|
|
1850
|
+
}, "strip", z.ZodTypeAny, {
|
|
1851
|
+
bio: boolean;
|
|
1852
|
+
profilePicture: boolean;
|
|
1853
|
+
favoriteTeam: boolean;
|
|
1854
|
+
pinnedRatings: boolean;
|
|
1855
|
+
gradientColor: boolean;
|
|
1856
|
+
}, {
|
|
1857
|
+
bio: boolean;
|
|
1858
|
+
profilePicture: boolean;
|
|
1859
|
+
favoriteTeam: boolean;
|
|
1860
|
+
pinnedRatings: boolean;
|
|
1861
|
+
gradientColor: boolean;
|
|
1862
|
+
}>>;
|
|
1823
1863
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
1824
1864
|
id: string;
|
|
1825
1865
|
email: string;
|
|
@@ -2793,6 +2833,26 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
2793
2833
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
2794
2834
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
2795
2835
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
2836
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
2837
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
2838
|
+
profilePicture: z.ZodBoolean;
|
|
2839
|
+
bio: z.ZodBoolean;
|
|
2840
|
+
favoriteTeam: z.ZodBoolean;
|
|
2841
|
+
pinnedRatings: z.ZodBoolean;
|
|
2842
|
+
gradientColor: z.ZodBoolean;
|
|
2843
|
+
}, "strip", z.ZodTypeAny, {
|
|
2844
|
+
bio: boolean;
|
|
2845
|
+
profilePicture: boolean;
|
|
2846
|
+
favoriteTeam: boolean;
|
|
2847
|
+
pinnedRatings: boolean;
|
|
2848
|
+
gradientColor: boolean;
|
|
2849
|
+
}, {
|
|
2850
|
+
bio: boolean;
|
|
2851
|
+
profilePicture: boolean;
|
|
2852
|
+
favoriteTeam: boolean;
|
|
2853
|
+
pinnedRatings: boolean;
|
|
2854
|
+
gradientColor: boolean;
|
|
2855
|
+
}>>;
|
|
2796
2856
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
2797
2857
|
id: string;
|
|
2798
2858
|
email: string;
|
|
@@ -3709,6 +3769,26 @@ export declare const communityChatMessageSchema: z.ZodObject<z.objectUtil.extend
|
|
|
3709
3769
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
3710
3770
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
3711
3771
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
3772
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
3773
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
3774
|
+
profilePicture: z.ZodBoolean;
|
|
3775
|
+
bio: z.ZodBoolean;
|
|
3776
|
+
favoriteTeam: z.ZodBoolean;
|
|
3777
|
+
pinnedRatings: z.ZodBoolean;
|
|
3778
|
+
gradientColor: z.ZodBoolean;
|
|
3779
|
+
}, "strip", z.ZodTypeAny, {
|
|
3780
|
+
bio: boolean;
|
|
3781
|
+
profilePicture: boolean;
|
|
3782
|
+
favoriteTeam: boolean;
|
|
3783
|
+
pinnedRatings: boolean;
|
|
3784
|
+
gradientColor: boolean;
|
|
3785
|
+
}, {
|
|
3786
|
+
bio: boolean;
|
|
3787
|
+
profilePicture: boolean;
|
|
3788
|
+
favoriteTeam: boolean;
|
|
3789
|
+
pinnedRatings: boolean;
|
|
3790
|
+
gradientColor: boolean;
|
|
3791
|
+
}>>;
|
|
3712
3792
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
3713
3793
|
id: string;
|
|
3714
3794
|
email: string;
|
|
@@ -4677,6 +4757,26 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
4677
4757
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
4678
4758
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
4679
4759
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
4760
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
4761
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
4762
|
+
profilePicture: z.ZodBoolean;
|
|
4763
|
+
bio: z.ZodBoolean;
|
|
4764
|
+
favoriteTeam: z.ZodBoolean;
|
|
4765
|
+
pinnedRatings: z.ZodBoolean;
|
|
4766
|
+
gradientColor: z.ZodBoolean;
|
|
4767
|
+
}, "strip", z.ZodTypeAny, {
|
|
4768
|
+
bio: boolean;
|
|
4769
|
+
profilePicture: boolean;
|
|
4770
|
+
favoriteTeam: boolean;
|
|
4771
|
+
pinnedRatings: boolean;
|
|
4772
|
+
gradientColor: boolean;
|
|
4773
|
+
}, {
|
|
4774
|
+
bio: boolean;
|
|
4775
|
+
profilePicture: boolean;
|
|
4776
|
+
favoriteTeam: boolean;
|
|
4777
|
+
pinnedRatings: boolean;
|
|
4778
|
+
gradientColor: boolean;
|
|
4779
|
+
}>>;
|
|
4680
4780
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
4681
4781
|
id: string;
|
|
4682
4782
|
email: string;
|
package/dist/schemas/game.d.ts
CHANGED
|
@@ -4170,6 +4170,26 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4170
4170
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
4171
4171
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
4172
4172
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
4173
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
4174
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
4175
|
+
profilePicture: z.ZodBoolean;
|
|
4176
|
+
bio: z.ZodBoolean;
|
|
4177
|
+
favoriteTeam: z.ZodBoolean;
|
|
4178
|
+
pinnedRatings: z.ZodBoolean;
|
|
4179
|
+
gradientColor: z.ZodBoolean;
|
|
4180
|
+
}, "strip", z.ZodTypeAny, {
|
|
4181
|
+
bio: boolean;
|
|
4182
|
+
profilePicture: boolean;
|
|
4183
|
+
favoriteTeam: boolean;
|
|
4184
|
+
pinnedRatings: boolean;
|
|
4185
|
+
gradientColor: boolean;
|
|
4186
|
+
}, {
|
|
4187
|
+
bio: boolean;
|
|
4188
|
+
profilePicture: boolean;
|
|
4189
|
+
favoriteTeam: boolean;
|
|
4190
|
+
pinnedRatings: boolean;
|
|
4191
|
+
gradientColor: boolean;
|
|
4192
|
+
}>>;
|
|
4173
4193
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
4174
4194
|
id: string;
|
|
4175
4195
|
email: string;
|
|
@@ -6536,6 +6556,26 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6536
6556
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
6537
6557
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
6538
6558
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
6559
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
6560
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
6561
|
+
profilePicture: z.ZodBoolean;
|
|
6562
|
+
bio: z.ZodBoolean;
|
|
6563
|
+
favoriteTeam: z.ZodBoolean;
|
|
6564
|
+
pinnedRatings: z.ZodBoolean;
|
|
6565
|
+
gradientColor: z.ZodBoolean;
|
|
6566
|
+
}, "strip", z.ZodTypeAny, {
|
|
6567
|
+
bio: boolean;
|
|
6568
|
+
profilePicture: boolean;
|
|
6569
|
+
favoriteTeam: boolean;
|
|
6570
|
+
pinnedRatings: boolean;
|
|
6571
|
+
gradientColor: boolean;
|
|
6572
|
+
}, {
|
|
6573
|
+
bio: boolean;
|
|
6574
|
+
profilePicture: boolean;
|
|
6575
|
+
favoriteTeam: boolean;
|
|
6576
|
+
pinnedRatings: boolean;
|
|
6577
|
+
gradientColor: boolean;
|
|
6578
|
+
}>>;
|
|
6539
6579
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
6540
6580
|
id: string;
|
|
6541
6581
|
email: string;
|
|
@@ -8963,6 +9003,26 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8963
9003
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
8964
9004
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
8965
9005
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
9006
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
9007
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
9008
|
+
profilePicture: z.ZodBoolean;
|
|
9009
|
+
bio: z.ZodBoolean;
|
|
9010
|
+
favoriteTeam: z.ZodBoolean;
|
|
9011
|
+
pinnedRatings: z.ZodBoolean;
|
|
9012
|
+
gradientColor: z.ZodBoolean;
|
|
9013
|
+
}, "strip", z.ZodTypeAny, {
|
|
9014
|
+
bio: boolean;
|
|
9015
|
+
profilePicture: boolean;
|
|
9016
|
+
favoriteTeam: boolean;
|
|
9017
|
+
pinnedRatings: boolean;
|
|
9018
|
+
gradientColor: boolean;
|
|
9019
|
+
}, {
|
|
9020
|
+
bio: boolean;
|
|
9021
|
+
profilePicture: boolean;
|
|
9022
|
+
favoriteTeam: boolean;
|
|
9023
|
+
pinnedRatings: boolean;
|
|
9024
|
+
gradientColor: boolean;
|
|
9025
|
+
}>>;
|
|
8966
9026
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
8967
9027
|
id: string;
|
|
8968
9028
|
email: string;
|
|
@@ -11398,6 +11458,26 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11398
11458
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
11399
11459
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
11400
11460
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
11461
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
11462
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
11463
|
+
profilePicture: z.ZodBoolean;
|
|
11464
|
+
bio: z.ZodBoolean;
|
|
11465
|
+
favoriteTeam: z.ZodBoolean;
|
|
11466
|
+
pinnedRatings: z.ZodBoolean;
|
|
11467
|
+
gradientColor: z.ZodBoolean;
|
|
11468
|
+
}, "strip", z.ZodTypeAny, {
|
|
11469
|
+
bio: boolean;
|
|
11470
|
+
profilePicture: boolean;
|
|
11471
|
+
favoriteTeam: boolean;
|
|
11472
|
+
pinnedRatings: boolean;
|
|
11473
|
+
gradientColor: boolean;
|
|
11474
|
+
}, {
|
|
11475
|
+
bio: boolean;
|
|
11476
|
+
profilePicture: boolean;
|
|
11477
|
+
favoriteTeam: boolean;
|
|
11478
|
+
pinnedRatings: boolean;
|
|
11479
|
+
gradientColor: boolean;
|
|
11480
|
+
}>>;
|
|
11401
11481
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
11402
11482
|
id: string;
|
|
11403
11483
|
email: string;
|
|
@@ -13918,6 +13998,26 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13918
13998
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
13919
13999
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
13920
14000
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
14001
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
14002
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
14003
|
+
profilePicture: z.ZodBoolean;
|
|
14004
|
+
bio: z.ZodBoolean;
|
|
14005
|
+
favoriteTeam: z.ZodBoolean;
|
|
14006
|
+
pinnedRatings: z.ZodBoolean;
|
|
14007
|
+
gradientColor: z.ZodBoolean;
|
|
14008
|
+
}, "strip", z.ZodTypeAny, {
|
|
14009
|
+
bio: boolean;
|
|
14010
|
+
profilePicture: boolean;
|
|
14011
|
+
favoriteTeam: boolean;
|
|
14012
|
+
pinnedRatings: boolean;
|
|
14013
|
+
gradientColor: boolean;
|
|
14014
|
+
}, {
|
|
14015
|
+
bio: boolean;
|
|
14016
|
+
profilePicture: boolean;
|
|
14017
|
+
favoriteTeam: boolean;
|
|
14018
|
+
pinnedRatings: boolean;
|
|
14019
|
+
gradientColor: boolean;
|
|
14020
|
+
}>>;
|
|
13921
14021
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
13922
14022
|
id: string;
|
|
13923
14023
|
email: string;
|
|
@@ -16409,6 +16509,26 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
16409
16509
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
16410
16510
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
16411
16511
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
16512
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
16513
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
16514
|
+
profilePicture: z.ZodBoolean;
|
|
16515
|
+
bio: z.ZodBoolean;
|
|
16516
|
+
favoriteTeam: z.ZodBoolean;
|
|
16517
|
+
pinnedRatings: z.ZodBoolean;
|
|
16518
|
+
gradientColor: z.ZodBoolean;
|
|
16519
|
+
}, "strip", z.ZodTypeAny, {
|
|
16520
|
+
bio: boolean;
|
|
16521
|
+
profilePicture: boolean;
|
|
16522
|
+
favoriteTeam: boolean;
|
|
16523
|
+
pinnedRatings: boolean;
|
|
16524
|
+
gradientColor: boolean;
|
|
16525
|
+
}, {
|
|
16526
|
+
bio: boolean;
|
|
16527
|
+
profilePicture: boolean;
|
|
16528
|
+
favoriteTeam: boolean;
|
|
16529
|
+
pinnedRatings: boolean;
|
|
16530
|
+
gradientColor: boolean;
|
|
16531
|
+
}>>;
|
|
16412
16532
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
16413
16533
|
id: string;
|
|
16414
16534
|
email: string;
|
|
@@ -18882,6 +19002,26 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
18882
19002
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
18883
19003
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
18884
19004
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
19005
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
19006
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
19007
|
+
profilePicture: z.ZodBoolean;
|
|
19008
|
+
bio: z.ZodBoolean;
|
|
19009
|
+
favoriteTeam: z.ZodBoolean;
|
|
19010
|
+
pinnedRatings: z.ZodBoolean;
|
|
19011
|
+
gradientColor: z.ZodBoolean;
|
|
19012
|
+
}, "strip", z.ZodTypeAny, {
|
|
19013
|
+
bio: boolean;
|
|
19014
|
+
profilePicture: boolean;
|
|
19015
|
+
favoriteTeam: boolean;
|
|
19016
|
+
pinnedRatings: boolean;
|
|
19017
|
+
gradientColor: boolean;
|
|
19018
|
+
}, {
|
|
19019
|
+
bio: boolean;
|
|
19020
|
+
profilePicture: boolean;
|
|
19021
|
+
favoriteTeam: boolean;
|
|
19022
|
+
pinnedRatings: boolean;
|
|
19023
|
+
gradientColor: boolean;
|
|
19024
|
+
}>>;
|
|
18885
19025
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
18886
19026
|
id: string;
|
|
18887
19027
|
email: string;
|
|
@@ -21268,6 +21408,26 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
21268
21408
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
21269
21409
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
21270
21410
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
21411
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
21412
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
21413
|
+
profilePicture: z.ZodBoolean;
|
|
21414
|
+
bio: z.ZodBoolean;
|
|
21415
|
+
favoriteTeam: z.ZodBoolean;
|
|
21416
|
+
pinnedRatings: z.ZodBoolean;
|
|
21417
|
+
gradientColor: z.ZodBoolean;
|
|
21418
|
+
}, "strip", z.ZodTypeAny, {
|
|
21419
|
+
bio: boolean;
|
|
21420
|
+
profilePicture: boolean;
|
|
21421
|
+
favoriteTeam: boolean;
|
|
21422
|
+
pinnedRatings: boolean;
|
|
21423
|
+
gradientColor: boolean;
|
|
21424
|
+
}, {
|
|
21425
|
+
bio: boolean;
|
|
21426
|
+
profilePicture: boolean;
|
|
21427
|
+
favoriteTeam: boolean;
|
|
21428
|
+
pinnedRatings: boolean;
|
|
21429
|
+
gradientColor: boolean;
|
|
21430
|
+
}>>;
|
|
21271
21431
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
21272
21432
|
id: string;
|
|
21273
21433
|
email: string;
|
|
@@ -23681,6 +23841,26 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
23681
23841
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
23682
23842
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
23683
23843
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
23844
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
23845
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
23846
|
+
profilePicture: z.ZodBoolean;
|
|
23847
|
+
bio: z.ZodBoolean;
|
|
23848
|
+
favoriteTeam: z.ZodBoolean;
|
|
23849
|
+
pinnedRatings: z.ZodBoolean;
|
|
23850
|
+
gradientColor: z.ZodBoolean;
|
|
23851
|
+
}, "strip", z.ZodTypeAny, {
|
|
23852
|
+
bio: boolean;
|
|
23853
|
+
profilePicture: boolean;
|
|
23854
|
+
favoriteTeam: boolean;
|
|
23855
|
+
pinnedRatings: boolean;
|
|
23856
|
+
gradientColor: boolean;
|
|
23857
|
+
}, {
|
|
23858
|
+
bio: boolean;
|
|
23859
|
+
profilePicture: boolean;
|
|
23860
|
+
favoriteTeam: boolean;
|
|
23861
|
+
pinnedRatings: boolean;
|
|
23862
|
+
gradientColor: boolean;
|
|
23863
|
+
}>>;
|
|
23684
23864
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
23685
23865
|
id: string;
|
|
23686
23866
|
email: string;
|
|
@@ -26115,6 +26295,26 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26115
26295
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
26116
26296
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
26117
26297
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
26298
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
26299
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
26300
|
+
profilePicture: z.ZodBoolean;
|
|
26301
|
+
bio: z.ZodBoolean;
|
|
26302
|
+
favoriteTeam: z.ZodBoolean;
|
|
26303
|
+
pinnedRatings: z.ZodBoolean;
|
|
26304
|
+
gradientColor: z.ZodBoolean;
|
|
26305
|
+
}, "strip", z.ZodTypeAny, {
|
|
26306
|
+
bio: boolean;
|
|
26307
|
+
profilePicture: boolean;
|
|
26308
|
+
favoriteTeam: boolean;
|
|
26309
|
+
pinnedRatings: boolean;
|
|
26310
|
+
gradientColor: boolean;
|
|
26311
|
+
}, {
|
|
26312
|
+
bio: boolean;
|
|
26313
|
+
profilePicture: boolean;
|
|
26314
|
+
favoriteTeam: boolean;
|
|
26315
|
+
pinnedRatings: boolean;
|
|
26316
|
+
gradientColor: boolean;
|
|
26317
|
+
}>>;
|
|
26118
26318
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
26119
26319
|
id: string;
|
|
26120
26320
|
email: string;
|
|
@@ -28634,6 +28834,26 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28634
28834
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
28635
28835
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
28636
28836
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
28837
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
28838
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
28839
|
+
profilePicture: z.ZodBoolean;
|
|
28840
|
+
bio: z.ZodBoolean;
|
|
28841
|
+
favoriteTeam: z.ZodBoolean;
|
|
28842
|
+
pinnedRatings: z.ZodBoolean;
|
|
28843
|
+
gradientColor: z.ZodBoolean;
|
|
28844
|
+
}, "strip", z.ZodTypeAny, {
|
|
28845
|
+
bio: boolean;
|
|
28846
|
+
profilePicture: boolean;
|
|
28847
|
+
favoriteTeam: boolean;
|
|
28848
|
+
pinnedRatings: boolean;
|
|
28849
|
+
gradientColor: boolean;
|
|
28850
|
+
}, {
|
|
28851
|
+
bio: boolean;
|
|
28852
|
+
profilePicture: boolean;
|
|
28853
|
+
favoriteTeam: boolean;
|
|
28854
|
+
pinnedRatings: boolean;
|
|
28855
|
+
gradientColor: boolean;
|
|
28856
|
+
}>>;
|
|
28637
28857
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
28638
28858
|
id: string;
|
|
28639
28859
|
email: string;
|
|
@@ -31124,6 +31344,26 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31124
31344
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
31125
31345
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
31126
31346
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
31347
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
31348
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
31349
|
+
profilePicture: z.ZodBoolean;
|
|
31350
|
+
bio: z.ZodBoolean;
|
|
31351
|
+
favoriteTeam: z.ZodBoolean;
|
|
31352
|
+
pinnedRatings: z.ZodBoolean;
|
|
31353
|
+
gradientColor: z.ZodBoolean;
|
|
31354
|
+
}, "strip", z.ZodTypeAny, {
|
|
31355
|
+
bio: boolean;
|
|
31356
|
+
profilePicture: boolean;
|
|
31357
|
+
favoriteTeam: boolean;
|
|
31358
|
+
pinnedRatings: boolean;
|
|
31359
|
+
gradientColor: boolean;
|
|
31360
|
+
}, {
|
|
31361
|
+
bio: boolean;
|
|
31362
|
+
profilePicture: boolean;
|
|
31363
|
+
favoriteTeam: boolean;
|
|
31364
|
+
pinnedRatings: boolean;
|
|
31365
|
+
gradientColor: boolean;
|
|
31366
|
+
}>>;
|
|
31127
31367
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
31128
31368
|
id: string;
|
|
31129
31369
|
email: string;
|
|
@@ -33596,6 +33836,26 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33596
33836
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
33597
33837
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
33598
33838
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
33839
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
33840
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
33841
|
+
profilePicture: z.ZodBoolean;
|
|
33842
|
+
bio: z.ZodBoolean;
|
|
33843
|
+
favoriteTeam: z.ZodBoolean;
|
|
33844
|
+
pinnedRatings: z.ZodBoolean;
|
|
33845
|
+
gradientColor: z.ZodBoolean;
|
|
33846
|
+
}, "strip", z.ZodTypeAny, {
|
|
33847
|
+
bio: boolean;
|
|
33848
|
+
profilePicture: boolean;
|
|
33849
|
+
favoriteTeam: boolean;
|
|
33850
|
+
pinnedRatings: boolean;
|
|
33851
|
+
gradientColor: boolean;
|
|
33852
|
+
}, {
|
|
33853
|
+
bio: boolean;
|
|
33854
|
+
profilePicture: boolean;
|
|
33855
|
+
favoriteTeam: boolean;
|
|
33856
|
+
pinnedRatings: boolean;
|
|
33857
|
+
gradientColor: boolean;
|
|
33858
|
+
}>>;
|
|
33599
33859
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
33600
33860
|
id: string;
|
|
33601
33861
|
email: string;
|
|
@@ -36032,6 +36292,26 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36032
36292
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
36033
36293
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
36034
36294
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
36295
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
36296
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
36297
|
+
profilePicture: z.ZodBoolean;
|
|
36298
|
+
bio: z.ZodBoolean;
|
|
36299
|
+
favoriteTeam: z.ZodBoolean;
|
|
36300
|
+
pinnedRatings: z.ZodBoolean;
|
|
36301
|
+
gradientColor: z.ZodBoolean;
|
|
36302
|
+
}, "strip", z.ZodTypeAny, {
|
|
36303
|
+
bio: boolean;
|
|
36304
|
+
profilePicture: boolean;
|
|
36305
|
+
favoriteTeam: boolean;
|
|
36306
|
+
pinnedRatings: boolean;
|
|
36307
|
+
gradientColor: boolean;
|
|
36308
|
+
}, {
|
|
36309
|
+
bio: boolean;
|
|
36310
|
+
profilePicture: boolean;
|
|
36311
|
+
favoriteTeam: boolean;
|
|
36312
|
+
pinnedRatings: boolean;
|
|
36313
|
+
gradientColor: boolean;
|
|
36314
|
+
}>>;
|
|
36035
36315
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
36036
36316
|
id: string;
|
|
36037
36317
|
email: string;
|
|
@@ -38445,6 +38725,26 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38445
38725
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
38446
38726
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
38447
38727
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
38728
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
38729
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
38730
|
+
profilePicture: z.ZodBoolean;
|
|
38731
|
+
bio: z.ZodBoolean;
|
|
38732
|
+
favoriteTeam: z.ZodBoolean;
|
|
38733
|
+
pinnedRatings: z.ZodBoolean;
|
|
38734
|
+
gradientColor: z.ZodBoolean;
|
|
38735
|
+
}, "strip", z.ZodTypeAny, {
|
|
38736
|
+
bio: boolean;
|
|
38737
|
+
profilePicture: boolean;
|
|
38738
|
+
favoriteTeam: boolean;
|
|
38739
|
+
pinnedRatings: boolean;
|
|
38740
|
+
gradientColor: boolean;
|
|
38741
|
+
}, {
|
|
38742
|
+
bio: boolean;
|
|
38743
|
+
profilePicture: boolean;
|
|
38744
|
+
favoriteTeam: boolean;
|
|
38745
|
+
pinnedRatings: boolean;
|
|
38746
|
+
gradientColor: boolean;
|
|
38747
|
+
}>>;
|
|
38448
38748
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
38449
38749
|
id: string;
|
|
38450
38750
|
email: string;
|
|
@@ -40879,6 +41179,26 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40879
41179
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
40880
41180
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
40881
41181
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
41182
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
41183
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
41184
|
+
profilePicture: z.ZodBoolean;
|
|
41185
|
+
bio: z.ZodBoolean;
|
|
41186
|
+
favoriteTeam: z.ZodBoolean;
|
|
41187
|
+
pinnedRatings: z.ZodBoolean;
|
|
41188
|
+
gradientColor: z.ZodBoolean;
|
|
41189
|
+
}, "strip", z.ZodTypeAny, {
|
|
41190
|
+
bio: boolean;
|
|
41191
|
+
profilePicture: boolean;
|
|
41192
|
+
favoriteTeam: boolean;
|
|
41193
|
+
pinnedRatings: boolean;
|
|
41194
|
+
gradientColor: boolean;
|
|
41195
|
+
}, {
|
|
41196
|
+
bio: boolean;
|
|
41197
|
+
profilePicture: boolean;
|
|
41198
|
+
favoriteTeam: boolean;
|
|
41199
|
+
pinnedRatings: boolean;
|
|
41200
|
+
gradientColor: boolean;
|
|
41201
|
+
}>>;
|
|
40882
41202
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
40883
41203
|
id: string;
|
|
40884
41204
|
email: string;
|
|
@@ -43398,6 +43718,26 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43398
43718
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
43399
43719
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
43400
43720
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
43721
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
43722
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
43723
|
+
profilePicture: z.ZodBoolean;
|
|
43724
|
+
bio: z.ZodBoolean;
|
|
43725
|
+
favoriteTeam: z.ZodBoolean;
|
|
43726
|
+
pinnedRatings: z.ZodBoolean;
|
|
43727
|
+
gradientColor: z.ZodBoolean;
|
|
43728
|
+
}, "strip", z.ZodTypeAny, {
|
|
43729
|
+
bio: boolean;
|
|
43730
|
+
profilePicture: boolean;
|
|
43731
|
+
favoriteTeam: boolean;
|
|
43732
|
+
pinnedRatings: boolean;
|
|
43733
|
+
gradientColor: boolean;
|
|
43734
|
+
}, {
|
|
43735
|
+
bio: boolean;
|
|
43736
|
+
profilePicture: boolean;
|
|
43737
|
+
favoriteTeam: boolean;
|
|
43738
|
+
pinnedRatings: boolean;
|
|
43739
|
+
gradientColor: boolean;
|
|
43740
|
+
}>>;
|
|
43401
43741
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
43402
43742
|
id: string;
|
|
43403
43743
|
email: string;
|
|
@@ -45888,6 +46228,26 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45888
46228
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
45889
46229
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
45890
46230
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
46231
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
46232
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
46233
|
+
profilePicture: z.ZodBoolean;
|
|
46234
|
+
bio: z.ZodBoolean;
|
|
46235
|
+
favoriteTeam: z.ZodBoolean;
|
|
46236
|
+
pinnedRatings: z.ZodBoolean;
|
|
46237
|
+
gradientColor: z.ZodBoolean;
|
|
46238
|
+
}, "strip", z.ZodTypeAny, {
|
|
46239
|
+
bio: boolean;
|
|
46240
|
+
profilePicture: boolean;
|
|
46241
|
+
favoriteTeam: boolean;
|
|
46242
|
+
pinnedRatings: boolean;
|
|
46243
|
+
gradientColor: boolean;
|
|
46244
|
+
}, {
|
|
46245
|
+
bio: boolean;
|
|
46246
|
+
profilePicture: boolean;
|
|
46247
|
+
favoriteTeam: boolean;
|
|
46248
|
+
pinnedRatings: boolean;
|
|
46249
|
+
gradientColor: boolean;
|
|
46250
|
+
}>>;
|
|
45891
46251
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
45892
46252
|
id: string;
|
|
45893
46253
|
email: string;
|
|
@@ -48360,6 +48720,26 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48360
48720
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
48361
48721
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
48362
48722
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
48723
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
48724
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
48725
|
+
profilePicture: z.ZodBoolean;
|
|
48726
|
+
bio: z.ZodBoolean;
|
|
48727
|
+
favoriteTeam: z.ZodBoolean;
|
|
48728
|
+
pinnedRatings: z.ZodBoolean;
|
|
48729
|
+
gradientColor: z.ZodBoolean;
|
|
48730
|
+
}, "strip", z.ZodTypeAny, {
|
|
48731
|
+
bio: boolean;
|
|
48732
|
+
profilePicture: boolean;
|
|
48733
|
+
favoriteTeam: boolean;
|
|
48734
|
+
pinnedRatings: boolean;
|
|
48735
|
+
gradientColor: boolean;
|
|
48736
|
+
}, {
|
|
48737
|
+
bio: boolean;
|
|
48738
|
+
profilePicture: boolean;
|
|
48739
|
+
favoriteTeam: boolean;
|
|
48740
|
+
pinnedRatings: boolean;
|
|
48741
|
+
gradientColor: boolean;
|
|
48742
|
+
}>>;
|
|
48363
48743
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
48364
48744
|
id: string;
|
|
48365
48745
|
email: string;
|
|
@@ -49677,6 +50057,26 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
49677
50057
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
49678
50058
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
49679
50059
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
50060
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
50061
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
50062
|
+
profilePicture: z.ZodBoolean;
|
|
50063
|
+
bio: z.ZodBoolean;
|
|
50064
|
+
favoriteTeam: z.ZodBoolean;
|
|
50065
|
+
pinnedRatings: z.ZodBoolean;
|
|
50066
|
+
gradientColor: z.ZodBoolean;
|
|
50067
|
+
}, "strip", z.ZodTypeAny, {
|
|
50068
|
+
bio: boolean;
|
|
50069
|
+
profilePicture: boolean;
|
|
50070
|
+
favoriteTeam: boolean;
|
|
50071
|
+
pinnedRatings: boolean;
|
|
50072
|
+
gradientColor: boolean;
|
|
50073
|
+
}, {
|
|
50074
|
+
bio: boolean;
|
|
50075
|
+
profilePicture: boolean;
|
|
50076
|
+
favoriteTeam: boolean;
|
|
50077
|
+
pinnedRatings: boolean;
|
|
50078
|
+
gradientColor: boolean;
|
|
50079
|
+
}>>;
|
|
49680
50080
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
49681
50081
|
id: string;
|
|
49682
50082
|
email: string;
|
package/dist/schemas/list.d.ts
CHANGED
|
@@ -903,6 +903,26 @@ export declare const listSchema: z.ZodObject<{
|
|
|
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
|
+
gradientColor: z.ZodBoolean;
|
|
913
|
+
}, "strip", z.ZodTypeAny, {
|
|
914
|
+
bio: boolean;
|
|
915
|
+
profilePicture: boolean;
|
|
916
|
+
favoriteTeam: boolean;
|
|
917
|
+
pinnedRatings: boolean;
|
|
918
|
+
gradientColor: boolean;
|
|
919
|
+
}, {
|
|
920
|
+
bio: boolean;
|
|
921
|
+
profilePicture: boolean;
|
|
922
|
+
favoriteTeam: boolean;
|
|
923
|
+
pinnedRatings: boolean;
|
|
924
|
+
gradientColor: boolean;
|
|
925
|
+
}>>;
|
|
906
926
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
907
927
|
id: string;
|
|
908
928
|
email: string;
|
|
@@ -1865,6 +1885,26 @@ export declare const listCreateSchema: z.ZodObject<Omit<{
|
|
|
1865
1885
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
1866
1886
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
1867
1887
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
1888
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
1889
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
1890
|
+
profilePicture: z.ZodBoolean;
|
|
1891
|
+
bio: z.ZodBoolean;
|
|
1892
|
+
favoriteTeam: z.ZodBoolean;
|
|
1893
|
+
pinnedRatings: z.ZodBoolean;
|
|
1894
|
+
gradientColor: z.ZodBoolean;
|
|
1895
|
+
}, "strip", z.ZodTypeAny, {
|
|
1896
|
+
bio: boolean;
|
|
1897
|
+
profilePicture: boolean;
|
|
1898
|
+
favoriteTeam: boolean;
|
|
1899
|
+
pinnedRatings: boolean;
|
|
1900
|
+
gradientColor: boolean;
|
|
1901
|
+
}, {
|
|
1902
|
+
bio: boolean;
|
|
1903
|
+
profilePicture: boolean;
|
|
1904
|
+
favoriteTeam: boolean;
|
|
1905
|
+
pinnedRatings: boolean;
|
|
1906
|
+
gradientColor: boolean;
|
|
1907
|
+
}>>;
|
|
1868
1908
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
1869
1909
|
id: string;
|
|
1870
1910
|
email: string;
|
|
@@ -2819,6 +2859,26 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
2819
2859
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
2820
2860
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
2821
2861
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
2862
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
2863
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
2864
|
+
profilePicture: z.ZodBoolean;
|
|
2865
|
+
bio: z.ZodBoolean;
|
|
2866
|
+
favoriteTeam: z.ZodBoolean;
|
|
2867
|
+
pinnedRatings: z.ZodBoolean;
|
|
2868
|
+
gradientColor: z.ZodBoolean;
|
|
2869
|
+
}, "strip", z.ZodTypeAny, {
|
|
2870
|
+
bio: boolean;
|
|
2871
|
+
profilePicture: boolean;
|
|
2872
|
+
favoriteTeam: boolean;
|
|
2873
|
+
pinnedRatings: boolean;
|
|
2874
|
+
gradientColor: boolean;
|
|
2875
|
+
}, {
|
|
2876
|
+
bio: boolean;
|
|
2877
|
+
profilePicture: boolean;
|
|
2878
|
+
favoriteTeam: boolean;
|
|
2879
|
+
pinnedRatings: boolean;
|
|
2880
|
+
gradientColor: boolean;
|
|
2881
|
+
}>>;
|
|
2822
2882
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
2823
2883
|
id: string;
|
|
2824
2884
|
email: string;
|
|
@@ -3733,6 +3793,26 @@ export declare const listCommentSchema: z.ZodObject<{
|
|
|
3733
3793
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
3734
3794
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
3735
3795
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
3796
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
3797
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
3798
|
+
profilePicture: z.ZodBoolean;
|
|
3799
|
+
bio: z.ZodBoolean;
|
|
3800
|
+
favoriteTeam: z.ZodBoolean;
|
|
3801
|
+
pinnedRatings: z.ZodBoolean;
|
|
3802
|
+
gradientColor: z.ZodBoolean;
|
|
3803
|
+
}, "strip", z.ZodTypeAny, {
|
|
3804
|
+
bio: boolean;
|
|
3805
|
+
profilePicture: boolean;
|
|
3806
|
+
favoriteTeam: boolean;
|
|
3807
|
+
pinnedRatings: boolean;
|
|
3808
|
+
gradientColor: boolean;
|
|
3809
|
+
}, {
|
|
3810
|
+
bio: boolean;
|
|
3811
|
+
profilePicture: boolean;
|
|
3812
|
+
favoriteTeam: boolean;
|
|
3813
|
+
pinnedRatings: boolean;
|
|
3814
|
+
gradientColor: boolean;
|
|
3815
|
+
}>>;
|
|
3736
3816
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
3737
3817
|
id: string;
|
|
3738
3818
|
email: string;
|
|
@@ -4692,6 +4772,26 @@ export declare const listCommentLikeSchema: z.ZodObject<{
|
|
|
4692
4772
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
4693
4773
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
4694
4774
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
4775
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
4776
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
4777
|
+
profilePicture: z.ZodBoolean;
|
|
4778
|
+
bio: z.ZodBoolean;
|
|
4779
|
+
favoriteTeam: z.ZodBoolean;
|
|
4780
|
+
pinnedRatings: z.ZodBoolean;
|
|
4781
|
+
gradientColor: z.ZodBoolean;
|
|
4782
|
+
}, "strip", z.ZodTypeAny, {
|
|
4783
|
+
bio: boolean;
|
|
4784
|
+
profilePicture: boolean;
|
|
4785
|
+
favoriteTeam: boolean;
|
|
4786
|
+
pinnedRatings: boolean;
|
|
4787
|
+
gradientColor: boolean;
|
|
4788
|
+
}, {
|
|
4789
|
+
bio: boolean;
|
|
4790
|
+
profilePicture: boolean;
|
|
4791
|
+
favoriteTeam: boolean;
|
|
4792
|
+
pinnedRatings: boolean;
|
|
4793
|
+
gradientColor: boolean;
|
|
4794
|
+
}>>;
|
|
4695
4795
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
4696
4796
|
id: string;
|
|
4697
4797
|
email: string;
|
|
@@ -916,6 +916,26 @@ export declare const banInfoSchema: z.ZodObject<{
|
|
|
916
916
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
917
917
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
918
918
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
919
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
920
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
921
|
+
profilePicture: z.ZodBoolean;
|
|
922
|
+
bio: z.ZodBoolean;
|
|
923
|
+
favoriteTeam: z.ZodBoolean;
|
|
924
|
+
pinnedRatings: z.ZodBoolean;
|
|
925
|
+
gradientColor: z.ZodBoolean;
|
|
926
|
+
}, "strip", z.ZodTypeAny, {
|
|
927
|
+
bio: boolean;
|
|
928
|
+
profilePicture: boolean;
|
|
929
|
+
favoriteTeam: boolean;
|
|
930
|
+
pinnedRatings: boolean;
|
|
931
|
+
gradientColor: boolean;
|
|
932
|
+
}, {
|
|
933
|
+
bio: boolean;
|
|
934
|
+
profilePicture: boolean;
|
|
935
|
+
favoriteTeam: boolean;
|
|
936
|
+
pinnedRatings: boolean;
|
|
937
|
+
gradientColor: boolean;
|
|
938
|
+
}>>;
|
|
919
939
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
920
940
|
id: string;
|
|
921
941
|
email: string;
|
|
@@ -1857,6 +1877,26 @@ export declare const bannedUserSchema: z.ZodObject<{
|
|
|
1857
1877
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
1858
1878
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
1859
1879
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
1880
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
1881
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
1882
|
+
profilePicture: z.ZodBoolean;
|
|
1883
|
+
bio: z.ZodBoolean;
|
|
1884
|
+
favoriteTeam: z.ZodBoolean;
|
|
1885
|
+
pinnedRatings: z.ZodBoolean;
|
|
1886
|
+
gradientColor: z.ZodBoolean;
|
|
1887
|
+
}, "strip", z.ZodTypeAny, {
|
|
1888
|
+
bio: boolean;
|
|
1889
|
+
profilePicture: boolean;
|
|
1890
|
+
favoriteTeam: boolean;
|
|
1891
|
+
pinnedRatings: boolean;
|
|
1892
|
+
gradientColor: boolean;
|
|
1893
|
+
}, {
|
|
1894
|
+
bio: boolean;
|
|
1895
|
+
profilePicture: boolean;
|
|
1896
|
+
favoriteTeam: boolean;
|
|
1897
|
+
pinnedRatings: boolean;
|
|
1898
|
+
gradientColor: boolean;
|
|
1899
|
+
}>>;
|
|
1860
1900
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
1861
1901
|
id: string;
|
|
1862
1902
|
email: string;
|
|
@@ -2834,6 +2874,26 @@ export declare const bannedUsersResponseSchema: z.ZodObject<{
|
|
|
2834
2874
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
2835
2875
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
2836
2876
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
2877
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
2878
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
2879
|
+
profilePicture: z.ZodBoolean;
|
|
2880
|
+
bio: z.ZodBoolean;
|
|
2881
|
+
favoriteTeam: z.ZodBoolean;
|
|
2882
|
+
pinnedRatings: z.ZodBoolean;
|
|
2883
|
+
gradientColor: z.ZodBoolean;
|
|
2884
|
+
}, "strip", z.ZodTypeAny, {
|
|
2885
|
+
bio: boolean;
|
|
2886
|
+
profilePicture: boolean;
|
|
2887
|
+
favoriteTeam: boolean;
|
|
2888
|
+
pinnedRatings: boolean;
|
|
2889
|
+
gradientColor: boolean;
|
|
2890
|
+
}, {
|
|
2891
|
+
bio: boolean;
|
|
2892
|
+
profilePicture: boolean;
|
|
2893
|
+
favoriteTeam: boolean;
|
|
2894
|
+
pinnedRatings: boolean;
|
|
2895
|
+
gradientColor: boolean;
|
|
2896
|
+
}>>;
|
|
2837
2897
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
2838
2898
|
id: string;
|
|
2839
2899
|
email: string;
|
|
@@ -3855,6 +3915,26 @@ export declare const banStatusResponseSchema: z.ZodObject<{
|
|
|
3855
3915
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
3856
3916
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
3857
3917
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
3918
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
3919
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
3920
|
+
profilePicture: z.ZodBoolean;
|
|
3921
|
+
bio: z.ZodBoolean;
|
|
3922
|
+
favoriteTeam: z.ZodBoolean;
|
|
3923
|
+
pinnedRatings: z.ZodBoolean;
|
|
3924
|
+
gradientColor: z.ZodBoolean;
|
|
3925
|
+
}, "strip", z.ZodTypeAny, {
|
|
3926
|
+
bio: boolean;
|
|
3927
|
+
profilePicture: boolean;
|
|
3928
|
+
favoriteTeam: boolean;
|
|
3929
|
+
pinnedRatings: boolean;
|
|
3930
|
+
gradientColor: boolean;
|
|
3931
|
+
}, {
|
|
3932
|
+
bio: boolean;
|
|
3933
|
+
profilePicture: boolean;
|
|
3934
|
+
favoriteTeam: boolean;
|
|
3935
|
+
pinnedRatings: boolean;
|
|
3936
|
+
gradientColor: boolean;
|
|
3937
|
+
}>>;
|
|
3858
3938
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
3859
3939
|
id: string;
|
|
3860
3940
|
email: string;
|
package/dist/schemas/rating.d.ts
CHANGED
|
@@ -1819,6 +1819,26 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1819
1819
|
banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1820
1820
|
lowercaseUsername: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1821
1821
|
headerColor: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1822
|
+
profileCompletionTrackerDismissed: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1823
|
+
profileCompletionStatus: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1824
|
+
profilePicture: import("zod").ZodBoolean;
|
|
1825
|
+
bio: import("zod").ZodBoolean;
|
|
1826
|
+
favoriteTeam: import("zod").ZodBoolean;
|
|
1827
|
+
pinnedRatings: import("zod").ZodBoolean;
|
|
1828
|
+
gradientColor: import("zod").ZodBoolean;
|
|
1829
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1830
|
+
bio: boolean;
|
|
1831
|
+
profilePicture: boolean;
|
|
1832
|
+
favoriteTeam: boolean;
|
|
1833
|
+
pinnedRatings: boolean;
|
|
1834
|
+
gradientColor: boolean;
|
|
1835
|
+
}, {
|
|
1836
|
+
bio: boolean;
|
|
1837
|
+
profilePicture: boolean;
|
|
1838
|
+
favoriteTeam: boolean;
|
|
1839
|
+
pinnedRatings: boolean;
|
|
1840
|
+
gradientColor: boolean;
|
|
1841
|
+
}>>;
|
|
1822
1842
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", import("zod").ZodTypeAny, {
|
|
1823
1843
|
id: string;
|
|
1824
1844
|
email: string;
|
|
@@ -2733,6 +2753,26 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
2733
2753
|
banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2734
2754
|
lowercaseUsername: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2735
2755
|
headerColor: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2756
|
+
profileCompletionTrackerDismissed: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2757
|
+
profileCompletionStatus: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
2758
|
+
profilePicture: import("zod").ZodBoolean;
|
|
2759
|
+
bio: import("zod").ZodBoolean;
|
|
2760
|
+
favoriteTeam: import("zod").ZodBoolean;
|
|
2761
|
+
pinnedRatings: import("zod").ZodBoolean;
|
|
2762
|
+
gradientColor: import("zod").ZodBoolean;
|
|
2763
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
2764
|
+
bio: boolean;
|
|
2765
|
+
profilePicture: boolean;
|
|
2766
|
+
favoriteTeam: boolean;
|
|
2767
|
+
pinnedRatings: boolean;
|
|
2768
|
+
gradientColor: boolean;
|
|
2769
|
+
}, {
|
|
2770
|
+
bio: boolean;
|
|
2771
|
+
profilePicture: boolean;
|
|
2772
|
+
favoriteTeam: boolean;
|
|
2773
|
+
pinnedRatings: boolean;
|
|
2774
|
+
gradientColor: boolean;
|
|
2775
|
+
}>>;
|
|
2736
2776
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", import("zod").ZodTypeAny, {
|
|
2737
2777
|
id: string;
|
|
2738
2778
|
email: string;
|
|
@@ -3718,6 +3758,26 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
|
|
|
3718
3758
|
banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3719
3759
|
lowercaseUsername: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3720
3760
|
headerColor: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3761
|
+
profileCompletionTrackerDismissed: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3762
|
+
profileCompletionStatus: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
3763
|
+
profilePicture: import("zod").ZodBoolean;
|
|
3764
|
+
bio: import("zod").ZodBoolean;
|
|
3765
|
+
favoriteTeam: import("zod").ZodBoolean;
|
|
3766
|
+
pinnedRatings: import("zod").ZodBoolean;
|
|
3767
|
+
gradientColor: import("zod").ZodBoolean;
|
|
3768
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
3769
|
+
bio: boolean;
|
|
3770
|
+
profilePicture: boolean;
|
|
3771
|
+
favoriteTeam: boolean;
|
|
3772
|
+
pinnedRatings: boolean;
|
|
3773
|
+
gradientColor: boolean;
|
|
3774
|
+
}, {
|
|
3775
|
+
bio: boolean;
|
|
3776
|
+
profilePicture: boolean;
|
|
3777
|
+
favoriteTeam: boolean;
|
|
3778
|
+
pinnedRatings: boolean;
|
|
3779
|
+
gradientColor: boolean;
|
|
3780
|
+
}>>;
|
|
3721
3781
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", import("zod").ZodTypeAny, {
|
|
3722
3782
|
id: string;
|
|
3723
3783
|
email: string;
|
package/dist/schemas/user.d.ts
CHANGED
|
@@ -1094,6 +1094,26 @@ export declare const userSchema: import("zod").ZodObject<{
|
|
|
1094
1094
|
banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1095
1095
|
lowercaseUsername: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1096
1096
|
headerColor: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1097
|
+
profileCompletionTrackerDismissed: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1098
|
+
profileCompletionStatus: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1099
|
+
profilePicture: import("zod").ZodBoolean;
|
|
1100
|
+
bio: import("zod").ZodBoolean;
|
|
1101
|
+
favoriteTeam: import("zod").ZodBoolean;
|
|
1102
|
+
pinnedRatings: import("zod").ZodBoolean;
|
|
1103
|
+
gradientColor: import("zod").ZodBoolean;
|
|
1104
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1105
|
+
bio: boolean;
|
|
1106
|
+
profilePicture: boolean;
|
|
1107
|
+
favoriteTeam: boolean;
|
|
1108
|
+
pinnedRatings: boolean;
|
|
1109
|
+
gradientColor: boolean;
|
|
1110
|
+
}, {
|
|
1111
|
+
bio: boolean;
|
|
1112
|
+
profilePicture: boolean;
|
|
1113
|
+
favoriteTeam: boolean;
|
|
1114
|
+
pinnedRatings: boolean;
|
|
1115
|
+
gradientColor: boolean;
|
|
1116
|
+
}>>;
|
|
1097
1117
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1098
1118
|
id: string;
|
|
1099
1119
|
email: string;
|
|
@@ -1308,6 +1328,14 @@ export declare const userSchema: import("zod").ZodObject<{
|
|
|
1308
1328
|
banned?: boolean | undefined;
|
|
1309
1329
|
lowercaseUsername?: string | undefined;
|
|
1310
1330
|
headerColor?: string | undefined;
|
|
1331
|
+
profileCompletionTrackerDismissed?: boolean | undefined;
|
|
1332
|
+
profileCompletionStatus?: {
|
|
1333
|
+
bio: boolean;
|
|
1334
|
+
profilePicture: boolean;
|
|
1335
|
+
favoriteTeam: boolean;
|
|
1336
|
+
pinnedRatings: boolean;
|
|
1337
|
+
gradientColor: boolean;
|
|
1338
|
+
} | undefined;
|
|
1311
1339
|
}, {
|
|
1312
1340
|
id: string;
|
|
1313
1341
|
email: string;
|
|
@@ -1522,6 +1550,14 @@ export declare const userSchema: import("zod").ZodObject<{
|
|
|
1522
1550
|
banned?: boolean | undefined;
|
|
1523
1551
|
lowercaseUsername?: string | undefined;
|
|
1524
1552
|
headerColor?: string | undefined;
|
|
1553
|
+
profileCompletionTrackerDismissed?: boolean | undefined;
|
|
1554
|
+
profileCompletionStatus?: {
|
|
1555
|
+
bio: boolean;
|
|
1556
|
+
profilePicture: boolean;
|
|
1557
|
+
favoriteTeam: boolean;
|
|
1558
|
+
pinnedRatings: boolean;
|
|
1559
|
+
gradientColor: boolean;
|
|
1560
|
+
} | undefined;
|
|
1525
1561
|
}>;
|
|
1526
1562
|
export declare const createUserSchema: import("zod").ZodObject<Omit<{
|
|
1527
1563
|
id: import("zod").ZodString;
|
|
@@ -2421,6 +2457,26 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
|
|
|
2421
2457
|
banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2422
2458
|
lowercaseUsername: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2423
2459
|
headerColor: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2460
|
+
profileCompletionTrackerDismissed: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2461
|
+
profileCompletionStatus: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
2462
|
+
profilePicture: import("zod").ZodBoolean;
|
|
2463
|
+
bio: import("zod").ZodBoolean;
|
|
2464
|
+
favoriteTeam: import("zod").ZodBoolean;
|
|
2465
|
+
pinnedRatings: import("zod").ZodBoolean;
|
|
2466
|
+
gradientColor: import("zod").ZodBoolean;
|
|
2467
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
2468
|
+
bio: boolean;
|
|
2469
|
+
profilePicture: boolean;
|
|
2470
|
+
favoriteTeam: boolean;
|
|
2471
|
+
pinnedRatings: boolean;
|
|
2472
|
+
gradientColor: boolean;
|
|
2473
|
+
}, {
|
|
2474
|
+
bio: boolean;
|
|
2475
|
+
profilePicture: boolean;
|
|
2476
|
+
favoriteTeam: boolean;
|
|
2477
|
+
pinnedRatings: boolean;
|
|
2478
|
+
gradientColor: boolean;
|
|
2479
|
+
}>>;
|
|
2424
2480
|
}, "id" | "totalRatedGames" | "avgRating" | "createdAt" | "updatedAt" | "deviceTokens" | "askedForPushNotifications" | "acceptedPushNotifications">, "strip", import("zod").ZodTypeAny, {
|
|
2425
2481
|
email: string;
|
|
2426
2482
|
username: string;
|
|
@@ -2624,6 +2680,14 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
|
|
|
2624
2680
|
banned?: boolean | undefined;
|
|
2625
2681
|
lowercaseUsername?: string | undefined;
|
|
2626
2682
|
headerColor?: string | undefined;
|
|
2683
|
+
profileCompletionTrackerDismissed?: boolean | undefined;
|
|
2684
|
+
profileCompletionStatus?: {
|
|
2685
|
+
bio: boolean;
|
|
2686
|
+
profilePicture: boolean;
|
|
2687
|
+
favoriteTeam: boolean;
|
|
2688
|
+
pinnedRatings: boolean;
|
|
2689
|
+
gradientColor: boolean;
|
|
2690
|
+
} | undefined;
|
|
2627
2691
|
}, {
|
|
2628
2692
|
email: string;
|
|
2629
2693
|
username: string;
|
|
@@ -2827,6 +2891,14 @@ export declare const createUserSchema: import("zod").ZodObject<Omit<{
|
|
|
2827
2891
|
banned?: boolean | undefined;
|
|
2828
2892
|
lowercaseUsername?: string | undefined;
|
|
2829
2893
|
headerColor?: string | undefined;
|
|
2894
|
+
profileCompletionTrackerDismissed?: boolean | undefined;
|
|
2895
|
+
profileCompletionStatus?: {
|
|
2896
|
+
bio: boolean;
|
|
2897
|
+
profilePicture: boolean;
|
|
2898
|
+
favoriteTeam: boolean;
|
|
2899
|
+
pinnedRatings: boolean;
|
|
2900
|
+
gradientColor: boolean;
|
|
2901
|
+
} | undefined;
|
|
2830
2902
|
}>;
|
|
2831
2903
|
export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
|
|
2832
2904
|
id: import("zod").ZodString;
|
|
@@ -3726,6 +3798,26 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
|
|
|
3726
3798
|
banned: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3727
3799
|
lowercaseUsername: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3728
3800
|
headerColor: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3801
|
+
profileCompletionTrackerDismissed: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3802
|
+
profileCompletionStatus: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
3803
|
+
profilePicture: import("zod").ZodBoolean;
|
|
3804
|
+
bio: import("zod").ZodBoolean;
|
|
3805
|
+
favoriteTeam: import("zod").ZodBoolean;
|
|
3806
|
+
pinnedRatings: import("zod").ZodBoolean;
|
|
3807
|
+
gradientColor: import("zod").ZodBoolean;
|
|
3808
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
3809
|
+
bio: boolean;
|
|
3810
|
+
profilePicture: boolean;
|
|
3811
|
+
favoriteTeam: boolean;
|
|
3812
|
+
pinnedRatings: boolean;
|
|
3813
|
+
gradientColor: boolean;
|
|
3814
|
+
}, {
|
|
3815
|
+
bio: boolean;
|
|
3816
|
+
profilePicture: boolean;
|
|
3817
|
+
favoriteTeam: boolean;
|
|
3818
|
+
pinnedRatings: boolean;
|
|
3819
|
+
gradientColor: boolean;
|
|
3820
|
+
}>>;
|
|
3729
3821
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", import("zod").ZodTypeAny, {
|
|
3730
3822
|
id: string;
|
|
3731
3823
|
email: string;
|
package/dist/schemas/user.js
CHANGED
|
@@ -212,6 +212,14 @@ exports.userSchema = (0, zod_1.object)({
|
|
|
212
212
|
banned: (0, zod_1.boolean)().optional(),
|
|
213
213
|
lowercaseUsername: (0, zod_1.string)().optional(),
|
|
214
214
|
headerColor: (0, zod_1.string)().optional(),
|
|
215
|
+
profileCompletionTrackerDismissed: (0, zod_1.boolean)().optional(),
|
|
216
|
+
profileCompletionStatus: (0, zod_1.object)({
|
|
217
|
+
profilePicture: (0, zod_1.boolean)(),
|
|
218
|
+
bio: (0, zod_1.boolean)(),
|
|
219
|
+
favoriteTeam: (0, zod_1.boolean)(),
|
|
220
|
+
pinnedRatings: (0, zod_1.boolean)(),
|
|
221
|
+
gradientColor: (0, zod_1.boolean)(),
|
|
222
|
+
}).optional(),
|
|
215
223
|
});
|
|
216
224
|
exports.createUserSchema = exports.userSchema.omit({
|
|
217
225
|
id: true,
|
|
@@ -1002,6 +1002,26 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
1002
1002
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
1003
1003
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
1004
1004
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
1005
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
1006
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
1007
|
+
profilePicture: z.ZodBoolean;
|
|
1008
|
+
bio: z.ZodBoolean;
|
|
1009
|
+
favoriteTeam: z.ZodBoolean;
|
|
1010
|
+
pinnedRatings: z.ZodBoolean;
|
|
1011
|
+
gradientColor: z.ZodBoolean;
|
|
1012
|
+
}, "strip", z.ZodTypeAny, {
|
|
1013
|
+
bio: boolean;
|
|
1014
|
+
profilePicture: boolean;
|
|
1015
|
+
favoriteTeam: boolean;
|
|
1016
|
+
pinnedRatings: boolean;
|
|
1017
|
+
gradientColor: boolean;
|
|
1018
|
+
}, {
|
|
1019
|
+
bio: boolean;
|
|
1020
|
+
profilePicture: boolean;
|
|
1021
|
+
favoriteTeam: boolean;
|
|
1022
|
+
pinnedRatings: boolean;
|
|
1023
|
+
gradientColor: boolean;
|
|
1024
|
+
}>>;
|
|
1005
1025
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
1006
1026
|
id: string;
|
|
1007
1027
|
email: string;
|
|
@@ -1916,6 +1936,26 @@ export declare const userEventCommentSchema: z.ZodObject<{
|
|
|
1916
1936
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
1917
1937
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
1918
1938
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
1939
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
1940
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
1941
|
+
profilePicture: z.ZodBoolean;
|
|
1942
|
+
bio: z.ZodBoolean;
|
|
1943
|
+
favoriteTeam: z.ZodBoolean;
|
|
1944
|
+
pinnedRatings: z.ZodBoolean;
|
|
1945
|
+
gradientColor: z.ZodBoolean;
|
|
1946
|
+
}, "strip", z.ZodTypeAny, {
|
|
1947
|
+
bio: boolean;
|
|
1948
|
+
profilePicture: boolean;
|
|
1949
|
+
favoriteTeam: boolean;
|
|
1950
|
+
pinnedRatings: boolean;
|
|
1951
|
+
gradientColor: boolean;
|
|
1952
|
+
}, {
|
|
1953
|
+
bio: boolean;
|
|
1954
|
+
profilePicture: boolean;
|
|
1955
|
+
favoriteTeam: boolean;
|
|
1956
|
+
pinnedRatings: boolean;
|
|
1957
|
+
gradientColor: boolean;
|
|
1958
|
+
}>>;
|
|
1919
1959
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
1920
1960
|
id: string;
|
|
1921
1961
|
email: string;
|
|
@@ -2883,6 +2923,26 @@ export declare const userEventCommentLikeSchema: z.ZodObject<{
|
|
|
2883
2923
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
2884
2924
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
2885
2925
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
2926
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
2927
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
2928
|
+
profilePicture: z.ZodBoolean;
|
|
2929
|
+
bio: z.ZodBoolean;
|
|
2930
|
+
favoriteTeam: z.ZodBoolean;
|
|
2931
|
+
pinnedRatings: z.ZodBoolean;
|
|
2932
|
+
gradientColor: z.ZodBoolean;
|
|
2933
|
+
}, "strip", z.ZodTypeAny, {
|
|
2934
|
+
bio: boolean;
|
|
2935
|
+
profilePicture: boolean;
|
|
2936
|
+
favoriteTeam: boolean;
|
|
2937
|
+
pinnedRatings: boolean;
|
|
2938
|
+
gradientColor: boolean;
|
|
2939
|
+
}, {
|
|
2940
|
+
bio: boolean;
|
|
2941
|
+
profilePicture: boolean;
|
|
2942
|
+
favoriteTeam: boolean;
|
|
2943
|
+
pinnedRatings: boolean;
|
|
2944
|
+
gradientColor: boolean;
|
|
2945
|
+
}>>;
|
|
2886
2946
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
2887
2947
|
id: string;
|
|
2888
2948
|
email: string;
|
package/dist/schemas/voting.d.ts
CHANGED
|
@@ -899,6 +899,26 @@ export declare const playerVoteSchema: z.ZodObject<{
|
|
|
899
899
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
900
900
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
901
901
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
902
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
903
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
904
|
+
profilePicture: z.ZodBoolean;
|
|
905
|
+
bio: z.ZodBoolean;
|
|
906
|
+
favoriteTeam: z.ZodBoolean;
|
|
907
|
+
pinnedRatings: z.ZodBoolean;
|
|
908
|
+
gradientColor: z.ZodBoolean;
|
|
909
|
+
}, "strip", z.ZodTypeAny, {
|
|
910
|
+
bio: boolean;
|
|
911
|
+
profilePicture: boolean;
|
|
912
|
+
favoriteTeam: boolean;
|
|
913
|
+
pinnedRatings: boolean;
|
|
914
|
+
gradientColor: boolean;
|
|
915
|
+
}, {
|
|
916
|
+
bio: boolean;
|
|
917
|
+
profilePicture: boolean;
|
|
918
|
+
favoriteTeam: boolean;
|
|
919
|
+
pinnedRatings: boolean;
|
|
920
|
+
gradientColor: boolean;
|
|
921
|
+
}>>;
|
|
902
922
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
903
923
|
id: string;
|
|
904
924
|
email: string;
|
|
@@ -1931,6 +1951,26 @@ export declare const voteSubmissionDtoSchema: z.ZodObject<{
|
|
|
1931
1951
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
1932
1952
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
1933
1953
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
1954
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
1955
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
1956
|
+
profilePicture: z.ZodBoolean;
|
|
1957
|
+
bio: z.ZodBoolean;
|
|
1958
|
+
favoriteTeam: z.ZodBoolean;
|
|
1959
|
+
pinnedRatings: z.ZodBoolean;
|
|
1960
|
+
gradientColor: z.ZodBoolean;
|
|
1961
|
+
}, "strip", z.ZodTypeAny, {
|
|
1962
|
+
bio: boolean;
|
|
1963
|
+
profilePicture: boolean;
|
|
1964
|
+
favoriteTeam: boolean;
|
|
1965
|
+
pinnedRatings: boolean;
|
|
1966
|
+
gradientColor: boolean;
|
|
1967
|
+
}, {
|
|
1968
|
+
bio: boolean;
|
|
1969
|
+
profilePicture: boolean;
|
|
1970
|
+
favoriteTeam: boolean;
|
|
1971
|
+
pinnedRatings: boolean;
|
|
1972
|
+
gradientColor: boolean;
|
|
1973
|
+
}>>;
|
|
1934
1974
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
1935
1975
|
id: string;
|
|
1936
1976
|
email: string;
|
|
@@ -3447,6 +3487,26 @@ export declare const userVoteResponseDtoSchema: z.ZodObject<{
|
|
|
3447
3487
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
3448
3488
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
3449
3489
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
3490
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
3491
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
3492
|
+
profilePicture: z.ZodBoolean;
|
|
3493
|
+
bio: z.ZodBoolean;
|
|
3494
|
+
favoriteTeam: z.ZodBoolean;
|
|
3495
|
+
pinnedRatings: z.ZodBoolean;
|
|
3496
|
+
gradientColor: z.ZodBoolean;
|
|
3497
|
+
}, "strip", z.ZodTypeAny, {
|
|
3498
|
+
bio: boolean;
|
|
3499
|
+
profilePicture: boolean;
|
|
3500
|
+
favoriteTeam: boolean;
|
|
3501
|
+
pinnedRatings: boolean;
|
|
3502
|
+
gradientColor: boolean;
|
|
3503
|
+
}, {
|
|
3504
|
+
bio: boolean;
|
|
3505
|
+
profilePicture: boolean;
|
|
3506
|
+
favoriteTeam: boolean;
|
|
3507
|
+
pinnedRatings: boolean;
|
|
3508
|
+
gradientColor: boolean;
|
|
3509
|
+
}>>;
|
|
3450
3510
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
3451
3511
|
id: string;
|
|
3452
3512
|
email: string;
|