be-components 7.6.3 → 7.6.5

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 (309) hide show
  1. package/lib/commonjs/Components/Spring.js +9 -52
  2. package/lib/commonjs/Components/Spring.js.map +1 -1
  3. package/lib/commonjs/NotificationManager/NotificationManagerTabs.js +188 -0
  4. package/lib/commonjs/NotificationManager/NotificationManagerTabs.js.map +1 -0
  5. package/lib/commonjs/NotificationManager/api/index.js +237 -7
  6. package/lib/commonjs/NotificationManager/api/index.js.map +1 -1
  7. package/lib/commonjs/NotificationManager/components/GroupManagement.js +1038 -0
  8. package/lib/commonjs/NotificationManager/components/GroupManagement.js.map +1 -0
  9. package/lib/commonjs/NotificationManager/components/JobManagement.js +783 -0
  10. package/lib/commonjs/NotificationManager/components/JobManagement.js.map +1 -0
  11. package/lib/commonjs/NotificationManager/components/ScheduleNotification.js +407 -0
  12. package/lib/commonjs/NotificationManager/components/ScheduleNotification.js.map +1 -0
  13. package/lib/commonjs/NotificationManager/components/index.js +56 -0
  14. package/lib/commonjs/NotificationManager/components/index.js.map +1 -0
  15. package/lib/commonjs/NotificationManager/components/shared/DateTimePicker.js +113 -0
  16. package/lib/commonjs/NotificationManager/components/shared/DateTimePicker.js.map +1 -0
  17. package/lib/commonjs/NotificationManager/components/shared/GroupSelector.js +191 -0
  18. package/lib/commonjs/NotificationManager/components/shared/GroupSelector.js.map +1 -0
  19. package/lib/commonjs/NotificationManager/components/shared/NotificationBuilderForm.js +509 -0
  20. package/lib/commonjs/NotificationManager/components/shared/NotificationBuilderForm.js.map +1 -0
  21. package/lib/commonjs/NotificationManager/components/shared/StatusBadge.js +69 -0
  22. package/lib/commonjs/NotificationManager/components/shared/StatusBadge.js.map +1 -0
  23. package/lib/commonjs/NotificationManager/index.js +38 -23
  24. package/lib/commonjs/NotificationManager/index.js.map +1 -1
  25. package/lib/commonjs/Notifications/index.js +2 -2
  26. package/lib/commonjs/Notifications/index.js.map +1 -1
  27. package/lib/commonjs/ProfileManager/Components/BettorVouch.js +1 -1
  28. package/lib/commonjs/ProfileManager/Components/BettorVouch.js.map +1 -1
  29. package/lib/commonjs/SocialComponents/PostCard/index.js +1 -1
  30. package/lib/commonjs/SocialComponents/PostCard/index.js.map +1 -1
  31. package/lib/commonjs/index.js +7 -0
  32. package/lib/commonjs/index.js.map +1 -1
  33. package/lib/commonjs/types.d.js +2 -0
  34. package/lib/commonjs/types.d.js.map +1 -1
  35. package/lib/module/Components/Spring.js +10 -53
  36. package/lib/module/Components/Spring.js.map +1 -1
  37. package/lib/module/NotificationManager/NotificationManagerTabs.js +180 -0
  38. package/lib/module/NotificationManager/NotificationManagerTabs.js.map +1 -0
  39. package/lib/module/NotificationManager/api/index.js +237 -7
  40. package/lib/module/NotificationManager/api/index.js.map +1 -1
  41. package/lib/module/NotificationManager/components/GroupManagement.js +1030 -0
  42. package/lib/module/NotificationManager/components/GroupManagement.js.map +1 -0
  43. package/lib/module/NotificationManager/components/JobManagement.js +775 -0
  44. package/lib/module/NotificationManager/components/JobManagement.js.map +1 -0
  45. package/lib/module/NotificationManager/components/ScheduleNotification.js +399 -0
  46. package/lib/module/NotificationManager/components/ScheduleNotification.js.map +1 -0
  47. package/lib/module/NotificationManager/components/index.js +8 -0
  48. package/lib/module/NotificationManager/components/index.js.map +1 -0
  49. package/lib/module/NotificationManager/components/shared/DateTimePicker.js +106 -0
  50. package/lib/module/NotificationManager/components/shared/DateTimePicker.js.map +1 -0
  51. package/lib/module/NotificationManager/components/shared/GroupSelector.js +184 -0
  52. package/lib/module/NotificationManager/components/shared/GroupSelector.js.map +1 -0
  53. package/lib/module/NotificationManager/components/shared/NotificationBuilderForm.js +501 -0
  54. package/lib/module/NotificationManager/components/shared/NotificationBuilderForm.js.map +1 -0
  55. package/lib/module/NotificationManager/components/shared/StatusBadge.js +62 -0
  56. package/lib/module/NotificationManager/components/shared/StatusBadge.js.map +1 -0
  57. package/lib/module/NotificationManager/index.js +32 -23
  58. package/lib/module/NotificationManager/index.js.map +1 -1
  59. package/lib/module/Notifications/index.js +2 -2
  60. package/lib/module/Notifications/index.js.map +1 -1
  61. package/lib/module/ProfileManager/Components/BettorVouch.js +1 -1
  62. package/lib/module/ProfileManager/Components/BettorVouch.js.map +1 -1
  63. package/lib/module/SocialComponents/PostCard/index.js +1 -1
  64. package/lib/module/SocialComponents/PostCard/index.js.map +1 -1
  65. package/lib/module/index.js +2 -1
  66. package/lib/module/index.js.map +1 -1
  67. package/lib/module/types.d.js +2 -0
  68. package/lib/module/types.d.js.map +1 -1
  69. package/lib/typescript/lib/commonjs/Components/Spring.d.ts +1 -5
  70. package/lib/typescript/lib/commonjs/Components/Spring.d.ts.map +1 -1
  71. package/lib/typescript/lib/commonjs/NotificationManager/NotificationManagerTabs.d.ts +17 -0
  72. package/lib/typescript/lib/commonjs/NotificationManager/NotificationManagerTabs.d.ts.map +1 -0
  73. package/lib/typescript/lib/commonjs/NotificationManager/api/index.d.ts +75 -2
  74. package/lib/typescript/lib/commonjs/NotificationManager/api/index.d.ts.map +1 -1
  75. package/lib/typescript/lib/commonjs/NotificationManager/components/GroupManagement.d.ts +6 -0
  76. package/lib/typescript/lib/commonjs/NotificationManager/components/GroupManagement.d.ts.map +1 -0
  77. package/lib/typescript/lib/commonjs/NotificationManager/components/JobManagement.d.ts +7 -0
  78. package/lib/typescript/lib/commonjs/NotificationManager/components/JobManagement.d.ts.map +1 -0
  79. package/lib/typescript/lib/commonjs/NotificationManager/components/ScheduleNotification.d.ts +8 -0
  80. package/lib/typescript/lib/commonjs/NotificationManager/components/ScheduleNotification.d.ts.map +1 -0
  81. package/lib/typescript/lib/commonjs/NotificationManager/components/index.d.ts +9 -0
  82. package/lib/typescript/lib/commonjs/NotificationManager/components/index.d.ts.map +1 -0
  83. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/DateTimePicker.d.ts +9 -0
  84. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/DateTimePicker.d.ts.map +1 -0
  85. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/GroupSelector.d.ts +13 -0
  86. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/GroupSelector.d.ts.map +1 -0
  87. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/NotificationBuilderForm.d.ts +10 -0
  88. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/NotificationBuilderForm.d.ts.map +1 -0
  89. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/StatusBadge.d.ts +6 -0
  90. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/StatusBadge.d.ts.map +1 -0
  91. package/lib/typescript/lib/commonjs/NotificationManager/index.d.ts +76 -2
  92. package/lib/typescript/lib/commonjs/NotificationManager/index.d.ts.map +1 -1
  93. package/lib/typescript/lib/commonjs/index.d.ts +76 -2
  94. package/lib/typescript/lib/commonjs/index.d.ts.map +1 -1
  95. package/lib/typescript/lib/module/AdServer/index.d.ts +1 -3
  96. package/lib/typescript/lib/module/AdServer/index.d.ts.map +1 -1
  97. package/lib/typescript/lib/module/Authenticator/Components/AuthStrategyIdentifier.d.ts +1 -3
  98. package/lib/typescript/lib/module/Authenticator/Components/AuthStrategyIdentifier.d.ts.map +1 -1
  99. package/lib/typescript/lib/module/Authenticator/Components/LoginForm.d.ts +1 -3
  100. package/lib/typescript/lib/module/Authenticator/Components/LoginForm.d.ts.map +1 -1
  101. package/lib/typescript/lib/module/Authenticator/Components/StrategyForm.d.ts +1 -3
  102. package/lib/typescript/lib/module/Authenticator/Components/StrategyForm.d.ts.map +1 -1
  103. package/lib/typescript/lib/module/BetRouter/components/admin/LeagueContests.d.ts +1 -3
  104. package/lib/typescript/lib/module/BetRouter/components/admin/LeagueContests.d.ts.map +1 -1
  105. package/lib/typescript/lib/module/BetRouter/components/admin/LeagueParticipants.d.ts +1 -3
  106. package/lib/typescript/lib/module/BetRouter/components/admin/LeagueParticipants.d.ts.map +1 -1
  107. package/lib/typescript/lib/module/BetRouter/index.d.ts +1 -3
  108. package/lib/typescript/lib/module/BetRouter/index.d.ts.map +1 -1
  109. package/lib/typescript/lib/module/Bracket/components/BracketCompetitionCard.d.ts +1 -3
  110. package/lib/typescript/lib/module/Bracket/components/BracketCompetitionCard.d.ts.map +1 -1
  111. package/lib/typescript/lib/module/Bracket/components/BracketCompetitionSelector.d.ts +1 -3
  112. package/lib/typescript/lib/module/Bracket/components/BracketCompetitionSelector.d.ts.map +1 -1
  113. package/lib/typescript/lib/module/Bracket/components/EditPlayerBracket.d.ts +1 -3
  114. package/lib/typescript/lib/module/Bracket/components/EditPlayerBracket.d.ts.map +1 -1
  115. package/lib/typescript/lib/module/Bracket/components/Navigator.d.ts +1 -3
  116. package/lib/typescript/lib/module/Bracket/components/Navigator.d.ts.map +1 -1
  117. package/lib/typescript/lib/module/Bracket/components/PlayerBracketManager.d.ts +1 -3
  118. package/lib/typescript/lib/module/Bracket/components/PlayerBracketManager.d.ts.map +1 -1
  119. package/lib/typescript/lib/module/Bracket/components/RoomHome.d.ts +1 -3
  120. package/lib/typescript/lib/module/Bracket/components/RoomHome.d.ts.map +1 -1
  121. package/lib/typescript/lib/module/Campaign/components/AutoManager.d.ts +1 -3
  122. package/lib/typescript/lib/module/Campaign/components/AutoManager.d.ts.map +1 -1
  123. package/lib/typescript/lib/module/Campaign/components/ProgressTimer.d.ts +1 -3
  124. package/lib/typescript/lib/module/Campaign/components/ProgressTimer.d.ts.map +1 -1
  125. package/lib/typescript/lib/module/Checkout/components/ItemSummaryCard.d.ts +1 -3
  126. package/lib/typescript/lib/module/Checkout/components/ItemSummaryCard.d.ts.map +1 -1
  127. package/lib/typescript/lib/module/Competition/components/AthleteMarketCard.d.ts +1 -3
  128. package/lib/typescript/lib/module/Competition/components/AthleteMarketCard.d.ts.map +1 -1
  129. package/lib/typescript/lib/module/Competition/components/CompetitionCard.d.ts +1 -3
  130. package/lib/typescript/lib/module/Competition/components/CompetitionCard.d.ts.map +1 -1
  131. package/lib/typescript/lib/module/Competition/components/CompetitionInfoCard.d.ts +1 -3
  132. package/lib/typescript/lib/module/Competition/components/CompetitionInfoCard.d.ts.map +1 -1
  133. package/lib/typescript/lib/module/Competition/components/CompetitionLeaderboard.d.ts +1 -3
  134. package/lib/typescript/lib/module/Competition/components/CompetitionLeaderboard.d.ts.map +1 -1
  135. package/lib/typescript/lib/module/Competition/components/CompetitionPlay.d.ts +1 -3
  136. package/lib/typescript/lib/module/Competition/components/CompetitionPlay.d.ts.map +1 -1
  137. package/lib/typescript/lib/module/Competition/components/CompetitionTypeCard.d.ts +1 -3
  138. package/lib/typescript/lib/module/Competition/components/CompetitionTypeCard.d.ts.map +1 -1
  139. package/lib/typescript/lib/module/Competition/components/MatchMarketCard.d.ts +1 -3
  140. package/lib/typescript/lib/module/Competition/components/MatchMarketCard.d.ts.map +1 -1
  141. package/lib/typescript/lib/module/Competition/components/TeamEventCard.d.ts +1 -3
  142. package/lib/typescript/lib/module/Competition/components/TeamEventCard.d.ts.map +1 -1
  143. package/lib/typescript/lib/module/CompetitionManager/components/CompetitionInfoForm.d.ts +1 -3
  144. package/lib/typescript/lib/module/CompetitionManager/components/CompetitionInfoForm.d.ts.map +1 -1
  145. package/lib/typescript/lib/module/CompetitionManager/components/CompetitionMatchMarketCard.d.ts +1 -3
  146. package/lib/typescript/lib/module/CompetitionManager/components/CompetitionMatchMarketCard.d.ts.map +1 -1
  147. package/lib/typescript/lib/module/CompetitionManager/components/CompetitionSettingsForm.d.ts +1 -3
  148. package/lib/typescript/lib/module/CompetitionManager/components/CompetitionSettingsForm.d.ts.map +1 -1
  149. package/lib/typescript/lib/module/CompetitionManager/components/ContestSettingsForm.d.ts +1 -3
  150. package/lib/typescript/lib/module/CompetitionManager/components/ContestSettingsForm.d.ts.map +1 -1
  151. package/lib/typescript/lib/module/CompetitionSeasonManager/components/CreateSeasonForm.d.ts +1 -3
  152. package/lib/typescript/lib/module/CompetitionSeasonManager/components/CreateSeasonForm.d.ts.map +1 -1
  153. package/lib/typescript/lib/module/CompetitionSeasonManager/components/SeasonInfoForm.d.ts +1 -3
  154. package/lib/typescript/lib/module/CompetitionSeasonManager/components/SeasonInfoForm.d.ts.map +1 -1
  155. package/lib/typescript/lib/module/CompetitionSeasonManager/components/SeasonSettingsForm.d.ts +1 -3
  156. package/lib/typescript/lib/module/CompetitionSeasonManager/components/SeasonSettingsForm.d.ts.map +1 -1
  157. package/lib/typescript/lib/module/Components/Spring.d.ts +3 -1126
  158. package/lib/typescript/lib/module/Components/Spring.d.ts.map +1 -1
  159. package/lib/typescript/lib/module/EventComponents/TeamProfile/index.d.ts +1 -3
  160. package/lib/typescript/lib/module/EventComponents/TeamProfile/index.d.ts.map +1 -1
  161. package/lib/typescript/lib/module/FlashMarket/components/MarketTimer.d.ts +1 -3
  162. package/lib/typescript/lib/module/FlashMarket/components/MarketTimer.d.ts.map +1 -1
  163. package/lib/typescript/lib/module/FlashMarket/components/ProgressTimer.d.ts +1 -3
  164. package/lib/typescript/lib/module/FlashMarket/components/ProgressTimer.d.ts.map +1 -1
  165. package/lib/typescript/lib/module/FlashMarket/index.d.ts +1 -3
  166. package/lib/typescript/lib/module/FlashMarket/index.d.ts.map +1 -1
  167. package/lib/typescript/lib/module/Guide/index.d.ts +1 -3
  168. package/lib/typescript/lib/module/Guide/index.d.ts.map +1 -1
  169. package/lib/typescript/lib/module/Leaders/components/LeaderboardCard.d.ts +1 -3
  170. package/lib/typescript/lib/module/Leaders/components/LeaderboardCard.d.ts.map +1 -1
  171. package/lib/typescript/lib/module/MarketComponents/components/BetScopeIndicator.d.ts +1 -3
  172. package/lib/typescript/lib/module/MarketComponents/components/BetScopeIndicator.d.ts.map +1 -1
  173. package/lib/typescript/lib/module/MarketComponents/components/EventScoringCard.d.ts +1 -3
  174. package/lib/typescript/lib/module/MarketComponents/components/EventScoringCard.d.ts.map +1 -1
  175. package/lib/typescript/lib/module/MarketComponents/components/MatchMarket/index.d.ts +1 -3
  176. package/lib/typescript/lib/module/MarketComponents/components/MatchMarket/index.d.ts.map +1 -1
  177. package/lib/typescript/lib/module/MarketComponents/components/OrderGradeBar.d.ts +1 -3
  178. package/lib/typescript/lib/module/MarketComponents/components/OrderGradeBar.d.ts.map +1 -1
  179. package/lib/typescript/lib/module/MarketComponents/components/TeamEventMarket/index.d.ts +1 -3
  180. package/lib/typescript/lib/module/MarketComponents/components/TeamEventMarket/index.d.ts.map +1 -1
  181. package/lib/typescript/lib/module/MarketMaker/components/ManageFundForm.d.ts +1 -3
  182. package/lib/typescript/lib/module/MarketMaker/components/ManageFundForm.d.ts.map +1 -1
  183. package/lib/typescript/lib/module/MarketMaker/components/OrderForm.d.ts +1 -3
  184. package/lib/typescript/lib/module/MarketMaker/components/OrderForm.d.ts.map +1 -1
  185. package/lib/typescript/lib/module/MarketMaker/components/SetMarketForm.d.ts +1 -3
  186. package/lib/typescript/lib/module/MarketMaker/components/SetMarketForm.d.ts.map +1 -1
  187. package/lib/typescript/lib/module/NotificationManager/NotificationManagerTabs.d.ts +17 -0
  188. package/lib/typescript/lib/module/NotificationManager/NotificationManagerTabs.d.ts.map +1 -0
  189. package/lib/typescript/lib/module/NotificationManager/api/index.d.ts +75 -2
  190. package/lib/typescript/lib/module/NotificationManager/api/index.d.ts.map +1 -1
  191. package/lib/typescript/lib/module/NotificationManager/components/GroupManagement.d.ts +6 -0
  192. package/lib/typescript/lib/module/NotificationManager/components/GroupManagement.d.ts.map +1 -0
  193. package/lib/typescript/lib/module/NotificationManager/components/JobManagement.d.ts +7 -0
  194. package/lib/typescript/lib/module/NotificationManager/components/JobManagement.d.ts.map +1 -0
  195. package/lib/typescript/lib/module/NotificationManager/components/ScheduleNotification.d.ts +8 -0
  196. package/lib/typescript/lib/module/NotificationManager/components/ScheduleNotification.d.ts.map +1 -0
  197. package/lib/typescript/lib/module/NotificationManager/components/index.d.ts +8 -0
  198. package/lib/typescript/lib/module/NotificationManager/components/index.d.ts.map +1 -0
  199. package/lib/typescript/lib/module/NotificationManager/components/shared/DateTimePicker.d.ts +9 -0
  200. package/lib/typescript/lib/module/NotificationManager/components/shared/DateTimePicker.d.ts.map +1 -0
  201. package/lib/typescript/lib/module/NotificationManager/components/shared/GroupSelector.d.ts +13 -0
  202. package/lib/typescript/lib/module/NotificationManager/components/shared/GroupSelector.d.ts.map +1 -0
  203. package/lib/typescript/lib/module/NotificationManager/components/shared/NotificationBuilderForm.d.ts +10 -0
  204. package/lib/typescript/lib/module/NotificationManager/components/shared/NotificationBuilderForm.d.ts.map +1 -0
  205. package/lib/typescript/lib/module/NotificationManager/components/shared/StatusBadge.d.ts +6 -0
  206. package/lib/typescript/lib/module/NotificationManager/components/shared/StatusBadge.d.ts.map +1 -0
  207. package/lib/typescript/lib/module/NotificationManager/index.d.ts +1 -0
  208. package/lib/typescript/lib/module/NotificationManager/index.d.ts.map +1 -1
  209. package/lib/typescript/lib/module/Observer/Observer.d.ts +1 -3
  210. package/lib/typescript/lib/module/Observer/Observer.d.ts.map +1 -1
  211. package/lib/typescript/lib/module/PlayerRecommender/components/ContactsSelector.d.ts +1 -3
  212. package/lib/typescript/lib/module/PlayerRecommender/components/ContactsSelector.d.ts.map +1 -1
  213. package/lib/typescript/lib/module/Premium/components/ALaCartePremium.d.ts +1 -3
  214. package/lib/typescript/lib/module/Premium/components/ALaCartePremium.d.ts.map +1 -1
  215. package/lib/typescript/lib/module/RankingsCard/index.d.ts +1 -3
  216. package/lib/typescript/lib/module/RankingsCard/index.d.ts.map +1 -1
  217. package/lib/typescript/lib/module/SocialComponents/FormattedTextInput/components/TagSelector.d.ts +1 -3
  218. package/lib/typescript/lib/module/SocialComponents/FormattedTextInput/components/TagSelector.d.ts.map +1 -1
  219. package/lib/typescript/lib/module/SocialComponents/GifSelector/WebSelector.d.ts +1 -3
  220. package/lib/typescript/lib/module/SocialComponents/GifSelector/WebSelector.d.ts.map +1 -1
  221. package/lib/typescript/lib/module/SocialComponents/PlayerFollowButton.d.ts +1 -3
  222. package/lib/typescript/lib/module/SocialComponents/PlayerFollowButton.d.ts.map +1 -1
  223. package/lib/typescript/lib/module/SocialComponents/PlayerProfile/components/PostsList.d.ts +1 -3
  224. package/lib/typescript/lib/module/SocialComponents/PlayerProfile/components/PostsList.d.ts.map +1 -1
  225. package/lib/typescript/lib/module/SocialComponents/PostCard/components/DraftTextViewer.d.ts +1 -3
  226. package/lib/typescript/lib/module/SocialComponents/PostCard/components/DraftTextViewer.d.ts.map +1 -1
  227. package/lib/typescript/lib/module/SocialComponents/Poster/index.d.ts +1 -3
  228. package/lib/typescript/lib/module/SocialComponents/Poster/index.d.ts.map +1 -1
  229. package/lib/typescript/lib/module/Socket/index.d.ts +1 -3
  230. package/lib/typescript/lib/module/Socket/index.d.ts.map +1 -1
  231. package/lib/typescript/lib/module/Squares/components/BoardStats.d.ts +1 -3
  232. package/lib/typescript/lib/module/Squares/components/BoardStats.d.ts.map +1 -1
  233. package/lib/typescript/lib/module/Squares/components/Countdown.d.ts +1 -3
  234. package/lib/typescript/lib/module/Squares/components/Countdown.d.ts.map +1 -1
  235. package/lib/typescript/lib/module/Squares/components/EventCard.d.ts +1 -3
  236. package/lib/typescript/lib/module/Squares/components/EventCard.d.ts.map +1 -1
  237. package/lib/typescript/lib/module/Squares/components/MySquaresCard.d.ts +1 -3
  238. package/lib/typescript/lib/module/Squares/components/MySquaresCard.d.ts.map +1 -1
  239. package/lib/typescript/lib/module/Squares/components/MyStatsCard.d.ts +1 -3
  240. package/lib/typescript/lib/module/Squares/components/MyStatsCard.d.ts.map +1 -1
  241. package/lib/typescript/lib/module/Squares/components/OfferForm.d.ts +1 -3
  242. package/lib/typescript/lib/module/Squares/components/OfferForm.d.ts.map +1 -1
  243. package/lib/typescript/lib/module/Squares/components/PrizeCard.d.ts +1 -3
  244. package/lib/typescript/lib/module/Squares/components/PrizeCard.d.ts.map +1 -1
  245. package/lib/typescript/lib/module/Squares/components/ResultsCard.d.ts +1 -3
  246. package/lib/typescript/lib/module/Squares/components/ResultsCard.d.ts.map +1 -1
  247. package/lib/typescript/lib/module/Squares/components/SquareOfferCard.d.ts +1 -3
  248. package/lib/typescript/lib/module/Squares/components/SquareOfferCard.d.ts.map +1 -1
  249. package/lib/typescript/lib/module/Squares/components/SquareOwners.d.ts +1 -3
  250. package/lib/typescript/lib/module/Squares/components/SquareOwners.d.ts.map +1 -1
  251. package/lib/typescript/lib/module/Squares/components/SquaresBoard.d.ts +1 -3
  252. package/lib/typescript/lib/module/Squares/components/SquaresBoard.d.ts.map +1 -1
  253. package/lib/typescript/lib/module/Squares/components/SquaresDetails.d.ts +1 -3
  254. package/lib/typescript/lib/module/Squares/components/SquaresDetails.d.ts.map +1 -1
  255. package/lib/typescript/lib/module/Wallet/components/ItemOrderDetailCard.d.ts +1 -3
  256. package/lib/typescript/lib/module/Wallet/components/ItemOrderDetailCard.d.ts.map +1 -1
  257. package/lib/typescript/lib/module/Wallet/components/VerifyACHAccount.d.ts +1 -3
  258. package/lib/typescript/lib/module/Wallet/components/VerifyACHAccount.d.ts.map +1 -1
  259. package/lib/typescript/lib/module/Wallet/components/WalletSettings.d.ts +1 -3
  260. package/lib/typescript/lib/module/Wallet/components/WalletSettings.d.ts.map +1 -1
  261. package/lib/typescript/lib/module/index.d.ts +2 -1
  262. package/lib/typescript/lib/module/index.d.ts.map +1 -1
  263. package/lib/typescript/src/Components/AutoPageFlatList.d.ts +1 -1
  264. package/lib/typescript/src/Components/AutoPageFlatList.d.ts.map +1 -1
  265. package/lib/typescript/src/Components/Spring.d.ts +1 -1
  266. package/lib/typescript/src/Components/Spring.d.ts.map +1 -1
  267. package/lib/typescript/src/NotificationManager/NotificationManagerTabs.d.ts +20 -0
  268. package/lib/typescript/src/NotificationManager/NotificationManagerTabs.d.ts.map +1 -0
  269. package/lib/typescript/src/NotificationManager/api/index.d.ts +132 -3
  270. package/lib/typescript/src/NotificationManager/api/index.d.ts.map +1 -1
  271. package/lib/typescript/src/NotificationManager/components/GroupManagement.d.ts +8 -0
  272. package/lib/typescript/src/NotificationManager/components/GroupManagement.d.ts.map +1 -0
  273. package/lib/typescript/src/NotificationManager/components/JobManagement.d.ts +9 -0
  274. package/lib/typescript/src/NotificationManager/components/JobManagement.d.ts.map +1 -0
  275. package/lib/typescript/src/NotificationManager/components/ScheduleNotification.d.ts +10 -0
  276. package/lib/typescript/src/NotificationManager/components/ScheduleNotification.d.ts.map +1 -0
  277. package/lib/typescript/src/NotificationManager/components/index.d.ts +8 -0
  278. package/lib/typescript/src/NotificationManager/components/index.d.ts.map +1 -0
  279. package/lib/typescript/src/NotificationManager/components/shared/DateTimePicker.d.ts +12 -0
  280. package/lib/typescript/src/NotificationManager/components/shared/DateTimePicker.d.ts.map +1 -0
  281. package/lib/typescript/src/NotificationManager/components/shared/GroupSelector.d.ts +16 -0
  282. package/lib/typescript/src/NotificationManager/components/shared/GroupSelector.d.ts.map +1 -0
  283. package/lib/typescript/src/NotificationManager/components/shared/NotificationBuilderForm.d.ts +12 -0
  284. package/lib/typescript/src/NotificationManager/components/shared/NotificationBuilderForm.d.ts.map +1 -0
  285. package/lib/typescript/src/NotificationManager/components/shared/StatusBadge.d.ts +8 -0
  286. package/lib/typescript/src/NotificationManager/components/shared/StatusBadge.d.ts.map +1 -0
  287. package/lib/typescript/src/NotificationManager/index.d.ts +1 -0
  288. package/lib/typescript/src/NotificationManager/index.d.ts.map +1 -1
  289. package/lib/typescript/src/index.d.ts +2 -1
  290. package/lib/typescript/src/index.d.ts.map +1 -1
  291. package/package.json +36 -35
  292. package/src/Components/AutoPageFlatList.tsx +1 -1
  293. package/src/Components/Spring.tsx +13 -44
  294. package/src/NotificationManager/NotificationManagerTabs.tsx +178 -0
  295. package/src/NotificationManager/api/index.ts +240 -7
  296. package/src/NotificationManager/components/GroupManagement.tsx +854 -0
  297. package/src/NotificationManager/components/JobManagement.tsx +569 -0
  298. package/src/NotificationManager/components/ScheduleNotification.tsx +388 -0
  299. package/src/NotificationManager/components/index.ts +7 -0
  300. package/src/NotificationManager/components/shared/DateTimePicker.tsx +94 -0
  301. package/src/NotificationManager/components/shared/GroupSelector.tsx +130 -0
  302. package/src/NotificationManager/components/shared/NotificationBuilderForm.tsx +364 -0
  303. package/src/NotificationManager/components/shared/StatusBadge.tsx +72 -0
  304. package/src/NotificationManager/index.tsx +43 -24
  305. package/src/Notifications/index.tsx +2 -2
  306. package/src/ProfileManager/Components/BettorVouch.tsx +1 -1
  307. package/src/SocialComponents/PostCard/index.tsx +1 -1
  308. package/src/index.tsx +2 -0
  309. package/src/types.d.ts +38 -3
@@ -1,4 +1,4 @@
1
- import type { NotificationGroupMemberProps, NotificationGroupProps, PlayerNotificationProps, PublicPlayerProps } from '../../types';
1
+ import type { NotificationGroupMemberProps, NotificationGroupProps, NotificationJobProps, PlayerNotificationProps, PublicPlayerProps } from '../../types';
2
2
  export interface CreateNotificationProps {
3
3
  player_id?: string;
4
4
  player_ids?: string[];
@@ -23,6 +23,7 @@ export declare const NotificationHelpers: {
23
23
  sq_comp_id?: undefined;
24
24
  trivia_id?: undefined;
25
25
  content_id?: undefined;
26
+ content_type?: undefined;
26
27
  contest_type?: undefined;
27
28
  player_filter_id?: undefined;
28
29
  fund_id?: undefined;
@@ -56,6 +57,7 @@ export declare const NotificationHelpers: {
56
57
  sq_comp_id?: undefined;
57
58
  trivia_id?: undefined;
58
59
  content_id?: undefined;
60
+ content_type?: undefined;
59
61
  contest_type?: undefined;
60
62
  player_filter_id?: undefined;
61
63
  fund_id?: undefined;
@@ -89,6 +91,7 @@ export declare const NotificationHelpers: {
89
91
  sq_comp_id?: undefined;
90
92
  trivia_id?: undefined;
91
93
  content_id?: undefined;
94
+ content_type?: undefined;
92
95
  contest_type?: undefined;
93
96
  player_filter_id?: undefined;
94
97
  fund_id?: undefined;
@@ -122,6 +125,7 @@ export declare const NotificationHelpers: {
122
125
  sq_comp_id?: undefined;
123
126
  trivia_id?: undefined;
124
127
  content_id?: undefined;
128
+ content_type?: undefined;
125
129
  contest_type?: undefined;
126
130
  player_filter_id?: undefined;
127
131
  fund_id?: undefined;
@@ -155,6 +159,7 @@ export declare const NotificationHelpers: {
155
159
  sq_comp_id?: undefined;
156
160
  trivia_id?: undefined;
157
161
  content_id?: undefined;
162
+ content_type?: undefined;
158
163
  contest_type?: undefined;
159
164
  player_filter_id?: undefined;
160
165
  fund_id?: undefined;
@@ -188,6 +193,7 @@ export declare const NotificationHelpers: {
188
193
  sq_comp_id?: undefined;
189
194
  trivia_id?: undefined;
190
195
  content_id?: undefined;
196
+ content_type?: undefined;
191
197
  contest_type?: undefined;
192
198
  player_filter_id?: undefined;
193
199
  fund_id?: undefined;
@@ -221,6 +227,7 @@ export declare const NotificationHelpers: {
221
227
  season_id?: undefined;
222
228
  trivia_id?: undefined;
223
229
  content_id?: undefined;
230
+ content_type?: undefined;
224
231
  contest_type?: undefined;
225
232
  player_filter_id?: undefined;
226
233
  fund_id?: undefined;
@@ -254,6 +261,7 @@ export declare const NotificationHelpers: {
254
261
  season_id?: undefined;
255
262
  sq_comp_id?: undefined;
256
263
  content_id?: undefined;
264
+ content_type?: undefined;
257
265
  contest_type?: undefined;
258
266
  player_filter_id?: undefined;
259
267
  fund_id?: undefined;
@@ -279,6 +287,7 @@ export declare const NotificationHelpers: {
279
287
  path_name: string;
280
288
  params: {
281
289
  content_id: string;
290
+ content_type: string;
282
291
  contest_id?: undefined;
283
292
  rebate_id?: undefined;
284
293
  bracket_competition_id?: undefined;
@@ -321,6 +330,7 @@ export declare const NotificationHelpers: {
321
330
  sq_comp_id?: undefined;
322
331
  trivia_id?: undefined;
323
332
  content_id?: undefined;
333
+ content_type?: undefined;
324
334
  player_filter_id?: undefined;
325
335
  fund_id?: undefined;
326
336
  hedge_id?: undefined;
@@ -354,6 +364,7 @@ export declare const NotificationHelpers: {
354
364
  sq_comp_id?: undefined;
355
365
  trivia_id?: undefined;
356
366
  content_id?: undefined;
367
+ content_type?: undefined;
357
368
  contest_type?: undefined;
358
369
  fund_id?: undefined;
359
370
  hedge_id?: undefined;
@@ -387,6 +398,7 @@ export declare const NotificationHelpers: {
387
398
  sq_comp_id?: undefined;
388
399
  trivia_id?: undefined;
389
400
  content_id?: undefined;
401
+ content_type?: undefined;
390
402
  contest_type?: undefined;
391
403
  player_filter_id?: undefined;
392
404
  hedge_id?: undefined;
@@ -420,6 +432,7 @@ export declare const NotificationHelpers: {
420
432
  sq_comp_id?: undefined;
421
433
  trivia_id?: undefined;
422
434
  content_id?: undefined;
435
+ content_type?: undefined;
423
436
  contest_type?: undefined;
424
437
  player_filter_id?: undefined;
425
438
  fund_id?: undefined;
@@ -453,6 +466,7 @@ export declare const NotificationHelpers: {
453
466
  sq_comp_id?: undefined;
454
467
  trivia_id?: undefined;
455
468
  content_id?: undefined;
469
+ content_type?: undefined;
456
470
  contest_type?: undefined;
457
471
  player_filter_id?: undefined;
458
472
  fund_id?: undefined;
@@ -489,6 +503,7 @@ export declare const NotificationHelpers: {
489
503
  sq_comp_id?: undefined;
490
504
  trivia_id?: undefined;
491
505
  content_id?: undefined;
506
+ content_type?: undefined;
492
507
  player_filter_id?: undefined;
493
508
  fund_id?: undefined;
494
509
  hedge_id?: undefined;
@@ -519,6 +534,7 @@ export declare const NotificationHelpers: {
519
534
  sq_comp_id?: undefined;
520
535
  trivia_id?: undefined;
521
536
  content_id?: undefined;
537
+ content_type?: undefined;
522
538
  contest_type?: undefined;
523
539
  player_filter_id?: undefined;
524
540
  fund_id?: undefined;
@@ -552,6 +568,7 @@ export declare const NotificationHelpers: {
552
568
  sq_comp_id?: undefined;
553
569
  trivia_id?: undefined;
554
570
  content_id?: undefined;
571
+ content_type?: undefined;
555
572
  contest_type?: undefined;
556
573
  player_filter_id?: undefined;
557
574
  fund_id?: undefined;
@@ -585,6 +602,7 @@ export declare const NotificationHelpers: {
585
602
  sq_comp_id?: undefined;
586
603
  trivia_id?: undefined;
587
604
  content_id?: undefined;
605
+ content_type?: undefined;
588
606
  contest_type?: undefined;
589
607
  player_filter_id?: undefined;
590
608
  fund_id?: undefined;
@@ -618,6 +636,7 @@ export declare const NotificationHelpers: {
618
636
  sq_comp_id?: undefined;
619
637
  trivia_id?: undefined;
620
638
  content_id?: undefined;
639
+ content_type?: undefined;
621
640
  contest_type?: undefined;
622
641
  player_filter_id?: undefined;
623
642
  fund_id?: undefined;
@@ -651,6 +670,7 @@ export declare const NotificationHelpers: {
651
670
  sq_comp_id?: undefined;
652
671
  trivia_id?: undefined;
653
672
  content_id?: undefined;
673
+ content_type?: undefined;
654
674
  contest_type?: undefined;
655
675
  player_filter_id?: undefined;
656
676
  fund_id?: undefined;
@@ -684,6 +704,7 @@ export declare const NotificationHelpers: {
684
704
  sq_comp_id?: undefined;
685
705
  trivia_id?: undefined;
686
706
  content_id?: undefined;
707
+ content_type?: undefined;
687
708
  contest_type?: undefined;
688
709
  player_filter_id?: undefined;
689
710
  fund_id?: undefined;
@@ -717,6 +738,7 @@ export declare const NotificationHelpers: {
717
738
  sq_comp_id?: undefined;
718
739
  trivia_id?: undefined;
719
740
  content_id?: undefined;
741
+ content_type?: undefined;
720
742
  contest_type?: undefined;
721
743
  player_filter_id?: undefined;
722
744
  fund_id?: undefined;
@@ -750,6 +772,7 @@ export declare const NotificationHelpers: {
750
772
  sq_comp_id?: undefined;
751
773
  trivia_id?: undefined;
752
774
  content_id?: undefined;
775
+ content_type?: undefined;
753
776
  contest_type?: undefined;
754
777
  player_filter_id?: undefined;
755
778
  fund_id?: undefined;
@@ -783,6 +806,7 @@ export declare const NotificationHelpers: {
783
806
  sq_comp_id?: undefined;
784
807
  trivia_id?: undefined;
785
808
  content_id?: undefined;
809
+ content_type?: undefined;
786
810
  contest_type?: undefined;
787
811
  player_filter_id?: undefined;
788
812
  fund_id?: undefined;
@@ -802,6 +826,40 @@ export declare const NotificationHelpers: {
802
826
  };
803
827
  requiredParams: string[];
804
828
  primary: boolean;
829
+ } | {
830
+ label: string;
831
+ path_name: string;
832
+ params: {
833
+ content_id: string;
834
+ contest_id?: undefined;
835
+ rebate_id?: undefined;
836
+ bracket_competition_id?: undefined;
837
+ mode?: undefined;
838
+ competition_id?: undefined;
839
+ season_id?: undefined;
840
+ sq_comp_id?: undefined;
841
+ trivia_id?: undefined;
842
+ content_type?: undefined;
843
+ contest_type?: undefined;
844
+ player_filter_id?: undefined;
845
+ fund_id?: undefined;
846
+ hedge_id?: undefined;
847
+ league_id?: undefined;
848
+ market_id?: undefined;
849
+ side_type?: undefined;
850
+ side_id?: undefined;
851
+ team_id?: undefined;
852
+ flash_campaign_id?: undefined;
853
+ post_id?: undefined;
854
+ campaign_id?: undefined;
855
+ player_id?: undefined;
856
+ company_id?: undefined;
857
+ group_id?: undefined;
858
+ order_id?: undefined;
859
+ podcast_id?: undefined;
860
+ };
861
+ requiredParams: string[];
862
+ primary: boolean;
805
863
  })[];
806
864
  };
807
865
  export declare const NotificationApi: {
@@ -812,11 +870,82 @@ export declare const NotificationApi: {
812
870
  getPlayersByPlayerIds: (player_ids: string[]) => Promise<PublicPlayerProps[]>;
813
871
  /**
814
872
  * Send notifications to multiple players
873
+ * @param player_notification - The notification to send
874
+ * @param player_ids - Array of player IDs (must be empty if notification_group_id is provided)
875
+ * @param notification_group_id - Optional group ID (server will fetch members)
815
876
  */
816
- broadcastNotifications: (player_notification: PlayerNotificationProps, player_ids: string[]) => Promise<{
877
+ broadcastNotifications: (player_notification: PlayerNotificationProps, player_ids: string[], notification_group_id?: string) => Promise<{
817
878
  message: string;
818
879
  }>;
819
- getActiveNotificationGroups: () => Promise<NotificationGroupProps[]>;
880
+ getActiveNotificationGroups: (limit?: number, offset?: number) => Promise<NotificationGroupProps[]>;
820
881
  getNotificationGroupMembersByGroup: (notification_group_id: string) => Promise<NotificationGroupMemberProps[]>;
882
+ /**
883
+ * Get all notification groups
884
+ */
885
+ getAllNotificationGroups: (limit?: number, offset?: number, search?: string) => Promise<NotificationGroupProps[]>;
886
+ /**
887
+ * Get notification groups by status
888
+ */
889
+ getNotificationGroupsByStatus: (status: "active" | "inactive", limit?: number, offset?: number, search?: string) => Promise<NotificationGroupProps[]>;
890
+ /**
891
+ * Get a single notification group by ID
892
+ */
893
+ getNotificationGroupById: (notification_group_id: string) => Promise<NotificationGroupProps | null>;
894
+ /**
895
+ * Create a new notification group
896
+ */
897
+ createNotificationGroup: (notification_group: Partial<NotificationGroupProps>) => Promise<NotificationGroupProps | null>;
898
+ /**
899
+ * Update an existing notification group
900
+ */
901
+ updateNotificationGroup: (notification_group: NotificationGroupProps) => Promise<NotificationGroupProps | null>;
902
+ /**
903
+ * Inactivate a notification group
904
+ */
905
+ inactivateNotificationGroup: (notification_group_id: string) => Promise<{
906
+ message: string;
907
+ }>;
908
+ /**
909
+ * Trigger grouping function to update group members, or manually add members via player_ids array
910
+ */
911
+ updateGroupMembers: (notification_group_id: string, player_ids?: string[]) => Promise<{
912
+ message: string;
913
+ }>;
914
+ /**
915
+ * Get all notification jobs
916
+ */
917
+ getAllNotificationJobs: (limit?: number, offset?: number) => Promise<NotificationJobProps[]>;
918
+ /**
919
+ * Get notification jobs by status
920
+ */
921
+ getNotificationJobsByStatus: (status: string, limit?: number, offset?: number) => Promise<NotificationJobProps[]>;
922
+ /**
923
+ * Get notification jobs by group ID
924
+ */
925
+ getNotificationJobsByGroup: (notification_group_id: string) => Promise<NotificationJobProps[]>;
926
+ /**
927
+ * Get a single notification job by ID
928
+ */
929
+ getNotificationJobById: (notification_job_id: string) => Promise<NotificationJobProps | null>;
930
+ /**
931
+ * Create a new notification job
932
+ */
933
+ createNotificationJob: (notification_job: Partial<NotificationJobProps>) => Promise<NotificationJobProps | null>;
934
+ /**
935
+ * Update an existing notification job
936
+ */
937
+ updateNotificationJob: (notification_job: NotificationJobProps) => Promise<NotificationJobProps | null>;
938
+ /**
939
+ * Finalize a notification job (mark as ready for sending)
940
+ */
941
+ finalizeNotificationJob: (notification_job_id: string) => Promise<{
942
+ message: string;
943
+ }>;
944
+ /**
945
+ * Cancel a notification job
946
+ */
947
+ cancelNotificationJob: (notification_job_id: string) => Promise<{
948
+ message: string;
949
+ }>;
821
950
  };
822
951
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/NotificationManager/api/index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,4BAA4B,EAAE,sBAAsB,EAAE,uBAAuB,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAIpI,MAAM,WAAW,uBAAuB;IACpC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,iBAAiB,EAAE,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,OAAO,CAAC;IACtE,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAClC;AAED,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAG0D,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8DjG,CAAC;AAEF,eAAO,MAAM,eAAe;;IAMxB;;OAEG;wCACsC,MAAM,EAAE,KAAG,OAAO,CAAC,iBAAiB,EAAE,CAAC;IAWhF;;OAEG;kDACgD,uBAAuB,cAAc,MAAM,EAAE,KAAG,OAAO,CAAC;QAAE,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC;uCAU1F,OAAO,CAAC,sBAAsB,EAAE,CAAC;gEAQN,MAAM,KAAE,OAAO,CAAC,4BAA4B,EAAE,CAAC;CAQlH,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/NotificationManager/api/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import type { FocusPositionProps } from '../../types';
3
+ interface GroupManagementProps {
4
+ onFocusPosition?: (pos: FocusPositionProps) => void;
5
+ }
6
+ declare const GroupManagement: ({ onFocusPosition }: GroupManagementProps) => React.JSX.Element;
7
+ export default GroupManagement;
8
+ //# sourceMappingURL=GroupManagement.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GroupManagement.d.ts","sourceRoot":"","sources":["../../../../../src/NotificationManager/components/GroupManagement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAOnD,OAAO,KAAK,EAAyC,kBAAkB,EAAE,MAAM,aAAa,CAAC;AAI7F,UAAU,oBAAoB;IAC1B,eAAe,CAAC,EAAE,CAAC,GAAG,EAAE,kBAAkB,KAAK,IAAI,CAAC;CACvD;AAgBD,QAAA,MAAM,eAAe,GAAI,qBAAqB,oBAAoB,sBAszBjE,CAAC;AAEF,eAAe,eAAe,CAAC"}
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import type { NotificationJobProps, FocusPositionProps } from '../../types';
3
+ interface JobManagementProps {
4
+ onEditJob?: (job: NotificationJobProps) => void;
5
+ onFocusPosition?: (pos: FocusPositionProps) => void;
6
+ }
7
+ declare const JobManagement: ({ onEditJob, onFocusPosition }: JobManagementProps) => React.JSX.Element;
8
+ export default JobManagement;
9
+ //# sourceMappingURL=JobManagement.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"JobManagement.d.ts","sourceRoot":"","sources":["../../../../../src/NotificationManager/components/JobManagement.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAQnD,OAAO,KAAK,EAAE,oBAAoB,EAAiD,kBAAkB,EAAE,MAAM,aAAa,CAAC;AAI3H,UAAU,kBAAkB;IACxB,SAAS,CAAC,EAAE,CAAC,GAAG,EAAE,oBAAoB,KAAK,IAAI,CAAC;IAChD,eAAe,CAAC,EAAC,CAAC,GAAG,EAAC,kBAAkB,KAAK,IAAI,CAAA;CACpD;AAsBD,QAAA,MAAM,aAAa,GAAI,gCAAgC,kBAAkB,sBAihBxE,CAAC;AAEF,eAAe,aAAa,CAAC"}
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import type { NotificationJobProps, FocusPositionProps } from '../../types';
3
+ interface ScheduleNotificationProps {
4
+ onFocusPosition?: (pos: FocusPositionProps) => void;
5
+ editingJob?: NotificationJobProps | null;
6
+ onJobSaved?: () => void;
7
+ }
8
+ declare const ScheduleNotification: ({ onFocusPosition, editingJob, onJobSaved }: ScheduleNotificationProps) => React.JSX.Element;
9
+ export default ScheduleNotification;
10
+ //# sourceMappingURL=ScheduleNotification.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ScheduleNotification.d.ts","sourceRoot":"","sources":["../../../../../src/NotificationManager/components/ScheduleNotification.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAWnD,OAAO,KAAK,EAAmD,oBAAoB,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AAE7H,UAAU,yBAAyB;IAC/B,eAAe,CAAC,EAAE,CAAC,GAAG,EAAE,kBAAkB,KAAK,IAAI,CAAC;IACpD,UAAU,CAAC,EAAE,oBAAoB,GAAG,IAAI,CAAC;IACzC,UAAU,CAAC,EAAE,MAAM,IAAI,CAAC;CAC3B;AAED,QAAA,MAAM,oBAAoB,GAAI,6CAA6C,yBAAyB,sBA8WnG,CAAC;AAEF,eAAe,oBAAoB,CAAC"}
@@ -0,0 +1,8 @@
1
+ export { default as GroupManagement } from './GroupManagement';
2
+ export { default as ScheduleNotification } from './ScheduleNotification';
3
+ export { default as JobManagement } from './JobManagement';
4
+ export { default as GroupSelector } from './shared/GroupSelector';
5
+ export { default as StatusBadge } from './shared/StatusBadge';
6
+ export { default as DateTimePicker } from './shared/DateTimePicker';
7
+ export { default as NotificationBuilderForm } from './shared/NotificationBuilderForm';
8
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/NotificationManager/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AACzE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC9D,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,uBAAuB,EAAE,MAAM,kCAAkC,CAAC"}
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ import type { FocusPositionProps } from '../../../types';
3
+ interface DateTimePickerProps {
4
+ value: Date;
5
+ onChange: (date: Date) => void;
6
+ label?: string;
7
+ minDate?: Date;
8
+ onFocusPosition?: (pos: FocusPositionProps) => void;
9
+ }
10
+ declare const DateTimePicker: ({ value, onChange, label, onFocusPosition }: DateTimePickerProps) => React.JSX.Element;
11
+ export default DateTimePicker;
12
+ //# sourceMappingURL=DateTimePicker.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DateTimePicker.d.ts","sourceRoot":"","sources":["../../../../../../src/NotificationManager/components/shared/DateTimePicker.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAEzD,UAAU,mBAAmB;IACzB,KAAK,EAAE,IAAI,CAAC;IACZ,QAAQ,EAAE,CAAC,IAAI,EAAE,IAAI,KAAK,IAAI,CAAC;IAC/B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,IAAI,CAAC;IACf,eAAe,CAAC,EAAE,CAAC,GAAG,EAAE,kBAAkB,KAAK,IAAI,CAAC;CACvD;AAED,QAAA,MAAM,cAAc,GAAI,6CAA6C,mBAAmB,sBA+EvF,CAAC;AAEF,eAAe,cAAc,CAAC"}
@@ -0,0 +1,16 @@
1
+ import React from 'react';
2
+ import type { NotificationGroupProps, FocusPositionProps } from '../../../types';
3
+ interface GroupSelectorProps {
4
+ visible: boolean;
5
+ onClose: () => void;
6
+ onSelectGroup: (group: NotificationGroupProps) => void;
7
+ groups: NotificationGroupProps[];
8
+ loading?: boolean;
9
+ selectedGroup?: NotificationGroupProps | null;
10
+ showCustomOption?: boolean;
11
+ customGroup?: NotificationGroupProps;
12
+ onFocusPosition?: (pos: FocusPositionProps) => void;
13
+ }
14
+ declare const GroupSelector: ({ visible, onClose, onSelectGroup, groups, loading, selectedGroup, showCustomOption, customGroup }: GroupSelectorProps) => React.JSX.Element | null;
15
+ export default GroupSelector;
16
+ //# sourceMappingURL=GroupSelector.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GroupSelector.d.ts","sourceRoot":"","sources":["../../../../../../src/NotificationManager/components/shared/GroupSelector.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,KAAK,EAAE,sBAAsB,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAEjF,UAAU,kBAAkB;IACxB,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,aAAa,EAAE,CAAC,KAAK,EAAE,sBAAsB,KAAK,IAAI,CAAC;IACvD,MAAM,EAAE,sBAAsB,EAAE,CAAC;IACjC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,aAAa,CAAC,EAAE,sBAAsB,GAAG,IAAI,CAAC;IAC9C,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,WAAW,CAAC,EAAE,sBAAsB,CAAC;IACrC,eAAe,CAAC,EAAE,CAAC,GAAG,EAAE,kBAAkB,KAAK,IAAI,CAAC;CACvD;AAED,QAAA,MAAM,aAAa,GAAI,oGASpB,kBAAkB,6BAoGpB,CAAC;AAEF,eAAe,aAAa,CAAC"}
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ import type { PlayerNotificationProps, FocusPositionProps } from '../../../types';
3
+ interface NotificationBuilderFormProps {
4
+ notification: Partial<PlayerNotificationProps>;
5
+ onChange: (notification: Partial<PlayerNotificationProps>) => void;
6
+ onFocusPosition?: (pos: FocusPositionProps) => void;
7
+ showPreview?: boolean;
8
+ showType?: boolean;
9
+ }
10
+ declare const NotificationBuilderForm: ({ notification, onChange, onFocusPosition, showPreview, showType }: NotificationBuilderFormProps) => React.JSX.Element;
11
+ export default NotificationBuilderForm;
12
+ //# sourceMappingURL=NotificationBuilderForm.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NotificationBuilderForm.d.ts","sourceRoot":"","sources":["../../../../../../src/NotificationManager/components/shared/NotificationBuilderForm.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAO5D,OAAO,KAAK,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAElF,UAAU,4BAA4B;IAClC,YAAY,EAAE,OAAO,CAAC,uBAAuB,CAAC,CAAC;IAC/C,QAAQ,EAAE,CAAC,YAAY,EAAE,OAAO,CAAC,uBAAuB,CAAC,KAAK,IAAI,CAAC;IACnE,eAAe,CAAC,EAAE,CAAC,GAAG,EAAE,kBAAkB,KAAK,IAAI,CAAC;IACpD,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB;AAQD,QAAA,MAAM,uBAAuB,GAAI,oEAM9B,4BAA4B,sBA4U9B,CAAC;AAEF,eAAe,uBAAuB,CAAC"}
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import type { NotificationJobStatus } from '../../../types';
3
+ interface StatusBadgeProps {
4
+ status: NotificationJobStatus;
5
+ }
6
+ declare const StatusBadge: ({ status }: StatusBadgeProps) => React.JSX.Element;
7
+ export default StatusBadge;
8
+ //# sourceMappingURL=StatusBadge.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"StatusBadge.d.ts","sourceRoot":"","sources":["../../../../../../src/NotificationManager/components/shared/StatusBadge.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,gBAAgB,CAAC;AAE5D,UAAU,gBAAgB;IACtB,MAAM,EAAE,qBAAqB,CAAC;CACjC;AAED,QAAA,MAAM,WAAW,GAAI,YAAY,gBAAgB,sBA4DhD,CAAC;AAEF,eAAe,WAAW,CAAC"}
@@ -18,4 +18,5 @@ type NotificationManagerProps = {
18
18
  declare const NotificationManager: ({ player_ids, me, float, header_style, footer_style, notification_type, default_path_name, onFocusPosition, default_params, onComplete, onClose }: NotificationManagerProps) => React.JSX.Element;
19
19
  export default NotificationManager;
20
20
  export { NotificationApi, NotificationHelpers };
21
+ export { default as NotificationManagerTabs } from './NotificationManagerTabs';
21
22
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/NotificationManager/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAC5D,OAAO,EAAiD,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAG7F,OAAO,EAAE,eAAe,EAAE,mBAAmB,EAAE,MAAM,OAAO,CAAC;AAC7D,OAAO,KAAK,EAAE,uBAAuB,EAAE,aAAa,EAA0B,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAKnH,KAAK,wBAAwB,GAAG;IAC5B,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,EAAE,EAAE,aAAa,CAAC;IAClB,YAAY,CAAC,EAAC,SAAS,CAAC;IACxB,YAAY,CAAC,EAAC,SAAS,CAAC;IACxB,KAAK,CAAC,EAAC,OAAO,CAAC;IACf,iBAAiB,CAAC,EAAE,qBAAqB,GAAG,2BAA2B,GAAG,sBAAsB,CAAC;IACjG,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,eAAe,CAAC,EAAC,CAAC,GAAG,EAAC,kBAAkB,KAAK,IAAI,CAAC;IAClD,cAAc,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACxC,UAAU,CAAC,EAAE,CAAC,YAAY,EAAE,uBAAuB,KAAK,IAAI,CAAC;IAC7D,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACxB,CAAC;AAUF,QAAA,MAAM,mBAAmB,GAAI,mJAY1B,wBAAwB,sBAq2B1B,CAAC;AAEF,eAAe,mBAAmB,CAAC;AACnC,OAAO,EAAE,eAAe,EAAE,mBAAmB,EAAE,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/NotificationManager/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAC5D,OAAO,EAAiD,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAG7F,OAAO,EAAE,eAAe,EAAE,mBAAmB,EAAE,MAAM,OAAO,CAAC;AAC7D,OAAO,KAAK,EAAE,uBAAuB,EAAE,aAAa,EAA0B,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAKnH,KAAK,wBAAwB,GAAG;IAC5B,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,EAAE,EAAE,aAAa,CAAC;IAClB,YAAY,CAAC,EAAC,SAAS,CAAC;IACxB,YAAY,CAAC,EAAC,SAAS,CAAC;IACxB,KAAK,CAAC,EAAC,OAAO,CAAC;IACf,iBAAiB,CAAC,EAAE,qBAAqB,GAAG,2BAA2B,GAAG,sBAAsB,CAAC;IACjG,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,eAAe,CAAC,EAAC,CAAC,GAAG,EAAC,kBAAkB,KAAK,IAAI,CAAC;IAClD,cAAc,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACxC,UAAU,CAAC,EAAE,CAAC,YAAY,EAAE,uBAAuB,KAAK,IAAI,CAAC;IAC7D,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACxB,CAAC;AAUF,QAAA,MAAM,mBAAmB,GAAI,mJAY1B,wBAAwB,sBAu3B1B,CAAC;AAEF,eAAe,mBAAmB,CAAC;AACnC,OAAO,EAAE,eAAe,EAAE,mBAAmB,EAAE,CAAC;AAChD,OAAO,EAAE,OAAO,IAAI,uBAAuB,EAAE,MAAM,2BAA2B,CAAC"}
@@ -71,7 +71,8 @@ import BettorBotDashboard from './BettorBot';
71
71
  import NotificationManager from './NotificationManager';
72
72
  import { NotificationApi, NotificationHelpers } from './NotificationManager/api';
73
73
  import BetRouter from './BetRouter/index';
74
+ import NotificationManagerTabs from './NotificationManager/NotificationManagerTabs';
74
75
  export { LivePriceChart, BaseLineChart, TradeChartAdapter } from './Charts';
75
76
  export type { Trade, TradeChartOptions, TimeSeriesPoint, TimeSeriesData, LivePriceChartProps } from './Charts';
76
- 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 };
77
+ export { Authenticator, Observer, MyAction, CreateEmbed, ReferralCodeManager, NotificationManagerTabs, 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 };
77
78
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.tsx"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "be-components",
3
- "version": "7.6.3",
3
+ "version": "7.6.5",
4
4
  "description": "Components for BettorEdge Apps",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",
@@ -63,8 +63,8 @@
63
63
  "@types/draft-js": "^0.11.18",
64
64
  "@types/is-url": "^1.2.32",
65
65
  "@types/jest": "^29.5.5",
66
- "@types/react": "~19.0.10",
67
- "@types/react-dom": "^19.0.2",
66
+ "@types/react": "~19.1.10",
67
+ "@types/react-dom": "~19.1.7",
68
68
  "commitlint": "^17.0.2",
69
69
  "del-cli": "^5.1.0",
70
70
  "eslint": "^8.51.0",
@@ -73,14 +73,14 @@
73
73
  "html-webpack-plugin": "^5.6.3",
74
74
  "jest": "^29.7.0",
75
75
  "prettier": "^3.0.3",
76
- "react": "19.0.0",
77
- "react-native": "0.79.5",
76
+ "react": "19.1.0",
77
+ "react-native": "0.81.5",
78
78
  "react-native-builder-bob": "^0.23.2",
79
79
  "release-it": "^15.0.0",
80
- "typescript": "~5.8.3"
80
+ "typescript": "~5.9.2"
81
81
  },
82
82
  "resolutions": {
83
- "@types/react": "^18.2.44"
83
+ "@types/react": "~19.1.10"
84
84
  },
85
85
  "peerDependencies": {
86
86
  "react": "*",
@@ -170,36 +170,36 @@
170
170
  "@microsoft/clarity": "^1.0.0",
171
171
  "@microsoft/react-native-clarity": "^4.3.1",
172
172
  "@paypal/react-paypal-js": "^8.3.0",
173
- "@react-native-async-storage/async-storage": "2.1.2",
174
- "@react-native-community/datetimepicker": "^8.4.5",
175
- "@react-native-community/slider": "^5.0.1",
173
+ "@react-native-async-storage/async-storage": "2.2.0",
174
+ "@react-native-community/datetimepicker": "8.4.4",
175
+ "@react-native-community/slider": "5.0.1",
176
176
  "@react-spring/web": "^9.7.3",
177
177
  "@types/uuid": "^9.0.8",
178
178
  "axios": "^1.6.8",
179
179
  "buffer": "^6.0.3",
180
180
  "draft-js": "^0.11.7",
181
- "expo": "^53.0.20",
182
- "expo-application": "^6.1.4",
183
- "expo-asset": "~11.1.5",
184
- "expo-av": "~15.1.4",
185
- "expo-camera": "~16.1.6",
186
- "expo-clipboard": "~7.1.4",
187
- "expo-constants": "^17.1.7",
188
- "expo-contacts": "~14.2.4",
189
- "expo-crypto": "~14.1.4",
190
- "expo-dev-client": "~5.2.4",
191
- "expo-device": "^7.1.4",
192
- "expo-font": "~13.3.1",
193
- "expo-image-picker": "~16.1.4",
194
- "expo-linear-gradient": "~14.1.4",
195
- "expo-localization": "^16.1.5",
196
- "expo-location": "~18.1.5",
197
- "expo-notifications": "~0.31.2",
198
- "expo-sharing": "~13.1.5",
199
- "expo-sms": "~13.1.4",
200
- "expo-status-bar": "~2.2.3",
201
- "expo-updates": "~0.28.13",
202
- "expo-web-browser": "~14.2.0",
181
+ "expo": "~54.0.0",
182
+ "expo-application": "~7.0.8",
183
+ "expo-asset": "~12.0.12",
184
+ "expo-av": "~16.0.8",
185
+ "expo-camera": "~17.0.10",
186
+ "expo-clipboard": "~8.0.8",
187
+ "expo-constants": "~18.0.13",
188
+ "expo-contacts": "~15.0.11",
189
+ "expo-crypto": "~15.0.8",
190
+ "expo-dev-client": "~6.0.20",
191
+ "expo-device": "~8.0.10",
192
+ "expo-font": "~14.0.10",
193
+ "expo-image-picker": "~17.0.10",
194
+ "expo-linear-gradient": "~15.0.8",
195
+ "expo-localization": "~17.0.8",
196
+ "expo-location": "~19.0.8",
197
+ "expo-notifications": "~0.32.16",
198
+ "expo-sharing": "~14.0.8",
199
+ "expo-sms": "~14.0.8",
200
+ "expo-status-bar": "~3.0.9",
201
+ "expo-updates": "~29.0.16",
202
+ "expo-web-browser": "~15.0.10",
203
203
  "install-expo-modules": "latest",
204
204
  "is-url": "^1.2.4",
205
205
  "moment-mini": "^2.29.4",
@@ -209,15 +209,16 @@
209
209
  "react-datepicker": "^8.7.0",
210
210
  "react-datetime-picker": "^6.0.1",
211
211
  "react-device-detect": "^2.2.3",
212
- "react-dom": "19.0.0",
212
+ "react-dom": "19.1.0",
213
213
  "react-gifted-charts": "^0.0.12",
214
214
  "react-native-base64": "^0.2.1",
215
215
  "react-native-gifted-charts": "^1.4.65",
216
- "react-native-svg": "15.11.2",
216
+ "react-native-svg": "15.12.1",
217
217
  "react-native-uuid": "^2.0.3",
218
+ "react-native-web": "^0.21.0",
218
219
  "react-native-web-linear-gradient": "^1.1.2",
219
220
  "react-native-web-swiper": "^2.2.4",
220
- "react-native-webview": "13.13.5",
221
+ "react-native-webview": "13.15.0",
221
222
  "react-qr-code": "^2.0.15",
222
223
  "styled-components": "^6.1.16",
223
224
  "us-bank-account-validator": "^1.0.0",
@@ -9,7 +9,7 @@ import Pagination from './Pagination';
9
9
  interface AutoPageFlatListProps<T> {
10
10
  data: T[];
11
11
  reset_key:string,
12
- renderItem: ({ item, index }: { item: T, index:number }) => JSX.Element;
12
+ renderItem: ({ item, index }: { item: T, index:number }) => any;
13
13
  horizontal?: boolean;
14
14
  time_on_page?: number; // seconds
15
15
  itemHeight?: number; // required for vertical paging