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/game.d.ts
CHANGED
|
@@ -4170,6 +4170,29 @@ 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
|
+
favoriteGames: z.ZodBoolean;
|
|
4180
|
+
gradientColor: z.ZodBoolean;
|
|
4181
|
+
}, "strip", z.ZodTypeAny, {
|
|
4182
|
+
bio: boolean;
|
|
4183
|
+
profilePicture: boolean;
|
|
4184
|
+
favoriteTeam: boolean;
|
|
4185
|
+
pinnedRatings: boolean;
|
|
4186
|
+
favoriteGames: boolean;
|
|
4187
|
+
gradientColor: boolean;
|
|
4188
|
+
}, {
|
|
4189
|
+
bio: boolean;
|
|
4190
|
+
profilePicture: boolean;
|
|
4191
|
+
favoriteTeam: boolean;
|
|
4192
|
+
pinnedRatings: boolean;
|
|
4193
|
+
favoriteGames: boolean;
|
|
4194
|
+
gradientColor: boolean;
|
|
4195
|
+
}>>;
|
|
4173
4196
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
4174
4197
|
id: string;
|
|
4175
4198
|
email: string;
|
|
@@ -6536,6 +6559,29 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6536
6559
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
6537
6560
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
6538
6561
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
6562
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
6563
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
6564
|
+
profilePicture: z.ZodBoolean;
|
|
6565
|
+
bio: z.ZodBoolean;
|
|
6566
|
+
favoriteTeam: z.ZodBoolean;
|
|
6567
|
+
pinnedRatings: z.ZodBoolean;
|
|
6568
|
+
favoriteGames: z.ZodBoolean;
|
|
6569
|
+
gradientColor: z.ZodBoolean;
|
|
6570
|
+
}, "strip", z.ZodTypeAny, {
|
|
6571
|
+
bio: boolean;
|
|
6572
|
+
profilePicture: boolean;
|
|
6573
|
+
favoriteTeam: boolean;
|
|
6574
|
+
pinnedRatings: boolean;
|
|
6575
|
+
favoriteGames: boolean;
|
|
6576
|
+
gradientColor: boolean;
|
|
6577
|
+
}, {
|
|
6578
|
+
bio: boolean;
|
|
6579
|
+
profilePicture: boolean;
|
|
6580
|
+
favoriteTeam: boolean;
|
|
6581
|
+
pinnedRatings: boolean;
|
|
6582
|
+
favoriteGames: boolean;
|
|
6583
|
+
gradientColor: boolean;
|
|
6584
|
+
}>>;
|
|
6539
6585
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
6540
6586
|
id: string;
|
|
6541
6587
|
email: string;
|
|
@@ -8963,6 +9009,29 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8963
9009
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
8964
9010
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
8965
9011
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
9012
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
9013
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
9014
|
+
profilePicture: z.ZodBoolean;
|
|
9015
|
+
bio: z.ZodBoolean;
|
|
9016
|
+
favoriteTeam: z.ZodBoolean;
|
|
9017
|
+
pinnedRatings: z.ZodBoolean;
|
|
9018
|
+
favoriteGames: z.ZodBoolean;
|
|
9019
|
+
gradientColor: z.ZodBoolean;
|
|
9020
|
+
}, "strip", z.ZodTypeAny, {
|
|
9021
|
+
bio: boolean;
|
|
9022
|
+
profilePicture: boolean;
|
|
9023
|
+
favoriteTeam: boolean;
|
|
9024
|
+
pinnedRatings: boolean;
|
|
9025
|
+
favoriteGames: boolean;
|
|
9026
|
+
gradientColor: boolean;
|
|
9027
|
+
}, {
|
|
9028
|
+
bio: boolean;
|
|
9029
|
+
profilePicture: boolean;
|
|
9030
|
+
favoriteTeam: boolean;
|
|
9031
|
+
pinnedRatings: boolean;
|
|
9032
|
+
favoriteGames: boolean;
|
|
9033
|
+
gradientColor: boolean;
|
|
9034
|
+
}>>;
|
|
8966
9035
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
8967
9036
|
id: string;
|
|
8968
9037
|
email: string;
|
|
@@ -11398,6 +11467,29 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11398
11467
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
11399
11468
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
11400
11469
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
11470
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
11471
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
11472
|
+
profilePicture: z.ZodBoolean;
|
|
11473
|
+
bio: z.ZodBoolean;
|
|
11474
|
+
favoriteTeam: z.ZodBoolean;
|
|
11475
|
+
pinnedRatings: z.ZodBoolean;
|
|
11476
|
+
favoriteGames: z.ZodBoolean;
|
|
11477
|
+
gradientColor: z.ZodBoolean;
|
|
11478
|
+
}, "strip", z.ZodTypeAny, {
|
|
11479
|
+
bio: boolean;
|
|
11480
|
+
profilePicture: boolean;
|
|
11481
|
+
favoriteTeam: boolean;
|
|
11482
|
+
pinnedRatings: boolean;
|
|
11483
|
+
favoriteGames: boolean;
|
|
11484
|
+
gradientColor: boolean;
|
|
11485
|
+
}, {
|
|
11486
|
+
bio: boolean;
|
|
11487
|
+
profilePicture: boolean;
|
|
11488
|
+
favoriteTeam: boolean;
|
|
11489
|
+
pinnedRatings: boolean;
|
|
11490
|
+
favoriteGames: boolean;
|
|
11491
|
+
gradientColor: boolean;
|
|
11492
|
+
}>>;
|
|
11401
11493
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
11402
11494
|
id: string;
|
|
11403
11495
|
email: string;
|
|
@@ -13918,6 +14010,29 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13918
14010
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
13919
14011
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
13920
14012
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
14013
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
14014
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
14015
|
+
profilePicture: z.ZodBoolean;
|
|
14016
|
+
bio: z.ZodBoolean;
|
|
14017
|
+
favoriteTeam: z.ZodBoolean;
|
|
14018
|
+
pinnedRatings: z.ZodBoolean;
|
|
14019
|
+
favoriteGames: z.ZodBoolean;
|
|
14020
|
+
gradientColor: z.ZodBoolean;
|
|
14021
|
+
}, "strip", z.ZodTypeAny, {
|
|
14022
|
+
bio: boolean;
|
|
14023
|
+
profilePicture: boolean;
|
|
14024
|
+
favoriteTeam: boolean;
|
|
14025
|
+
pinnedRatings: boolean;
|
|
14026
|
+
favoriteGames: boolean;
|
|
14027
|
+
gradientColor: boolean;
|
|
14028
|
+
}, {
|
|
14029
|
+
bio: boolean;
|
|
14030
|
+
profilePicture: boolean;
|
|
14031
|
+
favoriteTeam: boolean;
|
|
14032
|
+
pinnedRatings: boolean;
|
|
14033
|
+
favoriteGames: boolean;
|
|
14034
|
+
gradientColor: boolean;
|
|
14035
|
+
}>>;
|
|
13921
14036
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
13922
14037
|
id: string;
|
|
13923
14038
|
email: string;
|
|
@@ -16409,6 +16524,29 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
16409
16524
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
16410
16525
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
16411
16526
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
16527
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
16528
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
16529
|
+
profilePicture: z.ZodBoolean;
|
|
16530
|
+
bio: z.ZodBoolean;
|
|
16531
|
+
favoriteTeam: z.ZodBoolean;
|
|
16532
|
+
pinnedRatings: z.ZodBoolean;
|
|
16533
|
+
favoriteGames: z.ZodBoolean;
|
|
16534
|
+
gradientColor: z.ZodBoolean;
|
|
16535
|
+
}, "strip", z.ZodTypeAny, {
|
|
16536
|
+
bio: boolean;
|
|
16537
|
+
profilePicture: boolean;
|
|
16538
|
+
favoriteTeam: boolean;
|
|
16539
|
+
pinnedRatings: boolean;
|
|
16540
|
+
favoriteGames: boolean;
|
|
16541
|
+
gradientColor: boolean;
|
|
16542
|
+
}, {
|
|
16543
|
+
bio: boolean;
|
|
16544
|
+
profilePicture: boolean;
|
|
16545
|
+
favoriteTeam: boolean;
|
|
16546
|
+
pinnedRatings: boolean;
|
|
16547
|
+
favoriteGames: boolean;
|
|
16548
|
+
gradientColor: boolean;
|
|
16549
|
+
}>>;
|
|
16412
16550
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
16413
16551
|
id: string;
|
|
16414
16552
|
email: string;
|
|
@@ -18882,6 +19020,29 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
18882
19020
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
18883
19021
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
18884
19022
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
19023
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
19024
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
19025
|
+
profilePicture: z.ZodBoolean;
|
|
19026
|
+
bio: z.ZodBoolean;
|
|
19027
|
+
favoriteTeam: z.ZodBoolean;
|
|
19028
|
+
pinnedRatings: z.ZodBoolean;
|
|
19029
|
+
favoriteGames: z.ZodBoolean;
|
|
19030
|
+
gradientColor: z.ZodBoolean;
|
|
19031
|
+
}, "strip", z.ZodTypeAny, {
|
|
19032
|
+
bio: boolean;
|
|
19033
|
+
profilePicture: boolean;
|
|
19034
|
+
favoriteTeam: boolean;
|
|
19035
|
+
pinnedRatings: boolean;
|
|
19036
|
+
favoriteGames: boolean;
|
|
19037
|
+
gradientColor: boolean;
|
|
19038
|
+
}, {
|
|
19039
|
+
bio: boolean;
|
|
19040
|
+
profilePicture: boolean;
|
|
19041
|
+
favoriteTeam: boolean;
|
|
19042
|
+
pinnedRatings: boolean;
|
|
19043
|
+
favoriteGames: boolean;
|
|
19044
|
+
gradientColor: boolean;
|
|
19045
|
+
}>>;
|
|
18885
19046
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
18886
19047
|
id: string;
|
|
18887
19048
|
email: string;
|
|
@@ -21268,6 +21429,29 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
21268
21429
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
21269
21430
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
21270
21431
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
21432
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
21433
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
21434
|
+
profilePicture: z.ZodBoolean;
|
|
21435
|
+
bio: z.ZodBoolean;
|
|
21436
|
+
favoriteTeam: z.ZodBoolean;
|
|
21437
|
+
pinnedRatings: z.ZodBoolean;
|
|
21438
|
+
favoriteGames: z.ZodBoolean;
|
|
21439
|
+
gradientColor: z.ZodBoolean;
|
|
21440
|
+
}, "strip", z.ZodTypeAny, {
|
|
21441
|
+
bio: boolean;
|
|
21442
|
+
profilePicture: boolean;
|
|
21443
|
+
favoriteTeam: boolean;
|
|
21444
|
+
pinnedRatings: boolean;
|
|
21445
|
+
favoriteGames: boolean;
|
|
21446
|
+
gradientColor: boolean;
|
|
21447
|
+
}, {
|
|
21448
|
+
bio: boolean;
|
|
21449
|
+
profilePicture: boolean;
|
|
21450
|
+
favoriteTeam: boolean;
|
|
21451
|
+
pinnedRatings: boolean;
|
|
21452
|
+
favoriteGames: boolean;
|
|
21453
|
+
gradientColor: boolean;
|
|
21454
|
+
}>>;
|
|
21271
21455
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
21272
21456
|
id: string;
|
|
21273
21457
|
email: string;
|
|
@@ -23681,6 +23865,29 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
23681
23865
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
23682
23866
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
23683
23867
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
23868
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
23869
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
23870
|
+
profilePicture: z.ZodBoolean;
|
|
23871
|
+
bio: z.ZodBoolean;
|
|
23872
|
+
favoriteTeam: z.ZodBoolean;
|
|
23873
|
+
pinnedRatings: z.ZodBoolean;
|
|
23874
|
+
favoriteGames: z.ZodBoolean;
|
|
23875
|
+
gradientColor: z.ZodBoolean;
|
|
23876
|
+
}, "strip", z.ZodTypeAny, {
|
|
23877
|
+
bio: boolean;
|
|
23878
|
+
profilePicture: boolean;
|
|
23879
|
+
favoriteTeam: boolean;
|
|
23880
|
+
pinnedRatings: boolean;
|
|
23881
|
+
favoriteGames: boolean;
|
|
23882
|
+
gradientColor: boolean;
|
|
23883
|
+
}, {
|
|
23884
|
+
bio: boolean;
|
|
23885
|
+
profilePicture: boolean;
|
|
23886
|
+
favoriteTeam: boolean;
|
|
23887
|
+
pinnedRatings: boolean;
|
|
23888
|
+
favoriteGames: boolean;
|
|
23889
|
+
gradientColor: boolean;
|
|
23890
|
+
}>>;
|
|
23684
23891
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
23685
23892
|
id: string;
|
|
23686
23893
|
email: string;
|
|
@@ -26115,6 +26322,29 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26115
26322
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
26116
26323
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
26117
26324
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
26325
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
26326
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
26327
|
+
profilePicture: z.ZodBoolean;
|
|
26328
|
+
bio: z.ZodBoolean;
|
|
26329
|
+
favoriteTeam: z.ZodBoolean;
|
|
26330
|
+
pinnedRatings: z.ZodBoolean;
|
|
26331
|
+
favoriteGames: z.ZodBoolean;
|
|
26332
|
+
gradientColor: z.ZodBoolean;
|
|
26333
|
+
}, "strip", z.ZodTypeAny, {
|
|
26334
|
+
bio: boolean;
|
|
26335
|
+
profilePicture: boolean;
|
|
26336
|
+
favoriteTeam: boolean;
|
|
26337
|
+
pinnedRatings: boolean;
|
|
26338
|
+
favoriteGames: boolean;
|
|
26339
|
+
gradientColor: boolean;
|
|
26340
|
+
}, {
|
|
26341
|
+
bio: boolean;
|
|
26342
|
+
profilePicture: boolean;
|
|
26343
|
+
favoriteTeam: boolean;
|
|
26344
|
+
pinnedRatings: boolean;
|
|
26345
|
+
favoriteGames: boolean;
|
|
26346
|
+
gradientColor: boolean;
|
|
26347
|
+
}>>;
|
|
26118
26348
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
26119
26349
|
id: string;
|
|
26120
26350
|
email: string;
|
|
@@ -28634,6 +28864,29 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28634
28864
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
28635
28865
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
28636
28866
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
28867
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
28868
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
28869
|
+
profilePicture: z.ZodBoolean;
|
|
28870
|
+
bio: z.ZodBoolean;
|
|
28871
|
+
favoriteTeam: z.ZodBoolean;
|
|
28872
|
+
pinnedRatings: z.ZodBoolean;
|
|
28873
|
+
favoriteGames: z.ZodBoolean;
|
|
28874
|
+
gradientColor: z.ZodBoolean;
|
|
28875
|
+
}, "strip", z.ZodTypeAny, {
|
|
28876
|
+
bio: boolean;
|
|
28877
|
+
profilePicture: boolean;
|
|
28878
|
+
favoriteTeam: boolean;
|
|
28879
|
+
pinnedRatings: boolean;
|
|
28880
|
+
favoriteGames: boolean;
|
|
28881
|
+
gradientColor: boolean;
|
|
28882
|
+
}, {
|
|
28883
|
+
bio: boolean;
|
|
28884
|
+
profilePicture: boolean;
|
|
28885
|
+
favoriteTeam: boolean;
|
|
28886
|
+
pinnedRatings: boolean;
|
|
28887
|
+
favoriteGames: boolean;
|
|
28888
|
+
gradientColor: boolean;
|
|
28889
|
+
}>>;
|
|
28637
28890
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
28638
28891
|
id: string;
|
|
28639
28892
|
email: string;
|
|
@@ -31124,6 +31377,29 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31124
31377
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
31125
31378
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
31126
31379
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
31380
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
31381
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
31382
|
+
profilePicture: z.ZodBoolean;
|
|
31383
|
+
bio: z.ZodBoolean;
|
|
31384
|
+
favoriteTeam: z.ZodBoolean;
|
|
31385
|
+
pinnedRatings: z.ZodBoolean;
|
|
31386
|
+
favoriteGames: z.ZodBoolean;
|
|
31387
|
+
gradientColor: z.ZodBoolean;
|
|
31388
|
+
}, "strip", z.ZodTypeAny, {
|
|
31389
|
+
bio: boolean;
|
|
31390
|
+
profilePicture: boolean;
|
|
31391
|
+
favoriteTeam: boolean;
|
|
31392
|
+
pinnedRatings: boolean;
|
|
31393
|
+
favoriteGames: boolean;
|
|
31394
|
+
gradientColor: boolean;
|
|
31395
|
+
}, {
|
|
31396
|
+
bio: boolean;
|
|
31397
|
+
profilePicture: boolean;
|
|
31398
|
+
favoriteTeam: boolean;
|
|
31399
|
+
pinnedRatings: boolean;
|
|
31400
|
+
favoriteGames: boolean;
|
|
31401
|
+
gradientColor: boolean;
|
|
31402
|
+
}>>;
|
|
31127
31403
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
31128
31404
|
id: string;
|
|
31129
31405
|
email: string;
|
|
@@ -33596,6 +33872,29 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33596
33872
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
33597
33873
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
33598
33874
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
33875
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
33876
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
33877
|
+
profilePicture: z.ZodBoolean;
|
|
33878
|
+
bio: z.ZodBoolean;
|
|
33879
|
+
favoriteTeam: z.ZodBoolean;
|
|
33880
|
+
pinnedRatings: z.ZodBoolean;
|
|
33881
|
+
favoriteGames: z.ZodBoolean;
|
|
33882
|
+
gradientColor: z.ZodBoolean;
|
|
33883
|
+
}, "strip", z.ZodTypeAny, {
|
|
33884
|
+
bio: boolean;
|
|
33885
|
+
profilePicture: boolean;
|
|
33886
|
+
favoriteTeam: boolean;
|
|
33887
|
+
pinnedRatings: boolean;
|
|
33888
|
+
favoriteGames: boolean;
|
|
33889
|
+
gradientColor: boolean;
|
|
33890
|
+
}, {
|
|
33891
|
+
bio: boolean;
|
|
33892
|
+
profilePicture: boolean;
|
|
33893
|
+
favoriteTeam: boolean;
|
|
33894
|
+
pinnedRatings: boolean;
|
|
33895
|
+
favoriteGames: boolean;
|
|
33896
|
+
gradientColor: boolean;
|
|
33897
|
+
}>>;
|
|
33599
33898
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
33600
33899
|
id: string;
|
|
33601
33900
|
email: string;
|
|
@@ -36032,6 +36331,29 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36032
36331
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
36033
36332
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
36034
36333
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
36334
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
36335
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
36336
|
+
profilePicture: z.ZodBoolean;
|
|
36337
|
+
bio: z.ZodBoolean;
|
|
36338
|
+
favoriteTeam: z.ZodBoolean;
|
|
36339
|
+
pinnedRatings: z.ZodBoolean;
|
|
36340
|
+
favoriteGames: z.ZodBoolean;
|
|
36341
|
+
gradientColor: z.ZodBoolean;
|
|
36342
|
+
}, "strip", z.ZodTypeAny, {
|
|
36343
|
+
bio: boolean;
|
|
36344
|
+
profilePicture: boolean;
|
|
36345
|
+
favoriteTeam: boolean;
|
|
36346
|
+
pinnedRatings: boolean;
|
|
36347
|
+
favoriteGames: boolean;
|
|
36348
|
+
gradientColor: boolean;
|
|
36349
|
+
}, {
|
|
36350
|
+
bio: boolean;
|
|
36351
|
+
profilePicture: boolean;
|
|
36352
|
+
favoriteTeam: boolean;
|
|
36353
|
+
pinnedRatings: boolean;
|
|
36354
|
+
favoriteGames: boolean;
|
|
36355
|
+
gradientColor: boolean;
|
|
36356
|
+
}>>;
|
|
36035
36357
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
36036
36358
|
id: string;
|
|
36037
36359
|
email: string;
|
|
@@ -38445,6 +38767,29 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38445
38767
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
38446
38768
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
38447
38769
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
38770
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
38771
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
38772
|
+
profilePicture: z.ZodBoolean;
|
|
38773
|
+
bio: z.ZodBoolean;
|
|
38774
|
+
favoriteTeam: z.ZodBoolean;
|
|
38775
|
+
pinnedRatings: z.ZodBoolean;
|
|
38776
|
+
favoriteGames: z.ZodBoolean;
|
|
38777
|
+
gradientColor: z.ZodBoolean;
|
|
38778
|
+
}, "strip", z.ZodTypeAny, {
|
|
38779
|
+
bio: boolean;
|
|
38780
|
+
profilePicture: boolean;
|
|
38781
|
+
favoriteTeam: boolean;
|
|
38782
|
+
pinnedRatings: boolean;
|
|
38783
|
+
favoriteGames: boolean;
|
|
38784
|
+
gradientColor: boolean;
|
|
38785
|
+
}, {
|
|
38786
|
+
bio: boolean;
|
|
38787
|
+
profilePicture: boolean;
|
|
38788
|
+
favoriteTeam: boolean;
|
|
38789
|
+
pinnedRatings: boolean;
|
|
38790
|
+
favoriteGames: boolean;
|
|
38791
|
+
gradientColor: boolean;
|
|
38792
|
+
}>>;
|
|
38448
38793
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
38449
38794
|
id: string;
|
|
38450
38795
|
email: string;
|
|
@@ -40879,6 +41224,29 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40879
41224
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
40880
41225
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
40881
41226
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
41227
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
41228
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
41229
|
+
profilePicture: z.ZodBoolean;
|
|
41230
|
+
bio: z.ZodBoolean;
|
|
41231
|
+
favoriteTeam: z.ZodBoolean;
|
|
41232
|
+
pinnedRatings: z.ZodBoolean;
|
|
41233
|
+
favoriteGames: z.ZodBoolean;
|
|
41234
|
+
gradientColor: z.ZodBoolean;
|
|
41235
|
+
}, "strip", z.ZodTypeAny, {
|
|
41236
|
+
bio: boolean;
|
|
41237
|
+
profilePicture: boolean;
|
|
41238
|
+
favoriteTeam: boolean;
|
|
41239
|
+
pinnedRatings: boolean;
|
|
41240
|
+
favoriteGames: boolean;
|
|
41241
|
+
gradientColor: boolean;
|
|
41242
|
+
}, {
|
|
41243
|
+
bio: boolean;
|
|
41244
|
+
profilePicture: boolean;
|
|
41245
|
+
favoriteTeam: boolean;
|
|
41246
|
+
pinnedRatings: boolean;
|
|
41247
|
+
favoriteGames: boolean;
|
|
41248
|
+
gradientColor: boolean;
|
|
41249
|
+
}>>;
|
|
40882
41250
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
40883
41251
|
id: string;
|
|
40884
41252
|
email: string;
|
|
@@ -43398,6 +43766,29 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43398
43766
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
43399
43767
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
43400
43768
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
43769
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
43770
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
43771
|
+
profilePicture: z.ZodBoolean;
|
|
43772
|
+
bio: z.ZodBoolean;
|
|
43773
|
+
favoriteTeam: z.ZodBoolean;
|
|
43774
|
+
pinnedRatings: z.ZodBoolean;
|
|
43775
|
+
favoriteGames: z.ZodBoolean;
|
|
43776
|
+
gradientColor: z.ZodBoolean;
|
|
43777
|
+
}, "strip", z.ZodTypeAny, {
|
|
43778
|
+
bio: boolean;
|
|
43779
|
+
profilePicture: boolean;
|
|
43780
|
+
favoriteTeam: boolean;
|
|
43781
|
+
pinnedRatings: boolean;
|
|
43782
|
+
favoriteGames: boolean;
|
|
43783
|
+
gradientColor: boolean;
|
|
43784
|
+
}, {
|
|
43785
|
+
bio: boolean;
|
|
43786
|
+
profilePicture: boolean;
|
|
43787
|
+
favoriteTeam: boolean;
|
|
43788
|
+
pinnedRatings: boolean;
|
|
43789
|
+
favoriteGames: boolean;
|
|
43790
|
+
gradientColor: boolean;
|
|
43791
|
+
}>>;
|
|
43401
43792
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
43402
43793
|
id: string;
|
|
43403
43794
|
email: string;
|
|
@@ -45888,6 +46279,29 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45888
46279
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
45889
46280
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
45890
46281
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
46282
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
46283
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
46284
|
+
profilePicture: z.ZodBoolean;
|
|
46285
|
+
bio: z.ZodBoolean;
|
|
46286
|
+
favoriteTeam: z.ZodBoolean;
|
|
46287
|
+
pinnedRatings: z.ZodBoolean;
|
|
46288
|
+
favoriteGames: z.ZodBoolean;
|
|
46289
|
+
gradientColor: z.ZodBoolean;
|
|
46290
|
+
}, "strip", z.ZodTypeAny, {
|
|
46291
|
+
bio: boolean;
|
|
46292
|
+
profilePicture: boolean;
|
|
46293
|
+
favoriteTeam: boolean;
|
|
46294
|
+
pinnedRatings: boolean;
|
|
46295
|
+
favoriteGames: boolean;
|
|
46296
|
+
gradientColor: boolean;
|
|
46297
|
+
}, {
|
|
46298
|
+
bio: boolean;
|
|
46299
|
+
profilePicture: boolean;
|
|
46300
|
+
favoriteTeam: boolean;
|
|
46301
|
+
pinnedRatings: boolean;
|
|
46302
|
+
favoriteGames: boolean;
|
|
46303
|
+
gradientColor: boolean;
|
|
46304
|
+
}>>;
|
|
45891
46305
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
45892
46306
|
id: string;
|
|
45893
46307
|
email: string;
|
|
@@ -48360,6 +48774,29 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48360
48774
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
48361
48775
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
48362
48776
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
48777
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
48778
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
48779
|
+
profilePicture: z.ZodBoolean;
|
|
48780
|
+
bio: z.ZodBoolean;
|
|
48781
|
+
favoriteTeam: z.ZodBoolean;
|
|
48782
|
+
pinnedRatings: z.ZodBoolean;
|
|
48783
|
+
favoriteGames: z.ZodBoolean;
|
|
48784
|
+
gradientColor: z.ZodBoolean;
|
|
48785
|
+
}, "strip", z.ZodTypeAny, {
|
|
48786
|
+
bio: boolean;
|
|
48787
|
+
profilePicture: boolean;
|
|
48788
|
+
favoriteTeam: boolean;
|
|
48789
|
+
pinnedRatings: boolean;
|
|
48790
|
+
favoriteGames: boolean;
|
|
48791
|
+
gradientColor: boolean;
|
|
48792
|
+
}, {
|
|
48793
|
+
bio: boolean;
|
|
48794
|
+
profilePicture: boolean;
|
|
48795
|
+
favoriteTeam: boolean;
|
|
48796
|
+
pinnedRatings: boolean;
|
|
48797
|
+
favoriteGames: boolean;
|
|
48798
|
+
gradientColor: boolean;
|
|
48799
|
+
}>>;
|
|
48363
48800
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
48364
48801
|
id: string;
|
|
48365
48802
|
email: string;
|
|
@@ -49677,6 +50114,29 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
49677
50114
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
49678
50115
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
49679
50116
|
headerColor: z.ZodOptional<z.ZodString>;
|
|
50117
|
+
profileCompletionTrackerDismissed: z.ZodOptional<z.ZodBoolean>;
|
|
50118
|
+
profileCompletionStatus: z.ZodOptional<z.ZodObject<{
|
|
50119
|
+
profilePicture: z.ZodBoolean;
|
|
50120
|
+
bio: z.ZodBoolean;
|
|
50121
|
+
favoriteTeam: z.ZodBoolean;
|
|
50122
|
+
pinnedRatings: z.ZodBoolean;
|
|
50123
|
+
favoriteGames: z.ZodBoolean;
|
|
50124
|
+
gradientColor: z.ZodBoolean;
|
|
50125
|
+
}, "strip", z.ZodTypeAny, {
|
|
50126
|
+
bio: boolean;
|
|
50127
|
+
profilePicture: boolean;
|
|
50128
|
+
favoriteTeam: boolean;
|
|
50129
|
+
pinnedRatings: boolean;
|
|
50130
|
+
favoriteGames: boolean;
|
|
50131
|
+
gradientColor: boolean;
|
|
50132
|
+
}, {
|
|
50133
|
+
bio: boolean;
|
|
50134
|
+
profilePicture: boolean;
|
|
50135
|
+
favoriteTeam: boolean;
|
|
50136
|
+
pinnedRatings: boolean;
|
|
50137
|
+
favoriteGames: boolean;
|
|
50138
|
+
gradientColor: boolean;
|
|
50139
|
+
}>>;
|
|
49680
50140
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
49681
50141
|
id: string;
|
|
49682
50142
|
email: string;
|