rategame-shared 1.1.213 → 1.1.215

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.
@@ -784,7 +784,7 @@ export declare const gameSchema: z.ZodObject<{
784
784
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
785
785
  round: z.ZodNumber;
786
786
  apiGameId: z.ZodNumber;
787
- league: 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<"global">]>;
787
+ league: 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<"global">]>;
788
788
  homeTeam: z.ZodObject<{
789
789
  id: z.ZodOptional<z.ZodString>;
790
790
  apiTeamId: z.ZodNumber;
@@ -1863,7 +1863,7 @@ export declare const gameSchema: z.ZodObject<{
1863
1863
  }, "strip", z.ZodTypeAny, {
1864
1864
  round: number;
1865
1865
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
1866
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
1866
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
1867
1867
  startedAt: number;
1868
1868
  finishedAt: number;
1869
1869
  apiGameId: number;
@@ -2034,7 +2034,7 @@ export declare const gameSchema: z.ZodObject<{
2034
2034
  }, {
2035
2035
  round: number;
2036
2036
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
2037
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
2037
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
2038
2038
  startedAt: number;
2039
2039
  finishedAt: number;
2040
2040
  apiGameId: number;
@@ -2211,7 +2211,7 @@ export declare const commonGameSchema: z.ZodObject<{
2211
2211
  finishedAt: z.ZodNumber;
2212
2212
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
2213
2213
  apiGameId: z.ZodNumber;
2214
- league: 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<"global">]>;
2214
+ league: 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<"global">]>;
2215
2215
  homeTeam: z.ZodObject<{
2216
2216
  id: z.ZodOptional<z.ZodString>;
2217
2217
  apiTeamId: z.ZodNumber;
@@ -3496,6 +3496,42 @@ export declare const commonGameSchema: z.ZodObject<{
3496
3496
  weightedRating: number;
3497
3497
  };
3498
3498
  }>;
3499
+ cwc: z.ZodObject<{
3500
+ totalRatedGames: z.ZodNumber;
3501
+ commentsLeft: z.ZodNumber;
3502
+ avgRating: z.ZodNumber;
3503
+ avgRatings: z.ZodObject<{
3504
+ initialWindowRating: z.ZodNumber;
3505
+ normalRating: z.ZodNumber;
3506
+ weightedRating: z.ZodNumber;
3507
+ }, "strip", z.ZodTypeAny, {
3508
+ initialWindowRating: number;
3509
+ normalRating: number;
3510
+ weightedRating: number;
3511
+ }, {
3512
+ initialWindowRating: number;
3513
+ normalRating: number;
3514
+ weightedRating: number;
3515
+ }>;
3516
+ }, "strip", z.ZodTypeAny, {
3517
+ totalRatedGames: number;
3518
+ commentsLeft: number;
3519
+ avgRating: number;
3520
+ avgRatings: {
3521
+ initialWindowRating: number;
3522
+ normalRating: number;
3523
+ weightedRating: number;
3524
+ };
3525
+ }, {
3526
+ totalRatedGames: number;
3527
+ commentsLeft: number;
3528
+ avgRating: number;
3529
+ avgRatings: {
3530
+ initialWindowRating: number;
3531
+ normalRating: number;
3532
+ weightedRating: number;
3533
+ };
3534
+ }>;
3499
3535
  cfb: z.ZodObject<{
3500
3536
  totalRatedGames: z.ZodNumber;
3501
3537
  commentsLeft: z.ZodNumber;
@@ -3741,6 +3777,16 @@ export declare const commonGameSchema: z.ZodObject<{
3741
3777
  weightedRating: number;
3742
3778
  };
3743
3779
  };
3780
+ cwc: {
3781
+ totalRatedGames: number;
3782
+ commentsLeft: number;
3783
+ avgRating: number;
3784
+ avgRatings: {
3785
+ initialWindowRating: number;
3786
+ normalRating: number;
3787
+ weightedRating: number;
3788
+ };
3789
+ };
3744
3790
  }, {
3745
3791
  nba: {
3746
3792
  totalRatedGames: number;
@@ -3842,6 +3888,16 @@ export declare const commonGameSchema: z.ZodObject<{
3842
3888
  weightedRating: number;
3843
3889
  };
3844
3890
  };
3891
+ cwc: {
3892
+ totalRatedGames: number;
3893
+ commentsLeft: number;
3894
+ avgRating: number;
3895
+ avgRatings: {
3896
+ initialWindowRating: number;
3897
+ normalRating: number;
3898
+ weightedRating: number;
3899
+ };
3900
+ };
3845
3901
  }>>;
3846
3902
  totalRatedGames: z.ZodOptional<z.ZodNumber>;
3847
3903
  commentsLeft: z.ZodOptional<z.ZodNumber>;
@@ -3900,10 +3956,10 @@ export declare const commonGameSchema: z.ZodObject<{
3900
3956
  }>>;
3901
3957
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
3902
3958
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
3903
- lastSelectedLeague: z.ZodOptional<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<"global">]>>;
3959
+ lastSelectedLeague: z.ZodOptional<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<"global">]>>;
3904
3960
  lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
3905
3961
  lastSelectedRatingFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating:asc">, z.ZodLiteral<"rating:desc">, z.ZodLiteral<"createdAt:asc">, z.ZodLiteral<"createdAt:desc">, z.ZodLiteral<"userLikes:asc">, z.ZodLiteral<"userLikes:desc">]>>;
3906
- creatorLeague: z.ZodOptional<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<"global">]>>;
3962
+ creatorLeague: z.ZodOptional<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<"global">]>>;
3907
3963
  role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">]>>;
3908
3964
  preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
3909
3965
  wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
@@ -4026,7 +4082,7 @@ export declare const commonGameSchema: z.ZodObject<{
4026
4082
  }>>;
4027
4083
  currentTier: z.ZodOptional<z.ZodNumber>;
4028
4084
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
4029
- league: z.ZodOptional<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<"global">]>>;
4085
+ league: z.ZodOptional<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<"global">]>>;
4030
4086
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
4031
4087
  }, "strip", z.ZodTypeAny, {
4032
4088
  id: string;
@@ -4050,7 +4106,7 @@ export declare const commonGameSchema: z.ZodObject<{
4050
4106
  } | undefined;
4051
4107
  currentTier?: number | undefined;
4052
4108
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
4053
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
4109
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
4054
4110
  }, {
4055
4111
  id: string;
4056
4112
  name: string;
@@ -4073,7 +4129,7 @@ export declare const commonGameSchema: z.ZodObject<{
4073
4129
  } | undefined;
4074
4130
  currentTier?: number | undefined;
4075
4131
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
4076
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
4132
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
4077
4133
  }>>>;
4078
4134
  repliesLeft: z.ZodOptional<z.ZodNumber>;
4079
4135
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -4119,7 +4175,7 @@ export declare const commonGameSchema: z.ZodObject<{
4119
4175
  listCount: z.ZodOptional<z.ZodNumber>;
4120
4176
  }, "strip", z.ZodTypeAny, {
4121
4177
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
4122
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
4178
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
4123
4179
  startedAt: number;
4124
4180
  finishedAt: number;
4125
4181
  apiGameId: number;
@@ -4297,7 +4353,7 @@ export declare const commonGameSchema: z.ZodObject<{
4297
4353
  listCount?: number | undefined;
4298
4354
  }, {
4299
4355
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
4300
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
4356
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
4301
4357
  startedAt: number;
4302
4358
  finishedAt: number;
4303
4359
  apiGameId: number;
@@ -4482,7 +4538,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
4482
4538
  finishedAt: z.ZodNumber;
4483
4539
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
4484
4540
  apiGameId: z.ZodNumber;
4485
- league: 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<"global">]>;
4541
+ league: 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<"global">]>;
4486
4542
  homeTeam: z.ZodObject<{
4487
4543
  id: z.ZodOptional<z.ZodString>;
4488
4544
  apiTeamId: z.ZodNumber;
@@ -5767,6 +5823,42 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
5767
5823
  weightedRating: number;
5768
5824
  };
5769
5825
  }>;
5826
+ cwc: z.ZodObject<{
5827
+ totalRatedGames: z.ZodNumber;
5828
+ commentsLeft: z.ZodNumber;
5829
+ avgRating: z.ZodNumber;
5830
+ avgRatings: z.ZodObject<{
5831
+ initialWindowRating: z.ZodNumber;
5832
+ normalRating: z.ZodNumber;
5833
+ weightedRating: z.ZodNumber;
5834
+ }, "strip", z.ZodTypeAny, {
5835
+ initialWindowRating: number;
5836
+ normalRating: number;
5837
+ weightedRating: number;
5838
+ }, {
5839
+ initialWindowRating: number;
5840
+ normalRating: number;
5841
+ weightedRating: number;
5842
+ }>;
5843
+ }, "strip", z.ZodTypeAny, {
5844
+ totalRatedGames: number;
5845
+ commentsLeft: number;
5846
+ avgRating: number;
5847
+ avgRatings: {
5848
+ initialWindowRating: number;
5849
+ normalRating: number;
5850
+ weightedRating: number;
5851
+ };
5852
+ }, {
5853
+ totalRatedGames: number;
5854
+ commentsLeft: number;
5855
+ avgRating: number;
5856
+ avgRatings: {
5857
+ initialWindowRating: number;
5858
+ normalRating: number;
5859
+ weightedRating: number;
5860
+ };
5861
+ }>;
5770
5862
  cfb: z.ZodObject<{
5771
5863
  totalRatedGames: z.ZodNumber;
5772
5864
  commentsLeft: z.ZodNumber;
@@ -6012,6 +6104,16 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
6012
6104
  weightedRating: number;
6013
6105
  };
6014
6106
  };
6107
+ cwc: {
6108
+ totalRatedGames: number;
6109
+ commentsLeft: number;
6110
+ avgRating: number;
6111
+ avgRatings: {
6112
+ initialWindowRating: number;
6113
+ normalRating: number;
6114
+ weightedRating: number;
6115
+ };
6116
+ };
6015
6117
  }, {
6016
6118
  nba: {
6017
6119
  totalRatedGames: number;
@@ -6113,6 +6215,16 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
6113
6215
  weightedRating: number;
6114
6216
  };
6115
6217
  };
6218
+ cwc: {
6219
+ totalRatedGames: number;
6220
+ commentsLeft: number;
6221
+ avgRating: number;
6222
+ avgRatings: {
6223
+ initialWindowRating: number;
6224
+ normalRating: number;
6225
+ weightedRating: number;
6226
+ };
6227
+ };
6116
6228
  }>>;
6117
6229
  totalRatedGames: z.ZodOptional<z.ZodNumber>;
6118
6230
  commentsLeft: z.ZodOptional<z.ZodNumber>;
@@ -6171,10 +6283,10 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
6171
6283
  }>>;
6172
6284
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
6173
6285
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
6174
- lastSelectedLeague: z.ZodOptional<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<"global">]>>;
6286
+ lastSelectedLeague: z.ZodOptional<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<"global">]>>;
6175
6287
  lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
6176
6288
  lastSelectedRatingFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating:asc">, z.ZodLiteral<"rating:desc">, z.ZodLiteral<"createdAt:asc">, z.ZodLiteral<"createdAt:desc">, z.ZodLiteral<"userLikes:asc">, z.ZodLiteral<"userLikes:desc">]>>;
6177
- creatorLeague: z.ZodOptional<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<"global">]>>;
6289
+ creatorLeague: z.ZodOptional<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<"global">]>>;
6178
6290
  role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">]>>;
6179
6291
  preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
6180
6292
  wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
@@ -6297,7 +6409,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
6297
6409
  }>>;
6298
6410
  currentTier: z.ZodOptional<z.ZodNumber>;
6299
6411
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
6300
- league: z.ZodOptional<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<"global">]>>;
6412
+ league: z.ZodOptional<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<"global">]>>;
6301
6413
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
6302
6414
  }, "strip", z.ZodTypeAny, {
6303
6415
  id: string;
@@ -6321,7 +6433,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
6321
6433
  } | undefined;
6322
6434
  currentTier?: number | undefined;
6323
6435
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
6324
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
6436
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
6325
6437
  }, {
6326
6438
  id: string;
6327
6439
  name: string;
@@ -6344,7 +6456,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
6344
6456
  } | undefined;
6345
6457
  currentTier?: number | undefined;
6346
6458
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
6347
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
6459
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
6348
6460
  }>>>;
6349
6461
  repliesLeft: z.ZodOptional<z.ZodNumber>;
6350
6462
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -6413,7 +6525,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
6413
6525
  }>, "strip", z.ZodTypeAny, {
6414
6526
  round: number;
6415
6527
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
6416
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
6528
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
6417
6529
  startedAt: number;
6418
6530
  finishedAt: number;
6419
6531
  apiGameId: number;
@@ -6604,7 +6716,7 @@ export declare const basketballGameSchema: z.ZodObject<z.objectUtil.extendShape<
6604
6716
  }, {
6605
6717
  round: number;
6606
6718
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
6607
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
6719
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
6608
6720
  startedAt: number;
6609
6721
  finishedAt: number;
6610
6722
  apiGameId: number;
@@ -6814,7 +6926,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
6814
6926
  finishedAt: z.ZodNumber;
6815
6927
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
6816
6928
  apiGameId: z.ZodNumber;
6817
- league: 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<"global">]>;
6929
+ league: 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<"global">]>;
6818
6930
  homeTeam: z.ZodObject<{
6819
6931
  id: z.ZodOptional<z.ZodString>;
6820
6932
  apiTeamId: z.ZodNumber;
@@ -8099,6 +8211,42 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
8099
8211
  weightedRating: number;
8100
8212
  };
8101
8213
  }>;
8214
+ cwc: z.ZodObject<{
8215
+ totalRatedGames: z.ZodNumber;
8216
+ commentsLeft: z.ZodNumber;
8217
+ avgRating: z.ZodNumber;
8218
+ avgRatings: z.ZodObject<{
8219
+ initialWindowRating: z.ZodNumber;
8220
+ normalRating: z.ZodNumber;
8221
+ weightedRating: z.ZodNumber;
8222
+ }, "strip", z.ZodTypeAny, {
8223
+ initialWindowRating: number;
8224
+ normalRating: number;
8225
+ weightedRating: number;
8226
+ }, {
8227
+ initialWindowRating: number;
8228
+ normalRating: number;
8229
+ weightedRating: number;
8230
+ }>;
8231
+ }, "strip", z.ZodTypeAny, {
8232
+ totalRatedGames: number;
8233
+ commentsLeft: number;
8234
+ avgRating: number;
8235
+ avgRatings: {
8236
+ initialWindowRating: number;
8237
+ normalRating: number;
8238
+ weightedRating: number;
8239
+ };
8240
+ }, {
8241
+ totalRatedGames: number;
8242
+ commentsLeft: number;
8243
+ avgRating: number;
8244
+ avgRatings: {
8245
+ initialWindowRating: number;
8246
+ normalRating: number;
8247
+ weightedRating: number;
8248
+ };
8249
+ }>;
8102
8250
  cfb: z.ZodObject<{
8103
8251
  totalRatedGames: z.ZodNumber;
8104
8252
  commentsLeft: z.ZodNumber;
@@ -8344,6 +8492,16 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
8344
8492
  weightedRating: number;
8345
8493
  };
8346
8494
  };
8495
+ cwc: {
8496
+ totalRatedGames: number;
8497
+ commentsLeft: number;
8498
+ avgRating: number;
8499
+ avgRatings: {
8500
+ initialWindowRating: number;
8501
+ normalRating: number;
8502
+ weightedRating: number;
8503
+ };
8504
+ };
8347
8505
  }, {
8348
8506
  nba: {
8349
8507
  totalRatedGames: number;
@@ -8445,6 +8603,16 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
8445
8603
  weightedRating: number;
8446
8604
  };
8447
8605
  };
8606
+ cwc: {
8607
+ totalRatedGames: number;
8608
+ commentsLeft: number;
8609
+ avgRating: number;
8610
+ avgRatings: {
8611
+ initialWindowRating: number;
8612
+ normalRating: number;
8613
+ weightedRating: number;
8614
+ };
8615
+ };
8448
8616
  }>>;
8449
8617
  totalRatedGames: z.ZodOptional<z.ZodNumber>;
8450
8618
  commentsLeft: z.ZodOptional<z.ZodNumber>;
@@ -8503,10 +8671,10 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
8503
8671
  }>>;
8504
8672
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
8505
8673
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
8506
- lastSelectedLeague: z.ZodOptional<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<"global">]>>;
8674
+ lastSelectedLeague: z.ZodOptional<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<"global">]>>;
8507
8675
  lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
8508
8676
  lastSelectedRatingFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating:asc">, z.ZodLiteral<"rating:desc">, z.ZodLiteral<"createdAt:asc">, z.ZodLiteral<"createdAt:desc">, z.ZodLiteral<"userLikes:asc">, z.ZodLiteral<"userLikes:desc">]>>;
8509
- creatorLeague: z.ZodOptional<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<"global">]>>;
8677
+ creatorLeague: z.ZodOptional<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<"global">]>>;
8510
8678
  role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">]>>;
8511
8679
  preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
8512
8680
  wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
@@ -8629,7 +8797,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
8629
8797
  }>>;
8630
8798
  currentTier: z.ZodOptional<z.ZodNumber>;
8631
8799
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
8632
- league: z.ZodOptional<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<"global">]>>;
8800
+ league: z.ZodOptional<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<"global">]>>;
8633
8801
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
8634
8802
  }, "strip", z.ZodTypeAny, {
8635
8803
  id: string;
@@ -8653,7 +8821,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
8653
8821
  } | undefined;
8654
8822
  currentTier?: number | undefined;
8655
8823
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
8656
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
8824
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
8657
8825
  }, {
8658
8826
  id: string;
8659
8827
  name: string;
@@ -8676,7 +8844,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
8676
8844
  } | undefined;
8677
8845
  currentTier?: number | undefined;
8678
8846
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
8679
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
8847
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
8680
8848
  }>>>;
8681
8849
  repliesLeft: z.ZodOptional<z.ZodNumber>;
8682
8850
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -8751,7 +8919,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
8751
8919
  runnerOnThird: z.ZodOptional<z.ZodBoolean>;
8752
8920
  }>, "strip", z.ZodTypeAny, {
8753
8921
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
8754
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
8922
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
8755
8923
  startedAt: number;
8756
8924
  finishedAt: number;
8757
8925
  apiGameId: number;
@@ -8949,7 +9117,7 @@ export declare const mlbGameSchema: z.ZodObject<z.objectUtil.extendShape<{
8949
9117
  runnerOnThird?: boolean | undefined;
8950
9118
  }, {
8951
9119
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
8952
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
9120
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
8953
9121
  startedAt: number;
8954
9122
  finishedAt: number;
8955
9123
  apiGameId: number;
@@ -9154,7 +9322,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
9154
9322
  finishedAt: z.ZodNumber;
9155
9323
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
9156
9324
  apiGameId: z.ZodNumber;
9157
- league: 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<"global">]>;
9325
+ league: 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<"global">]>;
9158
9326
  homeTeam: z.ZodObject<{
9159
9327
  id: z.ZodOptional<z.ZodString>;
9160
9328
  apiTeamId: z.ZodNumber;
@@ -10439,7 +10607,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
10439
10607
  weightedRating: number;
10440
10608
  };
10441
10609
  }>;
10442
- cfb: z.ZodObject<{
10610
+ cwc: z.ZodObject<{
10443
10611
  totalRatedGames: z.ZodNumber;
10444
10612
  commentsLeft: z.ZodNumber;
10445
10613
  avgRating: z.ZodNumber;
@@ -10475,7 +10643,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
10475
10643
  weightedRating: number;
10476
10644
  };
10477
10645
  }>;
10478
- cbb: z.ZodObject<{
10646
+ cfb: z.ZodObject<{
10479
10647
  totalRatedGames: z.ZodNumber;
10480
10648
  commentsLeft: z.ZodNumber;
10481
10649
  avgRating: z.ZodNumber;
@@ -10511,7 +10679,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
10511
10679
  weightedRating: number;
10512
10680
  };
10513
10681
  }>;
10514
- epl: z.ZodObject<{
10682
+ cbb: z.ZodObject<{
10515
10683
  totalRatedGames: z.ZodNumber;
10516
10684
  commentsLeft: z.ZodNumber;
10517
10685
  avgRating: z.ZodNumber;
@@ -10547,7 +10715,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
10547
10715
  weightedRating: number;
10548
10716
  };
10549
10717
  }>;
10550
- wnba: z.ZodObject<{
10718
+ epl: z.ZodObject<{
10551
10719
  totalRatedGames: z.ZodNumber;
10552
10720
  commentsLeft: z.ZodNumber;
10553
10721
  avgRating: z.ZodNumber;
@@ -10583,88 +10751,24 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
10583
10751
  weightedRating: number;
10584
10752
  };
10585
10753
  }>;
10586
- }, "strip", z.ZodTypeAny, {
10587
- nba: {
10588
- totalRatedGames: number;
10589
- commentsLeft: number;
10590
- avgRating: number;
10591
- avgRatings: {
10592
- initialWindowRating: number;
10593
- normalRating: number;
10594
- weightedRating: number;
10595
- };
10596
- };
10597
- ncaa: {
10598
- totalRatedGames: number;
10599
- commentsLeft: number;
10600
- avgRating: number;
10601
- avgRatings: {
10602
- initialWindowRating: number;
10603
- normalRating: number;
10604
- weightedRating: number;
10605
- };
10606
- };
10607
- nfl: {
10608
- totalRatedGames: number;
10609
- commentsLeft: number;
10610
- avgRating: number;
10611
- avgRatings: {
10612
- initialWindowRating: number;
10613
- normalRating: number;
10614
- weightedRating: number;
10615
- };
10616
- };
10617
- nhl: {
10618
- totalRatedGames: number;
10619
- commentsLeft: number;
10620
- avgRating: number;
10621
- avgRatings: {
10622
- initialWindowRating: number;
10623
- normalRating: number;
10624
- weightedRating: number;
10625
- };
10626
- };
10627
- mlb: {
10628
- totalRatedGames: number;
10629
- commentsLeft: number;
10630
- avgRating: number;
10631
- avgRatings: {
10632
- initialWindowRating: number;
10633
- normalRating: number;
10634
- weightedRating: number;
10635
- };
10636
- };
10637
- cbb: {
10638
- totalRatedGames: number;
10639
- commentsLeft: number;
10640
- avgRating: number;
10641
- avgRatings: {
10642
- initialWindowRating: number;
10643
- normalRating: number;
10644
- weightedRating: number;
10645
- };
10646
- };
10647
- cfb: {
10648
- totalRatedGames: number;
10649
- commentsLeft: number;
10650
- avgRating: number;
10651
- avgRatings: {
10754
+ wnba: z.ZodObject<{
10755
+ totalRatedGames: z.ZodNumber;
10756
+ commentsLeft: z.ZodNumber;
10757
+ avgRating: z.ZodNumber;
10758
+ avgRatings: z.ZodObject<{
10759
+ initialWindowRating: z.ZodNumber;
10760
+ normalRating: z.ZodNumber;
10761
+ weightedRating: z.ZodNumber;
10762
+ }, "strip", z.ZodTypeAny, {
10652
10763
  initialWindowRating: number;
10653
10764
  normalRating: number;
10654
10765
  weightedRating: number;
10655
- };
10656
- };
10657
- epl: {
10658
- totalRatedGames: number;
10659
- commentsLeft: number;
10660
- avgRating: number;
10661
- avgRatings: {
10766
+ }, {
10662
10767
  initialWindowRating: number;
10663
10768
  normalRating: number;
10664
10769
  weightedRating: number;
10665
- };
10666
- };
10667
- mls: {
10770
+ }>;
10771
+ }, "strip", z.ZodTypeAny, {
10668
10772
  totalRatedGames: number;
10669
10773
  commentsLeft: number;
10670
10774
  avgRating: number;
@@ -10673,8 +10777,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
10673
10777
  normalRating: number;
10674
10778
  weightedRating: number;
10675
10779
  };
10676
- };
10677
- wnba: {
10780
+ }, {
10678
10781
  totalRatedGames: number;
10679
10782
  commentsLeft: number;
10680
10783
  avgRating: number;
@@ -10683,8 +10786,8 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
10683
10786
  normalRating: number;
10684
10787
  weightedRating: number;
10685
10788
  };
10686
- };
10687
- }, {
10789
+ }>;
10790
+ }, "strip", z.ZodTypeAny, {
10688
10791
  nba: {
10689
10792
  totalRatedGames: number;
10690
10793
  commentsLeft: number;
@@ -10785,6 +10888,127 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
10785
10888
  weightedRating: number;
10786
10889
  };
10787
10890
  };
10891
+ cwc: {
10892
+ totalRatedGames: number;
10893
+ commentsLeft: number;
10894
+ avgRating: number;
10895
+ avgRatings: {
10896
+ initialWindowRating: number;
10897
+ normalRating: number;
10898
+ weightedRating: number;
10899
+ };
10900
+ };
10901
+ }, {
10902
+ nba: {
10903
+ totalRatedGames: number;
10904
+ commentsLeft: number;
10905
+ avgRating: number;
10906
+ avgRatings: {
10907
+ initialWindowRating: number;
10908
+ normalRating: number;
10909
+ weightedRating: number;
10910
+ };
10911
+ };
10912
+ ncaa: {
10913
+ totalRatedGames: number;
10914
+ commentsLeft: number;
10915
+ avgRating: number;
10916
+ avgRatings: {
10917
+ initialWindowRating: number;
10918
+ normalRating: number;
10919
+ weightedRating: number;
10920
+ };
10921
+ };
10922
+ nfl: {
10923
+ totalRatedGames: number;
10924
+ commentsLeft: number;
10925
+ avgRating: number;
10926
+ avgRatings: {
10927
+ initialWindowRating: number;
10928
+ normalRating: number;
10929
+ weightedRating: number;
10930
+ };
10931
+ };
10932
+ nhl: {
10933
+ totalRatedGames: number;
10934
+ commentsLeft: number;
10935
+ avgRating: number;
10936
+ avgRatings: {
10937
+ initialWindowRating: number;
10938
+ normalRating: number;
10939
+ weightedRating: number;
10940
+ };
10941
+ };
10942
+ mlb: {
10943
+ totalRatedGames: number;
10944
+ commentsLeft: number;
10945
+ avgRating: number;
10946
+ avgRatings: {
10947
+ initialWindowRating: number;
10948
+ normalRating: number;
10949
+ weightedRating: number;
10950
+ };
10951
+ };
10952
+ cbb: {
10953
+ totalRatedGames: number;
10954
+ commentsLeft: number;
10955
+ avgRating: number;
10956
+ avgRatings: {
10957
+ initialWindowRating: number;
10958
+ normalRating: number;
10959
+ weightedRating: number;
10960
+ };
10961
+ };
10962
+ cfb: {
10963
+ totalRatedGames: number;
10964
+ commentsLeft: number;
10965
+ avgRating: number;
10966
+ avgRatings: {
10967
+ initialWindowRating: number;
10968
+ normalRating: number;
10969
+ weightedRating: number;
10970
+ };
10971
+ };
10972
+ epl: {
10973
+ totalRatedGames: number;
10974
+ commentsLeft: number;
10975
+ avgRating: number;
10976
+ avgRatings: {
10977
+ initialWindowRating: number;
10978
+ normalRating: number;
10979
+ weightedRating: number;
10980
+ };
10981
+ };
10982
+ mls: {
10983
+ totalRatedGames: number;
10984
+ commentsLeft: number;
10985
+ avgRating: number;
10986
+ avgRatings: {
10987
+ initialWindowRating: number;
10988
+ normalRating: number;
10989
+ weightedRating: number;
10990
+ };
10991
+ };
10992
+ wnba: {
10993
+ totalRatedGames: number;
10994
+ commentsLeft: number;
10995
+ avgRating: number;
10996
+ avgRatings: {
10997
+ initialWindowRating: number;
10998
+ normalRating: number;
10999
+ weightedRating: number;
11000
+ };
11001
+ };
11002
+ cwc: {
11003
+ totalRatedGames: number;
11004
+ commentsLeft: number;
11005
+ avgRating: number;
11006
+ avgRatings: {
11007
+ initialWindowRating: number;
11008
+ normalRating: number;
11009
+ weightedRating: number;
11010
+ };
11011
+ };
10788
11012
  }>>;
10789
11013
  totalRatedGames: z.ZodOptional<z.ZodNumber>;
10790
11014
  commentsLeft: z.ZodOptional<z.ZodNumber>;
@@ -10843,10 +11067,10 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
10843
11067
  }>>;
10844
11068
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
10845
11069
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
10846
- lastSelectedLeague: z.ZodOptional<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<"global">]>>;
11070
+ lastSelectedLeague: z.ZodOptional<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<"global">]>>;
10847
11071
  lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
10848
11072
  lastSelectedRatingFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating:asc">, z.ZodLiteral<"rating:desc">, z.ZodLiteral<"createdAt:asc">, z.ZodLiteral<"createdAt:desc">, z.ZodLiteral<"userLikes:asc">, z.ZodLiteral<"userLikes:desc">]>>;
10849
- creatorLeague: z.ZodOptional<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<"global">]>>;
11073
+ creatorLeague: z.ZodOptional<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<"global">]>>;
10850
11074
  role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">]>>;
10851
11075
  preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
10852
11076
  wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
@@ -10969,7 +11193,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
10969
11193
  }>>;
10970
11194
  currentTier: z.ZodOptional<z.ZodNumber>;
10971
11195
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
10972
- league: z.ZodOptional<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<"global">]>>;
11196
+ league: z.ZodOptional<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<"global">]>>;
10973
11197
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
10974
11198
  }, "strip", z.ZodTypeAny, {
10975
11199
  id: string;
@@ -10993,7 +11217,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
10993
11217
  } | undefined;
10994
11218
  currentTier?: number | undefined;
10995
11219
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
10996
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
11220
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
10997
11221
  }, {
10998
11222
  id: string;
10999
11223
  name: string;
@@ -11016,7 +11240,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
11016
11240
  } | undefined;
11017
11241
  currentTier?: number | undefined;
11018
11242
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
11019
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
11243
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
11020
11244
  }>>>;
11021
11245
  repliesLeft: z.ZodOptional<z.ZodNumber>;
11022
11246
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -11061,7 +11285,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
11061
11285
  allCities: z.ZodOptional<z.ZodString>;
11062
11286
  listCount: z.ZodOptional<z.ZodNumber>;
11063
11287
  }, {
11064
- league: z.ZodUnion<[z.ZodLiteral<"epl">, z.ZodLiteral<"mls">]>;
11288
+ league: z.ZodUnion<[z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"cwc">]>;
11065
11289
  week: z.ZodNumber;
11066
11290
  period: z.ZodString;
11067
11291
  clock: z.ZodString;
@@ -11184,7 +11408,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
11184
11408
  }>, "strip", z.ZodTypeAny, {
11185
11409
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
11186
11410
  week: number;
11187
- league: "epl" | "mls";
11411
+ league: "epl" | "mls" | "cwc";
11188
11412
  startedAt: number;
11189
11413
  finishedAt: number;
11190
11414
  apiGameId: number;
@@ -11377,7 +11601,7 @@ export declare const footballGameSchema: z.ZodObject<z.objectUtil.extendShape<{
11377
11601
  }, {
11378
11602
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
11379
11603
  week: number;
11380
- league: "epl" | "mls";
11604
+ league: "epl" | "mls" | "cwc";
11381
11605
  startedAt: number;
11382
11606
  finishedAt: number;
11383
11607
  apiGameId: number;
@@ -11576,7 +11800,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
11576
11800
  finishedAt: z.ZodNumber;
11577
11801
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
11578
11802
  apiGameId: z.ZodNumber;
11579
- league: 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<"global">]>;
11803
+ league: 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<"global">]>;
11580
11804
  homeTeam: z.ZodObject<{
11581
11805
  id: z.ZodOptional<z.ZodString>;
11582
11806
  apiTeamId: z.ZodNumber;
@@ -12861,6 +13085,42 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
12861
13085
  weightedRating: number;
12862
13086
  };
12863
13087
  }>;
13088
+ cwc: z.ZodObject<{
13089
+ totalRatedGames: z.ZodNumber;
13090
+ commentsLeft: z.ZodNumber;
13091
+ avgRating: z.ZodNumber;
13092
+ avgRatings: z.ZodObject<{
13093
+ initialWindowRating: z.ZodNumber;
13094
+ normalRating: z.ZodNumber;
13095
+ weightedRating: z.ZodNumber;
13096
+ }, "strip", z.ZodTypeAny, {
13097
+ initialWindowRating: number;
13098
+ normalRating: number;
13099
+ weightedRating: number;
13100
+ }, {
13101
+ initialWindowRating: number;
13102
+ normalRating: number;
13103
+ weightedRating: number;
13104
+ }>;
13105
+ }, "strip", z.ZodTypeAny, {
13106
+ totalRatedGames: number;
13107
+ commentsLeft: number;
13108
+ avgRating: number;
13109
+ avgRatings: {
13110
+ initialWindowRating: number;
13111
+ normalRating: number;
13112
+ weightedRating: number;
13113
+ };
13114
+ }, {
13115
+ totalRatedGames: number;
13116
+ commentsLeft: number;
13117
+ avgRating: number;
13118
+ avgRatings: {
13119
+ initialWindowRating: number;
13120
+ normalRating: number;
13121
+ weightedRating: number;
13122
+ };
13123
+ }>;
12864
13124
  cfb: z.ZodObject<{
12865
13125
  totalRatedGames: z.ZodNumber;
12866
13126
  commentsLeft: z.ZodNumber;
@@ -13106,6 +13366,16 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
13106
13366
  weightedRating: number;
13107
13367
  };
13108
13368
  };
13369
+ cwc: {
13370
+ totalRatedGames: number;
13371
+ commentsLeft: number;
13372
+ avgRating: number;
13373
+ avgRatings: {
13374
+ initialWindowRating: number;
13375
+ normalRating: number;
13376
+ weightedRating: number;
13377
+ };
13378
+ };
13109
13379
  }, {
13110
13380
  nba: {
13111
13381
  totalRatedGames: number;
@@ -13207,6 +13477,16 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
13207
13477
  weightedRating: number;
13208
13478
  };
13209
13479
  };
13480
+ cwc: {
13481
+ totalRatedGames: number;
13482
+ commentsLeft: number;
13483
+ avgRating: number;
13484
+ avgRatings: {
13485
+ initialWindowRating: number;
13486
+ normalRating: number;
13487
+ weightedRating: number;
13488
+ };
13489
+ };
13210
13490
  }>>;
13211
13491
  totalRatedGames: z.ZodOptional<z.ZodNumber>;
13212
13492
  commentsLeft: z.ZodOptional<z.ZodNumber>;
@@ -13265,10 +13545,10 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
13265
13545
  }>>;
13266
13546
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
13267
13547
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
13268
- lastSelectedLeague: z.ZodOptional<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<"global">]>>;
13548
+ lastSelectedLeague: z.ZodOptional<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<"global">]>>;
13269
13549
  lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
13270
13550
  lastSelectedRatingFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating:asc">, z.ZodLiteral<"rating:desc">, z.ZodLiteral<"createdAt:asc">, z.ZodLiteral<"createdAt:desc">, z.ZodLiteral<"userLikes:asc">, z.ZodLiteral<"userLikes:desc">]>>;
13271
- creatorLeague: z.ZodOptional<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<"global">]>>;
13551
+ creatorLeague: z.ZodOptional<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<"global">]>>;
13272
13552
  role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">]>>;
13273
13553
  preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
13274
13554
  wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
@@ -13391,7 +13671,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
13391
13671
  }>>;
13392
13672
  currentTier: z.ZodOptional<z.ZodNumber>;
13393
13673
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
13394
- league: z.ZodOptional<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<"global">]>>;
13674
+ league: z.ZodOptional<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<"global">]>>;
13395
13675
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
13396
13676
  }, "strip", z.ZodTypeAny, {
13397
13677
  id: string;
@@ -13415,7 +13695,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
13415
13695
  } | undefined;
13416
13696
  currentTier?: number | undefined;
13417
13697
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
13418
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
13698
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
13419
13699
  }, {
13420
13700
  id: string;
13421
13701
  name: string;
@@ -13438,7 +13718,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
13438
13718
  } | undefined;
13439
13719
  currentTier?: number | undefined;
13440
13720
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
13441
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
13721
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
13442
13722
  }>>>;
13443
13723
  repliesLeft: z.ZodOptional<z.ZodNumber>;
13444
13724
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -13544,7 +13824,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
13544
13824
  }>, "strip", z.ZodTypeAny, {
13545
13825
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
13546
13826
  quarter: string | null;
13547
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
13827
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
13548
13828
  startedAt: number;
13549
13829
  finishedAt: number;
13550
13830
  apiGameId: string;
@@ -13755,7 +14035,7 @@ export declare const nflGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
13755
14035
  }, {
13756
14036
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
13757
14037
  quarter: string | null;
13758
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
14038
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
13759
14039
  startedAt: number;
13760
14040
  finishedAt: number;
13761
14041
  apiGameId: string;
@@ -13972,7 +14252,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
13972
14252
  finishedAt: z.ZodNumber;
13973
14253
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
13974
14254
  apiGameId: z.ZodNumber;
13975
- league: 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<"global">]>;
14255
+ league: 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<"global">]>;
13976
14256
  homeTeam: z.ZodObject<{
13977
14257
  id: z.ZodOptional<z.ZodString>;
13978
14258
  apiTeamId: z.ZodNumber;
@@ -15257,6 +15537,42 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
15257
15537
  weightedRating: number;
15258
15538
  };
15259
15539
  }>;
15540
+ cwc: z.ZodObject<{
15541
+ totalRatedGames: z.ZodNumber;
15542
+ commentsLeft: z.ZodNumber;
15543
+ avgRating: z.ZodNumber;
15544
+ avgRatings: z.ZodObject<{
15545
+ initialWindowRating: z.ZodNumber;
15546
+ normalRating: z.ZodNumber;
15547
+ weightedRating: z.ZodNumber;
15548
+ }, "strip", z.ZodTypeAny, {
15549
+ initialWindowRating: number;
15550
+ normalRating: number;
15551
+ weightedRating: number;
15552
+ }, {
15553
+ initialWindowRating: number;
15554
+ normalRating: number;
15555
+ weightedRating: number;
15556
+ }>;
15557
+ }, "strip", z.ZodTypeAny, {
15558
+ totalRatedGames: number;
15559
+ commentsLeft: number;
15560
+ avgRating: number;
15561
+ avgRatings: {
15562
+ initialWindowRating: number;
15563
+ normalRating: number;
15564
+ weightedRating: number;
15565
+ };
15566
+ }, {
15567
+ totalRatedGames: number;
15568
+ commentsLeft: number;
15569
+ avgRating: number;
15570
+ avgRatings: {
15571
+ initialWindowRating: number;
15572
+ normalRating: number;
15573
+ weightedRating: number;
15574
+ };
15575
+ }>;
15260
15576
  cfb: z.ZodObject<{
15261
15577
  totalRatedGames: z.ZodNumber;
15262
15578
  commentsLeft: z.ZodNumber;
@@ -15502,6 +15818,16 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
15502
15818
  weightedRating: number;
15503
15819
  };
15504
15820
  };
15821
+ cwc: {
15822
+ totalRatedGames: number;
15823
+ commentsLeft: number;
15824
+ avgRating: number;
15825
+ avgRatings: {
15826
+ initialWindowRating: number;
15827
+ normalRating: number;
15828
+ weightedRating: number;
15829
+ };
15830
+ };
15505
15831
  }, {
15506
15832
  nba: {
15507
15833
  totalRatedGames: number;
@@ -15603,6 +15929,16 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
15603
15929
  weightedRating: number;
15604
15930
  };
15605
15931
  };
15932
+ cwc: {
15933
+ totalRatedGames: number;
15934
+ commentsLeft: number;
15935
+ avgRating: number;
15936
+ avgRatings: {
15937
+ initialWindowRating: number;
15938
+ normalRating: number;
15939
+ weightedRating: number;
15940
+ };
15941
+ };
15606
15942
  }>>;
15607
15943
  totalRatedGames: z.ZodOptional<z.ZodNumber>;
15608
15944
  commentsLeft: z.ZodOptional<z.ZodNumber>;
@@ -15661,10 +15997,10 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
15661
15997
  }>>;
15662
15998
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
15663
15999
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
15664
- lastSelectedLeague: z.ZodOptional<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<"global">]>>;
16000
+ lastSelectedLeague: z.ZodOptional<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<"global">]>>;
15665
16001
  lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
15666
16002
  lastSelectedRatingFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating:asc">, z.ZodLiteral<"rating:desc">, z.ZodLiteral<"createdAt:asc">, z.ZodLiteral<"createdAt:desc">, z.ZodLiteral<"userLikes:asc">, z.ZodLiteral<"userLikes:desc">]>>;
15667
- creatorLeague: z.ZodOptional<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<"global">]>>;
16003
+ creatorLeague: z.ZodOptional<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<"global">]>>;
15668
16004
  role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">]>>;
15669
16005
  preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
15670
16006
  wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
@@ -15787,7 +16123,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
15787
16123
  }>>;
15788
16124
  currentTier: z.ZodOptional<z.ZodNumber>;
15789
16125
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
15790
- league: z.ZodOptional<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<"global">]>>;
16126
+ league: z.ZodOptional<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<"global">]>>;
15791
16127
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
15792
16128
  }, "strip", z.ZodTypeAny, {
15793
16129
  id: string;
@@ -15811,7 +16147,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
15811
16147
  } | undefined;
15812
16148
  currentTier?: number | undefined;
15813
16149
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
15814
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
16150
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
15815
16151
  }, {
15816
16152
  id: string;
15817
16153
  name: string;
@@ -15834,7 +16170,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
15834
16170
  } | undefined;
15835
16171
  currentTier?: number | undefined;
15836
16172
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
15837
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
16173
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
15838
16174
  }>>>;
15839
16175
  repliesLeft: z.ZodOptional<z.ZodNumber>;
15840
16176
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -15936,7 +16272,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
15936
16272
  }>, "strip", z.ZodTypeAny, {
15937
16273
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
15938
16274
  quarter: string | null;
15939
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
16275
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
15940
16276
  startedAt: number;
15941
16277
  finishedAt: number;
15942
16278
  apiGameId: number;
@@ -16140,7 +16476,7 @@ export declare const cfbGameSchema: z.ZodObject<z.objectUtil.extendShape<z.objec
16140
16476
  }, {
16141
16477
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
16142
16478
  quarter: string | null;
16143
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
16479
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
16144
16480
  startedAt: number;
16145
16481
  finishedAt: number;
16146
16482
  apiGameId: number;
@@ -16350,7 +16686,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
16350
16686
  finishedAt: z.ZodNumber;
16351
16687
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
16352
16688
  apiGameId: z.ZodNumber;
16353
- league: 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<"global">]>;
16689
+ league: 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<"global">]>;
16354
16690
  homeTeam: z.ZodObject<{
16355
16691
  id: z.ZodOptional<z.ZodString>;
16356
16692
  apiTeamId: z.ZodNumber;
@@ -17635,6 +17971,42 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
17635
17971
  weightedRating: number;
17636
17972
  };
17637
17973
  }>;
17974
+ cwc: z.ZodObject<{
17975
+ totalRatedGames: z.ZodNumber;
17976
+ commentsLeft: z.ZodNumber;
17977
+ avgRating: z.ZodNumber;
17978
+ avgRatings: z.ZodObject<{
17979
+ initialWindowRating: z.ZodNumber;
17980
+ normalRating: z.ZodNumber;
17981
+ weightedRating: z.ZodNumber;
17982
+ }, "strip", z.ZodTypeAny, {
17983
+ initialWindowRating: number;
17984
+ normalRating: number;
17985
+ weightedRating: number;
17986
+ }, {
17987
+ initialWindowRating: number;
17988
+ normalRating: number;
17989
+ weightedRating: number;
17990
+ }>;
17991
+ }, "strip", z.ZodTypeAny, {
17992
+ totalRatedGames: number;
17993
+ commentsLeft: number;
17994
+ avgRating: number;
17995
+ avgRatings: {
17996
+ initialWindowRating: number;
17997
+ normalRating: number;
17998
+ weightedRating: number;
17999
+ };
18000
+ }, {
18001
+ totalRatedGames: number;
18002
+ commentsLeft: number;
18003
+ avgRating: number;
18004
+ avgRatings: {
18005
+ initialWindowRating: number;
18006
+ normalRating: number;
18007
+ weightedRating: number;
18008
+ };
18009
+ }>;
17638
18010
  cfb: z.ZodObject<{
17639
18011
  totalRatedGames: z.ZodNumber;
17640
18012
  commentsLeft: z.ZodNumber;
@@ -17880,6 +18252,16 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
17880
18252
  weightedRating: number;
17881
18253
  };
17882
18254
  };
18255
+ cwc: {
18256
+ totalRatedGames: number;
18257
+ commentsLeft: number;
18258
+ avgRating: number;
18259
+ avgRatings: {
18260
+ initialWindowRating: number;
18261
+ normalRating: number;
18262
+ weightedRating: number;
18263
+ };
18264
+ };
17883
18265
  }, {
17884
18266
  nba: {
17885
18267
  totalRatedGames: number;
@@ -17981,6 +18363,16 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
17981
18363
  weightedRating: number;
17982
18364
  };
17983
18365
  };
18366
+ cwc: {
18367
+ totalRatedGames: number;
18368
+ commentsLeft: number;
18369
+ avgRating: number;
18370
+ avgRatings: {
18371
+ initialWindowRating: number;
18372
+ normalRating: number;
18373
+ weightedRating: number;
18374
+ };
18375
+ };
17984
18376
  }>>;
17985
18377
  totalRatedGames: z.ZodOptional<z.ZodNumber>;
17986
18378
  commentsLeft: z.ZodOptional<z.ZodNumber>;
@@ -18039,10 +18431,10 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
18039
18431
  }>>;
18040
18432
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
18041
18433
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
18042
- lastSelectedLeague: z.ZodOptional<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<"global">]>>;
18434
+ lastSelectedLeague: z.ZodOptional<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<"global">]>>;
18043
18435
  lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
18044
18436
  lastSelectedRatingFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating:asc">, z.ZodLiteral<"rating:desc">, z.ZodLiteral<"createdAt:asc">, z.ZodLiteral<"createdAt:desc">, z.ZodLiteral<"userLikes:asc">, z.ZodLiteral<"userLikes:desc">]>>;
18045
- creatorLeague: z.ZodOptional<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<"global">]>>;
18437
+ creatorLeague: z.ZodOptional<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<"global">]>>;
18046
18438
  role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">]>>;
18047
18439
  preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
18048
18440
  wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
@@ -18165,7 +18557,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
18165
18557
  }>>;
18166
18558
  currentTier: z.ZodOptional<z.ZodNumber>;
18167
18559
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
18168
- league: z.ZodOptional<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<"global">]>>;
18560
+ league: z.ZodOptional<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<"global">]>>;
18169
18561
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
18170
18562
  }, "strip", z.ZodTypeAny, {
18171
18563
  id: string;
@@ -18189,7 +18581,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
18189
18581
  } | undefined;
18190
18582
  currentTier?: number | undefined;
18191
18583
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
18192
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
18584
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
18193
18585
  }, {
18194
18586
  id: string;
18195
18587
  name: string;
@@ -18212,7 +18604,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
18212
18604
  } | undefined;
18213
18605
  currentTier?: number | undefined;
18214
18606
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
18215
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
18607
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
18216
18608
  }>>>;
18217
18609
  repliesLeft: z.ZodOptional<z.ZodNumber>;
18218
18610
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -18266,7 +18658,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
18266
18658
  hadShootout: z.ZodBoolean;
18267
18659
  }>, "strip", z.ZodTypeAny, {
18268
18660
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
18269
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
18661
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
18270
18662
  startedAt: number;
18271
18663
  finishedAt: number;
18272
18664
  apiGameId: number;
@@ -18450,7 +18842,7 @@ export declare const nhlGameSchema: z.ZodObject<z.objectUtil.extendShape<{
18450
18842
  listCount?: number | undefined;
18451
18843
  }, {
18452
18844
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
18453
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
18845
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
18454
18846
  startedAt: number;
18455
18847
  finishedAt: number;
18456
18848
  apiGameId: number;
@@ -18641,7 +19033,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
18641
19033
  finishedAt: z.ZodNumber;
18642
19034
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
18643
19035
  apiGameId: z.ZodNumber;
18644
- league: 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<"global">]>;
19036
+ league: 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<"global">]>;
18645
19037
  homeTeam: z.ZodObject<{
18646
19038
  id: z.ZodOptional<z.ZodString>;
18647
19039
  apiTeamId: z.ZodNumber;
@@ -19926,6 +20318,42 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
19926
20318
  weightedRating: number;
19927
20319
  };
19928
20320
  }>;
20321
+ cwc: z.ZodObject<{
20322
+ totalRatedGames: z.ZodNumber;
20323
+ commentsLeft: z.ZodNumber;
20324
+ avgRating: z.ZodNumber;
20325
+ avgRatings: z.ZodObject<{
20326
+ initialWindowRating: z.ZodNumber;
20327
+ normalRating: z.ZodNumber;
20328
+ weightedRating: z.ZodNumber;
20329
+ }, "strip", z.ZodTypeAny, {
20330
+ initialWindowRating: number;
20331
+ normalRating: number;
20332
+ weightedRating: number;
20333
+ }, {
20334
+ initialWindowRating: number;
20335
+ normalRating: number;
20336
+ weightedRating: number;
20337
+ }>;
20338
+ }, "strip", z.ZodTypeAny, {
20339
+ totalRatedGames: number;
20340
+ commentsLeft: number;
20341
+ avgRating: number;
20342
+ avgRatings: {
20343
+ initialWindowRating: number;
20344
+ normalRating: number;
20345
+ weightedRating: number;
20346
+ };
20347
+ }, {
20348
+ totalRatedGames: number;
20349
+ commentsLeft: number;
20350
+ avgRating: number;
20351
+ avgRatings: {
20352
+ initialWindowRating: number;
20353
+ normalRating: number;
20354
+ weightedRating: number;
20355
+ };
20356
+ }>;
19929
20357
  cfb: z.ZodObject<{
19930
20358
  totalRatedGames: z.ZodNumber;
19931
20359
  commentsLeft: z.ZodNumber;
@@ -20171,6 +20599,16 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
20171
20599
  weightedRating: number;
20172
20600
  };
20173
20601
  };
20602
+ cwc: {
20603
+ totalRatedGames: number;
20604
+ commentsLeft: number;
20605
+ avgRating: number;
20606
+ avgRatings: {
20607
+ initialWindowRating: number;
20608
+ normalRating: number;
20609
+ weightedRating: number;
20610
+ };
20611
+ };
20174
20612
  }, {
20175
20613
  nba: {
20176
20614
  totalRatedGames: number;
@@ -20272,6 +20710,16 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
20272
20710
  weightedRating: number;
20273
20711
  };
20274
20712
  };
20713
+ cwc: {
20714
+ totalRatedGames: number;
20715
+ commentsLeft: number;
20716
+ avgRating: number;
20717
+ avgRatings: {
20718
+ initialWindowRating: number;
20719
+ normalRating: number;
20720
+ weightedRating: number;
20721
+ };
20722
+ };
20275
20723
  }>>;
20276
20724
  totalRatedGames: z.ZodOptional<z.ZodNumber>;
20277
20725
  commentsLeft: z.ZodOptional<z.ZodNumber>;
@@ -20330,10 +20778,10 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
20330
20778
  }>>;
20331
20779
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
20332
20780
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
20333
- lastSelectedLeague: z.ZodOptional<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<"global">]>>;
20781
+ lastSelectedLeague: z.ZodOptional<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<"global">]>>;
20334
20782
  lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
20335
20783
  lastSelectedRatingFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating:asc">, z.ZodLiteral<"rating:desc">, z.ZodLiteral<"createdAt:asc">, z.ZodLiteral<"createdAt:desc">, z.ZodLiteral<"userLikes:asc">, z.ZodLiteral<"userLikes:desc">]>>;
20336
- creatorLeague: z.ZodOptional<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<"global">]>>;
20784
+ creatorLeague: z.ZodOptional<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<"global">]>>;
20337
20785
  role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">]>>;
20338
20786
  preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
20339
20787
  wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
@@ -20456,7 +20904,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
20456
20904
  }>>;
20457
20905
  currentTier: z.ZodOptional<z.ZodNumber>;
20458
20906
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
20459
- league: z.ZodOptional<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<"global">]>>;
20907
+ league: z.ZodOptional<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<"global">]>>;
20460
20908
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
20461
20909
  }, "strip", z.ZodTypeAny, {
20462
20910
  id: string;
@@ -20480,7 +20928,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
20480
20928
  } | undefined;
20481
20929
  currentTier?: number | undefined;
20482
20930
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
20483
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
20931
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
20484
20932
  }, {
20485
20933
  id: string;
20486
20934
  name: string;
@@ -20503,7 +20951,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
20503
20951
  } | undefined;
20504
20952
  currentTier?: number | undefined;
20505
20953
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
20506
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
20954
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
20507
20955
  }>>>;
20508
20956
  repliesLeft: z.ZodOptional<z.ZodNumber>;
20509
20957
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -20572,7 +21020,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
20572
21020
  }>, "strip", z.ZodTypeAny, {
20573
21021
  round: number;
20574
21022
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
20575
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
21023
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
20576
21024
  startedAt: number;
20577
21025
  finishedAt: number;
20578
21026
  apiGameId: number;
@@ -20763,7 +21211,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
20763
21211
  }, {
20764
21212
  round: number;
20765
21213
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
20766
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
21214
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
20767
21215
  startedAt: number;
20768
21216
  finishedAt: number;
20769
21217
  apiGameId: number;
@@ -20959,7 +21407,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
20959
21407
  finishedAt: z.ZodNumber;
20960
21408
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
20961
21409
  apiGameId: z.ZodNumber;
20962
- league: 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<"global">]>;
21410
+ league: 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<"global">]>;
20963
21411
  homeTeam: z.ZodObject<{
20964
21412
  id: z.ZodOptional<z.ZodString>;
20965
21413
  apiTeamId: z.ZodNumber;
@@ -22244,6 +22692,42 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
22244
22692
  weightedRating: number;
22245
22693
  };
22246
22694
  }>;
22695
+ cwc: z.ZodObject<{
22696
+ totalRatedGames: z.ZodNumber;
22697
+ commentsLeft: z.ZodNumber;
22698
+ avgRating: z.ZodNumber;
22699
+ avgRatings: z.ZodObject<{
22700
+ initialWindowRating: z.ZodNumber;
22701
+ normalRating: z.ZodNumber;
22702
+ weightedRating: z.ZodNumber;
22703
+ }, "strip", z.ZodTypeAny, {
22704
+ initialWindowRating: number;
22705
+ normalRating: number;
22706
+ weightedRating: number;
22707
+ }, {
22708
+ initialWindowRating: number;
22709
+ normalRating: number;
22710
+ weightedRating: number;
22711
+ }>;
22712
+ }, "strip", z.ZodTypeAny, {
22713
+ totalRatedGames: number;
22714
+ commentsLeft: number;
22715
+ avgRating: number;
22716
+ avgRatings: {
22717
+ initialWindowRating: number;
22718
+ normalRating: number;
22719
+ weightedRating: number;
22720
+ };
22721
+ }, {
22722
+ totalRatedGames: number;
22723
+ commentsLeft: number;
22724
+ avgRating: number;
22725
+ avgRatings: {
22726
+ initialWindowRating: number;
22727
+ normalRating: number;
22728
+ weightedRating: number;
22729
+ };
22730
+ }>;
22247
22731
  cfb: z.ZodObject<{
22248
22732
  totalRatedGames: z.ZodNumber;
22249
22733
  commentsLeft: z.ZodNumber;
@@ -22489,6 +22973,16 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
22489
22973
  weightedRating: number;
22490
22974
  };
22491
22975
  };
22976
+ cwc: {
22977
+ totalRatedGames: number;
22978
+ commentsLeft: number;
22979
+ avgRating: number;
22980
+ avgRatings: {
22981
+ initialWindowRating: number;
22982
+ normalRating: number;
22983
+ weightedRating: number;
22984
+ };
22985
+ };
22492
22986
  }, {
22493
22987
  nba: {
22494
22988
  totalRatedGames: number;
@@ -22590,6 +23084,16 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
22590
23084
  weightedRating: number;
22591
23085
  };
22592
23086
  };
23087
+ cwc: {
23088
+ totalRatedGames: number;
23089
+ commentsLeft: number;
23090
+ avgRating: number;
23091
+ avgRatings: {
23092
+ initialWindowRating: number;
23093
+ normalRating: number;
23094
+ weightedRating: number;
23095
+ };
23096
+ };
22593
23097
  }>>;
22594
23098
  totalRatedGames: z.ZodOptional<z.ZodNumber>;
22595
23099
  commentsLeft: z.ZodOptional<z.ZodNumber>;
@@ -22648,10 +23152,10 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
22648
23152
  }>>;
22649
23153
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
22650
23154
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
22651
- lastSelectedLeague: z.ZodOptional<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<"global">]>>;
23155
+ lastSelectedLeague: z.ZodOptional<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<"global">]>>;
22652
23156
  lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
22653
23157
  lastSelectedRatingFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating:asc">, z.ZodLiteral<"rating:desc">, z.ZodLiteral<"createdAt:asc">, z.ZodLiteral<"createdAt:desc">, z.ZodLiteral<"userLikes:asc">, z.ZodLiteral<"userLikes:desc">]>>;
22654
- creatorLeague: z.ZodOptional<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<"global">]>>;
23158
+ creatorLeague: z.ZodOptional<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<"global">]>>;
22655
23159
  role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">]>>;
22656
23160
  preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
22657
23161
  wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
@@ -22774,7 +23278,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
22774
23278
  }>>;
22775
23279
  currentTier: z.ZodOptional<z.ZodNumber>;
22776
23280
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
22777
- league: z.ZodOptional<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<"global">]>>;
23281
+ league: z.ZodOptional<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<"global">]>>;
22778
23282
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
22779
23283
  }, "strip", z.ZodTypeAny, {
22780
23284
  id: string;
@@ -22798,7 +23302,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
22798
23302
  } | undefined;
22799
23303
  currentTier?: number | undefined;
22800
23304
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
22801
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
23305
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
22802
23306
  }, {
22803
23307
  id: string;
22804
23308
  name: string;
@@ -22821,7 +23325,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
22821
23325
  } | undefined;
22822
23326
  currentTier?: number | undefined;
22823
23327
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
22824
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
23328
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
22825
23329
  }>>>;
22826
23330
  repliesLeft: z.ZodOptional<z.ZodNumber>;
22827
23331
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -22896,7 +23400,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
22896
23400
  runnerOnThird: z.ZodOptional<z.ZodBoolean>;
22897
23401
  }>, "strip", z.ZodTypeAny, {
22898
23402
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
22899
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
23403
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
22900
23404
  startedAt: number;
22901
23405
  finishedAt: number;
22902
23406
  apiGameId: number;
@@ -23094,7 +23598,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
23094
23598
  runnerOnThird?: boolean | undefined;
23095
23599
  }, {
23096
23600
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
23097
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
23601
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
23098
23602
  startedAt: number;
23099
23603
  finishedAt: number;
23100
23604
  apiGameId: number;
@@ -23298,7 +23802,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
23298
23802
  finishedAt: z.ZodNumber;
23299
23803
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
23300
23804
  apiGameId: z.ZodNumber;
23301
- league: 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<"global">]>;
23805
+ league: 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<"global">]>;
23302
23806
  homeTeam: z.ZodObject<{
23303
23807
  id: z.ZodOptional<z.ZodString>;
23304
23808
  apiTeamId: z.ZodNumber;
@@ -24583,6 +25087,42 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
24583
25087
  weightedRating: number;
24584
25088
  };
24585
25089
  }>;
25090
+ cwc: z.ZodObject<{
25091
+ totalRatedGames: z.ZodNumber;
25092
+ commentsLeft: z.ZodNumber;
25093
+ avgRating: z.ZodNumber;
25094
+ avgRatings: z.ZodObject<{
25095
+ initialWindowRating: z.ZodNumber;
25096
+ normalRating: z.ZodNumber;
25097
+ weightedRating: z.ZodNumber;
25098
+ }, "strip", z.ZodTypeAny, {
25099
+ initialWindowRating: number;
25100
+ normalRating: number;
25101
+ weightedRating: number;
25102
+ }, {
25103
+ initialWindowRating: number;
25104
+ normalRating: number;
25105
+ weightedRating: number;
25106
+ }>;
25107
+ }, "strip", z.ZodTypeAny, {
25108
+ totalRatedGames: number;
25109
+ commentsLeft: number;
25110
+ avgRating: number;
25111
+ avgRatings: {
25112
+ initialWindowRating: number;
25113
+ normalRating: number;
25114
+ weightedRating: number;
25115
+ };
25116
+ }, {
25117
+ totalRatedGames: number;
25118
+ commentsLeft: number;
25119
+ avgRating: number;
25120
+ avgRatings: {
25121
+ initialWindowRating: number;
25122
+ normalRating: number;
25123
+ weightedRating: number;
25124
+ };
25125
+ }>;
24586
25126
  cfb: z.ZodObject<{
24587
25127
  totalRatedGames: z.ZodNumber;
24588
25128
  commentsLeft: z.ZodNumber;
@@ -24828,6 +25368,16 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
24828
25368
  weightedRating: number;
24829
25369
  };
24830
25370
  };
25371
+ cwc: {
25372
+ totalRatedGames: number;
25373
+ commentsLeft: number;
25374
+ avgRating: number;
25375
+ avgRatings: {
25376
+ initialWindowRating: number;
25377
+ normalRating: number;
25378
+ weightedRating: number;
25379
+ };
25380
+ };
24831
25381
  }, {
24832
25382
  nba: {
24833
25383
  totalRatedGames: number;
@@ -24929,6 +25479,16 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
24929
25479
  weightedRating: number;
24930
25480
  };
24931
25481
  };
25482
+ cwc: {
25483
+ totalRatedGames: number;
25484
+ commentsLeft: number;
25485
+ avgRating: number;
25486
+ avgRatings: {
25487
+ initialWindowRating: number;
25488
+ normalRating: number;
25489
+ weightedRating: number;
25490
+ };
25491
+ };
24932
25492
  }>>;
24933
25493
  totalRatedGames: z.ZodOptional<z.ZodNumber>;
24934
25494
  commentsLeft: z.ZodOptional<z.ZodNumber>;
@@ -24987,10 +25547,10 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
24987
25547
  }>>;
24988
25548
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
24989
25549
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
24990
- lastSelectedLeague: z.ZodOptional<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<"global">]>>;
25550
+ lastSelectedLeague: z.ZodOptional<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<"global">]>>;
24991
25551
  lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
24992
25552
  lastSelectedRatingFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating:asc">, z.ZodLiteral<"rating:desc">, z.ZodLiteral<"createdAt:asc">, z.ZodLiteral<"createdAt:desc">, z.ZodLiteral<"userLikes:asc">, z.ZodLiteral<"userLikes:desc">]>>;
24993
- creatorLeague: z.ZodOptional<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<"global">]>>;
25553
+ creatorLeague: z.ZodOptional<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<"global">]>>;
24994
25554
  role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">]>>;
24995
25555
  preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
24996
25556
  wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
@@ -25113,7 +25673,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
25113
25673
  }>>;
25114
25674
  currentTier: z.ZodOptional<z.ZodNumber>;
25115
25675
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
25116
- league: z.ZodOptional<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<"global">]>>;
25676
+ league: z.ZodOptional<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<"global">]>>;
25117
25677
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
25118
25678
  }, "strip", z.ZodTypeAny, {
25119
25679
  id: string;
@@ -25137,7 +25697,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
25137
25697
  } | undefined;
25138
25698
  currentTier?: number | undefined;
25139
25699
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
25140
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
25700
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
25141
25701
  }, {
25142
25702
  id: string;
25143
25703
  name: string;
@@ -25160,7 +25720,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
25160
25720
  } | undefined;
25161
25721
  currentTier?: number | undefined;
25162
25722
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
25163
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
25723
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
25164
25724
  }>>>;
25165
25725
  repliesLeft: z.ZodOptional<z.ZodNumber>;
25166
25726
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -25205,7 +25765,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
25205
25765
  allCities: z.ZodOptional<z.ZodString>;
25206
25766
  listCount: z.ZodOptional<z.ZodNumber>;
25207
25767
  }, {
25208
- league: z.ZodUnion<[z.ZodLiteral<"epl">, z.ZodLiteral<"mls">]>;
25768
+ league: z.ZodUnion<[z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"cwc">]>;
25209
25769
  week: z.ZodNumber;
25210
25770
  period: z.ZodString;
25211
25771
  clock: z.ZodString;
@@ -25328,7 +25888,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
25328
25888
  }>, "strip", z.ZodTypeAny, {
25329
25889
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
25330
25890
  week: number;
25331
- league: "epl" | "mls";
25891
+ league: "epl" | "mls" | "cwc";
25332
25892
  startedAt: number;
25333
25893
  finishedAt: number;
25334
25894
  apiGameId: number;
@@ -25521,7 +26081,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
25521
26081
  }, {
25522
26082
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
25523
26083
  week: number;
25524
- league: "epl" | "mls";
26084
+ league: "epl" | "mls" | "cwc";
25525
26085
  startedAt: number;
25526
26086
  finishedAt: number;
25527
26087
  apiGameId: number;
@@ -25719,7 +26279,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
25719
26279
  finishedAt: z.ZodNumber;
25720
26280
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
25721
26281
  apiGameId: z.ZodNumber;
25722
- league: 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<"global">]>;
26282
+ league: 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<"global">]>;
25723
26283
  homeTeam: z.ZodObject<{
25724
26284
  id: z.ZodOptional<z.ZodString>;
25725
26285
  apiTeamId: z.ZodNumber;
@@ -27004,6 +27564,42 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
27004
27564
  weightedRating: number;
27005
27565
  };
27006
27566
  }>;
27567
+ cwc: z.ZodObject<{
27568
+ totalRatedGames: z.ZodNumber;
27569
+ commentsLeft: z.ZodNumber;
27570
+ avgRating: z.ZodNumber;
27571
+ avgRatings: z.ZodObject<{
27572
+ initialWindowRating: z.ZodNumber;
27573
+ normalRating: z.ZodNumber;
27574
+ weightedRating: z.ZodNumber;
27575
+ }, "strip", z.ZodTypeAny, {
27576
+ initialWindowRating: number;
27577
+ normalRating: number;
27578
+ weightedRating: number;
27579
+ }, {
27580
+ initialWindowRating: number;
27581
+ normalRating: number;
27582
+ weightedRating: number;
27583
+ }>;
27584
+ }, "strip", z.ZodTypeAny, {
27585
+ totalRatedGames: number;
27586
+ commentsLeft: number;
27587
+ avgRating: number;
27588
+ avgRatings: {
27589
+ initialWindowRating: number;
27590
+ normalRating: number;
27591
+ weightedRating: number;
27592
+ };
27593
+ }, {
27594
+ totalRatedGames: number;
27595
+ commentsLeft: number;
27596
+ avgRating: number;
27597
+ avgRatings: {
27598
+ initialWindowRating: number;
27599
+ normalRating: number;
27600
+ weightedRating: number;
27601
+ };
27602
+ }>;
27007
27603
  cfb: z.ZodObject<{
27008
27604
  totalRatedGames: z.ZodNumber;
27009
27605
  commentsLeft: z.ZodNumber;
@@ -27249,6 +27845,16 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
27249
27845
  weightedRating: number;
27250
27846
  };
27251
27847
  };
27848
+ cwc: {
27849
+ totalRatedGames: number;
27850
+ commentsLeft: number;
27851
+ avgRating: number;
27852
+ avgRatings: {
27853
+ initialWindowRating: number;
27854
+ normalRating: number;
27855
+ weightedRating: number;
27856
+ };
27857
+ };
27252
27858
  }, {
27253
27859
  nba: {
27254
27860
  totalRatedGames: number;
@@ -27350,6 +27956,16 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
27350
27956
  weightedRating: number;
27351
27957
  };
27352
27958
  };
27959
+ cwc: {
27960
+ totalRatedGames: number;
27961
+ commentsLeft: number;
27962
+ avgRating: number;
27963
+ avgRatings: {
27964
+ initialWindowRating: number;
27965
+ normalRating: number;
27966
+ weightedRating: number;
27967
+ };
27968
+ };
27353
27969
  }>>;
27354
27970
  totalRatedGames: z.ZodOptional<z.ZodNumber>;
27355
27971
  commentsLeft: z.ZodOptional<z.ZodNumber>;
@@ -27408,10 +28024,10 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
27408
28024
  }>>;
27409
28025
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
27410
28026
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
27411
- lastSelectedLeague: z.ZodOptional<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<"global">]>>;
28027
+ lastSelectedLeague: z.ZodOptional<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<"global">]>>;
27412
28028
  lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
27413
28029
  lastSelectedRatingFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating:asc">, z.ZodLiteral<"rating:desc">, z.ZodLiteral<"createdAt:asc">, z.ZodLiteral<"createdAt:desc">, z.ZodLiteral<"userLikes:asc">, z.ZodLiteral<"userLikes:desc">]>>;
27414
- creatorLeague: z.ZodOptional<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<"global">]>>;
28030
+ creatorLeague: z.ZodOptional<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<"global">]>>;
27415
28031
  role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">]>>;
27416
28032
  preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
27417
28033
  wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
@@ -27534,7 +28150,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
27534
28150
  }>>;
27535
28151
  currentTier: z.ZodOptional<z.ZodNumber>;
27536
28152
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
27537
- league: z.ZodOptional<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<"global">]>>;
28153
+ league: z.ZodOptional<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<"global">]>>;
27538
28154
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
27539
28155
  }, "strip", z.ZodTypeAny, {
27540
28156
  id: string;
@@ -27558,7 +28174,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
27558
28174
  } | undefined;
27559
28175
  currentTier?: number | undefined;
27560
28176
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
27561
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
28177
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
27562
28178
  }, {
27563
28179
  id: string;
27564
28180
  name: string;
@@ -27581,7 +28197,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
27581
28197
  } | undefined;
27582
28198
  currentTier?: number | undefined;
27583
28199
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
27584
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
28200
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
27585
28201
  }>>>;
27586
28202
  repliesLeft: z.ZodOptional<z.ZodNumber>;
27587
28203
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -27687,7 +28303,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
27687
28303
  }>, "strip", z.ZodTypeAny, {
27688
28304
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
27689
28305
  quarter: string | null;
27690
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
28306
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
27691
28307
  startedAt: number;
27692
28308
  finishedAt: number;
27693
28309
  apiGameId: string;
@@ -27898,7 +28514,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
27898
28514
  }, {
27899
28515
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
27900
28516
  quarter: string | null;
27901
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
28517
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
27902
28518
  startedAt: number;
27903
28519
  finishedAt: number;
27904
28520
  apiGameId: string;
@@ -28114,7 +28730,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
28114
28730
  finishedAt: z.ZodNumber;
28115
28731
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
28116
28732
  apiGameId: z.ZodNumber;
28117
- league: 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<"global">]>;
28733
+ league: 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<"global">]>;
28118
28734
  homeTeam: z.ZodObject<{
28119
28735
  id: z.ZodOptional<z.ZodString>;
28120
28736
  apiTeamId: z.ZodNumber;
@@ -29399,6 +30015,42 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
29399
30015
  weightedRating: number;
29400
30016
  };
29401
30017
  }>;
30018
+ cwc: z.ZodObject<{
30019
+ totalRatedGames: z.ZodNumber;
30020
+ commentsLeft: z.ZodNumber;
30021
+ avgRating: z.ZodNumber;
30022
+ avgRatings: z.ZodObject<{
30023
+ initialWindowRating: z.ZodNumber;
30024
+ normalRating: z.ZodNumber;
30025
+ weightedRating: z.ZodNumber;
30026
+ }, "strip", z.ZodTypeAny, {
30027
+ initialWindowRating: number;
30028
+ normalRating: number;
30029
+ weightedRating: number;
30030
+ }, {
30031
+ initialWindowRating: number;
30032
+ normalRating: number;
30033
+ weightedRating: number;
30034
+ }>;
30035
+ }, "strip", z.ZodTypeAny, {
30036
+ totalRatedGames: number;
30037
+ commentsLeft: number;
30038
+ avgRating: number;
30039
+ avgRatings: {
30040
+ initialWindowRating: number;
30041
+ normalRating: number;
30042
+ weightedRating: number;
30043
+ };
30044
+ }, {
30045
+ totalRatedGames: number;
30046
+ commentsLeft: number;
30047
+ avgRating: number;
30048
+ avgRatings: {
30049
+ initialWindowRating: number;
30050
+ normalRating: number;
30051
+ weightedRating: number;
30052
+ };
30053
+ }>;
29402
30054
  cfb: z.ZodObject<{
29403
30055
  totalRatedGames: z.ZodNumber;
29404
30056
  commentsLeft: z.ZodNumber;
@@ -29644,6 +30296,16 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
29644
30296
  weightedRating: number;
29645
30297
  };
29646
30298
  };
30299
+ cwc: {
30300
+ totalRatedGames: number;
30301
+ commentsLeft: number;
30302
+ avgRating: number;
30303
+ avgRatings: {
30304
+ initialWindowRating: number;
30305
+ normalRating: number;
30306
+ weightedRating: number;
30307
+ };
30308
+ };
29647
30309
  }, {
29648
30310
  nba: {
29649
30311
  totalRatedGames: number;
@@ -29745,6 +30407,16 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
29745
30407
  weightedRating: number;
29746
30408
  };
29747
30409
  };
30410
+ cwc: {
30411
+ totalRatedGames: number;
30412
+ commentsLeft: number;
30413
+ avgRating: number;
30414
+ avgRatings: {
30415
+ initialWindowRating: number;
30416
+ normalRating: number;
30417
+ weightedRating: number;
30418
+ };
30419
+ };
29748
30420
  }>>;
29749
30421
  totalRatedGames: z.ZodOptional<z.ZodNumber>;
29750
30422
  commentsLeft: z.ZodOptional<z.ZodNumber>;
@@ -29803,10 +30475,10 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
29803
30475
  }>>;
29804
30476
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
29805
30477
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
29806
- lastSelectedLeague: z.ZodOptional<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<"global">]>>;
30478
+ lastSelectedLeague: z.ZodOptional<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<"global">]>>;
29807
30479
  lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
29808
30480
  lastSelectedRatingFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating:asc">, z.ZodLiteral<"rating:desc">, z.ZodLiteral<"createdAt:asc">, z.ZodLiteral<"createdAt:desc">, z.ZodLiteral<"userLikes:asc">, z.ZodLiteral<"userLikes:desc">]>>;
29809
- creatorLeague: z.ZodOptional<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<"global">]>>;
30481
+ creatorLeague: z.ZodOptional<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<"global">]>>;
29810
30482
  role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">]>>;
29811
30483
  preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
29812
30484
  wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
@@ -29929,7 +30601,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
29929
30601
  }>>;
29930
30602
  currentTier: z.ZodOptional<z.ZodNumber>;
29931
30603
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
29932
- league: z.ZodOptional<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<"global">]>>;
30604
+ league: z.ZodOptional<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<"global">]>>;
29933
30605
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
29934
30606
  }, "strip", z.ZodTypeAny, {
29935
30607
  id: string;
@@ -29953,7 +30625,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
29953
30625
  } | undefined;
29954
30626
  currentTier?: number | undefined;
29955
30627
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
29956
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
30628
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
29957
30629
  }, {
29958
30630
  id: string;
29959
30631
  name: string;
@@ -29976,7 +30648,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
29976
30648
  } | undefined;
29977
30649
  currentTier?: number | undefined;
29978
30650
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
29979
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
30651
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
29980
30652
  }>>>;
29981
30653
  repliesLeft: z.ZodOptional<z.ZodNumber>;
29982
30654
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -30078,7 +30750,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
30078
30750
  }>, "strip", z.ZodTypeAny, {
30079
30751
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
30080
30752
  quarter: string | null;
30081
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
30753
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
30082
30754
  startedAt: number;
30083
30755
  finishedAt: number;
30084
30756
  apiGameId: number;
@@ -30282,7 +30954,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
30282
30954
  }, {
30283
30955
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
30284
30956
  quarter: string | null;
30285
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
30957
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
30286
30958
  startedAt: number;
30287
30959
  finishedAt: number;
30288
30960
  apiGameId: number;
@@ -30491,7 +31163,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
30491
31163
  finishedAt: z.ZodNumber;
30492
31164
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
30493
31165
  apiGameId: z.ZodNumber;
30494
- league: 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<"global">]>;
31166
+ league: 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<"global">]>;
30495
31167
  homeTeam: z.ZodObject<{
30496
31168
  id: z.ZodOptional<z.ZodString>;
30497
31169
  apiTeamId: z.ZodNumber;
@@ -31776,6 +32448,42 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
31776
32448
  weightedRating: number;
31777
32449
  };
31778
32450
  }>;
32451
+ cwc: z.ZodObject<{
32452
+ totalRatedGames: z.ZodNumber;
32453
+ commentsLeft: z.ZodNumber;
32454
+ avgRating: z.ZodNumber;
32455
+ avgRatings: z.ZodObject<{
32456
+ initialWindowRating: z.ZodNumber;
32457
+ normalRating: z.ZodNumber;
32458
+ weightedRating: z.ZodNumber;
32459
+ }, "strip", z.ZodTypeAny, {
32460
+ initialWindowRating: number;
32461
+ normalRating: number;
32462
+ weightedRating: number;
32463
+ }, {
32464
+ initialWindowRating: number;
32465
+ normalRating: number;
32466
+ weightedRating: number;
32467
+ }>;
32468
+ }, "strip", z.ZodTypeAny, {
32469
+ totalRatedGames: number;
32470
+ commentsLeft: number;
32471
+ avgRating: number;
32472
+ avgRatings: {
32473
+ initialWindowRating: number;
32474
+ normalRating: number;
32475
+ weightedRating: number;
32476
+ };
32477
+ }, {
32478
+ totalRatedGames: number;
32479
+ commentsLeft: number;
32480
+ avgRating: number;
32481
+ avgRatings: {
32482
+ initialWindowRating: number;
32483
+ normalRating: number;
32484
+ weightedRating: number;
32485
+ };
32486
+ }>;
31779
32487
  cfb: z.ZodObject<{
31780
32488
  totalRatedGames: z.ZodNumber;
31781
32489
  commentsLeft: z.ZodNumber;
@@ -32021,6 +32729,16 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
32021
32729
  weightedRating: number;
32022
32730
  };
32023
32731
  };
32732
+ cwc: {
32733
+ totalRatedGames: number;
32734
+ commentsLeft: number;
32735
+ avgRating: number;
32736
+ avgRatings: {
32737
+ initialWindowRating: number;
32738
+ normalRating: number;
32739
+ weightedRating: number;
32740
+ };
32741
+ };
32024
32742
  }, {
32025
32743
  nba: {
32026
32744
  totalRatedGames: number;
@@ -32122,6 +32840,16 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
32122
32840
  weightedRating: number;
32123
32841
  };
32124
32842
  };
32843
+ cwc: {
32844
+ totalRatedGames: number;
32845
+ commentsLeft: number;
32846
+ avgRating: number;
32847
+ avgRatings: {
32848
+ initialWindowRating: number;
32849
+ normalRating: number;
32850
+ weightedRating: number;
32851
+ };
32852
+ };
32125
32853
  }>>;
32126
32854
  totalRatedGames: z.ZodOptional<z.ZodNumber>;
32127
32855
  commentsLeft: z.ZodOptional<z.ZodNumber>;
@@ -32180,10 +32908,10 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
32180
32908
  }>>;
32181
32909
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
32182
32910
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
32183
- lastSelectedLeague: z.ZodOptional<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<"global">]>>;
32911
+ lastSelectedLeague: z.ZodOptional<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<"global">]>>;
32184
32912
  lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
32185
32913
  lastSelectedRatingFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating:asc">, z.ZodLiteral<"rating:desc">, z.ZodLiteral<"createdAt:asc">, z.ZodLiteral<"createdAt:desc">, z.ZodLiteral<"userLikes:asc">, z.ZodLiteral<"userLikes:desc">]>>;
32186
- creatorLeague: z.ZodOptional<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<"global">]>>;
32914
+ creatorLeague: z.ZodOptional<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<"global">]>>;
32187
32915
  role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">]>>;
32188
32916
  preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
32189
32917
  wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
@@ -32306,7 +33034,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
32306
33034
  }>>;
32307
33035
  currentTier: z.ZodOptional<z.ZodNumber>;
32308
33036
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
32309
- league: z.ZodOptional<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<"global">]>>;
33037
+ league: z.ZodOptional<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<"global">]>>;
32310
33038
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
32311
33039
  }, "strip", z.ZodTypeAny, {
32312
33040
  id: string;
@@ -32330,7 +33058,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
32330
33058
  } | undefined;
32331
33059
  currentTier?: number | undefined;
32332
33060
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
32333
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
33061
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
32334
33062
  }, {
32335
33063
  id: string;
32336
33064
  name: string;
@@ -32353,7 +33081,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
32353
33081
  } | undefined;
32354
33082
  currentTier?: number | undefined;
32355
33083
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
32356
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
33084
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
32357
33085
  }>>>;
32358
33086
  repliesLeft: z.ZodOptional<z.ZodNumber>;
32359
33087
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -32407,7 +33135,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
32407
33135
  hadShootout: z.ZodBoolean;
32408
33136
  }>, "strip", z.ZodTypeAny, {
32409
33137
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
32410
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
33138
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
32411
33139
  startedAt: number;
32412
33140
  finishedAt: number;
32413
33141
  apiGameId: number;
@@ -32591,7 +33319,7 @@ export declare const unionGameSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.exten
32591
33319
  listCount?: number | undefined;
32592
33320
  }, {
32593
33321
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
32594
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
33322
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
32595
33323
  startedAt: number;
32596
33324
  finishedAt: number;
32597
33325
  apiGameId: number;
@@ -32778,7 +33506,7 @@ export declare const searchGameSchema: z.ZodObject<{
32778
33506
  q: z.ZodOptional<z.ZodString>;
32779
33507
  teamId: z.ZodOptional<z.ZodString>;
32780
33508
  round: z.ZodOptional<z.ZodString>;
32781
- league: 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<"global">]>;
33509
+ league: 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<"global">]>;
32782
33510
  createdAt: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
32783
33511
  sortBy: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating.avg:asc">, z.ZodLiteral<"rating.avg:desc">, z.ZodLiteral<"startedAt:asc">, z.ZodLiteral<"startedAt:desc">, z.ZodLiteral<"ratings.weightedRating.avg:asc">, z.ZodLiteral<"ratings.weightedRating.avg:desc">, z.ZodLiteral<"rating.votes.total:desc">]>>;
32784
33512
  limit: z.ZodOptional<z.ZodString>;
@@ -32789,7 +33517,7 @@ export declare const searchGameSchema: z.ZodObject<{
32789
33517
  gamesType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"topRated">, z.ZodLiteral<"mostRated">]>>;
32790
33518
  season: z.ZodOptional<z.ZodString>;
32791
33519
  }, "strip", z.ZodTypeAny, {
32792
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
33520
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
32793
33521
  offset?: string | undefined;
32794
33522
  round?: string | undefined;
32795
33523
  q?: string | undefined;
@@ -32803,7 +33531,7 @@ export declare const searchGameSchema: z.ZodObject<{
32803
33531
  seasonGroup?: "combined" | "regularSeason" | "playoffs" | undefined;
32804
33532
  gamesType?: "topRated" | "mostRated" | undefined;
32805
33533
  }, {
32806
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
33534
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
32807
33535
  offset?: string | undefined;
32808
33536
  round?: string | undefined;
32809
33537
  q?: string | undefined;
@@ -32826,7 +33554,7 @@ export declare const creatorPickSchema: z.ZodObject<{
32826
33554
  finishedAt: z.ZodNumber;
32827
33555
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
32828
33556
  apiGameId: z.ZodNumber;
32829
- league: 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<"global">]>;
33557
+ league: 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<"global">]>;
32830
33558
  homeTeam: z.ZodObject<{
32831
33559
  id: z.ZodOptional<z.ZodString>;
32832
33560
  apiTeamId: z.ZodNumber;
@@ -34111,6 +34839,42 @@ export declare const creatorPickSchema: z.ZodObject<{
34111
34839
  weightedRating: number;
34112
34840
  };
34113
34841
  }>;
34842
+ cwc: z.ZodObject<{
34843
+ totalRatedGames: z.ZodNumber;
34844
+ commentsLeft: z.ZodNumber;
34845
+ avgRating: z.ZodNumber;
34846
+ avgRatings: z.ZodObject<{
34847
+ initialWindowRating: z.ZodNumber;
34848
+ normalRating: z.ZodNumber;
34849
+ weightedRating: z.ZodNumber;
34850
+ }, "strip", z.ZodTypeAny, {
34851
+ initialWindowRating: number;
34852
+ normalRating: number;
34853
+ weightedRating: number;
34854
+ }, {
34855
+ initialWindowRating: number;
34856
+ normalRating: number;
34857
+ weightedRating: number;
34858
+ }>;
34859
+ }, "strip", z.ZodTypeAny, {
34860
+ totalRatedGames: number;
34861
+ commentsLeft: number;
34862
+ avgRating: number;
34863
+ avgRatings: {
34864
+ initialWindowRating: number;
34865
+ normalRating: number;
34866
+ weightedRating: number;
34867
+ };
34868
+ }, {
34869
+ totalRatedGames: number;
34870
+ commentsLeft: number;
34871
+ avgRating: number;
34872
+ avgRatings: {
34873
+ initialWindowRating: number;
34874
+ normalRating: number;
34875
+ weightedRating: number;
34876
+ };
34877
+ }>;
34114
34878
  cfb: z.ZodObject<{
34115
34879
  totalRatedGames: z.ZodNumber;
34116
34880
  commentsLeft: z.ZodNumber;
@@ -34356,6 +35120,16 @@ export declare const creatorPickSchema: z.ZodObject<{
34356
35120
  weightedRating: number;
34357
35121
  };
34358
35122
  };
35123
+ cwc: {
35124
+ totalRatedGames: number;
35125
+ commentsLeft: number;
35126
+ avgRating: number;
35127
+ avgRatings: {
35128
+ initialWindowRating: number;
35129
+ normalRating: number;
35130
+ weightedRating: number;
35131
+ };
35132
+ };
34359
35133
  }, {
34360
35134
  nba: {
34361
35135
  totalRatedGames: number;
@@ -34457,6 +35231,16 @@ export declare const creatorPickSchema: z.ZodObject<{
34457
35231
  weightedRating: number;
34458
35232
  };
34459
35233
  };
35234
+ cwc: {
35235
+ totalRatedGames: number;
35236
+ commentsLeft: number;
35237
+ avgRating: number;
35238
+ avgRatings: {
35239
+ initialWindowRating: number;
35240
+ normalRating: number;
35241
+ weightedRating: number;
35242
+ };
35243
+ };
34460
35244
  }>>;
34461
35245
  totalRatedGames: z.ZodOptional<z.ZodNumber>;
34462
35246
  commentsLeft: z.ZodOptional<z.ZodNumber>;
@@ -34515,10 +35299,10 @@ export declare const creatorPickSchema: z.ZodObject<{
34515
35299
  }>>;
34516
35300
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
34517
35301
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
34518
- lastSelectedLeague: z.ZodOptional<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<"global">]>>;
35302
+ lastSelectedLeague: z.ZodOptional<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<"global">]>>;
34519
35303
  lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
34520
35304
  lastSelectedRatingFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating:asc">, z.ZodLiteral<"rating:desc">, z.ZodLiteral<"createdAt:asc">, z.ZodLiteral<"createdAt:desc">, z.ZodLiteral<"userLikes:asc">, z.ZodLiteral<"userLikes:desc">]>>;
34521
- creatorLeague: z.ZodOptional<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<"global">]>>;
35305
+ creatorLeague: z.ZodOptional<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<"global">]>>;
34522
35306
  role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">]>>;
34523
35307
  preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
34524
35308
  wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
@@ -34641,7 +35425,7 @@ export declare const creatorPickSchema: z.ZodObject<{
34641
35425
  }>>;
34642
35426
  currentTier: z.ZodOptional<z.ZodNumber>;
34643
35427
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
34644
- league: z.ZodOptional<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<"global">]>>;
35428
+ league: z.ZodOptional<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<"global">]>>;
34645
35429
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
34646
35430
  }, "strip", z.ZodTypeAny, {
34647
35431
  id: string;
@@ -34665,7 +35449,7 @@ export declare const creatorPickSchema: z.ZodObject<{
34665
35449
  } | undefined;
34666
35450
  currentTier?: number | undefined;
34667
35451
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
34668
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
35452
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
34669
35453
  }, {
34670
35454
  id: string;
34671
35455
  name: string;
@@ -34688,7 +35472,7 @@ export declare const creatorPickSchema: z.ZodObject<{
34688
35472
  } | undefined;
34689
35473
  currentTier?: number | undefined;
34690
35474
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
34691
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
35475
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
34692
35476
  }>>>;
34693
35477
  repliesLeft: z.ZodOptional<z.ZodNumber>;
34694
35478
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -34757,7 +35541,7 @@ export declare const creatorPickSchema: z.ZodObject<{
34757
35541
  }>, "strip", z.ZodTypeAny, {
34758
35542
  round: number;
34759
35543
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
34760
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
35544
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
34761
35545
  startedAt: number;
34762
35546
  finishedAt: number;
34763
35547
  apiGameId: number;
@@ -34948,7 +35732,7 @@ export declare const creatorPickSchema: z.ZodObject<{
34948
35732
  }, {
34949
35733
  round: number;
34950
35734
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
34951
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
35735
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
34952
35736
  startedAt: number;
34953
35737
  finishedAt: number;
34954
35738
  apiGameId: number;
@@ -35144,7 +35928,7 @@ export declare const creatorPickSchema: z.ZodObject<{
35144
35928
  finishedAt: z.ZodNumber;
35145
35929
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
35146
35930
  apiGameId: z.ZodNumber;
35147
- league: 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<"global">]>;
35931
+ league: 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<"global">]>;
35148
35932
  homeTeam: z.ZodObject<{
35149
35933
  id: z.ZodOptional<z.ZodString>;
35150
35934
  apiTeamId: z.ZodNumber;
@@ -36429,6 +37213,42 @@ export declare const creatorPickSchema: z.ZodObject<{
36429
37213
  weightedRating: number;
36430
37214
  };
36431
37215
  }>;
37216
+ cwc: z.ZodObject<{
37217
+ totalRatedGames: z.ZodNumber;
37218
+ commentsLeft: z.ZodNumber;
37219
+ avgRating: z.ZodNumber;
37220
+ avgRatings: z.ZodObject<{
37221
+ initialWindowRating: z.ZodNumber;
37222
+ normalRating: z.ZodNumber;
37223
+ weightedRating: z.ZodNumber;
37224
+ }, "strip", z.ZodTypeAny, {
37225
+ initialWindowRating: number;
37226
+ normalRating: number;
37227
+ weightedRating: number;
37228
+ }, {
37229
+ initialWindowRating: number;
37230
+ normalRating: number;
37231
+ weightedRating: number;
37232
+ }>;
37233
+ }, "strip", z.ZodTypeAny, {
37234
+ totalRatedGames: number;
37235
+ commentsLeft: number;
37236
+ avgRating: number;
37237
+ avgRatings: {
37238
+ initialWindowRating: number;
37239
+ normalRating: number;
37240
+ weightedRating: number;
37241
+ };
37242
+ }, {
37243
+ totalRatedGames: number;
37244
+ commentsLeft: number;
37245
+ avgRating: number;
37246
+ avgRatings: {
37247
+ initialWindowRating: number;
37248
+ normalRating: number;
37249
+ weightedRating: number;
37250
+ };
37251
+ }>;
36432
37252
  cfb: z.ZodObject<{
36433
37253
  totalRatedGames: z.ZodNumber;
36434
37254
  commentsLeft: z.ZodNumber;
@@ -36674,6 +37494,16 @@ export declare const creatorPickSchema: z.ZodObject<{
36674
37494
  weightedRating: number;
36675
37495
  };
36676
37496
  };
37497
+ cwc: {
37498
+ totalRatedGames: number;
37499
+ commentsLeft: number;
37500
+ avgRating: number;
37501
+ avgRatings: {
37502
+ initialWindowRating: number;
37503
+ normalRating: number;
37504
+ weightedRating: number;
37505
+ };
37506
+ };
36677
37507
  }, {
36678
37508
  nba: {
36679
37509
  totalRatedGames: number;
@@ -36775,6 +37605,16 @@ export declare const creatorPickSchema: z.ZodObject<{
36775
37605
  weightedRating: number;
36776
37606
  };
36777
37607
  };
37608
+ cwc: {
37609
+ totalRatedGames: number;
37610
+ commentsLeft: number;
37611
+ avgRating: number;
37612
+ avgRatings: {
37613
+ initialWindowRating: number;
37614
+ normalRating: number;
37615
+ weightedRating: number;
37616
+ };
37617
+ };
36778
37618
  }>>;
36779
37619
  totalRatedGames: z.ZodOptional<z.ZodNumber>;
36780
37620
  commentsLeft: z.ZodOptional<z.ZodNumber>;
@@ -36833,10 +37673,10 @@ export declare const creatorPickSchema: z.ZodObject<{
36833
37673
  }>>;
36834
37674
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
36835
37675
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
36836
- lastSelectedLeague: z.ZodOptional<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<"global">]>>;
37676
+ lastSelectedLeague: z.ZodOptional<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<"global">]>>;
36837
37677
  lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
36838
37678
  lastSelectedRatingFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating:asc">, z.ZodLiteral<"rating:desc">, z.ZodLiteral<"createdAt:asc">, z.ZodLiteral<"createdAt:desc">, z.ZodLiteral<"userLikes:asc">, z.ZodLiteral<"userLikes:desc">]>>;
36839
- creatorLeague: z.ZodOptional<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<"global">]>>;
37679
+ creatorLeague: z.ZodOptional<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<"global">]>>;
36840
37680
  role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">]>>;
36841
37681
  preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
36842
37682
  wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
@@ -36959,7 +37799,7 @@ export declare const creatorPickSchema: z.ZodObject<{
36959
37799
  }>>;
36960
37800
  currentTier: z.ZodOptional<z.ZodNumber>;
36961
37801
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
36962
- league: z.ZodOptional<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<"global">]>>;
37802
+ league: z.ZodOptional<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<"global">]>>;
36963
37803
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
36964
37804
  }, "strip", z.ZodTypeAny, {
36965
37805
  id: string;
@@ -36983,7 +37823,7 @@ export declare const creatorPickSchema: z.ZodObject<{
36983
37823
  } | undefined;
36984
37824
  currentTier?: number | undefined;
36985
37825
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
36986
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
37826
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
36987
37827
  }, {
36988
37828
  id: string;
36989
37829
  name: string;
@@ -37006,7 +37846,7 @@ export declare const creatorPickSchema: z.ZodObject<{
37006
37846
  } | undefined;
37007
37847
  currentTier?: number | undefined;
37008
37848
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
37009
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
37849
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
37010
37850
  }>>>;
37011
37851
  repliesLeft: z.ZodOptional<z.ZodNumber>;
37012
37852
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -37081,7 +37921,7 @@ export declare const creatorPickSchema: z.ZodObject<{
37081
37921
  runnerOnThird: z.ZodOptional<z.ZodBoolean>;
37082
37922
  }>, "strip", z.ZodTypeAny, {
37083
37923
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
37084
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
37924
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
37085
37925
  startedAt: number;
37086
37926
  finishedAt: number;
37087
37927
  apiGameId: number;
@@ -37279,7 +38119,7 @@ export declare const creatorPickSchema: z.ZodObject<{
37279
38119
  runnerOnThird?: boolean | undefined;
37280
38120
  }, {
37281
38121
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
37282
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
38122
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
37283
38123
  startedAt: number;
37284
38124
  finishedAt: number;
37285
38125
  apiGameId: number;
@@ -37483,7 +38323,7 @@ export declare const creatorPickSchema: z.ZodObject<{
37483
38323
  finishedAt: z.ZodNumber;
37484
38324
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
37485
38325
  apiGameId: z.ZodNumber;
37486
- league: 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<"global">]>;
38326
+ league: 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<"global">]>;
37487
38327
  homeTeam: z.ZodObject<{
37488
38328
  id: z.ZodOptional<z.ZodString>;
37489
38329
  apiTeamId: z.ZodNumber;
@@ -38768,6 +39608,42 @@ export declare const creatorPickSchema: z.ZodObject<{
38768
39608
  weightedRating: number;
38769
39609
  };
38770
39610
  }>;
39611
+ cwc: z.ZodObject<{
39612
+ totalRatedGames: z.ZodNumber;
39613
+ commentsLeft: z.ZodNumber;
39614
+ avgRating: z.ZodNumber;
39615
+ avgRatings: z.ZodObject<{
39616
+ initialWindowRating: z.ZodNumber;
39617
+ normalRating: z.ZodNumber;
39618
+ weightedRating: z.ZodNumber;
39619
+ }, "strip", z.ZodTypeAny, {
39620
+ initialWindowRating: number;
39621
+ normalRating: number;
39622
+ weightedRating: number;
39623
+ }, {
39624
+ initialWindowRating: number;
39625
+ normalRating: number;
39626
+ weightedRating: number;
39627
+ }>;
39628
+ }, "strip", z.ZodTypeAny, {
39629
+ totalRatedGames: number;
39630
+ commentsLeft: number;
39631
+ avgRating: number;
39632
+ avgRatings: {
39633
+ initialWindowRating: number;
39634
+ normalRating: number;
39635
+ weightedRating: number;
39636
+ };
39637
+ }, {
39638
+ totalRatedGames: number;
39639
+ commentsLeft: number;
39640
+ avgRating: number;
39641
+ avgRatings: {
39642
+ initialWindowRating: number;
39643
+ normalRating: number;
39644
+ weightedRating: number;
39645
+ };
39646
+ }>;
38771
39647
  cfb: z.ZodObject<{
38772
39648
  totalRatedGames: z.ZodNumber;
38773
39649
  commentsLeft: z.ZodNumber;
@@ -39013,6 +39889,16 @@ export declare const creatorPickSchema: z.ZodObject<{
39013
39889
  weightedRating: number;
39014
39890
  };
39015
39891
  };
39892
+ cwc: {
39893
+ totalRatedGames: number;
39894
+ commentsLeft: number;
39895
+ avgRating: number;
39896
+ avgRatings: {
39897
+ initialWindowRating: number;
39898
+ normalRating: number;
39899
+ weightedRating: number;
39900
+ };
39901
+ };
39016
39902
  }, {
39017
39903
  nba: {
39018
39904
  totalRatedGames: number;
@@ -39114,6 +40000,16 @@ export declare const creatorPickSchema: z.ZodObject<{
39114
40000
  weightedRating: number;
39115
40001
  };
39116
40002
  };
40003
+ cwc: {
40004
+ totalRatedGames: number;
40005
+ commentsLeft: number;
40006
+ avgRating: number;
40007
+ avgRatings: {
40008
+ initialWindowRating: number;
40009
+ normalRating: number;
40010
+ weightedRating: number;
40011
+ };
40012
+ };
39117
40013
  }>>;
39118
40014
  totalRatedGames: z.ZodOptional<z.ZodNumber>;
39119
40015
  commentsLeft: z.ZodOptional<z.ZodNumber>;
@@ -39172,10 +40068,10 @@ export declare const creatorPickSchema: z.ZodObject<{
39172
40068
  }>>;
39173
40069
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
39174
40070
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
39175
- lastSelectedLeague: z.ZodOptional<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<"global">]>>;
40071
+ lastSelectedLeague: z.ZodOptional<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<"global">]>>;
39176
40072
  lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
39177
40073
  lastSelectedRatingFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating:asc">, z.ZodLiteral<"rating:desc">, z.ZodLiteral<"createdAt:asc">, z.ZodLiteral<"createdAt:desc">, z.ZodLiteral<"userLikes:asc">, z.ZodLiteral<"userLikes:desc">]>>;
39178
- creatorLeague: z.ZodOptional<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<"global">]>>;
40074
+ creatorLeague: z.ZodOptional<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<"global">]>>;
39179
40075
  role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">]>>;
39180
40076
  preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
39181
40077
  wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
@@ -39298,7 +40194,7 @@ export declare const creatorPickSchema: z.ZodObject<{
39298
40194
  }>>;
39299
40195
  currentTier: z.ZodOptional<z.ZodNumber>;
39300
40196
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
39301
- league: z.ZodOptional<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<"global">]>>;
40197
+ league: z.ZodOptional<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<"global">]>>;
39302
40198
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
39303
40199
  }, "strip", z.ZodTypeAny, {
39304
40200
  id: string;
@@ -39322,7 +40218,7 @@ export declare const creatorPickSchema: z.ZodObject<{
39322
40218
  } | undefined;
39323
40219
  currentTier?: number | undefined;
39324
40220
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
39325
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
40221
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
39326
40222
  }, {
39327
40223
  id: string;
39328
40224
  name: string;
@@ -39345,7 +40241,7 @@ export declare const creatorPickSchema: z.ZodObject<{
39345
40241
  } | undefined;
39346
40242
  currentTier?: number | undefined;
39347
40243
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
39348
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
40244
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
39349
40245
  }>>>;
39350
40246
  repliesLeft: z.ZodOptional<z.ZodNumber>;
39351
40247
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -39390,7 +40286,7 @@ export declare const creatorPickSchema: z.ZodObject<{
39390
40286
  allCities: z.ZodOptional<z.ZodString>;
39391
40287
  listCount: z.ZodOptional<z.ZodNumber>;
39392
40288
  }, {
39393
- league: z.ZodUnion<[z.ZodLiteral<"epl">, z.ZodLiteral<"mls">]>;
40289
+ league: z.ZodUnion<[z.ZodLiteral<"epl">, z.ZodLiteral<"mls">, z.ZodLiteral<"cwc">]>;
39394
40290
  week: z.ZodNumber;
39395
40291
  period: z.ZodString;
39396
40292
  clock: z.ZodString;
@@ -39513,7 +40409,7 @@ export declare const creatorPickSchema: z.ZodObject<{
39513
40409
  }>, "strip", z.ZodTypeAny, {
39514
40410
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
39515
40411
  week: number;
39516
- league: "epl" | "mls";
40412
+ league: "epl" | "mls" | "cwc";
39517
40413
  startedAt: number;
39518
40414
  finishedAt: number;
39519
40415
  apiGameId: number;
@@ -39706,7 +40602,7 @@ export declare const creatorPickSchema: z.ZodObject<{
39706
40602
  }, {
39707
40603
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
39708
40604
  week: number;
39709
- league: "epl" | "mls";
40605
+ league: "epl" | "mls" | "cwc";
39710
40606
  startedAt: number;
39711
40607
  finishedAt: number;
39712
40608
  apiGameId: number;
@@ -39904,7 +40800,7 @@ export declare const creatorPickSchema: z.ZodObject<{
39904
40800
  finishedAt: z.ZodNumber;
39905
40801
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
39906
40802
  apiGameId: z.ZodNumber;
39907
- league: 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<"global">]>;
40803
+ league: 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<"global">]>;
39908
40804
  homeTeam: z.ZodObject<{
39909
40805
  id: z.ZodOptional<z.ZodString>;
39910
40806
  apiTeamId: z.ZodNumber;
@@ -41189,6 +42085,42 @@ export declare const creatorPickSchema: z.ZodObject<{
41189
42085
  weightedRating: number;
41190
42086
  };
41191
42087
  }>;
42088
+ cwc: z.ZodObject<{
42089
+ totalRatedGames: z.ZodNumber;
42090
+ commentsLeft: z.ZodNumber;
42091
+ avgRating: z.ZodNumber;
42092
+ avgRatings: z.ZodObject<{
42093
+ initialWindowRating: z.ZodNumber;
42094
+ normalRating: z.ZodNumber;
42095
+ weightedRating: z.ZodNumber;
42096
+ }, "strip", z.ZodTypeAny, {
42097
+ initialWindowRating: number;
42098
+ normalRating: number;
42099
+ weightedRating: number;
42100
+ }, {
42101
+ initialWindowRating: number;
42102
+ normalRating: number;
42103
+ weightedRating: number;
42104
+ }>;
42105
+ }, "strip", z.ZodTypeAny, {
42106
+ totalRatedGames: number;
42107
+ commentsLeft: number;
42108
+ avgRating: number;
42109
+ avgRatings: {
42110
+ initialWindowRating: number;
42111
+ normalRating: number;
42112
+ weightedRating: number;
42113
+ };
42114
+ }, {
42115
+ totalRatedGames: number;
42116
+ commentsLeft: number;
42117
+ avgRating: number;
42118
+ avgRatings: {
42119
+ initialWindowRating: number;
42120
+ normalRating: number;
42121
+ weightedRating: number;
42122
+ };
42123
+ }>;
41192
42124
  cfb: z.ZodObject<{
41193
42125
  totalRatedGames: z.ZodNumber;
41194
42126
  commentsLeft: z.ZodNumber;
@@ -41434,6 +42366,16 @@ export declare const creatorPickSchema: z.ZodObject<{
41434
42366
  weightedRating: number;
41435
42367
  };
41436
42368
  };
42369
+ cwc: {
42370
+ totalRatedGames: number;
42371
+ commentsLeft: number;
42372
+ avgRating: number;
42373
+ avgRatings: {
42374
+ initialWindowRating: number;
42375
+ normalRating: number;
42376
+ weightedRating: number;
42377
+ };
42378
+ };
41437
42379
  }, {
41438
42380
  nba: {
41439
42381
  totalRatedGames: number;
@@ -41535,6 +42477,16 @@ export declare const creatorPickSchema: z.ZodObject<{
41535
42477
  weightedRating: number;
41536
42478
  };
41537
42479
  };
42480
+ cwc: {
42481
+ totalRatedGames: number;
42482
+ commentsLeft: number;
42483
+ avgRating: number;
42484
+ avgRatings: {
42485
+ initialWindowRating: number;
42486
+ normalRating: number;
42487
+ weightedRating: number;
42488
+ };
42489
+ };
41538
42490
  }>>;
41539
42491
  totalRatedGames: z.ZodOptional<z.ZodNumber>;
41540
42492
  commentsLeft: z.ZodOptional<z.ZodNumber>;
@@ -41593,10 +42545,10 @@ export declare const creatorPickSchema: z.ZodObject<{
41593
42545
  }>>;
41594
42546
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
41595
42547
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
41596
- lastSelectedLeague: z.ZodOptional<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<"global">]>>;
42548
+ lastSelectedLeague: z.ZodOptional<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<"global">]>>;
41597
42549
  lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
41598
42550
  lastSelectedRatingFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating:asc">, z.ZodLiteral<"rating:desc">, z.ZodLiteral<"createdAt:asc">, z.ZodLiteral<"createdAt:desc">, z.ZodLiteral<"userLikes:asc">, z.ZodLiteral<"userLikes:desc">]>>;
41599
- creatorLeague: z.ZodOptional<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<"global">]>>;
42551
+ creatorLeague: z.ZodOptional<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<"global">]>>;
41600
42552
  role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">]>>;
41601
42553
  preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
41602
42554
  wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
@@ -41719,7 +42671,7 @@ export declare const creatorPickSchema: z.ZodObject<{
41719
42671
  }>>;
41720
42672
  currentTier: z.ZodOptional<z.ZodNumber>;
41721
42673
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
41722
- league: z.ZodOptional<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<"global">]>>;
42674
+ league: z.ZodOptional<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<"global">]>>;
41723
42675
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
41724
42676
  }, "strip", z.ZodTypeAny, {
41725
42677
  id: string;
@@ -41743,7 +42695,7 @@ export declare const creatorPickSchema: z.ZodObject<{
41743
42695
  } | undefined;
41744
42696
  currentTier?: number | undefined;
41745
42697
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
41746
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
42698
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
41747
42699
  }, {
41748
42700
  id: string;
41749
42701
  name: string;
@@ -41766,7 +42718,7 @@ export declare const creatorPickSchema: z.ZodObject<{
41766
42718
  } | undefined;
41767
42719
  currentTier?: number | undefined;
41768
42720
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
41769
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
42721
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
41770
42722
  }>>>;
41771
42723
  repliesLeft: z.ZodOptional<z.ZodNumber>;
41772
42724
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -41872,7 +42824,7 @@ export declare const creatorPickSchema: z.ZodObject<{
41872
42824
  }>, "strip", z.ZodTypeAny, {
41873
42825
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
41874
42826
  quarter: string | null;
41875
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
42827
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
41876
42828
  startedAt: number;
41877
42829
  finishedAt: number;
41878
42830
  apiGameId: string;
@@ -42083,7 +43035,7 @@ export declare const creatorPickSchema: z.ZodObject<{
42083
43035
  }, {
42084
43036
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
42085
43037
  quarter: string | null;
42086
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
43038
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
42087
43039
  startedAt: number;
42088
43040
  finishedAt: number;
42089
43041
  apiGameId: string;
@@ -42299,7 +43251,7 @@ export declare const creatorPickSchema: z.ZodObject<{
42299
43251
  finishedAt: z.ZodNumber;
42300
43252
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
42301
43253
  apiGameId: z.ZodNumber;
42302
- league: 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<"global">]>;
43254
+ league: 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<"global">]>;
42303
43255
  homeTeam: z.ZodObject<{
42304
43256
  id: z.ZodOptional<z.ZodString>;
42305
43257
  apiTeamId: z.ZodNumber;
@@ -43584,6 +44536,42 @@ export declare const creatorPickSchema: z.ZodObject<{
43584
44536
  weightedRating: number;
43585
44537
  };
43586
44538
  }>;
44539
+ cwc: z.ZodObject<{
44540
+ totalRatedGames: z.ZodNumber;
44541
+ commentsLeft: z.ZodNumber;
44542
+ avgRating: z.ZodNumber;
44543
+ avgRatings: z.ZodObject<{
44544
+ initialWindowRating: z.ZodNumber;
44545
+ normalRating: z.ZodNumber;
44546
+ weightedRating: z.ZodNumber;
44547
+ }, "strip", z.ZodTypeAny, {
44548
+ initialWindowRating: number;
44549
+ normalRating: number;
44550
+ weightedRating: number;
44551
+ }, {
44552
+ initialWindowRating: number;
44553
+ normalRating: number;
44554
+ weightedRating: number;
44555
+ }>;
44556
+ }, "strip", z.ZodTypeAny, {
44557
+ totalRatedGames: number;
44558
+ commentsLeft: number;
44559
+ avgRating: number;
44560
+ avgRatings: {
44561
+ initialWindowRating: number;
44562
+ normalRating: number;
44563
+ weightedRating: number;
44564
+ };
44565
+ }, {
44566
+ totalRatedGames: number;
44567
+ commentsLeft: number;
44568
+ avgRating: number;
44569
+ avgRatings: {
44570
+ initialWindowRating: number;
44571
+ normalRating: number;
44572
+ weightedRating: number;
44573
+ };
44574
+ }>;
43587
44575
  cfb: z.ZodObject<{
43588
44576
  totalRatedGames: z.ZodNumber;
43589
44577
  commentsLeft: z.ZodNumber;
@@ -43829,6 +44817,16 @@ export declare const creatorPickSchema: z.ZodObject<{
43829
44817
  weightedRating: number;
43830
44818
  };
43831
44819
  };
44820
+ cwc: {
44821
+ totalRatedGames: number;
44822
+ commentsLeft: number;
44823
+ avgRating: number;
44824
+ avgRatings: {
44825
+ initialWindowRating: number;
44826
+ normalRating: number;
44827
+ weightedRating: number;
44828
+ };
44829
+ };
43832
44830
  }, {
43833
44831
  nba: {
43834
44832
  totalRatedGames: number;
@@ -43930,6 +44928,16 @@ export declare const creatorPickSchema: z.ZodObject<{
43930
44928
  weightedRating: number;
43931
44929
  };
43932
44930
  };
44931
+ cwc: {
44932
+ totalRatedGames: number;
44933
+ commentsLeft: number;
44934
+ avgRating: number;
44935
+ avgRatings: {
44936
+ initialWindowRating: number;
44937
+ normalRating: number;
44938
+ weightedRating: number;
44939
+ };
44940
+ };
43933
44941
  }>>;
43934
44942
  totalRatedGames: z.ZodOptional<z.ZodNumber>;
43935
44943
  commentsLeft: z.ZodOptional<z.ZodNumber>;
@@ -43988,10 +44996,10 @@ export declare const creatorPickSchema: z.ZodObject<{
43988
44996
  }>>;
43989
44997
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
43990
44998
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
43991
- lastSelectedLeague: z.ZodOptional<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<"global">]>>;
44999
+ lastSelectedLeague: z.ZodOptional<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<"global">]>>;
43992
45000
  lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
43993
45001
  lastSelectedRatingFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating:asc">, z.ZodLiteral<"rating:desc">, z.ZodLiteral<"createdAt:asc">, z.ZodLiteral<"createdAt:desc">, z.ZodLiteral<"userLikes:asc">, z.ZodLiteral<"userLikes:desc">]>>;
43994
- creatorLeague: z.ZodOptional<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<"global">]>>;
45002
+ creatorLeague: z.ZodOptional<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<"global">]>>;
43995
45003
  role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">]>>;
43996
45004
  preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
43997
45005
  wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
@@ -44114,7 +45122,7 @@ export declare const creatorPickSchema: z.ZodObject<{
44114
45122
  }>>;
44115
45123
  currentTier: z.ZodOptional<z.ZodNumber>;
44116
45124
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
44117
- league: z.ZodOptional<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<"global">]>>;
45125
+ league: z.ZodOptional<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<"global">]>>;
44118
45126
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
44119
45127
  }, "strip", z.ZodTypeAny, {
44120
45128
  id: string;
@@ -44138,7 +45146,7 @@ export declare const creatorPickSchema: z.ZodObject<{
44138
45146
  } | undefined;
44139
45147
  currentTier?: number | undefined;
44140
45148
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
44141
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
45149
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
44142
45150
  }, {
44143
45151
  id: string;
44144
45152
  name: string;
@@ -44161,7 +45169,7 @@ export declare const creatorPickSchema: z.ZodObject<{
44161
45169
  } | undefined;
44162
45170
  currentTier?: number | undefined;
44163
45171
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
44164
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
45172
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
44165
45173
  }>>>;
44166
45174
  repliesLeft: z.ZodOptional<z.ZodNumber>;
44167
45175
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -44263,7 +45271,7 @@ export declare const creatorPickSchema: z.ZodObject<{
44263
45271
  }>, "strip", z.ZodTypeAny, {
44264
45272
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
44265
45273
  quarter: string | null;
44266
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
45274
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
44267
45275
  startedAt: number;
44268
45276
  finishedAt: number;
44269
45277
  apiGameId: number;
@@ -44467,7 +45475,7 @@ export declare const creatorPickSchema: z.ZodObject<{
44467
45475
  }, {
44468
45476
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
44469
45477
  quarter: string | null;
44470
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
45478
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
44471
45479
  startedAt: number;
44472
45480
  finishedAt: number;
44473
45481
  apiGameId: number;
@@ -44676,7 +45684,7 @@ export declare const creatorPickSchema: z.ZodObject<{
44676
45684
  finishedAt: z.ZodNumber;
44677
45685
  ratingWindowClosedAt: z.ZodOptional<z.ZodNumber>;
44678
45686
  apiGameId: z.ZodNumber;
44679
- league: 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<"global">]>;
45687
+ league: 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<"global">]>;
44680
45688
  homeTeam: z.ZodObject<{
44681
45689
  id: z.ZodOptional<z.ZodString>;
44682
45690
  apiTeamId: z.ZodNumber;
@@ -45961,6 +46969,42 @@ export declare const creatorPickSchema: z.ZodObject<{
45961
46969
  weightedRating: number;
45962
46970
  };
45963
46971
  }>;
46972
+ cwc: z.ZodObject<{
46973
+ totalRatedGames: z.ZodNumber;
46974
+ commentsLeft: z.ZodNumber;
46975
+ avgRating: z.ZodNumber;
46976
+ avgRatings: z.ZodObject<{
46977
+ initialWindowRating: z.ZodNumber;
46978
+ normalRating: z.ZodNumber;
46979
+ weightedRating: z.ZodNumber;
46980
+ }, "strip", z.ZodTypeAny, {
46981
+ initialWindowRating: number;
46982
+ normalRating: number;
46983
+ weightedRating: number;
46984
+ }, {
46985
+ initialWindowRating: number;
46986
+ normalRating: number;
46987
+ weightedRating: number;
46988
+ }>;
46989
+ }, "strip", z.ZodTypeAny, {
46990
+ totalRatedGames: number;
46991
+ commentsLeft: number;
46992
+ avgRating: number;
46993
+ avgRatings: {
46994
+ initialWindowRating: number;
46995
+ normalRating: number;
46996
+ weightedRating: number;
46997
+ };
46998
+ }, {
46999
+ totalRatedGames: number;
47000
+ commentsLeft: number;
47001
+ avgRating: number;
47002
+ avgRatings: {
47003
+ initialWindowRating: number;
47004
+ normalRating: number;
47005
+ weightedRating: number;
47006
+ };
47007
+ }>;
45964
47008
  cfb: z.ZodObject<{
45965
47009
  totalRatedGames: z.ZodNumber;
45966
47010
  commentsLeft: z.ZodNumber;
@@ -46206,6 +47250,16 @@ export declare const creatorPickSchema: z.ZodObject<{
46206
47250
  weightedRating: number;
46207
47251
  };
46208
47252
  };
47253
+ cwc: {
47254
+ totalRatedGames: number;
47255
+ commentsLeft: number;
47256
+ avgRating: number;
47257
+ avgRatings: {
47258
+ initialWindowRating: number;
47259
+ normalRating: number;
47260
+ weightedRating: number;
47261
+ };
47262
+ };
46209
47263
  }, {
46210
47264
  nba: {
46211
47265
  totalRatedGames: number;
@@ -46307,6 +47361,16 @@ export declare const creatorPickSchema: z.ZodObject<{
46307
47361
  weightedRating: number;
46308
47362
  };
46309
47363
  };
47364
+ cwc: {
47365
+ totalRatedGames: number;
47366
+ commentsLeft: number;
47367
+ avgRating: number;
47368
+ avgRatings: {
47369
+ initialWindowRating: number;
47370
+ normalRating: number;
47371
+ weightedRating: number;
47372
+ };
47373
+ };
46310
47374
  }>>;
46311
47375
  totalRatedGames: z.ZodOptional<z.ZodNumber>;
46312
47376
  commentsLeft: z.ZodOptional<z.ZodNumber>;
@@ -46365,10 +47429,10 @@ export declare const creatorPickSchema: z.ZodObject<{
46365
47429
  }>>;
46366
47430
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
46367
47431
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
46368
- lastSelectedLeague: z.ZodOptional<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<"global">]>>;
47432
+ lastSelectedLeague: z.ZodOptional<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<"global">]>>;
46369
47433
  lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
46370
47434
  lastSelectedRatingFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating:asc">, z.ZodLiteral<"rating:desc">, z.ZodLiteral<"createdAt:asc">, z.ZodLiteral<"createdAt:desc">, z.ZodLiteral<"userLikes:asc">, z.ZodLiteral<"userLikes:desc">]>>;
46371
- creatorLeague: z.ZodOptional<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<"global">]>>;
47435
+ creatorLeague: z.ZodOptional<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<"global">]>>;
46372
47436
  role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">]>>;
46373
47437
  preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
46374
47438
  wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
@@ -46491,7 +47555,7 @@ export declare const creatorPickSchema: z.ZodObject<{
46491
47555
  }>>;
46492
47556
  currentTier: z.ZodOptional<z.ZodNumber>;
46493
47557
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
46494
- league: z.ZodOptional<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<"global">]>>;
47558
+ league: z.ZodOptional<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<"global">]>>;
46495
47559
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
46496
47560
  }, "strip", z.ZodTypeAny, {
46497
47561
  id: string;
@@ -46515,7 +47579,7 @@ export declare const creatorPickSchema: z.ZodObject<{
46515
47579
  } | undefined;
46516
47580
  currentTier?: number | undefined;
46517
47581
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
46518
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
47582
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
46519
47583
  }, {
46520
47584
  id: string;
46521
47585
  name: string;
@@ -46538,7 +47602,7 @@ export declare const creatorPickSchema: z.ZodObject<{
46538
47602
  } | undefined;
46539
47603
  currentTier?: number | undefined;
46540
47604
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
46541
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
47605
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
46542
47606
  }>>>;
46543
47607
  repliesLeft: z.ZodOptional<z.ZodNumber>;
46544
47608
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -46592,7 +47656,7 @@ export declare const creatorPickSchema: z.ZodObject<{
46592
47656
  hadShootout: z.ZodBoolean;
46593
47657
  }>, "strip", z.ZodTypeAny, {
46594
47658
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
46595
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
47659
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
46596
47660
  startedAt: number;
46597
47661
  finishedAt: number;
46598
47662
  apiGameId: number;
@@ -46776,7 +47840,7 @@ export declare const creatorPickSchema: z.ZodObject<{
46776
47840
  listCount?: number | undefined;
46777
47841
  }, {
46778
47842
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
46779
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
47843
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
46780
47844
  startedAt: number;
46781
47845
  finishedAt: number;
46782
47846
  apiGameId: number;
@@ -47183,6 +48247,42 @@ export declare const creatorPickSchema: z.ZodObject<{
47183
48247
  weightedRating: number;
47184
48248
  };
47185
48249
  }>;
48250
+ cwc: z.ZodObject<{
48251
+ totalRatedGames: z.ZodNumber;
48252
+ commentsLeft: z.ZodNumber;
48253
+ avgRating: z.ZodNumber;
48254
+ avgRatings: z.ZodObject<{
48255
+ initialWindowRating: z.ZodNumber;
48256
+ normalRating: z.ZodNumber;
48257
+ weightedRating: z.ZodNumber;
48258
+ }, "strip", z.ZodTypeAny, {
48259
+ initialWindowRating: number;
48260
+ normalRating: number;
48261
+ weightedRating: number;
48262
+ }, {
48263
+ initialWindowRating: number;
48264
+ normalRating: number;
48265
+ weightedRating: number;
48266
+ }>;
48267
+ }, "strip", z.ZodTypeAny, {
48268
+ totalRatedGames: number;
48269
+ commentsLeft: number;
48270
+ avgRating: number;
48271
+ avgRatings: {
48272
+ initialWindowRating: number;
48273
+ normalRating: number;
48274
+ weightedRating: number;
48275
+ };
48276
+ }, {
48277
+ totalRatedGames: number;
48278
+ commentsLeft: number;
48279
+ avgRating: number;
48280
+ avgRatings: {
48281
+ initialWindowRating: number;
48282
+ normalRating: number;
48283
+ weightedRating: number;
48284
+ };
48285
+ }>;
47186
48286
  cfb: z.ZodObject<{
47187
48287
  totalRatedGames: z.ZodNumber;
47188
48288
  commentsLeft: z.ZodNumber;
@@ -47428,6 +48528,16 @@ export declare const creatorPickSchema: z.ZodObject<{
47428
48528
  weightedRating: number;
47429
48529
  };
47430
48530
  };
48531
+ cwc: {
48532
+ totalRatedGames: number;
48533
+ commentsLeft: number;
48534
+ avgRating: number;
48535
+ avgRatings: {
48536
+ initialWindowRating: number;
48537
+ normalRating: number;
48538
+ weightedRating: number;
48539
+ };
48540
+ };
47431
48541
  }, {
47432
48542
  nba: {
47433
48543
  totalRatedGames: number;
@@ -47529,6 +48639,16 @@ export declare const creatorPickSchema: z.ZodObject<{
47529
48639
  weightedRating: number;
47530
48640
  };
47531
48641
  };
48642
+ cwc: {
48643
+ totalRatedGames: number;
48644
+ commentsLeft: number;
48645
+ avgRating: number;
48646
+ avgRatings: {
48647
+ initialWindowRating: number;
48648
+ normalRating: number;
48649
+ weightedRating: number;
48650
+ };
48651
+ };
47532
48652
  }>>;
47533
48653
  totalRatedGames: z.ZodOptional<z.ZodNumber>;
47534
48654
  commentsLeft: z.ZodOptional<z.ZodNumber>;
@@ -47587,10 +48707,10 @@ export declare const creatorPickSchema: z.ZodObject<{
47587
48707
  }>>;
47588
48708
  spoilersEnabled: z.ZodOptional<z.ZodBoolean>;
47589
48709
  viewedChangelogs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
47590
- lastSelectedLeague: z.ZodOptional<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<"global">]>>;
48710
+ lastSelectedLeague: z.ZodOptional<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<"global">]>>;
47591
48711
  lastSelectedFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Today">, z.ZodLiteral<"This Week">, z.ZodLiteral<"This Season">, z.ZodLiteral<"This Month">, z.ZodLiteral<"This Year">, z.ZodLiteral<"All">, z.ZodLiteral<"All Time">, z.ZodLiteral<"12h">, z.ZodLiteral<"daily">, z.ZodLiteral<"weekly">]>>;
47592
48712
  lastSelectedRatingFilter: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"rating:asc">, z.ZodLiteral<"rating:desc">, z.ZodLiteral<"createdAt:asc">, z.ZodLiteral<"createdAt:desc">, z.ZodLiteral<"userLikes:asc">, z.ZodLiteral<"userLikes:desc">]>>;
47593
- creatorLeague: z.ZodOptional<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<"global">]>>;
48713
+ creatorLeague: z.ZodOptional<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<"global">]>>;
47594
48714
  role: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"Admin">, z.ZodLiteral<"Creator">]>>;
47595
48715
  preferTraditionalTeamLayout: z.ZodOptional<z.ZodBoolean>;
47596
48716
  wasPromptedForReview: z.ZodOptional<z.ZodBoolean>;
@@ -47713,7 +48833,7 @@ export declare const creatorPickSchema: z.ZodObject<{
47713
48833
  }>>;
47714
48834
  currentTier: z.ZodOptional<z.ZodNumber>;
47715
48835
  type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"global">, z.ZodLiteral<"sport">, z.ZodLiteral<"league">]>>;
47716
- league: z.ZodOptional<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<"global">]>>;
48836
+ league: z.ZodOptional<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<"global">]>>;
47717
48837
  sport: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"basketball">, z.ZodLiteral<"football">, z.ZodLiteral<"soccer">, z.ZodLiteral<"baseball">, z.ZodLiteral<"hockey">]>>;
47718
48838
  }, "strip", z.ZodTypeAny, {
47719
48839
  id: string;
@@ -47737,7 +48857,7 @@ export declare const creatorPickSchema: z.ZodObject<{
47737
48857
  } | undefined;
47738
48858
  currentTier?: number | undefined;
47739
48859
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
47740
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
48860
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
47741
48861
  }, {
47742
48862
  id: string;
47743
48863
  name: string;
@@ -47760,7 +48880,7 @@ export declare const creatorPickSchema: z.ZodObject<{
47760
48880
  } | undefined;
47761
48881
  currentTier?: number | undefined;
47762
48882
  sport?: "basketball" | "football" | "soccer" | "baseball" | "hockey" | undefined;
47763
- league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | undefined;
48883
+ league?: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc" | undefined;
47764
48884
  }>>>;
47765
48885
  repliesLeft: z.ZodOptional<z.ZodNumber>;
47766
48886
  listRepliesLeft: z.ZodOptional<z.ZodNumber>;
@@ -47791,7 +48911,7 @@ export declare const creatorPickSchema: z.ZodObject<{
47791
48911
  game: {
47792
48912
  round: number;
47793
48913
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
47794
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
48914
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
47795
48915
  startedAt: number;
47796
48916
  finishedAt: number;
47797
48917
  apiGameId: number;
@@ -47981,7 +49101,7 @@ export declare const creatorPickSchema: z.ZodObject<{
47981
49101
  period?: string | undefined;
47982
49102
  } | {
47983
49103
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
47984
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
49104
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
47985
49105
  startedAt: number;
47986
49106
  finishedAt: number;
47987
49107
  apiGameId: number;
@@ -48180,7 +49300,7 @@ export declare const creatorPickSchema: z.ZodObject<{
48180
49300
  } | {
48181
49301
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
48182
49302
  week: number;
48183
- league: "epl" | "mls";
49303
+ league: "epl" | "mls" | "cwc";
48184
49304
  startedAt: number;
48185
49305
  finishedAt: number;
48186
49306
  apiGameId: number;
@@ -48373,7 +49493,7 @@ export declare const creatorPickSchema: z.ZodObject<{
48373
49493
  } | {
48374
49494
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
48375
49495
  quarter: string | null;
48376
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
49496
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
48377
49497
  startedAt: number;
48378
49498
  finishedAt: number;
48379
49499
  apiGameId: string;
@@ -48584,7 +49704,7 @@ export declare const creatorPickSchema: z.ZodObject<{
48584
49704
  } | {
48585
49705
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
48586
49706
  quarter: string | null;
48587
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
49707
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
48588
49708
  startedAt: number;
48589
49709
  finishedAt: number;
48590
49710
  apiGameId: number;
@@ -48787,7 +49907,7 @@ export declare const creatorPickSchema: z.ZodObject<{
48787
49907
  } | undefined;
48788
49908
  } | {
48789
49909
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
48790
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
49910
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
48791
49911
  startedAt: number;
48792
49912
  finishedAt: number;
48793
49913
  apiGameId: number;
@@ -48983,7 +50103,7 @@ export declare const creatorPickSchema: z.ZodObject<{
48983
50103
  game: {
48984
50104
  round: number;
48985
50105
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
48986
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
50106
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
48987
50107
  startedAt: number;
48988
50108
  finishedAt: number;
48989
50109
  apiGameId: number;
@@ -49173,7 +50293,7 @@ export declare const creatorPickSchema: z.ZodObject<{
49173
50293
  period?: string | undefined;
49174
50294
  } | {
49175
50295
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
49176
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
50296
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
49177
50297
  startedAt: number;
49178
50298
  finishedAt: number;
49179
50299
  apiGameId: number;
@@ -49372,7 +50492,7 @@ export declare const creatorPickSchema: z.ZodObject<{
49372
50492
  } | {
49373
50493
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
49374
50494
  week: number;
49375
- league: "epl" | "mls";
50495
+ league: "epl" | "mls" | "cwc";
49376
50496
  startedAt: number;
49377
50497
  finishedAt: number;
49378
50498
  apiGameId: number;
@@ -49565,7 +50685,7 @@ export declare const creatorPickSchema: z.ZodObject<{
49565
50685
  } | {
49566
50686
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
49567
50687
  quarter: string | null;
49568
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
50688
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
49569
50689
  startedAt: number;
49570
50690
  finishedAt: number;
49571
50691
  apiGameId: string;
@@ -49776,7 +50896,7 @@ export declare const creatorPickSchema: z.ZodObject<{
49776
50896
  } | {
49777
50897
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
49778
50898
  quarter: string | null;
49779
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
50899
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
49780
50900
  startedAt: number;
49781
50901
  finishedAt: number;
49782
50902
  apiGameId: number;
@@ -49979,7 +51099,7 @@ export declare const creatorPickSchema: z.ZodObject<{
49979
51099
  } | undefined;
49980
51100
  } | {
49981
51101
  status: "canceled" | "live" | "scheduled" | "final" | "postponed";
49982
- league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba";
51102
+ league: "global" | "nba" | "ncaa" | "nfl" | "nhl" | "mlb" | "cbb" | "cfb" | "epl" | "mls" | "wnba" | "cwc";
49983
51103
  startedAt: number;
49984
51104
  finishedAt: number;
49985
51105
  apiGameId: number;