rategame-shared 1.1.251 → 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 +105 -0
- package/dist/schemas/game.d.ts +420 -0
- package/dist/schemas/list.d.ts +105 -0
- package/dist/schemas/moderation.d.ts +84 -0
- package/dist/schemas/rating.d.ts +63 -0
- package/dist/schemas/user.d.ts +99 -0
- package/dist/schemas/user.js +9 -0
- package/dist/schemas/userEvent.d.ts +63 -0
- package/dist/schemas/voting.d.ts +63 -0
- package/package.json +1 -1
package/dist/schemas/game.d.ts
CHANGED
|
@@ -4169,6 +4169,27 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
4169
4169
|
viewedToS: z.ZodOptional<z.ZodBoolean>;
|
|
4170
4170
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
4171
4171
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
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
|
+
}>>;
|
|
4172
4193
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
4173
4194
|
id: string;
|
|
4174
4195
|
email: string;
|
|
@@ -6534,6 +6555,27 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
6534
6555
|
viewedToS: z.ZodOptional<z.ZodBoolean>;
|
|
6535
6556
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
6536
6557
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
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
|
+
}>>;
|
|
6537
6579
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
6538
6580
|
id: string;
|
|
6539
6581
|
email: string;
|
|
@@ -8960,6 +9002,27 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8960
9002
|
viewedToS: z.ZodOptional<z.ZodBoolean>;
|
|
8961
9003
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
8962
9004
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
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
|
+
}>>;
|
|
8963
9026
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
8964
9027
|
id: string;
|
|
8965
9028
|
email: string;
|
|
@@ -11394,6 +11457,27 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11394
11457
|
viewedToS: z.ZodOptional<z.ZodBoolean>;
|
|
11395
11458
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
11396
11459
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
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
|
+
}>>;
|
|
11397
11481
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
11398
11482
|
id: string;
|
|
11399
11483
|
email: string;
|
|
@@ -13913,6 +13997,27 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
13913
13997
|
viewedToS: z.ZodOptional<z.ZodBoolean>;
|
|
13914
13998
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
13915
13999
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
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
|
+
}>>;
|
|
13916
14021
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
13917
14022
|
id: string;
|
|
13918
14023
|
email: string;
|
|
@@ -16403,6 +16508,27 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
|
|
|
16403
16508
|
viewedToS: z.ZodOptional<z.ZodBoolean>;
|
|
16404
16509
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
16405
16510
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
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
|
+
}>>;
|
|
16406
16532
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
16407
16533
|
id: string;
|
|
16408
16534
|
email: string;
|
|
@@ -18875,6 +19001,27 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
18875
19001
|
viewedToS: z.ZodOptional<z.ZodBoolean>;
|
|
18876
19002
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
18877
19003
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
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
|
+
}>>;
|
|
18878
19025
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
18879
19026
|
id: string;
|
|
18880
19027
|
email: string;
|
|
@@ -21260,6 +21407,27 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
21260
21407
|
viewedToS: z.ZodOptional<z.ZodBoolean>;
|
|
21261
21408
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
21262
21409
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
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
|
+
}>>;
|
|
21263
21431
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
21264
21432
|
id: string;
|
|
21265
21433
|
email: string;
|
|
@@ -23672,6 +23840,27 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
23672
23840
|
viewedToS: z.ZodOptional<z.ZodBoolean>;
|
|
23673
23841
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
23674
23842
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
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
|
+
}>>;
|
|
23675
23864
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
23676
23865
|
id: string;
|
|
23677
23866
|
email: string;
|
|
@@ -26105,6 +26294,27 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
26105
26294
|
viewedToS: z.ZodOptional<z.ZodBoolean>;
|
|
26106
26295
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
26107
26296
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
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
|
+
}>>;
|
|
26108
26318
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
26109
26319
|
id: string;
|
|
26110
26320
|
email: string;
|
|
@@ -28623,6 +28833,27 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
28623
28833
|
viewedToS: z.ZodOptional<z.ZodBoolean>;
|
|
28624
28834
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
28625
28835
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
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
|
+
}>>;
|
|
28626
28857
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
28627
28858
|
id: string;
|
|
28628
28859
|
email: string;
|
|
@@ -31112,6 +31343,27 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
31112
31343
|
viewedToS: z.ZodOptional<z.ZodBoolean>;
|
|
31113
31344
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
31114
31345
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
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
|
+
}>>;
|
|
31115
31367
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
31116
31368
|
id: string;
|
|
31117
31369
|
email: string;
|
|
@@ -33583,6 +33835,27 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
33583
33835
|
viewedToS: z.ZodOptional<z.ZodBoolean>;
|
|
33584
33836
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
33585
33837
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
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
|
+
}>>;
|
|
33586
33859
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
33587
33860
|
id: string;
|
|
33588
33861
|
email: string;
|
|
@@ -36018,6 +36291,27 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
36018
36291
|
viewedToS: z.ZodOptional<z.ZodBoolean>;
|
|
36019
36292
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
36020
36293
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
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
|
+
}>>;
|
|
36021
36315
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
36022
36316
|
id: string;
|
|
36023
36317
|
email: string;
|
|
@@ -38430,6 +38724,27 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
38430
38724
|
viewedToS: z.ZodOptional<z.ZodBoolean>;
|
|
38431
38725
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
38432
38726
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
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
|
+
}>>;
|
|
38433
38748
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
38434
38749
|
id: string;
|
|
38435
38750
|
email: string;
|
|
@@ -40863,6 +41178,27 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
40863
41178
|
viewedToS: z.ZodOptional<z.ZodBoolean>;
|
|
40864
41179
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
40865
41180
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
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
|
+
}>>;
|
|
40866
41202
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
40867
41203
|
id: string;
|
|
40868
41204
|
email: string;
|
|
@@ -43381,6 +43717,27 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
43381
43717
|
viewedToS: z.ZodOptional<z.ZodBoolean>;
|
|
43382
43718
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
43383
43719
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
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
|
+
}>>;
|
|
43384
43741
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
43385
43742
|
id: string;
|
|
43386
43743
|
email: string;
|
|
@@ -45870,6 +46227,27 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
45870
46227
|
viewedToS: z.ZodOptional<z.ZodBoolean>;
|
|
45871
46228
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
45872
46229
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
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
|
+
}>>;
|
|
45873
46251
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
45874
46252
|
id: string;
|
|
45875
46253
|
email: string;
|
|
@@ -48341,6 +48719,27 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
48341
48719
|
viewedToS: z.ZodOptional<z.ZodBoolean>;
|
|
48342
48720
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
48343
48721
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
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
|
+
}>>;
|
|
48344
48743
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
48345
48744
|
id: string;
|
|
48346
48745
|
email: string;
|
|
@@ -49657,6 +50056,27 @@ export declare const creatorPickSchema: z.ZodObject<{
|
|
|
49657
50056
|
viewedToS: z.ZodOptional<z.ZodBoolean>;
|
|
49658
50057
|
banned: z.ZodOptional<z.ZodBoolean>;
|
|
49659
50058
|
lowercaseUsername: z.ZodOptional<z.ZodString>;
|
|
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
|
+
}>>;
|
|
49660
50080
|
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", z.ZodTypeAny, {
|
|
49661
50081
|
id: string;
|
|
49662
50082
|
email: string;
|