rategame-shared 1.1.321 → 1.1.323
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/models/pick.d.ts +2 -1
- package/dist/schemas/game.d.ts +245 -0
- package/dist/schemas/game.js +2 -0
- package/dist/schemas/notification.d.ts +27 -0
- package/dist/schemas/pick.d.ts +331 -0
- package/dist/schemas/pick.js +6 -1
- package/dist/schemas/rating.d.ts +49 -0
- package/dist/schemas/stadium.d.ts +28 -0
- package/dist/schemas/voting.d.ts +90 -0
- package/package.json +1 -1
package/dist/schemas/pick.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.gamePickUsersPaginatedResponseDtoSchema = exports.gamePickUsersResponseDtoSchema = exports.userPicksByTeamResponseDtoSchema = exports.userPicksTeamStatsSchema = exports.userPicksStatsResponseDtoSchema = exports.userPicksLeagueStatsSchema = exports.userPickResponseDtoSchema = exports.gamePickStatsResponseDtoSchema = exports.pickUpdateDtoSchema = exports.pickSubmissionResponseDtoSchema = exports.pickSubmissionDtoSchema = exports.miniPickSchema = exports.pickSchema = void 0;
|
|
3
|
+
exports.pickDeleteResponseDtoSchema = exports.gamePickUsersPaginatedResponseDtoSchema = exports.gamePickUsersResponseDtoSchema = exports.userPicksByTeamResponseDtoSchema = exports.userPicksTeamStatsSchema = exports.userPicksStatsResponseDtoSchema = exports.userPicksLeagueStatsSchema = exports.userPickResponseDtoSchema = exports.gamePickStatsResponseDtoSchema = exports.pickUpdateDtoSchema = exports.pickSubmissionResponseDtoSchema = exports.pickSubmissionDtoSchema = exports.miniPickSchema = exports.pickSchema = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
const sharedTypes_1 = require("./sharedTypes");
|
|
6
6
|
const user_1 = require("./user");
|
|
@@ -101,3 +101,8 @@ exports.gamePickUsersPaginatedResponseDtoSchema = zod_1.z.object({
|
|
|
101
101
|
nextCursor: zod_1.z.string().nullable(),
|
|
102
102
|
hasMore: zod_1.z.boolean(),
|
|
103
103
|
});
|
|
104
|
+
// Pick delete response DTO
|
|
105
|
+
exports.pickDeleteResponseDtoSchema = zod_1.z.object({
|
|
106
|
+
success: zod_1.z.boolean(),
|
|
107
|
+
message: zod_1.z.string().optional(),
|
|
108
|
+
});
|
package/dist/schemas/rating.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export declare const ratingMiniPickSchema: import("zod").ZodObject<{
|
|
|
14
14
|
school: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
15
15
|
city: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
16
16
|
venueName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
17
|
+
pickCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
17
18
|
}, "strip", import("zod").ZodTypeAny, {
|
|
18
19
|
name: string | null;
|
|
19
20
|
image: string | null;
|
|
@@ -28,6 +29,7 @@ export declare const ratingMiniPickSchema: import("zod").ZodObject<{
|
|
|
28
29
|
school?: string | null | undefined;
|
|
29
30
|
city?: string | null | undefined;
|
|
30
31
|
venueName?: string | null | undefined;
|
|
32
|
+
pickCount?: number | undefined;
|
|
31
33
|
}, {
|
|
32
34
|
name: string | null;
|
|
33
35
|
image: string | null;
|
|
@@ -42,6 +44,7 @@ export declare const ratingMiniPickSchema: import("zod").ZodObject<{
|
|
|
42
44
|
school?: string | null | undefined;
|
|
43
45
|
city?: string | null | undefined;
|
|
44
46
|
venueName?: string | null | undefined;
|
|
47
|
+
pickCount?: number | undefined;
|
|
45
48
|
}>;
|
|
46
49
|
}, "strip", import("zod").ZodTypeAny, {
|
|
47
50
|
id: string;
|
|
@@ -59,6 +62,7 @@ export declare const ratingMiniPickSchema: import("zod").ZodObject<{
|
|
|
59
62
|
school?: string | null | undefined;
|
|
60
63
|
city?: string | null | undefined;
|
|
61
64
|
venueName?: string | null | undefined;
|
|
65
|
+
pickCount?: number | undefined;
|
|
62
66
|
};
|
|
63
67
|
}, {
|
|
64
68
|
id: string;
|
|
@@ -76,6 +80,7 @@ export declare const ratingMiniPickSchema: import("zod").ZodObject<{
|
|
|
76
80
|
school?: string | null | undefined;
|
|
77
81
|
city?: string | null | undefined;
|
|
78
82
|
venueName?: string | null | undefined;
|
|
83
|
+
pickCount?: number | undefined;
|
|
79
84
|
};
|
|
80
85
|
}>;
|
|
81
86
|
export declare const ratingCategorySchema: import("zod").ZodUnion<[import("zod").ZodLiteral<"watched">, import("zod").ZodLiteral<"attended">, import("zod").ZodLiteral<"highlights">, import("zod").ZodLiteral<"listened">, import("zod").ZodLiteral<"partiallyWatched">]>;
|
|
@@ -121,6 +126,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
121
126
|
school: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
122
127
|
city: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
123
128
|
venueName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
129
|
+
pickCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
124
130
|
}, "strip", import("zod").ZodTypeAny, {
|
|
125
131
|
name: string | null;
|
|
126
132
|
image: string | null;
|
|
@@ -135,6 +141,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
135
141
|
school?: string | null | undefined;
|
|
136
142
|
city?: string | null | undefined;
|
|
137
143
|
venueName?: string | null | undefined;
|
|
144
|
+
pickCount?: number | undefined;
|
|
138
145
|
}, {
|
|
139
146
|
name: string | null;
|
|
140
147
|
image: string | null;
|
|
@@ -149,6 +156,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
149
156
|
school?: string | null | undefined;
|
|
150
157
|
city?: string | null | undefined;
|
|
151
158
|
venueName?: string | null | undefined;
|
|
159
|
+
pickCount?: number | undefined;
|
|
152
160
|
}>;
|
|
153
161
|
awayTeam: import("zod").ZodObject<{
|
|
154
162
|
id: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
@@ -164,6 +172,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
164
172
|
school: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
165
173
|
city: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
166
174
|
venueName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
175
|
+
pickCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
167
176
|
}, "strip", import("zod").ZodTypeAny, {
|
|
168
177
|
name: string | null;
|
|
169
178
|
image: string | null;
|
|
@@ -178,6 +187,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
178
187
|
school?: string | null | undefined;
|
|
179
188
|
city?: string | null | undefined;
|
|
180
189
|
venueName?: string | null | undefined;
|
|
190
|
+
pickCount?: number | undefined;
|
|
181
191
|
}, {
|
|
182
192
|
name: string | null;
|
|
183
193
|
image: string | null;
|
|
@@ -192,6 +202,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
192
202
|
school?: string | null | undefined;
|
|
193
203
|
city?: string | null | undefined;
|
|
194
204
|
venueName?: string | null | undefined;
|
|
205
|
+
pickCount?: number | undefined;
|
|
195
206
|
}>;
|
|
196
207
|
seriesInfo: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
197
208
|
homeTeamWins: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
@@ -231,6 +242,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
231
242
|
school?: string | null | undefined;
|
|
232
243
|
city?: string | null | undefined;
|
|
233
244
|
venueName?: string | null | undefined;
|
|
245
|
+
pickCount?: number | undefined;
|
|
234
246
|
};
|
|
235
247
|
awayTeam: {
|
|
236
248
|
name: string | null;
|
|
@@ -246,6 +258,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
246
258
|
school?: string | null | undefined;
|
|
247
259
|
city?: string | null | undefined;
|
|
248
260
|
venueName?: string | null | undefined;
|
|
261
|
+
pickCount?: number | undefined;
|
|
249
262
|
};
|
|
250
263
|
round?: number | undefined;
|
|
251
264
|
week?: number | undefined;
|
|
@@ -276,6 +289,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
276
289
|
school?: string | null | undefined;
|
|
277
290
|
city?: string | null | undefined;
|
|
278
291
|
venueName?: string | null | undefined;
|
|
292
|
+
pickCount?: number | undefined;
|
|
279
293
|
};
|
|
280
294
|
awayTeam: {
|
|
281
295
|
name: string | null;
|
|
@@ -291,6 +305,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
291
305
|
school?: string | null | undefined;
|
|
292
306
|
city?: string | null | undefined;
|
|
293
307
|
venueName?: string | null | undefined;
|
|
308
|
+
pickCount?: number | undefined;
|
|
294
309
|
};
|
|
295
310
|
round?: number | undefined;
|
|
296
311
|
week?: number | undefined;
|
|
@@ -331,6 +346,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
331
346
|
school: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
332
347
|
city: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
333
348
|
venueName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
349
|
+
pickCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
334
350
|
}, "strip", import("zod").ZodTypeAny, {
|
|
335
351
|
name: string | null;
|
|
336
352
|
image: string | null;
|
|
@@ -345,6 +361,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
345
361
|
school?: string | null | undefined;
|
|
346
362
|
city?: string | null | undefined;
|
|
347
363
|
venueName?: string | null | undefined;
|
|
364
|
+
pickCount?: number | undefined;
|
|
348
365
|
}, {
|
|
349
366
|
name: string | null;
|
|
350
367
|
image: string | null;
|
|
@@ -359,6 +376,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
359
376
|
school?: string | null | undefined;
|
|
360
377
|
city?: string | null | undefined;
|
|
361
378
|
venueName?: string | null | undefined;
|
|
379
|
+
pickCount?: number | undefined;
|
|
362
380
|
}>;
|
|
363
381
|
}, "strip", import("zod").ZodTypeAny, {
|
|
364
382
|
id: string;
|
|
@@ -376,6 +394,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
376
394
|
school?: string | null | undefined;
|
|
377
395
|
city?: string | null | undefined;
|
|
378
396
|
venueName?: string | null | undefined;
|
|
397
|
+
pickCount?: number | undefined;
|
|
379
398
|
};
|
|
380
399
|
}, {
|
|
381
400
|
id: string;
|
|
@@ -393,6 +412,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
393
412
|
school?: string | null | undefined;
|
|
394
413
|
city?: string | null | undefined;
|
|
395
414
|
venueName?: string | null | undefined;
|
|
415
|
+
pickCount?: number | undefined;
|
|
396
416
|
};
|
|
397
417
|
}>>;
|
|
398
418
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -423,6 +443,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
423
443
|
school?: string | null | undefined;
|
|
424
444
|
city?: string | null | undefined;
|
|
425
445
|
venueName?: string | null | undefined;
|
|
446
|
+
pickCount?: number | undefined;
|
|
426
447
|
};
|
|
427
448
|
awayTeam: {
|
|
428
449
|
name: string | null;
|
|
@@ -438,6 +459,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
438
459
|
school?: string | null | undefined;
|
|
439
460
|
city?: string | null | undefined;
|
|
440
461
|
venueName?: string | null | undefined;
|
|
462
|
+
pickCount?: number | undefined;
|
|
441
463
|
};
|
|
442
464
|
round?: number | undefined;
|
|
443
465
|
week?: number | undefined;
|
|
@@ -468,6 +490,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
468
490
|
school?: string | null | undefined;
|
|
469
491
|
city?: string | null | undefined;
|
|
470
492
|
venueName?: string | null | undefined;
|
|
493
|
+
pickCount?: number | undefined;
|
|
471
494
|
};
|
|
472
495
|
} | undefined;
|
|
473
496
|
weightedRating?: number | undefined;
|
|
@@ -509,6 +532,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
509
532
|
school?: string | null | undefined;
|
|
510
533
|
city?: string | null | undefined;
|
|
511
534
|
venueName?: string | null | undefined;
|
|
535
|
+
pickCount?: number | undefined;
|
|
512
536
|
};
|
|
513
537
|
awayTeam: {
|
|
514
538
|
name: string | null;
|
|
@@ -524,6 +548,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
524
548
|
school?: string | null | undefined;
|
|
525
549
|
city?: string | null | undefined;
|
|
526
550
|
venueName?: string | null | undefined;
|
|
551
|
+
pickCount?: number | undefined;
|
|
527
552
|
};
|
|
528
553
|
round?: number | undefined;
|
|
529
554
|
week?: number | undefined;
|
|
@@ -554,6 +579,7 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
554
579
|
school?: string | null | undefined;
|
|
555
580
|
city?: string | null | undefined;
|
|
556
581
|
venueName?: string | null | undefined;
|
|
582
|
+
pickCount?: number | undefined;
|
|
557
583
|
};
|
|
558
584
|
} | undefined;
|
|
559
585
|
weightedRating?: number | undefined;
|
|
@@ -737,6 +763,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
737
763
|
school: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
738
764
|
city: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
739
765
|
venueName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
766
|
+
pickCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
740
767
|
}, "strip", import("zod").ZodTypeAny, {
|
|
741
768
|
name: string | null;
|
|
742
769
|
image: string | null;
|
|
@@ -751,6 +778,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
751
778
|
school?: string | null | undefined;
|
|
752
779
|
city?: string | null | undefined;
|
|
753
780
|
venueName?: string | null | undefined;
|
|
781
|
+
pickCount?: number | undefined;
|
|
754
782
|
}, {
|
|
755
783
|
name: string | null;
|
|
756
784
|
image: string | null;
|
|
@@ -765,6 +793,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
765
793
|
school?: string | null | undefined;
|
|
766
794
|
city?: string | null | undefined;
|
|
767
795
|
venueName?: string | null | undefined;
|
|
796
|
+
pickCount?: number | undefined;
|
|
768
797
|
}>;
|
|
769
798
|
awayTeam: import("zod").ZodObject<{
|
|
770
799
|
id: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
@@ -780,6 +809,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
780
809
|
school: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
781
810
|
city: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
782
811
|
venueName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
812
|
+
pickCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
783
813
|
}, "strip", import("zod").ZodTypeAny, {
|
|
784
814
|
name: string | null;
|
|
785
815
|
image: string | null;
|
|
@@ -794,6 +824,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
794
824
|
school?: string | null | undefined;
|
|
795
825
|
city?: string | null | undefined;
|
|
796
826
|
venueName?: string | null | undefined;
|
|
827
|
+
pickCount?: number | undefined;
|
|
797
828
|
}, {
|
|
798
829
|
name: string | null;
|
|
799
830
|
image: string | null;
|
|
@@ -808,6 +839,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
808
839
|
school?: string | null | undefined;
|
|
809
840
|
city?: string | null | undefined;
|
|
810
841
|
venueName?: string | null | undefined;
|
|
842
|
+
pickCount?: number | undefined;
|
|
811
843
|
}>;
|
|
812
844
|
seriesInfo: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
813
845
|
homeTeamWins: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
@@ -847,6 +879,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
847
879
|
school?: string | null | undefined;
|
|
848
880
|
city?: string | null | undefined;
|
|
849
881
|
venueName?: string | null | undefined;
|
|
882
|
+
pickCount?: number | undefined;
|
|
850
883
|
};
|
|
851
884
|
awayTeam: {
|
|
852
885
|
name: string | null;
|
|
@@ -862,6 +895,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
862
895
|
school?: string | null | undefined;
|
|
863
896
|
city?: string | null | undefined;
|
|
864
897
|
venueName?: string | null | undefined;
|
|
898
|
+
pickCount?: number | undefined;
|
|
865
899
|
};
|
|
866
900
|
round?: number | undefined;
|
|
867
901
|
week?: number | undefined;
|
|
@@ -892,6 +926,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
892
926
|
school?: string | null | undefined;
|
|
893
927
|
city?: string | null | undefined;
|
|
894
928
|
venueName?: string | null | undefined;
|
|
929
|
+
pickCount?: number | undefined;
|
|
895
930
|
};
|
|
896
931
|
awayTeam: {
|
|
897
932
|
name: string | null;
|
|
@@ -907,6 +942,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
907
942
|
school?: string | null | undefined;
|
|
908
943
|
city?: string | null | undefined;
|
|
909
944
|
venueName?: string | null | undefined;
|
|
945
|
+
pickCount?: number | undefined;
|
|
910
946
|
};
|
|
911
947
|
round?: number | undefined;
|
|
912
948
|
week?: number | undefined;
|
|
@@ -947,6 +983,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
947
983
|
school: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
948
984
|
city: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
949
985
|
venueName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
986
|
+
pickCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
950
987
|
}, "strip", import("zod").ZodTypeAny, {
|
|
951
988
|
name: string | null;
|
|
952
989
|
image: string | null;
|
|
@@ -961,6 +998,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
961
998
|
school?: string | null | undefined;
|
|
962
999
|
city?: string | null | undefined;
|
|
963
1000
|
venueName?: string | null | undefined;
|
|
1001
|
+
pickCount?: number | undefined;
|
|
964
1002
|
}, {
|
|
965
1003
|
name: string | null;
|
|
966
1004
|
image: string | null;
|
|
@@ -975,6 +1013,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
975
1013
|
school?: string | null | undefined;
|
|
976
1014
|
city?: string | null | undefined;
|
|
977
1015
|
venueName?: string | null | undefined;
|
|
1016
|
+
pickCount?: number | undefined;
|
|
978
1017
|
}>;
|
|
979
1018
|
}, "strip", import("zod").ZodTypeAny, {
|
|
980
1019
|
id: string;
|
|
@@ -992,6 +1031,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
992
1031
|
school?: string | null | undefined;
|
|
993
1032
|
city?: string | null | undefined;
|
|
994
1033
|
venueName?: string | null | undefined;
|
|
1034
|
+
pickCount?: number | undefined;
|
|
995
1035
|
};
|
|
996
1036
|
}, {
|
|
997
1037
|
id: string;
|
|
@@ -1009,6 +1049,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
1009
1049
|
school?: string | null | undefined;
|
|
1010
1050
|
city?: string | null | undefined;
|
|
1011
1051
|
venueName?: string | null | undefined;
|
|
1052
|
+
pickCount?: number | undefined;
|
|
1012
1053
|
};
|
|
1013
1054
|
}>>;
|
|
1014
1055
|
}, "id" | "user" | "createdAt">, {
|
|
@@ -1030,6 +1071,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
1030
1071
|
school: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1031
1072
|
city: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1032
1073
|
venueName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1074
|
+
pickCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1033
1075
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1034
1076
|
name: string | null;
|
|
1035
1077
|
image: string | null;
|
|
@@ -1044,6 +1086,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
1044
1086
|
school?: string | null | undefined;
|
|
1045
1087
|
city?: string | null | undefined;
|
|
1046
1088
|
venueName?: string | null | undefined;
|
|
1089
|
+
pickCount?: number | undefined;
|
|
1047
1090
|
}, {
|
|
1048
1091
|
name: string | null;
|
|
1049
1092
|
image: string | null;
|
|
@@ -1058,6 +1101,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
1058
1101
|
school?: string | null | undefined;
|
|
1059
1102
|
city?: string | null | undefined;
|
|
1060
1103
|
venueName?: string | null | undefined;
|
|
1104
|
+
pickCount?: number | undefined;
|
|
1061
1105
|
}>;
|
|
1062
1106
|
awayTeam: import("zod").ZodObject<{
|
|
1063
1107
|
id: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
@@ -1073,6 +1117,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
1073
1117
|
school: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1074
1118
|
city: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1075
1119
|
venueName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1120
|
+
pickCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1076
1121
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1077
1122
|
name: string | null;
|
|
1078
1123
|
image: string | null;
|
|
@@ -1087,6 +1132,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
1087
1132
|
school?: string | null | undefined;
|
|
1088
1133
|
city?: string | null | undefined;
|
|
1089
1134
|
venueName?: string | null | undefined;
|
|
1135
|
+
pickCount?: number | undefined;
|
|
1090
1136
|
}, {
|
|
1091
1137
|
name: string | null;
|
|
1092
1138
|
image: string | null;
|
|
@@ -1101,6 +1147,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
1101
1147
|
school?: string | null | undefined;
|
|
1102
1148
|
city?: string | null | undefined;
|
|
1103
1149
|
venueName?: string | null | undefined;
|
|
1150
|
+
pickCount?: number | undefined;
|
|
1104
1151
|
}>;
|
|
1105
1152
|
seriesInfo: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1106
1153
|
homeTeamWins: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
@@ -1183,6 +1230,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
1183
1230
|
school?: string | null | undefined;
|
|
1184
1231
|
city?: string | null | undefined;
|
|
1185
1232
|
venueName?: string | null | undefined;
|
|
1233
|
+
pickCount?: number | undefined;
|
|
1186
1234
|
};
|
|
1187
1235
|
} | undefined;
|
|
1188
1236
|
weightedRating?: number | undefined;
|
|
@@ -1228,6 +1276,7 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
1228
1276
|
school?: string | null | undefined;
|
|
1229
1277
|
city?: string | null | undefined;
|
|
1230
1278
|
venueName?: string | null | undefined;
|
|
1279
|
+
pickCount?: number | undefined;
|
|
1231
1280
|
};
|
|
1232
1281
|
} | undefined;
|
|
1233
1282
|
weightedRating?: number | undefined;
|
|
@@ -1493,6 +1493,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1493
1493
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1494
1494
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1495
1495
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1496
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
1496
1497
|
}, "strip", z.ZodTypeAny, {
|
|
1497
1498
|
name: string | null;
|
|
1498
1499
|
image: string | null;
|
|
@@ -1507,6 +1508,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1507
1508
|
school?: string | null | undefined;
|
|
1508
1509
|
city?: string | null | undefined;
|
|
1509
1510
|
venueName?: string | null | undefined;
|
|
1511
|
+
pickCount?: number | undefined;
|
|
1510
1512
|
}, {
|
|
1511
1513
|
name: string | null;
|
|
1512
1514
|
image: string | null;
|
|
@@ -1521,6 +1523,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1521
1523
|
school?: string | null | undefined;
|
|
1522
1524
|
city?: string | null | undefined;
|
|
1523
1525
|
venueName?: string | null | undefined;
|
|
1526
|
+
pickCount?: number | undefined;
|
|
1524
1527
|
}>;
|
|
1525
1528
|
awayTeam: z.ZodObject<{
|
|
1526
1529
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -1536,6 +1539,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1536
1539
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1537
1540
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1538
1541
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1542
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
1539
1543
|
}, "strip", z.ZodTypeAny, {
|
|
1540
1544
|
name: string | null;
|
|
1541
1545
|
image: string | null;
|
|
@@ -1550,6 +1554,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1550
1554
|
school?: string | null | undefined;
|
|
1551
1555
|
city?: string | null | undefined;
|
|
1552
1556
|
venueName?: string | null | undefined;
|
|
1557
|
+
pickCount?: number | undefined;
|
|
1553
1558
|
}, {
|
|
1554
1559
|
name: string | null;
|
|
1555
1560
|
image: string | null;
|
|
@@ -1564,6 +1569,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1564
1569
|
school?: string | null | undefined;
|
|
1565
1570
|
city?: string | null | undefined;
|
|
1566
1571
|
venueName?: string | null | undefined;
|
|
1572
|
+
pickCount?: number | undefined;
|
|
1567
1573
|
}>;
|
|
1568
1574
|
seriesInfo: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1569
1575
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1602,6 +1608,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1602
1608
|
school?: string | null | undefined;
|
|
1603
1609
|
city?: string | null | undefined;
|
|
1604
1610
|
venueName?: string | null | undefined;
|
|
1611
|
+
pickCount?: number | undefined;
|
|
1605
1612
|
};
|
|
1606
1613
|
awayTeam: {
|
|
1607
1614
|
name: string | null;
|
|
@@ -1617,6 +1624,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1617
1624
|
school?: string | null | undefined;
|
|
1618
1625
|
city?: string | null | undefined;
|
|
1619
1626
|
venueName?: string | null | undefined;
|
|
1627
|
+
pickCount?: number | undefined;
|
|
1620
1628
|
};
|
|
1621
1629
|
round?: number | null | undefined;
|
|
1622
1630
|
week?: number | null | undefined;
|
|
@@ -1646,6 +1654,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1646
1654
|
school?: string | null | undefined;
|
|
1647
1655
|
city?: string | null | undefined;
|
|
1648
1656
|
venueName?: string | null | undefined;
|
|
1657
|
+
pickCount?: number | undefined;
|
|
1649
1658
|
};
|
|
1650
1659
|
awayTeam: {
|
|
1651
1660
|
name: string | null;
|
|
@@ -1661,6 +1670,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1661
1670
|
school?: string | null | undefined;
|
|
1662
1671
|
city?: string | null | undefined;
|
|
1663
1672
|
venueName?: string | null | undefined;
|
|
1673
|
+
pickCount?: number | undefined;
|
|
1664
1674
|
};
|
|
1665
1675
|
round?: number | null | undefined;
|
|
1666
1676
|
week?: number | null | undefined;
|
|
@@ -1737,6 +1747,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1737
1747
|
school?: string | null | undefined;
|
|
1738
1748
|
city?: string | null | undefined;
|
|
1739
1749
|
venueName?: string | null | undefined;
|
|
1750
|
+
pickCount?: number | undefined;
|
|
1740
1751
|
};
|
|
1741
1752
|
awayTeam: {
|
|
1742
1753
|
name: string | null;
|
|
@@ -1752,6 +1763,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1752
1763
|
school?: string | null | undefined;
|
|
1753
1764
|
city?: string | null | undefined;
|
|
1754
1765
|
venueName?: string | null | undefined;
|
|
1766
|
+
pickCount?: number | undefined;
|
|
1755
1767
|
};
|
|
1756
1768
|
round?: number | null | undefined;
|
|
1757
1769
|
week?: number | null | undefined;
|
|
@@ -1828,6 +1840,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1828
1840
|
school?: string | null | undefined;
|
|
1829
1841
|
city?: string | null | undefined;
|
|
1830
1842
|
venueName?: string | null | undefined;
|
|
1843
|
+
pickCount?: number | undefined;
|
|
1831
1844
|
};
|
|
1832
1845
|
awayTeam: {
|
|
1833
1846
|
name: string | null;
|
|
@@ -1843,6 +1856,7 @@ export declare const stadiumRatingSchema: z.ZodObject<{
|
|
|
1843
1856
|
school?: string | null | undefined;
|
|
1844
1857
|
city?: string | null | undefined;
|
|
1845
1858
|
venueName?: string | null | undefined;
|
|
1859
|
+
pickCount?: number | undefined;
|
|
1846
1860
|
};
|
|
1847
1861
|
round?: number | null | undefined;
|
|
1848
1862
|
week?: number | null | undefined;
|
|
@@ -3135,6 +3149,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
3135
3149
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3136
3150
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3137
3151
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3152
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
3138
3153
|
}, "strip", z.ZodTypeAny, {
|
|
3139
3154
|
name: string | null;
|
|
3140
3155
|
image: string | null;
|
|
@@ -3149,6 +3164,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
3149
3164
|
school?: string | null | undefined;
|
|
3150
3165
|
city?: string | null | undefined;
|
|
3151
3166
|
venueName?: string | null | undefined;
|
|
3167
|
+
pickCount?: number | undefined;
|
|
3152
3168
|
}, {
|
|
3153
3169
|
name: string | null;
|
|
3154
3170
|
image: string | null;
|
|
@@ -3163,6 +3179,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
3163
3179
|
school?: string | null | undefined;
|
|
3164
3180
|
city?: string | null | undefined;
|
|
3165
3181
|
venueName?: string | null | undefined;
|
|
3182
|
+
pickCount?: number | undefined;
|
|
3166
3183
|
}>;
|
|
3167
3184
|
awayTeam: z.ZodObject<{
|
|
3168
3185
|
id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -3178,6 +3195,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
3178
3195
|
school: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3179
3196
|
city: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3180
3197
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3198
|
+
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
3181
3199
|
}, "strip", z.ZodTypeAny, {
|
|
3182
3200
|
name: string | null;
|
|
3183
3201
|
image: string | null;
|
|
@@ -3192,6 +3210,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
3192
3210
|
school?: string | null | undefined;
|
|
3193
3211
|
city?: string | null | undefined;
|
|
3194
3212
|
venueName?: string | null | undefined;
|
|
3213
|
+
pickCount?: number | undefined;
|
|
3195
3214
|
}, {
|
|
3196
3215
|
name: string | null;
|
|
3197
3216
|
image: string | null;
|
|
@@ -3206,6 +3225,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
3206
3225
|
school?: string | null | undefined;
|
|
3207
3226
|
city?: string | null | undefined;
|
|
3208
3227
|
venueName?: string | null | undefined;
|
|
3228
|
+
pickCount?: number | undefined;
|
|
3209
3229
|
}>;
|
|
3210
3230
|
seriesInfo: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
3211
3231
|
homeTeamWins: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -3244,6 +3264,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
3244
3264
|
school?: string | null | undefined;
|
|
3245
3265
|
city?: string | null | undefined;
|
|
3246
3266
|
venueName?: string | null | undefined;
|
|
3267
|
+
pickCount?: number | undefined;
|
|
3247
3268
|
};
|
|
3248
3269
|
awayTeam: {
|
|
3249
3270
|
name: string | null;
|
|
@@ -3259,6 +3280,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
3259
3280
|
school?: string | null | undefined;
|
|
3260
3281
|
city?: string | null | undefined;
|
|
3261
3282
|
venueName?: string | null | undefined;
|
|
3283
|
+
pickCount?: number | undefined;
|
|
3262
3284
|
};
|
|
3263
3285
|
round?: number | null | undefined;
|
|
3264
3286
|
week?: number | null | undefined;
|
|
@@ -3288,6 +3310,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
3288
3310
|
school?: string | null | undefined;
|
|
3289
3311
|
city?: string | null | undefined;
|
|
3290
3312
|
venueName?: string | null | undefined;
|
|
3313
|
+
pickCount?: number | undefined;
|
|
3291
3314
|
};
|
|
3292
3315
|
awayTeam: {
|
|
3293
3316
|
name: string | null;
|
|
@@ -3303,6 +3326,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
3303
3326
|
school?: string | null | undefined;
|
|
3304
3327
|
city?: string | null | undefined;
|
|
3305
3328
|
venueName?: string | null | undefined;
|
|
3329
|
+
pickCount?: number | undefined;
|
|
3306
3330
|
};
|
|
3307
3331
|
round?: number | null | undefined;
|
|
3308
3332
|
week?: number | null | undefined;
|
|
@@ -3478,6 +3502,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
3478
3502
|
school?: string | null | undefined;
|
|
3479
3503
|
city?: string | null | undefined;
|
|
3480
3504
|
venueName?: string | null | undefined;
|
|
3505
|
+
pickCount?: number | undefined;
|
|
3481
3506
|
};
|
|
3482
3507
|
awayTeam: {
|
|
3483
3508
|
name: string | null;
|
|
@@ -3493,6 +3518,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
3493
3518
|
school?: string | null | undefined;
|
|
3494
3519
|
city?: string | null | undefined;
|
|
3495
3520
|
venueName?: string | null | undefined;
|
|
3521
|
+
pickCount?: number | undefined;
|
|
3496
3522
|
};
|
|
3497
3523
|
round?: number | null | undefined;
|
|
3498
3524
|
week?: number | null | undefined;
|
|
@@ -3561,6 +3587,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
3561
3587
|
school?: string | null | undefined;
|
|
3562
3588
|
city?: string | null | undefined;
|
|
3563
3589
|
venueName?: string | null | undefined;
|
|
3590
|
+
pickCount?: number | undefined;
|
|
3564
3591
|
};
|
|
3565
3592
|
awayTeam: {
|
|
3566
3593
|
name: string | null;
|
|
@@ -3576,6 +3603,7 @@ export declare const createStadiumRatingSchema: z.ZodObject<z.objectUtil.extendS
|
|
|
3576
3603
|
school?: string | null | undefined;
|
|
3577
3604
|
city?: string | null | undefined;
|
|
3578
3605
|
venueName?: string | null | undefined;
|
|
3606
|
+
pickCount?: number | undefined;
|
|
3579
3607
|
};
|
|
3580
3608
|
round?: number | null | undefined;
|
|
3581
3609
|
week?: number | null | undefined;
|