be-components 7.6.3 → 7.6.4

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 (138) hide show
  1. package/lib/commonjs/NotificationManager/NotificationManagerTabs.js +188 -0
  2. package/lib/commonjs/NotificationManager/NotificationManagerTabs.js.map +1 -0
  3. package/lib/commonjs/NotificationManager/api/index.js +235 -6
  4. package/lib/commonjs/NotificationManager/api/index.js.map +1 -1
  5. package/lib/commonjs/NotificationManager/components/GroupManagement.js +1038 -0
  6. package/lib/commonjs/NotificationManager/components/GroupManagement.js.map +1 -0
  7. package/lib/commonjs/NotificationManager/components/JobManagement.js +783 -0
  8. package/lib/commonjs/NotificationManager/components/JobManagement.js.map +1 -0
  9. package/lib/commonjs/NotificationManager/components/ScheduleNotification.js +407 -0
  10. package/lib/commonjs/NotificationManager/components/ScheduleNotification.js.map +1 -0
  11. package/lib/commonjs/NotificationManager/components/index.js +56 -0
  12. package/lib/commonjs/NotificationManager/components/index.js.map +1 -0
  13. package/lib/commonjs/NotificationManager/components/shared/DateTimePicker.js +113 -0
  14. package/lib/commonjs/NotificationManager/components/shared/DateTimePicker.js.map +1 -0
  15. package/lib/commonjs/NotificationManager/components/shared/GroupSelector.js +191 -0
  16. package/lib/commonjs/NotificationManager/components/shared/GroupSelector.js.map +1 -0
  17. package/lib/commonjs/NotificationManager/components/shared/NotificationBuilderForm.js +509 -0
  18. package/lib/commonjs/NotificationManager/components/shared/NotificationBuilderForm.js.map +1 -0
  19. package/lib/commonjs/NotificationManager/components/shared/StatusBadge.js +69 -0
  20. package/lib/commonjs/NotificationManager/components/shared/StatusBadge.js.map +1 -0
  21. package/lib/commonjs/NotificationManager/index.js +38 -23
  22. package/lib/commonjs/NotificationManager/index.js.map +1 -1
  23. package/lib/commonjs/index.js +7 -0
  24. package/lib/commonjs/index.js.map +1 -1
  25. package/lib/commonjs/types.d.js +2 -0
  26. package/lib/commonjs/types.d.js.map +1 -1
  27. package/lib/module/NotificationManager/NotificationManagerTabs.js +180 -0
  28. package/lib/module/NotificationManager/NotificationManagerTabs.js.map +1 -0
  29. package/lib/module/NotificationManager/api/index.js +235 -6
  30. package/lib/module/NotificationManager/api/index.js.map +1 -1
  31. package/lib/module/NotificationManager/components/GroupManagement.js +1030 -0
  32. package/lib/module/NotificationManager/components/GroupManagement.js.map +1 -0
  33. package/lib/module/NotificationManager/components/JobManagement.js +775 -0
  34. package/lib/module/NotificationManager/components/JobManagement.js.map +1 -0
  35. package/lib/module/NotificationManager/components/ScheduleNotification.js +399 -0
  36. package/lib/module/NotificationManager/components/ScheduleNotification.js.map +1 -0
  37. package/lib/module/NotificationManager/components/index.js +8 -0
  38. package/lib/module/NotificationManager/components/index.js.map +1 -0
  39. package/lib/module/NotificationManager/components/shared/DateTimePicker.js +106 -0
  40. package/lib/module/NotificationManager/components/shared/DateTimePicker.js.map +1 -0
  41. package/lib/module/NotificationManager/components/shared/GroupSelector.js +184 -0
  42. package/lib/module/NotificationManager/components/shared/GroupSelector.js.map +1 -0
  43. package/lib/module/NotificationManager/components/shared/NotificationBuilderForm.js +501 -0
  44. package/lib/module/NotificationManager/components/shared/NotificationBuilderForm.js.map +1 -0
  45. package/lib/module/NotificationManager/components/shared/StatusBadge.js +62 -0
  46. package/lib/module/NotificationManager/components/shared/StatusBadge.js.map +1 -0
  47. package/lib/module/NotificationManager/index.js +32 -23
  48. package/lib/module/NotificationManager/index.js.map +1 -1
  49. package/lib/module/index.js +2 -1
  50. package/lib/module/index.js.map +1 -1
  51. package/lib/module/types.d.js +2 -0
  52. package/lib/module/types.d.js.map +1 -1
  53. package/lib/typescript/lib/commonjs/NotificationManager/NotificationManagerTabs.d.ts +17 -0
  54. package/lib/typescript/lib/commonjs/NotificationManager/NotificationManagerTabs.d.ts.map +1 -0
  55. package/lib/typescript/lib/commonjs/NotificationManager/api/index.d.ts +17 -2
  56. package/lib/typescript/lib/commonjs/NotificationManager/api/index.d.ts.map +1 -1
  57. package/lib/typescript/lib/commonjs/NotificationManager/components/GroupManagement.d.ts +6 -0
  58. package/lib/typescript/lib/commonjs/NotificationManager/components/GroupManagement.d.ts.map +1 -0
  59. package/lib/typescript/lib/commonjs/NotificationManager/components/JobManagement.d.ts +7 -0
  60. package/lib/typescript/lib/commonjs/NotificationManager/components/JobManagement.d.ts.map +1 -0
  61. package/lib/typescript/lib/commonjs/NotificationManager/components/ScheduleNotification.d.ts +8 -0
  62. package/lib/typescript/lib/commonjs/NotificationManager/components/ScheduleNotification.d.ts.map +1 -0
  63. package/lib/typescript/lib/commonjs/NotificationManager/components/index.d.ts +9 -0
  64. package/lib/typescript/lib/commonjs/NotificationManager/components/index.d.ts.map +1 -0
  65. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/DateTimePicker.d.ts +9 -0
  66. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/DateTimePicker.d.ts.map +1 -0
  67. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/GroupSelector.d.ts +13 -0
  68. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/GroupSelector.d.ts.map +1 -0
  69. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/NotificationBuilderForm.d.ts +10 -0
  70. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/NotificationBuilderForm.d.ts.map +1 -0
  71. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/StatusBadge.d.ts +6 -0
  72. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/StatusBadge.d.ts.map +1 -0
  73. package/lib/typescript/lib/commonjs/NotificationManager/index.d.ts +18 -2
  74. package/lib/typescript/lib/commonjs/NotificationManager/index.d.ts.map +1 -1
  75. package/lib/typescript/lib/commonjs/index.d.ts +18 -2
  76. package/lib/typescript/lib/commonjs/index.d.ts.map +1 -1
  77. package/lib/typescript/lib/module/NotificationManager/NotificationManagerTabs.d.ts +17 -0
  78. package/lib/typescript/lib/module/NotificationManager/NotificationManagerTabs.d.ts.map +1 -0
  79. package/lib/typescript/lib/module/NotificationManager/api/index.d.ts +17 -2
  80. package/lib/typescript/lib/module/NotificationManager/api/index.d.ts.map +1 -1
  81. package/lib/typescript/lib/module/NotificationManager/components/GroupManagement.d.ts +6 -0
  82. package/lib/typescript/lib/module/NotificationManager/components/GroupManagement.d.ts.map +1 -0
  83. package/lib/typescript/lib/module/NotificationManager/components/JobManagement.d.ts +7 -0
  84. package/lib/typescript/lib/module/NotificationManager/components/JobManagement.d.ts.map +1 -0
  85. package/lib/typescript/lib/module/NotificationManager/components/ScheduleNotification.d.ts +8 -0
  86. package/lib/typescript/lib/module/NotificationManager/components/ScheduleNotification.d.ts.map +1 -0
  87. package/lib/typescript/lib/module/NotificationManager/components/index.d.ts +8 -0
  88. package/lib/typescript/lib/module/NotificationManager/components/index.d.ts.map +1 -0
  89. package/lib/typescript/lib/module/NotificationManager/components/shared/DateTimePicker.d.ts +9 -0
  90. package/lib/typescript/lib/module/NotificationManager/components/shared/DateTimePicker.d.ts.map +1 -0
  91. package/lib/typescript/lib/module/NotificationManager/components/shared/GroupSelector.d.ts +13 -0
  92. package/lib/typescript/lib/module/NotificationManager/components/shared/GroupSelector.d.ts.map +1 -0
  93. package/lib/typescript/lib/module/NotificationManager/components/shared/NotificationBuilderForm.d.ts +10 -0
  94. package/lib/typescript/lib/module/NotificationManager/components/shared/NotificationBuilderForm.d.ts.map +1 -0
  95. package/lib/typescript/lib/module/NotificationManager/components/shared/StatusBadge.d.ts +6 -0
  96. package/lib/typescript/lib/module/NotificationManager/components/shared/StatusBadge.d.ts.map +1 -0
  97. package/lib/typescript/lib/module/NotificationManager/index.d.ts +1 -0
  98. package/lib/typescript/lib/module/NotificationManager/index.d.ts.map +1 -1
  99. package/lib/typescript/lib/module/index.d.ts +2 -1
  100. package/lib/typescript/lib/module/index.d.ts.map +1 -1
  101. package/lib/typescript/src/NotificationManager/NotificationManagerTabs.d.ts +20 -0
  102. package/lib/typescript/src/NotificationManager/NotificationManagerTabs.d.ts.map +1 -0
  103. package/lib/typescript/src/NotificationManager/api/index.d.ts +74 -3
  104. package/lib/typescript/src/NotificationManager/api/index.d.ts.map +1 -1
  105. package/lib/typescript/src/NotificationManager/components/GroupManagement.d.ts +8 -0
  106. package/lib/typescript/src/NotificationManager/components/GroupManagement.d.ts.map +1 -0
  107. package/lib/typescript/src/NotificationManager/components/JobManagement.d.ts +9 -0
  108. package/lib/typescript/src/NotificationManager/components/JobManagement.d.ts.map +1 -0
  109. package/lib/typescript/src/NotificationManager/components/ScheduleNotification.d.ts +10 -0
  110. package/lib/typescript/src/NotificationManager/components/ScheduleNotification.d.ts.map +1 -0
  111. package/lib/typescript/src/NotificationManager/components/index.d.ts +8 -0
  112. package/lib/typescript/src/NotificationManager/components/index.d.ts.map +1 -0
  113. package/lib/typescript/src/NotificationManager/components/shared/DateTimePicker.d.ts +12 -0
  114. package/lib/typescript/src/NotificationManager/components/shared/DateTimePicker.d.ts.map +1 -0
  115. package/lib/typescript/src/NotificationManager/components/shared/GroupSelector.d.ts +16 -0
  116. package/lib/typescript/src/NotificationManager/components/shared/GroupSelector.d.ts.map +1 -0
  117. package/lib/typescript/src/NotificationManager/components/shared/NotificationBuilderForm.d.ts +12 -0
  118. package/lib/typescript/src/NotificationManager/components/shared/NotificationBuilderForm.d.ts.map +1 -0
  119. package/lib/typescript/src/NotificationManager/components/shared/StatusBadge.d.ts +8 -0
  120. package/lib/typescript/src/NotificationManager/components/shared/StatusBadge.d.ts.map +1 -0
  121. package/lib/typescript/src/NotificationManager/index.d.ts +1 -0
  122. package/lib/typescript/src/NotificationManager/index.d.ts.map +1 -1
  123. package/lib/typescript/src/index.d.ts +2 -1
  124. package/lib/typescript/src/index.d.ts.map +1 -1
  125. package/package.json +1 -1
  126. package/src/NotificationManager/NotificationManagerTabs.tsx +178 -0
  127. package/src/NotificationManager/api/index.ts +239 -6
  128. package/src/NotificationManager/components/GroupManagement.tsx +854 -0
  129. package/src/NotificationManager/components/JobManagement.tsx +569 -0
  130. package/src/NotificationManager/components/ScheduleNotification.tsx +388 -0
  131. package/src/NotificationManager/components/index.ts +7 -0
  132. package/src/NotificationManager/components/shared/DateTimePicker.tsx +94 -0
  133. package/src/NotificationManager/components/shared/GroupSelector.tsx +130 -0
  134. package/src/NotificationManager/components/shared/NotificationBuilderForm.tsx +364 -0
  135. package/src/NotificationManager/components/shared/StatusBadge.tsx +72 -0
  136. package/src/NotificationManager/index.tsx +43 -24
  137. package/src/index.tsx +2 -0
  138. package/src/types.d.ts +38 -3
@@ -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: ({
@@ -801,6 +816,7 @@ export const NotificationHelpers: {
801
816
  primary: boolean;
802
817
  })[];
803
818
  };
819
+ export const NotificationManagerTabs: any;
804
820
  export default NotificationManager;
805
821
  declare function NotificationManager({ player_ids, me, float, header_style, footer_style, notification_type, default_path_name, onFocusPosition, default_params, onComplete, onClose }: {
806
822
  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"}
@@ -81,9 +81,24 @@ export const MyWallet: any;
81
81
  export const NotificationApi: {
82
82
  setEnvironment: () => void;
83
83
  getPlayersByPlayerIds: (player_ids: any) => Promise<any>;
84
- broadcastNotifications: (player_notification: any, player_ids: any) => Promise<any>;
85
- getActiveNotificationGroups: () => Promise<any>;
84
+ broadcastNotifications: (player_notification: any, player_ids: any, notification_group_id: any) => Promise<any>;
85
+ getActiveNotificationGroups: (limit: any, offset: any) => Promise<any>;
86
86
  getNotificationGroupMembersByGroup: (notification_group_id: any) => Promise<any>;
87
+ getAllNotificationGroups: (limit: any, offset: any, search: any) => Promise<any>;
88
+ getNotificationGroupsByStatus: (status: any, limit: any, offset: any, search: any) => Promise<any>;
89
+ getNotificationGroupById: (notification_group_id: any) => Promise<any>;
90
+ createNotificationGroup: (notification_group: any) => Promise<any>;
91
+ updateNotificationGroup: (notification_group: any) => Promise<any>;
92
+ inactivateNotificationGroup: (notification_group_id: any) => Promise<any>;
93
+ updateGroupMembers: (notification_group_id: any, player_ids: any) => Promise<any>;
94
+ getAllNotificationJobs: (limit: any, offset: any) => Promise<any>;
95
+ getNotificationJobsByStatus: (status: any, limit: any, offset: any) => Promise<any>;
96
+ getNotificationJobsByGroup: (notification_group_id: any) => Promise<any>;
97
+ getNotificationJobById: (notification_job_id: any) => Promise<any>;
98
+ createNotificationJob: (notification_job: any) => Promise<any>;
99
+ updateNotificationJob: (notification_job: any) => Promise<any>;
100
+ finalizeNotificationJob: (notification_job_id: any) => Promise<any>;
101
+ cancelNotificationJob: (notification_job_id: any) => Promise<any>;
87
102
  };
88
103
  export const NotificationHelpers: {
89
104
  app_paths: ({
@@ -881,6 +896,7 @@ export const NotificationHelpers: {
881
896
  })[];
882
897
  };
883
898
  export const NotificationManager: any;
899
+ export const NotificationManagerTabs: any;
884
900
  export const NotificationModule: any;
885
901
  export const Observer: any;
886
902
  export const PartnerPortal: any;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../commonjs/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoeA,2BAAkE;AAElE,iCAA8E"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../commonjs/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0eA,2BAAkE;AAElE,iCAA8E"}
@@ -0,0 +1,17 @@
1
+ export default NotificationManagerTabs;
2
+ declare function NotificationManagerTabs({ player_ids, me, header_style, footer_style, float, notification_type, default_path_name, default_params, onFocusPosition, onComplete, onClose, defaultTab }: {
3
+ player_ids?: never[] | undefined;
4
+ me: any;
5
+ header_style: any;
6
+ footer_style: any;
7
+ float: any;
8
+ notification_type: any;
9
+ default_path_name: any;
10
+ default_params: any;
11
+ onFocusPosition: any;
12
+ onComplete: any;
13
+ onClose: any;
14
+ defaultTab?: string | undefined;
15
+ }): React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
16
+ import React from 'react';
17
+ //# sourceMappingURL=NotificationManagerTabs.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NotificationManagerTabs.d.ts","sourceRoot":"","sources":["../../../../module/NotificationManager/NotificationManagerTabs.js"],"names":[],"mappings":";AASA;;;;;;;;;;;;;kGAwKC;kBAjL+B,OAAO"}
@@ -796,8 +796,23 @@ export namespace NotificationHelpers {
796
796
  export namespace NotificationApi {
797
797
  function setEnvironment(): void;
798
798
  function getPlayersByPlayerIds(player_ids: any): Promise<any>;
799
- function broadcastNotifications(player_notification: any, player_ids: any): Promise<any>;
800
- function getActiveNotificationGroups(): Promise<any>;
799
+ function broadcastNotifications(player_notification: any, player_ids: any, notification_group_id: any): Promise<any>;
800
+ function getActiveNotificationGroups(limit: any, offset: any): Promise<any>;
801
801
  function getNotificationGroupMembersByGroup(notification_group_id: any): Promise<any>;
802
+ function getAllNotificationGroups(limit: any, offset: any, search: any): Promise<any>;
803
+ function getNotificationGroupsByStatus(status: any, limit: any, offset: any, search: any): Promise<any>;
804
+ function getNotificationGroupById(notification_group_id: any): Promise<any>;
805
+ function createNotificationGroup(notification_group: any): Promise<any>;
806
+ function updateNotificationGroup(notification_group: any): Promise<any>;
807
+ function inactivateNotificationGroup(notification_group_id: any): Promise<any>;
808
+ function updateGroupMembers(notification_group_id: any, player_ids: any): Promise<any>;
809
+ function getAllNotificationJobs(limit: any, offset: any): Promise<any>;
810
+ function getNotificationJobsByStatus(status: any, limit: any, offset: any): Promise<any>;
811
+ function getNotificationJobsByGroup(notification_group_id: any): Promise<any>;
812
+ function getNotificationJobById(notification_job_id: any): Promise<any>;
813
+ function createNotificationJob(notification_job: any): Promise<any>;
814
+ function updateNotificationJob(notification_job: any): Promise<any>;
815
+ function finalizeNotificationJob(notification_job_id: any): Promise<any>;
816
+ function cancelNotificationJob(notification_job_id: any): Promise<any>;
802
817
  }
803
818
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../module/NotificationManager/api/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAkYkB,gCAGf;IAIsB,8DAatB;IAIuB,yFAYvB;IAC4B,qDAO5B;IACmC,sFAOnC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../module/NotificationManager/api/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAkYkB,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 default GroupManagement;
2
+ declare function GroupManagement({ onFocusPosition }: {
3
+ onFocusPosition: any;
4
+ }): React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
5
+ import React from 'react';
6
+ //# sourceMappingURL=GroupManagement.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GroupManagement.d.ts","sourceRoot":"","sources":["../../../../../module/NotificationManager/components/GroupManagement.js"],"names":[],"mappings":";AAeA;;kGAo/BC;kBAngC0C,OAAO"}
@@ -0,0 +1,7 @@
1
+ export default JobManagement;
2
+ declare function JobManagement({ onEditJob, onFocusPosition }: {
3
+ onEditJob: any;
4
+ onFocusPosition: any;
5
+ }): React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
6
+ import React from 'react';
7
+ //# sourceMappingURL=JobManagement.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"JobManagement.d.ts","sourceRoot":"","sources":["../../../../../module/NotificationManager/components/JobManagement.js"],"names":[],"mappings":";AAgCA;;;kGAouBC;kBApwB0C,OAAO"}
@@ -0,0 +1,8 @@
1
+ export default ScheduleNotification;
2
+ declare function ScheduleNotification({ onFocusPosition, editingJob, onJobSaved }: {
3
+ onFocusPosition: any;
4
+ editingJob: any;
5
+ onJobSaved: any;
6
+ }): React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
7
+ import React from 'react';
8
+ //# sourceMappingURL=ScheduleNotification.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ScheduleNotification.d.ts","sourceRoot":"","sources":["../../../../../module/NotificationManager/components/ScheduleNotification.js"],"names":[],"mappings":";AAWA;;;;kGAiYC;kBA5Y0C,OAAO"}
@@ -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":["../../../../../module/NotificationManager/components/index.js"],"names":[],"mappings":""}
@@ -0,0 +1,9 @@
1
+ export default DateTimePicker;
2
+ declare function DateTimePicker({ value, onChange, label, onFocusPosition }: {
3
+ value: any;
4
+ onChange: any;
5
+ label: any;
6
+ onFocusPosition: any;
7
+ }): React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
8
+ import React from 'react';
9
+ //# sourceMappingURL=DateTimePicker.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DateTimePicker.d.ts","sourceRoot":"","sources":["../../../../../../module/NotificationManager/components/shared/DateTimePicker.js"],"names":[],"mappings":";AAEA;;;;;kGAqGC;kBAvGiB,OAAO"}
@@ -0,0 +1,13 @@
1
+ export default GroupSelector;
2
+ declare function GroupSelector({ visible, onClose, onSelectGroup, groups, loading, selectedGroup, showCustomOption, customGroup }: {
3
+ visible: any;
4
+ onClose: any;
5
+ onSelectGroup: any;
6
+ groups: any;
7
+ loading?: boolean | undefined;
8
+ selectedGroup: any;
9
+ showCustomOption?: boolean | undefined;
10
+ customGroup: any;
11
+ }): React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> | null;
12
+ import React from 'react';
13
+ //# sourceMappingURL=GroupSelector.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GroupSelector.d.ts","sourceRoot":"","sources":["../../../../../../module/NotificationManager/components/shared/GroupSelector.js"],"names":[],"mappings":";AAIA;;;;;;;;;yGAiLC;kBArLiB,OAAO"}
@@ -0,0 +1,10 @@
1
+ export default NotificationBuilderForm;
2
+ declare function NotificationBuilderForm({ notification, onChange, onFocusPosition, showPreview, showType }: {
3
+ notification: any;
4
+ onChange: any;
5
+ onFocusPosition: any;
6
+ showPreview?: boolean | undefined;
7
+ showType?: boolean | undefined;
8
+ }): React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
9
+ import React from 'react';
10
+ //# sourceMappingURL=NotificationBuilderForm.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NotificationBuilderForm.d.ts","sourceRoot":"","sources":["../../../../../../module/NotificationManager/components/shared/NotificationBuilderForm.js"],"names":[],"mappings":";AAiBA;;;;;;kGAieC;kBAlfmD,OAAO"}
@@ -0,0 +1,6 @@
1
+ export default StatusBadge;
2
+ declare function StatusBadge({ status }: {
3
+ status: any;
4
+ }): React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
5
+ import React from 'react';
6
+ //# sourceMappingURL=StatusBadge.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"StatusBadge.d.ts","sourceRoot":"","sources":["../../../../../../module/NotificationManager/components/shared/StatusBadge.js"],"names":[],"mappings":";AAGA;;kGAwDC;kBA3DiB,OAAO"}
@@ -1,4 +1,5 @@
1
1
  export default NotificationManager;
2
+ export { default as NotificationManagerTabs } from "./NotificationManagerTabs";
2
3
  declare function NotificationManager({ player_ids, me, float, header_style, footer_style, notification_type, default_path_name, onFocusPosition, default_params, onComplete, onClose }: {
3
4
  player_ids: any;
4
5
  me: any;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../module/NotificationManager/index.js"],"names":[],"mappings":";AAmBA;;;;;;;;;;;;kGA+mCC;gCA9nCoD,OAAO;oCAAP,OAAO;kBAJR,OAAO"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../module/NotificationManager/index.js"],"names":[],"mappings":";;AAmBA;;;;;;;;;;;;kGAunCC;gCAtoCoD,OAAO;oCAAP,OAAO;kBAJR,OAAO"}
@@ -3,6 +3,7 @@ import Observer from './Observer';
3
3
  import MyAction from './MyAction';
4
4
  import CreateEmbed from './PartnerPortal/components/CreateEmbed';
5
5
  import ReferralCodeManager from './PartnerPortal/components/ReferralCodeManager';
6
+ import NotificationManagerTabs from './NotificationManager/NotificationManagerTabs';
6
7
  import BetRouter from './BetRouter/index';
7
8
  import CreateEngagement from './CreateEngagement';
8
9
  import DiscordConnectionManager from './Discord';
@@ -76,6 +77,6 @@ import SeasonCard from './Engage/components/SeasonCard';
76
77
  import NotificationManager from './NotificationManager';
77
78
  import { NotificationApi } from './NotificationManager/api';
78
79
  import { NotificationHelpers } from './NotificationManager/api';
79
- export { Authenticator, Observer, MyAction, CreateEmbed, ReferralCodeManager, BetRouter, CreateEngagement, DiscordConnectionManager, BEEventApi, FlashCampaignManager, BettorBotDashboard, EmbedManager, RankingsCard, ManageFlashMarket, BELinkApi, PartnerPortal, SquaresManager, GuideView, BetMatch, ManageFilter, Ticker, Premium, CreateGroupWizard, LeaderboardCard, GroupComponent, LocationTracker, BEClarity, FlashMarket, ContactsCard, PlayerRecommender, GolfScoreboard, ContactsSelector, Campaign, BEPostHog, ManageBracketCompetitionForm, NotificationModule, FlashHolder, useNotifications, ClaritySmartEvents, ProfileManager, CompetitionManager, Components, SocialComponents, APIOverrides, LinearGradient, usePlayerLocation, BettorSearch, Colors, MyWallet, Share, Checkout, MarketComponents, EventComponents, PollCampaign, PollCampaignApi, PollApi, MarketMaker, CompetitionModule, SeasonManager, CreateCompetitionForm, CreateSeasonForm, SeasonModule, AdminCompetitionList, AdServer, Leaderboard, AdProvider, BracketRoom, SquaresModule, SocketManager, PromotedOrder, EngageModule, CompetitionCard, SquaresCompetitionCard, BracketCompetitionCard, SeasonCard, NotificationManager, NotificationApi, NotificationHelpers };
80
+ export { 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 };
80
81
  export { LivePriceChart, BaseLineChart, TradeChartAdapter } from "./Charts";
81
82
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../module/index.js"],"names":[],"mappings":"0BAE0B,iBAAiB;qBAOK,YAAY;qBA6DvC,YAAY;wBAHT,wCAAwC;gCAChC,gDAAgD;sBAM1D,mBAAmB;6BAbZ,oBAAoB;qCAEZ,WAAW;2BAtDA,YAAY;iCA4D3B,iDAAiD;+BAEnD,aAAa;yBALnB,yCAAyC;yBATzC,gBAAgB;8BAOX,4CAA4C;0BAvD1B,YAAY;0BAwDlC,iBAAiB;2BAHhB,kBAAkB;sBAJvB,SAAS;qBALV,YAAY;yBAER,oCAAoC;mBAb1C,UAAU;oBAYT,WAAW;8BAMD,sCAAsC;4BAhBxC,sCAAsC;2BAevC,SAAS;4BA3BR,mBAAmB;sBAoBzB,WAAW;wBAHT,eAAe;yBAHd,4CAA4C;8BADvC,qBAAqB;2BAGxB,kBAAkB;6BADhB,iDAAiD;qBANzD,YAAY;sBAUX,WAAW;yCAXQ,mDAAmD;+BAF7D,iBAAiB;wBAYxB,2BAA2B;iCAXlB,kCAAkC;+BAiBpC,uBAAuB;2BArD3B,kBAAkB;+BAmBd,sBAAsB;4BAlBzB,cAAc;kCACR,oBAAoB;6BACzB,gBAAgB;+BACd,sBAAsB;kCAMnB,kCAAkC;yBAH3C,gBAAgB;mBAFtB,oBAAoB;qBAGlB,UAAU;kBAoBb,SAAS;qBAnBN,YAAY;6BAiBJ,oBAAoB;4BACrB,mBAAmB;yBAhBtB,QAAQ;gCACQ,YAAY;wBAAZ,YAAY;wBAkB7B,eAAe;8BAjBT,eAAe;0BAUnB,4BAA4B;kCAHpB,uDAAuD;6BAK5D,wDAAwD;yBAD5D,qBAAqB;iCAHb,sDAAsD;qBAPlD,YAAY;wBA0BzB,WAAW;2BA1BE,YAAY;wBACzB,WAAW;0BAET,WAAW;0BADX,UAAU;0BAEV,iBAAiB;yBAIlB,UAAU;4BASP,qCAAqC;mCAC9B,4CAA4C;mCAC5C,4CAA4C;uBACxD,gCAAgC;gCAmCvB,uBAAuB;gCACF,2BAA2B;oCAA3B,2BAA2B"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../module/index.js"],"names":[],"mappings":"0BAE0B,iBAAiB;qBAOK,YAAY;qBA6DvC,YAAY;wBAHT,wCAAwC;gCAChC,gDAAgD;oCAO5C,+CAA+C;sBAD7D,mBAAmB;6BAbZ,oBAAoB;qCAEZ,WAAW;2BAtDA,YAAY;iCA4D3B,iDAAiD;+BAEnD,aAAa;yBALnB,yCAAyC;yBATzC,gBAAgB;8BAOX,4CAA4C;0BAvD1B,YAAY;0BAwDlC,iBAAiB;2BAHhB,kBAAkB;sBAJvB,SAAS;qBALV,YAAY;yBAER,oCAAoC;mBAb1C,UAAU;oBAYT,WAAW;8BAMD,sCAAsC;4BAhBxC,sCAAsC;2BAevC,SAAS;4BA3BR,mBAAmB;sBAoBzB,WAAW;wBAHT,eAAe;yBAHd,4CAA4C;8BADvC,qBAAqB;2BAGxB,kBAAkB;6BADhB,iDAAiD;qBANzD,YAAY;sBAUX,WAAW;yCAXQ,mDAAmD;+BAF7D,iBAAiB;wBAYxB,2BAA2B;iCAXlB,kCAAkC;+BAiBpC,uBAAuB;2BArD3B,kBAAkB;+BAmBd,sBAAsB;4BAlBzB,cAAc;kCACR,oBAAoB;6BACzB,gBAAgB;+BACd,sBAAsB;kCAMnB,kCAAkC;yBAH3C,gBAAgB;mBAFtB,oBAAoB;qBAGlB,UAAU;kBAoBb,SAAS;qBAnBN,YAAY;6BAiBJ,oBAAoB;4BACrB,mBAAmB;yBAhBtB,QAAQ;gCACQ,YAAY;wBAAZ,YAAY;wBAkB7B,eAAe;8BAjBT,eAAe;0BAUnB,4BAA4B;kCAHpB,uDAAuD;6BAK5D,wDAAwD;yBAD5D,qBAAqB;iCAHb,sDAAsD;qBAPlD,YAAY;wBA0BzB,WAAW;2BA1BE,YAAY;wBACzB,WAAW;0BAET,WAAW;0BADX,UAAU;0BAEV,iBAAiB;yBAIlB,UAAU;4BASP,qCAAqC;mCAC9B,4CAA4C;mCAC5C,4CAA4C;uBACxD,gCAAgC;gCAmCvB,uBAAuB;gCACF,2BAA2B;oCAA3B,2BAA2B"}
@@ -0,0 +1,20 @@
1
+ import React from 'react';
2
+ import { type ViewStyle } from 'react-native';
3
+ import type { NotificationManagerTab, MyPlayerProps, FocusPositionProps, PlayerNotificationProps } from '../types';
4
+ interface NotificationManagerTabsProps {
5
+ player_ids?: string[];
6
+ me: MyPlayerProps;
7
+ header_style?: ViewStyle;
8
+ footer_style?: ViewStyle;
9
+ float?: boolean;
10
+ notification_type?: 'order_notifications' | 'competition_notifications' | 'social_notifications';
11
+ default_path_name?: string;
12
+ default_params?: Record<string, string>;
13
+ onFocusPosition?: (pos: FocusPositionProps) => void;
14
+ onComplete?: (notification: PlayerNotificationProps) => void;
15
+ onClose?: () => void;
16
+ defaultTab?: NotificationManagerTab;
17
+ }
18
+ declare const NotificationManagerTabs: ({ player_ids, me, header_style, footer_style, float, notification_type, default_path_name, default_params, onFocusPosition, onComplete, onClose, defaultTab }: NotificationManagerTabsProps) => React.JSX.Element;
19
+ export default NotificationManagerTabs;
20
+ //# sourceMappingURL=NotificationManagerTabs.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NotificationManagerTabs.d.ts","sourceRoot":"","sources":["../../../../src/NotificationManager/NotificationManagerTabs.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AACxC,OAAO,EAAoB,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAQhE,OAAO,KAAK,EAAE,sBAAsB,EAAE,aAAa,EAAE,kBAAkB,EAAwB,uBAAuB,EAAE,MAAM,UAAU,CAAC;AAEzI,UAAU,4BAA4B;IAClC,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB,EAAE,EAAE,aAAa,CAAC;IAClB,YAAY,CAAC,EAAE,SAAS,CAAC;IACzB,YAAY,CAAC,EAAE,SAAS,CAAC;IACzB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,iBAAiB,CAAC,EAAE,qBAAqB,GAAG,2BAA2B,GAAG,sBAAsB,CAAC;IACjG,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,cAAc,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACxC,eAAe,CAAC,EAAE,CAAC,GAAG,EAAE,kBAAkB,KAAK,IAAI,CAAC;IACpD,UAAU,CAAC,EAAE,CAAC,YAAY,EAAE,uBAAuB,KAAK,IAAI,CAAC;IAC7D,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,UAAU,CAAC,EAAE,sBAAsB,CAAC;CACvC;AAED,QAAA,MAAM,uBAAuB,GAAI,+JAa9B,4BAA4B,sBAwI9B,CAAC;AAEF,eAAe,uBAAuB,CAAC"}
@@ -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[];
@@ -812,11 +812,82 @@ export declare const NotificationApi: {
812
812
  getPlayersByPlayerIds: (player_ids: string[]) => Promise<PublicPlayerProps[]>;
813
813
  /**
814
814
  * Send notifications to multiple players
815
+ * @param player_notification - The notification to send
816
+ * @param player_ids - Array of player IDs (must be empty if notification_group_id is provided)
817
+ * @param notification_group_id - Optional group ID (server will fetch members)
815
818
  */
816
- broadcastNotifications: (player_notification: PlayerNotificationProps, player_ids: string[]) => Promise<{
819
+ broadcastNotifications: (player_notification: PlayerNotificationProps, player_ids: string[], notification_group_id?: string) => Promise<{
817
820
  message: string;
818
821
  }>;
819
- getActiveNotificationGroups: () => Promise<NotificationGroupProps[]>;
822
+ getActiveNotificationGroups: (limit?: number, offset?: number) => Promise<NotificationGroupProps[]>;
820
823
  getNotificationGroupMembersByGroup: (notification_group_id: string) => Promise<NotificationGroupMemberProps[]>;
824
+ /**
825
+ * Get all notification groups
826
+ */
827
+ getAllNotificationGroups: (limit?: number, offset?: number, search?: string) => Promise<NotificationGroupProps[]>;
828
+ /**
829
+ * Get notification groups by status
830
+ */
831
+ getNotificationGroupsByStatus: (status: "active" | "inactive", limit?: number, offset?: number, search?: string) => Promise<NotificationGroupProps[]>;
832
+ /**
833
+ * Get a single notification group by ID
834
+ */
835
+ getNotificationGroupById: (notification_group_id: string) => Promise<NotificationGroupProps | null>;
836
+ /**
837
+ * Create a new notification group
838
+ */
839
+ createNotificationGroup: (notification_group: Partial<NotificationGroupProps>) => Promise<NotificationGroupProps | null>;
840
+ /**
841
+ * Update an existing notification group
842
+ */
843
+ updateNotificationGroup: (notification_group: NotificationGroupProps) => Promise<NotificationGroupProps | null>;
844
+ /**
845
+ * Inactivate a notification group
846
+ */
847
+ inactivateNotificationGroup: (notification_group_id: string) => Promise<{
848
+ message: string;
849
+ }>;
850
+ /**
851
+ * Trigger grouping function to update group members, or manually add members via player_ids array
852
+ */
853
+ updateGroupMembers: (notification_group_id: string, player_ids?: string[]) => Promise<{
854
+ message: string;
855
+ }>;
856
+ /**
857
+ * Get all notification jobs
858
+ */
859
+ getAllNotificationJobs: (limit?: number, offset?: number) => Promise<NotificationJobProps[]>;
860
+ /**
861
+ * Get notification jobs by status
862
+ */
863
+ getNotificationJobsByStatus: (status: string, limit?: number, offset?: number) => Promise<NotificationJobProps[]>;
864
+ /**
865
+ * Get notification jobs by group ID
866
+ */
867
+ getNotificationJobsByGroup: (notification_group_id: string) => Promise<NotificationJobProps[]>;
868
+ /**
869
+ * Get a single notification job by ID
870
+ */
871
+ getNotificationJobById: (notification_job_id: string) => Promise<NotificationJobProps | null>;
872
+ /**
873
+ * Create a new notification job
874
+ */
875
+ createNotificationJob: (notification_job: Partial<NotificationJobProps>) => Promise<NotificationJobProps | null>;
876
+ /**
877
+ * Update an existing notification job
878
+ */
879
+ updateNotificationJob: (notification_job: NotificationJobProps) => Promise<NotificationJobProps | null>;
880
+ /**
881
+ * Finalize a notification job (mark as ready for sending)
882
+ */
883
+ finalizeNotificationJob: (notification_job_id: string) => Promise<{
884
+ message: string;
885
+ }>;
886
+ /**
887
+ * Cancel a notification job
888
+ */
889
+ cancelNotificationJob: (notification_job_id: string) => Promise<{
890
+ message: string;
891
+ }>;
821
892
  };
822
893
  //# 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