Add risk and audit admin APIs

This commit is contained in:
Codex
2026-07-05 16:35:54 +03:00
parent f9506be2df
commit a5600c75ae
16 changed files with 457 additions and 4 deletions

View File

@@ -44,6 +44,7 @@ from src.application.commands.orders_commands import (
ListOrdersByDateCommand,
GetOrderCommand,
)
from src.application.commands.risk_commands import GetFunnelCommand,GetRiskSummaryCommand,ListAuditEventsCommand,ListRiskAssessmentsCommand
from src.application.commands.analytics_commands import (
GetPurchaseAnalyticsForYearCommand,
GetOrdersAnalyticsForYearCommand,
@@ -92,4 +93,8 @@ __all__ = [
'GetOrdersAnalyticsForMonthCommand',
'GetPurchaseAnalyticsForWeekCommand',
'GetOrdersAnalyticsForWeekCommand',
'ListRiskAssessmentsCommand',
'GetRiskSummaryCommand',
'ListAuditEventsCommand',
'GetFunnelCommand',
]