be-components 7.4.7 → 7.5.1
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/lib/commonjs/ApiOverrides/index.js +4 -0
- package/lib/commonjs/ApiOverrides/index.js.map +1 -1
- package/lib/commonjs/BetRouter/api/index.js +884 -0
- package/lib/commonjs/BetRouter/api/index.js.map +1 -0
- package/lib/commonjs/BetRouter/api/types.js +2 -0
- package/lib/commonjs/BetRouter/api/types.js.map +1 -0
- package/lib/commonjs/BetRouter/components/AccountManager.js +592 -0
- package/lib/commonjs/BetRouter/components/AccountManager.js.map +1 -0
- package/lib/commonjs/BetRouter/components/AdminPortal.js +51 -0
- package/lib/commonjs/BetRouter/components/AdminPortal.js.map +1 -0
- package/lib/commonjs/BetRouter/components/BuyOpportunities.js +550 -0
- package/lib/commonjs/BetRouter/components/BuyOpportunities.js.map +1 -0
- package/lib/commonjs/BetRouter/components/BuyOpportunityCard.js +320 -0
- package/lib/commonjs/BetRouter/components/BuyOpportunityCard.js.map +1 -0
- package/lib/commonjs/BetRouter/components/ContestLiquidity.js +666 -0
- package/lib/commonjs/BetRouter/components/ContestLiquidity.js.map +1 -0
- package/lib/commonjs/BetRouter/components/ContestSelector.js +193 -0
- package/lib/commonjs/BetRouter/components/ContestSelector.js.map +1 -0
- package/lib/commonjs/BetRouter/components/MyOpportunities.js +332 -0
- package/lib/commonjs/BetRouter/components/MyOpportunities.js.map +1 -0
- package/lib/commonjs/BetRouter/components/MyOpportunities.tsx.bak +440 -0
- package/lib/commonjs/BetRouter/components/OpportunityDetailModal.js +545 -0
- package/lib/commonjs/BetRouter/components/OpportunityDetailModal.js.map +1 -0
- package/lib/commonjs/BetRouter/components/OpportunityHistory.js +489 -0
- package/lib/commonjs/BetRouter/components/OpportunityHistory.js.map +1 -0
- package/lib/commonjs/BetRouter/components/PartnerCredentials.js +229 -0
- package/lib/commonjs/BetRouter/components/PartnerCredentials.js.map +1 -0
- package/lib/commonjs/BetRouter/components/PlacedOpportunityModal.js +262 -0
- package/lib/commonjs/BetRouter/components/PlacedOpportunityModal.js.map +1 -0
- package/lib/commonjs/BetRouter/components/admin/AutoFillView.js +380 -0
- package/lib/commonjs/BetRouter/components/admin/AutoFillView.js.map +1 -0
- package/lib/commonjs/BetRouter/components/admin/ConfigManager.js +814 -0
- package/lib/commonjs/BetRouter/components/admin/ConfigManager.js.map +1 -0
- package/lib/commonjs/BetRouter/components/admin/JobManager.js +895 -0
- package/lib/commonjs/BetRouter/components/admin/JobManager.js.map +1 -0
- package/lib/commonjs/BetRouter/components/admin/LeagueContests.js +2844 -0
- package/lib/commonjs/BetRouter/components/admin/LeagueContests.js.map +1 -0
- package/lib/commonjs/BetRouter/components/admin/LeagueInfo.js +378 -0
- package/lib/commonjs/BetRouter/components/admin/LeagueInfo.js.map +1 -0
- package/lib/commonjs/BetRouter/components/admin/LeagueParticipants.js +795 -0
- package/lib/commonjs/BetRouter/components/admin/LeagueParticipants.js.map +1 -0
- package/lib/commonjs/BetRouter/index.js +411 -0
- package/lib/commonjs/BetRouter/index.js.map +1 -0
- package/lib/commonjs/BetRouter/layouts/DesktopAdminLayout.js +312 -0
- package/lib/commonjs/BetRouter/layouts/DesktopAdminLayout.js.map +1 -0
- package/lib/commonjs/BetRouter/layouts/DesktopLayout.js +271 -0
- package/lib/commonjs/BetRouter/layouts/DesktopLayout.js.map +1 -0
- package/lib/commonjs/BetRouter/layouts/MobileAdminLayout.js +435 -0
- package/lib/commonjs/BetRouter/layouts/MobileAdminLayout.js.map +1 -0
- package/lib/commonjs/BetRouter/layouts/MobileLayout.js +293 -0
- package/lib/commonjs/BetRouter/layouts/MobileLayout.js.map +1 -0
- package/lib/commonjs/BetRouter/types/ADMIN_PORTAL.md +863 -0
- package/lib/commonjs/BetRouter/types/ADMIN_PORTAL_SIMPLIFIED.md +1881 -0
- package/lib/commonjs/BetRouter/types/CREDENTIALS_EXAMPLE.md +350 -0
- package/lib/commonjs/BetRouter/types/LIQUIDITY_CLIENT_GUIDE.md +399 -0
- package/lib/commonjs/BetRouter/types/MARKET_LINKING_WORKFLOW.md +682 -0
- package/lib/commonjs/BetRouter/types/MARKET_LINKING_WORKFLOW_V2.md +627 -0
- package/lib/commonjs/BetRouter/types/README.md +249 -0
- package/lib/commonjs/BetRouter/types/accounts.js +2 -0
- package/lib/commonjs/BetRouter/types/accounts.js.map +1 -0
- package/lib/commonjs/BetRouter/types/api-contracts.js +776 -0
- package/lib/commonjs/BetRouter/types/api-contracts.js.map +1 -0
- package/lib/commonjs/BetRouter/types/config.js +2 -0
- package/lib/commonjs/BetRouter/types/config.js.map +1 -0
- package/lib/commonjs/BetRouter/types/contests.js +2 -0
- package/lib/commonjs/BetRouter/types/contests.js.map +1 -0
- package/lib/commonjs/BetRouter/types/credentials.js +90 -0
- package/lib/commonjs/BetRouter/types/credentials.js.map +1 -0
- package/lib/commonjs/BetRouter/types/index.js +149 -0
- package/lib/commonjs/BetRouter/types/index.js.map +1 -0
- package/lib/commonjs/BetRouter/types/jobs.js +2 -0
- package/lib/commonjs/BetRouter/types/jobs.js.map +1 -0
- package/lib/commonjs/BetRouter/types/leagues.js +2 -0
- package/lib/commonjs/BetRouter/types/leagues.js.map +1 -0
- package/lib/commonjs/BetRouter/types/liquidity.js +2 -0
- package/lib/commonjs/BetRouter/types/liquidity.js.map +1 -0
- package/lib/commonjs/BetRouter/types/markets.js +2 -0
- package/lib/commonjs/BetRouter/types/markets.js.map +1 -0
- package/lib/commonjs/BetRouter/types/opportunities.js +6 -0
- package/lib/commonjs/BetRouter/types/opportunities.js.map +1 -0
- package/lib/commonjs/BetRouter/types/orders.js +2 -0
- package/lib/commonjs/BetRouter/types/orders.js.map +1 -0
- package/lib/commonjs/BetRouter/types/participants.js +2 -0
- package/lib/commonjs/BetRouter/types/participants.js.map +1 -0
- package/lib/commonjs/BetRouter/types/partners.js +2 -0
- package/lib/commonjs/BetRouter/types/partners.js.map +1 -0
- package/lib/commonjs/Charts/README.md +310 -0
- package/lib/commonjs/Charts/adapters/TradeChartAdapter.js +406 -0
- package/lib/commonjs/Charts/adapters/TradeChartAdapter.js.map +1 -0
- package/lib/commonjs/Charts/components/BaseLineChart.js +285 -0
- package/lib/commonjs/Charts/components/BaseLineChart.js.map +1 -0
- package/lib/commonjs/Charts/components/LivePriceChart.js +504 -0
- package/lib/commonjs/Charts/components/LivePriceChart.js.map +1 -0
- package/lib/commonjs/Charts/index.js +126 -0
- package/lib/commonjs/Charts/index.js.map +1 -0
- package/lib/commonjs/Charts/themes/chartTheme.js +141 -0
- package/lib/commonjs/Charts/themes/chartTheme.js.map +1 -0
- package/lib/commonjs/Charts/types.js +2 -0
- package/lib/commonjs/Charts/types.js.map +1 -0
- package/lib/commonjs/Charts/utils/formatters.js +194 -0
- package/lib/commonjs/Charts/utils/formatters.js.map +1 -0
- package/lib/commonjs/Components/Dropdown.js +5 -3
- package/lib/commonjs/Components/Dropdown.js.map +1 -1
- package/lib/commonjs/Components/Icons.js +24 -0
- package/lib/commonjs/Components/Icons.js.map +1 -1
- package/lib/commonjs/Components/index.js +34 -0
- package/lib/commonjs/Components/index.js.map +1 -1
- package/lib/commonjs/LocationTracker/LocationStatus.js +5 -2
- package/lib/commonjs/LocationTracker/LocationStatus.js.map +1 -1
- package/lib/commonjs/LocationTracker/api/index.js +2 -2
- package/lib/commonjs/LocationTracker/api/index.js.map +1 -1
- package/lib/commonjs/index.js +28 -0
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/types.d.js +16 -0
- package/lib/commonjs/types.d.js.map +1 -1
- package/lib/module/ApiOverrides/index.js +4 -0
- package/lib/module/ApiOverrides/index.js.map +1 -1
- package/lib/module/BetRouter/api/index.js +873 -0
- package/lib/module/BetRouter/api/index.js.map +1 -0
- package/lib/module/BetRouter/api/types.js +2 -0
- package/lib/module/BetRouter/api/types.js.map +1 -0
- package/lib/module/BetRouter/components/AccountManager.js +584 -0
- package/lib/module/BetRouter/components/AccountManager.js.map +1 -0
- package/lib/module/BetRouter/components/AdminPortal.js +43 -0
- package/lib/module/BetRouter/components/AdminPortal.js.map +1 -0
- package/lib/module/BetRouter/components/BuyOpportunities.js +542 -0
- package/lib/module/BetRouter/components/BuyOpportunities.js.map +1 -0
- package/lib/module/BetRouter/components/BuyOpportunityCard.js +313 -0
- package/lib/module/BetRouter/components/BuyOpportunityCard.js.map +1 -0
- package/lib/module/BetRouter/components/ContestLiquidity.js +658 -0
- package/lib/module/BetRouter/components/ContestLiquidity.js.map +1 -0
- package/lib/module/BetRouter/components/ContestSelector.js +185 -0
- package/lib/module/BetRouter/components/ContestSelector.js.map +1 -0
- package/lib/module/BetRouter/components/MyOpportunities.js +324 -0
- package/lib/module/BetRouter/components/MyOpportunities.js.map +1 -0
- package/lib/module/BetRouter/components/MyOpportunities.tsx.bak +440 -0
- package/lib/module/BetRouter/components/OpportunityDetailModal.js +538 -0
- package/lib/module/BetRouter/components/OpportunityDetailModal.js.map +1 -0
- package/lib/module/BetRouter/components/OpportunityHistory.js +481 -0
- package/lib/module/BetRouter/components/OpportunityHistory.js.map +1 -0
- package/lib/module/BetRouter/components/PartnerCredentials.js +222 -0
- package/lib/module/BetRouter/components/PartnerCredentials.js.map +1 -0
- package/lib/module/BetRouter/components/PlacedOpportunityModal.js +255 -0
- package/lib/module/BetRouter/components/PlacedOpportunityModal.js.map +1 -0
- package/lib/module/BetRouter/components/admin/AutoFillView.js +372 -0
- package/lib/module/BetRouter/components/admin/AutoFillView.js.map +1 -0
- package/lib/module/BetRouter/components/admin/ConfigManager.js +806 -0
- package/lib/module/BetRouter/components/admin/ConfigManager.js.map +1 -0
- package/lib/module/BetRouter/components/admin/JobManager.js +888 -0
- package/lib/module/BetRouter/components/admin/JobManager.js.map +1 -0
- package/lib/module/BetRouter/components/admin/LeagueContests.js +2836 -0
- package/lib/module/BetRouter/components/admin/LeagueContests.js.map +1 -0
- package/lib/module/BetRouter/components/admin/LeagueInfo.js +372 -0
- package/lib/module/BetRouter/components/admin/LeagueInfo.js.map +1 -0
- package/lib/module/BetRouter/components/admin/LeagueParticipants.js +787 -0
- package/lib/module/BetRouter/components/admin/LeagueParticipants.js.map +1 -0
- package/lib/module/BetRouter/index.js +399 -0
- package/lib/module/BetRouter/index.js.map +1 -0
- package/lib/module/BetRouter/layouts/DesktopAdminLayout.js +304 -0
- package/lib/module/BetRouter/layouts/DesktopAdminLayout.js.map +1 -0
- package/lib/module/BetRouter/layouts/DesktopLayout.js +263 -0
- package/lib/module/BetRouter/layouts/DesktopLayout.js.map +1 -0
- package/lib/module/BetRouter/layouts/MobileAdminLayout.js +427 -0
- package/lib/module/BetRouter/layouts/MobileAdminLayout.js.map +1 -0
- package/lib/module/BetRouter/layouts/MobileLayout.js +285 -0
- package/lib/module/BetRouter/layouts/MobileLayout.js.map +1 -0
- package/lib/module/BetRouter/types/ADMIN_PORTAL.md +863 -0
- package/lib/module/BetRouter/types/ADMIN_PORTAL_SIMPLIFIED.md +1881 -0
- package/lib/module/BetRouter/types/CREDENTIALS_EXAMPLE.md +350 -0
- package/lib/module/BetRouter/types/LIQUIDITY_CLIENT_GUIDE.md +399 -0
- package/lib/module/BetRouter/types/MARKET_LINKING_WORKFLOW.md +682 -0
- package/lib/module/BetRouter/types/MARKET_LINKING_WORKFLOW_V2.md +627 -0
- package/lib/module/BetRouter/types/README.md +249 -0
- package/lib/module/BetRouter/types/accounts.js +2 -0
- package/lib/module/BetRouter/types/accounts.js.map +1 -0
- package/lib/module/BetRouter/types/api-contracts.js +770 -0
- package/lib/module/BetRouter/types/api-contracts.js.map +1 -0
- package/lib/module/BetRouter/types/config.js +2 -0
- package/lib/module/BetRouter/types/config.js.map +1 -0
- package/lib/module/BetRouter/types/contests.js +2 -0
- package/lib/module/BetRouter/types/contests.js.map +1 -0
- package/lib/module/BetRouter/types/credentials.js +78 -0
- package/lib/module/BetRouter/types/credentials.js.map +1 -0
- package/lib/module/BetRouter/types/index.js +17 -0
- package/lib/module/BetRouter/types/index.js.map +1 -0
- package/lib/module/BetRouter/types/jobs.js +2 -0
- package/lib/module/BetRouter/types/jobs.js.map +1 -0
- package/lib/module/BetRouter/types/leagues.js +2 -0
- package/lib/module/BetRouter/types/leagues.js.map +1 -0
- package/lib/module/BetRouter/types/liquidity.js +2 -0
- package/lib/module/BetRouter/types/liquidity.js.map +1 -0
- package/lib/module/BetRouter/types/markets.js +2 -0
- package/lib/module/BetRouter/types/markets.js.map +1 -0
- package/lib/module/BetRouter/types/opportunities.js +2 -0
- package/lib/module/BetRouter/types/opportunities.js.map +1 -0
- package/lib/module/BetRouter/types/orders.js +2 -0
- package/lib/module/BetRouter/types/orders.js.map +1 -0
- package/lib/module/BetRouter/types/participants.js +2 -0
- package/lib/module/BetRouter/types/participants.js.map +1 -0
- package/lib/module/BetRouter/types/partners.js +2 -0
- package/lib/module/BetRouter/types/partners.js.map +1 -0
- package/lib/module/Charts/README.md +310 -0
- package/lib/module/Charts/adapters/TradeChartAdapter.js +400 -0
- package/lib/module/Charts/adapters/TradeChartAdapter.js.map +1 -0
- package/lib/module/Charts/components/BaseLineChart.js +281 -0
- package/lib/module/Charts/components/BaseLineChart.js.map +1 -0
- package/lib/module/Charts/components/LivePriceChart.js +497 -0
- package/lib/module/Charts/components/LivePriceChart.js.map +1 -0
- package/lib/module/Charts/index.js +36 -0
- package/lib/module/Charts/index.js.map +1 -0
- package/lib/module/Charts/themes/chartTheme.js +134 -0
- package/lib/module/Charts/themes/chartTheme.js.map +1 -0
- package/lib/module/Charts/types.js +2 -0
- package/lib/module/Charts/types.js.map +1 -0
- package/lib/module/Charts/utils/formatters.js +178 -0
- package/lib/module/Charts/utils/formatters.js.map +1 -0
- package/lib/module/Components/Dropdown.js +5 -3
- package/lib/module/Components/Dropdown.js.map +1 -1
- package/lib/module/Components/Icons.js +24 -1
- package/lib/module/Components/Icons.js.map +1 -1
- package/lib/module/Components/index.js +3 -0
- package/lib/module/Components/index.js.map +1 -1
- package/lib/module/LocationTracker/LocationStatus.js +5 -2
- package/lib/module/LocationTracker/LocationStatus.js.map +1 -1
- package/lib/module/LocationTracker/api/index.js +2 -2
- package/lib/module/LocationTracker/api/index.js.map +1 -1
- package/lib/module/index.js +5 -1
- package/lib/module/index.js.map +1 -1
- package/lib/module/types.d.js +16 -0
- package/lib/module/types.d.js.map +1 -1
- package/lib/typescript/lib/commonjs/ApiOverrides/index.d.ts.map +1 -1
- package/lib/typescript/lib/commonjs/BetRouter/api/index.d.ts +109 -0
- package/lib/typescript/lib/commonjs/BetRouter/api/index.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/api/types.d.ts +2 -0
- package/lib/typescript/lib/commonjs/BetRouter/api/types.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/AccountManager.d.ts +16 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/AccountManager.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/AdminPortal.d.ts +9 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/AdminPortal.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/BuyOpportunities.d.ts +16 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/BuyOpportunities.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/BuyOpportunityCard.d.ts +14 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/BuyOpportunityCard.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/ContestLiquidity.d.ts +11 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/ContestLiquidity.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/ContestSelector.d.ts +11 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/ContestSelector.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/MyOpportunities.d.ts +8 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/MyOpportunities.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/OpportunityDetailModal.d.ts +14 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/OpportunityDetailModal.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/OpportunityHistory.d.ts +9 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/OpportunityHistory.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/PartnerCredentials.d.ts +10 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/PartnerCredentials.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/PlacedOpportunityModal.d.ts +11 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/PlacedOpportunityModal.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/admin/AutoFillView.d.ts +4 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/admin/AutoFillView.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/admin/ConfigManager.d.ts +4 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/admin/ConfigManager.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/admin/JobManager.d.ts +4 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/admin/JobManager.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/admin/LeagueContests.d.ts +7 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/admin/LeagueContests.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/admin/LeagueInfo.d.ts +6 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/admin/LeagueInfo.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/admin/LeagueParticipants.d.ts +6 -0
- package/lib/typescript/lib/commonjs/BetRouter/components/admin/LeagueParticipants.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/index.d.ts +8 -0
- package/lib/typescript/lib/commonjs/BetRouter/index.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/layouts/DesktopAdminLayout.d.ts +9 -0
- package/lib/typescript/lib/commonjs/BetRouter/layouts/DesktopAdminLayout.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/layouts/DesktopLayout.d.ts +20 -0
- package/lib/typescript/lib/commonjs/BetRouter/layouts/DesktopLayout.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/layouts/MobileAdminLayout.d.ts +9 -0
- package/lib/typescript/lib/commonjs/BetRouter/layouts/MobileAdminLayout.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/layouts/MobileLayout.d.ts +20 -0
- package/lib/typescript/lib/commonjs/BetRouter/layouts/MobileLayout.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/accounts.d.ts +2 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/accounts.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/api-contracts.d.ts +743 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/api-contracts.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/config.d.ts +2 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/config.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/contests.d.ts +2 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/contests.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/credentials.d.ts +56 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/credentials.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/index.d.ts +2 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/index.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/jobs.d.ts +2 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/jobs.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/leagues.d.ts +2 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/leagues.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/liquidity.d.ts +2 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/liquidity.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/markets.d.ts +2 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/markets.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/opportunities.d.ts +2 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/opportunities.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/orders.d.ts +2 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/orders.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/participants.d.ts +2 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/participants.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/partners.d.ts +2 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/partners.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/Charts/adapters/TradeChartAdapter.d.ts +87 -0
- package/lib/typescript/lib/commonjs/Charts/adapters/TradeChartAdapter.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/Charts/components/BaseLineChart.d.ts +31 -0
- package/lib/typescript/lib/commonjs/Charts/components/BaseLineChart.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/Charts/components/LivePriceChart.d.ts +45 -0
- package/lib/typescript/lib/commonjs/Charts/components/LivePriceChart.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/Charts/index.d.ts +95 -0
- package/lib/typescript/lib/commonjs/Charts/index.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/Charts/themes/chartTheme.d.ts +106 -0
- package/lib/typescript/lib/commonjs/Charts/themes/chartTheme.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/Charts/types.d.ts +2 -0
- package/lib/typescript/lib/commonjs/Charts/types.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/Charts/utils/formatters.d.ts +24 -0
- package/lib/typescript/lib/commonjs/Charts/utils/formatters.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/Components/Dropdown.d.ts.map +1 -1
- package/lib/typescript/lib/commonjs/Components/Icons.d.ts +5 -0
- package/lib/typescript/lib/commonjs/Components/Icons.d.ts.map +1 -1
- package/lib/typescript/lib/commonjs/LocationTracker/LocationStatus.d.ts +2 -1
- package/lib/typescript/lib/commonjs/LocationTracker/LocationStatus.d.ts.map +1 -1
- package/lib/typescript/lib/commonjs/LocationTracker/api/index.d.ts +1 -1
- package/lib/typescript/lib/commonjs/LocationTracker/api/index.d.ts.map +1 -1
- package/lib/typescript/lib/commonjs/index.d.ts +6 -1
- package/lib/typescript/lib/commonjs/index.d.ts.map +1 -1
- package/lib/typescript/lib/module/ApiOverrides/index.d.ts.map +1 -1
- package/lib/typescript/lib/module/BetRouter/api/index.d.ts +108 -0
- package/lib/typescript/lib/module/BetRouter/api/index.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/api/types.d.ts +2 -0
- package/lib/typescript/lib/module/BetRouter/api/types.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/components/AccountManager.d.ts +16 -0
- package/lib/typescript/lib/module/BetRouter/components/AccountManager.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/components/AdminPortal.d.ts +9 -0
- package/lib/typescript/lib/module/BetRouter/components/AdminPortal.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/components/BuyOpportunities.d.ts +16 -0
- package/lib/typescript/lib/module/BetRouter/components/BuyOpportunities.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/components/BuyOpportunityCard.d.ts +14 -0
- package/lib/typescript/lib/module/BetRouter/components/BuyOpportunityCard.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/components/ContestLiquidity.d.ts +11 -0
- package/lib/typescript/lib/module/BetRouter/components/ContestLiquidity.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/components/ContestSelector.d.ts +11 -0
- package/lib/typescript/lib/module/BetRouter/components/ContestSelector.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/components/MyOpportunities.d.ts +8 -0
- package/lib/typescript/lib/module/BetRouter/components/MyOpportunities.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/components/OpportunityDetailModal.d.ts +15 -0
- package/lib/typescript/lib/module/BetRouter/components/OpportunityDetailModal.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/components/OpportunityHistory.d.ts +9 -0
- package/lib/typescript/lib/module/BetRouter/components/OpportunityHistory.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/components/PartnerCredentials.d.ts +11 -0
- package/lib/typescript/lib/module/BetRouter/components/PartnerCredentials.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/components/PlacedOpportunityModal.d.ts +12 -0
- package/lib/typescript/lib/module/BetRouter/components/PlacedOpportunityModal.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/components/admin/AutoFillView.d.ts +4 -0
- package/lib/typescript/lib/module/BetRouter/components/admin/AutoFillView.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/components/admin/ConfigManager.d.ts +4 -0
- package/lib/typescript/lib/module/BetRouter/components/admin/ConfigManager.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/components/admin/JobManager.d.ts +4 -0
- package/lib/typescript/lib/module/BetRouter/components/admin/JobManager.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/components/admin/LeagueContests.d.ts +9 -0
- package/lib/typescript/lib/module/BetRouter/components/admin/LeagueContests.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/components/admin/LeagueInfo.d.ts +6 -0
- package/lib/typescript/lib/module/BetRouter/components/admin/LeagueInfo.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/components/admin/LeagueParticipants.d.ts +8 -0
- package/lib/typescript/lib/module/BetRouter/components/admin/LeagueParticipants.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/index.d.ts +9 -0
- package/lib/typescript/lib/module/BetRouter/index.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/layouts/DesktopAdminLayout.d.ts +9 -0
- package/lib/typescript/lib/module/BetRouter/layouts/DesktopAdminLayout.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/layouts/DesktopLayout.d.ts +20 -0
- package/lib/typescript/lib/module/BetRouter/layouts/DesktopLayout.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/layouts/MobileAdminLayout.d.ts +9 -0
- package/lib/typescript/lib/module/BetRouter/layouts/MobileAdminLayout.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/layouts/MobileLayout.d.ts +20 -0
- package/lib/typescript/lib/module/BetRouter/layouts/MobileLayout.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/types/accounts.d.ts +2 -0
- package/lib/typescript/lib/module/BetRouter/types/accounts.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/types/api-contracts.d.ts +742 -0
- package/lib/typescript/lib/module/BetRouter/types/api-contracts.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/types/config.d.ts +2 -0
- package/lib/typescript/lib/module/BetRouter/types/config.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/types/contests.d.ts +2 -0
- package/lib/typescript/lib/module/BetRouter/types/contests.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/types/credentials.d.ts +55 -0
- package/lib/typescript/lib/module/BetRouter/types/credentials.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/types/index.d.ts +14 -0
- package/lib/typescript/lib/module/BetRouter/types/index.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/types/jobs.d.ts +2 -0
- package/lib/typescript/lib/module/BetRouter/types/jobs.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/types/leagues.d.ts +2 -0
- package/lib/typescript/lib/module/BetRouter/types/leagues.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/types/liquidity.d.ts +2 -0
- package/lib/typescript/lib/module/BetRouter/types/liquidity.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/types/markets.d.ts +2 -0
- package/lib/typescript/lib/module/BetRouter/types/markets.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/types/opportunities.d.ts +2 -0
- package/lib/typescript/lib/module/BetRouter/types/opportunities.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/types/orders.d.ts +2 -0
- package/lib/typescript/lib/module/BetRouter/types/orders.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/types/participants.d.ts +2 -0
- package/lib/typescript/lib/module/BetRouter/types/participants.d.ts.map +1 -0
- package/lib/typescript/lib/module/BetRouter/types/partners.d.ts +2 -0
- package/lib/typescript/lib/module/BetRouter/types/partners.d.ts.map +1 -0
- package/lib/typescript/lib/module/Charts/adapters/TradeChartAdapter.d.ts +81 -0
- package/lib/typescript/lib/module/Charts/adapters/TradeChartAdapter.d.ts.map +1 -0
- package/lib/typescript/lib/module/Charts/components/BaseLineChart.d.ts +31 -0
- package/lib/typescript/lib/module/Charts/components/BaseLineChart.d.ts.map +1 -0
- package/lib/typescript/lib/module/Charts/components/LivePriceChart.d.ts +41 -0
- package/lib/typescript/lib/module/Charts/components/LivePriceChart.d.ts.map +1 -0
- package/lib/typescript/lib/module/Charts/index.d.ts +6 -0
- package/lib/typescript/lib/module/Charts/index.d.ts.map +1 -0
- package/lib/typescript/lib/module/Charts/themes/chartTheme.d.ts +102 -0
- package/lib/typescript/lib/module/Charts/themes/chartTheme.d.ts.map +1 -0
- package/lib/typescript/lib/module/Charts/types.d.ts +2 -0
- package/lib/typescript/lib/module/Charts/types.d.ts.map +1 -0
- package/lib/typescript/lib/module/Charts/utils/formatters.d.ts +14 -0
- package/lib/typescript/lib/module/Charts/utils/formatters.d.ts.map +1 -0
- package/lib/typescript/lib/module/Components/Dropdown.d.ts.map +1 -1
- package/lib/typescript/lib/module/Components/Icons.d.ts +5 -0
- package/lib/typescript/lib/module/Components/Icons.d.ts.map +1 -1
- package/lib/typescript/lib/module/Components/index.d.ts +1 -0
- package/lib/typescript/lib/module/Components/index.d.ts.map +1 -1
- package/lib/typescript/lib/module/LocationTracker/LocationStatus.d.ts +2 -1
- package/lib/typescript/lib/module/LocationTracker/LocationStatus.d.ts.map +1 -1
- package/lib/typescript/lib/module/LocationTracker/api/index.d.ts +1 -1
- package/lib/typescript/lib/module/index.d.ts +3 -1
- package/lib/typescript/lib/module/index.d.ts.map +1 -1
- package/lib/typescript/src/ApiOverrides/index.d.ts.map +1 -1
- package/lib/typescript/src/BetRouter/api/index.d.ts +115 -0
- package/lib/typescript/src/BetRouter/api/index.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/api/types.d.ts +2 -0
- package/lib/typescript/src/BetRouter/api/types.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/components/AccountManager.d.ts +18 -0
- package/lib/typescript/src/BetRouter/components/AccountManager.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/components/AdminPortal.d.ts +15 -0
- package/lib/typescript/src/BetRouter/components/AdminPortal.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/components/BuyOpportunities.d.ts +24 -0
- package/lib/typescript/src/BetRouter/components/BuyOpportunities.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/components/BuyOpportunityCard.d.ts +19 -0
- package/lib/typescript/src/BetRouter/components/BuyOpportunityCard.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/components/ContestLiquidity.d.ts +15 -0
- package/lib/typescript/src/BetRouter/components/ContestLiquidity.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/components/ContestSelector.d.ts +13 -0
- package/lib/typescript/src/BetRouter/components/ContestSelector.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/components/MyOpportunities.d.ts +16 -0
- package/lib/typescript/src/BetRouter/components/MyOpportunities.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/components/OpportunityDetailModal.d.ts +21 -0
- package/lib/typescript/src/BetRouter/components/OpportunityDetailModal.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/components/OpportunityHistory.d.ts +20 -0
- package/lib/typescript/src/BetRouter/components/OpportunityHistory.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/components/PartnerCredentials.d.ts +12 -0
- package/lib/typescript/src/BetRouter/components/PartnerCredentials.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/components/PlacedOpportunityModal.d.ts +18 -0
- package/lib/typescript/src/BetRouter/components/PlacedOpportunityModal.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/components/admin/AutoFillView.d.ts +4 -0
- package/lib/typescript/src/BetRouter/components/admin/AutoFillView.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/components/admin/ConfigManager.d.ts +4 -0
- package/lib/typescript/src/BetRouter/components/admin/ConfigManager.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/components/admin/JobManager.d.ts +4 -0
- package/lib/typescript/src/BetRouter/components/admin/JobManager.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/components/admin/LeagueContests.d.ts +9 -0
- package/lib/typescript/src/BetRouter/components/admin/LeagueContests.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/components/admin/LeagueInfo.d.ts +8 -0
- package/lib/typescript/src/BetRouter/components/admin/LeagueInfo.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/components/admin/LeagueParticipants.d.ts +8 -0
- package/lib/typescript/src/BetRouter/components/admin/LeagueParticipants.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/index.d.ts +16 -0
- package/lib/typescript/src/BetRouter/index.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/layouts/DesktopAdminLayout.d.ts +15 -0
- package/lib/typescript/src/BetRouter/layouts/DesktopAdminLayout.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/layouts/DesktopLayout.d.ts +44 -0
- package/lib/typescript/src/BetRouter/layouts/DesktopLayout.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/layouts/MobileAdminLayout.d.ts +15 -0
- package/lib/typescript/src/BetRouter/layouts/MobileAdminLayout.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/layouts/MobileLayout.d.ts +44 -0
- package/lib/typescript/src/BetRouter/layouts/MobileLayout.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/types/accounts.d.ts +19 -0
- package/lib/typescript/src/BetRouter/types/accounts.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/types/api-contracts.d.ts +1071 -0
- package/lib/typescript/src/BetRouter/types/api-contracts.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/types/config.d.ts +12 -0
- package/lib/typescript/src/BetRouter/types/config.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/types/contests.d.ts +34 -0
- package/lib/typescript/src/BetRouter/types/contests.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/types/credentials.d.ts +24 -0
- package/lib/typescript/src/BetRouter/types/credentials.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/types/index.d.ts +14 -0
- package/lib/typescript/src/BetRouter/types/index.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/types/jobs.d.ts +35 -0
- package/lib/typescript/src/BetRouter/types/jobs.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/types/leagues.d.ts +26 -0
- package/lib/typescript/src/BetRouter/types/leagues.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/types/liquidity.d.ts +14 -0
- package/lib/typescript/src/BetRouter/types/liquidity.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/types/markets.d.ts +87 -0
- package/lib/typescript/src/BetRouter/types/markets.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/types/opportunities.d.ts +88 -0
- package/lib/typescript/src/BetRouter/types/opportunities.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/types/orders.d.ts +34 -0
- package/lib/typescript/src/BetRouter/types/orders.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/types/participants.d.ts +33 -0
- package/lib/typescript/src/BetRouter/types/participants.d.ts.map +1 -0
- package/lib/typescript/src/BetRouter/types/partners.d.ts +11 -0
- package/lib/typescript/src/BetRouter/types/partners.d.ts.map +1 -0
- package/lib/typescript/src/Charts/adapters/TradeChartAdapter.d.ts +117 -0
- package/lib/typescript/src/Charts/adapters/TradeChartAdapter.d.ts.map +1 -0
- package/lib/typescript/src/Charts/components/BaseLineChart.d.ts +40 -0
- package/lib/typescript/src/Charts/components/BaseLineChart.d.ts.map +1 -0
- package/lib/typescript/src/Charts/components/LivePriceChart.d.ts +13 -0
- package/lib/typescript/src/Charts/components/LivePriceChart.d.ts.map +1 -0
- package/lib/typescript/src/Charts/index.d.ts +28 -0
- package/lib/typescript/src/Charts/index.d.ts.map +1 -0
- package/lib/typescript/src/Charts/themes/chartTheme.d.ts +78 -0
- package/lib/typescript/src/Charts/themes/chartTheme.d.ts.map +1 -0
- package/lib/typescript/src/Charts/types.d.ts +155 -0
- package/lib/typescript/src/Charts/types.d.ts.map +1 -0
- package/lib/typescript/src/Charts/utils/formatters.d.ts +66 -0
- package/lib/typescript/src/Charts/utils/formatters.d.ts.map +1 -0
- package/lib/typescript/src/Components/Dropdown.d.ts.map +1 -1
- package/lib/typescript/src/Components/Icons.d.ts +1 -0
- package/lib/typescript/src/Components/Icons.d.ts.map +1 -1
- package/lib/typescript/src/Components/index.d.ts +1 -0
- package/lib/typescript/src/Components/index.d.ts.map +1 -1
- package/lib/typescript/src/LocationTracker/LocationStatus.d.ts +2 -1
- package/lib/typescript/src/LocationTracker/LocationStatus.d.ts.map +1 -1
- package/lib/typescript/src/LocationTracker/api/index.d.ts +3 -1
- package/lib/typescript/src/LocationTracker/api/index.d.ts.map +1 -1
- package/lib/typescript/src/index.d.ts +4 -1
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/package.json +4 -2
- package/src/ApiOverrides/index.ts +4 -0
- package/src/BetRouter/api/index.ts +854 -0
- package/src/BetRouter/api/types.ts +0 -0
- package/src/BetRouter/components/AccountManager.tsx +533 -0
- package/src/BetRouter/components/AdminPortal.tsx +44 -0
- package/src/BetRouter/components/BuyOpportunities.tsx +491 -0
- package/src/BetRouter/components/BuyOpportunityCard.tsx +331 -0
- package/src/BetRouter/components/ContestLiquidity.tsx +613 -0
- package/src/BetRouter/components/ContestSelector.tsx +179 -0
- package/src/BetRouter/components/MyOpportunities.tsx +279 -0
- package/src/BetRouter/components/MyOpportunities.tsx.bak +440 -0
- package/src/BetRouter/components/OpportunityDetailModal.tsx +360 -0
- package/src/BetRouter/components/OpportunityHistory.tsx +408 -0
- package/src/BetRouter/components/PartnerCredentials.tsx +212 -0
- package/src/BetRouter/components/PlacedOpportunityModal.tsx +192 -0
- package/src/BetRouter/components/admin/AutoFillView.tsx +275 -0
- package/src/BetRouter/components/admin/ConfigManager.tsx +596 -0
- package/src/BetRouter/components/admin/JobManager.tsx +758 -0
- package/src/BetRouter/components/admin/LeagueContests.tsx +2443 -0
- package/src/BetRouter/components/admin/LeagueInfo.tsx +253 -0
- package/src/BetRouter/components/admin/LeagueParticipants.tsx +662 -0
- package/src/BetRouter/index.tsx +453 -0
- package/src/BetRouter/layouts/DesktopAdminLayout.tsx +348 -0
- package/src/BetRouter/layouts/DesktopLayout.tsx +292 -0
- package/src/BetRouter/layouts/MobileAdminLayout.tsx +387 -0
- package/src/BetRouter/layouts/MobileLayout.tsx +325 -0
- package/src/BetRouter/types/ADMIN_PORTAL.md +863 -0
- package/src/BetRouter/types/ADMIN_PORTAL_SIMPLIFIED.md +1881 -0
- package/src/BetRouter/types/CREDENTIALS_EXAMPLE.md +350 -0
- package/src/BetRouter/types/LIQUIDITY_CLIENT_GUIDE.md +399 -0
- package/src/BetRouter/types/MARKET_LINKING_WORKFLOW.md +682 -0
- package/src/BetRouter/types/MARKET_LINKING_WORKFLOW_V2.md +627 -0
- package/src/BetRouter/types/README.md +249 -0
- package/src/BetRouter/types/accounts.ts +21 -0
- package/src/BetRouter/types/api-contracts.ts +1164 -0
- package/src/BetRouter/types/config.ts +12 -0
- package/src/BetRouter/types/contests.ts +37 -0
- package/src/BetRouter/types/credentials.ts +99 -0
- package/src/BetRouter/types/index.ts +16 -0
- package/src/BetRouter/types/jobs.ts +37 -0
- package/src/BetRouter/types/leagues.ts +29 -0
- package/src/BetRouter/types/liquidity.ts +15 -0
- package/src/BetRouter/types/markets.ts +94 -0
- package/src/BetRouter/types/opportunities.ts +107 -0
- package/src/BetRouter/types/orders.ts +51 -0
- package/src/BetRouter/types/participants.ts +34 -0
- package/src/BetRouter/types/partners.ts +10 -0
- package/src/Charts/README.md +310 -0
- package/src/Charts/adapters/TradeChartAdapter.ts +471 -0
- package/src/Charts/components/BaseLineChart.tsx +293 -0
- package/src/Charts/components/LivePriceChart.tsx +521 -0
- package/src/Charts/index.tsx +62 -0
- package/src/Charts/themes/chartTheme.ts +113 -0
- package/src/Charts/types.ts +160 -0
- package/src/Charts/utils/formatters.ts +182 -0
- package/src/Components/Dropdown.tsx +6 -3
- package/src/Components/Icons.tsx +12 -0
- package/src/Components/index.tsx +4 -0
- package/src/LocationTracker/LocationStatus.tsx +4 -3
- package/src/LocationTracker/api/index.tsx +2 -2
- package/src/index.tsx +6 -0
- package/src/types.d.ts +410 -2
package/src/types.d.ts
CHANGED
|
@@ -2440,7 +2440,12 @@ export interface BestAvailableOrderProps {
|
|
|
2440
2440
|
var_1:number,
|
|
2441
2441
|
promoted?:boolean,
|
|
2442
2442
|
odds: number,
|
|
2443
|
-
probability: number
|
|
2443
|
+
probability: number ,
|
|
2444
|
+
router_data?: {
|
|
2445
|
+
routing_margin: number;
|
|
2446
|
+
liquidity_hash: string;
|
|
2447
|
+
liquidity_id: string;
|
|
2448
|
+
};
|
|
2444
2449
|
}
|
|
2445
2450
|
|
|
2446
2451
|
export interface EventOrderStatProps {
|
|
@@ -2747,7 +2752,12 @@ export interface OrderProps {
|
|
|
2747
2752
|
grade?: number,
|
|
2748
2753
|
last_grade_datetime?:any,
|
|
2749
2754
|
no_bet?:boolean,
|
|
2750
|
-
no_bet_reason?:string
|
|
2755
|
+
no_bet_reason?:string,
|
|
2756
|
+
router_data?: {
|
|
2757
|
+
routing_margin: number;
|
|
2758
|
+
liquidity_hash: string;
|
|
2759
|
+
liquidity_id: string;
|
|
2760
|
+
};
|
|
2751
2761
|
}
|
|
2752
2762
|
|
|
2753
2763
|
export interface OverallOrderAnalyticsProps {
|
|
@@ -3269,4 +3279,402 @@ export interface ServersResponse {
|
|
|
3269
3279
|
totalGuilds: number;
|
|
3270
3280
|
servers: ServerInfo[];
|
|
3271
3281
|
error?:string
|
|
3282
|
+
}
|
|
3283
|
+
|
|
3284
|
+
|
|
3285
|
+
|
|
3286
|
+
|
|
3287
|
+
//BET ROUTER
|
|
3288
|
+
|
|
3289
|
+
export interface RouterPartnerProps {
|
|
3290
|
+
partner_id: string;
|
|
3291
|
+
name: string;
|
|
3292
|
+
status: 'active' | 'inactive';
|
|
3293
|
+
options: Record<string, any>;
|
|
3294
|
+
create_datetime: any;
|
|
3295
|
+
last_update_datetime: any;
|
|
3296
|
+
}
|
|
3297
|
+
|
|
3298
|
+
export interface RouterLeagueProps {
|
|
3299
|
+
router_league_id: string;
|
|
3300
|
+
league_id: string;
|
|
3301
|
+
name: string;
|
|
3302
|
+
status:string,
|
|
3303
|
+
create_datetime: any;
|
|
3304
|
+
last_update_datetime: any;
|
|
3305
|
+
}
|
|
3306
|
+
|
|
3307
|
+
export interface PartnerLeagueProps {
|
|
3308
|
+
partner_league_id: string;
|
|
3309
|
+
partner_id: string;
|
|
3310
|
+
router_league_id: string;
|
|
3311
|
+
external_ids: string[];
|
|
3312
|
+
create_datetime: any;
|
|
3313
|
+
last_update_datetime: any;
|
|
3314
|
+
}
|
|
3315
|
+
|
|
3316
|
+
export interface RawLeagueProps {
|
|
3317
|
+
raw_league_id: string;
|
|
3318
|
+
partner_id: string;
|
|
3319
|
+
name: string;
|
|
3320
|
+
external_id: string;
|
|
3321
|
+
status: 'active' | 'closed';
|
|
3322
|
+
create_datetime: any;
|
|
3323
|
+
last_update_datetime: any;
|
|
3324
|
+
}
|
|
3325
|
+
|
|
3326
|
+
export interface RouterContestProps {
|
|
3327
|
+
router_contest_id: string;
|
|
3328
|
+
router_league_id: string;
|
|
3329
|
+
contest_id: string;
|
|
3330
|
+
contest_label: string;
|
|
3331
|
+
contest_type: 'team' | 'tournament' | 'match';
|
|
3332
|
+
scheduled_datetime: any;
|
|
3333
|
+
status: 'open' | 'closed' | 'settled';
|
|
3334
|
+
create_datetime: any;
|
|
3335
|
+
last_update_datetime: any;
|
|
3336
|
+
}
|
|
3337
|
+
|
|
3338
|
+
export interface PartnerContestProps {
|
|
3339
|
+
partner_contest_id: string;
|
|
3340
|
+
partner_id: string;
|
|
3341
|
+
router_contest_id: string;
|
|
3342
|
+
raw_contest_id?: string;
|
|
3343
|
+
external_ids: string[];
|
|
3344
|
+
create_datetime: any;
|
|
3345
|
+
last_update_datetime: any;
|
|
3346
|
+
}
|
|
3347
|
+
|
|
3348
|
+
export interface RawContestProps {
|
|
3349
|
+
raw_contest_id: string;
|
|
3350
|
+
partner_id: string;
|
|
3351
|
+
pretty_title: string;
|
|
3352
|
+
scheduled_datetime: string;
|
|
3353
|
+
external_id: string;
|
|
3354
|
+
status: 'active' | 'closed';
|
|
3355
|
+
create_datetime: any;
|
|
3356
|
+
last_update_datetime: any;
|
|
3357
|
+
}
|
|
3358
|
+
|
|
3359
|
+
export interface RouterMarketProps {
|
|
3360
|
+
router_market_id: string;
|
|
3361
|
+
market_id: string;
|
|
3362
|
+
market_label: string;
|
|
3363
|
+
market_description: string;
|
|
3364
|
+
type: 'binary';
|
|
3365
|
+
create_datetime: any;
|
|
3366
|
+
last_update_datetime: any;
|
|
3367
|
+
}
|
|
3368
|
+
|
|
3369
|
+
export interface RawMarketProps {
|
|
3370
|
+
raw_market_id: string;
|
|
3371
|
+
partner_id: string;
|
|
3372
|
+
partner_contest_id: string;
|
|
3373
|
+
external_id: string;
|
|
3374
|
+
pretty_title: string;
|
|
3375
|
+
status: 'active' | 'closed';
|
|
3376
|
+
create_datetime: any;
|
|
3377
|
+
last_update_datetime: any;
|
|
3378
|
+
}
|
|
3379
|
+
|
|
3380
|
+
export interface MarketContestProps {
|
|
3381
|
+
market_contest_id: string;
|
|
3382
|
+
router_contest_id: string;
|
|
3383
|
+
router_market_id: string;
|
|
3384
|
+
status: 'open' | 'closed';
|
|
3385
|
+
create_datetime: any;
|
|
3386
|
+
last_update_datetime: any;
|
|
3387
|
+
}
|
|
3388
|
+
|
|
3389
|
+
export interface RouterMarketVariableProps {
|
|
3390
|
+
router_market_variable_id: string;
|
|
3391
|
+
router_market_id: string;
|
|
3392
|
+
variable: number;
|
|
3393
|
+
variable_type: 'total' | 'spread';
|
|
3394
|
+
create_datetime: any;
|
|
3395
|
+
last_update_datetime: any;
|
|
3396
|
+
}
|
|
3397
|
+
|
|
3398
|
+
export interface RouterMarketSideProps {
|
|
3399
|
+
market_side_id: string;
|
|
3400
|
+
router_market_id: string;
|
|
3401
|
+
side_type: string;
|
|
3402
|
+
side_key: string;
|
|
3403
|
+
create_datetime: any;
|
|
3404
|
+
last_update_datetime: any;
|
|
3405
|
+
}
|
|
3406
|
+
|
|
3407
|
+
export interface PartnerMarketProps {
|
|
3408
|
+
partner_market_id: string;
|
|
3409
|
+
raw_market_id: string;
|
|
3410
|
+
router_market_variable_id: string;
|
|
3411
|
+
partner_id: string;
|
|
3412
|
+
router_market_id: string;
|
|
3413
|
+
market_side_id: string;
|
|
3414
|
+
external_id: string;
|
|
3415
|
+
create_datetime: any;
|
|
3416
|
+
last_update_datetime: any;
|
|
3417
|
+
}
|
|
3418
|
+
|
|
3419
|
+
export interface RouterLiquidityProps {
|
|
3420
|
+
router_liquidity_id: string;
|
|
3421
|
+
router_contest_id: string;
|
|
3422
|
+
partner_market_id: string;
|
|
3423
|
+
available: number;
|
|
3424
|
+
price: number;
|
|
3425
|
+
expire_datetime?: any;
|
|
3426
|
+
create_datetime: any;
|
|
3427
|
+
last_update_datetime: any;
|
|
3428
|
+
}
|
|
3429
|
+
|
|
3430
|
+
|
|
3431
|
+
export interface RouterOrderProps {
|
|
3432
|
+
router_order_id: string // Primary key
|
|
3433
|
+
router_account_id: string // FK - Which account placed this order
|
|
3434
|
+
account_partner_id: string // FK - Associated with the partner_id
|
|
3435
|
+
partner_id: string // FK - Denormalized for easier queries
|
|
3436
|
+
|
|
3437
|
+
// Contest/Market References
|
|
3438
|
+
router_contest_id: string // FK - Which contest
|
|
3439
|
+
router_market_id: string // FK - Which market
|
|
3440
|
+
partner_market_id: string // FK - Partner's market
|
|
3441
|
+
|
|
3442
|
+
// Order Details
|
|
3443
|
+
title: string // Pretty title (i.e., "Minnesota to win", "Los Angeles to win")
|
|
3444
|
+
external_id: string // Partner platform order ID - used to get status from partner
|
|
3445
|
+
side: string // Which side/outcome (e.g., "home", "away", "yes", "no")
|
|
3446
|
+
|
|
3447
|
+
// Opportunity Tracking
|
|
3448
|
+
liquidity_hash: string // Hash of liquidity - can recalculate opportunity to test performance
|
|
3449
|
+
opportunity_type: BuyOpportunity['opportunity_type'] // arbitrage | middle | reverse_middle
|
|
3450
|
+
opportunity_id: string // The generated opportunity_id that this order is part of
|
|
3451
|
+
leg_number: number // Which leg of the opportunity (1 or 2)
|
|
3452
|
+
model_id?: string // FK - For model performance tracking in the future
|
|
3453
|
+
|
|
3454
|
+
// Financial
|
|
3455
|
+
amount: number // Bet amount
|
|
3456
|
+
amount_with_fee: number // Bet amount plus fee (total cost)
|
|
3457
|
+
price: number // Price/odds at placement (e.g., 0.55)
|
|
3458
|
+
fee: number // Fee charged by partner
|
|
3459
|
+
winnings: number // Gross winnings before fees
|
|
3460
|
+
potential_payout: number //Potential payout using amount and price
|
|
3461
|
+
net_winnings: number // Net profit/loss after fees
|
|
3462
|
+
roi: number // Return on investment percentage
|
|
3463
|
+
|
|
3464
|
+
// Status & Results
|
|
3465
|
+
status: 'open' | 'closed' // Simple status: open when active, closed when settled/cancelled/failed
|
|
3466
|
+
partner_order_status?: string // Raw status from partner API for granular tracking
|
|
3467
|
+
result?: 'win' | 'lose' | 'push' | 'cancelled' // Final result after settlement
|
|
3468
|
+
|
|
3469
|
+
// Settlement
|
|
3470
|
+
settled_datetime?: any // Timestamp when the order was settled
|
|
3471
|
+
|
|
3472
|
+
// Timestamps
|
|
3473
|
+
create_datetime: any // When order record was created
|
|
3474
|
+
placed_datetime?: any // When order was actually placed with partner
|
|
3475
|
+
last_update_datetime: any // Last updated
|
|
3476
|
+
}
|
|
3477
|
+
|
|
3478
|
+
export interface OpportunityProps {
|
|
3479
|
+
opportunity_id: string // PK - From BuyOpportunity - for grouping related attempts
|
|
3480
|
+
router_account_id: string // FK - Which account is taking this opportunity
|
|
3481
|
+
opportunity_type: BuyOpportunity['opportunity_type'] // arbitrage | middle | reverse_middle
|
|
3482
|
+
router_contest_id: string // FK
|
|
3483
|
+
expected_profit: number
|
|
3484
|
+
expected_roi: number
|
|
3485
|
+
total_bet_amount: number
|
|
3486
|
+
total_winnings: number // Sum of all order winnings
|
|
3487
|
+
total_net_winnings: number // Sum of all order net_winnings
|
|
3488
|
+
total_fees: number // Sum of all order fees
|
|
3489
|
+
actual_profit?: number // Actual profit once opportunity is closed
|
|
3490
|
+
actual_roi: number // Actual ROI once opportunity is closed
|
|
3491
|
+
fill_status: 'pending' | 'all_filled' | 'partially_filled' | 'failed' // Status of order placement
|
|
3492
|
+
status: 'open' | 'closed' // Overall status: open while any order is open, closed when all orders closed or fill failed
|
|
3493
|
+
create_datetime: any
|
|
3494
|
+
completed_datetime?: any
|
|
3495
|
+
}
|
|
3496
|
+
|
|
3497
|
+
export interface OpportunityStatusLegProps {
|
|
3498
|
+
opportunity_status_leg_id: string // PK
|
|
3499
|
+
opportunity_id: string // FK - references opportunities table
|
|
3500
|
+
leg_number: number // 1, 2, 3, etc.
|
|
3501
|
+
liquidity_hash: string
|
|
3502
|
+
partner_id: string
|
|
3503
|
+
partner_market_id: string
|
|
3504
|
+
expected_amount: number
|
|
3505
|
+
expected_price: number
|
|
3506
|
+
status: 'pending' | 'success' | 'failed'
|
|
3507
|
+
router_order_id?: string // FK - null until order placed
|
|
3508
|
+
error_message?: string
|
|
3509
|
+
create_datetime: any
|
|
3510
|
+
last_update_datetime: any
|
|
3511
|
+
}
|
|
3512
|
+
|
|
3513
|
+
// ============================================================================
|
|
3514
|
+
// API Request/Response Types
|
|
3515
|
+
// ============================================================================
|
|
3516
|
+
|
|
3517
|
+
// Partners
|
|
3518
|
+
export interface LoadPartnersResponse {
|
|
3519
|
+
message: string;
|
|
3520
|
+
count: number;
|
|
3521
|
+
partners: RouterPartnerProps[];
|
|
3522
|
+
}
|
|
3523
|
+
|
|
3524
|
+
// Leagues
|
|
3525
|
+
export interface GetOpenLeaguesResponse {
|
|
3526
|
+
message: string;
|
|
3527
|
+
raw_leagues: RawLeagueProps[];
|
|
3528
|
+
partner_leagues: PartnerLeagueProps[];
|
|
3529
|
+
}
|
|
3530
|
+
|
|
3531
|
+
export interface LinkLeagueRequest {
|
|
3532
|
+
raw_league_id: string;
|
|
3533
|
+
router_league_id: string;
|
|
3534
|
+
}
|
|
3535
|
+
|
|
3536
|
+
export interface LinkLeagueResponse {
|
|
3537
|
+
message: string;
|
|
3538
|
+
partnerLeague: PartnerLeagueProps;
|
|
3539
|
+
}
|
|
3540
|
+
|
|
3541
|
+
export interface LoadLeaguesResponse {
|
|
3542
|
+
message: string;
|
|
3543
|
+
count: number;
|
|
3544
|
+
leagues: RouterLeagueProps[];
|
|
3545
|
+
}
|
|
3546
|
+
|
|
3547
|
+
// Contests
|
|
3548
|
+
export interface GetOpenContestsResponse {
|
|
3549
|
+
message: string;
|
|
3550
|
+
raw_contests: RawContestProps[];
|
|
3551
|
+
partner_contests: PartnerContestProps[];
|
|
3552
|
+
router_contests: RouterContestProps[];
|
|
3553
|
+
}
|
|
3554
|
+
|
|
3555
|
+
export interface LinkContestRequest {
|
|
3556
|
+
raw_contest_ids: string[];
|
|
3557
|
+
router_contest_id: string;
|
|
3558
|
+
}
|
|
3559
|
+
|
|
3560
|
+
export interface LinkContestResponse {
|
|
3561
|
+
message: string;
|
|
3562
|
+
success: PartnerContestProps[];
|
|
3563
|
+
errors: Array<{ raw_contest_id: string; error: string }>;
|
|
3564
|
+
total: number;
|
|
3565
|
+
successCount: number;
|
|
3566
|
+
errorCount: number;
|
|
3567
|
+
}
|
|
3568
|
+
|
|
3569
|
+
export interface LoadContestsRequest {
|
|
3570
|
+
router_league_id: string;
|
|
3571
|
+
}
|
|
3572
|
+
|
|
3573
|
+
export interface LoadContestsResponse {
|
|
3574
|
+
message: string;
|
|
3575
|
+
count: number;
|
|
3576
|
+
contests: RouterContestProps[];
|
|
3577
|
+
}
|
|
3578
|
+
|
|
3579
|
+
export interface GetContestResponse {
|
|
3580
|
+
message: string;
|
|
3581
|
+
router_contest: RouterContestProps;
|
|
3582
|
+
partner_contests: PartnerContestProps[];
|
|
3583
|
+
market_contests: MarketContestProps[];
|
|
3584
|
+
router_markets: RouterMarketProps[];
|
|
3585
|
+
partner_markets: PartnerMarketProps[];
|
|
3586
|
+
}
|
|
3587
|
+
|
|
3588
|
+
// Markets
|
|
3589
|
+
export interface GetOpenMarketsResponse {
|
|
3590
|
+
message: string;
|
|
3591
|
+
router_contest: RouterContestProps;
|
|
3592
|
+
raw_markets_count: number;
|
|
3593
|
+
partner_markets_count: number;
|
|
3594
|
+
router_market_sides_count: number;
|
|
3595
|
+
router_markets_count: number;
|
|
3596
|
+
raw_markets: RawMarketProps[];
|
|
3597
|
+
partner_markets: PartnerMarketProps[];
|
|
3598
|
+
router_market_sides: RouterMarketSideProps[];
|
|
3599
|
+
router_markets: RouterMarketProps[];
|
|
3600
|
+
}
|
|
3601
|
+
|
|
3602
|
+
export interface LoadMarketsResponse {
|
|
3603
|
+
message: string;
|
|
3604
|
+
count: number;
|
|
3605
|
+
markets: RouterMarketProps[];
|
|
3606
|
+
}
|
|
3607
|
+
|
|
3608
|
+
export interface LinkMarketRequest {
|
|
3609
|
+
raw_market_id: string;
|
|
3610
|
+
router_market_id: string;
|
|
3611
|
+
market_side_id: string;
|
|
3612
|
+
price_key?:string,
|
|
3613
|
+
variable?: number;
|
|
3614
|
+
variable_type?: 'total' | 'spread';
|
|
3615
|
+
}
|
|
3616
|
+
|
|
3617
|
+
export interface LinkMarketResponse {
|
|
3618
|
+
message: string;
|
|
3619
|
+
partnerMarket: PartnerMarketProps;
|
|
3620
|
+
}
|
|
3621
|
+
|
|
3622
|
+
// Liquidity
|
|
3623
|
+
export interface GetLiquidityResponse {
|
|
3624
|
+
message: string;
|
|
3625
|
+
partners:PartnerProps[],
|
|
3626
|
+
partner_markets:PartnerMarketProps[]
|
|
3627
|
+
liquidity: RouterLiquidityProps[];
|
|
3628
|
+
router_markets:RouterMarketProps[],
|
|
3629
|
+
router_market_sides:RouterMarketSideProps[],
|
|
3630
|
+
router_market_variables:RouterMarketVariableProps[],
|
|
3631
|
+
buy_opportunities:BuyOpportunity[]
|
|
3632
|
+
}
|
|
3633
|
+
|
|
3634
|
+
export interface OpportunityLeg {
|
|
3635
|
+
leg_number: number
|
|
3636
|
+
partner_id: string
|
|
3637
|
+
partner_market: PartnerMarketProps
|
|
3638
|
+
liquidity: RouterLiquidityProps
|
|
3639
|
+
liquidity_hash: string
|
|
3640
|
+
buy_id?: string
|
|
3641
|
+
price: number
|
|
3642
|
+
bet_amount: number
|
|
3643
|
+
potential_payout: number
|
|
3644
|
+
fee: number
|
|
3645
|
+
router_market_variable_id: string
|
|
3646
|
+
line?: number // The variable value (e.g., -3.5) for middles
|
|
3647
|
+
}
|
|
3648
|
+
|
|
3649
|
+
export interface BuyOpportunity {
|
|
3650
|
+
opportunity_id: string
|
|
3651
|
+
opportunity_type: 'arbitrage' | 'middle' | 'reverse_middle' | 'auto_arbitrage'
|
|
3652
|
+
router_contest_id: string
|
|
3653
|
+
router_market_id: string
|
|
3654
|
+
market_side_id: string
|
|
3655
|
+
|
|
3656
|
+
// Legs array instead of _1, _2 suffixes
|
|
3657
|
+
legs: OpportunityLeg[]
|
|
3658
|
+
|
|
3659
|
+
// Overall opportunity metrics
|
|
3660
|
+
total_price: number
|
|
3661
|
+
price_difference: number // How much below 1.0 (e.g., 0.05 means 5% arbitrage)
|
|
3662
|
+
guaranteed_profit: number // Minimum profit across both outcomes
|
|
3663
|
+
roi: number // Return on investment as percentage
|
|
3664
|
+
opportunity_with_fee: boolean // Whether opportunity still profitable after fees
|
|
3665
|
+
|
|
3666
|
+
// Common fields for all opportunity types
|
|
3667
|
+
investment: number // Total money put down (sum of all leg bet_amounts)
|
|
3668
|
+
at_risk: number // Amount that could be lost (0 for arb, varies for middles)
|
|
3669
|
+
loss_probability: number // Probability of losing the at_risk amount (as decimal, e.g., 0.15 = 15%)
|
|
3670
|
+
total_potential_winnings: number // Maximum profit possible
|
|
3671
|
+
potential_winnings_probability: number // Probability of hitting max winnings (as decimal)
|
|
3672
|
+
expected_value: number // Expected value in dollars
|
|
3673
|
+
|
|
3674
|
+
// Middle-specific fields
|
|
3675
|
+
middle_range_start?: number // Start of double-win window
|
|
3676
|
+
middle_range_end?: number // End of double-win window
|
|
3677
|
+
both_win_payout?: number // Payout when both bets win (lands in middle)
|
|
3678
|
+
both_lose_loss?: number // Loss when both bets lose
|
|
3679
|
+
middle_win_profit?: number // Profit if middle hits
|
|
3272
3680
|
}
|