@maestro_io/maestro-web-sdk 3.1.3 → 3.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. package/dist/maestro-web-sdk.esm.js +5 -5
  2. package/dist/maestro-web-sdk.esm.js.map +1 -1
  3. package/dist/maestro-web-sdk.umd.js +5 -5
  4. package/dist/maestro-web-sdk.umd.js.map +1 -1
  5. package/dist/src/components/atoms/SvgIcon/FantasyIcon.d.ts +7 -0
  6. package/dist/src/components/atoms/SvgIcon/Icon.d.ts +4 -0
  7. package/dist/src/components/atoms/SvgIcon/ShopIcon.d.ts +5 -0
  8. package/dist/src/components/molecules/HeadshotImage/HeadshotImage.d.ts +16 -0
  9. package/dist/src/components/molecules/HeadshotImage/index.d.ts +2 -0
  10. package/dist/src/development/MaestroEventDelegate.d.ts +2 -1
  11. package/dist/src/helpers/strings.d.ts +1 -0
  12. package/dist/src/index.d.ts +2 -2
  13. package/dist/src/interfaces/IMaestroEvent.d.ts +4 -0
  14. package/dist/src/interfaces/IMaestroEventDelegate.d.ts +15 -0
  15. package/dist/src/interfaces/IUserSettings.d.ts +8 -0
  16. package/dist/src/models/IPanel.d.ts +2 -6
  17. package/dist/src/modules/bets/view-model/BetsViewModel.d.ts +0 -5
  18. package/dist/src/modules/fantasy/components/ExpandedAthleteList/ExpandedAthletesList.d.ts +28 -0
  19. package/dist/src/modules/fantasy/components/ExpandedAthleteList/index.d.ts +1 -0
  20. package/dist/src/modules/fantasy/components/LeagueCard/LeagueCard.d.ts +56 -0
  21. package/dist/src/modules/fantasy/components/LeagueCard/index.d.ts +2 -0
  22. package/dist/src/modules/fantasy/components/TopPlayerCard/TopPlayerCard.d.ts +53 -0
  23. package/dist/src/modules/fantasy/components/TopPlayerCard/index.d.ts +2 -0
  24. package/dist/src/modules/fantasy/mocks.d.ts +7620 -0
  25. package/dist/src/modules/fantasy/types.d.ts +176 -0
  26. package/dist/src/modules/fantasy/view/ActiveAthletesMarquee/ActiveAthletesMarquee.d.ts +21 -0
  27. package/dist/src/modules/fantasy/view/ActiveAthletesMarquee/index.d.ts +2 -0
  28. package/dist/src/modules/fantasy/view/FantasyItemView.d.ts +21 -0
  29. package/dist/src/modules/fantasy/view/FantasyView.d.ts +27 -0
  30. package/dist/src/modules/fantasy/view/InactiveLeague/DraftDateCountdown.d.ts +23 -0
  31. package/dist/src/modules/fantasy/view/InactiveLeague/InactiveLeague.d.ts +52 -0
  32. package/dist/src/modules/fantasy/view/InactiveLeague/index.d.ts +2 -0
  33. package/dist/src/modules/fantasy/view/LoginView/LoginView.d.ts +48 -0
  34. package/dist/src/modules/fantasy/view/LoginView/index.d.ts +2 -0
  35. package/dist/src/modules/fantasy/view/MatchupPair/DoubleAthleteCard/DoubleAthleteCard.d.ts +49 -0
  36. package/dist/src/modules/fantasy/view/MatchupPair/DoubleAthleteCard/index.d.ts +2 -0
  37. package/dist/src/modules/fantasy/view/MatchupPair/ExpandedDoubleAthleteCards.d.ts +14 -0
  38. package/dist/src/modules/fantasy/view/MatchupPair/MatchupPair.d.ts +54 -0
  39. package/dist/src/modules/fantasy/view/MatchupPair/index.d.ts +2 -0
  40. package/dist/src/modules/fantasy/view/MatchupSingle/ExpandedSingleAthleteCards.d.ts +14 -0
  41. package/dist/src/modules/fantasy/view/MatchupSingle/MatchupSingle.d.ts +54 -0
  42. package/dist/src/modules/fantasy/view/MatchupSingle/SingleAthleteCard/SingleAthleteCard.d.ts +49 -0
  43. package/dist/src/modules/fantasy/view/MatchupSingle/SingleAthleteCard/index.d.ts +2 -0
  44. package/dist/src/modules/fantasy/view/MatchupSingle/index.d.ts +2 -0
  45. package/dist/src/modules/fantasy/view/PromoView/PromoView.d.ts +52 -0
  46. package/dist/src/modules/fantasy/view/PromoView/index.d.ts +2 -0
  47. package/dist/src/modules/fantasy/view/index.d.ts +2 -0
  48. package/dist/src/modules/fantasy/view-model/FantasyViewModel.FantasyPolling.d.ts +32 -0
  49. package/dist/src/modules/fantasy/view-model/FantasyViewModel.LeagueManagerPolling.d.ts +32 -0
  50. package/dist/src/modules/fantasy/view-model/FantasyViewModel.d.ts +148 -0
  51. package/dist/src/modules/shop/mocks.d.ts +22 -0
  52. package/dist/src/modules/shop/types.d.ts +161 -0
  53. package/dist/src/modules/shop/view/ProductDetailView/ProductDetailView.d.ts +10 -0
  54. package/dist/src/modules/shop/view/ProductDetailView/index.d.ts +2 -0
  55. package/dist/src/modules/shop/view/ShopView.d.ts +35 -0
  56. package/dist/src/modules/shop/view/components/BrowseCard/BrowseCard.d.ts +55 -0
  57. package/dist/src/modules/shop/view/components/BrowseCard/index.d.ts +2 -0
  58. package/dist/src/modules/shop/view/components/ProductSummaryCard/ProductSummaryCard.d.ts +56 -0
  59. package/dist/src/modules/shop/view/components/ProductSummaryCard/index.d.ts +2 -0
  60. package/dist/src/modules/shop/view/components/ShopPromoView/ShopPromoView.d.ts +9 -0
  61. package/dist/src/modules/shop/view/components/ShopPromoView/index.d.ts +1 -0
  62. package/dist/src/modules/shop/view/components/ShopSection/ShopSection.d.ts +21 -0
  63. package/dist/src/modules/shop/view/components/ShopSection/index.d.ts +1 -0
  64. package/dist/src/modules/shop/view/index.d.ts +2 -0
  65. package/dist/src/modules/shop/view-model/ShopViewModel.ShopPolling.d.ts +31 -0
  66. package/dist/src/modules/shop/view-model/ShopViewModel.d.ts +77 -0
  67. package/dist/src/modules/stats/view-model/StatsViewModel.d.ts +0 -5
  68. package/dist/src/services/AnalyticsService/AnalyticsService.d.ts +23 -3
  69. package/dist/src/services/FantasyService.d.ts +53 -0
  70. package/dist/src/services/NetworkManager/types.d.ts +2 -0
  71. package/dist/src/services/ShopService.d.ts +23 -0
  72. package/dist/src/view-models/MaestroEventViewModel.d.ts +4 -0
  73. package/package.json +1 -3

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.