rategame-shared 1.1.501 → 1.1.503
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/constants/leagueSupport.js +7 -4
- package/dist/schemas/article.d.ts +5 -5
- package/dist/schemas/chat.d.ts +5 -5
- package/dist/schemas/communityGame.d.ts +47 -18
- package/dist/schemas/experience.d.ts +16 -6
- package/dist/schemas/experience.js +2 -0
- package/dist/schemas/game.d.ts +391 -20
- package/dist/schemas/game.js +5 -0
- package/dist/schemas/list.d.ts +5 -5
- package/dist/schemas/miniLeague.d.ts +72 -54
- package/dist/schemas/miniLeague.js +70 -1
- package/dist/schemas/moderation.d.ts +4 -4
- package/dist/schemas/notification.d.ts +27 -0
- package/dist/schemas/pick.d.ts +943 -38
- package/dist/schemas/poll.d.ts +352 -16
- package/dist/schemas/rating.d.ts +42 -3
- package/dist/schemas/scorePrediction.d.ts +699 -27
- package/dist/schemas/stadium.d.ts +44 -6
- package/dist/schemas/stadium.js +2 -0
- package/dist/schemas/team.d.ts +10 -10
- package/dist/schemas/trivia.d.ts +5 -5
- package/dist/schemas/user.d.ts +7 -7
- package/dist/schemas/user.js +1 -0
- package/dist/schemas/userEvent.d.ts +3 -3
- package/dist/schemas/voting.d.ts +153 -9
- package/package.json +1 -1
|
@@ -18,11 +18,14 @@ exports.SUPPORTED_LEAGUES = [
|
|
|
18
18
|
"bundesliga",
|
|
19
19
|
"ligue1",
|
|
20
20
|
"ucl",
|
|
21
|
+
"cbb",
|
|
22
|
+
"ncaa",
|
|
23
|
+
"cfb",
|
|
21
24
|
];
|
|
22
25
|
/**
|
|
23
26
|
* Leagues that do not support player voting functionality
|
|
24
27
|
*/
|
|
25
|
-
exports.UNSUPPORTED_LEAGUES = ["cwc"
|
|
28
|
+
exports.UNSUPPORTED_LEAGUES = ["cwc"];
|
|
26
29
|
/**
|
|
27
30
|
* Configuration object for league-specific settings
|
|
28
31
|
*/
|
|
@@ -94,17 +97,17 @@ exports.LEAGUE_CONFIG = {
|
|
|
94
97
|
},
|
|
95
98
|
cbb: {
|
|
96
99
|
playersPath: "leagues/cbb/teams",
|
|
97
|
-
votingEnabled:
|
|
100
|
+
votingEnabled: true,
|
|
98
101
|
displayName: "CBB",
|
|
99
102
|
},
|
|
100
103
|
ncaa: {
|
|
101
104
|
playersPath: "leagues/cbb/teams",
|
|
102
|
-
votingEnabled:
|
|
105
|
+
votingEnabled: true,
|
|
103
106
|
displayName: "CBB",
|
|
104
107
|
},
|
|
105
108
|
cfb: {
|
|
106
109
|
playersPath: "leagues/cfb/teams",
|
|
107
|
-
votingEnabled:
|
|
110
|
+
votingEnabled: true,
|
|
108
111
|
displayName: "CFB",
|
|
109
112
|
},
|
|
110
113
|
wnba: {
|
|
@@ -1381,7 +1381,7 @@ export declare const articleSchema: z.ZodObject<{
|
|
|
1381
1381
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
1382
1382
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
1383
1383
|
creatorLeague: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"fifa">, z.ZodLiteral<"laliga">, z.ZodLiteral<"seriea">, z.ZodLiteral<"bundesliga">, z.ZodLiteral<"ligue1">, z.ZodLiteral<"ucl">, z.ZodUnion<[z.ZodLiteral<"global">, z.ZodString]>]>, z.ZodString]>>;
|
|
1384
|
-
role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">, z.ZodLiteral<"Moderator">]>>;
|
|
1384
|
+
role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">, z.ZodLiteral<"Moderator">, z.ZodLiteral<"SuperCreator">]>>;
|
|
1385
1385
|
multiLeagueCreator: z.ZodOptional<z.ZodBoolean>;
|
|
1386
1386
|
preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
|
|
1387
1387
|
wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3137,7 +3137,7 @@ export declare const createArticleSchema: z.ZodObject<{
|
|
|
3137
3137
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
3138
3138
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
3139
3139
|
creatorLeague: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"fifa">, z.ZodLiteral<"laliga">, z.ZodLiteral<"seriea">, z.ZodLiteral<"bundesliga">, z.ZodLiteral<"ligue1">, z.ZodLiteral<"ucl">, z.ZodUnion<[z.ZodLiteral<"global">, z.ZodString]>]>, z.ZodString]>>;
|
|
3140
|
-
role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">, z.ZodLiteral<"Moderator">]>>;
|
|
3140
|
+
role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">, z.ZodLiteral<"Moderator">, z.ZodLiteral<"SuperCreator">]>>;
|
|
3141
3141
|
multiLeagueCreator: z.ZodOptional<z.ZodBoolean>;
|
|
3142
3142
|
preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
|
|
3143
3143
|
wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4956,7 +4956,7 @@ export declare const articleThreadCommentSchema: z.ZodObject<{
|
|
|
4956
4956
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
4957
4957
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
4958
4958
|
creatorLeague: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"fifa">, z.ZodLiteral<"laliga">, z.ZodLiteral<"seriea">, z.ZodLiteral<"bundesliga">, z.ZodLiteral<"ligue1">, z.ZodLiteral<"ucl">, z.ZodUnion<[z.ZodLiteral<"global">, z.ZodString]>]>, z.ZodString]>>;
|
|
4959
|
-
role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">, z.ZodLiteral<"Moderator">]>>;
|
|
4959
|
+
role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">, z.ZodLiteral<"Moderator">, z.ZodLiteral<"SuperCreator">]>>;
|
|
4960
4960
|
multiLeagueCreator: z.ZodOptional<z.ZodBoolean>;
|
|
4961
4961
|
preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
|
|
4962
4962
|
wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6580,7 +6580,7 @@ export declare const articleThreadCommentSchema: z.ZodObject<{
|
|
|
6580
6580
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
6581
6581
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
6582
6582
|
creatorLeague: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"fifa">, z.ZodLiteral<"laliga">, z.ZodLiteral<"seriea">, z.ZodLiteral<"bundesliga">, z.ZodLiteral<"ligue1">, z.ZodLiteral<"ucl">, z.ZodUnion<[z.ZodLiteral<"global">, z.ZodString]>]>, z.ZodString]>>;
|
|
6583
|
-
role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">, z.ZodLiteral<"Moderator">]>>;
|
|
6583
|
+
role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">, z.ZodLiteral<"Moderator">, z.ZodLiteral<"SuperCreator">]>>;
|
|
6584
6584
|
multiLeagueCreator: z.ZodOptional<z.ZodBoolean>;
|
|
6585
6585
|
preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
|
|
6586
6586
|
wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8256,7 +8256,7 @@ export declare const articleThreadCommentLikeSchema: z.ZodObject<{
|
|
|
8256
8256
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
8257
8257
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
8258
8258
|
creatorLeague: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"fifa">, z.ZodLiteral<"laliga">, z.ZodLiteral<"seriea">, z.ZodLiteral<"bundesliga">, z.ZodLiteral<"ligue1">, z.ZodLiteral<"ucl">, z.ZodUnion<[z.ZodLiteral<"global">, z.ZodString]>]>, z.ZodString]>>;
|
|
8259
|
-
role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">, z.ZodLiteral<"Moderator">]>>;
|
|
8259
|
+
role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">, z.ZodLiteral<"Moderator">, z.ZodLiteral<"SuperCreator">]>>;
|
|
8260
8260
|
multiLeagueCreator: z.ZodOptional<z.ZodBoolean>;
|
|
8261
8261
|
preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
|
|
8262
8262
|
wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
|
package/dist/schemas/chat.d.ts
CHANGED
|
@@ -1263,7 +1263,7 @@ export declare const chatMessageSchema: z.ZodObject<{
|
|
|
1263
1263
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
1264
1264
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
1265
1265
|
creatorLeague: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"fifa">, z.ZodLiteral<"laliga">, z.ZodLiteral<"seriea">, z.ZodLiteral<"bundesliga">, z.ZodLiteral<"ligue1">, z.ZodLiteral<"ucl">, z.ZodUnion<[z.ZodLiteral<"global">, z.ZodString]>]>, z.ZodString]>>;
|
|
1266
|
-
role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">, z.ZodLiteral<"Moderator">]>>;
|
|
1266
|
+
role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">, z.ZodLiteral<"Moderator">, z.ZodLiteral<"SuperCreator">]>>;
|
|
1267
1267
|
multiLeagueCreator: z.ZodOptional<z.ZodBoolean>;
|
|
1268
1268
|
preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
|
|
1269
1269
|
wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2892,7 +2892,7 @@ export declare const chatMessageSchema: z.ZodObject<{
|
|
|
2892
2892
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
2893
2893
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
2894
2894
|
creatorLeague: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"fifa">, z.ZodLiteral<"laliga">, z.ZodLiteral<"seriea">, z.ZodLiteral<"bundesliga">, z.ZodLiteral<"ligue1">, z.ZodLiteral<"ucl">, z.ZodUnion<[z.ZodLiteral<"global">, z.ZodString]>]>, z.ZodString]>>;
|
|
2895
|
-
role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">, z.ZodLiteral<"Moderator">]>>;
|
|
2895
|
+
role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">, z.ZodLiteral<"Moderator">, z.ZodLiteral<"SuperCreator">]>>;
|
|
2896
2896
|
multiLeagueCreator: z.ZodOptional<z.ZodBoolean>;
|
|
2897
2897
|
preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
|
|
2898
2898
|
wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4580,7 +4580,7 @@ export declare const communityChatMessageSchema: z.ZodObject<{
|
|
|
4580
4580
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
4581
4581
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
4582
4582
|
creatorLeague: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"fifa">, z.ZodLiteral<"laliga">, z.ZodLiteral<"seriea">, z.ZodLiteral<"bundesliga">, z.ZodLiteral<"ligue1">, z.ZodLiteral<"ucl">, z.ZodUnion<[z.ZodLiteral<"global">, z.ZodString]>]>, z.ZodString]>>;
|
|
4583
|
-
role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">, z.ZodLiteral<"Moderator">]>>;
|
|
4583
|
+
role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">, z.ZodLiteral<"Moderator">, z.ZodLiteral<"SuperCreator">]>>;
|
|
4584
4584
|
multiLeagueCreator: z.ZodOptional<z.ZodBoolean>;
|
|
4585
4585
|
preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
|
|
4586
4586
|
wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6208,7 +6208,7 @@ export declare const communityChatMessageSchema: z.ZodObject<{
|
|
|
6208
6208
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
6209
6209
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
6210
6210
|
creatorLeague: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"fifa">, z.ZodLiteral<"laliga">, z.ZodLiteral<"seriea">, z.ZodLiteral<"bundesliga">, z.ZodLiteral<"ligue1">, z.ZodLiteral<"ucl">, z.ZodUnion<[z.ZodLiteral<"global">, z.ZodString]>]>, z.ZodString]>>;
|
|
6211
|
-
role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">, z.ZodLiteral<"Moderator">]>>;
|
|
6211
|
+
role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">, z.ZodLiteral<"Moderator">, z.ZodLiteral<"SuperCreator">]>>;
|
|
6212
6212
|
multiLeagueCreator: z.ZodOptional<z.ZodBoolean>;
|
|
6213
6213
|
preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
|
|
6214
6214
|
wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7890,7 +7890,7 @@ export declare const messageReactionSchema: z.ZodObject<{
|
|
|
7890
7890
|
lastSelectedGamesFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"forYou">]>>;
|
|
7891
7891
|
lastSelectedCombinedFeedType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"newest">, z.ZodLiteral<"following">]>>;
|
|
7892
7892
|
creatorLeague: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"nba">, z.ZodLiteral<"ncaa">, z.ZodLiteral<"nfl">, z.ZodLiteral<"nhl">, z.ZodLiteral<"mlb">, z.ZodLiteral<"cbb">, z.ZodLiteral<"cfb">, z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"wnba">, z.ZodLiteral<"cwc">, z.ZodLiteral<"fifa">, z.ZodLiteral<"laliga">, z.ZodLiteral<"seriea">, z.ZodLiteral<"bundesliga">, z.ZodLiteral<"ligue1">, z.ZodLiteral<"ucl">, z.ZodUnion<[z.ZodLiteral<"global">, z.ZodString]>]>, z.ZodString]>>;
|
|
7893
|
-
role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">, z.ZodLiteral<"Moderator">]>>;
|
|
7893
|
+
role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">, z.ZodLiteral<"Moderator">, z.ZodLiteral<"SuperCreator">]>>;
|
|
7894
7894
|
multiLeagueCreator: z.ZodOptional<z.ZodBoolean>;
|
|
7895
7895
|
preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
|
|
7896
7896
|
wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -13,18 +13,18 @@ export declare const createCommunityTeamSchema: z.ZodObject<{
|
|
|
13
13
|
image: string;
|
|
14
14
|
teamCode: string;
|
|
15
15
|
city?: string | null | undefined;
|
|
16
|
+
conference?: string | undefined;
|
|
16
17
|
division?: string | undefined;
|
|
17
18
|
specialEvent?: boolean | undefined;
|
|
18
|
-
conference?: string | undefined;
|
|
19
19
|
country?: string | null | undefined;
|
|
20
20
|
}, {
|
|
21
21
|
name: string;
|
|
22
22
|
image: string;
|
|
23
23
|
teamCode: string;
|
|
24
24
|
city?: string | null | undefined;
|
|
25
|
+
conference?: string | undefined;
|
|
25
26
|
division?: string | undefined;
|
|
26
27
|
specialEvent?: boolean | undefined;
|
|
27
|
-
conference?: string | undefined;
|
|
28
28
|
country?: string | null | undefined;
|
|
29
29
|
}>;
|
|
30
30
|
export declare const createCommunityStadiumSchema: z.ZodObject<{
|
|
@@ -424,18 +424,18 @@ export declare const communityGameTeamSchema: z.ZodObject<{
|
|
|
424
424
|
image: string;
|
|
425
425
|
teamCode: string;
|
|
426
426
|
city?: string | null | undefined;
|
|
427
|
+
conference?: string | undefined;
|
|
427
428
|
division?: string | undefined;
|
|
428
429
|
specialEvent?: boolean | undefined;
|
|
429
|
-
conference?: string | undefined;
|
|
430
430
|
country?: string | null | undefined;
|
|
431
431
|
}, {
|
|
432
432
|
name: string;
|
|
433
433
|
image: string;
|
|
434
434
|
teamCode: string;
|
|
435
435
|
city?: string | null | undefined;
|
|
436
|
+
conference?: string | undefined;
|
|
436
437
|
division?: string | undefined;
|
|
437
438
|
specialEvent?: boolean | undefined;
|
|
438
|
-
conference?: string | undefined;
|
|
439
439
|
country?: string | null | undefined;
|
|
440
440
|
}>>;
|
|
441
441
|
teamData: z.ZodOptional<z.ZodObject<{
|
|
@@ -454,6 +454,7 @@ export declare const communityGameTeamSchema: z.ZodObject<{
|
|
|
454
454
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
455
455
|
primaryColor: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
456
456
|
aliases: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
457
|
+
conference: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
457
458
|
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
458
459
|
}, "strip", z.ZodTypeAny, {
|
|
459
460
|
name: string | null;
|
|
@@ -471,6 +472,7 @@ export declare const communityGameTeamSchema: z.ZodObject<{
|
|
|
471
472
|
venueName?: string | null | undefined;
|
|
472
473
|
primaryColor?: string | null | undefined;
|
|
473
474
|
aliases?: string[] | null | undefined;
|
|
475
|
+
conference?: string | null | undefined;
|
|
474
476
|
pickCount?: number | undefined;
|
|
475
477
|
}, {
|
|
476
478
|
name: string | null;
|
|
@@ -488,6 +490,7 @@ export declare const communityGameTeamSchema: z.ZodObject<{
|
|
|
488
490
|
venueName?: string | null | undefined;
|
|
489
491
|
primaryColor?: string | null | undefined;
|
|
490
492
|
aliases?: string[] | null | undefined;
|
|
493
|
+
conference?: string | null | undefined;
|
|
491
494
|
pickCount?: number | undefined;
|
|
492
495
|
}>>;
|
|
493
496
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -498,9 +501,9 @@ export declare const communityGameTeamSchema: z.ZodObject<{
|
|
|
498
501
|
image: string;
|
|
499
502
|
teamCode: string;
|
|
500
503
|
city?: string | null | undefined;
|
|
504
|
+
conference?: string | undefined;
|
|
501
505
|
division?: string | undefined;
|
|
502
506
|
specialEvent?: boolean | undefined;
|
|
503
|
-
conference?: string | undefined;
|
|
504
507
|
country?: string | null | undefined;
|
|
505
508
|
} | undefined;
|
|
506
509
|
teamData?: {
|
|
@@ -519,6 +522,7 @@ export declare const communityGameTeamSchema: z.ZodObject<{
|
|
|
519
522
|
venueName?: string | null | undefined;
|
|
520
523
|
primaryColor?: string | null | undefined;
|
|
521
524
|
aliases?: string[] | null | undefined;
|
|
525
|
+
conference?: string | null | undefined;
|
|
522
526
|
pickCount?: number | undefined;
|
|
523
527
|
} | undefined;
|
|
524
528
|
}, {
|
|
@@ -529,9 +533,9 @@ export declare const communityGameTeamSchema: z.ZodObject<{
|
|
|
529
533
|
image: string;
|
|
530
534
|
teamCode: string;
|
|
531
535
|
city?: string | null | undefined;
|
|
536
|
+
conference?: string | undefined;
|
|
532
537
|
division?: string | undefined;
|
|
533
538
|
specialEvent?: boolean | undefined;
|
|
534
|
-
conference?: string | undefined;
|
|
535
539
|
country?: string | null | undefined;
|
|
536
540
|
} | undefined;
|
|
537
541
|
teamData?: {
|
|
@@ -550,6 +554,7 @@ export declare const communityGameTeamSchema: z.ZodObject<{
|
|
|
550
554
|
venueName?: string | null | undefined;
|
|
551
555
|
primaryColor?: string | null | undefined;
|
|
552
556
|
aliases?: string[] | null | undefined;
|
|
557
|
+
conference?: string | null | undefined;
|
|
553
558
|
pickCount?: number | undefined;
|
|
554
559
|
} | undefined;
|
|
555
560
|
}>;
|
|
@@ -608,18 +613,18 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
608
613
|
image: string;
|
|
609
614
|
teamCode: string;
|
|
610
615
|
city?: string | null | undefined;
|
|
616
|
+
conference?: string | undefined;
|
|
611
617
|
division?: string | undefined;
|
|
612
618
|
specialEvent?: boolean | undefined;
|
|
613
|
-
conference?: string | undefined;
|
|
614
619
|
country?: string | null | undefined;
|
|
615
620
|
}, {
|
|
616
621
|
name: string;
|
|
617
622
|
image: string;
|
|
618
623
|
teamCode: string;
|
|
619
624
|
city?: string | null | undefined;
|
|
625
|
+
conference?: string | undefined;
|
|
620
626
|
division?: string | undefined;
|
|
621
627
|
specialEvent?: boolean | undefined;
|
|
622
|
-
conference?: string | undefined;
|
|
623
628
|
country?: string | null | undefined;
|
|
624
629
|
}>>;
|
|
625
630
|
teamData: z.ZodOptional<z.ZodObject<{
|
|
@@ -638,6 +643,7 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
638
643
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
639
644
|
primaryColor: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
640
645
|
aliases: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
646
|
+
conference: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
641
647
|
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
642
648
|
}, "strip", z.ZodTypeAny, {
|
|
643
649
|
name: string | null;
|
|
@@ -655,6 +661,7 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
655
661
|
venueName?: string | null | undefined;
|
|
656
662
|
primaryColor?: string | null | undefined;
|
|
657
663
|
aliases?: string[] | null | undefined;
|
|
664
|
+
conference?: string | null | undefined;
|
|
658
665
|
pickCount?: number | undefined;
|
|
659
666
|
}, {
|
|
660
667
|
name: string | null;
|
|
@@ -672,6 +679,7 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
672
679
|
venueName?: string | null | undefined;
|
|
673
680
|
primaryColor?: string | null | undefined;
|
|
674
681
|
aliases?: string[] | null | undefined;
|
|
682
|
+
conference?: string | null | undefined;
|
|
675
683
|
pickCount?: number | undefined;
|
|
676
684
|
}>>;
|
|
677
685
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -682,9 +690,9 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
682
690
|
image: string;
|
|
683
691
|
teamCode: string;
|
|
684
692
|
city?: string | null | undefined;
|
|
693
|
+
conference?: string | undefined;
|
|
685
694
|
division?: string | undefined;
|
|
686
695
|
specialEvent?: boolean | undefined;
|
|
687
|
-
conference?: string | undefined;
|
|
688
696
|
country?: string | null | undefined;
|
|
689
697
|
} | undefined;
|
|
690
698
|
teamData?: {
|
|
@@ -703,6 +711,7 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
703
711
|
venueName?: string | null | undefined;
|
|
704
712
|
primaryColor?: string | null | undefined;
|
|
705
713
|
aliases?: string[] | null | undefined;
|
|
714
|
+
conference?: string | null | undefined;
|
|
706
715
|
pickCount?: number | undefined;
|
|
707
716
|
} | undefined;
|
|
708
717
|
}, {
|
|
@@ -713,9 +722,9 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
713
722
|
image: string;
|
|
714
723
|
teamCode: string;
|
|
715
724
|
city?: string | null | undefined;
|
|
725
|
+
conference?: string | undefined;
|
|
716
726
|
division?: string | undefined;
|
|
717
727
|
specialEvent?: boolean | undefined;
|
|
718
|
-
conference?: string | undefined;
|
|
719
728
|
country?: string | null | undefined;
|
|
720
729
|
} | undefined;
|
|
721
730
|
teamData?: {
|
|
@@ -734,6 +743,7 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
734
743
|
venueName?: string | null | undefined;
|
|
735
744
|
primaryColor?: string | null | undefined;
|
|
736
745
|
aliases?: string[] | null | undefined;
|
|
746
|
+
conference?: string | null | undefined;
|
|
737
747
|
pickCount?: number | undefined;
|
|
738
748
|
} | undefined;
|
|
739
749
|
}>;
|
|
@@ -754,18 +764,18 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
754
764
|
image: string;
|
|
755
765
|
teamCode: string;
|
|
756
766
|
city?: string | null | undefined;
|
|
767
|
+
conference?: string | undefined;
|
|
757
768
|
division?: string | undefined;
|
|
758
769
|
specialEvent?: boolean | undefined;
|
|
759
|
-
conference?: string | undefined;
|
|
760
770
|
country?: string | null | undefined;
|
|
761
771
|
}, {
|
|
762
772
|
name: string;
|
|
763
773
|
image: string;
|
|
764
774
|
teamCode: string;
|
|
765
775
|
city?: string | null | undefined;
|
|
776
|
+
conference?: string | undefined;
|
|
766
777
|
division?: string | undefined;
|
|
767
778
|
specialEvent?: boolean | undefined;
|
|
768
|
-
conference?: string | undefined;
|
|
769
779
|
country?: string | null | undefined;
|
|
770
780
|
}>>;
|
|
771
781
|
teamData: z.ZodOptional<z.ZodObject<{
|
|
@@ -784,6 +794,7 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
784
794
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
785
795
|
primaryColor: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
786
796
|
aliases: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
797
|
+
conference: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
787
798
|
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
788
799
|
}, "strip", z.ZodTypeAny, {
|
|
789
800
|
name: string | null;
|
|
@@ -801,6 +812,7 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
801
812
|
venueName?: string | null | undefined;
|
|
802
813
|
primaryColor?: string | null | undefined;
|
|
803
814
|
aliases?: string[] | null | undefined;
|
|
815
|
+
conference?: string | null | undefined;
|
|
804
816
|
pickCount?: number | undefined;
|
|
805
817
|
}, {
|
|
806
818
|
name: string | null;
|
|
@@ -818,6 +830,7 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
818
830
|
venueName?: string | null | undefined;
|
|
819
831
|
primaryColor?: string | null | undefined;
|
|
820
832
|
aliases?: string[] | null | undefined;
|
|
833
|
+
conference?: string | null | undefined;
|
|
821
834
|
pickCount?: number | undefined;
|
|
822
835
|
}>>;
|
|
823
836
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -828,9 +841,9 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
828
841
|
image: string;
|
|
829
842
|
teamCode: string;
|
|
830
843
|
city?: string | null | undefined;
|
|
844
|
+
conference?: string | undefined;
|
|
831
845
|
division?: string | undefined;
|
|
832
846
|
specialEvent?: boolean | undefined;
|
|
833
|
-
conference?: string | undefined;
|
|
834
847
|
country?: string | null | undefined;
|
|
835
848
|
} | undefined;
|
|
836
849
|
teamData?: {
|
|
@@ -849,6 +862,7 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
849
862
|
venueName?: string | null | undefined;
|
|
850
863
|
primaryColor?: string | null | undefined;
|
|
851
864
|
aliases?: string[] | null | undefined;
|
|
865
|
+
conference?: string | null | undefined;
|
|
852
866
|
pickCount?: number | undefined;
|
|
853
867
|
} | undefined;
|
|
854
868
|
}, {
|
|
@@ -859,9 +873,9 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
859
873
|
image: string;
|
|
860
874
|
teamCode: string;
|
|
861
875
|
city?: string | null | undefined;
|
|
876
|
+
conference?: string | undefined;
|
|
862
877
|
division?: string | undefined;
|
|
863
878
|
specialEvent?: boolean | undefined;
|
|
864
|
-
conference?: string | undefined;
|
|
865
879
|
country?: string | null | undefined;
|
|
866
880
|
} | undefined;
|
|
867
881
|
teamData?: {
|
|
@@ -880,6 +894,7 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
880
894
|
venueName?: string | null | undefined;
|
|
881
895
|
primaryColor?: string | null | undefined;
|
|
882
896
|
aliases?: string[] | null | undefined;
|
|
897
|
+
conference?: string | null | undefined;
|
|
883
898
|
pickCount?: number | undefined;
|
|
884
899
|
} | undefined;
|
|
885
900
|
}>;
|
|
@@ -1179,9 +1194,9 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
1179
1194
|
image: string;
|
|
1180
1195
|
teamCode: string;
|
|
1181
1196
|
city?: string | null | undefined;
|
|
1197
|
+
conference?: string | undefined;
|
|
1182
1198
|
division?: string | undefined;
|
|
1183
1199
|
specialEvent?: boolean | undefined;
|
|
1184
|
-
conference?: string | undefined;
|
|
1185
1200
|
country?: string | null | undefined;
|
|
1186
1201
|
} | undefined;
|
|
1187
1202
|
teamData?: {
|
|
@@ -1200,6 +1215,7 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
1200
1215
|
venueName?: string | null | undefined;
|
|
1201
1216
|
primaryColor?: string | null | undefined;
|
|
1202
1217
|
aliases?: string[] | null | undefined;
|
|
1218
|
+
conference?: string | null | undefined;
|
|
1203
1219
|
pickCount?: number | undefined;
|
|
1204
1220
|
} | undefined;
|
|
1205
1221
|
};
|
|
@@ -1211,9 +1227,9 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
1211
1227
|
image: string;
|
|
1212
1228
|
teamCode: string;
|
|
1213
1229
|
city?: string | null | undefined;
|
|
1230
|
+
conference?: string | undefined;
|
|
1214
1231
|
division?: string | undefined;
|
|
1215
1232
|
specialEvent?: boolean | undefined;
|
|
1216
|
-
conference?: string | undefined;
|
|
1217
1233
|
country?: string | null | undefined;
|
|
1218
1234
|
} | undefined;
|
|
1219
1235
|
teamData?: {
|
|
@@ -1232,6 +1248,7 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
1232
1248
|
venueName?: string | null | undefined;
|
|
1233
1249
|
primaryColor?: string | null | undefined;
|
|
1234
1250
|
aliases?: string[] | null | undefined;
|
|
1251
|
+
conference?: string | null | undefined;
|
|
1235
1252
|
pickCount?: number | undefined;
|
|
1236
1253
|
} | undefined;
|
|
1237
1254
|
};
|
|
@@ -1327,9 +1344,9 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
1327
1344
|
image: string;
|
|
1328
1345
|
teamCode: string;
|
|
1329
1346
|
city?: string | null | undefined;
|
|
1347
|
+
conference?: string | undefined;
|
|
1330
1348
|
division?: string | undefined;
|
|
1331
1349
|
specialEvent?: boolean | undefined;
|
|
1332
|
-
conference?: string | undefined;
|
|
1333
1350
|
country?: string | null | undefined;
|
|
1334
1351
|
} | undefined;
|
|
1335
1352
|
teamData?: {
|
|
@@ -1348,6 +1365,7 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
1348
1365
|
venueName?: string | null | undefined;
|
|
1349
1366
|
primaryColor?: string | null | undefined;
|
|
1350
1367
|
aliases?: string[] | null | undefined;
|
|
1368
|
+
conference?: string | null | undefined;
|
|
1351
1369
|
pickCount?: number | undefined;
|
|
1352
1370
|
} | undefined;
|
|
1353
1371
|
};
|
|
@@ -1359,9 +1377,9 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
1359
1377
|
image: string;
|
|
1360
1378
|
teamCode: string;
|
|
1361
1379
|
city?: string | null | undefined;
|
|
1380
|
+
conference?: string | undefined;
|
|
1362
1381
|
division?: string | undefined;
|
|
1363
1382
|
specialEvent?: boolean | undefined;
|
|
1364
|
-
conference?: string | undefined;
|
|
1365
1383
|
country?: string | null | undefined;
|
|
1366
1384
|
} | undefined;
|
|
1367
1385
|
teamData?: {
|
|
@@ -1380,6 +1398,7 @@ export declare const createCommunityGameSchema: z.ZodObject<{
|
|
|
1380
1398
|
venueName?: string | null | undefined;
|
|
1381
1399
|
primaryColor?: string | null | undefined;
|
|
1382
1400
|
aliases?: string[] | null | undefined;
|
|
1401
|
+
conference?: string | null | undefined;
|
|
1383
1402
|
pickCount?: number | undefined;
|
|
1384
1403
|
} | undefined;
|
|
1385
1404
|
};
|
|
@@ -1486,6 +1505,7 @@ export declare const communityGameResponseSchema: z.ZodObject<{
|
|
|
1486
1505
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1487
1506
|
primaryColor: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1488
1507
|
aliases: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1508
|
+
conference: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1489
1509
|
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
1490
1510
|
}, "strip", z.ZodTypeAny, {
|
|
1491
1511
|
name: string | null;
|
|
@@ -1503,6 +1523,7 @@ export declare const communityGameResponseSchema: z.ZodObject<{
|
|
|
1503
1523
|
venueName?: string | null | undefined;
|
|
1504
1524
|
primaryColor?: string | null | undefined;
|
|
1505
1525
|
aliases?: string[] | null | undefined;
|
|
1526
|
+
conference?: string | null | undefined;
|
|
1506
1527
|
pickCount?: number | undefined;
|
|
1507
1528
|
}, {
|
|
1508
1529
|
name: string | null;
|
|
@@ -1520,6 +1541,7 @@ export declare const communityGameResponseSchema: z.ZodObject<{
|
|
|
1520
1541
|
venueName?: string | null | undefined;
|
|
1521
1542
|
primaryColor?: string | null | undefined;
|
|
1522
1543
|
aliases?: string[] | null | undefined;
|
|
1544
|
+
conference?: string | null | undefined;
|
|
1523
1545
|
pickCount?: number | undefined;
|
|
1524
1546
|
}>;
|
|
1525
1547
|
awayTeam: z.ZodObject<{
|
|
@@ -1538,6 +1560,7 @@ export declare const communityGameResponseSchema: z.ZodObject<{
|
|
|
1538
1560
|
venueName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1539
1561
|
primaryColor: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1540
1562
|
aliases: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1563
|
+
conference: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1541
1564
|
pickCount: z.ZodOptional<z.ZodNumber>;
|
|
1542
1565
|
}, "strip", z.ZodTypeAny, {
|
|
1543
1566
|
name: string | null;
|
|
@@ -1555,6 +1578,7 @@ export declare const communityGameResponseSchema: z.ZodObject<{
|
|
|
1555
1578
|
venueName?: string | null | undefined;
|
|
1556
1579
|
primaryColor?: string | null | undefined;
|
|
1557
1580
|
aliases?: string[] | null | undefined;
|
|
1581
|
+
conference?: string | null | undefined;
|
|
1558
1582
|
pickCount?: number | undefined;
|
|
1559
1583
|
}, {
|
|
1560
1584
|
name: string | null;
|
|
@@ -1572,6 +1596,7 @@ export declare const communityGameResponseSchema: z.ZodObject<{
|
|
|
1572
1596
|
venueName?: string | null | undefined;
|
|
1573
1597
|
primaryColor?: string | null | undefined;
|
|
1574
1598
|
aliases?: string[] | null | undefined;
|
|
1599
|
+
conference?: string | null | undefined;
|
|
1575
1600
|
pickCount?: number | undefined;
|
|
1576
1601
|
}>;
|
|
1577
1602
|
startedAt: z.ZodNumber;
|
|
@@ -1600,6 +1625,7 @@ export declare const communityGameResponseSchema: z.ZodObject<{
|
|
|
1600
1625
|
venueName?: string | null | undefined;
|
|
1601
1626
|
primaryColor?: string | null | undefined;
|
|
1602
1627
|
aliases?: string[] | null | undefined;
|
|
1628
|
+
conference?: string | null | undefined;
|
|
1603
1629
|
pickCount?: number | undefined;
|
|
1604
1630
|
};
|
|
1605
1631
|
awayTeam: {
|
|
@@ -1618,6 +1644,7 @@ export declare const communityGameResponseSchema: z.ZodObject<{
|
|
|
1618
1644
|
venueName?: string | null | undefined;
|
|
1619
1645
|
primaryColor?: string | null | undefined;
|
|
1620
1646
|
aliases?: string[] | null | undefined;
|
|
1647
|
+
conference?: string | null | undefined;
|
|
1621
1648
|
pickCount?: number | undefined;
|
|
1622
1649
|
};
|
|
1623
1650
|
communityGame: true;
|
|
@@ -1644,6 +1671,7 @@ export declare const communityGameResponseSchema: z.ZodObject<{
|
|
|
1644
1671
|
venueName?: string | null | undefined;
|
|
1645
1672
|
primaryColor?: string | null | undefined;
|
|
1646
1673
|
aliases?: string[] | null | undefined;
|
|
1674
|
+
conference?: string | null | undefined;
|
|
1647
1675
|
pickCount?: number | undefined;
|
|
1648
1676
|
};
|
|
1649
1677
|
awayTeam: {
|
|
@@ -1662,6 +1690,7 @@ export declare const communityGameResponseSchema: z.ZodObject<{
|
|
|
1662
1690
|
venueName?: string | null | undefined;
|
|
1663
1691
|
primaryColor?: string | null | undefined;
|
|
1664
1692
|
aliases?: string[] | null | undefined;
|
|
1693
|
+
conference?: string | null | undefined;
|
|
1665
1694
|
pickCount?: number | undefined;
|
|
1666
1695
|
};
|
|
1667
1696
|
communityGame: true;
|