black-diamond-shared 1.0.39 → 1.0.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -1834,6 +1834,9 @@ declare const betTypes: {
1834
1834
  };
1835
1835
  };
1836
1836
 
1837
+ interface BetSelectionWithFixture extends Omit<BetSelection, "fixture"> {
1838
+ fixture: Fixture;
1839
+ }
1837
1840
  interface BetSelection {
1838
1841
  betType: BetTypes;
1839
1842
  fixture: string;
@@ -1989,4 +1992,4 @@ declare const getMeanModeMedian: (numbers: number[]) => {
1989
1992
  mode: number;
1990
1993
  };
1991
1994
 
1992
- export { API_FOOTBALL_URL_FIXTURES, API_FOOTBALL_URL_LEAGUES, API_FOOTBALL_URL_ODDS, API_FOOTBALL_URL_PREDICTIONS, API_FOOTBALL_URL_STANDINGS, API_FOOTBALL_URL_TEAMS, API_FOOTBALL_URL_TEAM_STATS, type Account, type Bet, type BetSelection, type BetTypes, type Fixture, LEAGUE_ID_LIST, type League$1 as League, type Team$1 as Team, type TeamStat, accountSchema, betSchema, betTypes, checkBetWin, fixtureSchema, getMeanModeMedian, leagueSchema, teamSchema, teamStatSchema, toPercent, toTwoDecimalPlaces };
1995
+ export { API_FOOTBALL_URL_FIXTURES, API_FOOTBALL_URL_LEAGUES, API_FOOTBALL_URL_ODDS, API_FOOTBALL_URL_PREDICTIONS, API_FOOTBALL_URL_STANDINGS, API_FOOTBALL_URL_TEAMS, API_FOOTBALL_URL_TEAM_STATS, type Account, type Bet, type BetSelection, type BetSelectionWithFixture, type BetTypes, type Fixture, LEAGUE_ID_LIST, type League$1 as League, type Team$1 as Team, type TeamStat, accountSchema, betSchema, betTypes, checkBetWin, fixtureSchema, getMeanModeMedian, leagueSchema, teamSchema, teamStatSchema, toPercent, toTwoDecimalPlaces };
package/dist/index.d.ts CHANGED
@@ -1834,6 +1834,9 @@ declare const betTypes: {
1834
1834
  };
1835
1835
  };
1836
1836
 
1837
+ interface BetSelectionWithFixture extends Omit<BetSelection, "fixture"> {
1838
+ fixture: Fixture;
1839
+ }
1837
1840
  interface BetSelection {
1838
1841
  betType: BetTypes;
1839
1842
  fixture: string;
@@ -1989,4 +1992,4 @@ declare const getMeanModeMedian: (numbers: number[]) => {
1989
1992
  mode: number;
1990
1993
  };
1991
1994
 
1992
- export { API_FOOTBALL_URL_FIXTURES, API_FOOTBALL_URL_LEAGUES, API_FOOTBALL_URL_ODDS, API_FOOTBALL_URL_PREDICTIONS, API_FOOTBALL_URL_STANDINGS, API_FOOTBALL_URL_TEAMS, API_FOOTBALL_URL_TEAM_STATS, type Account, type Bet, type BetSelection, type BetTypes, type Fixture, LEAGUE_ID_LIST, type League$1 as League, type Team$1 as Team, type TeamStat, accountSchema, betSchema, betTypes, checkBetWin, fixtureSchema, getMeanModeMedian, leagueSchema, teamSchema, teamStatSchema, toPercent, toTwoDecimalPlaces };
1995
+ export { API_FOOTBALL_URL_FIXTURES, API_FOOTBALL_URL_LEAGUES, API_FOOTBALL_URL_ODDS, API_FOOTBALL_URL_PREDICTIONS, API_FOOTBALL_URL_STANDINGS, API_FOOTBALL_URL_TEAMS, API_FOOTBALL_URL_TEAM_STATS, type Account, type Bet, type BetSelection, type BetSelectionWithFixture, type BetTypes, type Fixture, LEAGUE_ID_LIST, type League$1 as League, type Team$1 as Team, type TeamStat, accountSchema, betSchema, betTypes, checkBetWin, fixtureSchema, getMeanModeMedian, leagueSchema, teamSchema, teamStatSchema, toPercent, toTwoDecimalPlaces };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "black-diamond-shared",
3
- "version": "1.0.39",
3
+ "version": "1.0.40",
4
4
  "description": "Shared code between Black Diamond repositories",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",