be-components 7.6.2 → 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.
- package/lib/commonjs/BetRouter/layouts/DesktopAdminLayout.js +27 -2
- package/lib/commonjs/BetRouter/layouts/DesktopAdminLayout.js.map +1 -1
- package/lib/commonjs/BetRouter/layouts/MobileAdminLayout.js +24 -0
- package/lib/commonjs/BetRouter/layouts/MobileAdminLayout.js.map +1 -1
- package/lib/commonjs/BetRouter/types/credentials.js +20 -4
- package/lib/commonjs/BetRouter/types/credentials.js.map +1 -1
- package/lib/commonjs/BetRouter/types/liquidity.js +4 -0
- package/lib/commonjs/NotificationManager/NotificationManagerTabs.js +188 -0
- package/lib/commonjs/NotificationManager/NotificationManagerTabs.js.map +1 -0
- package/lib/commonjs/NotificationManager/api/index.js +235 -6
- package/lib/commonjs/NotificationManager/api/index.js.map +1 -1
- package/lib/commonjs/NotificationManager/components/GroupManagement.js +1038 -0
- package/lib/commonjs/NotificationManager/components/GroupManagement.js.map +1 -0
- package/lib/commonjs/NotificationManager/components/JobManagement.js +783 -0
- package/lib/commonjs/NotificationManager/components/JobManagement.js.map +1 -0
- package/lib/commonjs/NotificationManager/components/ScheduleNotification.js +407 -0
- package/lib/commonjs/NotificationManager/components/ScheduleNotification.js.map +1 -0
- package/lib/commonjs/NotificationManager/components/index.js +56 -0
- package/lib/commonjs/NotificationManager/components/index.js.map +1 -0
- package/lib/commonjs/NotificationManager/components/shared/DateTimePicker.js +113 -0
- package/lib/commonjs/NotificationManager/components/shared/DateTimePicker.js.map +1 -0
- package/lib/commonjs/NotificationManager/components/shared/GroupSelector.js +191 -0
- package/lib/commonjs/NotificationManager/components/shared/GroupSelector.js.map +1 -0
- package/lib/commonjs/NotificationManager/components/shared/NotificationBuilderForm.js +509 -0
- package/lib/commonjs/NotificationManager/components/shared/NotificationBuilderForm.js.map +1 -0
- package/lib/commonjs/NotificationManager/components/shared/StatusBadge.js +69 -0
- package/lib/commonjs/NotificationManager/components/shared/StatusBadge.js.map +1 -0
- package/lib/commonjs/NotificationManager/index.js +38 -23
- package/lib/commonjs/NotificationManager/index.js.map +1 -1
- package/lib/commonjs/Wallet/components/WalletActionSelector.js +3 -1
- package/lib/commonjs/Wallet/components/WalletActionSelector.js.map +1 -1
- package/lib/commonjs/index.js +7 -0
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/types.d.js +2 -0
- package/lib/commonjs/types.d.js.map +1 -1
- package/lib/module/BetRouter/layouts/DesktopAdminLayout.js +29 -4
- package/lib/module/BetRouter/layouts/DesktopAdminLayout.js.map +1 -1
- package/lib/module/BetRouter/layouts/MobileAdminLayout.js +26 -2
- package/lib/module/BetRouter/layouts/MobileAdminLayout.js.map +1 -1
- package/lib/module/BetRouter/types/credentials.js +17 -2
- package/lib/module/BetRouter/types/credentials.js.map +1 -1
- package/lib/module/BetRouter/types/liquidity.js +1 -1
- package/lib/module/NotificationManager/NotificationManagerTabs.js +180 -0
- package/lib/module/NotificationManager/NotificationManagerTabs.js.map +1 -0
- package/lib/module/NotificationManager/api/index.js +235 -6
- package/lib/module/NotificationManager/api/index.js.map +1 -1
- package/lib/module/NotificationManager/components/GroupManagement.js +1030 -0
- package/lib/module/NotificationManager/components/GroupManagement.js.map +1 -0
- package/lib/module/NotificationManager/components/JobManagement.js +775 -0
- package/lib/module/NotificationManager/components/JobManagement.js.map +1 -0
- package/lib/module/NotificationManager/components/ScheduleNotification.js +399 -0
- package/lib/module/NotificationManager/components/ScheduleNotification.js.map +1 -0
- package/lib/module/NotificationManager/components/index.js +8 -0
- package/lib/module/NotificationManager/components/index.js.map +1 -0
- package/lib/module/NotificationManager/components/shared/DateTimePicker.js +106 -0
- package/lib/module/NotificationManager/components/shared/DateTimePicker.js.map +1 -0
- package/lib/module/NotificationManager/components/shared/GroupSelector.js +184 -0
- package/lib/module/NotificationManager/components/shared/GroupSelector.js.map +1 -0
- package/lib/module/NotificationManager/components/shared/NotificationBuilderForm.js +501 -0
- package/lib/module/NotificationManager/components/shared/NotificationBuilderForm.js.map +1 -0
- package/lib/module/NotificationManager/components/shared/StatusBadge.js +62 -0
- package/lib/module/NotificationManager/components/shared/StatusBadge.js.map +1 -0
- package/lib/module/NotificationManager/index.js +32 -23
- package/lib/module/NotificationManager/index.js.map +1 -1
- package/lib/module/Wallet/components/WalletActionSelector.js +3 -1
- package/lib/module/Wallet/components/WalletActionSelector.js.map +1 -1
- package/lib/module/index.js +2 -1
- package/lib/module/index.js.map +1 -1
- package/lib/module/types.d.js +2 -0
- package/lib/module/types.d.js.map +1 -1
- package/lib/typescript/lib/commonjs/BetRouter/layouts/DesktopAdminLayout.d.ts.map +1 -1
- package/lib/typescript/lib/commonjs/BetRouter/layouts/MobileAdminLayout.d.ts.map +1 -1
- package/lib/typescript/lib/commonjs/BetRouter/types/credentials.d.ts +33 -0
- package/lib/typescript/lib/commonjs/BetRouter/types/credentials.d.ts.map +1 -1
- package/lib/typescript/lib/commonjs/BetRouter/types/liquidity.d.ts +1 -1
- package/lib/typescript/lib/commonjs/NotificationManager/NotificationManagerTabs.d.ts +17 -0
- package/lib/typescript/lib/commonjs/NotificationManager/NotificationManagerTabs.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/NotificationManager/api/index.d.ts +17 -2
- package/lib/typescript/lib/commonjs/NotificationManager/api/index.d.ts.map +1 -1
- package/lib/typescript/lib/commonjs/NotificationManager/components/GroupManagement.d.ts +6 -0
- package/lib/typescript/lib/commonjs/NotificationManager/components/GroupManagement.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/NotificationManager/components/JobManagement.d.ts +7 -0
- package/lib/typescript/lib/commonjs/NotificationManager/components/JobManagement.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/NotificationManager/components/ScheduleNotification.d.ts +8 -0
- package/lib/typescript/lib/commonjs/NotificationManager/components/ScheduleNotification.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/NotificationManager/components/index.d.ts +9 -0
- package/lib/typescript/lib/commonjs/NotificationManager/components/index.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/NotificationManager/components/shared/DateTimePicker.d.ts +9 -0
- package/lib/typescript/lib/commonjs/NotificationManager/components/shared/DateTimePicker.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/NotificationManager/components/shared/GroupSelector.d.ts +13 -0
- package/lib/typescript/lib/commonjs/NotificationManager/components/shared/GroupSelector.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/NotificationManager/components/shared/NotificationBuilderForm.d.ts +10 -0
- package/lib/typescript/lib/commonjs/NotificationManager/components/shared/NotificationBuilderForm.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/NotificationManager/components/shared/StatusBadge.d.ts +6 -0
- package/lib/typescript/lib/commonjs/NotificationManager/components/shared/StatusBadge.d.ts.map +1 -0
- package/lib/typescript/lib/commonjs/NotificationManager/index.d.ts +18 -2
- package/lib/typescript/lib/commonjs/NotificationManager/index.d.ts.map +1 -1
- package/lib/typescript/lib/commonjs/Wallet/components/WalletActionSelector.d.ts.map +1 -1
- package/lib/typescript/lib/commonjs/index.d.ts +18 -2
- package/lib/typescript/lib/commonjs/index.d.ts.map +1 -1
- package/lib/typescript/lib/module/BetRouter/layouts/DesktopAdminLayout.d.ts.map +1 -1
- package/lib/typescript/lib/module/BetRouter/layouts/MobileAdminLayout.d.ts.map +1 -1
- package/lib/typescript/lib/module/BetRouter/types/credentials.d.ts +33 -0
- package/lib/typescript/lib/module/BetRouter/types/credentials.d.ts.map +1 -1
- package/lib/typescript/lib/module/NotificationManager/NotificationManagerTabs.d.ts +17 -0
- package/lib/typescript/lib/module/NotificationManager/NotificationManagerTabs.d.ts.map +1 -0
- package/lib/typescript/lib/module/NotificationManager/api/index.d.ts +17 -2
- package/lib/typescript/lib/module/NotificationManager/api/index.d.ts.map +1 -1
- package/lib/typescript/lib/module/NotificationManager/components/GroupManagement.d.ts +6 -0
- package/lib/typescript/lib/module/NotificationManager/components/GroupManagement.d.ts.map +1 -0
- package/lib/typescript/lib/module/NotificationManager/components/JobManagement.d.ts +7 -0
- package/lib/typescript/lib/module/NotificationManager/components/JobManagement.d.ts.map +1 -0
- package/lib/typescript/lib/module/NotificationManager/components/ScheduleNotification.d.ts +8 -0
- package/lib/typescript/lib/module/NotificationManager/components/ScheduleNotification.d.ts.map +1 -0
- package/lib/typescript/lib/module/NotificationManager/components/index.d.ts +8 -0
- package/lib/typescript/lib/module/NotificationManager/components/index.d.ts.map +1 -0
- package/lib/typescript/lib/module/NotificationManager/components/shared/DateTimePicker.d.ts +9 -0
- package/lib/typescript/lib/module/NotificationManager/components/shared/DateTimePicker.d.ts.map +1 -0
- package/lib/typescript/lib/module/NotificationManager/components/shared/GroupSelector.d.ts +13 -0
- package/lib/typescript/lib/module/NotificationManager/components/shared/GroupSelector.d.ts.map +1 -0
- package/lib/typescript/lib/module/NotificationManager/components/shared/NotificationBuilderForm.d.ts +10 -0
- package/lib/typescript/lib/module/NotificationManager/components/shared/NotificationBuilderForm.d.ts.map +1 -0
- package/lib/typescript/lib/module/NotificationManager/components/shared/StatusBadge.d.ts +6 -0
- package/lib/typescript/lib/module/NotificationManager/components/shared/StatusBadge.d.ts.map +1 -0
- package/lib/typescript/lib/module/NotificationManager/index.d.ts +1 -0
- package/lib/typescript/lib/module/NotificationManager/index.d.ts.map +1 -1
- package/lib/typescript/lib/module/Wallet/components/WalletActionSelector.d.ts.map +1 -1
- package/lib/typescript/lib/module/index.d.ts +2 -1
- package/lib/typescript/lib/module/index.d.ts.map +1 -1
- package/lib/typescript/src/BetRouter/layouts/DesktopAdminLayout.d.ts.map +1 -1
- package/lib/typescript/src/BetRouter/layouts/MobileAdminLayout.d.ts.map +1 -1
- package/lib/typescript/src/BetRouter/types/credentials.d.ts +3 -1
- package/lib/typescript/src/BetRouter/types/credentials.d.ts.map +1 -1
- package/lib/typescript/src/BetRouter/types/liquidity.d.ts +11 -0
- package/lib/typescript/src/BetRouter/types/liquidity.d.ts.map +1 -1
- package/lib/typescript/src/NotificationManager/NotificationManagerTabs.d.ts +20 -0
- package/lib/typescript/src/NotificationManager/NotificationManagerTabs.d.ts.map +1 -0
- package/lib/typescript/src/NotificationManager/api/index.d.ts +74 -3
- package/lib/typescript/src/NotificationManager/api/index.d.ts.map +1 -1
- package/lib/typescript/src/NotificationManager/components/GroupManagement.d.ts +8 -0
- package/lib/typescript/src/NotificationManager/components/GroupManagement.d.ts.map +1 -0
- package/lib/typescript/src/NotificationManager/components/JobManagement.d.ts +9 -0
- package/lib/typescript/src/NotificationManager/components/JobManagement.d.ts.map +1 -0
- package/lib/typescript/src/NotificationManager/components/ScheduleNotification.d.ts +10 -0
- package/lib/typescript/src/NotificationManager/components/ScheduleNotification.d.ts.map +1 -0
- package/lib/typescript/src/NotificationManager/components/index.d.ts +8 -0
- package/lib/typescript/src/NotificationManager/components/index.d.ts.map +1 -0
- package/lib/typescript/src/NotificationManager/components/shared/DateTimePicker.d.ts +12 -0
- package/lib/typescript/src/NotificationManager/components/shared/DateTimePicker.d.ts.map +1 -0
- package/lib/typescript/src/NotificationManager/components/shared/GroupSelector.d.ts +16 -0
- package/lib/typescript/src/NotificationManager/components/shared/GroupSelector.d.ts.map +1 -0
- package/lib/typescript/src/NotificationManager/components/shared/NotificationBuilderForm.d.ts +12 -0
- package/lib/typescript/src/NotificationManager/components/shared/NotificationBuilderForm.d.ts.map +1 -0
- package/lib/typescript/src/NotificationManager/components/shared/StatusBadge.d.ts +8 -0
- package/lib/typescript/src/NotificationManager/components/shared/StatusBadge.d.ts.map +1 -0
- package/lib/typescript/src/NotificationManager/index.d.ts +1 -0
- package/lib/typescript/src/NotificationManager/index.d.ts.map +1 -1
- package/lib/typescript/src/index.d.ts +2 -1
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/BetRouter/layouts/DesktopAdminLayout.tsx +27 -2
- package/src/BetRouter/layouts/MobileAdminLayout.tsx +27 -2
- package/src/BetRouter/types/credentials.ts +20 -3
- package/src/BetRouter/types/liquidity.ts +18 -0
- package/src/NotificationManager/NotificationManagerTabs.tsx +178 -0
- package/src/NotificationManager/api/index.ts +239 -6
- package/src/NotificationManager/components/GroupManagement.tsx +854 -0
- package/src/NotificationManager/components/JobManagement.tsx +569 -0
- package/src/NotificationManager/components/ScheduleNotification.tsx +388 -0
- package/src/NotificationManager/components/index.ts +7 -0
- package/src/NotificationManager/components/shared/DateTimePicker.tsx +94 -0
- package/src/NotificationManager/components/shared/GroupSelector.tsx +130 -0
- package/src/NotificationManager/components/shared/NotificationBuilderForm.tsx +364 -0
- package/src/NotificationManager/components/shared/StatusBadge.tsx +72 -0
- package/src/NotificationManager/index.tsx +43 -24
- package/src/Wallet/components/WalletActionSelector.tsx +1 -1
- package/src/index.tsx +2 -0
- package/src/types.d.ts +38 -3
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export const __esModule: boolean;
|
|
2
2
|
//# sourceMappingURL=liquidity.d.ts.map
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export const __esModule: boolean;
|
|
2
|
+
export default NotificationManagerTabs;
|
|
3
|
+
declare function NotificationManagerTabs({ player_ids, me, header_style, footer_style, float, notification_type, default_path_name, default_params, onFocusPosition, onComplete, onClose, defaultTab }: {
|
|
4
|
+
player_ids?: never[] | undefined;
|
|
5
|
+
me: any;
|
|
6
|
+
header_style: any;
|
|
7
|
+
footer_style: any;
|
|
8
|
+
float: any;
|
|
9
|
+
notification_type: any;
|
|
10
|
+
default_path_name: any;
|
|
11
|
+
default_params: any;
|
|
12
|
+
onFocusPosition: any;
|
|
13
|
+
onComplete: any;
|
|
14
|
+
onClose: any;
|
|
15
|
+
defaultTab?: string | undefined;
|
|
16
|
+
}): any;
|
|
17
|
+
//# sourceMappingURL=NotificationManagerTabs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NotificationManagerTabs.d.ts","sourceRoot":"","sources":["../../../../commonjs/NotificationManager/NotificationManagerTabs.js"],"names":[],"mappings":";;AAiBA;;;;;;;;;;;;;QAwKC"}
|
|
@@ -797,8 +797,23 @@ export namespace NotificationHelpers {
|
|
|
797
797
|
export namespace NotificationApi {
|
|
798
798
|
function setEnvironment(): void;
|
|
799
799
|
function getPlayersByPlayerIds(player_ids: any): Promise<any>;
|
|
800
|
-
function broadcastNotifications(player_notification: any, player_ids: any): Promise<any>;
|
|
801
|
-
function getActiveNotificationGroups(): Promise<any>;
|
|
800
|
+
function broadcastNotifications(player_notification: any, player_ids: any, notification_group_id: any): Promise<any>;
|
|
801
|
+
function getActiveNotificationGroups(limit: any, offset: any): Promise<any>;
|
|
802
802
|
function getNotificationGroupMembersByGroup(notification_group_id: any): Promise<any>;
|
|
803
|
+
function getAllNotificationGroups(limit: any, offset: any, search: any): Promise<any>;
|
|
804
|
+
function getNotificationGroupsByStatus(status: any, limit: any, offset: any, search: any): Promise<any>;
|
|
805
|
+
function getNotificationGroupById(notification_group_id: any): Promise<any>;
|
|
806
|
+
function createNotificationGroup(notification_group: any): Promise<any>;
|
|
807
|
+
function updateNotificationGroup(notification_group: any): Promise<any>;
|
|
808
|
+
function inactivateNotificationGroup(notification_group_id: any): Promise<any>;
|
|
809
|
+
function updateGroupMembers(notification_group_id: any, player_ids: any): Promise<any>;
|
|
810
|
+
function getAllNotificationJobs(limit: any, offset: any): Promise<any>;
|
|
811
|
+
function getNotificationJobsByStatus(status: any, limit: any, offset: any): Promise<any>;
|
|
812
|
+
function getNotificationJobsByGroup(notification_group_id: any): Promise<any>;
|
|
813
|
+
function getNotificationJobById(notification_job_id: any): Promise<any>;
|
|
814
|
+
function createNotificationJob(notification_job: any): Promise<any>;
|
|
815
|
+
function updateNotificationJob(notification_job: any): Promise<any>;
|
|
816
|
+
function finalizeNotificationJob(notification_job_id: any): Promise<any>;
|
|
817
|
+
function cancelNotificationJob(notification_job_id: any): Promise<any>;
|
|
803
818
|
}
|
|
804
819
|
//# 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;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../commonjs/NotificationManager/api/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAyYkB,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 @@
|
|
|
1
|
+
{"version":3,"file":"GroupManagement.d.ts","sourceRoot":"","sources":["../../../../../commonjs/NotificationManager/components/GroupManagement.js"],"names":[],"mappings":";;AAuBA;;QAo/BC"}
|
|
@@ -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
|
package/lib/typescript/lib/commonjs/NotificationManager/components/ScheduleNotification.d.ts.map
ADDED
|
@@ -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
|
package/lib/typescript/lib/commonjs/NotificationManager/components/shared/DateTimePicker.d.ts.map
ADDED
|
@@ -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
|
package/lib/typescript/lib/commonjs/NotificationManager/components/shared/GroupSelector.d.ts.map
ADDED
|
@@ -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"}
|
package/lib/typescript/lib/commonjs/NotificationManager/components/shared/StatusBadge.d.ts.map
ADDED
|
@@ -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: ({
|
|
@@ -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":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../commonjs/NotificationManager/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA8CA;;;;;;;;;;;;QAunCC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WalletActionSelector.d.ts","sourceRoot":"","sources":["../../../../../commonjs/Wallet/components/WalletActionSelector.js"],"names":[],"mappings":";;AAaA;;;;;;;;
|
|
1
|
+
{"version":3,"file":"WalletActionSelector.d.ts","sourceRoot":"","sources":["../../../../../commonjs/Wallet/components/WalletActionSelector.js"],"names":[],"mappings":";;AAaA;;;;;;;;QA+XC"}
|
|
@@ -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":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../commonjs/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0eA,2BAAkE;AAElE,iCAA8E"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DesktopAdminLayout.d.ts","sourceRoot":"","sources":["../../../../../module/BetRouter/layouts/DesktopAdminLayout.js"],"names":[],"mappings":";AAaA;;;;;
|
|
1
|
+
{"version":3,"file":"DesktopAdminLayout.d.ts","sourceRoot":"","sources":["../../../../../module/BetRouter/layouts/DesktopAdminLayout.js"],"names":[],"mappings":";AAaA;;;;;kGAsUC;kBAnV0C,OAAO"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MobileAdminLayout.d.ts","sourceRoot":"","sources":["../../../../../module/BetRouter/layouts/MobileAdminLayout.js"],"names":[],"mappings":";AAaA;;;;;
|
|
1
|
+
{"version":3,"file":"MobileAdminLayout.d.ts","sourceRoot":"","sources":["../../../../../module/BetRouter/layouts/MobileAdminLayout.js"],"names":[],"mappings":";AAaA;;;;;yGAgdC;kBA7d0C,OAAO"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export function isKalshiCredentials(creds: any): boolean;
|
|
2
2
|
export function isBettorEdgeCredentials(creds: any): boolean;
|
|
3
3
|
export function isBetOpenlyCredentials(creds: any): boolean;
|
|
4
|
+
export function isPolymarketCredentials(creds: any): boolean;
|
|
4
5
|
export function getRequiredCredentialFields(partnerName: any): string[];
|
|
5
6
|
export function getCredentialFieldLabels(partnerName: any): {
|
|
6
7
|
api_key: string;
|
|
@@ -8,24 +9,40 @@ export function getCredentialFieldLabels(partnerName: any): {
|
|
|
8
9
|
username?: undefined;
|
|
9
10
|
password?: undefined;
|
|
10
11
|
user_id?: undefined;
|
|
12
|
+
private_key?: undefined;
|
|
13
|
+
funder?: undefined;
|
|
11
14
|
} | {
|
|
12
15
|
username: string;
|
|
13
16
|
password: string;
|
|
14
17
|
api_key?: undefined;
|
|
15
18
|
private_key_pem?: undefined;
|
|
16
19
|
user_id?: undefined;
|
|
20
|
+
private_key?: undefined;
|
|
21
|
+
funder?: undefined;
|
|
17
22
|
} | {
|
|
18
23
|
username: string;
|
|
19
24
|
password: string;
|
|
20
25
|
user_id: string;
|
|
21
26
|
api_key?: undefined;
|
|
22
27
|
private_key_pem?: undefined;
|
|
28
|
+
private_key?: undefined;
|
|
29
|
+
funder?: undefined;
|
|
23
30
|
} | {
|
|
31
|
+
private_key: string;
|
|
32
|
+
funder: string;
|
|
24
33
|
api_key?: undefined;
|
|
25
34
|
private_key_pem?: undefined;
|
|
26
35
|
username?: undefined;
|
|
27
36
|
password?: undefined;
|
|
28
37
|
user_id?: undefined;
|
|
38
|
+
} | {
|
|
39
|
+
api_key?: undefined;
|
|
40
|
+
private_key_pem?: undefined;
|
|
41
|
+
username?: undefined;
|
|
42
|
+
password?: undefined;
|
|
43
|
+
user_id?: undefined;
|
|
44
|
+
private_key?: undefined;
|
|
45
|
+
funder?: undefined;
|
|
29
46
|
};
|
|
30
47
|
export function getCredentialFieldTypes(partnerName: any): {
|
|
31
48
|
api_key: string;
|
|
@@ -33,23 +50,39 @@ export function getCredentialFieldTypes(partnerName: any): {
|
|
|
33
50
|
username?: undefined;
|
|
34
51
|
password?: undefined;
|
|
35
52
|
user_id?: undefined;
|
|
53
|
+
private_key?: undefined;
|
|
54
|
+
funder?: undefined;
|
|
36
55
|
} | {
|
|
37
56
|
username: string;
|
|
38
57
|
password: string;
|
|
39
58
|
api_key?: undefined;
|
|
40
59
|
private_key_pem?: undefined;
|
|
41
60
|
user_id?: undefined;
|
|
61
|
+
private_key?: undefined;
|
|
62
|
+
funder?: undefined;
|
|
42
63
|
} | {
|
|
43
64
|
user_id: string;
|
|
44
65
|
username: string;
|
|
45
66
|
password: string;
|
|
46
67
|
api_key?: undefined;
|
|
47
68
|
private_key_pem?: undefined;
|
|
69
|
+
private_key?: undefined;
|
|
70
|
+
funder?: undefined;
|
|
71
|
+
} | {
|
|
72
|
+
private_key: string;
|
|
73
|
+
funder: string;
|
|
74
|
+
api_key?: undefined;
|
|
75
|
+
private_key_pem?: undefined;
|
|
76
|
+
username?: undefined;
|
|
77
|
+
password?: undefined;
|
|
78
|
+
user_id?: undefined;
|
|
48
79
|
} | {
|
|
49
80
|
api_key?: undefined;
|
|
50
81
|
private_key_pem?: undefined;
|
|
51
82
|
username?: undefined;
|
|
52
83
|
password?: undefined;
|
|
53
84
|
user_id?: undefined;
|
|
85
|
+
private_key?: undefined;
|
|
86
|
+
funder?: undefined;
|
|
54
87
|
};
|
|
55
88
|
//# sourceMappingURL=credentials.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"credentials.d.ts","sourceRoot":"","sources":["../../../../../module/BetRouter/types/credentials.js"],"names":[],"mappings":"AAUO,yDAEN;AACM,6DAEN;AACM,4DAEN;AAGM,
|
|
1
|
+
{"version":3,"file":"credentials.d.ts","sourceRoot":"","sources":["../../../../../module/BetRouter/types/credentials.js"],"names":[],"mappings":"AAUO,yDAEN;AACM,6DAEN;AACM,4DAEN;AACM,6DAEN;AAGM,wEAaN;AAGM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0BN;AAGM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0BN"}
|
|
@@ -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;
|
|
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
|
package/lib/typescript/lib/module/NotificationManager/components/ScheduleNotification.d.ts.map
ADDED
|
@@ -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
|
package/lib/typescript/lib/module/NotificationManager/components/shared/DateTimePicker.d.ts.map
ADDED
|
@@ -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
|
package/lib/typescript/lib/module/NotificationManager/components/shared/GroupSelector.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GroupSelector.d.ts","sourceRoot":"","sources":["../../../../../../module/NotificationManager/components/shared/GroupSelector.js"],"names":[],"mappings":";AAIA;;;;;;;;;yGAiLC;kBArLiB,OAAO"}
|
package/lib/typescript/lib/module/NotificationManager/components/shared/NotificationBuilderForm.d.ts
ADDED
|
@@ -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 @@
|
|
|
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":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../module/NotificationManager/index.js"],"names":[],"mappings":";;AAmBA;;;;;;;;;;;;kGAunCC;gCAtoCoD,OAAO;oCAAP,OAAO;kBAJR,OAAO"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WalletActionSelector.d.ts","sourceRoot":"","sources":["../../../../../module/Wallet/components/WalletActionSelector.js"],"names":[],"mappings":";AAMA;;;;;;;;
|
|
1
|
+
{"version":3,"file":"WalletActionSelector.d.ts","sourceRoot":"","sources":["../../../../../module/Wallet/components/WalletActionSelector.js"],"names":[],"mappings":";AAMA;;;;;;;;kGA+XC;kBArY+B,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;
|
|
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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DesktopAdminLayout.d.ts","sourceRoot":"","sources":["../../../../../src/BetRouter/layouts/DesktopAdminLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAkBnD,KAAK,uBAAuB,GAAG;IAC3B,MAAM,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC;IACrE,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,eAAe,CAAC,EAAE,MAAM,CAAC;CAC5B,CAAC;AAEF,QAAA,MAAM,kBAAkB,GAAI,wDAAwD,uBAAuB,
|
|
1
|
+
{"version":3,"file":"DesktopAdminLayout.d.ts","sourceRoot":"","sources":["../../../../../src/BetRouter/layouts/DesktopAdminLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAkBnD,KAAK,uBAAuB,GAAG;IAC3B,MAAM,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC;IACrE,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,eAAe,CAAC,EAAE,MAAM,CAAC;CAC5B,CAAC;AAEF,QAAA,MAAM,kBAAkB,GAAI,wDAAwD,uBAAuB,sBAgX1G,CAAC;AAEF,eAAe,kBAAkB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MobileAdminLayout.d.ts","sourceRoot":"","sources":["../../../../../src/BetRouter/layouts/MobileAdminLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAmBnD,KAAK,sBAAsB,GAAG;IAC1B,MAAM,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC;IACrE,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,eAAe,CAAC,EAAE,MAAM,CAAC;CAC5B,CAAC;AAEF,QAAA,MAAM,iBAAiB,GAAI,wDAAwD,sBAAsB,
|
|
1
|
+
{"version":3,"file":"MobileAdminLayout.d.ts","sourceRoot":"","sources":["../../../../../src/BetRouter/layouts/MobileAdminLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AAmBnD,KAAK,sBAAsB,GAAG;IAC1B,MAAM,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC;IACrE,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,eAAe,CAAC,EAAE,MAAM,CAAC;CAC5B,CAAC;AAEF,QAAA,MAAM,iBAAiB,GAAI,wDAAwD,sBAAsB,6BA2ZxG,CAAC;AAEF,eAAe,iBAAiB,CAAC"}
|