2025-10-24 01:16:50 +07:00
|
|
|
class ApiPath {
|
|
|
|
|
static const String login = '/api/v1/auth/login';
|
2025-10-24 13:55:00 +07:00
|
|
|
static const String outlets = '/api/v1/outlets';
|
2025-10-24 20:06:42 +07:00
|
|
|
static const String categories = '/api/v1/categories';
|
2025-10-24 22:03:35 +07:00
|
|
|
static const String products = '/api/v1/products';
|
2025-10-26 16:09:56 +07:00
|
|
|
static const String tables = '/api/v1/tables';
|
2025-10-26 22:57:22 +07:00
|
|
|
static const String customers = '/api/v1/customers';
|
2025-10-27 14:24:29 +07:00
|
|
|
static const String paymentMethods = '/api/v1/payment-methods';
|
2025-10-27 21:55:19 +07:00
|
|
|
static const String orders = '/api/v1/orders';
|
2025-10-28 00:58:39 +07:00
|
|
|
static const String payments = '/api/v1/payments';
|
2025-11-03 16:24:11 +07:00
|
|
|
static const String analyticDashboard = '/api/v1/analytics/dashboard';
|
2025-11-03 17:18:29 +07:00
|
|
|
static const String analyticSales = '/api/v1/analytics/sales';
|
2025-11-03 19:34:46 +07:00
|
|
|
static const String analyticProducts = '/api/v1/analytics/products';
|
2025-11-03 20:32:46 +07:00
|
|
|
static const String analyticPaymentMethods =
|
|
|
|
|
'/api/v1/analytics/payment-methods';
|
2025-10-24 01:16:50 +07:00
|
|
|
}
|