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
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api-contracts.d.ts","sourceRoot":"","sources":["../../../../../module/BetRouter/types/api-contracts.js"],"names":[],"mappings":"AASA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqvBE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../../../module/BetRouter/types/config.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contests.d.ts","sourceRoot":"","sources":["../../../../../module/BetRouter/types/contests.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
export function isKalshiCredentials(creds: any): boolean;
|
|
2
|
+
export function isBettorEdgeCredentials(creds: any): boolean;
|
|
3
|
+
export function isBetOpenlyCredentials(creds: any): boolean;
|
|
4
|
+
export function getRequiredCredentialFields(partnerName: any): string[];
|
|
5
|
+
export function getCredentialFieldLabels(partnerName: any): {
|
|
6
|
+
api_key: string;
|
|
7
|
+
private_key_pem: string;
|
|
8
|
+
username?: undefined;
|
|
9
|
+
password?: undefined;
|
|
10
|
+
user_id?: undefined;
|
|
11
|
+
} | {
|
|
12
|
+
username: string;
|
|
13
|
+
password: string;
|
|
14
|
+
api_key?: undefined;
|
|
15
|
+
private_key_pem?: undefined;
|
|
16
|
+
user_id?: undefined;
|
|
17
|
+
} | {
|
|
18
|
+
username: string;
|
|
19
|
+
password: string;
|
|
20
|
+
user_id: string;
|
|
21
|
+
api_key?: undefined;
|
|
22
|
+
private_key_pem?: undefined;
|
|
23
|
+
} | {
|
|
24
|
+
api_key?: undefined;
|
|
25
|
+
private_key_pem?: undefined;
|
|
26
|
+
username?: undefined;
|
|
27
|
+
password?: undefined;
|
|
28
|
+
user_id?: undefined;
|
|
29
|
+
};
|
|
30
|
+
export function getCredentialFieldTypes(partnerName: any): {
|
|
31
|
+
api_key: string;
|
|
32
|
+
private_key_pem: string;
|
|
33
|
+
username?: undefined;
|
|
34
|
+
password?: undefined;
|
|
35
|
+
user_id?: undefined;
|
|
36
|
+
} | {
|
|
37
|
+
username: string;
|
|
38
|
+
password: string;
|
|
39
|
+
api_key?: undefined;
|
|
40
|
+
private_key_pem?: undefined;
|
|
41
|
+
user_id?: undefined;
|
|
42
|
+
} | {
|
|
43
|
+
user_id: string;
|
|
44
|
+
username: string;
|
|
45
|
+
password: string;
|
|
46
|
+
api_key?: undefined;
|
|
47
|
+
private_key_pem?: undefined;
|
|
48
|
+
} | {
|
|
49
|
+
api_key?: undefined;
|
|
50
|
+
private_key_pem?: undefined;
|
|
51
|
+
username?: undefined;
|
|
52
|
+
password?: undefined;
|
|
53
|
+
user_id?: undefined;
|
|
54
|
+
};
|
|
55
|
+
//# sourceMappingURL=credentials.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"credentials.d.ts","sourceRoot":"","sources":["../../../../../module/BetRouter/types/credentials.js"],"names":[],"mappings":"AAMO,yDAEN;AACM,6DAEN;AACM,4DAEN;AAGM,wEAWN;AAGM;;;;;;;;;;;;;;;;;;;;;;;;EAqBN;AAGM;;;;;;;;;;;;;;;;;;;;;;;;EAqBN"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export * from "./opportunities";
|
|
2
|
+
export * from "./orders";
|
|
3
|
+
export * from "./accounts";
|
|
4
|
+
export * from "./partners";
|
|
5
|
+
export * from "./leagues";
|
|
6
|
+
export * from "./contests";
|
|
7
|
+
export * from "./participants";
|
|
8
|
+
export * from "./markets";
|
|
9
|
+
export * from "./liquidity";
|
|
10
|
+
export * from "./credentials";
|
|
11
|
+
export * from "./config";
|
|
12
|
+
export * from "./jobs";
|
|
13
|
+
export * from "./api-contracts";
|
|
14
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../module/BetRouter/types/index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"jobs.d.ts","sourceRoot":"","sources":["../../../../../module/BetRouter/types/jobs.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"leagues.d.ts","sourceRoot":"","sources":["../../../../../module/BetRouter/types/leagues.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"liquidity.d.ts","sourceRoot":"","sources":["../../../../../module/BetRouter/types/liquidity.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"markets.d.ts","sourceRoot":"","sources":["../../../../../module/BetRouter/types/markets.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"opportunities.d.ts","sourceRoot":"","sources":["../../../../../module/BetRouter/types/opportunities.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"orders.d.ts","sourceRoot":"","sources":["../../../../../module/BetRouter/types/orders.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"participants.d.ts","sourceRoot":"","sources":["../../../../../module/BetRouter/types/participants.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"partners.d.ts","sourceRoot":"","sources":["../../../../../module/BetRouter/types/partners.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Re-export TradeProps for convenience
|
|
3
|
+
*/
|
|
4
|
+
/**
|
|
5
|
+
* Side label mapping
|
|
6
|
+
*/
|
|
7
|
+
/**
|
|
8
|
+
* Time range filter options
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* Options for trade chart transformation
|
|
12
|
+
*/
|
|
13
|
+
/**
|
|
14
|
+
* TradeChartAdapter
|
|
15
|
+
* Handles transformation of trade data to chart format
|
|
16
|
+
*/
|
|
17
|
+
export class TradeChartAdapter {
|
|
18
|
+
/**
|
|
19
|
+
* Create reversed trades from single-side trade data
|
|
20
|
+
* Takes trades from one side (e.g., home) and creates the opposite side (e.g., away)
|
|
21
|
+
* @param trades Array of trades from one side
|
|
22
|
+
* @param market Market object with trade_side and side_options
|
|
23
|
+
* @returns Array with both original and reversed trades
|
|
24
|
+
*/
|
|
25
|
+
static createReversedTrades(trades: any, market: any): any;
|
|
26
|
+
/**
|
|
27
|
+
* Convert array of BettorEdge trades to time series chart data
|
|
28
|
+
* @param trades Array of TradeProps objects
|
|
29
|
+
* @param options Transformation options
|
|
30
|
+
* @returns Array of TimeSeriesData (side series based on side_id)
|
|
31
|
+
*/
|
|
32
|
+
static toTimeSeriesData(trades: any, options?: {}): any[];
|
|
33
|
+
/**
|
|
34
|
+
* Append a new trade to existing chart data
|
|
35
|
+
* Used for live updates
|
|
36
|
+
*/
|
|
37
|
+
static appendTrade(existingData: any, newTrade: any, maxPoints?: number): any;
|
|
38
|
+
/**
|
|
39
|
+
* Group trades by side_id
|
|
40
|
+
*/
|
|
41
|
+
static groupBySide(trades: any): any;
|
|
42
|
+
/**
|
|
43
|
+
* Convert trades to TimeSeriesPoints
|
|
44
|
+
*/
|
|
45
|
+
static tradesToPoints(trades: any): any;
|
|
46
|
+
/**
|
|
47
|
+
* Limit data points by sampling
|
|
48
|
+
* Keeps first, last, and evenly spaced points in between
|
|
49
|
+
*/
|
|
50
|
+
static limitDataPoints(trades: any, maxPoints: any): any;
|
|
51
|
+
/**
|
|
52
|
+
* Simple moving average smoothing
|
|
53
|
+
* Reduces noise in price data
|
|
54
|
+
* NOTE: Preserves the last point's actual value (no smoothing on most recent trade)
|
|
55
|
+
*/
|
|
56
|
+
static smoothData(points: any, windowSize?: number): any;
|
|
57
|
+
/**
|
|
58
|
+
* Filter trades by time range
|
|
59
|
+
*/
|
|
60
|
+
static filterByTimeRange(trades: any, startTime: any, endTime: any): any;
|
|
61
|
+
/**
|
|
62
|
+
* Get price statistics from trades
|
|
63
|
+
*/
|
|
64
|
+
static getStats(trades: any): {
|
|
65
|
+
min: number;
|
|
66
|
+
max: number;
|
|
67
|
+
avg: number;
|
|
68
|
+
latest: any;
|
|
69
|
+
change: number;
|
|
70
|
+
};
|
|
71
|
+
/**
|
|
72
|
+
* Apply time range filter to trades
|
|
73
|
+
*/
|
|
74
|
+
static applyTimeFilter(trades: any, filter: any, customRange: any): any;
|
|
75
|
+
/**
|
|
76
|
+
* Smart sampling based on data timespan
|
|
77
|
+
* Automatically determines optimal sample interval
|
|
78
|
+
*/
|
|
79
|
+
static smartSample(trades: any, allTrades: any, maxPoints: any): any;
|
|
80
|
+
}
|
|
81
|
+
//# sourceMappingURL=TradeChartAdapter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TradeChartAdapter.d.ts","sourceRoot":"","sources":["../../../../../module/Charts/adapters/TradeChartAdapter.js"],"names":[],"mappings":"AASA;;GAEG;AAEH;;GAEG;AAEH;;GAEG;AAEH;;GAEG;AAEH;;;GAGG;AACH;IACE;;;;;;OAMG;IACH,2DAwBC;IAED;;;;;OAKG;IACH,0DAiFC;IAED;;;OAGG;IACH,8EAqBC;IAED;;OAEG;IACH,qCAQC;IAED;;OAEG;IACH,wCAUC;IAED;;;OAGG;IACH,yDAeC;IAED;;;;OAIG;IACH,yDAuBC;IAED;;OAEG;IACH,yEAKC;IAED;;OAEG;IACH;;;;;;MAwBC;IAED;;OAEG;IACH,wEAgCC;IAED;;;OAGG;IACH,qEA2DC;CACF"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export default BaseLineChart;
|
|
2
|
+
/**
|
|
3
|
+
* BaseLineChart - Cross-platform line chart wrapper
|
|
4
|
+
*/
|
|
5
|
+
declare function BaseLineChart({ data, height, width, spacing, yAxisPrefix, yAxisSuffix, yAxisLabelCount, showYAxis, showXAxis, yAxisColor, xAxisColor, yAxisThickness, xAxisThickness, yAxisTextColor, xAxisTextColor, gridColor, showGrid, yMin, yMax, backgroundColor, animated, onDataPointClick, hideDataPointText }: {
|
|
6
|
+
data: any;
|
|
7
|
+
height?: number | undefined;
|
|
8
|
+
width: any;
|
|
9
|
+
spacing?: number | undefined;
|
|
10
|
+
yAxisPrefix?: string | undefined;
|
|
11
|
+
yAxisSuffix?: string | undefined;
|
|
12
|
+
yAxisLabelCount?: number | undefined;
|
|
13
|
+
showYAxis?: boolean | undefined;
|
|
14
|
+
showXAxis?: boolean | undefined;
|
|
15
|
+
yAxisColor?: string | undefined;
|
|
16
|
+
xAxisColor?: string | undefined;
|
|
17
|
+
yAxisThickness?: number | undefined;
|
|
18
|
+
xAxisThickness?: number | undefined;
|
|
19
|
+
yAxisTextColor?: string | undefined;
|
|
20
|
+
xAxisTextColor?: string | undefined;
|
|
21
|
+
gridColor?: string | undefined;
|
|
22
|
+
showGrid?: boolean | undefined;
|
|
23
|
+
yMin: any;
|
|
24
|
+
yMax: any;
|
|
25
|
+
backgroundColor?: string | undefined;
|
|
26
|
+
animated?: boolean | undefined;
|
|
27
|
+
onDataPointClick: any;
|
|
28
|
+
hideDataPointText?: boolean | undefined;
|
|
29
|
+
}): React.FunctionComponentElement<import("react-native-gifted-charts").LineChartPropsType> | null;
|
|
30
|
+
import React from 'react';
|
|
31
|
+
//# sourceMappingURL=BaseLineChart.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BaseLineChart.d.ts","sourceRoot":"","sources":["../../../../../module/Charts/components/BaseLineChart.js"],"names":[],"mappings":";AAcA;;GAEG;AACH;;;;;;;;;;;;;;;;;;;;;;;;mGAqQC;kBA/QiB,OAAO"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
export default LivePriceChart;
|
|
2
|
+
/**
|
|
3
|
+
* LivePriceChart
|
|
4
|
+
* Beautiful real-time price chart showing away vs home odds movement
|
|
5
|
+
*/
|
|
6
|
+
declare function LivePriceChart({ data, height, width, animated, showTooltip, showLegend, legendPosition, showTimeFilter, initialTimeFilter, yAxisPrefix, yAxisSuffix, yAxisLabelCount, xAxisLabelCount, showYAxis, showXAxis, yAxisColor, xAxisColor, yAxisThickness, xAxisThickness, yAxisTextColor, xAxisTextColor, gridColor, showGrid, timeRange, onPointPress, yMin, yMax, useFixedYRange, spacing, backgroundColor, displayAsPercentage, hideDataPointText }: {
|
|
7
|
+
data: any;
|
|
8
|
+
height?: number | undefined;
|
|
9
|
+
width: any;
|
|
10
|
+
animated?: boolean | undefined;
|
|
11
|
+
showTooltip?: boolean | undefined;
|
|
12
|
+
showLegend?: boolean | undefined;
|
|
13
|
+
legendPosition?: string | undefined;
|
|
14
|
+
showTimeFilter?: boolean | undefined;
|
|
15
|
+
initialTimeFilter?: string | undefined;
|
|
16
|
+
yAxisPrefix?: string | undefined;
|
|
17
|
+
yAxisSuffix?: string | undefined;
|
|
18
|
+
yAxisLabelCount?: number | undefined;
|
|
19
|
+
xAxisLabelCount?: number | undefined;
|
|
20
|
+
showYAxis?: boolean | undefined;
|
|
21
|
+
showXAxis?: boolean | undefined;
|
|
22
|
+
yAxisColor?: string | undefined;
|
|
23
|
+
xAxisColor?: string | undefined;
|
|
24
|
+
yAxisThickness?: number | undefined;
|
|
25
|
+
xAxisThickness?: number | undefined;
|
|
26
|
+
yAxisTextColor?: string | undefined;
|
|
27
|
+
xAxisTextColor?: string | undefined;
|
|
28
|
+
gridColor?: string | undefined;
|
|
29
|
+
showGrid?: boolean | undefined;
|
|
30
|
+
timeRange: any;
|
|
31
|
+
onPointPress: any;
|
|
32
|
+
yMin: any;
|
|
33
|
+
yMax: any;
|
|
34
|
+
useFixedYRange?: boolean | undefined;
|
|
35
|
+
spacing: any;
|
|
36
|
+
backgroundColor?: string | undefined;
|
|
37
|
+
displayAsPercentage?: boolean | undefined;
|
|
38
|
+
hideDataPointText?: boolean | undefined;
|
|
39
|
+
}): React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
|
|
40
|
+
import React from 'react';
|
|
41
|
+
//# sourceMappingURL=LivePriceChart.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LivePriceChart.d.ts","sourceRoot":"","sources":["../../../../../module/Charts/components/LivePriceChart.js"],"names":[],"mappings":";AAYA;;;GAGG;AACH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kGA4XC;kBAvYwC,OAAO"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { default as LivePriceChart } from "./components/LivePriceChart";
|
|
2
|
+
export { default as BaseLineChart } from "./components/BaseLineChart";
|
|
3
|
+
export { TradeChartAdapter } from "./adapters/TradeChartAdapter";
|
|
4
|
+
export { defaultChartTheme, darkChartTheme, gradients, lineChartStyles, getAwayHomeGradients, chartDimensions } from "./themes/chartTheme";
|
|
5
|
+
export { formatTime, formatDate, formatPrice, formatCurrency, formatPercentage, formatROI, getSmartTimeLabel, formatLargeNumber, calculateNiceYBounds, generateYAxisLabels } from "./utils/formatters";
|
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../module/Charts/index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
export namespace defaultChartTheme {
|
|
2
|
+
let primary: string;
|
|
3
|
+
let secondary: string;
|
|
4
|
+
let success: string;
|
|
5
|
+
let error: string;
|
|
6
|
+
let warning: string;
|
|
7
|
+
let text: string;
|
|
8
|
+
let background: string;
|
|
9
|
+
let grid: string;
|
|
10
|
+
let away: string;
|
|
11
|
+
let home: string;
|
|
12
|
+
}
|
|
13
|
+
export namespace darkChartTheme {
|
|
14
|
+
let primary_1: string;
|
|
15
|
+
export { primary_1 as primary };
|
|
16
|
+
let secondary_1: string;
|
|
17
|
+
export { secondary_1 as secondary };
|
|
18
|
+
let success_1: string;
|
|
19
|
+
export { success_1 as success };
|
|
20
|
+
let error_1: string;
|
|
21
|
+
export { error_1 as error };
|
|
22
|
+
let warning_1: string;
|
|
23
|
+
export { warning_1 as warning };
|
|
24
|
+
let text_1: string;
|
|
25
|
+
export { text_1 as text };
|
|
26
|
+
let background_1: string;
|
|
27
|
+
export { background_1 as background };
|
|
28
|
+
let grid_1: string;
|
|
29
|
+
export { grid_1 as grid };
|
|
30
|
+
let away_1: string;
|
|
31
|
+
export { away_1 as away };
|
|
32
|
+
let home_1: string;
|
|
33
|
+
export { home_1 as home };
|
|
34
|
+
}
|
|
35
|
+
export namespace gradients {
|
|
36
|
+
let away_2: string[];
|
|
37
|
+
export { away_2 as away };
|
|
38
|
+
let home_2: string[];
|
|
39
|
+
export { home_2 as home };
|
|
40
|
+
export let profit: string[];
|
|
41
|
+
export let loss: string[];
|
|
42
|
+
export let neutral: string[];
|
|
43
|
+
}
|
|
44
|
+
export namespace lineChartStyles {
|
|
45
|
+
namespace _default {
|
|
46
|
+
let thickness: number;
|
|
47
|
+
let curved: boolean;
|
|
48
|
+
let showDataPoints: boolean;
|
|
49
|
+
let animationDuration: number;
|
|
50
|
+
}
|
|
51
|
+
export { _default as default };
|
|
52
|
+
export namespace bold {
|
|
53
|
+
let thickness_1: number;
|
|
54
|
+
export { thickness_1 as thickness };
|
|
55
|
+
let curved_1: boolean;
|
|
56
|
+
export { curved_1 as curved };
|
|
57
|
+
let showDataPoints_1: boolean;
|
|
58
|
+
export { showDataPoints_1 as showDataPoints };
|
|
59
|
+
let animationDuration_1: number;
|
|
60
|
+
export { animationDuration_1 as animationDuration };
|
|
61
|
+
}
|
|
62
|
+
export namespace minimal {
|
|
63
|
+
let thickness_2: number;
|
|
64
|
+
export { thickness_2 as thickness };
|
|
65
|
+
let curved_2: boolean;
|
|
66
|
+
export { curved_2 as curved };
|
|
67
|
+
let showDataPoints_2: boolean;
|
|
68
|
+
export { showDataPoints_2 as showDataPoints };
|
|
69
|
+
let animationDuration_2: number;
|
|
70
|
+
export { animationDuration_2 as animationDuration };
|
|
71
|
+
}
|
|
72
|
+
export namespace dots {
|
|
73
|
+
let thickness_3: number;
|
|
74
|
+
export { thickness_3 as thickness };
|
|
75
|
+
let curved_3: boolean;
|
|
76
|
+
export { curved_3 as curved };
|
|
77
|
+
let showDataPoints_3: boolean;
|
|
78
|
+
export { showDataPoints_3 as showDataPoints };
|
|
79
|
+
let animationDuration_3: number;
|
|
80
|
+
export { animationDuration_3 as animationDuration };
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
export function getAwayHomeGradients(): {
|
|
84
|
+
away: {
|
|
85
|
+
color: string;
|
|
86
|
+
gradient: boolean;
|
|
87
|
+
gradientColors: string[];
|
|
88
|
+
};
|
|
89
|
+
home: {
|
|
90
|
+
color: string;
|
|
91
|
+
gradient: boolean;
|
|
92
|
+
gradientColors: string[];
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
export namespace chartDimensions {
|
|
96
|
+
let defaultHeight: number;
|
|
97
|
+
let mobileHeight: number;
|
|
98
|
+
let defaultSpacing: number;
|
|
99
|
+
let xAxisLabelCount: number;
|
|
100
|
+
let yAxisLabelCount: number;
|
|
101
|
+
}
|
|
102
|
+
//# sourceMappingURL=chartTheme.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chartTheme.d.ts","sourceRoot":"","sources":["../../../../../module/Charts/themes/chartTheme.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA8GO;;;;;;;;;;;EAWL"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../module/Charts/types.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export function formatTime(timestamp: any, format?: string): string;
|
|
2
|
+
export function formatDate(timestamp: any, format?: string): string;
|
|
3
|
+
export function formatPrice(value: any, decimals?: number): any;
|
|
4
|
+
export function formatCurrency(value: any, currency?: string): string;
|
|
5
|
+
export function formatPercentage(value: any, asDecimal?: boolean): string;
|
|
6
|
+
export function formatROI(value: any): string;
|
|
7
|
+
export function getSmartTimeLabel(timestamp: any, minTime: any, maxTime: any): string;
|
|
8
|
+
export function formatLargeNumber(value: any, decimals?: number): string;
|
|
9
|
+
export function calculateNiceYBounds(values: any): {
|
|
10
|
+
min: number;
|
|
11
|
+
max: number;
|
|
12
|
+
};
|
|
13
|
+
export function generateYAxisLabels(min: any, max: any, count?: number): any[];
|
|
14
|
+
//# sourceMappingURL=formatters.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"formatters.d.ts","sourceRoot":"","sources":["../../../../../module/Charts/utils/formatters.js"],"names":[],"mappings":"AAUO,oEAkBN;AAQM,oEAiBN;AAQM,gEAEN;AAQM,sEAUN;AAQM,0EAGN;AAOM,8CAGN;AAMM,sFAkBN;AAKM,yEAUN;AAMM;;;EAiBN;AAKM,+EAON"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Dropdown.d.ts","sourceRoot":"","sources":["../../../../module/Components/Dropdown.js"],"names":[],"mappings":";AAKA;;;;;;;
|
|
1
|
+
{"version":3,"file":"Dropdown.d.ts","sourceRoot":"","sources":["../../../../module/Components/Dropdown.js"],"names":[],"mappings":";AAKA;;;;;;;kGAyFC;kBA9F+B,OAAO"}
|
|
@@ -2,6 +2,7 @@ declare namespace _default {
|
|
|
2
2
|
export { SearchIcon };
|
|
3
3
|
export { LiquidityIcon };
|
|
4
4
|
export { EyeOnIcon };
|
|
5
|
+
export { TargetIcon };
|
|
5
6
|
export { MarketClosedIcon };
|
|
6
7
|
export { AlertIcon };
|
|
7
8
|
export { GolferIcon };
|
|
@@ -107,6 +108,10 @@ declare function EyeOnIcon({ color, size }: {
|
|
|
107
108
|
color: any;
|
|
108
109
|
size: any;
|
|
109
110
|
}): React.CElement<import("react-native-svg").SvgProps | Readonly<import("react-native-svg").SvgProps>, Svg>;
|
|
111
|
+
declare function TargetIcon({ color, size }: {
|
|
112
|
+
color: any;
|
|
113
|
+
size: any;
|
|
114
|
+
}): React.CElement<import("react-native-svg").SvgProps | Readonly<import("react-native-svg").SvgProps>, Svg>;
|
|
110
115
|
declare function MarketClosedIcon({ color, size }: {
|
|
111
116
|
color: any;
|
|
112
117
|
size: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Icons.d.ts","sourceRoot":"","sources":["../../../../module/Components/Icons.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Icons.d.ts","sourceRoot":"","sources":["../../../../module/Components/Icons.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+LA;;;6GAwBC;AAs0FD;;;6GA6BC;AA3zED;;;6GAiCC;AAukFD;;;6GAsBC;AA1SD;;;6GA2CC;AA3nGD;;;6GAqCC;AA0wGD;;;6GAyBC;AACD;;;6GAwBC;AA5ED;;;6GAyBC;AAlKD;;;6GAqCC;AA0BD;;;6GA+CC;AAxED;;;6GAwBC;AAjYD;;;6GA2BC;AAxhCD;;;6GAyBC;AAs5CD;;;6GAyBC;AAhYD;;;6GAkCC;AA5bD;;;6GA4BC;AAxjCD;;;6GAsBC;AAokDD;;;6GAuBC;AAxJD;;;6GAwBC;AAxtBD;;;6GA4BC;AAoQD;;;6GAqCC;AA5FD;;;6GAyBC;AAvFD;;;6GA6DC;AA3ID;;;6GA8BC;AA99DD;;6GA4BC;AACD;;6GAgCC;AACD;;;6GAsBC;AA8oED;;;6GAkCC;AACD;;;6GAmCC;AAnsDD;;;6GAkCC;AAq7DD;;;6GAyBC;AApID;;;6GA8CC;AA5lBD;;;6GA4BC;AA9iCD;;;6GAmCC;AAkqDD;;;6GAyBC;AA/uBD;;;6GAkCC;AA7FD;;;6GA6BC;AAoJD;;;6GAuBC;AA9CD;;;6GAsBC;AAt0ED;;;6GAkCC;AAwlFD;;;6GAkCC;AA7hBD;;;6GAsBC;AAngED;;;6GAuBC;AAktBD;;;6GAuBC;AAjmBD;;;;6GA+BC;AAywDD;;;6GAqCC;AAjFD;;;6GA2CC;AA5FD;;;;6GAgDC;AA7ED;;;6GA4BC;AAvwCD;;;6GA8CC;AA23DD;;6GAwGC;AAr1BD;;;6GA8CC;AAxJD;;;6GAqDC;AA3zDD;;;6GAwDC;AA2qDD;;;6GAkCC;AA7iDD;;6GAwBC;AAk7CD;;;6GAsCC;AA7iCD;;6GAwBC;AAuwDD;;;6GA4BC;AAn1BD;;6GA8BC;AAvjDD;;;6GA+BC;AAg4CD;;;;6GAyHC;AAhoBD;;;6GA4BC;AA+bD;;;6GA2CC;AAy3CD;;6GAqBC;AAv3DD;;;6GAyBC;AAjFD;;;6GA0BC;AAmZD;;;6GAwEC;AA1GD;;;6GAiCC;AAzFD;;;6GAgCC;AAxED;;;6GAuCC;AA/ED;;;6GAuCC;AA3ED;;;6GAmCC;AAziCD;;6GAuBC;AApPD;;;6GA4BC;AAqlCD;;;6GA6EC;AAxQD;;;6GAwBC;AAwID;;;6GA0BC;AAhQD;;;6GAkCC;AA6DD;;;6GAoDC;AAvkBD;;6GAsDC;AAoiFD;;;6GAeC;AA78ED;;6GA6DC;AA+1DD;;;6GA2BC;AA5oED;;;6GA0BC;AAmWD;;6GA2CC;AApoBD;;;6GAyBC;AACD;;;6GA2BC;AA6nDD;;;6GAmDC;AAhmCD;;6GA2CC;AApWD;;6GAiDC;AApmBD;;;6GA4BC;AAykBD;;6GAkDC;AAzLD;;;;6GA6BC;gBAliB4G,kBAAkB;kBAF7G,OAAO"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../module/Components/index.js"],"names":[],"mappings":"mBAAmB,UAAU;iBACZ,QAAQ;mBACN,UAAU;kCASK,sBAAsB;4BAO5B,mBAAmB;6BADlB,oBAAoB;mBAV9B,UAAU;sBAYP,aAAa;0BALT,iBAAiB;sBAXrB,aAAa;0BAaT,iBAAiB;2BADhB,kBAAkB;wBALrB,eAAe;qBALlB,YAAY;mBAId,UAAU;kBALX,SAAS;0BASD,iBAAiB;yBADlB,gBAAgB;8BAJX,qBAAqB;0BAFzB,iBAAiB"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../module/Components/index.js"],"names":[],"mappings":";mBAAmB,UAAU;iBACZ,QAAQ;mBACN,UAAU;kCASK,sBAAsB;4BAO5B,mBAAmB;6BADlB,oBAAoB;mBAV9B,UAAU;sBAYP,aAAa;0BALT,iBAAiB;sBAXrB,aAAa;0BAaT,iBAAiB;2BADhB,kBAAkB;wBALrB,eAAe;qBALlB,YAAY;mBAId,UAAU;kBALX,SAAS;0BASD,iBAAiB;yBADlB,gBAAgB;8BAJX,qBAAqB;0BAFzB,iBAAiB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LocationStatus.d.ts","sourceRoot":"","sources":["../../../../module/LocationTracker/LocationStatus.js"],"names":[],"mappings":"AAIO
|
|
1
|
+
{"version":3,"file":"LocationStatus.d.ts","sourceRoot":"","sources":["../../../../module/LocationTracker/LocationStatus.js"],"names":[],"mappings":"AAIO;;;;;;;;;;;;;;;;EAsJN"}
|
|
@@ -21,7 +21,7 @@ export namespace LocationApi {
|
|
|
21
21
|
speed: number | null;
|
|
22
22
|
accuracy: number | null;
|
|
23
23
|
} | undefined>;
|
|
24
|
-
function reverseCoordLookup(latitude: any, longitude: any): Promise<Location.LocationGeocodedAddress[] | {
|
|
24
|
+
function reverseCoordLookup(latitude: any, longitude: any, options: any): Promise<Location.LocationGeocodedAddress[] | {
|
|
25
25
|
streetNumber: any;
|
|
26
26
|
street: any;
|
|
27
27
|
city: any;
|
|
@@ -3,6 +3,7 @@ import Observer from './Observer';
|
|
|
3
3
|
import MyAction from './MyAction';
|
|
4
4
|
import CreateEmbed from './PartnerPortal/components/CreateEmbed';
|
|
5
5
|
import ReferralCodeManager from './PartnerPortal/components/ReferralCodeManager';
|
|
6
|
+
import BetRouter from './BetRouter/index';
|
|
6
7
|
import CreateEngagement from './CreateEngagement';
|
|
7
8
|
import DiscordConnectionManager from './Discord';
|
|
8
9
|
import { BEEventApi } from './Observer';
|
|
@@ -75,5 +76,6 @@ import SeasonCard from './Engage/components/SeasonCard';
|
|
|
75
76
|
import NotificationManager from './NotificationManager';
|
|
76
77
|
import { NotificationApi } from './NotificationManager/api';
|
|
77
78
|
import { NotificationHelpers } from './NotificationManager/api';
|
|
78
|
-
export { Authenticator, Observer, MyAction, CreateEmbed, ReferralCodeManager, CreateEngagement, DiscordConnectionManager, BEEventApi, FlashCampaignManager, BettorBotDashboard, EmbedManager, RankingsCard, ManageFlashMarket, BELinkApi, PartnerPortal, SquaresManager, GuideView, BetMatch, ManageFilter, Ticker, Premium, CreateGroupWizard, LeaderboardCard, GroupComponent, LocationTracker, BEClarity, FlashMarket, ContactsCard, PlayerRecommender, GolfScoreboard, ContactsSelector, Campaign, BEPostHog, ManageBracketCompetitionForm, NotificationModule, FlashHolder, useNotifications, ClaritySmartEvents, ProfileManager, CompetitionManager, Components, SocialComponents, APIOverrides, LinearGradient, usePlayerLocation, BettorSearch, Colors, MyWallet, Share, Checkout, MarketComponents, EventComponents, PollCampaign, PollCampaignApi, PollApi, MarketMaker, CompetitionModule, SeasonManager, CreateCompetitionForm, CreateSeasonForm, SeasonModule, AdminCompetitionList, AdServer, Leaderboard, AdProvider, BracketRoom, SquaresModule, SocketManager, PromotedOrder, EngageModule, CompetitionCard, SquaresCompetitionCard, BracketCompetitionCard, SeasonCard, NotificationManager, NotificationApi, NotificationHelpers };
|
|
79
|
+
export { Authenticator, Observer, MyAction, CreateEmbed, ReferralCodeManager, BetRouter, CreateEngagement, DiscordConnectionManager, BEEventApi, FlashCampaignManager, BettorBotDashboard, EmbedManager, RankingsCard, ManageFlashMarket, BELinkApi, PartnerPortal, SquaresManager, GuideView, BetMatch, ManageFilter, Ticker, Premium, CreateGroupWizard, LeaderboardCard, GroupComponent, LocationTracker, BEClarity, FlashMarket, ContactsCard, PlayerRecommender, GolfScoreboard, ContactsSelector, Campaign, BEPostHog, ManageBracketCompetitionForm, NotificationModule, FlashHolder, useNotifications, ClaritySmartEvents, ProfileManager, CompetitionManager, Components, SocialComponents, APIOverrides, LinearGradient, usePlayerLocation, BettorSearch, Colors, MyWallet, Share, Checkout, MarketComponents, EventComponents, PollCampaign, PollCampaignApi, PollApi, MarketMaker, CompetitionModule, SeasonManager, CreateCompetitionForm, CreateSeasonForm, SeasonModule, AdminCompetitionList, AdServer, Leaderboard, AdProvider, BracketRoom, SquaresModule, SocketManager, PromotedOrder, EngageModule, CompetitionCard, SquaresCompetitionCard, BracketCompetitionCard, SeasonCard, NotificationManager, NotificationApi, NotificationHelpers };
|
|
80
|
+
export { LivePriceChart, BaseLineChart, TradeChartAdapter } from "./Charts";
|
|
79
81
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../module/index.js"],"names":[],"mappings":"0BAE0B,iBAAiB;qBAOK,YAAY;qBA6DvC,YAAY;wBAHT,wCAAwC;gCAChC,gDAAgD;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../module/index.js"],"names":[],"mappings":"0BAE0B,iBAAiB;qBAOK,YAAY;qBA6DvC,YAAY;wBAHT,wCAAwC;gCAChC,gDAAgD;sBAM1D,mBAAmB;6BAbZ,oBAAoB;qCAEZ,WAAW;2BAtDA,YAAY;iCA4D3B,iDAAiD;+BAEnD,aAAa;yBALnB,yCAAyC;yBATzC,gBAAgB;8BAOX,4CAA4C;0BAvD1B,YAAY;0BAwDlC,iBAAiB;2BAHhB,kBAAkB;sBAJvB,SAAS;qBALV,YAAY;yBAER,oCAAoC;mBAb1C,UAAU;oBAYT,WAAW;8BAMD,sCAAsC;4BAhBxC,sCAAsC;2BAevC,SAAS;4BA3BR,mBAAmB;sBAoBzB,WAAW;wBAHT,eAAe;yBAHd,4CAA4C;8BADvC,qBAAqB;2BAGxB,kBAAkB;6BADhB,iDAAiD;qBANzD,YAAY;sBAUX,WAAW;yCAXQ,mDAAmD;+BAF7D,iBAAiB;wBAYxB,2BAA2B;iCAXlB,kCAAkC;+BAiBpC,uBAAuB;2BArD3B,kBAAkB;+BAmBd,sBAAsB;4BAlBzB,cAAc;kCACR,oBAAoB;6BACzB,gBAAgB;+BACd,sBAAsB;kCAMnB,kCAAkC;yBAH3C,gBAAgB;mBAFtB,oBAAoB;qBAGlB,UAAU;kBAoBb,SAAS;qBAnBN,YAAY;6BAiBJ,oBAAoB;4BACrB,mBAAmB;yBAhBtB,QAAQ;gCACQ,YAAY;wBAAZ,YAAY;wBAkB7B,eAAe;8BAjBT,eAAe;0BAUnB,4BAA4B;kCAHpB,uDAAuD;6BAK5D,wDAAwD;yBAD5D,qBAAqB;iCAHb,sDAAsD;qBAPlD,YAAY;wBA0BzB,WAAW;2BA1BE,YAAY;wBACzB,WAAW;0BAET,WAAW;0BADX,UAAU;0BAEV,iBAAiB;yBAIlB,UAAU;4BASP,qCAAqC;mCAC9B,4CAA4C;mCAC5C,4CAA4C;uBACxD,gCAAgC;gCAmCvB,uBAAuB;gCACF,2BAA2B;oCAA3B,2BAA2B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/ApiOverrides/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,KAAK,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/ApiOverrides/index.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAC9C,OAAO,KAAK,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAqFlF,OAAO,EAAE,YAAY,EAAE,CAAA;AAEvB,QAAA,MAAM,YAAY;+BACkB;QAAE,GAAG,EAAC,YAAY,GAAC,SAAS,GAAC,aAAa,GAAC,kBAAkB,CAAC;QAAC,QAAQ,EAAC,OAAO,CAAA;KAAE,KAAE,OAAO,CAAC,cAAc,CAAC;qCAiDrG,cAAc,WAAW;QAAE,KAAK,CAAC,EAAC,OAAO,CAAA;KAAE,KAAE,OAAO,CAAC;QAAE,MAAM,EAAE,SAAS,GAAC,MAAM,CAAA;KAAE,CAAC;qBAWpG,OAAO,CAAC;QAAC,MAAM,EAAE,SAAS,GAAC,MAAM,CAAA;KAAC,CAAC;0BAOjC,YAAY,GAAC,SAAS,GAAC,aAAa,GAAC,kBAAkB;;;;gCAM5C,MAAM,cAAa,MAAM,kBAAiB,MAAM,oBAAmB,GAAG;;;6BAoB9E,MAAM;;qCAgBE,MAAM;8CAOQ,MAAM,KAAE,OAAO,CAAC;QAAE,aAAa,EAAC,iBAAiB,CAAC;QAAC,KAAK,EAAC,UAAU,CAAC;QAAC,gBAAgB,EAAC,kBAAkB,EAAE,CAAA;KAAE,GAAC,SAAS,CAAC;mCAUvI,MAAM;0BAOV,MAAM,eAAc,MAAM,KAAE,OAAO,CAAC;QAAC,aAAa,EAAC,MAAM,CAAC;QAAC,YAAY,EAAC,MAAM,CAAC;QAAC,eAAe,EAAC,MAAM,CAAC;QAAC,SAAS,EAAC,MAAM,CAAA;KAAE,GAAG,SAAS,CAAC;wCASzH,MAAM,eAAc,MAAM;CA0BrE,CAAA"}
|