rategame-shared 1.1.272 → 1.1.274
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/schemas/chat.d.ts +380 -0
- package/dist/schemas/game.d.ts +4159 -2639
- package/dist/schemas/game.js +11 -11
- package/dist/schemas/list.d.ts +380 -0
- package/dist/schemas/moderation.d.ts +304 -0
- package/dist/schemas/notification.d.ts +198 -198
- package/dist/schemas/rating.d.ts +558 -330
- package/dist/schemas/stadium.d.ts +612 -308
- package/dist/schemas/user.d.ts +1034 -725
- package/dist/schemas/user.js +24 -0
- package/dist/schemas/userEvent.d.ts +228 -0
- package/dist/schemas/voting.d.ts +228 -0
- package/package.json +1 -1
package/dist/schemas/rating.d.ts
CHANGED
|
@@ -28,90 +28,90 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
28
28
|
round: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
29
29
|
league: import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>;
|
|
30
30
|
homeTeam: import("zod").ZodObject<{
|
|
31
|
-
id: import("zod").ZodOptional<import("zod").ZodString
|
|
32
|
-
apiTeamId: import("zod").ZodNumber
|
|
33
|
-
name: import("zod").ZodString
|
|
31
|
+
id: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
32
|
+
apiTeamId: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
33
|
+
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
34
34
|
score: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
35
35
|
isWinner: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
36
|
-
image: import("zod").ZodString
|
|
37
|
-
seed: import("zod").ZodOptional<import("zod").ZodNumber
|
|
38
|
-
teamCode: import("zod").ZodOptional<import("zod").ZodString
|
|
39
|
-
scoreExtraTime: import("zod").ZodOptional<import("zod").ZodNumber
|
|
40
|
-
stadiumUrl: import("zod").ZodOptional<import("zod").ZodString
|
|
41
|
-
school: import("zod").ZodOptional<import("zod").ZodString
|
|
42
|
-
city: import("zod").ZodOptional<import("zod").ZodString
|
|
43
|
-
venueName: import("zod").ZodOptional<import("zod").ZodString
|
|
36
|
+
image: import("zod").ZodNullable<import("zod").ZodString>;
|
|
37
|
+
seed: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
38
|
+
teamCode: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
39
|
+
scoreExtraTime: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
40
|
+
stadiumUrl: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
41
|
+
school: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
42
|
+
city: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
43
|
+
venueName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
44
44
|
}, "strip", import("zod").ZodTypeAny, {
|
|
45
|
-
name: string;
|
|
46
|
-
image: string;
|
|
47
|
-
apiTeamId: number;
|
|
48
|
-
id?: string | undefined;
|
|
45
|
+
name: string | null;
|
|
46
|
+
image: string | null;
|
|
47
|
+
apiTeamId: number | null;
|
|
48
|
+
id?: string | null | undefined;
|
|
49
49
|
score?: number | undefined;
|
|
50
50
|
isWinner?: boolean | undefined;
|
|
51
|
-
seed?: number | undefined;
|
|
52
|
-
teamCode?: string | undefined;
|
|
53
|
-
scoreExtraTime?: number | undefined;
|
|
54
|
-
stadiumUrl?: string | undefined;
|
|
55
|
-
school?: string | undefined;
|
|
56
|
-
city?: string | undefined;
|
|
57
|
-
venueName?: string | undefined;
|
|
51
|
+
seed?: number | null | undefined;
|
|
52
|
+
teamCode?: string | null | undefined;
|
|
53
|
+
scoreExtraTime?: number | null | undefined;
|
|
54
|
+
stadiumUrl?: string | null | undefined;
|
|
55
|
+
school?: string | null | undefined;
|
|
56
|
+
city?: string | null | undefined;
|
|
57
|
+
venueName?: string | null | undefined;
|
|
58
58
|
}, {
|
|
59
|
-
name: string;
|
|
60
|
-
image: string;
|
|
61
|
-
apiTeamId: number;
|
|
62
|
-
id?: string | undefined;
|
|
59
|
+
name: string | null;
|
|
60
|
+
image: string | null;
|
|
61
|
+
apiTeamId: number | null;
|
|
62
|
+
id?: string | null | undefined;
|
|
63
63
|
score?: number | undefined;
|
|
64
64
|
isWinner?: boolean | undefined;
|
|
65
|
-
seed?: number | undefined;
|
|
66
|
-
teamCode?: string | undefined;
|
|
67
|
-
scoreExtraTime?: number | undefined;
|
|
68
|
-
stadiumUrl?: string | undefined;
|
|
69
|
-
school?: string | undefined;
|
|
70
|
-
city?: string | undefined;
|
|
71
|
-
venueName?: string | undefined;
|
|
65
|
+
seed?: number | null | undefined;
|
|
66
|
+
teamCode?: string | null | undefined;
|
|
67
|
+
scoreExtraTime?: number | null | undefined;
|
|
68
|
+
stadiumUrl?: string | null | undefined;
|
|
69
|
+
school?: string | null | undefined;
|
|
70
|
+
city?: string | null | undefined;
|
|
71
|
+
venueName?: string | null | undefined;
|
|
72
72
|
}>;
|
|
73
73
|
awayTeam: import("zod").ZodObject<{
|
|
74
|
-
id: import("zod").ZodOptional<import("zod").ZodString
|
|
75
|
-
apiTeamId: import("zod").ZodNumber
|
|
76
|
-
name: import("zod").ZodString
|
|
74
|
+
id: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
75
|
+
apiTeamId: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
76
|
+
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
77
77
|
score: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
78
78
|
isWinner: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
79
|
-
image: import("zod").ZodString
|
|
80
|
-
seed: import("zod").ZodOptional<import("zod").ZodNumber
|
|
81
|
-
teamCode: import("zod").ZodOptional<import("zod").ZodString
|
|
82
|
-
scoreExtraTime: import("zod").ZodOptional<import("zod").ZodNumber
|
|
83
|
-
stadiumUrl: import("zod").ZodOptional<import("zod").ZodString
|
|
84
|
-
school: import("zod").ZodOptional<import("zod").ZodString
|
|
85
|
-
city: import("zod").ZodOptional<import("zod").ZodString
|
|
86
|
-
venueName: import("zod").ZodOptional<import("zod").ZodString
|
|
79
|
+
image: import("zod").ZodNullable<import("zod").ZodString>;
|
|
80
|
+
seed: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
81
|
+
teamCode: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
82
|
+
scoreExtraTime: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
83
|
+
stadiumUrl: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
84
|
+
school: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
85
|
+
city: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
86
|
+
venueName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
87
87
|
}, "strip", import("zod").ZodTypeAny, {
|
|
88
|
-
name: string;
|
|
89
|
-
image: string;
|
|
90
|
-
apiTeamId: number;
|
|
91
|
-
id?: string | undefined;
|
|
88
|
+
name: string | null;
|
|
89
|
+
image: string | null;
|
|
90
|
+
apiTeamId: number | null;
|
|
91
|
+
id?: string | null | undefined;
|
|
92
92
|
score?: number | undefined;
|
|
93
93
|
isWinner?: boolean | undefined;
|
|
94
|
-
seed?: number | undefined;
|
|
95
|
-
teamCode?: string | undefined;
|
|
96
|
-
scoreExtraTime?: number | undefined;
|
|
97
|
-
stadiumUrl?: string | undefined;
|
|
98
|
-
school?: string | undefined;
|
|
99
|
-
city?: string | undefined;
|
|
100
|
-
venueName?: string | undefined;
|
|
94
|
+
seed?: number | null | undefined;
|
|
95
|
+
teamCode?: string | null | undefined;
|
|
96
|
+
scoreExtraTime?: number | null | undefined;
|
|
97
|
+
stadiumUrl?: string | null | undefined;
|
|
98
|
+
school?: string | null | undefined;
|
|
99
|
+
city?: string | null | undefined;
|
|
100
|
+
venueName?: string | null | undefined;
|
|
101
101
|
}, {
|
|
102
|
-
name: string;
|
|
103
|
-
image: string;
|
|
104
|
-
apiTeamId: number;
|
|
105
|
-
id?: string | undefined;
|
|
102
|
+
name: string | null;
|
|
103
|
+
image: string | null;
|
|
104
|
+
apiTeamId: number | null;
|
|
105
|
+
id?: string | null | undefined;
|
|
106
106
|
score?: number | undefined;
|
|
107
107
|
isWinner?: boolean | undefined;
|
|
108
|
-
seed?: number | undefined;
|
|
109
|
-
teamCode?: string | undefined;
|
|
110
|
-
scoreExtraTime?: number | undefined;
|
|
111
|
-
stadiumUrl?: string | undefined;
|
|
112
|
-
school?: string | undefined;
|
|
113
|
-
city?: string | undefined;
|
|
114
|
-
venueName?: string | undefined;
|
|
108
|
+
seed?: number | null | undefined;
|
|
109
|
+
teamCode?: string | null | undefined;
|
|
110
|
+
scoreExtraTime?: number | null | undefined;
|
|
111
|
+
stadiumUrl?: string | null | undefined;
|
|
112
|
+
school?: string | null | undefined;
|
|
113
|
+
city?: string | null | undefined;
|
|
114
|
+
venueName?: string | null | undefined;
|
|
115
115
|
}>;
|
|
116
116
|
seriesInfo: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
117
117
|
homeTeamWins: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
@@ -137,34 +137,34 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
137
137
|
id: string;
|
|
138
138
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
|
|
139
139
|
homeTeam: {
|
|
140
|
-
name: string;
|
|
141
|
-
image: string;
|
|
142
|
-
apiTeamId: number;
|
|
143
|
-
id?: string | undefined;
|
|
140
|
+
name: string | null;
|
|
141
|
+
image: string | null;
|
|
142
|
+
apiTeamId: number | null;
|
|
143
|
+
id?: string | null | undefined;
|
|
144
144
|
score?: number | undefined;
|
|
145
145
|
isWinner?: boolean | undefined;
|
|
146
|
-
seed?: number | undefined;
|
|
147
|
-
teamCode?: string | undefined;
|
|
148
|
-
scoreExtraTime?: number | undefined;
|
|
149
|
-
stadiumUrl?: string | undefined;
|
|
150
|
-
school?: string | undefined;
|
|
151
|
-
city?: string | undefined;
|
|
152
|
-
venueName?: string | undefined;
|
|
146
|
+
seed?: number | null | undefined;
|
|
147
|
+
teamCode?: string | null | undefined;
|
|
148
|
+
scoreExtraTime?: number | null | undefined;
|
|
149
|
+
stadiumUrl?: string | null | undefined;
|
|
150
|
+
school?: string | null | undefined;
|
|
151
|
+
city?: string | null | undefined;
|
|
152
|
+
venueName?: string | null | undefined;
|
|
153
153
|
};
|
|
154
154
|
awayTeam: {
|
|
155
|
-
name: string;
|
|
156
|
-
image: string;
|
|
157
|
-
apiTeamId: number;
|
|
158
|
-
id?: string | undefined;
|
|
155
|
+
name: string | null;
|
|
156
|
+
image: string | null;
|
|
157
|
+
apiTeamId: number | null;
|
|
158
|
+
id?: string | null | undefined;
|
|
159
159
|
score?: number | undefined;
|
|
160
160
|
isWinner?: boolean | undefined;
|
|
161
|
-
seed?: number | undefined;
|
|
162
|
-
teamCode?: string | undefined;
|
|
163
|
-
scoreExtraTime?: number | undefined;
|
|
164
|
-
stadiumUrl?: string | undefined;
|
|
165
|
-
school?: string | undefined;
|
|
166
|
-
city?: string | undefined;
|
|
167
|
-
venueName?: string | undefined;
|
|
161
|
+
seed?: number | null | undefined;
|
|
162
|
+
teamCode?: string | null | undefined;
|
|
163
|
+
scoreExtraTime?: number | null | undefined;
|
|
164
|
+
stadiumUrl?: string | null | undefined;
|
|
165
|
+
school?: string | null | undefined;
|
|
166
|
+
city?: string | null | undefined;
|
|
167
|
+
venueName?: string | null | undefined;
|
|
168
168
|
};
|
|
169
169
|
round?: number | undefined;
|
|
170
170
|
week?: number | undefined;
|
|
@@ -181,34 +181,34 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
181
181
|
id: string;
|
|
182
182
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
|
|
183
183
|
homeTeam: {
|
|
184
|
-
name: string;
|
|
185
|
-
image: string;
|
|
186
|
-
apiTeamId: number;
|
|
187
|
-
id?: string | undefined;
|
|
184
|
+
name: string | null;
|
|
185
|
+
image: string | null;
|
|
186
|
+
apiTeamId: number | null;
|
|
187
|
+
id?: string | null | undefined;
|
|
188
188
|
score?: number | undefined;
|
|
189
189
|
isWinner?: boolean | undefined;
|
|
190
|
-
seed?: number | undefined;
|
|
191
|
-
teamCode?: string | undefined;
|
|
192
|
-
scoreExtraTime?: number | undefined;
|
|
193
|
-
stadiumUrl?: string | undefined;
|
|
194
|
-
school?: string | undefined;
|
|
195
|
-
city?: string | undefined;
|
|
196
|
-
venueName?: string | undefined;
|
|
190
|
+
seed?: number | null | undefined;
|
|
191
|
+
teamCode?: string | null | undefined;
|
|
192
|
+
scoreExtraTime?: number | null | undefined;
|
|
193
|
+
stadiumUrl?: string | null | undefined;
|
|
194
|
+
school?: string | null | undefined;
|
|
195
|
+
city?: string | null | undefined;
|
|
196
|
+
venueName?: string | null | undefined;
|
|
197
197
|
};
|
|
198
198
|
awayTeam: {
|
|
199
|
-
name: string;
|
|
200
|
-
image: string;
|
|
201
|
-
apiTeamId: number;
|
|
202
|
-
id?: string | undefined;
|
|
199
|
+
name: string | null;
|
|
200
|
+
image: string | null;
|
|
201
|
+
apiTeamId: number | null;
|
|
202
|
+
id?: string | null | undefined;
|
|
203
203
|
score?: number | undefined;
|
|
204
204
|
isWinner?: boolean | undefined;
|
|
205
|
-
seed?: number | undefined;
|
|
206
|
-
teamCode?: string | undefined;
|
|
207
|
-
scoreExtraTime?: number | undefined;
|
|
208
|
-
stadiumUrl?: string | undefined;
|
|
209
|
-
school?: string | undefined;
|
|
210
|
-
city?: string | undefined;
|
|
211
|
-
venueName?: string | undefined;
|
|
205
|
+
seed?: number | null | undefined;
|
|
206
|
+
teamCode?: string | null | undefined;
|
|
207
|
+
scoreExtraTime?: number | null | undefined;
|
|
208
|
+
stadiumUrl?: string | null | undefined;
|
|
209
|
+
school?: string | null | undefined;
|
|
210
|
+
city?: string | null | undefined;
|
|
211
|
+
venueName?: string | null | undefined;
|
|
212
212
|
};
|
|
213
213
|
round?: number | undefined;
|
|
214
214
|
week?: number | undefined;
|
|
@@ -247,34 +247,34 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
247
247
|
id: string;
|
|
248
248
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
|
|
249
249
|
homeTeam: {
|
|
250
|
-
name: string;
|
|
251
|
-
image: string;
|
|
252
|
-
apiTeamId: number;
|
|
253
|
-
id?: string | undefined;
|
|
250
|
+
name: string | null;
|
|
251
|
+
image: string | null;
|
|
252
|
+
apiTeamId: number | null;
|
|
253
|
+
id?: string | null | undefined;
|
|
254
254
|
score?: number | undefined;
|
|
255
255
|
isWinner?: boolean | undefined;
|
|
256
|
-
seed?: number | undefined;
|
|
257
|
-
teamCode?: string | undefined;
|
|
258
|
-
scoreExtraTime?: number | undefined;
|
|
259
|
-
stadiumUrl?: string | undefined;
|
|
260
|
-
school?: string | undefined;
|
|
261
|
-
city?: string | undefined;
|
|
262
|
-
venueName?: string | undefined;
|
|
256
|
+
seed?: number | null | undefined;
|
|
257
|
+
teamCode?: string | null | undefined;
|
|
258
|
+
scoreExtraTime?: number | null | undefined;
|
|
259
|
+
stadiumUrl?: string | null | undefined;
|
|
260
|
+
school?: string | null | undefined;
|
|
261
|
+
city?: string | null | undefined;
|
|
262
|
+
venueName?: string | null | undefined;
|
|
263
263
|
};
|
|
264
264
|
awayTeam: {
|
|
265
|
-
name: string;
|
|
266
|
-
image: string;
|
|
267
|
-
apiTeamId: number;
|
|
268
|
-
id?: string | undefined;
|
|
265
|
+
name: string | null;
|
|
266
|
+
image: string | null;
|
|
267
|
+
apiTeamId: number | null;
|
|
268
|
+
id?: string | null | undefined;
|
|
269
269
|
score?: number | undefined;
|
|
270
270
|
isWinner?: boolean | undefined;
|
|
271
|
-
seed?: number | undefined;
|
|
272
|
-
teamCode?: string | undefined;
|
|
273
|
-
scoreExtraTime?: number | undefined;
|
|
274
|
-
stadiumUrl?: string | undefined;
|
|
275
|
-
school?: string | undefined;
|
|
276
|
-
city?: string | undefined;
|
|
277
|
-
venueName?: string | undefined;
|
|
271
|
+
seed?: number | null | undefined;
|
|
272
|
+
teamCode?: string | null | undefined;
|
|
273
|
+
scoreExtraTime?: number | null | undefined;
|
|
274
|
+
stadiumUrl?: string | null | undefined;
|
|
275
|
+
school?: string | null | undefined;
|
|
276
|
+
city?: string | null | undefined;
|
|
277
|
+
venueName?: string | null | undefined;
|
|
278
278
|
};
|
|
279
279
|
round?: number | undefined;
|
|
280
280
|
week?: number | undefined;
|
|
@@ -314,34 +314,34 @@ export declare const ratingSchema: import("zod").ZodObject<{
|
|
|
314
314
|
id: string;
|
|
315
315
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
|
|
316
316
|
homeTeam: {
|
|
317
|
-
name: string;
|
|
318
|
-
image: string;
|
|
319
|
-
apiTeamId: number;
|
|
320
|
-
id?: string | undefined;
|
|
317
|
+
name: string | null;
|
|
318
|
+
image: string | null;
|
|
319
|
+
apiTeamId: number | null;
|
|
320
|
+
id?: string | null | undefined;
|
|
321
321
|
score?: number | undefined;
|
|
322
322
|
isWinner?: boolean | undefined;
|
|
323
|
-
seed?: number | undefined;
|
|
324
|
-
teamCode?: string | undefined;
|
|
325
|
-
scoreExtraTime?: number | undefined;
|
|
326
|
-
stadiumUrl?: string | undefined;
|
|
327
|
-
school?: string | undefined;
|
|
328
|
-
city?: string | undefined;
|
|
329
|
-
venueName?: string | undefined;
|
|
323
|
+
seed?: number | null | undefined;
|
|
324
|
+
teamCode?: string | null | undefined;
|
|
325
|
+
scoreExtraTime?: number | null | undefined;
|
|
326
|
+
stadiumUrl?: string | null | undefined;
|
|
327
|
+
school?: string | null | undefined;
|
|
328
|
+
city?: string | null | undefined;
|
|
329
|
+
venueName?: string | null | undefined;
|
|
330
330
|
};
|
|
331
331
|
awayTeam: {
|
|
332
|
-
name: string;
|
|
333
|
-
image: string;
|
|
334
|
-
apiTeamId: number;
|
|
335
|
-
id?: string | undefined;
|
|
332
|
+
name: string | null;
|
|
333
|
+
image: string | null;
|
|
334
|
+
apiTeamId: number | null;
|
|
335
|
+
id?: string | null | undefined;
|
|
336
336
|
score?: number | undefined;
|
|
337
337
|
isWinner?: boolean | undefined;
|
|
338
|
-
seed?: number | undefined;
|
|
339
|
-
teamCode?: string | undefined;
|
|
340
|
-
scoreExtraTime?: number | undefined;
|
|
341
|
-
stadiumUrl?: string | undefined;
|
|
342
|
-
school?: string | undefined;
|
|
343
|
-
city?: string | undefined;
|
|
344
|
-
venueName?: string | undefined;
|
|
338
|
+
seed?: number | null | undefined;
|
|
339
|
+
teamCode?: string | null | undefined;
|
|
340
|
+
scoreExtraTime?: number | null | undefined;
|
|
341
|
+
stadiumUrl?: string | null | undefined;
|
|
342
|
+
school?: string | null | undefined;
|
|
343
|
+
city?: string | null | undefined;
|
|
344
|
+
venueName?: string | null | undefined;
|
|
345
345
|
};
|
|
346
346
|
round?: number | undefined;
|
|
347
347
|
week?: number | undefined;
|
|
@@ -523,90 +523,90 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
523
523
|
round: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
524
524
|
league: import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>;
|
|
525
525
|
homeTeam: import("zod").ZodObject<{
|
|
526
|
-
id: import("zod").ZodOptional<import("zod").ZodString
|
|
527
|
-
apiTeamId: import("zod").ZodNumber
|
|
528
|
-
name: import("zod").ZodString
|
|
526
|
+
id: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
527
|
+
apiTeamId: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
528
|
+
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
529
529
|
score: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
530
530
|
isWinner: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
531
|
-
image: import("zod").ZodString
|
|
532
|
-
seed: import("zod").ZodOptional<import("zod").ZodNumber
|
|
533
|
-
teamCode: import("zod").ZodOptional<import("zod").ZodString
|
|
534
|
-
scoreExtraTime: import("zod").ZodOptional<import("zod").ZodNumber
|
|
535
|
-
stadiumUrl: import("zod").ZodOptional<import("zod").ZodString
|
|
536
|
-
school: import("zod").ZodOptional<import("zod").ZodString
|
|
537
|
-
city: import("zod").ZodOptional<import("zod").ZodString
|
|
538
|
-
venueName: import("zod").ZodOptional<import("zod").ZodString
|
|
531
|
+
image: import("zod").ZodNullable<import("zod").ZodString>;
|
|
532
|
+
seed: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
533
|
+
teamCode: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
534
|
+
scoreExtraTime: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
535
|
+
stadiumUrl: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
536
|
+
school: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
537
|
+
city: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
538
|
+
venueName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
539
539
|
}, "strip", import("zod").ZodTypeAny, {
|
|
540
|
-
name: string;
|
|
541
|
-
image: string;
|
|
542
|
-
apiTeamId: number;
|
|
543
|
-
id?: string | undefined;
|
|
540
|
+
name: string | null;
|
|
541
|
+
image: string | null;
|
|
542
|
+
apiTeamId: number | null;
|
|
543
|
+
id?: string | null | undefined;
|
|
544
544
|
score?: number | undefined;
|
|
545
545
|
isWinner?: boolean | undefined;
|
|
546
|
-
seed?: number | undefined;
|
|
547
|
-
teamCode?: string | undefined;
|
|
548
|
-
scoreExtraTime?: number | undefined;
|
|
549
|
-
stadiumUrl?: string | undefined;
|
|
550
|
-
school?: string | undefined;
|
|
551
|
-
city?: string | undefined;
|
|
552
|
-
venueName?: string | undefined;
|
|
546
|
+
seed?: number | null | undefined;
|
|
547
|
+
teamCode?: string | null | undefined;
|
|
548
|
+
scoreExtraTime?: number | null | undefined;
|
|
549
|
+
stadiumUrl?: string | null | undefined;
|
|
550
|
+
school?: string | null | undefined;
|
|
551
|
+
city?: string | null | undefined;
|
|
552
|
+
venueName?: string | null | undefined;
|
|
553
553
|
}, {
|
|
554
|
-
name: string;
|
|
555
|
-
image: string;
|
|
556
|
-
apiTeamId: number;
|
|
557
|
-
id?: string | undefined;
|
|
554
|
+
name: string | null;
|
|
555
|
+
image: string | null;
|
|
556
|
+
apiTeamId: number | null;
|
|
557
|
+
id?: string | null | undefined;
|
|
558
558
|
score?: number | undefined;
|
|
559
559
|
isWinner?: boolean | undefined;
|
|
560
|
-
seed?: number | undefined;
|
|
561
|
-
teamCode?: string | undefined;
|
|
562
|
-
scoreExtraTime?: number | undefined;
|
|
563
|
-
stadiumUrl?: string | undefined;
|
|
564
|
-
school?: string | undefined;
|
|
565
|
-
city?: string | undefined;
|
|
566
|
-
venueName?: string | undefined;
|
|
560
|
+
seed?: number | null | undefined;
|
|
561
|
+
teamCode?: string | null | undefined;
|
|
562
|
+
scoreExtraTime?: number | null | undefined;
|
|
563
|
+
stadiumUrl?: string | null | undefined;
|
|
564
|
+
school?: string | null | undefined;
|
|
565
|
+
city?: string | null | undefined;
|
|
566
|
+
venueName?: string | null | undefined;
|
|
567
567
|
}>;
|
|
568
568
|
awayTeam: import("zod").ZodObject<{
|
|
569
|
-
id: import("zod").ZodOptional<import("zod").ZodString
|
|
570
|
-
apiTeamId: import("zod").ZodNumber
|
|
571
|
-
name: import("zod").ZodString
|
|
569
|
+
id: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
570
|
+
apiTeamId: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
571
|
+
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
572
572
|
score: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
573
573
|
isWinner: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
574
|
-
image: import("zod").ZodString
|
|
575
|
-
seed: import("zod").ZodOptional<import("zod").ZodNumber
|
|
576
|
-
teamCode: import("zod").ZodOptional<import("zod").ZodString
|
|
577
|
-
scoreExtraTime: import("zod").ZodOptional<import("zod").ZodNumber
|
|
578
|
-
stadiumUrl: import("zod").ZodOptional<import("zod").ZodString
|
|
579
|
-
school: import("zod").ZodOptional<import("zod").ZodString
|
|
580
|
-
city: import("zod").ZodOptional<import("zod").ZodString
|
|
581
|
-
venueName: import("zod").ZodOptional<import("zod").ZodString
|
|
574
|
+
image: import("zod").ZodNullable<import("zod").ZodString>;
|
|
575
|
+
seed: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
576
|
+
teamCode: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
577
|
+
scoreExtraTime: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
578
|
+
stadiumUrl: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
579
|
+
school: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
580
|
+
city: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
581
|
+
venueName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
582
582
|
}, "strip", import("zod").ZodTypeAny, {
|
|
583
|
-
name: string;
|
|
584
|
-
image: string;
|
|
585
|
-
apiTeamId: number;
|
|
586
|
-
id?: string | undefined;
|
|
583
|
+
name: string | null;
|
|
584
|
+
image: string | null;
|
|
585
|
+
apiTeamId: number | null;
|
|
586
|
+
id?: string | null | undefined;
|
|
587
587
|
score?: number | undefined;
|
|
588
588
|
isWinner?: boolean | undefined;
|
|
589
|
-
seed?: number | undefined;
|
|
590
|
-
teamCode?: string | undefined;
|
|
591
|
-
scoreExtraTime?: number | undefined;
|
|
592
|
-
stadiumUrl?: string | undefined;
|
|
593
|
-
school?: string | undefined;
|
|
594
|
-
city?: string | undefined;
|
|
595
|
-
venueName?: string | undefined;
|
|
589
|
+
seed?: number | null | undefined;
|
|
590
|
+
teamCode?: string | null | undefined;
|
|
591
|
+
scoreExtraTime?: number | null | undefined;
|
|
592
|
+
stadiumUrl?: string | null | undefined;
|
|
593
|
+
school?: string | null | undefined;
|
|
594
|
+
city?: string | null | undefined;
|
|
595
|
+
venueName?: string | null | undefined;
|
|
596
596
|
}, {
|
|
597
|
-
name: string;
|
|
598
|
-
image: string;
|
|
599
|
-
apiTeamId: number;
|
|
600
|
-
id?: string | undefined;
|
|
597
|
+
name: string | null;
|
|
598
|
+
image: string | null;
|
|
599
|
+
apiTeamId: number | null;
|
|
600
|
+
id?: string | null | undefined;
|
|
601
601
|
score?: number | undefined;
|
|
602
602
|
isWinner?: boolean | undefined;
|
|
603
|
-
seed?: number | undefined;
|
|
604
|
-
teamCode?: string | undefined;
|
|
605
|
-
scoreExtraTime?: number | undefined;
|
|
606
|
-
stadiumUrl?: string | undefined;
|
|
607
|
-
school?: string | undefined;
|
|
608
|
-
city?: string | undefined;
|
|
609
|
-
venueName?: string | undefined;
|
|
603
|
+
seed?: number | null | undefined;
|
|
604
|
+
teamCode?: string | null | undefined;
|
|
605
|
+
scoreExtraTime?: number | null | undefined;
|
|
606
|
+
stadiumUrl?: string | null | undefined;
|
|
607
|
+
school?: string | null | undefined;
|
|
608
|
+
city?: string | null | undefined;
|
|
609
|
+
venueName?: string | null | undefined;
|
|
610
610
|
}>;
|
|
611
611
|
seriesInfo: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
612
612
|
homeTeamWins: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
@@ -632,34 +632,34 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
632
632
|
id: string;
|
|
633
633
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
|
|
634
634
|
homeTeam: {
|
|
635
|
-
name: string;
|
|
636
|
-
image: string;
|
|
637
|
-
apiTeamId: number;
|
|
638
|
-
id?: string | undefined;
|
|
635
|
+
name: string | null;
|
|
636
|
+
image: string | null;
|
|
637
|
+
apiTeamId: number | null;
|
|
638
|
+
id?: string | null | undefined;
|
|
639
639
|
score?: number | undefined;
|
|
640
640
|
isWinner?: boolean | undefined;
|
|
641
|
-
seed?: number | undefined;
|
|
642
|
-
teamCode?: string | undefined;
|
|
643
|
-
scoreExtraTime?: number | undefined;
|
|
644
|
-
stadiumUrl?: string | undefined;
|
|
645
|
-
school?: string | undefined;
|
|
646
|
-
city?: string | undefined;
|
|
647
|
-
venueName?: string | undefined;
|
|
641
|
+
seed?: number | null | undefined;
|
|
642
|
+
teamCode?: string | null | undefined;
|
|
643
|
+
scoreExtraTime?: number | null | undefined;
|
|
644
|
+
stadiumUrl?: string | null | undefined;
|
|
645
|
+
school?: string | null | undefined;
|
|
646
|
+
city?: string | null | undefined;
|
|
647
|
+
venueName?: string | null | undefined;
|
|
648
648
|
};
|
|
649
649
|
awayTeam: {
|
|
650
|
-
name: string;
|
|
651
|
-
image: string;
|
|
652
|
-
apiTeamId: number;
|
|
653
|
-
id?: string | undefined;
|
|
650
|
+
name: string | null;
|
|
651
|
+
image: string | null;
|
|
652
|
+
apiTeamId: number | null;
|
|
653
|
+
id?: string | null | undefined;
|
|
654
654
|
score?: number | undefined;
|
|
655
655
|
isWinner?: boolean | undefined;
|
|
656
|
-
seed?: number | undefined;
|
|
657
|
-
teamCode?: string | undefined;
|
|
658
|
-
scoreExtraTime?: number | undefined;
|
|
659
|
-
stadiumUrl?: string | undefined;
|
|
660
|
-
school?: string | undefined;
|
|
661
|
-
city?: string | undefined;
|
|
662
|
-
venueName?: string | undefined;
|
|
656
|
+
seed?: number | null | undefined;
|
|
657
|
+
teamCode?: string | null | undefined;
|
|
658
|
+
scoreExtraTime?: number | null | undefined;
|
|
659
|
+
stadiumUrl?: string | null | undefined;
|
|
660
|
+
school?: string | null | undefined;
|
|
661
|
+
city?: string | null | undefined;
|
|
662
|
+
venueName?: string | null | undefined;
|
|
663
663
|
};
|
|
664
664
|
round?: number | undefined;
|
|
665
665
|
week?: number | undefined;
|
|
@@ -676,34 +676,34 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
676
676
|
id: string;
|
|
677
677
|
league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
|
|
678
678
|
homeTeam: {
|
|
679
|
-
name: string;
|
|
680
|
-
image: string;
|
|
681
|
-
apiTeamId: number;
|
|
682
|
-
id?: string | undefined;
|
|
679
|
+
name: string | null;
|
|
680
|
+
image: string | null;
|
|
681
|
+
apiTeamId: number | null;
|
|
682
|
+
id?: string | null | undefined;
|
|
683
683
|
score?: number | undefined;
|
|
684
684
|
isWinner?: boolean | undefined;
|
|
685
|
-
seed?: number | undefined;
|
|
686
|
-
teamCode?: string | undefined;
|
|
687
|
-
scoreExtraTime?: number | undefined;
|
|
688
|
-
stadiumUrl?: string | undefined;
|
|
689
|
-
school?: string | undefined;
|
|
690
|
-
city?: string | undefined;
|
|
691
|
-
venueName?: string | undefined;
|
|
685
|
+
seed?: number | null | undefined;
|
|
686
|
+
teamCode?: string | null | undefined;
|
|
687
|
+
scoreExtraTime?: number | null | undefined;
|
|
688
|
+
stadiumUrl?: string | null | undefined;
|
|
689
|
+
school?: string | null | undefined;
|
|
690
|
+
city?: string | null | undefined;
|
|
691
|
+
venueName?: string | null | undefined;
|
|
692
692
|
};
|
|
693
693
|
awayTeam: {
|
|
694
|
-
name: string;
|
|
695
|
-
image: string;
|
|
696
|
-
apiTeamId: number;
|
|
697
|
-
id?: string | undefined;
|
|
694
|
+
name: string | null;
|
|
695
|
+
image: string | null;
|
|
696
|
+
apiTeamId: number | null;
|
|
697
|
+
id?: string | null | undefined;
|
|
698
698
|
score?: number | undefined;
|
|
699
699
|
isWinner?: boolean | undefined;
|
|
700
|
-
seed?: number | undefined;
|
|
701
|
-
teamCode?: string | undefined;
|
|
702
|
-
scoreExtraTime?: number | undefined;
|
|
703
|
-
stadiumUrl?: string | undefined;
|
|
704
|
-
school?: string | undefined;
|
|
705
|
-
city?: string | undefined;
|
|
706
|
-
venueName?: string | undefined;
|
|
700
|
+
seed?: number | null | undefined;
|
|
701
|
+
teamCode?: string | null | undefined;
|
|
702
|
+
scoreExtraTime?: number | null | undefined;
|
|
703
|
+
stadiumUrl?: string | null | undefined;
|
|
704
|
+
school?: string | null | undefined;
|
|
705
|
+
city?: string | null | undefined;
|
|
706
|
+
venueName?: string | null | undefined;
|
|
707
707
|
};
|
|
708
708
|
round?: number | undefined;
|
|
709
709
|
week?: number | undefined;
|
|
@@ -733,90 +733,90 @@ export declare const createRatingSchema: import("zod").ZodObject<import("zod").o
|
|
|
733
733
|
round: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
734
734
|
league: import("zod").ZodUnion<[import("zod").ZodLiteral<"nba">, import("zod").ZodLiteral<"ncaa">, import("zod").ZodLiteral<"nfl">, import("zod").ZodLiteral<"nhl">, import("zod").ZodLiteral<"mlb">, import("zod").ZodLiteral<"cbb">, import("zod").ZodLiteral<"cfb">, import("zod").ZodLiteral<"epl">, import("zod").ZodLiteral<"mls">, import("zod").ZodLiteral<"wnba">, import("zod").ZodLiteral<"cwc">, import("zod").ZodLiteral<"global">]>;
|
|
735
735
|
homeTeam: import("zod").ZodObject<{
|
|
736
|
-
id: import("zod").ZodOptional<import("zod").ZodString
|
|
737
|
-
apiTeamId: import("zod").ZodNumber
|
|
738
|
-
name: import("zod").ZodString
|
|
736
|
+
id: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
737
|
+
apiTeamId: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
738
|
+
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
739
739
|
score: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
740
740
|
isWinner: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
741
|
-
image: import("zod").ZodString
|
|
742
|
-
seed: import("zod").ZodOptional<import("zod").ZodNumber
|
|
743
|
-
teamCode: import("zod").ZodOptional<import("zod").ZodString
|
|
744
|
-
scoreExtraTime: import("zod").ZodOptional<import("zod").ZodNumber
|
|
745
|
-
stadiumUrl: import("zod").ZodOptional<import("zod").ZodString
|
|
746
|
-
school: import("zod").ZodOptional<import("zod").ZodString
|
|
747
|
-
city: import("zod").ZodOptional<import("zod").ZodString
|
|
748
|
-
venueName: import("zod").ZodOptional<import("zod").ZodString
|
|
741
|
+
image: import("zod").ZodNullable<import("zod").ZodString>;
|
|
742
|
+
seed: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
743
|
+
teamCode: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
744
|
+
scoreExtraTime: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
745
|
+
stadiumUrl: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
746
|
+
school: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
747
|
+
city: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
748
|
+
venueName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
749
749
|
}, "strip", import("zod").ZodTypeAny, {
|
|
750
|
-
name: string;
|
|
751
|
-
image: string;
|
|
752
|
-
apiTeamId: number;
|
|
753
|
-
id?: string | undefined;
|
|
750
|
+
name: string | null;
|
|
751
|
+
image: string | null;
|
|
752
|
+
apiTeamId: number | null;
|
|
753
|
+
id?: string | null | undefined;
|
|
754
754
|
score?: number | undefined;
|
|
755
755
|
isWinner?: boolean | undefined;
|
|
756
|
-
seed?: number | undefined;
|
|
757
|
-
teamCode?: string | undefined;
|
|
758
|
-
scoreExtraTime?: number | undefined;
|
|
759
|
-
stadiumUrl?: string | undefined;
|
|
760
|
-
school?: string | undefined;
|
|
761
|
-
city?: string | undefined;
|
|
762
|
-
venueName?: string | undefined;
|
|
756
|
+
seed?: number | null | undefined;
|
|
757
|
+
teamCode?: string | null | undefined;
|
|
758
|
+
scoreExtraTime?: number | null | undefined;
|
|
759
|
+
stadiumUrl?: string | null | undefined;
|
|
760
|
+
school?: string | null | undefined;
|
|
761
|
+
city?: string | null | undefined;
|
|
762
|
+
venueName?: string | null | undefined;
|
|
763
763
|
}, {
|
|
764
|
-
name: string;
|
|
765
|
-
image: string;
|
|
766
|
-
apiTeamId: number;
|
|
767
|
-
id?: string | undefined;
|
|
764
|
+
name: string | null;
|
|
765
|
+
image: string | null;
|
|
766
|
+
apiTeamId: number | null;
|
|
767
|
+
id?: string | null | undefined;
|
|
768
768
|
score?: number | undefined;
|
|
769
769
|
isWinner?: boolean | undefined;
|
|
770
|
-
seed?: number | undefined;
|
|
771
|
-
teamCode?: string | undefined;
|
|
772
|
-
scoreExtraTime?: number | undefined;
|
|
773
|
-
stadiumUrl?: string | undefined;
|
|
774
|
-
school?: string | undefined;
|
|
775
|
-
city?: string | undefined;
|
|
776
|
-
venueName?: string | undefined;
|
|
770
|
+
seed?: number | null | undefined;
|
|
771
|
+
teamCode?: string | null | undefined;
|
|
772
|
+
scoreExtraTime?: number | null | undefined;
|
|
773
|
+
stadiumUrl?: string | null | undefined;
|
|
774
|
+
school?: string | null | undefined;
|
|
775
|
+
city?: string | null | undefined;
|
|
776
|
+
venueName?: string | null | undefined;
|
|
777
777
|
}>;
|
|
778
778
|
awayTeam: import("zod").ZodObject<{
|
|
779
|
-
id: import("zod").ZodOptional<import("zod").ZodString
|
|
780
|
-
apiTeamId: import("zod").ZodNumber
|
|
781
|
-
name: import("zod").ZodString
|
|
779
|
+
id: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
780
|
+
apiTeamId: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
781
|
+
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
782
782
|
score: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
783
783
|
isWinner: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
784
|
-
image: import("zod").ZodString
|
|
785
|
-
seed: import("zod").ZodOptional<import("zod").ZodNumber
|
|
786
|
-
teamCode: import("zod").ZodOptional<import("zod").ZodString
|
|
787
|
-
scoreExtraTime: import("zod").ZodOptional<import("zod").ZodNumber
|
|
788
|
-
stadiumUrl: import("zod").ZodOptional<import("zod").ZodString
|
|
789
|
-
school: import("zod").ZodOptional<import("zod").ZodString
|
|
790
|
-
city: import("zod").ZodOptional<import("zod").ZodString
|
|
791
|
-
venueName: import("zod").ZodOptional<import("zod").ZodString
|
|
784
|
+
image: import("zod").ZodNullable<import("zod").ZodString>;
|
|
785
|
+
seed: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
786
|
+
teamCode: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
787
|
+
scoreExtraTime: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
788
|
+
stadiumUrl: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
789
|
+
school: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
790
|
+
city: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
791
|
+
venueName: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
792
792
|
}, "strip", import("zod").ZodTypeAny, {
|
|
793
|
-
name: string;
|
|
794
|
-
image: string;
|
|
795
|
-
apiTeamId: number;
|
|
796
|
-
id?: string | undefined;
|
|
793
|
+
name: string | null;
|
|
794
|
+
image: string | null;
|
|
795
|
+
apiTeamId: number | null;
|
|
796
|
+
id?: string | null | undefined;
|
|
797
797
|
score?: number | undefined;
|
|
798
798
|
isWinner?: boolean | undefined;
|
|
799
|
-
seed?: number | undefined;
|
|
800
|
-
teamCode?: string | undefined;
|
|
801
|
-
scoreExtraTime?: number | undefined;
|
|
802
|
-
stadiumUrl?: string | undefined;
|
|
803
|
-
school?: string | undefined;
|
|
804
|
-
city?: string | undefined;
|
|
805
|
-
venueName?: string | undefined;
|
|
799
|
+
seed?: number | null | undefined;
|
|
800
|
+
teamCode?: string | null | undefined;
|
|
801
|
+
scoreExtraTime?: number | null | undefined;
|
|
802
|
+
stadiumUrl?: string | null | undefined;
|
|
803
|
+
school?: string | null | undefined;
|
|
804
|
+
city?: string | null | undefined;
|
|
805
|
+
venueName?: string | null | undefined;
|
|
806
806
|
}, {
|
|
807
|
-
name: string;
|
|
808
|
-
image: string;
|
|
809
|
-
apiTeamId: number;
|
|
810
|
-
id?: string | undefined;
|
|
807
|
+
name: string | null;
|
|
808
|
+
image: string | null;
|
|
809
|
+
apiTeamId: number | null;
|
|
810
|
+
id?: string | null | undefined;
|
|
811
811
|
score?: number | undefined;
|
|
812
812
|
isWinner?: boolean | undefined;
|
|
813
|
-
seed?: number | undefined;
|
|
814
|
-
teamCode?: string | undefined;
|
|
815
|
-
scoreExtraTime?: number | undefined;
|
|
816
|
-
stadiumUrl?: string | undefined;
|
|
817
|
-
school?: string | undefined;
|
|
818
|
-
city?: string | undefined;
|
|
819
|
-
venueName?: string | undefined;
|
|
813
|
+
seed?: number | null | undefined;
|
|
814
|
+
teamCode?: string | null | undefined;
|
|
815
|
+
scoreExtraTime?: number | null | undefined;
|
|
816
|
+
stadiumUrl?: string | null | undefined;
|
|
817
|
+
school?: string | null | undefined;
|
|
818
|
+
city?: string | null | undefined;
|
|
819
|
+
venueName?: string | null | undefined;
|
|
820
820
|
}>;
|
|
821
821
|
seriesInfo: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
822
822
|
homeTeamWins: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
@@ -1594,14 +1594,90 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
1594
1594
|
allGames: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1595
1595
|
favoriteLeagues: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1596
1596
|
favoriteTeams: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1597
|
+
lastWeekScoreLeaderboard: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1598
|
+
leaderboardChanges: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1599
|
+
chatReplies: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1600
|
+
repliesToRatings: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1601
|
+
repliesToComments: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1602
|
+
ratingLikes: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1603
|
+
listLikes: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1604
|
+
eventLikes: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1605
|
+
commentLikes: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1606
|
+
trendingGames: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1607
|
+
gameChanges: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1608
|
+
topRatedGameChanges: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
1609
|
+
mostRatedGameChanges: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
1610
|
+
worstRatedGameChanges: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
1611
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1612
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1613
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1614
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1615
|
+
}, {
|
|
1616
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1617
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1618
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1619
|
+
}>>;
|
|
1620
|
+
gameTopLists: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1621
|
+
topRated: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
1622
|
+
mostRated: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
1623
|
+
worstRated: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
1624
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1625
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1626
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1627
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1628
|
+
}, {
|
|
1629
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1630
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1631
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1632
|
+
}>>;
|
|
1597
1633
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1598
1634
|
allGames?: boolean | undefined;
|
|
1599
1635
|
favoriteLeagues?: boolean | undefined;
|
|
1600
1636
|
favoriteTeams?: boolean | undefined;
|
|
1637
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
1638
|
+
leaderboardChanges?: boolean | undefined;
|
|
1639
|
+
chatReplies?: boolean | undefined;
|
|
1640
|
+
repliesToRatings?: boolean | undefined;
|
|
1641
|
+
repliesToComments?: boolean | undefined;
|
|
1642
|
+
ratingLikes?: boolean | undefined;
|
|
1643
|
+
listLikes?: boolean | undefined;
|
|
1644
|
+
eventLikes?: boolean | undefined;
|
|
1645
|
+
commentLikes?: boolean | undefined;
|
|
1646
|
+
trendingGames?: boolean | undefined;
|
|
1647
|
+
gameChanges?: {
|
|
1648
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1649
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1650
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1651
|
+
} | undefined;
|
|
1652
|
+
gameTopLists?: {
|
|
1653
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1654
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1655
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1656
|
+
} | undefined;
|
|
1601
1657
|
}, {
|
|
1602
1658
|
allGames?: boolean | undefined;
|
|
1603
1659
|
favoriteLeagues?: boolean | undefined;
|
|
1604
1660
|
favoriteTeams?: boolean | undefined;
|
|
1661
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
1662
|
+
leaderboardChanges?: boolean | undefined;
|
|
1663
|
+
chatReplies?: boolean | undefined;
|
|
1664
|
+
repliesToRatings?: boolean | undefined;
|
|
1665
|
+
repliesToComments?: boolean | undefined;
|
|
1666
|
+
ratingLikes?: boolean | undefined;
|
|
1667
|
+
listLikes?: boolean | undefined;
|
|
1668
|
+
eventLikes?: boolean | undefined;
|
|
1669
|
+
commentLikes?: boolean | undefined;
|
|
1670
|
+
trendingGames?: boolean | undefined;
|
|
1671
|
+
gameChanges?: {
|
|
1672
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1673
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1674
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1675
|
+
} | undefined;
|
|
1676
|
+
gameTopLists?: {
|
|
1677
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1678
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1679
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
1680
|
+
} | undefined;
|
|
1605
1681
|
}>>;
|
|
1606
1682
|
spoilersEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1607
1683
|
viewedChangelogs: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
@@ -2531,14 +2607,90 @@ export declare const threadCommentSchema: import("zod").ZodObject<{
|
|
|
2531
2607
|
allGames: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2532
2608
|
favoriteLeagues: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2533
2609
|
favoriteTeams: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2610
|
+
lastWeekScoreLeaderboard: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2611
|
+
leaderboardChanges: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2612
|
+
chatReplies: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2613
|
+
repliesToRatings: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2614
|
+
repliesToComments: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2615
|
+
ratingLikes: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2616
|
+
listLikes: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2617
|
+
eventLikes: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2618
|
+
commentLikes: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2619
|
+
trendingGames: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2620
|
+
gameChanges: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
2621
|
+
topRatedGameChanges: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
2622
|
+
mostRatedGameChanges: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
2623
|
+
worstRatedGameChanges: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
2624
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
2625
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2626
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2627
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2628
|
+
}, {
|
|
2629
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2630
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2631
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2632
|
+
}>>;
|
|
2633
|
+
gameTopLists: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
2634
|
+
topRated: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
2635
|
+
mostRated: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
2636
|
+
worstRated: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
2637
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
2638
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2639
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2640
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2641
|
+
}, {
|
|
2642
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2643
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2644
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2645
|
+
}>>;
|
|
2534
2646
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2535
2647
|
allGames?: boolean | undefined;
|
|
2536
2648
|
favoriteLeagues?: boolean | undefined;
|
|
2537
2649
|
favoriteTeams?: boolean | undefined;
|
|
2650
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
2651
|
+
leaderboardChanges?: boolean | undefined;
|
|
2652
|
+
chatReplies?: boolean | undefined;
|
|
2653
|
+
repliesToRatings?: boolean | undefined;
|
|
2654
|
+
repliesToComments?: boolean | undefined;
|
|
2655
|
+
ratingLikes?: boolean | undefined;
|
|
2656
|
+
listLikes?: boolean | undefined;
|
|
2657
|
+
eventLikes?: boolean | undefined;
|
|
2658
|
+
commentLikes?: boolean | undefined;
|
|
2659
|
+
trendingGames?: boolean | undefined;
|
|
2660
|
+
gameChanges?: {
|
|
2661
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2662
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2663
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2664
|
+
} | undefined;
|
|
2665
|
+
gameTopLists?: {
|
|
2666
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2667
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2668
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2669
|
+
} | undefined;
|
|
2538
2670
|
}, {
|
|
2539
2671
|
allGames?: boolean | undefined;
|
|
2540
2672
|
favoriteLeagues?: boolean | undefined;
|
|
2541
2673
|
favoriteTeams?: boolean | undefined;
|
|
2674
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
2675
|
+
leaderboardChanges?: boolean | undefined;
|
|
2676
|
+
chatReplies?: boolean | undefined;
|
|
2677
|
+
repliesToRatings?: boolean | undefined;
|
|
2678
|
+
repliesToComments?: boolean | undefined;
|
|
2679
|
+
ratingLikes?: boolean | undefined;
|
|
2680
|
+
listLikes?: boolean | undefined;
|
|
2681
|
+
eventLikes?: boolean | undefined;
|
|
2682
|
+
commentLikes?: boolean | undefined;
|
|
2683
|
+
trendingGames?: boolean | undefined;
|
|
2684
|
+
gameChanges?: {
|
|
2685
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2686
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2687
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2688
|
+
} | undefined;
|
|
2689
|
+
gameTopLists?: {
|
|
2690
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2691
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2692
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
2693
|
+
} | undefined;
|
|
2542
2694
|
}>>;
|
|
2543
2695
|
spoilersEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2544
2696
|
viewedChangelogs: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
@@ -3539,14 +3691,90 @@ export declare const threadCommentLikeSchema: import("zod").ZodObject<{
|
|
|
3539
3691
|
allGames: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3540
3692
|
favoriteLeagues: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3541
3693
|
favoriteTeams: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3694
|
+
lastWeekScoreLeaderboard: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3695
|
+
leaderboardChanges: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3696
|
+
chatReplies: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3697
|
+
repliesToRatings: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3698
|
+
repliesToComments: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3699
|
+
ratingLikes: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3700
|
+
listLikes: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3701
|
+
eventLikes: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3702
|
+
commentLikes: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3703
|
+
trendingGames: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3704
|
+
gameChanges: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
3705
|
+
topRatedGameChanges: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
3706
|
+
mostRatedGameChanges: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
3707
|
+
worstRatedGameChanges: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
3708
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
3709
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3710
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3711
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3712
|
+
}, {
|
|
3713
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3714
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3715
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3716
|
+
}>>;
|
|
3717
|
+
gameTopLists: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
3718
|
+
topRated: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
3719
|
+
mostRated: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
3720
|
+
worstRated: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"Today">, import("zod").ZodLiteral<"Last 3 Days">, import("zod").ZodLiteral<"This Week">, import("zod").ZodLiteral<"This Season">, import("zod").ZodLiteral<"This Month">, import("zod").ZodLiteral<"This Year">, import("zod").ZodLiteral<"All">, import("zod").ZodLiteral<"All Time">, import("zod").ZodLiteral<"12h">, import("zod").ZodLiteral<"daily">, import("zod").ZodLiteral<"weekly">]>>;
|
|
3721
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
3722
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3723
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3724
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3725
|
+
}, {
|
|
3726
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3727
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3728
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3729
|
+
}>>;
|
|
3542
3730
|
}, "strip", import("zod").ZodTypeAny, {
|
|
3543
3731
|
allGames?: boolean | undefined;
|
|
3544
3732
|
favoriteLeagues?: boolean | undefined;
|
|
3545
3733
|
favoriteTeams?: boolean | undefined;
|
|
3734
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
3735
|
+
leaderboardChanges?: boolean | undefined;
|
|
3736
|
+
chatReplies?: boolean | undefined;
|
|
3737
|
+
repliesToRatings?: boolean | undefined;
|
|
3738
|
+
repliesToComments?: boolean | undefined;
|
|
3739
|
+
ratingLikes?: boolean | undefined;
|
|
3740
|
+
listLikes?: boolean | undefined;
|
|
3741
|
+
eventLikes?: boolean | undefined;
|
|
3742
|
+
commentLikes?: boolean | undefined;
|
|
3743
|
+
trendingGames?: boolean | undefined;
|
|
3744
|
+
gameChanges?: {
|
|
3745
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3746
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3747
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3748
|
+
} | undefined;
|
|
3749
|
+
gameTopLists?: {
|
|
3750
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3751
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3752
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3753
|
+
} | undefined;
|
|
3546
3754
|
}, {
|
|
3547
3755
|
allGames?: boolean | undefined;
|
|
3548
3756
|
favoriteLeagues?: boolean | undefined;
|
|
3549
3757
|
favoriteTeams?: boolean | undefined;
|
|
3758
|
+
lastWeekScoreLeaderboard?: boolean | undefined;
|
|
3759
|
+
leaderboardChanges?: boolean | undefined;
|
|
3760
|
+
chatReplies?: boolean | undefined;
|
|
3761
|
+
repliesToRatings?: boolean | undefined;
|
|
3762
|
+
repliesToComments?: boolean | undefined;
|
|
3763
|
+
ratingLikes?: boolean | undefined;
|
|
3764
|
+
listLikes?: boolean | undefined;
|
|
3765
|
+
eventLikes?: boolean | undefined;
|
|
3766
|
+
commentLikes?: boolean | undefined;
|
|
3767
|
+
trendingGames?: boolean | undefined;
|
|
3768
|
+
gameChanges?: {
|
|
3769
|
+
topRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3770
|
+
mostRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3771
|
+
worstRatedGameChanges?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3772
|
+
} | undefined;
|
|
3773
|
+
gameTopLists?: {
|
|
3774
|
+
topRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3775
|
+
mostRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3776
|
+
worstRated?: "Today" | "Last 3 Days" | "This Week" | "This Season" | "This Month" | "This Year" | "All" | "All Time" | "12h" | "daily" | "weekly" | undefined;
|
|
3777
|
+
} | undefined;
|
|
3550
3778
|
}>>;
|
|
3551
3779
|
spoilersEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3552
3780
|
viewedChangelogs: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|