overtime-live-trading-utils 0.0.76 → 0.0.77
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/package.json +1 -1
- package/src/utils/markets.ts +2 -2
package/package.json
CHANGED
package/src/utils/markets.ts
CHANGED
|
@@ -129,7 +129,7 @@ export const createSpreadChildMarkets = (
|
|
|
129
129
|
defaultSpreadForLiveMarkets
|
|
130
130
|
) => {
|
|
131
131
|
console.log('CREATING SPREAD CHILD MARKETS');
|
|
132
|
-
const childMarkets = [];
|
|
132
|
+
const childMarkets = [] as any;
|
|
133
133
|
const spreadType = getLeagueSpreadType(leagueId);
|
|
134
134
|
const commonData = {
|
|
135
135
|
homeTeam: apiResponseWithOdds.home_team,
|
|
@@ -180,7 +180,7 @@ export const createTotalChildMarkets = (
|
|
|
180
180
|
defaultSpreadForLiveMarkets
|
|
181
181
|
) => {
|
|
182
182
|
console.log('CREATING TOTAL CHILD MARKETS');
|
|
183
|
-
const childMarkets = [];
|
|
183
|
+
const childMarkets = [] as any;
|
|
184
184
|
const totalType = getLeagueTotalType(leagueId);
|
|
185
185
|
|
|
186
186
|
if (totalType) {
|