Files
psp_panel/src/app/modules/pos/constants/apiRoutes/index.ts
T

9 lines
327 B
TypeScript
Raw Normal View History

const baseUrl = '/api/v1/pos';
export const POS_API_ROUTES = {
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`,
};