efrilm e236d811ce
Some checks failed
Build & Deploy iOS to TestFlight / build-and-deploy (push) Has been cancelled
feat: exclusive summary
2026-06-22 14:44:03 +07:00

40 lines
1.2 KiB
Dart

class ApiPath {
// Auth
static const String login = '/api/v1/auth/login';
static const String logout = '/api/v1/auth/logout';
// Analytic
static const String salesAnalytic = '/api/v1/analytics/sales';
static const String profitLossAnalytic = '/api/v1/analytics/profit-loss';
static const String categoryAnalytic = '/api/v1/analytics/categories';
static const String dashboardAnalytic = '/api/v1/analytics/dashboard';
static const String productAnalytic = '/api/v1/analytics/products';
static const String paymentMethodAnalytic =
'/api/v1/analytics/paymentMethods';
static const String purchasingAnalytic = '/api/v1/analytics/purchasing';
static const String exclusiveSummaryAnalytic =
'/api/v1/analytics/exclusive-summary/period';
// Inventory
static const String inventoryReportDetail =
'/api/v1/inventory/report/details';
// Category
static const String category = '/api/v1/categories';
// Product
static const String product = '/api/v1/products';
// Customer
static const String customer = '/api/v1/customers';
// Order
static const String order = '/api/v1/orders';
// Outlet
static const String outlet = '/api/v1/outlets';
// User
static const String user = '/api/v1/users';
}