rategame-shared 1.0.92 → 1.0.94
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/game.d.ts +16 -16
- package/dist/schemas/game.js +2 -2
- package/dist/schemas/rating.d.ts +163 -14
- package/dist/schemas/user.d.ts +8 -8
- package/package.json +1 -1
package/dist/schemas/game.d.ts
CHANGED
|
@@ -74,7 +74,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
74
74
|
ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
|
|
75
75
|
round: z.ZodNumber;
|
|
76
76
|
apiGameId: z.ZodNumber;
|
|
77
|
-
league: z.ZodUnion<[z.ZodLiteral<"ncaa">, z.ZodLiteral<"nba">]>;
|
|
77
|
+
league: z.ZodUnion<[z.ZodLiteral<"ncaa">, z.ZodLiteral<"nba">, z.ZodLiteral<"mlb">]>;
|
|
78
78
|
homeTeam: z.ZodObject<{
|
|
79
79
|
id: z.ZodOptional<z.ZodString>;
|
|
80
80
|
apiTeamId: z.ZodNumber;
|
|
@@ -189,7 +189,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
189
189
|
startedAt: number;
|
|
190
190
|
finishedAt: number;
|
|
191
191
|
apiGameId: number;
|
|
192
|
-
league: "nba" | "ncaa";
|
|
192
|
+
league: "nba" | "ncaa" | "mlb";
|
|
193
193
|
homeTeam: {
|
|
194
194
|
name: string;
|
|
195
195
|
image: string;
|
|
@@ -239,7 +239,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
239
239
|
startedAt: number;
|
|
240
240
|
finishedAt: number;
|
|
241
241
|
apiGameId: number;
|
|
242
|
-
league: "nba" | "ncaa";
|
|
242
|
+
league: "nba" | "ncaa" | "mlb";
|
|
243
243
|
homeTeam: {
|
|
244
244
|
name: string;
|
|
245
245
|
image: string;
|
|
@@ -538,10 +538,9 @@ export declare const mlbGameSchema: z.ZodObject<{
|
|
|
538
538
|
inningNumber: number;
|
|
539
539
|
}[];
|
|
540
540
|
id?: string | undefined;
|
|
541
|
+
round?: number | undefined;
|
|
541
542
|
isClosed?: boolean | undefined;
|
|
542
543
|
ratingWindowClosedAt?: number | undefined;
|
|
543
|
-
round?: number | undefined;
|
|
544
|
-
inningHalf?: "T" | "B" | undefined;
|
|
545
544
|
seriesInfo?: {
|
|
546
545
|
maxLength: number;
|
|
547
546
|
homeTeamWins: number;
|
|
@@ -555,6 +554,7 @@ export declare const mlbGameSchema: z.ZodObject<{
|
|
|
555
554
|
options: Record<number, number>;
|
|
556
555
|
};
|
|
557
556
|
} | undefined;
|
|
557
|
+
inningHalf?: "T" | "B" | undefined;
|
|
558
558
|
losingPitcherId?: string | undefined;
|
|
559
559
|
winningPitcherId?: string | undefined;
|
|
560
560
|
savingPitcherId?: string | undefined;
|
|
@@ -621,10 +621,9 @@ export declare const mlbGameSchema: z.ZodObject<{
|
|
|
621
621
|
inningNumber: number;
|
|
622
622
|
}[];
|
|
623
623
|
id?: string | undefined;
|
|
624
|
+
round?: number | undefined;
|
|
624
625
|
isClosed?: boolean | undefined;
|
|
625
626
|
ratingWindowClosedAt?: number | undefined;
|
|
626
|
-
round?: number | undefined;
|
|
627
|
-
inningHalf?: "T" | "B" | undefined;
|
|
628
627
|
seriesInfo?: {
|
|
629
628
|
maxLength: number;
|
|
630
629
|
homeTeamWins: number;
|
|
@@ -638,6 +637,7 @@ export declare const mlbGameSchema: z.ZodObject<{
|
|
|
638
637
|
options: Record<number, number>;
|
|
639
638
|
};
|
|
640
639
|
} | undefined;
|
|
640
|
+
inningHalf?: "T" | "B" | undefined;
|
|
641
641
|
losingPitcherId?: string | undefined;
|
|
642
642
|
winningPitcherId?: string | undefined;
|
|
643
643
|
savingPitcherId?: string | undefined;
|
|
@@ -679,27 +679,27 @@ export declare const searchGameSchema: z.ZodObject<{
|
|
|
679
679
|
q: z.ZodOptional<z.ZodString>;
|
|
680
680
|
teamId: z.ZodOptional<z.ZodString>;
|
|
681
681
|
round: z.ZodOptional<z.ZodString>;
|
|
682
|
-
league: z.ZodUnion<[z.ZodLiteral<"ncaa">, z.ZodLiteral<"nba">]>;
|
|
682
|
+
league: z.ZodUnion<[z.ZodLiteral<"ncaa">, z.ZodLiteral<"nba">, z.ZodLiteral<"mlb">]>;
|
|
683
683
|
createdAt: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
|
|
684
684
|
sortBy: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating.avg:asc">, z.ZodLiteral<"rating.avg:desc">, z.ZodLiteral<"startedAt:asc">, z.ZodLiteral<"startedAt:desc">]>>;
|
|
685
685
|
limit: z.ZodOptional<z.ZodString>;
|
|
686
686
|
offset: z.ZodOptional<z.ZodString>;
|
|
687
687
|
}, "strip", z.ZodTypeAny, {
|
|
688
|
-
league: "nba" | "ncaa";
|
|
689
|
-
|
|
690
|
-
teamId?: string | undefined;
|
|
688
|
+
league: "nba" | "ncaa" | "mlb";
|
|
689
|
+
offset?: string | undefined;
|
|
691
690
|
round?: string | undefined;
|
|
691
|
+
q?: string | undefined;
|
|
692
692
|
createdAt?: "12h" | "daily" | "weekly" | undefined;
|
|
693
|
+
teamId?: string | undefined;
|
|
693
694
|
sortBy?: "rating.avg:asc" | "rating.avg:desc" | "startedAt:asc" | "startedAt:desc" | undefined;
|
|
694
695
|
limit?: string | undefined;
|
|
695
|
-
offset?: string | undefined;
|
|
696
696
|
}, {
|
|
697
|
-
league: "nba" | "ncaa";
|
|
698
|
-
|
|
699
|
-
teamId?: string | undefined;
|
|
697
|
+
league: "nba" | "ncaa" | "mlb";
|
|
698
|
+
offset?: string | undefined;
|
|
700
699
|
round?: string | undefined;
|
|
700
|
+
q?: string | undefined;
|
|
701
701
|
createdAt?: "12h" | "daily" | "weekly" | undefined;
|
|
702
|
+
teamId?: string | undefined;
|
|
702
703
|
sortBy?: "rating.avg:asc" | "rating.avg:desc" | "startedAt:asc" | "startedAt:desc" | undefined;
|
|
703
704
|
limit?: string | undefined;
|
|
704
|
-
offset?: string | undefined;
|
|
705
705
|
}>;
|
package/dist/schemas/game.js
CHANGED
|
@@ -38,7 +38,7 @@ exports.gameSchema = zod_1.z.object({
|
|
|
38
38
|
ratingWindowClosedAt: zod_1.z.number().optional(),
|
|
39
39
|
round: zod_1.z.number(),
|
|
40
40
|
apiGameId: zod_1.z.number(),
|
|
41
|
-
league: zod_1.z.union([zod_1.z.literal("ncaa"), zod_1.z.literal("nba")]),
|
|
41
|
+
league: zod_1.z.union([zod_1.z.literal("ncaa"), zod_1.z.literal("nba"), zod_1.z.literal("mlb")]),
|
|
42
42
|
homeTeam: exports.gameTeamSchema,
|
|
43
43
|
awayTeam: exports.gameTeamSchema,
|
|
44
44
|
timeRemainingMinutes: zod_1.z.number(),
|
|
@@ -89,7 +89,7 @@ exports.searchGameSchema = zod_1.z.object({
|
|
|
89
89
|
q: zod_1.z.string().optional(),
|
|
90
90
|
teamId: zod_1.z.string().optional(),
|
|
91
91
|
round: zod_1.z.string().optional(),
|
|
92
|
-
league: zod_1.z.union([zod_1.z.literal("ncaa"), zod_1.z.literal("nba")]),
|
|
92
|
+
league: zod_1.z.union([zod_1.z.literal("ncaa"), zod_1.z.literal("nba"), zod_1.z.literal("mlb")]),
|
|
93
93
|
createdAt: zod_1.z
|
|
94
94
|
.union([zod_1.z.literal("12h"), zod_1.z.literal("daily"), zod_1.z.literal("weekly")])
|
|
95
95
|
.optional(),
|
package/dist/schemas/rating.d.ts
CHANGED
|
@@ -252,32 +252,32 @@ export declare const searchRatingSchema: import("zod").ZodObject<{
|
|
|
252
252
|
userId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
253
253
|
}, "strip", import("zod").ZodTypeAny, {
|
|
254
254
|
league: "nba" | "ncaa";
|
|
255
|
-
|
|
256
|
-
teamId?: string | undefined;
|
|
255
|
+
offset?: string | undefined;
|
|
257
256
|
round?: string | undefined;
|
|
257
|
+
q?: string | undefined;
|
|
258
|
+
username?: string | undefined;
|
|
258
259
|
createdAt?: "12h" | "daily" | "weekly" | undefined;
|
|
260
|
+
teamId?: string | undefined;
|
|
259
261
|
sortBy?: "rating:asc" | "rating:desc" | "createdAt:asc" | "createdAt:desc" | "userLikes:asc" | "userLikes:desc" | undefined;
|
|
260
262
|
limit?: string | undefined;
|
|
261
|
-
|
|
263
|
+
comment?: string | undefined;
|
|
262
264
|
gameId?: string | undefined;
|
|
263
265
|
showEmptyRatings?: string | undefined;
|
|
264
|
-
comment?: string | undefined;
|
|
265
|
-
username?: string | undefined;
|
|
266
266
|
following?: string | undefined;
|
|
267
267
|
userId?: string | undefined;
|
|
268
268
|
}, {
|
|
269
269
|
league: "nba" | "ncaa";
|
|
270
|
-
|
|
271
|
-
teamId?: string | undefined;
|
|
270
|
+
offset?: string | undefined;
|
|
272
271
|
round?: string | undefined;
|
|
272
|
+
q?: string | undefined;
|
|
273
|
+
username?: string | undefined;
|
|
273
274
|
createdAt?: "12h" | "daily" | "weekly" | undefined;
|
|
275
|
+
teamId?: string | undefined;
|
|
274
276
|
sortBy?: "rating:asc" | "rating:desc" | "createdAt:asc" | "createdAt:desc" | "userLikes:asc" | "userLikes:desc" | undefined;
|
|
275
277
|
limit?: string | undefined;
|
|
276
|
-
|
|
278
|
+
comment?: string | undefined;
|
|
277
279
|
gameId?: string | undefined;
|
|
278
280
|
showEmptyRatings?: string | undefined;
|
|
279
|
-
comment?: string | undefined;
|
|
280
|
-
username?: string | undefined;
|
|
281
281
|
following?: string | undefined;
|
|
282
282
|
userId?: string | undefined;
|
|
283
283
|
}>;
|
|
@@ -347,10 +347,159 @@ export declare const createAgreeRatingSchema: import("zod").ZodObject<{
|
|
|
347
347
|
};
|
|
348
348
|
agree: boolean;
|
|
349
349
|
}>;
|
|
350
|
-
export declare const createRatingSchema: import("zod").ZodObject<{
|
|
350
|
+
export declare const createRatingSchema: import("zod").ZodObject<import("zod").objectUtil.extendShape<Omit<{
|
|
351
|
+
id: import("zod").ZodString;
|
|
352
|
+
createdAt: import("zod").ZodNumber;
|
|
351
353
|
rating: import("zod").ZodNumber;
|
|
352
354
|
comment: import("zod").ZodOptional<import("zod").ZodString>;
|
|
355
|
+
user: import("zod").ZodObject<{
|
|
356
|
+
id: import("zod").ZodString;
|
|
357
|
+
username: import("zod").ZodString;
|
|
358
|
+
avatarUrl: import("zod").ZodString;
|
|
359
|
+
email: import("zod").ZodString;
|
|
360
|
+
badge: import("zod").ZodOptional<import("zod").ZodString>;
|
|
361
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
362
|
+
id: string;
|
|
363
|
+
email: string;
|
|
364
|
+
username: string;
|
|
365
|
+
avatarUrl: string;
|
|
366
|
+
badge?: string | undefined;
|
|
367
|
+
}, {
|
|
368
|
+
id: string;
|
|
369
|
+
email: string;
|
|
370
|
+
username: string;
|
|
371
|
+
avatarUrl: string;
|
|
372
|
+
badge?: string | undefined;
|
|
373
|
+
}>;
|
|
374
|
+
game: import("zod").ZodObject<{
|
|
375
|
+
id: import("zod").ZodString;
|
|
376
|
+
round: import("zod").ZodNumber;
|
|
377
|
+
league: import("zod").ZodUnion<[import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nba">]>;
|
|
378
|
+
homeTeam: import("zod").ZodObject<{
|
|
379
|
+
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
380
|
+
apiTeamId: import("zod").ZodNumber;
|
|
381
|
+
name: import("zod").ZodString;
|
|
382
|
+
score: import("zod").ZodNumber;
|
|
383
|
+
isWinner: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
384
|
+
image: import("zod").ZodString;
|
|
385
|
+
seed: import("zod").ZodNumber;
|
|
386
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
387
|
+
name: string;
|
|
388
|
+
image: string;
|
|
389
|
+
apiTeamId: number;
|
|
390
|
+
seed: number;
|
|
391
|
+
score: number;
|
|
392
|
+
id?: string | undefined;
|
|
393
|
+
isWinner?: boolean | undefined;
|
|
394
|
+
}, {
|
|
395
|
+
name: string;
|
|
396
|
+
image: string;
|
|
397
|
+
apiTeamId: number;
|
|
398
|
+
seed: number;
|
|
399
|
+
score: number;
|
|
400
|
+
id?: string | undefined;
|
|
401
|
+
isWinner?: boolean | undefined;
|
|
402
|
+
}>;
|
|
403
|
+
awayTeam: import("zod").ZodObject<{
|
|
404
|
+
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
405
|
+
apiTeamId: import("zod").ZodNumber;
|
|
406
|
+
name: import("zod").ZodString;
|
|
407
|
+
score: import("zod").ZodNumber;
|
|
408
|
+
isWinner: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
409
|
+
image: import("zod").ZodString;
|
|
410
|
+
seed: import("zod").ZodNumber;
|
|
411
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
412
|
+
name: string;
|
|
413
|
+
image: string;
|
|
414
|
+
apiTeamId: number;
|
|
415
|
+
seed: number;
|
|
416
|
+
score: number;
|
|
417
|
+
id?: string | undefined;
|
|
418
|
+
isWinner?: boolean | undefined;
|
|
419
|
+
}, {
|
|
420
|
+
name: string;
|
|
421
|
+
image: string;
|
|
422
|
+
apiTeamId: number;
|
|
423
|
+
seed: number;
|
|
424
|
+
score: number;
|
|
425
|
+
id?: string | undefined;
|
|
426
|
+
isWinner?: boolean | undefined;
|
|
427
|
+
}>;
|
|
428
|
+
seriesInfo: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
429
|
+
homeTeamWins: import("zod").ZodNumber;
|
|
430
|
+
awayTeamWins: import("zod").ZodNumber;
|
|
431
|
+
gameNumber: import("zod").ZodNumber;
|
|
432
|
+
maxLength: import("zod").ZodNumber;
|
|
433
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
434
|
+
maxLength: number;
|
|
435
|
+
homeTeamWins: number;
|
|
436
|
+
awayTeamWins: number;
|
|
437
|
+
gameNumber: number;
|
|
438
|
+
}, {
|
|
439
|
+
maxLength: number;
|
|
440
|
+
homeTeamWins: number;
|
|
441
|
+
awayTeamWins: number;
|
|
442
|
+
gameNumber: number;
|
|
443
|
+
}>>;
|
|
444
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
445
|
+
id: string;
|
|
446
|
+
round: number;
|
|
447
|
+
league: "nba" | "ncaa";
|
|
448
|
+
homeTeam: {
|
|
449
|
+
name: string;
|
|
450
|
+
image: string;
|
|
451
|
+
apiTeamId: number;
|
|
452
|
+
seed: number;
|
|
453
|
+
score: number;
|
|
454
|
+
id?: string | undefined;
|
|
455
|
+
isWinner?: boolean | undefined;
|
|
456
|
+
};
|
|
457
|
+
awayTeam: {
|
|
458
|
+
name: string;
|
|
459
|
+
image: string;
|
|
460
|
+
apiTeamId: number;
|
|
461
|
+
seed: number;
|
|
462
|
+
score: number;
|
|
463
|
+
id?: string | undefined;
|
|
464
|
+
isWinner?: boolean | undefined;
|
|
465
|
+
};
|
|
466
|
+
seriesInfo?: {
|
|
467
|
+
maxLength: number;
|
|
468
|
+
homeTeamWins: number;
|
|
469
|
+
awayTeamWins: number;
|
|
470
|
+
gameNumber: number;
|
|
471
|
+
} | undefined;
|
|
472
|
+
}, {
|
|
473
|
+
id: string;
|
|
474
|
+
round: number;
|
|
475
|
+
league: "nba" | "ncaa";
|
|
476
|
+
homeTeam: {
|
|
477
|
+
name: string;
|
|
478
|
+
image: string;
|
|
479
|
+
apiTeamId: number;
|
|
480
|
+
seed: number;
|
|
481
|
+
score: number;
|
|
482
|
+
id?: string | undefined;
|
|
483
|
+
isWinner?: boolean | undefined;
|
|
484
|
+
};
|
|
485
|
+
awayTeam: {
|
|
486
|
+
name: string;
|
|
487
|
+
image: string;
|
|
488
|
+
apiTeamId: number;
|
|
489
|
+
seed: number;
|
|
490
|
+
score: number;
|
|
491
|
+
id?: string | undefined;
|
|
492
|
+
isWinner?: boolean | undefined;
|
|
493
|
+
};
|
|
494
|
+
seriesInfo?: {
|
|
495
|
+
maxLength: number;
|
|
496
|
+
homeTeamWins: number;
|
|
497
|
+
awayTeamWins: number;
|
|
498
|
+
gameNumber: number;
|
|
499
|
+
} | undefined;
|
|
500
|
+
}>;
|
|
353
501
|
userLikes: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
502
|
+
}, "id" | "user" | "createdAt">, {
|
|
354
503
|
game: import("zod").ZodObject<Omit<{
|
|
355
504
|
id: import("zod").ZodString;
|
|
356
505
|
round: import("zod").ZodNumber;
|
|
@@ -441,7 +590,7 @@ export declare const createRatingSchema: import("zod").ZodObject<{
|
|
|
441
590
|
} | undefined;
|
|
442
591
|
}>;
|
|
443
592
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
444
|
-
}
|
|
593
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
445
594
|
rating: number;
|
|
446
595
|
game: {
|
|
447
596
|
id: string;
|
|
@@ -453,9 +602,9 @@ export declare const createRatingSchema: import("zod").ZodObject<{
|
|
|
453
602
|
gameNumber: number;
|
|
454
603
|
} | undefined;
|
|
455
604
|
};
|
|
605
|
+
id?: string | undefined;
|
|
456
606
|
comment?: string | undefined;
|
|
457
607
|
userLikes?: number | undefined;
|
|
458
|
-
id?: string | undefined;
|
|
459
608
|
}, {
|
|
460
609
|
rating: number;
|
|
461
610
|
game: {
|
|
@@ -468,7 +617,7 @@ export declare const createRatingSchema: import("zod").ZodObject<{
|
|
|
468
617
|
gameNumber: number;
|
|
469
618
|
} | undefined;
|
|
470
619
|
};
|
|
620
|
+
id?: string | undefined;
|
|
471
621
|
comment?: string | undefined;
|
|
472
622
|
userLikes?: number | undefined;
|
|
473
|
-
id?: string | undefined;
|
|
474
623
|
}>;
|
package/dist/schemas/user.d.ts
CHANGED
|
@@ -134,6 +134,10 @@ export declare const userSchema: import("zod").ZodObject<{
|
|
|
134
134
|
}>;
|
|
135
135
|
askedForPushNotifications: boolean;
|
|
136
136
|
acceptedPushNotifications: boolean;
|
|
137
|
+
platform?: "ios" | "android" | "macos" | "windows" | "web" | undefined;
|
|
138
|
+
totalRatedGames?: number | undefined;
|
|
139
|
+
commentsLeft?: number | undefined;
|
|
140
|
+
avgRating?: number | undefined;
|
|
137
141
|
leagues?: {
|
|
138
142
|
nba: {
|
|
139
143
|
totalRatedGames: number;
|
|
@@ -146,9 +150,6 @@ export declare const userSchema: import("zod").ZodObject<{
|
|
|
146
150
|
avgRating: number;
|
|
147
151
|
};
|
|
148
152
|
} | undefined;
|
|
149
|
-
totalRatedGames?: number | undefined;
|
|
150
|
-
commentsLeft?: number | undefined;
|
|
151
|
-
avgRating?: number | undefined;
|
|
152
153
|
isRegistrationComplete?: boolean | undefined;
|
|
153
154
|
badge?: string | undefined;
|
|
154
155
|
registrationStep?: number | undefined;
|
|
@@ -162,7 +163,6 @@ export declare const userSchema: import("zod").ZodObject<{
|
|
|
162
163
|
youtube?: string | undefined;
|
|
163
164
|
tiktok?: string | undefined;
|
|
164
165
|
} | undefined;
|
|
165
|
-
platform?: "ios" | "android" | "macos" | "windows" | "web" | undefined;
|
|
166
166
|
selectedTeamsPerLeague?: Record<string, string[]> | undefined;
|
|
167
167
|
notificationSettings?: {
|
|
168
168
|
allGames?: boolean | undefined;
|
|
@@ -182,6 +182,10 @@ export declare const userSchema: import("zod").ZodObject<{
|
|
|
182
182
|
}>;
|
|
183
183
|
askedForPushNotifications: boolean;
|
|
184
184
|
acceptedPushNotifications: boolean;
|
|
185
|
+
platform?: "ios" | "android" | "macos" | "windows" | "web" | undefined;
|
|
186
|
+
totalRatedGames?: number | undefined;
|
|
187
|
+
commentsLeft?: number | undefined;
|
|
188
|
+
avgRating?: number | undefined;
|
|
185
189
|
leagues?: {
|
|
186
190
|
nba: {
|
|
187
191
|
totalRatedGames: number;
|
|
@@ -194,9 +198,6 @@ export declare const userSchema: import("zod").ZodObject<{
|
|
|
194
198
|
avgRating: number;
|
|
195
199
|
};
|
|
196
200
|
} | undefined;
|
|
197
|
-
totalRatedGames?: number | undefined;
|
|
198
|
-
commentsLeft?: number | undefined;
|
|
199
|
-
avgRating?: number | undefined;
|
|
200
201
|
isRegistrationComplete?: boolean | undefined;
|
|
201
202
|
badge?: string | undefined;
|
|
202
203
|
registrationStep?: number | undefined;
|
|
@@ -210,7 +211,6 @@ export declare const userSchema: import("zod").ZodObject<{
|
|
|
210
211
|
youtube?: string | undefined;
|
|
211
212
|
tiktok?: string | undefined;
|
|
212
213
|
} | undefined;
|
|
213
|
-
platform?: "ios" | "android" | "macos" | "windows" | "web" | undefined;
|
|
214
214
|
selectedTeamsPerLeague?: Record<string, string[]> | undefined;
|
|
215
215
|
notificationSettings?: {
|
|
216
216
|
allGames?: boolean | undefined;
|