be-components 7.4.8 → 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/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/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/index.d.ts +4 -0
- 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/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/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/index.tsx +6 -0
- package/src/types.d.ts +410 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api-contracts.d.ts","sourceRoot":"","sources":["../../../../../commonjs/BetRouter/types/api-contracts.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../../../commonjs/BetRouter/types/config.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contests.d.ts","sourceRoot":"","sources":["../../../../../commonjs/BetRouter/types/contests.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
export const __esModule: boolean;
|
|
2
|
+
export function isKalshiCredentials(creds: any): boolean;
|
|
3
|
+
export function isBettorEdgeCredentials(creds: any): boolean;
|
|
4
|
+
export function isBetOpenlyCredentials(creds: any): boolean;
|
|
5
|
+
export function getRequiredCredentialFields(partnerName: any): string[];
|
|
6
|
+
export function getCredentialFieldLabels(partnerName: any): {
|
|
7
|
+
api_key: string;
|
|
8
|
+
private_key_pem: string;
|
|
9
|
+
username?: undefined;
|
|
10
|
+
password?: undefined;
|
|
11
|
+
user_id?: undefined;
|
|
12
|
+
} | {
|
|
13
|
+
username: string;
|
|
14
|
+
password: string;
|
|
15
|
+
api_key?: undefined;
|
|
16
|
+
private_key_pem?: undefined;
|
|
17
|
+
user_id?: undefined;
|
|
18
|
+
} | {
|
|
19
|
+
username: string;
|
|
20
|
+
password: string;
|
|
21
|
+
user_id: string;
|
|
22
|
+
api_key?: undefined;
|
|
23
|
+
private_key_pem?: undefined;
|
|
24
|
+
} | {
|
|
25
|
+
api_key?: undefined;
|
|
26
|
+
private_key_pem?: undefined;
|
|
27
|
+
username?: undefined;
|
|
28
|
+
password?: undefined;
|
|
29
|
+
user_id?: undefined;
|
|
30
|
+
};
|
|
31
|
+
export function getCredentialFieldTypes(partnerName: any): {
|
|
32
|
+
api_key: string;
|
|
33
|
+
private_key_pem: string;
|
|
34
|
+
username?: undefined;
|
|
35
|
+
password?: undefined;
|
|
36
|
+
user_id?: undefined;
|
|
37
|
+
} | {
|
|
38
|
+
username: string;
|
|
39
|
+
password: string;
|
|
40
|
+
api_key?: undefined;
|
|
41
|
+
private_key_pem?: undefined;
|
|
42
|
+
user_id?: undefined;
|
|
43
|
+
} | {
|
|
44
|
+
user_id: string;
|
|
45
|
+
username: string;
|
|
46
|
+
password: string;
|
|
47
|
+
api_key?: undefined;
|
|
48
|
+
private_key_pem?: undefined;
|
|
49
|
+
} | {
|
|
50
|
+
api_key?: undefined;
|
|
51
|
+
private_key_pem?: undefined;
|
|
52
|
+
username?: undefined;
|
|
53
|
+
password?: undefined;
|
|
54
|
+
user_id?: undefined;
|
|
55
|
+
};
|
|
56
|
+
//# sourceMappingURL=credentials.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"credentials.d.ts","sourceRoot":"","sources":["../../../../../commonjs/BetRouter/types/credentials.js"],"names":[],"mappings":";AAYA,yDAEC;AAED,6DAEC;AAED,4DAEC;AAID,wEAWC;AAID;;;;;;;;;;;;;;;;;;;;;;;;EAqBC;AAID;;;;;;;;;;;;;;;;;;;;;;;;EAqBC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../commonjs/BetRouter/types/index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"jobs.d.ts","sourceRoot":"","sources":["../../../../../commonjs/BetRouter/types/jobs.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"leagues.d.ts","sourceRoot":"","sources":["../../../../../commonjs/BetRouter/types/leagues.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"liquidity.d.ts","sourceRoot":"","sources":["../../../../../commonjs/BetRouter/types/liquidity.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"markets.d.ts","sourceRoot":"","sources":["../../../../../commonjs/BetRouter/types/markets.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"opportunities.d.ts","sourceRoot":"","sources":["../../../../../commonjs/BetRouter/types/opportunities.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"orders.d.ts","sourceRoot":"","sources":["../../../../../commonjs/BetRouter/types/orders.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"participants.d.ts","sourceRoot":"","sources":["../../../../../commonjs/BetRouter/types/participants.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"partners.d.ts","sourceRoot":"","sources":["../../../../../commonjs/BetRouter/types/partners.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
export const __esModule: boolean;
|
|
2
|
+
/**
|
|
3
|
+
* Trade Chart Adapter
|
|
4
|
+
* Converts BettorEdge TradeProps to chart-ready format
|
|
5
|
+
* This is the middle layer that transforms your app's trade types to chart data structures
|
|
6
|
+
*/
|
|
7
|
+
/**
|
|
8
|
+
* Re-export TradeProps for convenience
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* Side label mapping
|
|
12
|
+
*/
|
|
13
|
+
/**
|
|
14
|
+
* Time range filter options
|
|
15
|
+
*/
|
|
16
|
+
/**
|
|
17
|
+
* Options for trade chart transformation
|
|
18
|
+
*/
|
|
19
|
+
/**
|
|
20
|
+
* TradeChartAdapter
|
|
21
|
+
* Handles transformation of trade data to chart format
|
|
22
|
+
*/
|
|
23
|
+
export class TradeChartAdapter {
|
|
24
|
+
/**
|
|
25
|
+
* Create reversed trades from single-side trade data
|
|
26
|
+
* Takes trades from one side (e.g., home) and creates the opposite side (e.g., away)
|
|
27
|
+
* @param trades Array of trades from one side
|
|
28
|
+
* @param market Market object with trade_side and side_options
|
|
29
|
+
* @returns Array with both original and reversed trades
|
|
30
|
+
*/
|
|
31
|
+
static createReversedTrades(trades: any, market: any): any;
|
|
32
|
+
/**
|
|
33
|
+
* Convert array of BettorEdge trades to time series chart data
|
|
34
|
+
* @param trades Array of TradeProps objects
|
|
35
|
+
* @param options Transformation options
|
|
36
|
+
* @returns Array of TimeSeriesData (side series based on side_id)
|
|
37
|
+
*/
|
|
38
|
+
static toTimeSeriesData(trades: any, options?: {}): any[];
|
|
39
|
+
/**
|
|
40
|
+
* Append a new trade to existing chart data
|
|
41
|
+
* Used for live updates
|
|
42
|
+
*/
|
|
43
|
+
static appendTrade(existingData: any, newTrade: any, maxPoints?: number): any;
|
|
44
|
+
/**
|
|
45
|
+
* Group trades by side_id
|
|
46
|
+
*/
|
|
47
|
+
static groupBySide(trades: any): any;
|
|
48
|
+
/**
|
|
49
|
+
* Convert trades to TimeSeriesPoints
|
|
50
|
+
*/
|
|
51
|
+
static tradesToPoints(trades: any): any;
|
|
52
|
+
/**
|
|
53
|
+
* Limit data points by sampling
|
|
54
|
+
* Keeps first, last, and evenly spaced points in between
|
|
55
|
+
*/
|
|
56
|
+
static limitDataPoints(trades: any, maxPoints: any): any;
|
|
57
|
+
/**
|
|
58
|
+
* Simple moving average smoothing
|
|
59
|
+
* Reduces noise in price data
|
|
60
|
+
* NOTE: Preserves the last point's actual value (no smoothing on most recent trade)
|
|
61
|
+
*/
|
|
62
|
+
static smoothData(points: any, windowSize?: number): any;
|
|
63
|
+
/**
|
|
64
|
+
* Filter trades by time range
|
|
65
|
+
*/
|
|
66
|
+
static filterByTimeRange(trades: any, startTime: any, endTime: any): any;
|
|
67
|
+
/**
|
|
68
|
+
* Get price statistics from trades
|
|
69
|
+
*/
|
|
70
|
+
static getStats(trades: any): {
|
|
71
|
+
min: number;
|
|
72
|
+
max: number;
|
|
73
|
+
avg: number;
|
|
74
|
+
latest: any;
|
|
75
|
+
change: number;
|
|
76
|
+
};
|
|
77
|
+
/**
|
|
78
|
+
* Apply time range filter to trades
|
|
79
|
+
*/
|
|
80
|
+
static applyTimeFilter(trades: any, filter: any, customRange: any): any;
|
|
81
|
+
/**
|
|
82
|
+
* Smart sampling based on data timespan
|
|
83
|
+
* Automatically determines optimal sample interval
|
|
84
|
+
*/
|
|
85
|
+
static smartSample(trades: any, allTrades: any, maxPoints: any): any;
|
|
86
|
+
}
|
|
87
|
+
//# sourceMappingURL=TradeChartAdapter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TradeChartAdapter.d.ts","sourceRoot":"","sources":["../../../../../commonjs/Charts/adapters/TradeChartAdapter.js"],"names":[],"mappings":";AAQA;;;;GAIG;AAEH;;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 const __esModule: boolean;
|
|
2
|
+
export default BaseLineChart;
|
|
3
|
+
/**
|
|
4
|
+
* BaseLineChart - Cross-platform line chart wrapper
|
|
5
|
+
*/
|
|
6
|
+
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 }: {
|
|
7
|
+
data: any;
|
|
8
|
+
height?: number | undefined;
|
|
9
|
+
width: any;
|
|
10
|
+
spacing?: number | undefined;
|
|
11
|
+
yAxisPrefix?: string | undefined;
|
|
12
|
+
yAxisSuffix?: string | undefined;
|
|
13
|
+
yAxisLabelCount?: number | undefined;
|
|
14
|
+
showYAxis?: boolean | undefined;
|
|
15
|
+
showXAxis?: boolean | undefined;
|
|
16
|
+
yAxisColor?: string | undefined;
|
|
17
|
+
xAxisColor?: string | undefined;
|
|
18
|
+
yAxisThickness?: number | undefined;
|
|
19
|
+
xAxisThickness?: number | undefined;
|
|
20
|
+
yAxisTextColor?: string | undefined;
|
|
21
|
+
xAxisTextColor?: string | undefined;
|
|
22
|
+
gridColor?: string | undefined;
|
|
23
|
+
showGrid?: boolean | undefined;
|
|
24
|
+
yMin: any;
|
|
25
|
+
yMax: any;
|
|
26
|
+
backgroundColor?: string | undefined;
|
|
27
|
+
animated?: boolean | undefined;
|
|
28
|
+
onDataPointClick: any;
|
|
29
|
+
hideDataPointText?: boolean | undefined;
|
|
30
|
+
}): any;
|
|
31
|
+
//# sourceMappingURL=BaseLineChart.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BaseLineChart.d.ts","sourceRoot":"","sources":["../../../../../commonjs/Charts/components/BaseLineChart.js"],"names":[],"mappings":";;AAkBA;;GAEG;AACH;;;;;;;;;;;;;;;;;;;;;;;;QAqQC"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
export const __esModule: boolean;
|
|
2
|
+
export default LivePriceChart;
|
|
3
|
+
/**
|
|
4
|
+
* Live Price Chart Component
|
|
5
|
+
* Shows away/home side prices moving over time with live updates
|
|
6
|
+
*/
|
|
7
|
+
/**
|
|
8
|
+
* LivePriceChart
|
|
9
|
+
* Beautiful real-time price chart showing away vs home odds movement
|
|
10
|
+
*/
|
|
11
|
+
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 }: {
|
|
12
|
+
data: any;
|
|
13
|
+
height?: number | undefined;
|
|
14
|
+
width: any;
|
|
15
|
+
animated?: boolean | undefined;
|
|
16
|
+
showTooltip?: boolean | undefined;
|
|
17
|
+
showLegend?: boolean | undefined;
|
|
18
|
+
legendPosition?: string | undefined;
|
|
19
|
+
showTimeFilter?: boolean | undefined;
|
|
20
|
+
initialTimeFilter?: string | undefined;
|
|
21
|
+
yAxisPrefix?: string | undefined;
|
|
22
|
+
yAxisSuffix?: string | undefined;
|
|
23
|
+
yAxisLabelCount?: number | undefined;
|
|
24
|
+
xAxisLabelCount?: number | undefined;
|
|
25
|
+
showYAxis?: boolean | undefined;
|
|
26
|
+
showXAxis?: boolean | undefined;
|
|
27
|
+
yAxisColor?: string | undefined;
|
|
28
|
+
xAxisColor?: string | undefined;
|
|
29
|
+
yAxisThickness?: number | undefined;
|
|
30
|
+
xAxisThickness?: number | undefined;
|
|
31
|
+
yAxisTextColor?: string | undefined;
|
|
32
|
+
xAxisTextColor?: string | undefined;
|
|
33
|
+
gridColor?: string | undefined;
|
|
34
|
+
showGrid?: boolean | undefined;
|
|
35
|
+
timeRange: any;
|
|
36
|
+
onPointPress: any;
|
|
37
|
+
yMin: any;
|
|
38
|
+
yMax: any;
|
|
39
|
+
useFixedYRange?: boolean | undefined;
|
|
40
|
+
spacing: any;
|
|
41
|
+
backgroundColor?: string | undefined;
|
|
42
|
+
displayAsPercentage?: boolean | undefined;
|
|
43
|
+
hideDataPointText?: boolean | undefined;
|
|
44
|
+
}): any;
|
|
45
|
+
//# sourceMappingURL=LivePriceChart.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LivePriceChart.d.ts","sourceRoot":"","sources":["../../../../../commonjs/Charts/components/LivePriceChart.js"],"names":[],"mappings":";;AAcA;;;GAGG;AAEH;;;GAGG;AACH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA4XC"}
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
export const __esModule: boolean;
|
|
2
|
+
export const BaseLineChart: any;
|
|
3
|
+
export const LivePriceChart: any;
|
|
4
|
+
export const TradeChartAdapter: typeof _TradeChartAdapter.TradeChartAdapter;
|
|
5
|
+
export const calculateNiceYBounds: (values: any) => {
|
|
6
|
+
min: number;
|
|
7
|
+
max: number;
|
|
8
|
+
};
|
|
9
|
+
export const chartDimensions: {
|
|
10
|
+
defaultHeight: number;
|
|
11
|
+
mobileHeight: number;
|
|
12
|
+
defaultSpacing: number;
|
|
13
|
+
xAxisLabelCount: number;
|
|
14
|
+
yAxisLabelCount: number;
|
|
15
|
+
};
|
|
16
|
+
export const darkChartTheme: {
|
|
17
|
+
primary: string;
|
|
18
|
+
secondary: string;
|
|
19
|
+
success: string;
|
|
20
|
+
error: string;
|
|
21
|
+
warning: string;
|
|
22
|
+
text: string;
|
|
23
|
+
background: string;
|
|
24
|
+
grid: string;
|
|
25
|
+
away: string;
|
|
26
|
+
home: string;
|
|
27
|
+
};
|
|
28
|
+
export const defaultChartTheme: {
|
|
29
|
+
primary: string;
|
|
30
|
+
secondary: string;
|
|
31
|
+
success: string;
|
|
32
|
+
error: string;
|
|
33
|
+
warning: string;
|
|
34
|
+
text: string;
|
|
35
|
+
background: string;
|
|
36
|
+
grid: string;
|
|
37
|
+
away: string;
|
|
38
|
+
home: string;
|
|
39
|
+
};
|
|
40
|
+
export const formatCurrency: (value: any, currency?: string) => string;
|
|
41
|
+
export const formatDate: (timestamp: any, format?: string) => string;
|
|
42
|
+
export const formatLargeNumber: (value: any, decimals?: number) => string;
|
|
43
|
+
export const formatPercentage: (value: any, asDecimal?: boolean) => string;
|
|
44
|
+
export const formatPrice: (value: any, decimals?: number) => any;
|
|
45
|
+
export const formatROI: (value: any) => string;
|
|
46
|
+
export const formatTime: (timestamp: any, format?: string) => string;
|
|
47
|
+
export const generateYAxisLabels: (min: any, max: any, count?: number) => any[];
|
|
48
|
+
export const getAwayHomeGradients: () => {
|
|
49
|
+
away: {
|
|
50
|
+
color: string;
|
|
51
|
+
gradient: boolean;
|
|
52
|
+
gradientColors: string[];
|
|
53
|
+
};
|
|
54
|
+
home: {
|
|
55
|
+
color: string;
|
|
56
|
+
gradient: boolean;
|
|
57
|
+
gradientColors: string[];
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
export const getSmartTimeLabel: (timestamp: any, minTime: any, maxTime: any) => string;
|
|
61
|
+
export const gradients: {
|
|
62
|
+
away: string[];
|
|
63
|
+
home: string[];
|
|
64
|
+
profit: string[];
|
|
65
|
+
loss: string[];
|
|
66
|
+
neutral: string[];
|
|
67
|
+
};
|
|
68
|
+
export const lineChartStyles: {
|
|
69
|
+
default: {
|
|
70
|
+
thickness: number;
|
|
71
|
+
curved: boolean;
|
|
72
|
+
showDataPoints: boolean;
|
|
73
|
+
animationDuration: number;
|
|
74
|
+
};
|
|
75
|
+
bold: {
|
|
76
|
+
thickness: number;
|
|
77
|
+
curved: boolean;
|
|
78
|
+
showDataPoints: boolean;
|
|
79
|
+
animationDuration: number;
|
|
80
|
+
};
|
|
81
|
+
minimal: {
|
|
82
|
+
thickness: number;
|
|
83
|
+
curved: boolean;
|
|
84
|
+
showDataPoints: boolean;
|
|
85
|
+
animationDuration: number;
|
|
86
|
+
};
|
|
87
|
+
dots: {
|
|
88
|
+
thickness: number;
|
|
89
|
+
curved: boolean;
|
|
90
|
+
showDataPoints: boolean;
|
|
91
|
+
animationDuration: number;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
import _TradeChartAdapter = require("./adapters/TradeChartAdapter");
|
|
95
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../commonjs/Charts/index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
export const __esModule: boolean;
|
|
2
|
+
export namespace defaultChartTheme {
|
|
3
|
+
let primary: string;
|
|
4
|
+
let secondary: string;
|
|
5
|
+
let success: string;
|
|
6
|
+
let error: string;
|
|
7
|
+
let warning: string;
|
|
8
|
+
let text: string;
|
|
9
|
+
let background: string;
|
|
10
|
+
let grid: string;
|
|
11
|
+
let away: string;
|
|
12
|
+
let home: string;
|
|
13
|
+
}
|
|
14
|
+
export namespace darkChartTheme {
|
|
15
|
+
let primary_1: string;
|
|
16
|
+
export { primary_1 as primary };
|
|
17
|
+
let secondary_1: string;
|
|
18
|
+
export { secondary_1 as secondary };
|
|
19
|
+
let success_1: string;
|
|
20
|
+
export { success_1 as success };
|
|
21
|
+
let error_1: string;
|
|
22
|
+
export { error_1 as error };
|
|
23
|
+
let warning_1: string;
|
|
24
|
+
export { warning_1 as warning };
|
|
25
|
+
let text_1: string;
|
|
26
|
+
export { text_1 as text };
|
|
27
|
+
let background_1: string;
|
|
28
|
+
export { background_1 as background };
|
|
29
|
+
let grid_1: string;
|
|
30
|
+
export { grid_1 as grid };
|
|
31
|
+
let away_1: string;
|
|
32
|
+
export { away_1 as away };
|
|
33
|
+
let home_1: string;
|
|
34
|
+
export { home_1 as home };
|
|
35
|
+
}
|
|
36
|
+
export namespace gradients {
|
|
37
|
+
let away_2: string[];
|
|
38
|
+
export { away_2 as away };
|
|
39
|
+
let home_2: string[];
|
|
40
|
+
export { home_2 as home };
|
|
41
|
+
export let profit: string[];
|
|
42
|
+
export let loss: string[];
|
|
43
|
+
export let neutral: string[];
|
|
44
|
+
}
|
|
45
|
+
export namespace lineChartStyles {
|
|
46
|
+
namespace _default {
|
|
47
|
+
let thickness: number;
|
|
48
|
+
let curved: boolean;
|
|
49
|
+
let showDataPoints: boolean;
|
|
50
|
+
let animationDuration: number;
|
|
51
|
+
}
|
|
52
|
+
export { _default as default };
|
|
53
|
+
export namespace bold {
|
|
54
|
+
let thickness_1: number;
|
|
55
|
+
export { thickness_1 as thickness };
|
|
56
|
+
let curved_1: boolean;
|
|
57
|
+
export { curved_1 as curved };
|
|
58
|
+
let showDataPoints_1: boolean;
|
|
59
|
+
export { showDataPoints_1 as showDataPoints };
|
|
60
|
+
let animationDuration_1: number;
|
|
61
|
+
export { animationDuration_1 as animationDuration };
|
|
62
|
+
}
|
|
63
|
+
export namespace minimal {
|
|
64
|
+
let thickness_2: number;
|
|
65
|
+
export { thickness_2 as thickness };
|
|
66
|
+
let curved_2: boolean;
|
|
67
|
+
export { curved_2 as curved };
|
|
68
|
+
let showDataPoints_2: boolean;
|
|
69
|
+
export { showDataPoints_2 as showDataPoints };
|
|
70
|
+
let animationDuration_2: number;
|
|
71
|
+
export { animationDuration_2 as animationDuration };
|
|
72
|
+
}
|
|
73
|
+
export namespace dots {
|
|
74
|
+
let thickness_3: number;
|
|
75
|
+
export { thickness_3 as thickness };
|
|
76
|
+
let curved_3: boolean;
|
|
77
|
+
export { curved_3 as curved };
|
|
78
|
+
let showDataPoints_3: boolean;
|
|
79
|
+
export { showDataPoints_3 as showDataPoints };
|
|
80
|
+
let animationDuration_3: number;
|
|
81
|
+
export { animationDuration_3 as animationDuration };
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
export namespace chartDimensions {
|
|
85
|
+
let defaultHeight: number;
|
|
86
|
+
let mobileHeight: number;
|
|
87
|
+
let defaultSpacing: number;
|
|
88
|
+
let xAxisLabelCount: number;
|
|
89
|
+
let yAxisLabelCount: number;
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* Get away/home gradient colors
|
|
93
|
+
*/
|
|
94
|
+
export function getAwayHomeGradients(): {
|
|
95
|
+
away: {
|
|
96
|
+
color: string;
|
|
97
|
+
gradient: boolean;
|
|
98
|
+
gradientColors: string[];
|
|
99
|
+
};
|
|
100
|
+
home: {
|
|
101
|
+
color: string;
|
|
102
|
+
gradient: boolean;
|
|
103
|
+
gradientColors: string[];
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
//# sourceMappingURL=chartTheme.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chartTheme.d.ts","sourceRoot":"","sources":["../../../../../commonjs/Charts/themes/chartTheme.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiHA;;GAEG;AACH;;;;;;;;;;;EAWE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../commonjs/Charts/types.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export const __esModule: boolean;
|
|
2
|
+
/**
|
|
3
|
+
* Formatting utilities for chart labels and tooltips
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* Format Unix timestamp to time string
|
|
7
|
+
* @param timestamp Unix timestamp in milliseconds
|
|
8
|
+
* @param format 'short' | 'medium' | 'long'
|
|
9
|
+
* @returns Formatted time string
|
|
10
|
+
*/
|
|
11
|
+
export function formatTime(timestamp: any, format?: string): string;
|
|
12
|
+
export function formatDate(timestamp: any, format?: string): string;
|
|
13
|
+
export function formatPrice(value: any, decimals?: number): any;
|
|
14
|
+
export function formatCurrency(value: any, currency?: string): string;
|
|
15
|
+
export function formatPercentage(value: any, asDecimal?: boolean): string;
|
|
16
|
+
export function formatROI(value: any): string;
|
|
17
|
+
export function getSmartTimeLabel(timestamp: any, minTime: any, maxTime: any): string;
|
|
18
|
+
export function formatLargeNumber(value: any, decimals?: number): string;
|
|
19
|
+
export function calculateNiceYBounds(values: any): {
|
|
20
|
+
min: number;
|
|
21
|
+
max: number;
|
|
22
|
+
};
|
|
23
|
+
export function generateYAxisLabels(min: any, max: any, count?: number): any[];
|
|
24
|
+
//# sourceMappingURL=formatters.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"formatters.d.ts","sourceRoot":"","sources":["../../../../../commonjs/Charts/utils/formatters.js"],"names":[],"mappings":";AAMA;;GAEG;AAEH;;;;;GAKG;AACH,oEAkBC;AASD,oEAiBC;AASD,gEAEC;AASD,sEAUC;AASD,0EAGC;AAQD,8CAGC;AAOD,sFAkBC;AAMD,yEAUC;AAOD;;;EAiBC;AAMD,+EAOC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Dropdown.d.ts","sourceRoot":"","sources":["../../../../commonjs/Components/Dropdown.js"],"names":[],"mappings":";;AAaA;;;;;;;
|
|
1
|
+
{"version":3,"file":"Dropdown.d.ts","sourceRoot":"","sources":["../../../../commonjs/Components/Dropdown.js"],"names":[],"mappings":";;AAaA;;;;;;;QAyFC"}
|
|
@@ -3,6 +3,7 @@ declare namespace _default {
|
|
|
3
3
|
export { SearchIcon };
|
|
4
4
|
export { LiquidityIcon };
|
|
5
5
|
export { EyeOnIcon };
|
|
6
|
+
export { TargetIcon };
|
|
6
7
|
export { MarketClosedIcon };
|
|
7
8
|
export { AlertIcon };
|
|
8
9
|
export { GolferIcon };
|
|
@@ -108,6 +109,10 @@ declare function EyeOnIcon({ color, size }: {
|
|
|
108
109
|
color: any;
|
|
109
110
|
size: any;
|
|
110
111
|
}): any;
|
|
112
|
+
declare function TargetIcon({ color, size }: {
|
|
113
|
+
color: any;
|
|
114
|
+
size: any;
|
|
115
|
+
}): any;
|
|
111
116
|
declare function MarketClosedIcon({ color, size }: {
|
|
112
117
|
color: any;
|
|
113
118
|
size: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Icons.d.ts","sourceRoot":"","sources":["../../../../commonjs/Components/Icons.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Icons.d.ts","sourceRoot":"","sources":["../../../../commonjs/Components/Icons.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuMA;;;QAwBC;AAs0FD;;;QA6BC;AA3zED;;;QAiCC;AAukFD;;;QAsBC;AA1SD;;;QA2CC;AA3nGD;;;QAqCC;AA0wGD;;;QAyBC;AACD;;;QAwBC;AA5ED;;;QAyBC;AAlKD;;;QAqCC;AA0BD;;;QA+CC;AAxED;;;QAwBC;AAjYD;;;QA2BC;AAxhCD;;;QAyBC;AAs5CD;;;QAyBC;AAhYD;;;QAkCC;AA5bD;;;QA4BC;AAxjCD;;;QAsBC;AAokDD;;;QAuBC;AAxJD;;;QAwBC;AAxtBD;;;QA4BC;AAoQD;;;QAqCC;AA5FD;;;QAyBC;AAvFD;;;QA6DC;AA3ID;;;QA8BC;AA99DD;;QA4BC;AACD;;QAgCC;AACD;;;QAsBC;AA8oED;;;QAkCC;AACD;;;QAmCC;AAnsDD;;;QAkCC;AAq7DD;;;QAyBC;AApID;;;QA8CC;AA5lBD;;;QA4BC;AA9iCD;;;QAmCC;AAkqDD;;;QAyBC;AA/uBD;;;QAkCC;AA7FD;;;QA6BC;AAoJD;;;QAuBC;AA9CD;;;QAsBC;AAt0ED;;;QAkCC;AAwlFD;;;QAkCC;AA7hBD;;;QAsBC;AAngED;;;QAuBC;AAktBD;;;QAuBC;AAjmBD;;;;QA+BC;AAywDD;;;QAqCC;AAjFD;;;QA2CC;AA5FD;;;;QAgDC;AA7ED;;;QA4BC;AAvwCD;;;QA8CC;AA23DD;;QAwGC;AAr1BD;;;QA8CC;AAxJD;;;QAqDC;AA3zDD;;;QAwDC;AA2qDD;;;QAkCC;AA7iDD;;QAwBC;AAk7CD;;;QAsCC;AA7iCD;;QAwBC;AAuwDD;;;QA4BC;AAn1BD;;QA8BC;AAvjDD;;;QA+BC;AAg4CD;;;;QAyHC;AAhoBD;;;QA4BC;AA+bD;;;QA2CC;AAy3CD;;QAqBC;AAv3DD;;;QAyBC;AAjFD;;;QA0BC;AAmZD;;;QAwEC;AA1GD;;;QAiCC;AAzFD;;;QAgCC;AAxED;;;QAuCC;AA/ED;;;QAuCC;AA3ED;;;QAmCC;AAziCD;;QAuBC;AApPD;;;QA4BC;AAqlCD;;;QA6EC;AAxQD;;;QAwBC;AAwID;;;QA0BC;AAhQD;;;QAkCC;AA6DD;;;QAoDC;AAvkBD;;QAsDC;AAoiFD;;;QAeC;AA78ED;;QA6DC;AA+1DD;;;QA2BC;AA5oED;;;QA0BC;AAmWD;;QA2CC;AApoBD;;;QAyBC;AACD;;;QA2BC;AA6nDD;;;QAmDC;AAhmCD;;QA2CC;AApWD;;QAiDC;AApmBD;;;QA4BC;AAykBD;;QAkDC;AAzLD;;;;QA6BC"}
|
|
@@ -35,7 +35,9 @@ export const BEClarity: any;
|
|
|
35
35
|
export const BEEventApi: any;
|
|
36
36
|
export const BELinkApi: any;
|
|
37
37
|
export const BEPostHog: any;
|
|
38
|
+
export const BaseLineChart: any;
|
|
38
39
|
export const BetMatch: any;
|
|
40
|
+
export const BetRouter: any;
|
|
39
41
|
export const BettorBotDashboard: any;
|
|
40
42
|
export const BettorSearch: any;
|
|
41
43
|
export const BracketCompetitionCard: any;
|
|
@@ -67,6 +69,7 @@ export const GuideView: any;
|
|
|
67
69
|
export const Leaderboard: any;
|
|
68
70
|
export const LeaderboardCard: any;
|
|
69
71
|
export const LinearGradient: typeof _expoLinearGradient.LinearGradient;
|
|
72
|
+
export const LivePriceChart: any;
|
|
70
73
|
export const LocationTracker: any;
|
|
71
74
|
export const ManageBracketCompetitionForm: any;
|
|
72
75
|
export const ManageFilter: any;
|
|
@@ -936,6 +939,7 @@ export const SquaresCompetitionCard: any;
|
|
|
936
939
|
export const SquaresManager: any;
|
|
937
940
|
export const SquaresModule: any;
|
|
938
941
|
export const Ticker: any;
|
|
942
|
+
export const TradeChartAdapter: typeof import("./Charts/adapters/TradeChartAdapter").TradeChartAdapter;
|
|
939
943
|
export const useNotifications: () => {
|
|
940
944
|
permission: undefined;
|
|
941
945
|
push_token: undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../commonjs/index.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../commonjs/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoeA,2BAAkE;AAElE,iCAA8E"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../module/ApiOverrides/index.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../module/ApiOverrides/index.js"],"names":[],"mappings":";IAsFS;;;;;;;OA4EN;IACgB;;OAsBhB;IACU;;OAQV;IACe,wCAEf;IACa,4BAEb;IACY,iHAYZ;IACY,sCAKZ;IACc,0CAOd;IACe,0CAMf;IACU,2BAOV;IACiB,kDAMjB;IAC4B,oEAS5B;IACgB,gDAMhB;IACa,kEAWb;IAC2B,iFAwC3B"}
|