2021-02-11 13:58:05 +00:00
|
|
|
export const urlList = {
|
|
|
|
apiUri: Cypress.env("API_URI"),
|
|
|
|
channels: "channels/",
|
|
|
|
configuration: "configuration/",
|
2021-03-15 13:16:02 +00:00
|
|
|
draftOrders: "orders/drafts/",
|
2021-02-11 13:58:05 +00:00
|
|
|
homePage: "/",
|
|
|
|
orders: "orders/",
|
|
|
|
products: "products/",
|
2021-02-18 09:00:08 +00:00
|
|
|
warehouses: "warehouses/",
|
2021-03-12 14:57:02 +00:00
|
|
|
sales: "discounts/sales/",
|
2021-02-18 09:00:08 +00:00
|
|
|
collections: "collections/"
|
2021-02-11 13:58:05 +00:00
|
|
|
};
|
2021-02-23 14:30:52 +00:00
|
|
|
export const productDetailsUrl = productId => `${urlList.products}${productId}`;
|