rategame-shared 1.1.254 → 1.1.256

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.
@@ -65,7 +65,7 @@ export declare const LEAGUE_CONFIG: {
65
65
  };
66
66
  readonly wnba: {
67
67
  readonly playersPath: "leagues/wnba/teams";
68
- readonly votingEnabled: false;
68
+ readonly votingEnabled: true;
69
69
  readonly displayName: "WNBA";
70
70
  };
71
71
  readonly global: {
@@ -133,7 +133,7 @@ export declare const getLeagueConfig: (league: LeagueSlug) => {
133
133
  readonly displayName: "College Football";
134
134
  } | {
135
135
  readonly playersPath: "leagues/wnba/teams";
136
- readonly votingEnabled: false;
136
+ readonly votingEnabled: true;
137
137
  readonly displayName: "WNBA";
138
138
  } | {
139
139
  readonly playersPath: "";
@@ -11,17 +11,12 @@ exports.SUPPORTED_LEAGUES = [
11
11
  "mlb",
12
12
  "mls",
13
13
  "epl",
14
+ "wnba",
14
15
  ];
15
16
  /**
16
17
  * Leagues that do not support player voting functionality
17
18
  */
18
- exports.UNSUPPORTED_LEAGUES = [
19
- "cwc",
20
- "cbb",
21
- "ncaa",
22
- "cfb",
23
- "wnba",
24
- ];
19
+ exports.UNSUPPORTED_LEAGUES = ["cwc", "cbb", "ncaa", "cfb"];
25
20
  /**
26
21
  * Configuration object for league-specific settings
27
22
  */
@@ -78,7 +73,7 @@ exports.LEAGUE_CONFIG = {
78
73
  },
79
74
  wnba: {
80
75
  playersPath: "leagues/wnba/teams",
81
- votingEnabled: false,
76
+ votingEnabled: true,
82
77
  displayName: "WNBA",
83
78
  },
84
79
  global: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rategame-shared",
3
- "version": "1.1.254",
3
+ "version": "1.1.256",
4
4
  "description": "This package contains shared resources for the Rate Game project.",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",