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
@@ -13,6 +13,7 @@ export namespace NotificationHelpers {
13
13
  sq_comp_id?: undefined;
14
14
  trivia_id?: undefined;
15
15
  content_id?: undefined;
16
+ content_type?: undefined;
16
17
  contest_type?: undefined;
17
18
  player_filter_id?: undefined;
18
19
  fund_id?: undefined;
@@ -46,6 +47,7 @@ export namespace NotificationHelpers {
46
47
  sq_comp_id?: undefined;
47
48
  trivia_id?: undefined;
48
49
  content_id?: undefined;
50
+ content_type?: undefined;
49
51
  contest_type?: undefined;
50
52
  player_filter_id?: undefined;
51
53
  fund_id?: undefined;
@@ -79,6 +81,7 @@ export namespace NotificationHelpers {
79
81
  sq_comp_id?: undefined;
80
82
  trivia_id?: undefined;
81
83
  content_id?: undefined;
84
+ content_type?: undefined;
82
85
  contest_type?: undefined;
83
86
  player_filter_id?: undefined;
84
87
  fund_id?: undefined;
@@ -112,6 +115,7 @@ export namespace NotificationHelpers {
112
115
  sq_comp_id?: undefined;
113
116
  trivia_id?: undefined;
114
117
  content_id?: undefined;
118
+ content_type?: undefined;
115
119
  contest_type?: undefined;
116
120
  player_filter_id?: undefined;
117
121
  fund_id?: undefined;
@@ -145,6 +149,7 @@ export namespace NotificationHelpers {
145
149
  sq_comp_id?: undefined;
146
150
  trivia_id?: undefined;
147
151
  content_id?: undefined;
152
+ content_type?: undefined;
148
153
  contest_type?: undefined;
149
154
  player_filter_id?: undefined;
150
155
  fund_id?: undefined;
@@ -178,6 +183,7 @@ export namespace NotificationHelpers {
178
183
  sq_comp_id?: undefined;
179
184
  trivia_id?: undefined;
180
185
  content_id?: undefined;
186
+ content_type?: undefined;
181
187
  contest_type?: undefined;
182
188
  player_filter_id?: undefined;
183
189
  fund_id?: undefined;
@@ -211,6 +217,7 @@ export namespace NotificationHelpers {
211
217
  season_id?: undefined;
212
218
  trivia_id?: undefined;
213
219
  content_id?: undefined;
220
+ content_type?: undefined;
214
221
  contest_type?: undefined;
215
222
  player_filter_id?: undefined;
216
223
  fund_id?: undefined;
@@ -244,6 +251,7 @@ export namespace NotificationHelpers {
244
251
  season_id?: undefined;
245
252
  sq_comp_id?: undefined;
246
253
  content_id?: undefined;
254
+ content_type?: undefined;
247
255
  contest_type?: undefined;
248
256
  player_filter_id?: undefined;
249
257
  fund_id?: undefined;
@@ -269,6 +277,7 @@ export namespace NotificationHelpers {
269
277
  path_name: string;
270
278
  params: {
271
279
  content_id: string;
280
+ content_type: string;
272
281
  contest_id?: undefined;
273
282
  rebate_id?: undefined;
274
283
  bracket_competition_id?: undefined;
@@ -311,6 +320,7 @@ export namespace NotificationHelpers {
311
320
  sq_comp_id?: undefined;
312
321
  trivia_id?: undefined;
313
322
  content_id?: undefined;
323
+ content_type?: undefined;
314
324
  player_filter_id?: undefined;
315
325
  fund_id?: undefined;
316
326
  hedge_id?: undefined;
@@ -344,6 +354,7 @@ export namespace NotificationHelpers {
344
354
  sq_comp_id?: undefined;
345
355
  trivia_id?: undefined;
346
356
  content_id?: undefined;
357
+ content_type?: undefined;
347
358
  contest_type?: undefined;
348
359
  fund_id?: undefined;
349
360
  hedge_id?: undefined;
@@ -377,6 +388,7 @@ export namespace NotificationHelpers {
377
388
  sq_comp_id?: undefined;
378
389
  trivia_id?: undefined;
379
390
  content_id?: undefined;
391
+ content_type?: undefined;
380
392
  contest_type?: undefined;
381
393
  player_filter_id?: undefined;
382
394
  hedge_id?: undefined;
@@ -410,6 +422,7 @@ export namespace NotificationHelpers {
410
422
  sq_comp_id?: undefined;
411
423
  trivia_id?: undefined;
412
424
  content_id?: undefined;
425
+ content_type?: undefined;
413
426
  contest_type?: undefined;
414
427
  player_filter_id?: undefined;
415
428
  fund_id?: undefined;
@@ -443,6 +456,7 @@ export namespace NotificationHelpers {
443
456
  sq_comp_id?: undefined;
444
457
  trivia_id?: undefined;
445
458
  content_id?: undefined;
459
+ content_type?: undefined;
446
460
  contest_type?: undefined;
447
461
  player_filter_id?: undefined;
448
462
  fund_id?: undefined;
@@ -479,6 +493,7 @@ export namespace NotificationHelpers {
479
493
  sq_comp_id?: undefined;
480
494
  trivia_id?: undefined;
481
495
  content_id?: undefined;
496
+ content_type?: undefined;
482
497
  player_filter_id?: undefined;
483
498
  fund_id?: undefined;
484
499
  hedge_id?: undefined;
@@ -509,6 +524,7 @@ export namespace NotificationHelpers {
509
524
  sq_comp_id?: undefined;
510
525
  trivia_id?: undefined;
511
526
  content_id?: undefined;
527
+ content_type?: undefined;
512
528
  contest_type?: undefined;
513
529
  player_filter_id?: undefined;
514
530
  fund_id?: undefined;
@@ -542,6 +558,7 @@ export namespace NotificationHelpers {
542
558
  sq_comp_id?: undefined;
543
559
  trivia_id?: undefined;
544
560
  content_id?: undefined;
561
+ content_type?: undefined;
545
562
  contest_type?: undefined;
546
563
  player_filter_id?: undefined;
547
564
  fund_id?: undefined;
@@ -575,6 +592,7 @@ export namespace NotificationHelpers {
575
592
  sq_comp_id?: undefined;
576
593
  trivia_id?: undefined;
577
594
  content_id?: undefined;
595
+ content_type?: undefined;
578
596
  contest_type?: undefined;
579
597
  player_filter_id?: undefined;
580
598
  fund_id?: undefined;
@@ -608,6 +626,7 @@ export namespace NotificationHelpers {
608
626
  sq_comp_id?: undefined;
609
627
  trivia_id?: undefined;
610
628
  content_id?: undefined;
629
+ content_type?: undefined;
611
630
  contest_type?: undefined;
612
631
  player_filter_id?: undefined;
613
632
  fund_id?: undefined;
@@ -641,6 +660,7 @@ export namespace NotificationHelpers {
641
660
  sq_comp_id?: undefined;
642
661
  trivia_id?: undefined;
643
662
  content_id?: undefined;
663
+ content_type?: undefined;
644
664
  contest_type?: undefined;
645
665
  player_filter_id?: undefined;
646
666
  fund_id?: undefined;
@@ -674,6 +694,7 @@ export namespace NotificationHelpers {
674
694
  sq_comp_id?: undefined;
675
695
  trivia_id?: undefined;
676
696
  content_id?: undefined;
697
+ content_type?: undefined;
677
698
  contest_type?: undefined;
678
699
  player_filter_id?: undefined;
679
700
  fund_id?: undefined;
@@ -707,6 +728,7 @@ export namespace NotificationHelpers {
707
728
  sq_comp_id?: undefined;
708
729
  trivia_id?: undefined;
709
730
  content_id?: undefined;
731
+ content_type?: undefined;
710
732
  contest_type?: undefined;
711
733
  player_filter_id?: undefined;
712
734
  fund_id?: undefined;
@@ -740,6 +762,7 @@ export namespace NotificationHelpers {
740
762
  sq_comp_id?: undefined;
741
763
  trivia_id?: undefined;
742
764
  content_id?: undefined;
765
+ content_type?: undefined;
743
766
  contest_type?: undefined;
744
767
  player_filter_id?: undefined;
745
768
  fund_id?: undefined;
@@ -773,6 +796,7 @@ export namespace NotificationHelpers {
773
796
  sq_comp_id?: undefined;
774
797
  trivia_id?: undefined;
775
798
  content_id?: undefined;
799
+ content_type?: undefined;
776
800
  contest_type?: undefined;
777
801
  player_filter_id?: undefined;
778
802
  fund_id?: undefined;
@@ -792,13 +816,62 @@ export namespace NotificationHelpers {
792
816
  };
793
817
  requiredParams: string[];
794
818
  primary: boolean;
819
+ } | {
820
+ label: string;
821
+ path_name: string;
822
+ params: {
823
+ content_id: string;
824
+ contest_id?: undefined;
825
+ rebate_id?: undefined;
826
+ bracket_competition_id?: undefined;
827
+ mode?: undefined;
828
+ competition_id?: undefined;
829
+ season_id?: undefined;
830
+ sq_comp_id?: undefined;
831
+ trivia_id?: undefined;
832
+ content_type?: undefined;
833
+ contest_type?: undefined;
834
+ player_filter_id?: undefined;
835
+ fund_id?: undefined;
836
+ hedge_id?: undefined;
837
+ league_id?: undefined;
838
+ market_id?: undefined;
839
+ side_type?: undefined;
840
+ side_id?: undefined;
841
+ team_id?: undefined;
842
+ flash_campaign_id?: undefined;
843
+ post_id?: undefined;
844
+ campaign_id?: undefined;
845
+ player_id?: undefined;
846
+ company_id?: undefined;
847
+ group_id?: undefined;
848
+ order_id?: undefined;
849
+ podcast_id?: undefined;
850
+ };
851
+ requiredParams: string[];
852
+ primary: boolean;
795
853
  })[];
796
854
  }
797
855
  export namespace NotificationApi {
798
856
  function setEnvironment(): void;
799
857
  function getPlayersByPlayerIds(player_ids: any): Promise<any>;
800
- function broadcastNotifications(player_notification: any, player_ids: any): Promise<any>;
801
- function getActiveNotificationGroups(): Promise<any>;
858
+ function broadcastNotifications(player_notification: any, player_ids: any, notification_group_id: any): Promise<any>;
859
+ function getActiveNotificationGroups(limit: any, offset: any): Promise<any>;
802
860
  function getNotificationGroupMembersByGroup(notification_group_id: any): Promise<any>;
861
+ function getAllNotificationGroups(limit: any, offset: any, search: any): Promise<any>;
862
+ function getNotificationGroupsByStatus(status: any, limit: any, offset: any, search: any): Promise<any>;
863
+ function getNotificationGroupById(notification_group_id: any): Promise<any>;
864
+ function createNotificationGroup(notification_group: any): Promise<any>;
865
+ function updateNotificationGroup(notification_group: any): Promise<any>;
866
+ function inactivateNotificationGroup(notification_group_id: any): Promise<any>;
867
+ function updateGroupMembers(notification_group_id: any, player_ids: any): Promise<any>;
868
+ function getAllNotificationJobs(limit: any, offset: any): Promise<any>;
869
+ function getNotificationJobsByStatus(status: any, limit: any, offset: any): Promise<any>;
870
+ function getNotificationJobsByGroup(notification_group_id: any): Promise<any>;
871
+ function getNotificationJobById(notification_job_id: any): Promise<any>;
872
+ function createNotificationJob(notification_job: any): Promise<any>;
873
+ function updateNotificationJob(notification_job: any): Promise<any>;
874
+ function finalizeNotificationJob(notification_job_id: any): Promise<any>;
875
+ function cancelNotificationJob(notification_job_id: any): Promise<any>;
803
876
  }
804
877
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../commonjs/NotificationManager/api/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAyYkB,gCAGf;IAIsB,8DAatB;IAIuB,yFAYvB;IAC4B,qDAO5B;IACmC,sFAOnC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../commonjs/NotificationManager/api/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA0YkB,gCAGf;IAIsB,8DAatB;IAOuB,qHAgBvB;IAC4B,4EAa5B;IACmC,sFAOnC;IAMyB,sFAazB;IAI8B,wGAa9B;IAIyB,4EAQzB;IAIwB,wEAUxB;IAIwB,wEAUxB;IAI4B,+EAQ5B;IAImB,uFAcnB;IAMuB,uEAYvB;IAI4B,yFAY5B;IAI2B,8EAQ3B;IAIuB,wEAQvB;IAIsB,oEAUtB;IAIsB,oEAUtB;IAIwB,yEAQxB;IAIsB,uEAQtB"}
@@ -0,0 +1,6 @@
1
+ export const __esModule: boolean;
2
+ export default GroupManagement;
3
+ declare function GroupManagement({ onFocusPosition }: {
4
+ onFocusPosition: any;
5
+ }): any;
6
+ //# sourceMappingURL=GroupManagement.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GroupManagement.d.ts","sourceRoot":"","sources":["../../../../../commonjs/NotificationManager/components/GroupManagement.js"],"names":[],"mappings":";;AAuBA;;QAo/BC"}
@@ -0,0 +1,7 @@
1
+ export const __esModule: boolean;
2
+ export default JobManagement;
3
+ declare function JobManagement({ onEditJob, onFocusPosition }: {
4
+ onEditJob: any;
5
+ onFocusPosition: any;
6
+ }): any;
7
+ //# sourceMappingURL=JobManagement.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"JobManagement.d.ts","sourceRoot":"","sources":["../../../../../commonjs/NotificationManager/components/JobManagement.js"],"names":[],"mappings":";;AAwCA;;;QAouBC"}
@@ -0,0 +1,8 @@
1
+ export const __esModule: boolean;
2
+ export default ScheduleNotification;
3
+ declare function ScheduleNotification({ onFocusPosition, editingJob, onJobSaved }: {
4
+ onFocusPosition: any;
5
+ editingJob: any;
6
+ onJobSaved: any;
7
+ }): any;
8
+ //# sourceMappingURL=ScheduleNotification.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ScheduleNotification.d.ts","sourceRoot":"","sources":["../../../../../commonjs/NotificationManager/components/ScheduleNotification.js"],"names":[],"mappings":";;AAmBA;;;;QAiYC"}
@@ -0,0 +1,9 @@
1
+ export const __esModule: boolean;
2
+ export const DateTimePicker: any;
3
+ export const GroupManagement: any;
4
+ export const GroupSelector: any;
5
+ export const JobManagement: any;
6
+ export const NotificationBuilderForm: any;
7
+ export const ScheduleNotification: any;
8
+ export const StatusBadge: any;
9
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../commonjs/NotificationManager/components/index.js"],"names":[],"mappings":""}
@@ -0,0 +1,9 @@
1
+ export const __esModule: boolean;
2
+ export default DateTimePicker;
3
+ declare function DateTimePicker({ value, onChange, label, onFocusPosition }: {
4
+ value: any;
5
+ onChange: any;
6
+ label: any;
7
+ onFocusPosition: any;
8
+ }): any;
9
+ //# sourceMappingURL=DateTimePicker.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DateTimePicker.d.ts","sourceRoot":"","sources":["../../../../../../commonjs/NotificationManager/components/shared/DateTimePicker.js"],"names":[],"mappings":";;AASA;;;;;QAqGC"}
@@ -0,0 +1,13 @@
1
+ export const __esModule: boolean;
2
+ export default GroupSelector;
3
+ declare function GroupSelector({ visible, onClose, onSelectGroup, groups, loading, selectedGroup, showCustomOption, customGroup }: {
4
+ visible: any;
5
+ onClose: any;
6
+ onSelectGroup: any;
7
+ groups: any;
8
+ loading?: boolean | undefined;
9
+ selectedGroup: any;
10
+ showCustomOption?: boolean | undefined;
11
+ customGroup: any;
12
+ }): any;
13
+ //# sourceMappingURL=GroupSelector.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GroupSelector.d.ts","sourceRoot":"","sources":["../../../../../../commonjs/NotificationManager/components/shared/GroupSelector.js"],"names":[],"mappings":";;AAWA;;;;;;;;;QAiLC"}
@@ -0,0 +1,10 @@
1
+ export const __esModule: boolean;
2
+ export default NotificationBuilderForm;
3
+ declare function NotificationBuilderForm({ notification, onChange, onFocusPosition, showPreview, showType }: {
4
+ notification: any;
5
+ onChange: any;
6
+ onFocusPosition: any;
7
+ showPreview?: boolean | undefined;
8
+ showType?: boolean | undefined;
9
+ }): any;
10
+ //# sourceMappingURL=NotificationBuilderForm.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NotificationBuilderForm.d.ts","sourceRoot":"","sources":["../../../../../../commonjs/NotificationManager/components/shared/NotificationBuilderForm.js"],"names":[],"mappings":";;AAyBA;;;;;;QAieC"}
@@ -0,0 +1,6 @@
1
+ export const __esModule: boolean;
2
+ export default StatusBadge;
3
+ declare function StatusBadge({ status }: {
4
+ status: any;
5
+ }): any;
6
+ //# sourceMappingURL=StatusBadge.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"StatusBadge.d.ts","sourceRoot":"","sources":["../../../../../../commonjs/NotificationManager/components/shared/StatusBadge.js"],"names":[],"mappings":";;AAUA;;QAwDC"}
@@ -2,9 +2,24 @@ export const __esModule: boolean;
2
2
  export const NotificationApi: {
3
3
  setEnvironment: () => void;
4
4
  getPlayersByPlayerIds: (player_ids: any) => Promise<any>;
5
- broadcastNotifications: (player_notification: any, player_ids: any) => Promise<any>;
6
- getActiveNotificationGroups: () => Promise<any>;
5
+ broadcastNotifications: (player_notification: any, player_ids: any, notification_group_id: any) => Promise<any>;
6
+ getActiveNotificationGroups: (limit: any, offset: any) => Promise<any>;
7
7
  getNotificationGroupMembersByGroup: (notification_group_id: any) => Promise<any>;
8
+ getAllNotificationGroups: (limit: any, offset: any, search: any) => Promise<any>;
9
+ getNotificationGroupsByStatus: (status: any, limit: any, offset: any, search: any) => Promise<any>;
10
+ getNotificationGroupById: (notification_group_id: any) => Promise<any>;
11
+ createNotificationGroup: (notification_group: any) => Promise<any>;
12
+ updateNotificationGroup: (notification_group: any) => Promise<any>;
13
+ inactivateNotificationGroup: (notification_group_id: any) => Promise<any>;
14
+ updateGroupMembers: (notification_group_id: any, player_ids: any) => Promise<any>;
15
+ getAllNotificationJobs: (limit: any, offset: any) => Promise<any>;
16
+ getNotificationJobsByStatus: (status: any, limit: any, offset: any) => Promise<any>;
17
+ getNotificationJobsByGroup: (notification_group_id: any) => Promise<any>;
18
+ getNotificationJobById: (notification_job_id: any) => Promise<any>;
19
+ createNotificationJob: (notification_job: any) => Promise<any>;
20
+ updateNotificationJob: (notification_job: any) => Promise<any>;
21
+ finalizeNotificationJob: (notification_job_id: any) => Promise<any>;
22
+ cancelNotificationJob: (notification_job_id: any) => Promise<any>;
8
23
  };
9
24
  export const NotificationHelpers: {
10
25
  app_paths: ({
@@ -20,6 +35,7 @@ export const NotificationHelpers: {
20
35
  sq_comp_id?: undefined;
21
36
  trivia_id?: undefined;
22
37
  content_id?: undefined;
38
+ content_type?: undefined;
23
39
  contest_type?: undefined;
24
40
  player_filter_id?: undefined;
25
41
  fund_id?: undefined;
@@ -53,6 +69,7 @@ export const NotificationHelpers: {
53
69
  sq_comp_id?: undefined;
54
70
  trivia_id?: undefined;
55
71
  content_id?: undefined;
72
+ content_type?: undefined;
56
73
  contest_type?: undefined;
57
74
  player_filter_id?: undefined;
58
75
  fund_id?: undefined;
@@ -86,6 +103,7 @@ export const NotificationHelpers: {
86
103
  sq_comp_id?: undefined;
87
104
  trivia_id?: undefined;
88
105
  content_id?: undefined;
106
+ content_type?: undefined;
89
107
  contest_type?: undefined;
90
108
  player_filter_id?: undefined;
91
109
  fund_id?: undefined;
@@ -119,6 +137,7 @@ export const NotificationHelpers: {
119
137
  sq_comp_id?: undefined;
120
138
  trivia_id?: undefined;
121
139
  content_id?: undefined;
140
+ content_type?: undefined;
122
141
  contest_type?: undefined;
123
142
  player_filter_id?: undefined;
124
143
  fund_id?: undefined;
@@ -152,6 +171,7 @@ export const NotificationHelpers: {
152
171
  sq_comp_id?: undefined;
153
172
  trivia_id?: undefined;
154
173
  content_id?: undefined;
174
+ content_type?: undefined;
155
175
  contest_type?: undefined;
156
176
  player_filter_id?: undefined;
157
177
  fund_id?: undefined;
@@ -185,6 +205,7 @@ export const NotificationHelpers: {
185
205
  sq_comp_id?: undefined;
186
206
  trivia_id?: undefined;
187
207
  content_id?: undefined;
208
+ content_type?: undefined;
188
209
  contest_type?: undefined;
189
210
  player_filter_id?: undefined;
190
211
  fund_id?: undefined;
@@ -218,6 +239,7 @@ export const NotificationHelpers: {
218
239
  season_id?: undefined;
219
240
  trivia_id?: undefined;
220
241
  content_id?: undefined;
242
+ content_type?: undefined;
221
243
  contest_type?: undefined;
222
244
  player_filter_id?: undefined;
223
245
  fund_id?: undefined;
@@ -251,6 +273,7 @@ export const NotificationHelpers: {
251
273
  season_id?: undefined;
252
274
  sq_comp_id?: undefined;
253
275
  content_id?: undefined;
276
+ content_type?: undefined;
254
277
  contest_type?: undefined;
255
278
  player_filter_id?: undefined;
256
279
  fund_id?: undefined;
@@ -276,6 +299,7 @@ export const NotificationHelpers: {
276
299
  path_name: string;
277
300
  params: {
278
301
  content_id: string;
302
+ content_type: string;
279
303
  contest_id?: undefined;
280
304
  rebate_id?: undefined;
281
305
  bracket_competition_id?: undefined;
@@ -318,6 +342,7 @@ export const NotificationHelpers: {
318
342
  sq_comp_id?: undefined;
319
343
  trivia_id?: undefined;
320
344
  content_id?: undefined;
345
+ content_type?: undefined;
321
346
  player_filter_id?: undefined;
322
347
  fund_id?: undefined;
323
348
  hedge_id?: undefined;
@@ -351,6 +376,7 @@ export const NotificationHelpers: {
351
376
  sq_comp_id?: undefined;
352
377
  trivia_id?: undefined;
353
378
  content_id?: undefined;
379
+ content_type?: undefined;
354
380
  contest_type?: undefined;
355
381
  fund_id?: undefined;
356
382
  hedge_id?: undefined;
@@ -384,6 +410,7 @@ export const NotificationHelpers: {
384
410
  sq_comp_id?: undefined;
385
411
  trivia_id?: undefined;
386
412
  content_id?: undefined;
413
+ content_type?: undefined;
387
414
  contest_type?: undefined;
388
415
  player_filter_id?: undefined;
389
416
  hedge_id?: undefined;
@@ -417,6 +444,7 @@ export const NotificationHelpers: {
417
444
  sq_comp_id?: undefined;
418
445
  trivia_id?: undefined;
419
446
  content_id?: undefined;
447
+ content_type?: undefined;
420
448
  contest_type?: undefined;
421
449
  player_filter_id?: undefined;
422
450
  fund_id?: undefined;
@@ -450,6 +478,7 @@ export const NotificationHelpers: {
450
478
  sq_comp_id?: undefined;
451
479
  trivia_id?: undefined;
452
480
  content_id?: undefined;
481
+ content_type?: undefined;
453
482
  contest_type?: undefined;
454
483
  player_filter_id?: undefined;
455
484
  fund_id?: undefined;
@@ -486,6 +515,7 @@ export const NotificationHelpers: {
486
515
  sq_comp_id?: undefined;
487
516
  trivia_id?: undefined;
488
517
  content_id?: undefined;
518
+ content_type?: undefined;
489
519
  player_filter_id?: undefined;
490
520
  fund_id?: undefined;
491
521
  hedge_id?: undefined;
@@ -516,6 +546,7 @@ export const NotificationHelpers: {
516
546
  sq_comp_id?: undefined;
517
547
  trivia_id?: undefined;
518
548
  content_id?: undefined;
549
+ content_type?: undefined;
519
550
  contest_type?: undefined;
520
551
  player_filter_id?: undefined;
521
552
  fund_id?: undefined;
@@ -549,6 +580,7 @@ export const NotificationHelpers: {
549
580
  sq_comp_id?: undefined;
550
581
  trivia_id?: undefined;
551
582
  content_id?: undefined;
583
+ content_type?: undefined;
552
584
  contest_type?: undefined;
553
585
  player_filter_id?: undefined;
554
586
  fund_id?: undefined;
@@ -582,6 +614,7 @@ export const NotificationHelpers: {
582
614
  sq_comp_id?: undefined;
583
615
  trivia_id?: undefined;
584
616
  content_id?: undefined;
617
+ content_type?: undefined;
585
618
  contest_type?: undefined;
586
619
  player_filter_id?: undefined;
587
620
  fund_id?: undefined;
@@ -615,6 +648,7 @@ export const NotificationHelpers: {
615
648
  sq_comp_id?: undefined;
616
649
  trivia_id?: undefined;
617
650
  content_id?: undefined;
651
+ content_type?: undefined;
618
652
  contest_type?: undefined;
619
653
  player_filter_id?: undefined;
620
654
  fund_id?: undefined;
@@ -648,6 +682,7 @@ export const NotificationHelpers: {
648
682
  sq_comp_id?: undefined;
649
683
  trivia_id?: undefined;
650
684
  content_id?: undefined;
685
+ content_type?: undefined;
651
686
  contest_type?: undefined;
652
687
  player_filter_id?: undefined;
653
688
  fund_id?: undefined;
@@ -681,6 +716,7 @@ export const NotificationHelpers: {
681
716
  sq_comp_id?: undefined;
682
717
  trivia_id?: undefined;
683
718
  content_id?: undefined;
719
+ content_type?: undefined;
684
720
  contest_type?: undefined;
685
721
  player_filter_id?: undefined;
686
722
  fund_id?: undefined;
@@ -714,6 +750,7 @@ export const NotificationHelpers: {
714
750
  sq_comp_id?: undefined;
715
751
  trivia_id?: undefined;
716
752
  content_id?: undefined;
753
+ content_type?: undefined;
717
754
  contest_type?: undefined;
718
755
  player_filter_id?: undefined;
719
756
  fund_id?: undefined;
@@ -747,6 +784,7 @@ export const NotificationHelpers: {
747
784
  sq_comp_id?: undefined;
748
785
  trivia_id?: undefined;
749
786
  content_id?: undefined;
787
+ content_type?: undefined;
750
788
  contest_type?: undefined;
751
789
  player_filter_id?: undefined;
752
790
  fund_id?: undefined;
@@ -780,6 +818,7 @@ export const NotificationHelpers: {
780
818
  sq_comp_id?: undefined;
781
819
  trivia_id?: undefined;
782
820
  content_id?: undefined;
821
+ content_type?: undefined;
783
822
  contest_type?: undefined;
784
823
  player_filter_id?: undefined;
785
824
  fund_id?: undefined;
@@ -799,8 +838,43 @@ export const NotificationHelpers: {
799
838
  };
800
839
  requiredParams: string[];
801
840
  primary: boolean;
841
+ } | {
842
+ label: string;
843
+ path_name: string;
844
+ params: {
845
+ content_id: string;
846
+ contest_id?: undefined;
847
+ rebate_id?: undefined;
848
+ bracket_competition_id?: undefined;
849
+ mode?: undefined;
850
+ competition_id?: undefined;
851
+ season_id?: undefined;
852
+ sq_comp_id?: undefined;
853
+ trivia_id?: undefined;
854
+ content_type?: undefined;
855
+ contest_type?: undefined;
856
+ player_filter_id?: undefined;
857
+ fund_id?: undefined;
858
+ hedge_id?: undefined;
859
+ league_id?: undefined;
860
+ market_id?: undefined;
861
+ side_type?: undefined;
862
+ side_id?: undefined;
863
+ team_id?: undefined;
864
+ flash_campaign_id?: undefined;
865
+ post_id?: undefined;
866
+ campaign_id?: undefined;
867
+ player_id?: undefined;
868
+ company_id?: undefined;
869
+ group_id?: undefined;
870
+ order_id?: undefined;
871
+ podcast_id?: undefined;
872
+ };
873
+ requiredParams: string[];
874
+ primary: boolean;
802
875
  })[];
803
876
  };
877
+ export const NotificationManagerTabs: any;
804
878
  export default NotificationManager;
805
879
  declare function NotificationManager({ player_ids, me, float, header_style, footer_style, notification_type, default_path_name, onFocusPosition, default_params, onComplete, onClose }: {
806
880
  player_ids: any;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../commonjs/NotificationManager/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuCA;;;;;;;;;;;;QA+mCC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../commonjs/NotificationManager/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA8CA;;;;;;;;;;;;QAunCC"}