2025-12-14 20:34:15 +03:30
|
|
|
const baseUrl = '/api/v1/pos';
|
2025-12-14 10:16:14 +03:30
|
|
|
|
2025-12-14 20:34:15 +03:30
|
|
|
export const POS_API_ROUTES = {
|
2025-12-26 16:47:47 +03:30
|
|
|
info: (posId: number) => `${baseUrl}/${posId}`,
|
|
|
|
|
stock: (posId: number) => `${baseUrl}/${posId}/stock`,
|
|
|
|
|
productCategories: (posId: number) => `${baseUrl}/${posId}/product-categories`,
|
|
|
|
|
submitOrder: (posId: number) => `${baseUrl}/${posId}/orders/create`,
|
2025-12-14 20:34:15 +03:30
|
|
|
};
|