overtime-live-trading-utils 2.1.45 → 3.0.0-rc.0
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/.circleci/config.yml +32 -32
- package/.prettierrc +9 -9
- package/codecov.yml +20 -20
- package/index.ts +26 -26
- package/jest.config.ts +16 -16
- package/main.js +1 -1
- package/package.json +30 -30
- package/src/constants/common.ts +8 -7
- package/src/constants/errors.ts +7 -6
- package/src/constants/sports.ts +78 -78
- package/src/enums/sports.ts +109 -109
- package/src/tests/mock/MockLeagueMap.ts +200 -170
- package/src/tests/mock/MockOpticOddsEvents.ts +662 -662
- package/src/tests/mock/MockOpticSoccer.ts +9864 -9378
- package/src/tests/mock/MockSoccerRedis.ts +2308 -2308
- package/src/tests/unit/bookmakers.test.ts +149 -79
- package/src/tests/unit/markets.test.ts +177 -156
- package/src/tests/unit/odds.test.ts +104 -92
- package/src/tests/unit/resolution.test.ts +1489 -1489
- package/src/tests/unit/sports.test.ts +58 -58
- package/src/tests/unit/spread.test.ts +145 -131
- package/src/tests/utils/helper.ts +10 -0
- package/src/types/bookmakers.ts +7 -0
- package/src/types/missing-types.d.ts +2 -2
- package/src/types/odds.ts +80 -61
- package/src/types/resolution.ts +656 -660
- package/src/types/sports.ts +22 -19
- package/src/utils/bookmakers.ts +322 -159
- package/src/utils/constraints.ts +210 -210
- package/src/utils/gameMatching.ts +81 -81
- package/src/utils/markets.ts +120 -119
- package/src/utils/odds.ts +953 -918
- package/src/utils/opticOdds.ts +71 -71
- package/src/utils/resolution.ts +319 -319
- package/src/utils/sportPeriodMapping.ts +36 -36
- package/src/utils/sports.ts +51 -51
- package/src/utils/spread.ts +97 -97
- package/tsconfig.json +16 -16
- package/webpack.config.js +24 -24
- package/CLAUDE.md +0 -84
- package/resolution_live_markets.md +0 -356
package/.circleci/config.yml
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
orbs: # declare what orbs we are going to use
|
|
2
|
-
node: circleci/node@5.0.3 # the node orb provides common node-related configuration
|
|
3
|
-
codecov: codecov/codecov@3.2.3
|
|
4
|
-
|
|
5
|
-
version: 2.1 # using 2.1 provides access to orbs and other features
|
|
6
|
-
|
|
7
|
-
executors:
|
|
8
|
-
node-executor:
|
|
9
|
-
docker:
|
|
10
|
-
- image: circleci/node:17.0.1 # Specify the Node.js version you need
|
|
11
|
-
|
|
12
|
-
jobs:
|
|
13
|
-
test:
|
|
14
|
-
executor: node-executor
|
|
15
|
-
steps:
|
|
16
|
-
- checkout # Check out the code from your repository
|
|
17
|
-
|
|
18
|
-
- run:
|
|
19
|
-
name: Install dependencies
|
|
20
|
-
command: npm install
|
|
21
|
-
|
|
22
|
-
- run:
|
|
23
|
-
name: Run tests
|
|
24
|
-
command: npm test -- --coverage
|
|
25
|
-
|
|
26
|
-
- codecov/upload
|
|
27
|
-
|
|
28
|
-
workflows:
|
|
29
|
-
version: 2
|
|
30
|
-
test:
|
|
31
|
-
jobs:
|
|
32
|
-
- test
|
|
1
|
+
orbs: # declare what orbs we are going to use
|
|
2
|
+
node: circleci/node@5.0.3 # the node orb provides common node-related configuration
|
|
3
|
+
codecov: codecov/codecov@3.2.3
|
|
4
|
+
|
|
5
|
+
version: 2.1 # using 2.1 provides access to orbs and other features
|
|
6
|
+
|
|
7
|
+
executors:
|
|
8
|
+
node-executor:
|
|
9
|
+
docker:
|
|
10
|
+
- image: circleci/node:17.0.1 # Specify the Node.js version you need
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
test:
|
|
14
|
+
executor: node-executor
|
|
15
|
+
steps:
|
|
16
|
+
- checkout # Check out the code from your repository
|
|
17
|
+
|
|
18
|
+
- run:
|
|
19
|
+
name: Install dependencies
|
|
20
|
+
command: npm install
|
|
21
|
+
|
|
22
|
+
- run:
|
|
23
|
+
name: Run tests
|
|
24
|
+
command: npm test -- --coverage
|
|
25
|
+
|
|
26
|
+
- codecov/upload
|
|
27
|
+
|
|
28
|
+
workflows:
|
|
29
|
+
version: 2
|
|
30
|
+
test:
|
|
31
|
+
jobs:
|
|
32
|
+
- test
|
package/.prettierrc
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"singleQuote": true,
|
|
3
|
-
"printWidth": 120,
|
|
4
|
-
"tabWidth": 4,
|
|
5
|
-
"useTabs": false,
|
|
6
|
-
"trailingComma": "es5",
|
|
7
|
-
"semi": true,
|
|
8
|
-
"endOfLine": "auto"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"singleQuote": true,
|
|
3
|
+
"printWidth": 120,
|
|
4
|
+
"tabWidth": 4,
|
|
5
|
+
"useTabs": false,
|
|
6
|
+
"trailingComma": "es5",
|
|
7
|
+
"semi": true,
|
|
8
|
+
"endOfLine": "auto"
|
|
9
|
+
}
|
package/codecov.yml
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
# codecov.yml
|
|
2
|
-
|
|
3
|
-
# Specify the coverage rules
|
|
4
|
-
coverage:
|
|
5
|
-
precision: 2 # Number of decimal places for coverage percentages
|
|
6
|
-
round: down # Round coverage percentages down
|
|
7
|
-
range: '70...100' # Expected range of coverage (useful for enforcing quality gates)
|
|
8
|
-
|
|
9
|
-
# Adjust how Codecov processes reports
|
|
10
|
-
comment:
|
|
11
|
-
layout: 'reach, diff, flags' # Format of the PR comments
|
|
12
|
-
behavior: default # Default behavior for comments
|
|
13
|
-
require_changes: false # Only comment if changes occur in coverage
|
|
14
|
-
branches:
|
|
15
|
-
- main # Restrict comments to specific branches
|
|
16
|
-
|
|
17
|
-
# Custom CI configuration (if needed)
|
|
18
|
-
ci:
|
|
19
|
-
- circleci # Specify CircleCI as the CI provider
|
|
20
|
-
|
|
1
|
+
# codecov.yml
|
|
2
|
+
|
|
3
|
+
# Specify the coverage rules
|
|
4
|
+
coverage:
|
|
5
|
+
precision: 2 # Number of decimal places for coverage percentages
|
|
6
|
+
round: down # Round coverage percentages down
|
|
7
|
+
range: '70...100' # Expected range of coverage (useful for enforcing quality gates)
|
|
8
|
+
|
|
9
|
+
# Adjust how Codecov processes reports
|
|
10
|
+
comment:
|
|
11
|
+
layout: 'reach, diff, flags' # Format of the PR comments
|
|
12
|
+
behavior: default # Default behavior for comments
|
|
13
|
+
require_changes: false # Only comment if changes occur in coverage
|
|
14
|
+
branches:
|
|
15
|
+
- main # Restrict comments to specific branches
|
|
16
|
+
|
|
17
|
+
# Custom CI configuration (if needed)
|
|
18
|
+
ci:
|
|
19
|
+
- circleci # Specify CircleCI as the CI provider
|
|
20
|
+
|
package/index.ts
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
//utils
|
|
2
|
-
export * from './src/utils/bookmakers';
|
|
3
|
-
export * from './src/utils/constraints';
|
|
4
|
-
export * from './src/utils/gameMatching';
|
|
5
|
-
export * from './src/utils/markets';
|
|
6
|
-
export * from './src/utils/odds';
|
|
7
|
-
export * from './src/utils/opticOdds';
|
|
8
|
-
export * from './src/utils/resolution';
|
|
9
|
-
export * from './src/utils/sports';
|
|
10
|
-
export * from './src/utils/spread';
|
|
11
|
-
|
|
12
|
-
// constants
|
|
13
|
-
export * from './src/constants/common';
|
|
14
|
-
export * from './src/constants/errors';
|
|
15
|
-
export * from './src/constants/sports';
|
|
16
|
-
|
|
17
|
-
export * from './src/enums/sports';
|
|
18
|
-
|
|
19
|
-
// types
|
|
20
|
-
export * from './src/types/resolution';
|
|
21
|
-
export {
|
|
22
|
-
HALVES_PERIOD_TYPE_ID_MAPPING,
|
|
23
|
-
QUARTERS_PERIOD_TYPE_ID_MAPPING,
|
|
24
|
-
INNINGS_PERIOD_TYPE_ID_MAPPING,
|
|
25
|
-
FULL_GAME_TYPE_IDS,
|
|
26
|
-
} from './src/types/resolution';
|
|
1
|
+
//utils
|
|
2
|
+
export * from './src/utils/bookmakers';
|
|
3
|
+
export * from './src/utils/constraints';
|
|
4
|
+
export * from './src/utils/gameMatching';
|
|
5
|
+
export * from './src/utils/markets';
|
|
6
|
+
export * from './src/utils/odds';
|
|
7
|
+
export * from './src/utils/opticOdds';
|
|
8
|
+
export * from './src/utils/resolution';
|
|
9
|
+
export * from './src/utils/sports';
|
|
10
|
+
export * from './src/utils/spread';
|
|
11
|
+
|
|
12
|
+
// constants
|
|
13
|
+
export * from './src/constants/common';
|
|
14
|
+
export * from './src/constants/errors';
|
|
15
|
+
export * from './src/constants/sports';
|
|
16
|
+
|
|
17
|
+
export * from './src/enums/sports';
|
|
18
|
+
|
|
19
|
+
// types
|
|
20
|
+
export * from './src/types/resolution';
|
|
21
|
+
export {
|
|
22
|
+
HALVES_PERIOD_TYPE_ID_MAPPING,
|
|
23
|
+
QUARTERS_PERIOD_TYPE_ID_MAPPING,
|
|
24
|
+
INNINGS_PERIOD_TYPE_ID_MAPPING,
|
|
25
|
+
FULL_GAME_TYPE_IDS,
|
|
26
|
+
} from './src/types/resolution';
|
package/jest.config.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { JestConfigWithTsJest } from 'ts-jest';
|
|
2
|
-
|
|
3
|
-
const config: JestConfigWithTsJest = {
|
|
4
|
-
preset: 'ts-jest',
|
|
5
|
-
testEnvironment: 'node',
|
|
6
|
-
transform: {
|
|
7
|
-
'^.+\\.tsx?$': 'ts-jest',
|
|
8
|
-
},
|
|
9
|
-
globals: {
|
|
10
|
-
'ts-jest': {
|
|
11
|
-
useESM: true, // Optional if you are using ES modules
|
|
12
|
-
},
|
|
13
|
-
},
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
export default config;
|
|
1
|
+
import { JestConfigWithTsJest } from 'ts-jest';
|
|
2
|
+
|
|
3
|
+
const config: JestConfigWithTsJest = {
|
|
4
|
+
preset: 'ts-jest',
|
|
5
|
+
testEnvironment: 'node',
|
|
6
|
+
transform: {
|
|
7
|
+
'^.+\\.tsx?$': 'ts-jest',
|
|
8
|
+
},
|
|
9
|
+
globals: {
|
|
10
|
+
'ts-jest': {
|
|
11
|
+
useESM: true, // Optional if you are using ES modules
|
|
12
|
+
},
|
|
13
|
+
},
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export default config;
|