smart-bot-factory 0.3.2__py3-none-any.whl → 0.3.3__py3-none-any.whl
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.
Potentially problematic release.
This version of smart-bot-factory might be problematic. Click here for more details.
- smart_bot_factory/admin/__init__.py +2 -0
- smart_bot_factory/admin/admin_events.py +757 -0
- smart_bot_factory/admin/admin_logic.py +54 -12
- smart_bot_factory/aiogram_calendar/__init__.py +6 -0
- smart_bot_factory/aiogram_calendar/common.py +70 -0
- smart_bot_factory/aiogram_calendar/dialog_calendar.py +197 -0
- smart_bot_factory/aiogram_calendar/schemas.py +78 -0
- smart_bot_factory/aiogram_calendar/simple_calendar.py +180 -0
- smart_bot_factory/analytics/analytics_manager.py +42 -5
- smart_bot_factory/cli.py +1 -1
- smart_bot_factory/core/bot_utils.py +17 -16
- smart_bot_factory/core/decorators.py +215 -4
- smart_bot_factory/core/states.py +12 -0
- smart_bot_factory/creation/bot_builder.py +54 -2
- smart_bot_factory/handlers/handlers.py +2 -1
- smart_bot_factory/integrations/supabase_client.py +413 -37
- smart_bot_factory/utm_link_generator.py +13 -3
- {smart_bot_factory-0.3.2.dist-info → smart_bot_factory-0.3.3.dist-info}/METADATA +2 -1
- {smart_bot_factory-0.3.2.dist-info → smart_bot_factory-0.3.3.dist-info}/RECORD +22 -18
- smart_bot_factory/table/database_structure.sql +0 -57
- smart_bot_factory/table/schema.sql +0 -1094
- {smart_bot_factory-0.3.2.dist-info → smart_bot_factory-0.3.3.dist-info}/WHEEL +0 -0
- {smart_bot_factory-0.3.2.dist-info → smart_bot_factory-0.3.3.dist-info}/entry_points.txt +0 -0
- {smart_bot_factory-0.3.2.dist-info → smart_bot_factory-0.3.3.dist-info}/licenses/LICENSE +0 -0
|
@@ -6,9 +6,11 @@ from .admin_logic import setup_admin_handlers
|
|
|
6
6
|
from .admin_manager import AdminManager
|
|
7
7
|
from .admin_tester import test_admin_system
|
|
8
8
|
from .timeout_checker import check_timeouts, setup_bot_environment
|
|
9
|
+
from .admin_events import setup_admin_events_handlers
|
|
9
10
|
|
|
10
11
|
__all__ = [
|
|
11
12
|
'setup_admin_handlers',
|
|
13
|
+
'setup_admin_events_handlers',
|
|
12
14
|
'AdminManager',
|
|
13
15
|
'test_admin_system',
|
|
14
16
|
'check_timeouts',
|