34 lines
1.0 KiB
Dart
34 lines
1.0 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';
|
|
|
|
// 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';
|
|
}
|