rategame-shared 1.1.51 → 1.1.53
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 +95 -16
- package/dist/schemas/game.js +1 -0
- package/dist/schemas/notification.d.ts +18 -0
- package/dist/schemas/rating.d.ts +45 -3
- package/dist/schemas/user.d.ts +3 -1
- package/dist/schemas/user.js +1 -0
- package/package.json +1 -1
package/dist/schemas/game.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export declare const gameTeamSchema: z.ZodObject<{
|
|
|
8
8
|
image: z.ZodString;
|
|
9
9
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
10
10
|
teamCode: z.ZodOptional<z.ZodString>;
|
|
11
|
+
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
11
12
|
}, "strip", z.ZodTypeAny, {
|
|
12
13
|
name: string;
|
|
13
14
|
image: string;
|
|
@@ -17,6 +18,7 @@ export declare const gameTeamSchema: z.ZodObject<{
|
|
|
17
18
|
isWinner?: boolean | undefined;
|
|
18
19
|
seed?: number | undefined;
|
|
19
20
|
teamCode?: string | undefined;
|
|
21
|
+
scoreExtraTime?: number | undefined;
|
|
20
22
|
}, {
|
|
21
23
|
name: string;
|
|
22
24
|
image: string;
|
|
@@ -26,6 +28,7 @@ export declare const gameTeamSchema: z.ZodObject<{
|
|
|
26
28
|
isWinner?: boolean | undefined;
|
|
27
29
|
seed?: number | undefined;
|
|
28
30
|
teamCode?: string | undefined;
|
|
31
|
+
scoreExtraTime?: number | undefined;
|
|
29
32
|
}>;
|
|
30
33
|
export declare const gameRatingAggregateSchema: z.ZodObject<{
|
|
31
34
|
avg: z.ZodNumber;
|
|
@@ -87,6 +90,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
87
90
|
image: z.ZodString;
|
|
88
91
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
89
92
|
teamCode: z.ZodOptional<z.ZodString>;
|
|
93
|
+
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
90
94
|
}, "strip", z.ZodTypeAny, {
|
|
91
95
|
name: string;
|
|
92
96
|
image: string;
|
|
@@ -96,6 +100,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
96
100
|
isWinner?: boolean | undefined;
|
|
97
101
|
seed?: number | undefined;
|
|
98
102
|
teamCode?: string | undefined;
|
|
103
|
+
scoreExtraTime?: number | undefined;
|
|
99
104
|
}, {
|
|
100
105
|
name: string;
|
|
101
106
|
image: string;
|
|
@@ -105,6 +110,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
105
110
|
isWinner?: boolean | undefined;
|
|
106
111
|
seed?: number | undefined;
|
|
107
112
|
teamCode?: string | undefined;
|
|
113
|
+
scoreExtraTime?: number | undefined;
|
|
108
114
|
}>;
|
|
109
115
|
awayTeam: z.ZodObject<{
|
|
110
116
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -115,6 +121,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
115
121
|
image: z.ZodString;
|
|
116
122
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
117
123
|
teamCode: z.ZodOptional<z.ZodString>;
|
|
124
|
+
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
118
125
|
}, "strip", z.ZodTypeAny, {
|
|
119
126
|
name: string;
|
|
120
127
|
image: string;
|
|
@@ -124,6 +131,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
124
131
|
isWinner?: boolean | undefined;
|
|
125
132
|
seed?: number | undefined;
|
|
126
133
|
teamCode?: string | undefined;
|
|
134
|
+
scoreExtraTime?: number | undefined;
|
|
127
135
|
}, {
|
|
128
136
|
name: string;
|
|
129
137
|
image: string;
|
|
@@ -133,6 +141,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
133
141
|
isWinner?: boolean | undefined;
|
|
134
142
|
seed?: number | undefined;
|
|
135
143
|
teamCode?: string | undefined;
|
|
144
|
+
scoreExtraTime?: number | undefined;
|
|
136
145
|
}>;
|
|
137
146
|
timeRemainingMinutes: z.ZodNumber;
|
|
138
147
|
timeRemainingSeconds: z.ZodNumber;
|
|
@@ -208,6 +217,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
208
217
|
isWinner?: boolean | undefined;
|
|
209
218
|
seed?: number | undefined;
|
|
210
219
|
teamCode?: string | undefined;
|
|
220
|
+
scoreExtraTime?: number | undefined;
|
|
211
221
|
};
|
|
212
222
|
awayTeam: {
|
|
213
223
|
name: string;
|
|
@@ -218,6 +228,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
218
228
|
isWinner?: boolean | undefined;
|
|
219
229
|
seed?: number | undefined;
|
|
220
230
|
teamCode?: string | undefined;
|
|
231
|
+
scoreExtraTime?: number | undefined;
|
|
221
232
|
};
|
|
222
233
|
timeRemainingMinutes: number;
|
|
223
234
|
timeRemainingSeconds: number;
|
|
@@ -260,6 +271,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
260
271
|
isWinner?: boolean | undefined;
|
|
261
272
|
seed?: number | undefined;
|
|
262
273
|
teamCode?: string | undefined;
|
|
274
|
+
scoreExtraTime?: number | undefined;
|
|
263
275
|
};
|
|
264
276
|
awayTeam: {
|
|
265
277
|
name: string;
|
|
@@ -270,6 +282,7 @@ export declare const gameSchema: z.ZodObject<{
|
|
|
270
282
|
isWinner?: boolean | undefined;
|
|
271
283
|
seed?: number | undefined;
|
|
272
284
|
teamCode?: string | undefined;
|
|
285
|
+
scoreExtraTime?: number | undefined;
|
|
273
286
|
};
|
|
274
287
|
timeRemainingMinutes: number;
|
|
275
288
|
timeRemainingSeconds: number;
|
|
@@ -315,6 +328,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
315
328
|
image: z.ZodString;
|
|
316
329
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
317
330
|
teamCode: z.ZodOptional<z.ZodString>;
|
|
331
|
+
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
318
332
|
}, "strip", z.ZodTypeAny, {
|
|
319
333
|
name: string;
|
|
320
334
|
image: string;
|
|
@@ -324,6 +338,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
324
338
|
isWinner?: boolean | undefined;
|
|
325
339
|
seed?: number | undefined;
|
|
326
340
|
teamCode?: string | undefined;
|
|
341
|
+
scoreExtraTime?: number | undefined;
|
|
327
342
|
}, {
|
|
328
343
|
name: string;
|
|
329
344
|
image: string;
|
|
@@ -333,6 +348,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
333
348
|
isWinner?: boolean | undefined;
|
|
334
349
|
seed?: number | undefined;
|
|
335
350
|
teamCode?: string | undefined;
|
|
351
|
+
scoreExtraTime?: number | undefined;
|
|
336
352
|
}>;
|
|
337
353
|
awayTeam: z.ZodObject<{
|
|
338
354
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -343,6 +359,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
343
359
|
image: z.ZodString;
|
|
344
360
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
345
361
|
teamCode: z.ZodOptional<z.ZodString>;
|
|
362
|
+
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
346
363
|
}, "strip", z.ZodTypeAny, {
|
|
347
364
|
name: string;
|
|
348
365
|
image: string;
|
|
@@ -352,6 +369,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
352
369
|
isWinner?: boolean | undefined;
|
|
353
370
|
seed?: number | undefined;
|
|
354
371
|
teamCode?: string | undefined;
|
|
372
|
+
scoreExtraTime?: number | undefined;
|
|
355
373
|
}, {
|
|
356
374
|
name: string;
|
|
357
375
|
image: string;
|
|
@@ -361,6 +379,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
361
379
|
isWinner?: boolean | undefined;
|
|
362
380
|
seed?: number | undefined;
|
|
363
381
|
teamCode?: string | undefined;
|
|
382
|
+
scoreExtraTime?: number | undefined;
|
|
364
383
|
}>;
|
|
365
384
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
366
385
|
homeTeamWins: z.ZodNumber;
|
|
@@ -418,6 +437,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
418
437
|
isWinner?: boolean | undefined;
|
|
419
438
|
seed?: number | undefined;
|
|
420
439
|
teamCode?: string | undefined;
|
|
440
|
+
scoreExtraTime?: number | undefined;
|
|
421
441
|
};
|
|
422
442
|
awayTeam: {
|
|
423
443
|
name: string;
|
|
@@ -428,6 +448,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
428
448
|
isWinner?: boolean | undefined;
|
|
429
449
|
seed?: number | undefined;
|
|
430
450
|
teamCode?: string | undefined;
|
|
451
|
+
scoreExtraTime?: number | undefined;
|
|
431
452
|
};
|
|
432
453
|
id?: string | undefined;
|
|
433
454
|
isClosed?: boolean | undefined;
|
|
@@ -460,6 +481,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
460
481
|
isWinner?: boolean | undefined;
|
|
461
482
|
seed?: number | undefined;
|
|
462
483
|
teamCode?: string | undefined;
|
|
484
|
+
scoreExtraTime?: number | undefined;
|
|
463
485
|
};
|
|
464
486
|
awayTeam: {
|
|
465
487
|
name: string;
|
|
@@ -470,6 +492,7 @@ export declare const commonGameSchema: z.ZodObject<{
|
|
|
470
492
|
isWinner?: boolean | undefined;
|
|
471
493
|
seed?: number | undefined;
|
|
472
494
|
teamCode?: string | undefined;
|
|
495
|
+
scoreExtraTime?: number | undefined;
|
|
473
496
|
};
|
|
474
497
|
id?: string | undefined;
|
|
475
498
|
isClosed?: boolean | undefined;
|
|
@@ -506,6 +529,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
506
529
|
image: z.ZodString;
|
|
507
530
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
508
531
|
teamCode: z.ZodOptional<z.ZodString>;
|
|
532
|
+
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
509
533
|
}, "strip", z.ZodTypeAny, {
|
|
510
534
|
name: string;
|
|
511
535
|
image: string;
|
|
@@ -515,6 +539,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
515
539
|
isWinner?: boolean | undefined;
|
|
516
540
|
seed?: number | undefined;
|
|
517
541
|
teamCode?: string | undefined;
|
|
542
|
+
scoreExtraTime?: number | undefined;
|
|
518
543
|
}, {
|
|
519
544
|
name: string;
|
|
520
545
|
image: string;
|
|
@@ -524,6 +549,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
524
549
|
isWinner?: boolean | undefined;
|
|
525
550
|
seed?: number | undefined;
|
|
526
551
|
teamCode?: string | undefined;
|
|
552
|
+
scoreExtraTime?: number | undefined;
|
|
527
553
|
}>;
|
|
528
554
|
awayTeam: z.ZodObject<{
|
|
529
555
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -534,6 +560,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
534
560
|
image: z.ZodString;
|
|
535
561
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
536
562
|
teamCode: z.ZodOptional<z.ZodString>;
|
|
563
|
+
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
537
564
|
}, "strip", z.ZodTypeAny, {
|
|
538
565
|
name: string;
|
|
539
566
|
image: string;
|
|
@@ -543,6 +570,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
543
570
|
isWinner?: boolean | undefined;
|
|
544
571
|
seed?: number | undefined;
|
|
545
572
|
teamCode?: string | undefined;
|
|
573
|
+
scoreExtraTime?: number | undefined;
|
|
546
574
|
}, {
|
|
547
575
|
name: string;
|
|
548
576
|
image: string;
|
|
@@ -552,6 +580,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
552
580
|
isWinner?: boolean | undefined;
|
|
553
581
|
seed?: number | undefined;
|
|
554
582
|
teamCode?: string | undefined;
|
|
583
|
+
scoreExtraTime?: number | undefined;
|
|
555
584
|
}>;
|
|
556
585
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
557
586
|
homeTeamWins: z.ZodNumber;
|
|
@@ -629,6 +658,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
629
658
|
isWinner?: boolean | undefined;
|
|
630
659
|
seed?: number | undefined;
|
|
631
660
|
teamCode?: string | undefined;
|
|
661
|
+
scoreExtraTime?: number | undefined;
|
|
632
662
|
};
|
|
633
663
|
awayTeam: {
|
|
634
664
|
name: string;
|
|
@@ -639,6 +669,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
639
669
|
isWinner?: boolean | undefined;
|
|
640
670
|
seed?: number | undefined;
|
|
641
671
|
teamCode?: string | undefined;
|
|
672
|
+
scoreExtraTime?: number | undefined;
|
|
642
673
|
};
|
|
643
674
|
timeRemainingMinutes: number;
|
|
644
675
|
timeRemainingSeconds: number;
|
|
@@ -681,6 +712,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
681
712
|
isWinner?: boolean | undefined;
|
|
682
713
|
seed?: number | undefined;
|
|
683
714
|
teamCode?: string | undefined;
|
|
715
|
+
scoreExtraTime?: number | undefined;
|
|
684
716
|
};
|
|
685
717
|
awayTeam: {
|
|
686
718
|
name: string;
|
|
@@ -691,6 +723,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
691
723
|
isWinner?: boolean | undefined;
|
|
692
724
|
seed?: number | undefined;
|
|
693
725
|
teamCode?: string | undefined;
|
|
726
|
+
scoreExtraTime?: number | undefined;
|
|
694
727
|
};
|
|
695
728
|
timeRemainingMinutes: number;
|
|
696
729
|
timeRemainingSeconds: number;
|
|
@@ -749,6 +782,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
749
782
|
image: z.ZodString;
|
|
750
783
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
751
784
|
teamCode: z.ZodOptional<z.ZodString>;
|
|
785
|
+
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
752
786
|
}, "strip", z.ZodTypeAny, {
|
|
753
787
|
name: string;
|
|
754
788
|
image: string;
|
|
@@ -758,6 +792,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
758
792
|
isWinner?: boolean | undefined;
|
|
759
793
|
seed?: number | undefined;
|
|
760
794
|
teamCode?: string | undefined;
|
|
795
|
+
scoreExtraTime?: number | undefined;
|
|
761
796
|
}, {
|
|
762
797
|
name: string;
|
|
763
798
|
image: string;
|
|
@@ -767,6 +802,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
767
802
|
isWinner?: boolean | undefined;
|
|
768
803
|
seed?: number | undefined;
|
|
769
804
|
teamCode?: string | undefined;
|
|
805
|
+
scoreExtraTime?: number | undefined;
|
|
770
806
|
}>;
|
|
771
807
|
awayTeam: z.ZodObject<{
|
|
772
808
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -777,6 +813,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
777
813
|
image: z.ZodString;
|
|
778
814
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
779
815
|
teamCode: z.ZodOptional<z.ZodString>;
|
|
816
|
+
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
780
817
|
}, "strip", z.ZodTypeAny, {
|
|
781
818
|
name: string;
|
|
782
819
|
image: string;
|
|
@@ -786,6 +823,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
786
823
|
isWinner?: boolean | undefined;
|
|
787
824
|
seed?: number | undefined;
|
|
788
825
|
teamCode?: string | undefined;
|
|
826
|
+
scoreExtraTime?: number | undefined;
|
|
789
827
|
}, {
|
|
790
828
|
name: string;
|
|
791
829
|
image: string;
|
|
@@ -795,6 +833,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
795
833
|
isWinner?: boolean | undefined;
|
|
796
834
|
seed?: number | undefined;
|
|
797
835
|
teamCode?: string | undefined;
|
|
836
|
+
scoreExtraTime?: number | undefined;
|
|
798
837
|
}>;
|
|
799
838
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
800
839
|
homeTeamWins: z.ZodNumber;
|
|
@@ -881,6 +920,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
881
920
|
isWinner?: boolean | undefined;
|
|
882
921
|
seed?: number | undefined;
|
|
883
922
|
teamCode?: string | undefined;
|
|
923
|
+
scoreExtraTime?: number | undefined;
|
|
884
924
|
};
|
|
885
925
|
awayTeam: {
|
|
886
926
|
name: string;
|
|
@@ -891,6 +931,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
891
931
|
isWinner?: boolean | undefined;
|
|
892
932
|
seed?: number | undefined;
|
|
893
933
|
teamCode?: string | undefined;
|
|
934
|
+
scoreExtraTime?: number | undefined;
|
|
894
935
|
};
|
|
895
936
|
totalInningsRemaining: number;
|
|
896
937
|
innings: {
|
|
@@ -943,6 +984,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
943
984
|
isWinner?: boolean | undefined;
|
|
944
985
|
seed?: number | undefined;
|
|
945
986
|
teamCode?: string | undefined;
|
|
987
|
+
scoreExtraTime?: number | undefined;
|
|
946
988
|
};
|
|
947
989
|
awayTeam: {
|
|
948
990
|
name: string;
|
|
@@ -953,6 +995,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
953
995
|
isWinner?: boolean | undefined;
|
|
954
996
|
seed?: number | undefined;
|
|
955
997
|
teamCode?: string | undefined;
|
|
998
|
+
scoreExtraTime?: number | undefined;
|
|
956
999
|
};
|
|
957
1000
|
totalInningsRemaining: number;
|
|
958
1001
|
innings: {
|
|
@@ -1009,6 +1052,7 @@ export declare const eplGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1009
1052
|
image: z.ZodString;
|
|
1010
1053
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
1011
1054
|
teamCode: z.ZodOptional<z.ZodString>;
|
|
1055
|
+
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
1012
1056
|
}, "strip", z.ZodTypeAny, {
|
|
1013
1057
|
name: string;
|
|
1014
1058
|
image: string;
|
|
@@ -1018,6 +1062,7 @@ export declare const eplGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1018
1062
|
isWinner?: boolean | undefined;
|
|
1019
1063
|
seed?: number | undefined;
|
|
1020
1064
|
teamCode?: string | undefined;
|
|
1065
|
+
scoreExtraTime?: number | undefined;
|
|
1021
1066
|
}, {
|
|
1022
1067
|
name: string;
|
|
1023
1068
|
image: string;
|
|
@@ -1027,6 +1072,7 @@ export declare const eplGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1027
1072
|
isWinner?: boolean | undefined;
|
|
1028
1073
|
seed?: number | undefined;
|
|
1029
1074
|
teamCode?: string | undefined;
|
|
1075
|
+
scoreExtraTime?: number | undefined;
|
|
1030
1076
|
}>;
|
|
1031
1077
|
awayTeam: z.ZodObject<{
|
|
1032
1078
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1037,6 +1083,7 @@ export declare const eplGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1037
1083
|
image: z.ZodString;
|
|
1038
1084
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
1039
1085
|
teamCode: z.ZodOptional<z.ZodString>;
|
|
1086
|
+
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
1040
1087
|
}, "strip", z.ZodTypeAny, {
|
|
1041
1088
|
name: string;
|
|
1042
1089
|
image: string;
|
|
@@ -1046,6 +1093,7 @@ export declare const eplGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1046
1093
|
isWinner?: boolean | undefined;
|
|
1047
1094
|
seed?: number | undefined;
|
|
1048
1095
|
teamCode?: string | undefined;
|
|
1096
|
+
scoreExtraTime?: number | undefined;
|
|
1049
1097
|
}, {
|
|
1050
1098
|
name: string;
|
|
1051
1099
|
image: string;
|
|
@@ -1055,6 +1103,7 @@ export declare const eplGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1055
1103
|
isWinner?: boolean | undefined;
|
|
1056
1104
|
seed?: number | undefined;
|
|
1057
1105
|
teamCode?: string | undefined;
|
|
1106
|
+
scoreExtraTime?: number | undefined;
|
|
1058
1107
|
}>;
|
|
1059
1108
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
1060
1109
|
homeTeamWins: z.ZodNumber;
|
|
@@ -1116,6 +1165,7 @@ export declare const eplGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1116
1165
|
image: z.ZodString;
|
|
1117
1166
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
1118
1167
|
teamCode: z.ZodOptional<z.ZodString>;
|
|
1168
|
+
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
1119
1169
|
}, {
|
|
1120
1170
|
scorePeriod1: z.ZodNumber;
|
|
1121
1171
|
scorePeriod2: z.ZodNumber;
|
|
@@ -1127,9 +1177,9 @@ export declare const eplGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1127
1177
|
image: string;
|
|
1128
1178
|
apiTeamId: number;
|
|
1129
1179
|
score: number;
|
|
1180
|
+
scoreExtraTime: number;
|
|
1130
1181
|
scorePeriod1: number;
|
|
1131
1182
|
scorePeriod2: number;
|
|
1132
|
-
scoreExtraTime: number;
|
|
1133
1183
|
scorePenalty: number;
|
|
1134
1184
|
id?: string | undefined;
|
|
1135
1185
|
isWinner?: boolean | undefined;
|
|
@@ -1141,9 +1191,9 @@ export declare const eplGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1141
1191
|
image: string;
|
|
1142
1192
|
apiTeamId: number;
|
|
1143
1193
|
score: number;
|
|
1194
|
+
scoreExtraTime: number;
|
|
1144
1195
|
scorePeriod1: number;
|
|
1145
1196
|
scorePeriod2: number;
|
|
1146
|
-
scoreExtraTime: number;
|
|
1147
1197
|
scorePenalty: number;
|
|
1148
1198
|
id?: string | undefined;
|
|
1149
1199
|
isWinner?: boolean | undefined;
|
|
@@ -1160,6 +1210,7 @@ export declare const eplGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1160
1210
|
image: z.ZodString;
|
|
1161
1211
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
1162
1212
|
teamCode: z.ZodOptional<z.ZodString>;
|
|
1213
|
+
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
1163
1214
|
}, {
|
|
1164
1215
|
scorePeriod1: z.ZodNumber;
|
|
1165
1216
|
scorePeriod2: z.ZodNumber;
|
|
@@ -1171,9 +1222,9 @@ export declare const eplGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1171
1222
|
image: string;
|
|
1172
1223
|
apiTeamId: number;
|
|
1173
1224
|
score: number;
|
|
1225
|
+
scoreExtraTime: number;
|
|
1174
1226
|
scorePeriod1: number;
|
|
1175
1227
|
scorePeriod2: number;
|
|
1176
|
-
scoreExtraTime: number;
|
|
1177
1228
|
scorePenalty: number;
|
|
1178
1229
|
id?: string | undefined;
|
|
1179
1230
|
isWinner?: boolean | undefined;
|
|
@@ -1185,9 +1236,9 @@ export declare const eplGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1185
1236
|
image: string;
|
|
1186
1237
|
apiTeamId: number;
|
|
1187
1238
|
score: number;
|
|
1239
|
+
scoreExtraTime: number;
|
|
1188
1240
|
scorePeriod1: number;
|
|
1189
1241
|
scorePeriod2: number;
|
|
1190
|
-
scoreExtraTime: number;
|
|
1191
1242
|
scorePenalty: number;
|
|
1192
1243
|
id?: string | undefined;
|
|
1193
1244
|
isWinner?: boolean | undefined;
|
|
@@ -1208,9 +1259,9 @@ export declare const eplGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1208
1259
|
image: string;
|
|
1209
1260
|
apiTeamId: number;
|
|
1210
1261
|
score: number;
|
|
1262
|
+
scoreExtraTime: number;
|
|
1211
1263
|
scorePeriod1: number;
|
|
1212
1264
|
scorePeriod2: number;
|
|
1213
|
-
scoreExtraTime: number;
|
|
1214
1265
|
scorePenalty: number;
|
|
1215
1266
|
id?: string | undefined;
|
|
1216
1267
|
isWinner?: boolean | undefined;
|
|
@@ -1223,9 +1274,9 @@ export declare const eplGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1223
1274
|
image: string;
|
|
1224
1275
|
apiTeamId: number;
|
|
1225
1276
|
score: number;
|
|
1277
|
+
scoreExtraTime: number;
|
|
1226
1278
|
scorePeriod1: number;
|
|
1227
1279
|
scorePeriod2: number;
|
|
1228
|
-
scoreExtraTime: number;
|
|
1229
1280
|
scorePenalty: number;
|
|
1230
1281
|
id?: string | undefined;
|
|
1231
1282
|
isWinner?: boolean | undefined;
|
|
@@ -1269,9 +1320,9 @@ export declare const eplGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1269
1320
|
image: string;
|
|
1270
1321
|
apiTeamId: number;
|
|
1271
1322
|
score: number;
|
|
1323
|
+
scoreExtraTime: number;
|
|
1272
1324
|
scorePeriod1: number;
|
|
1273
1325
|
scorePeriod2: number;
|
|
1274
|
-
scoreExtraTime: number;
|
|
1275
1326
|
scorePenalty: number;
|
|
1276
1327
|
id?: string | undefined;
|
|
1277
1328
|
isWinner?: boolean | undefined;
|
|
@@ -1284,9 +1335,9 @@ export declare const eplGameSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1284
1335
|
image: string;
|
|
1285
1336
|
apiTeamId: number;
|
|
1286
1337
|
score: number;
|
|
1338
|
+
scoreExtraTime: number;
|
|
1287
1339
|
scorePeriod1: number;
|
|
1288
1340
|
scorePeriod2: number;
|
|
1289
|
-
scoreExtraTime: number;
|
|
1290
1341
|
scorePenalty: number;
|
|
1291
1342
|
id?: string | undefined;
|
|
1292
1343
|
isWinner?: boolean | undefined;
|
|
@@ -1337,6 +1388,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1337
1388
|
image: z.ZodString;
|
|
1338
1389
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
1339
1390
|
teamCode: z.ZodOptional<z.ZodString>;
|
|
1391
|
+
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
1340
1392
|
}, "strip", z.ZodTypeAny, {
|
|
1341
1393
|
name: string;
|
|
1342
1394
|
image: string;
|
|
@@ -1346,6 +1398,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1346
1398
|
isWinner?: boolean | undefined;
|
|
1347
1399
|
seed?: number | undefined;
|
|
1348
1400
|
teamCode?: string | undefined;
|
|
1401
|
+
scoreExtraTime?: number | undefined;
|
|
1349
1402
|
}, {
|
|
1350
1403
|
name: string;
|
|
1351
1404
|
image: string;
|
|
@@ -1355,6 +1408,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1355
1408
|
isWinner?: boolean | undefined;
|
|
1356
1409
|
seed?: number | undefined;
|
|
1357
1410
|
teamCode?: string | undefined;
|
|
1411
|
+
scoreExtraTime?: number | undefined;
|
|
1358
1412
|
}>;
|
|
1359
1413
|
awayTeam: z.ZodObject<{
|
|
1360
1414
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1365,6 +1419,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1365
1419
|
image: z.ZodString;
|
|
1366
1420
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
1367
1421
|
teamCode: z.ZodOptional<z.ZodString>;
|
|
1422
|
+
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
1368
1423
|
}, "strip", z.ZodTypeAny, {
|
|
1369
1424
|
name: string;
|
|
1370
1425
|
image: string;
|
|
@@ -1374,6 +1429,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1374
1429
|
isWinner?: boolean | undefined;
|
|
1375
1430
|
seed?: number | undefined;
|
|
1376
1431
|
teamCode?: string | undefined;
|
|
1432
|
+
scoreExtraTime?: number | undefined;
|
|
1377
1433
|
}, {
|
|
1378
1434
|
name: string;
|
|
1379
1435
|
image: string;
|
|
@@ -1383,6 +1439,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1383
1439
|
isWinner?: boolean | undefined;
|
|
1384
1440
|
seed?: number | undefined;
|
|
1385
1441
|
teamCode?: string | undefined;
|
|
1442
|
+
scoreExtraTime?: number | undefined;
|
|
1386
1443
|
}>;
|
|
1387
1444
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
1388
1445
|
homeTeamWins: z.ZodNumber;
|
|
@@ -1460,6 +1517,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1460
1517
|
isWinner?: boolean | undefined;
|
|
1461
1518
|
seed?: number | undefined;
|
|
1462
1519
|
teamCode?: string | undefined;
|
|
1520
|
+
scoreExtraTime?: number | undefined;
|
|
1463
1521
|
};
|
|
1464
1522
|
awayTeam: {
|
|
1465
1523
|
name: string;
|
|
@@ -1470,6 +1528,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1470
1528
|
isWinner?: boolean | undefined;
|
|
1471
1529
|
seed?: number | undefined;
|
|
1472
1530
|
teamCode?: string | undefined;
|
|
1531
|
+
scoreExtraTime?: number | undefined;
|
|
1473
1532
|
};
|
|
1474
1533
|
timeRemainingMinutes: number;
|
|
1475
1534
|
timeRemainingSeconds: number;
|
|
@@ -1512,6 +1571,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1512
1571
|
isWinner?: boolean | undefined;
|
|
1513
1572
|
seed?: number | undefined;
|
|
1514
1573
|
teamCode?: string | undefined;
|
|
1574
|
+
scoreExtraTime?: number | undefined;
|
|
1515
1575
|
};
|
|
1516
1576
|
awayTeam: {
|
|
1517
1577
|
name: string;
|
|
@@ -1522,6 +1582,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1522
1582
|
isWinner?: boolean | undefined;
|
|
1523
1583
|
seed?: number | undefined;
|
|
1524
1584
|
teamCode?: string | undefined;
|
|
1585
|
+
scoreExtraTime?: number | undefined;
|
|
1525
1586
|
};
|
|
1526
1587
|
timeRemainingMinutes: number;
|
|
1527
1588
|
timeRemainingSeconds: number;
|
|
@@ -1566,6 +1627,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1566
1627
|
image: z.ZodString;
|
|
1567
1628
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
1568
1629
|
teamCode: z.ZodOptional<z.ZodString>;
|
|
1630
|
+
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
1569
1631
|
}, "strip", z.ZodTypeAny, {
|
|
1570
1632
|
name: string;
|
|
1571
1633
|
image: string;
|
|
@@ -1575,6 +1637,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1575
1637
|
isWinner?: boolean | undefined;
|
|
1576
1638
|
seed?: number | undefined;
|
|
1577
1639
|
teamCode?: string | undefined;
|
|
1640
|
+
scoreExtraTime?: number | undefined;
|
|
1578
1641
|
}, {
|
|
1579
1642
|
name: string;
|
|
1580
1643
|
image: string;
|
|
@@ -1584,6 +1647,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1584
1647
|
isWinner?: boolean | undefined;
|
|
1585
1648
|
seed?: number | undefined;
|
|
1586
1649
|
teamCode?: string | undefined;
|
|
1650
|
+
scoreExtraTime?: number | undefined;
|
|
1587
1651
|
}>;
|
|
1588
1652
|
awayTeam: z.ZodObject<{
|
|
1589
1653
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1594,6 +1658,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1594
1658
|
image: z.ZodString;
|
|
1595
1659
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
1596
1660
|
teamCode: z.ZodOptional<z.ZodString>;
|
|
1661
|
+
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
1597
1662
|
}, "strip", z.ZodTypeAny, {
|
|
1598
1663
|
name: string;
|
|
1599
1664
|
image: string;
|
|
@@ -1603,6 +1668,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1603
1668
|
isWinner?: boolean | undefined;
|
|
1604
1669
|
seed?: number | undefined;
|
|
1605
1670
|
teamCode?: string | undefined;
|
|
1671
|
+
scoreExtraTime?: number | undefined;
|
|
1606
1672
|
}, {
|
|
1607
1673
|
name: string;
|
|
1608
1674
|
image: string;
|
|
@@ -1612,6 +1678,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1612
1678
|
isWinner?: boolean | undefined;
|
|
1613
1679
|
seed?: number | undefined;
|
|
1614
1680
|
teamCode?: string | undefined;
|
|
1681
|
+
scoreExtraTime?: number | undefined;
|
|
1615
1682
|
}>;
|
|
1616
1683
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
1617
1684
|
homeTeamWins: z.ZodNumber;
|
|
@@ -1698,6 +1765,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1698
1765
|
isWinner?: boolean | undefined;
|
|
1699
1766
|
seed?: number | undefined;
|
|
1700
1767
|
teamCode?: string | undefined;
|
|
1768
|
+
scoreExtraTime?: number | undefined;
|
|
1701
1769
|
};
|
|
1702
1770
|
awayTeam: {
|
|
1703
1771
|
name: string;
|
|
@@ -1708,6 +1776,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1708
1776
|
isWinner?: boolean | undefined;
|
|
1709
1777
|
seed?: number | undefined;
|
|
1710
1778
|
teamCode?: string | undefined;
|
|
1779
|
+
scoreExtraTime?: number | undefined;
|
|
1711
1780
|
};
|
|
1712
1781
|
totalInningsRemaining: number;
|
|
1713
1782
|
innings: {
|
|
@@ -1760,6 +1829,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1760
1829
|
isWinner?: boolean | undefined;
|
|
1761
1830
|
seed?: number | undefined;
|
|
1762
1831
|
teamCode?: string | undefined;
|
|
1832
|
+
scoreExtraTime?: number | undefined;
|
|
1763
1833
|
};
|
|
1764
1834
|
awayTeam: {
|
|
1765
1835
|
name: string;
|
|
@@ -1770,6 +1840,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1770
1840
|
isWinner?: boolean | undefined;
|
|
1771
1841
|
seed?: number | undefined;
|
|
1772
1842
|
teamCode?: string | undefined;
|
|
1843
|
+
scoreExtraTime?: number | undefined;
|
|
1773
1844
|
};
|
|
1774
1845
|
totalInningsRemaining: number;
|
|
1775
1846
|
innings: {
|
|
@@ -1825,6 +1896,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1825
1896
|
image: z.ZodString;
|
|
1826
1897
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
1827
1898
|
teamCode: z.ZodOptional<z.ZodString>;
|
|
1899
|
+
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
1828
1900
|
}, "strip", z.ZodTypeAny, {
|
|
1829
1901
|
name: string;
|
|
1830
1902
|
image: string;
|
|
@@ -1834,6 +1906,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1834
1906
|
isWinner?: boolean | undefined;
|
|
1835
1907
|
seed?: number | undefined;
|
|
1836
1908
|
teamCode?: string | undefined;
|
|
1909
|
+
scoreExtraTime?: number | undefined;
|
|
1837
1910
|
}, {
|
|
1838
1911
|
name: string;
|
|
1839
1912
|
image: string;
|
|
@@ -1843,6 +1916,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1843
1916
|
isWinner?: boolean | undefined;
|
|
1844
1917
|
seed?: number | undefined;
|
|
1845
1918
|
teamCode?: string | undefined;
|
|
1919
|
+
scoreExtraTime?: number | undefined;
|
|
1846
1920
|
}>;
|
|
1847
1921
|
awayTeam: z.ZodObject<{
|
|
1848
1922
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1853,6 +1927,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1853
1927
|
image: z.ZodString;
|
|
1854
1928
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
1855
1929
|
teamCode: z.ZodOptional<z.ZodString>;
|
|
1930
|
+
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
1856
1931
|
}, "strip", z.ZodTypeAny, {
|
|
1857
1932
|
name: string;
|
|
1858
1933
|
image: string;
|
|
@@ -1862,6 +1937,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1862
1937
|
isWinner?: boolean | undefined;
|
|
1863
1938
|
seed?: number | undefined;
|
|
1864
1939
|
teamCode?: string | undefined;
|
|
1940
|
+
scoreExtraTime?: number | undefined;
|
|
1865
1941
|
}, {
|
|
1866
1942
|
name: string;
|
|
1867
1943
|
image: string;
|
|
@@ -1871,6 +1947,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1871
1947
|
isWinner?: boolean | undefined;
|
|
1872
1948
|
seed?: number | undefined;
|
|
1873
1949
|
teamCode?: string | undefined;
|
|
1950
|
+
scoreExtraTime?: number | undefined;
|
|
1874
1951
|
}>;
|
|
1875
1952
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
1876
1953
|
homeTeamWins: z.ZodNumber;
|
|
@@ -1932,6 +2009,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1932
2009
|
image: z.ZodString;
|
|
1933
2010
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
1934
2011
|
teamCode: z.ZodOptional<z.ZodString>;
|
|
2012
|
+
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
1935
2013
|
}, {
|
|
1936
2014
|
scorePeriod1: z.ZodNumber;
|
|
1937
2015
|
scorePeriod2: z.ZodNumber;
|
|
@@ -1943,9 +2021,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1943
2021
|
image: string;
|
|
1944
2022
|
apiTeamId: number;
|
|
1945
2023
|
score: number;
|
|
2024
|
+
scoreExtraTime: number;
|
|
1946
2025
|
scorePeriod1: number;
|
|
1947
2026
|
scorePeriod2: number;
|
|
1948
|
-
scoreExtraTime: number;
|
|
1949
2027
|
scorePenalty: number;
|
|
1950
2028
|
id?: string | undefined;
|
|
1951
2029
|
isWinner?: boolean | undefined;
|
|
@@ -1957,9 +2035,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1957
2035
|
image: string;
|
|
1958
2036
|
apiTeamId: number;
|
|
1959
2037
|
score: number;
|
|
2038
|
+
scoreExtraTime: number;
|
|
1960
2039
|
scorePeriod1: number;
|
|
1961
2040
|
scorePeriod2: number;
|
|
1962
|
-
scoreExtraTime: number;
|
|
1963
2041
|
scorePenalty: number;
|
|
1964
2042
|
id?: string | undefined;
|
|
1965
2043
|
isWinner?: boolean | undefined;
|
|
@@ -1976,6 +2054,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1976
2054
|
image: z.ZodString;
|
|
1977
2055
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
1978
2056
|
teamCode: z.ZodOptional<z.ZodString>;
|
|
2057
|
+
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
1979
2058
|
}, {
|
|
1980
2059
|
scorePeriod1: z.ZodNumber;
|
|
1981
2060
|
scorePeriod2: z.ZodNumber;
|
|
@@ -1987,9 +2066,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
1987
2066
|
image: string;
|
|
1988
2067
|
apiTeamId: number;
|
|
1989
2068
|
score: number;
|
|
2069
|
+
scoreExtraTime: number;
|
|
1990
2070
|
scorePeriod1: number;
|
|
1991
2071
|
scorePeriod2: number;
|
|
1992
|
-
scoreExtraTime: number;
|
|
1993
2072
|
scorePenalty: number;
|
|
1994
2073
|
id?: string | undefined;
|
|
1995
2074
|
isWinner?: boolean | undefined;
|
|
@@ -2001,9 +2080,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
2001
2080
|
image: string;
|
|
2002
2081
|
apiTeamId: number;
|
|
2003
2082
|
score: number;
|
|
2083
|
+
scoreExtraTime: number;
|
|
2004
2084
|
scorePeriod1: number;
|
|
2005
2085
|
scorePeriod2: number;
|
|
2006
|
-
scoreExtraTime: number;
|
|
2007
2086
|
scorePenalty: number;
|
|
2008
2087
|
id?: string | undefined;
|
|
2009
2088
|
isWinner?: boolean | undefined;
|
|
@@ -2024,9 +2103,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
2024
2103
|
image: string;
|
|
2025
2104
|
apiTeamId: number;
|
|
2026
2105
|
score: number;
|
|
2106
|
+
scoreExtraTime: number;
|
|
2027
2107
|
scorePeriod1: number;
|
|
2028
2108
|
scorePeriod2: number;
|
|
2029
|
-
scoreExtraTime: number;
|
|
2030
2109
|
scorePenalty: number;
|
|
2031
2110
|
id?: string | undefined;
|
|
2032
2111
|
isWinner?: boolean | undefined;
|
|
@@ -2039,9 +2118,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
2039
2118
|
image: string;
|
|
2040
2119
|
apiTeamId: number;
|
|
2041
2120
|
score: number;
|
|
2121
|
+
scoreExtraTime: number;
|
|
2042
2122
|
scorePeriod1: number;
|
|
2043
2123
|
scorePeriod2: number;
|
|
2044
|
-
scoreExtraTime: number;
|
|
2045
2124
|
scorePenalty: number;
|
|
2046
2125
|
id?: string | undefined;
|
|
2047
2126
|
isWinner?: boolean | undefined;
|
|
@@ -2085,9 +2164,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
2085
2164
|
image: string;
|
|
2086
2165
|
apiTeamId: number;
|
|
2087
2166
|
score: number;
|
|
2167
|
+
scoreExtraTime: number;
|
|
2088
2168
|
scorePeriod1: number;
|
|
2089
2169
|
scorePeriod2: number;
|
|
2090
|
-
scoreExtraTime: number;
|
|
2091
2170
|
scorePenalty: number;
|
|
2092
2171
|
id?: string | undefined;
|
|
2093
2172
|
isWinner?: boolean | undefined;
|
|
@@ -2100,9 +2179,9 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
|
|
|
2100
2179
|
image: string;
|
|
2101
2180
|
apiTeamId: number;
|
|
2102
2181
|
score: number;
|
|
2182
|
+
scoreExtraTime: number;
|
|
2103
2183
|
scorePeriod1: number;
|
|
2104
2184
|
scorePeriod2: number;
|
|
2105
|
-
scoreExtraTime: number;
|
|
2106
2185
|
scorePenalty: number;
|
|
2107
2186
|
id?: string | undefined;
|
|
2108
2187
|
isWinner?: boolean | undefined;
|
package/dist/schemas/game.js
CHANGED
|
@@ -11,6 +11,7 @@ exports.gameTeamSchema = zod_1.z.object({
|
|
|
11
11
|
image: zod_1.z.string(),
|
|
12
12
|
seed: zod_1.z.number().optional(),
|
|
13
13
|
teamCode: zod_1.z.string().optional(),
|
|
14
|
+
scoreExtraTime: zod_1.z.number().optional(),
|
|
14
15
|
});
|
|
15
16
|
exports.gameRatingAggregateSchema = zod_1.z.object({
|
|
16
17
|
avg: zod_1.z.number(),
|
|
@@ -65,6 +65,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
65
65
|
image: z.ZodString;
|
|
66
66
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
67
67
|
teamCode: z.ZodOptional<z.ZodString>;
|
|
68
|
+
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
68
69
|
}, "strip", z.ZodTypeAny, {
|
|
69
70
|
name: string;
|
|
70
71
|
image: string;
|
|
@@ -74,6 +75,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
74
75
|
isWinner?: boolean | undefined;
|
|
75
76
|
seed?: number | undefined;
|
|
76
77
|
teamCode?: string | undefined;
|
|
78
|
+
scoreExtraTime?: number | undefined;
|
|
77
79
|
}, {
|
|
78
80
|
name: string;
|
|
79
81
|
image: string;
|
|
@@ -83,6 +85,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
83
85
|
isWinner?: boolean | undefined;
|
|
84
86
|
seed?: number | undefined;
|
|
85
87
|
teamCode?: string | undefined;
|
|
88
|
+
scoreExtraTime?: number | undefined;
|
|
86
89
|
}>;
|
|
87
90
|
awayTeam: z.ZodObject<{
|
|
88
91
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -93,6 +96,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
93
96
|
image: z.ZodString;
|
|
94
97
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
95
98
|
teamCode: z.ZodOptional<z.ZodString>;
|
|
99
|
+
scoreExtraTime: z.ZodOptional<z.ZodNumber>;
|
|
96
100
|
}, "strip", z.ZodTypeAny, {
|
|
97
101
|
name: string;
|
|
98
102
|
image: string;
|
|
@@ -102,6 +106,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
102
106
|
isWinner?: boolean | undefined;
|
|
103
107
|
seed?: number | undefined;
|
|
104
108
|
teamCode?: string | undefined;
|
|
109
|
+
scoreExtraTime?: number | undefined;
|
|
105
110
|
}, {
|
|
106
111
|
name: string;
|
|
107
112
|
image: string;
|
|
@@ -111,6 +116,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
111
116
|
isWinner?: boolean | undefined;
|
|
112
117
|
seed?: number | undefined;
|
|
113
118
|
teamCode?: string | undefined;
|
|
119
|
+
scoreExtraTime?: number | undefined;
|
|
114
120
|
}>;
|
|
115
121
|
seriesInfo: z.ZodOptional<z.ZodObject<{
|
|
116
122
|
homeTeamWins: z.ZodNumber;
|
|
@@ -141,6 +147,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
141
147
|
isWinner?: boolean | undefined;
|
|
142
148
|
seed?: number | undefined;
|
|
143
149
|
teamCode?: string | undefined;
|
|
150
|
+
scoreExtraTime?: number | undefined;
|
|
144
151
|
};
|
|
145
152
|
awayTeam: {
|
|
146
153
|
name: string;
|
|
@@ -151,6 +158,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
151
158
|
isWinner?: boolean | undefined;
|
|
152
159
|
seed?: number | undefined;
|
|
153
160
|
teamCode?: string | undefined;
|
|
161
|
+
scoreExtraTime?: number | undefined;
|
|
154
162
|
};
|
|
155
163
|
round?: number | undefined;
|
|
156
164
|
week?: number | undefined;
|
|
@@ -172,6 +180,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
172
180
|
isWinner?: boolean | undefined;
|
|
173
181
|
seed?: number | undefined;
|
|
174
182
|
teamCode?: string | undefined;
|
|
183
|
+
scoreExtraTime?: number | undefined;
|
|
175
184
|
};
|
|
176
185
|
awayTeam: {
|
|
177
186
|
name: string;
|
|
@@ -182,6 +191,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
182
191
|
isWinner?: boolean | undefined;
|
|
183
192
|
seed?: number | undefined;
|
|
184
193
|
teamCode?: string | undefined;
|
|
194
|
+
scoreExtraTime?: number | undefined;
|
|
185
195
|
};
|
|
186
196
|
round?: number | undefined;
|
|
187
197
|
week?: number | undefined;
|
|
@@ -216,6 +226,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
216
226
|
isWinner?: boolean | undefined;
|
|
217
227
|
seed?: number | undefined;
|
|
218
228
|
teamCode?: string | undefined;
|
|
229
|
+
scoreExtraTime?: number | undefined;
|
|
219
230
|
};
|
|
220
231
|
awayTeam: {
|
|
221
232
|
name: string;
|
|
@@ -226,6 +237,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
226
237
|
isWinner?: boolean | undefined;
|
|
227
238
|
seed?: number | undefined;
|
|
228
239
|
teamCode?: string | undefined;
|
|
240
|
+
scoreExtraTime?: number | undefined;
|
|
229
241
|
};
|
|
230
242
|
round?: number | undefined;
|
|
231
243
|
week?: number | undefined;
|
|
@@ -261,6 +273,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
261
273
|
isWinner?: boolean | undefined;
|
|
262
274
|
seed?: number | undefined;
|
|
263
275
|
teamCode?: string | undefined;
|
|
276
|
+
scoreExtraTime?: number | undefined;
|
|
264
277
|
};
|
|
265
278
|
awayTeam: {
|
|
266
279
|
name: string;
|
|
@@ -271,6 +284,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
271
284
|
isWinner?: boolean | undefined;
|
|
272
285
|
seed?: number | undefined;
|
|
273
286
|
teamCode?: string | undefined;
|
|
287
|
+
scoreExtraTime?: number | undefined;
|
|
274
288
|
};
|
|
275
289
|
round?: number | undefined;
|
|
276
290
|
week?: number | undefined;
|
|
@@ -323,6 +337,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
323
337
|
isWinner?: boolean | undefined;
|
|
324
338
|
seed?: number | undefined;
|
|
325
339
|
teamCode?: string | undefined;
|
|
340
|
+
scoreExtraTime?: number | undefined;
|
|
326
341
|
};
|
|
327
342
|
awayTeam: {
|
|
328
343
|
name: string;
|
|
@@ -333,6 +348,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
333
348
|
isWinner?: boolean | undefined;
|
|
334
349
|
seed?: number | undefined;
|
|
335
350
|
teamCode?: string | undefined;
|
|
351
|
+
scoreExtraTime?: number | undefined;
|
|
336
352
|
};
|
|
337
353
|
round?: number | undefined;
|
|
338
354
|
week?: number | undefined;
|
|
@@ -386,6 +402,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
386
402
|
isWinner?: boolean | undefined;
|
|
387
403
|
seed?: number | undefined;
|
|
388
404
|
teamCode?: string | undefined;
|
|
405
|
+
scoreExtraTime?: number | undefined;
|
|
389
406
|
};
|
|
390
407
|
awayTeam: {
|
|
391
408
|
name: string;
|
|
@@ -396,6 +413,7 @@ export declare const internalNotification: z.ZodObject<{
|
|
|
396
413
|
isWinner?: boolean | undefined;
|
|
397
414
|
seed?: number | undefined;
|
|
398
415
|
teamCode?: string | undefined;
|
|
416
|
+
scoreExtraTime?: number | undefined;
|
|
399
417
|
};
|
|
400
418
|
round?: number | undefined;
|
|
401
419
|
week?: number | undefined;
|
package/dist/schemas/rating.d.ts
CHANGED
|
@@ -35,6 +35,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
35
35
|
image: import("zod").ZodString;
|
|
36
36
|
seed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
37
37
|
teamCode: import("zod").ZodOptional<import("zod").ZodString>;
|
|
38
|
+
scoreExtraTime: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
38
39
|
}, "strip", import("zod").ZodTypeAny, {
|
|
39
40
|
name: string;
|
|
40
41
|
image: string;
|
|
@@ -44,6 +45,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
44
45
|
isWinner?: boolean | undefined;
|
|
45
46
|
seed?: number | undefined;
|
|
46
47
|
teamCode?: string | undefined;
|
|
48
|
+
scoreExtraTime?: number | undefined;
|
|
47
49
|
}, {
|
|
48
50
|
name: string;
|
|
49
51
|
image: string;
|
|
@@ -53,6 +55,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
53
55
|
isWinner?: boolean | undefined;
|
|
54
56
|
seed?: number | undefined;
|
|
55
57
|
teamCode?: string | undefined;
|
|
58
|
+
scoreExtraTime?: number | undefined;
|
|
56
59
|
}>;
|
|
57
60
|
awayTeam: import("zod").ZodObject<{
|
|
58
61
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -63,6 +66,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
63
66
|
image: import("zod").ZodString;
|
|
64
67
|
seed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
65
68
|
teamCode: import("zod").ZodOptional<import("zod").ZodString>;
|
|
69
|
+
scoreExtraTime: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
66
70
|
}, "strip", import("zod").ZodTypeAny, {
|
|
67
71
|
name: string;
|
|
68
72
|
image: string;
|
|
@@ -72,6 +76,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
72
76
|
isWinner?: boolean | undefined;
|
|
73
77
|
seed?: number | undefined;
|
|
74
78
|
teamCode?: string | undefined;
|
|
79
|
+
scoreExtraTime?: number | undefined;
|
|
75
80
|
}, {
|
|
76
81
|
name: string;
|
|
77
82
|
image: string;
|
|
@@ -81,6 +86,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
81
86
|
isWinner?: boolean | undefined;
|
|
82
87
|
seed?: number | undefined;
|
|
83
88
|
teamCode?: string | undefined;
|
|
89
|
+
scoreExtraTime?: number | undefined;
|
|
84
90
|
}>;
|
|
85
91
|
seriesInfo: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
86
92
|
homeTeamWins: import("zod").ZodNumber;
|
|
@@ -111,6 +117,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
111
117
|
isWinner?: boolean | undefined;
|
|
112
118
|
seed?: number | undefined;
|
|
113
119
|
teamCode?: string | undefined;
|
|
120
|
+
scoreExtraTime?: number | undefined;
|
|
114
121
|
};
|
|
115
122
|
awayTeam: {
|
|
116
123
|
name: string;
|
|
@@ -121,6 +128,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
121
128
|
isWinner?: boolean | undefined;
|
|
122
129
|
seed?: number | undefined;
|
|
123
130
|
teamCode?: string | undefined;
|
|
131
|
+
scoreExtraTime?: number | undefined;
|
|
124
132
|
};
|
|
125
133
|
round?: number | undefined;
|
|
126
134
|
week?: number | undefined;
|
|
@@ -142,6 +150,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
142
150
|
isWinner?: boolean | undefined;
|
|
143
151
|
seed?: number | undefined;
|
|
144
152
|
teamCode?: string | undefined;
|
|
153
|
+
scoreExtraTime?: number | undefined;
|
|
145
154
|
};
|
|
146
155
|
awayTeam: {
|
|
147
156
|
name: string;
|
|
@@ -152,6 +161,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
152
161
|
isWinner?: boolean | undefined;
|
|
153
162
|
seed?: number | undefined;
|
|
154
163
|
teamCode?: string | undefined;
|
|
164
|
+
scoreExtraTime?: number | undefined;
|
|
155
165
|
};
|
|
156
166
|
round?: number | undefined;
|
|
157
167
|
week?: number | undefined;
|
|
@@ -186,6 +196,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
186
196
|
isWinner?: boolean | undefined;
|
|
187
197
|
seed?: number | undefined;
|
|
188
198
|
teamCode?: string | undefined;
|
|
199
|
+
scoreExtraTime?: number | undefined;
|
|
189
200
|
};
|
|
190
201
|
awayTeam: {
|
|
191
202
|
name: string;
|
|
@@ -196,6 +207,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
196
207
|
isWinner?: boolean | undefined;
|
|
197
208
|
seed?: number | undefined;
|
|
198
209
|
teamCode?: string | undefined;
|
|
210
|
+
scoreExtraTime?: number | undefined;
|
|
199
211
|
};
|
|
200
212
|
round?: number | undefined;
|
|
201
213
|
week?: number | undefined;
|
|
@@ -231,6 +243,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
231
243
|
isWinner?: boolean | undefined;
|
|
232
244
|
seed?: number | undefined;
|
|
233
245
|
teamCode?: string | undefined;
|
|
246
|
+
scoreExtraTime?: number | undefined;
|
|
234
247
|
};
|
|
235
248
|
awayTeam: {
|
|
236
249
|
name: string;
|
|
@@ -241,6 +254,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
241
254
|
isWinner?: boolean | undefined;
|
|
242
255
|
seed?: number | undefined;
|
|
243
256
|
teamCode?: string | undefined;
|
|
257
|
+
scoreExtraTime?: number | undefined;
|
|
244
258
|
};
|
|
245
259
|
round?: number | undefined;
|
|
246
260
|
week?: number | undefined;
|
|
@@ -409,6 +423,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
409
423
|
image: import("zod").ZodString;
|
|
410
424
|
seed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
411
425
|
teamCode: import("zod").ZodOptional<import("zod").ZodString>;
|
|
426
|
+
scoreExtraTime: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
412
427
|
}, "strip", import("zod").ZodTypeAny, {
|
|
413
428
|
name: string;
|
|
414
429
|
image: string;
|
|
@@ -418,6 +433,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
418
433
|
isWinner?: boolean | undefined;
|
|
419
434
|
seed?: number | undefined;
|
|
420
435
|
teamCode?: string | undefined;
|
|
436
|
+
scoreExtraTime?: number | undefined;
|
|
421
437
|
}, {
|
|
422
438
|
name: string;
|
|
423
439
|
image: string;
|
|
@@ -427,6 +443,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
427
443
|
isWinner?: boolean | undefined;
|
|
428
444
|
seed?: number | undefined;
|
|
429
445
|
teamCode?: string | undefined;
|
|
446
|
+
scoreExtraTime?: number | undefined;
|
|
430
447
|
}>;
|
|
431
448
|
awayTeam: import("zod").ZodObject<{
|
|
432
449
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -437,6 +454,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
437
454
|
image: import("zod").ZodString;
|
|
438
455
|
seed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
439
456
|
teamCode: import("zod").ZodOptional<import("zod").ZodString>;
|
|
457
|
+
scoreExtraTime: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
440
458
|
}, "strip", import("zod").ZodTypeAny, {
|
|
441
459
|
name: string;
|
|
442
460
|
image: string;
|
|
@@ -446,6 +464,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
446
464
|
isWinner?: boolean | undefined;
|
|
447
465
|
seed?: number | undefined;
|
|
448
466
|
teamCode?: string | undefined;
|
|
467
|
+
scoreExtraTime?: number | undefined;
|
|
449
468
|
}, {
|
|
450
469
|
name: string;
|
|
451
470
|
image: string;
|
|
@@ -455,6 +474,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
455
474
|
isWinner?: boolean | undefined;
|
|
456
475
|
seed?: number | undefined;
|
|
457
476
|
teamCode?: string | undefined;
|
|
477
|
+
scoreExtraTime?: number | undefined;
|
|
458
478
|
}>;
|
|
459
479
|
seriesInfo: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
460
480
|
homeTeamWins: import("zod").ZodNumber;
|
|
@@ -485,6 +505,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
485
505
|
isWinner?: boolean | undefined;
|
|
486
506
|
seed?: number | undefined;
|
|
487
507
|
teamCode?: string | undefined;
|
|
508
|
+
scoreExtraTime?: number | undefined;
|
|
488
509
|
};
|
|
489
510
|
awayTeam: {
|
|
490
511
|
name: string;
|
|
@@ -495,6 +516,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
495
516
|
isWinner?: boolean | undefined;
|
|
496
517
|
seed?: number | undefined;
|
|
497
518
|
teamCode?: string | undefined;
|
|
519
|
+
scoreExtraTime?: number | undefined;
|
|
498
520
|
};
|
|
499
521
|
round?: number | undefined;
|
|
500
522
|
week?: number | undefined;
|
|
@@ -516,6 +538,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
516
538
|
isWinner?: boolean | undefined;
|
|
517
539
|
seed?: number | undefined;
|
|
518
540
|
teamCode?: string | undefined;
|
|
541
|
+
scoreExtraTime?: number | undefined;
|
|
519
542
|
};
|
|
520
543
|
awayTeam: {
|
|
521
544
|
name: string;
|
|
@@ -526,6 +549,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
526
549
|
isWinner?: boolean | undefined;
|
|
527
550
|
seed?: number | undefined;
|
|
528
551
|
teamCode?: string | undefined;
|
|
552
|
+
scoreExtraTime?: number | undefined;
|
|
529
553
|
};
|
|
530
554
|
round?: number | undefined;
|
|
531
555
|
week?: number | undefined;
|
|
@@ -551,6 +575,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
551
575
|
image: import("zod").ZodString;
|
|
552
576
|
seed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
553
577
|
teamCode: import("zod").ZodOptional<import("zod").ZodString>;
|
|
578
|
+
scoreExtraTime: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
554
579
|
}, "strip", import("zod").ZodTypeAny, {
|
|
555
580
|
name: string;
|
|
556
581
|
image: string;
|
|
@@ -560,6 +585,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
560
585
|
isWinner?: boolean | undefined;
|
|
561
586
|
seed?: number | undefined;
|
|
562
587
|
teamCode?: string | undefined;
|
|
588
|
+
scoreExtraTime?: number | undefined;
|
|
563
589
|
}, {
|
|
564
590
|
name: string;
|
|
565
591
|
image: string;
|
|
@@ -569,6 +595,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
569
595
|
isWinner?: boolean | undefined;
|
|
570
596
|
seed?: number | undefined;
|
|
571
597
|
teamCode?: string | undefined;
|
|
598
|
+
scoreExtraTime?: number | undefined;
|
|
572
599
|
}>;
|
|
573
600
|
awayTeam: import("zod").ZodObject<{
|
|
574
601
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -579,6 +606,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
579
606
|
image: import("zod").ZodString;
|
|
580
607
|
seed: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
581
608
|
teamCode: import("zod").ZodOptional<import("zod").ZodString>;
|
|
609
|
+
scoreExtraTime: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
582
610
|
}, "strip", import("zod").ZodTypeAny, {
|
|
583
611
|
name: string;
|
|
584
612
|
image: string;
|
|
@@ -588,6 +616,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
588
616
|
isWinner?: boolean | undefined;
|
|
589
617
|
seed?: number | undefined;
|
|
590
618
|
teamCode?: string | undefined;
|
|
619
|
+
scoreExtraTime?: number | undefined;
|
|
591
620
|
}, {
|
|
592
621
|
name: string;
|
|
593
622
|
image: string;
|
|
@@ -597,6 +626,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
597
626
|
isWinner?: boolean | undefined;
|
|
598
627
|
seed?: number | undefined;
|
|
599
628
|
teamCode?: string | undefined;
|
|
629
|
+
scoreExtraTime?: number | undefined;
|
|
600
630
|
}>;
|
|
601
631
|
seriesInfo: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
602
632
|
homeTeamWins: import("zod").ZodNumber;
|
|
@@ -947,16 +977,18 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
947
977
|
}>>;
|
|
948
978
|
spoilersEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
949
979
|
viewedChangelogs: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
950
|
-
}, "id" | "email" | "username" | "avatarUrl">, "strip", import("zod").ZodTypeAny, {
|
|
980
|
+
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", import("zod").ZodTypeAny, {
|
|
951
981
|
id: string;
|
|
952
982
|
email: string;
|
|
953
983
|
username: string;
|
|
954
984
|
avatarUrl?: string | null | undefined;
|
|
985
|
+
badge?: string | undefined;
|
|
955
986
|
}, {
|
|
956
987
|
id: string;
|
|
957
988
|
email: string;
|
|
958
989
|
username: string;
|
|
959
990
|
avatarUrl?: string | null | undefined;
|
|
991
|
+
badge?: string | undefined;
|
|
960
992
|
}>;
|
|
961
993
|
ratingId: import("zod").ZodString;
|
|
962
994
|
parentId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -1234,16 +1266,18 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1234
1266
|
}>>;
|
|
1235
1267
|
spoilersEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1236
1268
|
viewedChangelogs: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
1237
|
-
}, "id" | "email" | "username" | "avatarUrl">, "strip", import("zod").ZodTypeAny, {
|
|
1269
|
+
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", import("zod").ZodTypeAny, {
|
|
1238
1270
|
id: string;
|
|
1239
1271
|
email: string;
|
|
1240
1272
|
username: string;
|
|
1241
1273
|
avatarUrl?: string | null | undefined;
|
|
1274
|
+
badge?: string | undefined;
|
|
1242
1275
|
}, {
|
|
1243
1276
|
id: string;
|
|
1244
1277
|
email: string;
|
|
1245
1278
|
username: string;
|
|
1246
1279
|
avatarUrl?: string | null | undefined;
|
|
1280
|
+
badge?: string | undefined;
|
|
1247
1281
|
}>>>;
|
|
1248
1282
|
level: import("zod").ZodNumber;
|
|
1249
1283
|
authorGameRating: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
@@ -1265,6 +1299,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1265
1299
|
email: string;
|
|
1266
1300
|
username: string;
|
|
1267
1301
|
avatarUrl?: string | null | undefined;
|
|
1302
|
+
badge?: string | undefined;
|
|
1268
1303
|
};
|
|
1269
1304
|
createdAt: number;
|
|
1270
1305
|
gameId: string;
|
|
@@ -1277,6 +1312,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1277
1312
|
email: string;
|
|
1278
1313
|
username: string;
|
|
1279
1314
|
avatarUrl?: string | null | undefined;
|
|
1315
|
+
badge?: string | undefined;
|
|
1280
1316
|
} | null | undefined;
|
|
1281
1317
|
authorGameRating?: {
|
|
1282
1318
|
id: string;
|
|
@@ -1290,6 +1326,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1290
1326
|
email: string;
|
|
1291
1327
|
username: string;
|
|
1292
1328
|
avatarUrl?: string | null | undefined;
|
|
1329
|
+
badge?: string | undefined;
|
|
1293
1330
|
};
|
|
1294
1331
|
createdAt: number;
|
|
1295
1332
|
gameId: string;
|
|
@@ -1302,6 +1339,7 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1302
1339
|
email: string;
|
|
1303
1340
|
username: string;
|
|
1304
1341
|
avatarUrl?: string | null | undefined;
|
|
1342
|
+
badge?: string | undefined;
|
|
1305
1343
|
} | null | undefined;
|
|
1306
1344
|
authorGameRating?: {
|
|
1307
1345
|
id: string;
|
|
@@ -1583,16 +1621,18 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
|
|
|
1583
1621
|
}>>;
|
|
1584
1622
|
spoilersEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1585
1623
|
viewedChangelogs: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
1586
|
-
}, "id" | "email" | "username" | "avatarUrl">, "strip", import("zod").ZodTypeAny, {
|
|
1624
|
+
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", import("zod").ZodTypeAny, {
|
|
1587
1625
|
id: string;
|
|
1588
1626
|
email: string;
|
|
1589
1627
|
username: string;
|
|
1590
1628
|
avatarUrl?: string | null | undefined;
|
|
1629
|
+
badge?: string | undefined;
|
|
1591
1630
|
}, {
|
|
1592
1631
|
id: string;
|
|
1593
1632
|
email: string;
|
|
1594
1633
|
username: string;
|
|
1595
1634
|
avatarUrl?: string | null | undefined;
|
|
1635
|
+
badge?: string | undefined;
|
|
1596
1636
|
}>;
|
|
1597
1637
|
ratingId: import("zod").ZodString;
|
|
1598
1638
|
likedAt: import("zod").ZodNumber;
|
|
@@ -1605,6 +1645,7 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
|
|
|
1605
1645
|
email: string;
|
|
1606
1646
|
username: string;
|
|
1607
1647
|
avatarUrl?: string | null | undefined;
|
|
1648
|
+
badge?: string | undefined;
|
|
1608
1649
|
};
|
|
1609
1650
|
ratingId: string;
|
|
1610
1651
|
likedAt: number;
|
|
@@ -1617,6 +1658,7 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
|
|
|
1617
1658
|
email: string;
|
|
1618
1659
|
username: string;
|
|
1619
1660
|
avatarUrl?: string | null | undefined;
|
|
1661
|
+
badge?: string | undefined;
|
|
1620
1662
|
};
|
|
1621
1663
|
ratingId: string;
|
|
1622
1664
|
likedAt: number;
|
package/dist/schemas/user.d.ts
CHANGED
|
@@ -1150,14 +1150,16 @@ export declare const reducedUserSchema: import("zod").ZodObject<Pick<{
|
|
|
1150
1150
|
}>>;
|
|
1151
1151
|
spoilersEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1152
1152
|
viewedChangelogs: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
1153
|
-
}, "id" | "email" | "username" | "avatarUrl">, "strip", import("zod").ZodTypeAny, {
|
|
1153
|
+
}, "id" | "email" | "username" | "avatarUrl" | "badge">, "strip", import("zod").ZodTypeAny, {
|
|
1154
1154
|
id: string;
|
|
1155
1155
|
email: string;
|
|
1156
1156
|
username: string;
|
|
1157
1157
|
avatarUrl?: string | null | undefined;
|
|
1158
|
+
badge?: string | undefined;
|
|
1158
1159
|
}, {
|
|
1159
1160
|
id: string;
|
|
1160
1161
|
email: string;
|
|
1161
1162
|
username: string;
|
|
1162
1163
|
avatarUrl?: string | null | undefined;
|
|
1164
|
+
badge?: string | undefined;
|
|
1163
1165
|
}>;
|
package/dist/schemas/user.js
CHANGED